]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
cb97fa9d3d83bdb6f57a283dabac15eb2c9297e6
[gnu-emacs] / lisp / ChangeLog
1 2006-11-10 Kenichi Handa <handa@m17n.org>
2
3 * files.el (revert-buffer): Fix previous change.
4
5 2006-11-09 Juanma Barranquero <lekktu@gmail.com>
6
7 * bs.el (bs--redisplay): Fix typo in docstring.
8 (bs--window-config-coming-from): Make frame-local.
9 (bs--restore-window-config): New function.
10 (bs-kill, bs-select, bs-select-other-window)
11 (bs-select-other-frame): Use it.
12 (bs--window-for-buffer): Return as soon as a matching buffer is found.
13 (bs--show-with-configuration): Save the window configuration as a
14 frame local var, and only if *buffer-selection* is not already
15 visible on this frame.
16
17 2006-11-08 Chong Yidong <cyd@stupidchicken.com>
18
19 * vc-svn.el (vc-svn-admin-directory): New var.
20 (vc-svn-registered, vc-svn-responsible-p)
21 (vc-svn-repository-hostname): Use it.
22 Suggested by arit93@yahoo.com.
23
24 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
25
26 * ldefs-boot.el: Regenerate.
27
28 2006-11-08 Alan Mackenzie <acm@muc.de>
29
30 * emacs-lisp/lisp.el (beginning-of-defun-raw): Code up the
31 case (eq open-paren-in-column-0-is-defun-start nil) by searching
32 for least nested open-paren.
33
34 2006-11-08 Romain Francoise <romain@orebokech.com>
35
36 * subr.el (remove-overlays): Fix typo in last change.
37
38 2006-11-08 Richard Stallman <rms@gnu.org>
39
40 * subr.el (remove-overlays): Call overlay-recenter.
41
42 2006-11-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
43
44 * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
45 (pr-ps-name-custom-set, pr-txt-name-custom-set): Return back the old
46 behaviour.
47 (pr-menu-bind): Act on global-map instead of menu-bar-file-menu
48 directly.
49
50 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
51
52 * ido.el (ido-ignore-extensions, ido-show-dot-for-dired)
53 (ido-max-dir-file-cache, ido-decorations)
54 (ido-rewrite-file-prompt-functions, ido-use-mycompletion-depth)
55 (ido-magic-backward-char, ido-enter-dired)
56 (ido-enter-insert-buffer, ido-enter-insert-file, ido-dired)
57 (ido-list-directory, ido-first-match, ido-only-match)
58 (ido-subdir, ido-indicator): Fix typos in docstrings.
59 (ido-buffer-internal, ido-completion-help): Fix typos in messages.
60 (ido-read-internal): Fix typo in error message.
61
62 2006-11-08 Kenichi Handa <handa@m17n.org>
63
64 * international/mule-cmds.el (set-default-coding-systems): Always
65 set default-file-name-coding-system to utf-8 for Mac Darwin.
66
67 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
68
69 * makefile.w32-in (setwins): Remove.
70 (WINS_ALMOST): New macro.
71 (WINS): Use it.
72 (autoloads): Don't extract autoloads from files in obsolete/.
73
74 2006-11-07 Chong Yidong <cyd@stupidchicken.com>
75
76 * whitespace.el (whitespace-buffer): Call remove-overlays after
77 overlay-recenter for performance. Suggested by Martin Rudalics.
78
79 2006-11-07 Michael Albinus <michael.albinus@gmx.de>
80
81 * net/tramp.el (tramp-default-method): scp is the default method.
82
83 2006-11-07 Juanma Barranquero <lekktu@gmail.com>
84
85 * server.el (server-start): Save also the Emacs pid in the server file.
86
87 2006-11-07 Carsten Dominik <dominik@science.uva.nl>
88
89 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Preserve
90 point when displaying a bibtex cross reference in the echo area.
91
92 2006-11-06 Juanma Barranquero <lekktu@gmail.com>
93
94 * international/mule.el (make-char): Fix typo in docstring.
95 (load-with-code-conversion, charsetp): Doc fixes.
96
97 * international/ja-dic-cnv.el (skkdic-convert):
98 * cus-edit.el (hook): Fix typo in docstring.
99
100 2006-11-06 Chong Yidong <cyd@stupidchicken.com>
101
102 * cus-edit.el (custom-mode-map): Move defvar above code using it.
103 (custom-mode-link-map): New variable.
104 (custom-group-link, custom-manual): Use follow-link.
105
106 2006-11-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
107
108 * textmodes/bibtex.el: Fix typo in name of author of bibtex.el,
109 "Mark Shapiro" -> "Marc Shapiro". Update his email address.
110
111 2006-11-06 Richard Stallman <rms@gnu.org>
112
113 * textmodes/flyspell.el (flyspell-correct-word-before-point):
114 New function broken out of flyspell-correct-word.
115 (flyspell-mode-map): Bind it to M-RET.
116 (flyspell-correct-word): Call it.
117
118 * textmodes/fill.el (fill-minibuffer-function): New function.
119 (fill-paragraph): Bind fill-paragraph-function to
120 fill-minibuffer-function.
121
122 * ruler-mode.el (ruler-mode-map): Add bindings for up-events
123 so that they aren't undefined.
124
125 * dired.el (dired-readin): Locally bind file-name-coding-system.
126
127 * bindings.el: Shorten and clarify usual mode line mouse help string.
128
129 * Makefile.in (autoloads): Don't include `obsolete'.
130
131 2006-11-06 Chong Yidong <cyd@stupidchicken.com>
132
133 * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
134 (pr-ps-name-custom-set, pr-txt-name-custom-set): Don't update the
135 Printing menu if it's not initialized.
136 (pr-menu-bind): Act on menu-bar-file-menu directly.
137
138 2006-11-06 Juanma Barranquero <lekktu@gmail.com>
139
140 * help.el (view-emacs-news): Fix typo in error message.
141
142 * menu-bar.el (menu-bar-update-buffers): Fix typo in menu entry.
143
144 * shadowfile.el (shadow-define-regexp-group)
145 (shadow-literal-groups, shadow-insert-var): Doc fixes.
146 (shadow-read-files): Fix typo in message.
147 (shadow-inhibit-overload, shadow-find, shadow-suffix)
148 (shadow-site-match, shadow-write-todo-file, shadow-insert-var)
149 (shadow-suffix, shadow-site-match, shadow-expand-file-name)
150 (shadow-file-match): Fix typos in docstrings.
151
152 * terminal.el (terminal-emulator): Fix typo in message.
153
154 * emacs-lisp/authors.el (authors-fixed-entries): Fix typo.
155
156 * emacs-lisp/lselect.el (x-kill-primary-selection)
157 (x-delete-primary-selection, x-copy-primary-selection):
158 Fix typos in error messages.
159
160 * emulation/edt-mapper.el: Fix typo in interactive message.
161
162 * mail/emacsbug.el (report-emacs-bug): Fix typos in output message.
163
164 * textmodes/ispell.el (ispell, ispell-local-dictionary-alist)
165 (ispell-help): Fix typos in docstrings.
166 (ispell-help): Fix typo in output message.
167
168 * allout.el (allout-adjust-file-variable)
169 (allout-passphrase-verifier-string)
170 (allout-passphrase-hint-string)
171 (allout-toggle-current-subtree-encryption):
172 * apropos.el (apropos-synonyms):
173 * cus-edit.el (hook):
174 * emacs-lock.el (emacs-lock-from-exiting):
175 * follow.el (follow-avoid-tail-recenter-p):
176 * hexl.el (hexl-mode):
177 * mouse-copy.el (mouse-copy-work-around-drag-bug):
178 * mouse.el (mouse-set-font):
179 * resume.el (resume-emacs-args-file):
180 * rfn-eshadow.el (file-name-shadow-tty-properties):
181 * t-mouse.el (t-mouse-process, t-mouse-mode):
182 * emacs-lisp/cust-print.el (custom-print-install)
183 (custom-print-uninstall, custom-format):
184 * emacs-lisp/shadow.el (list-load-path-shadows):
185 * emulation/tpu-edt.el (tpu-help-text)
186 (tpu-save-all-buffers-kill-emacs, tpu-emacs-replace)
187 (tpu-reset-control-keys):
188 * emulation/vip.el (vip-emacs-local-map)
189 (vip-change-mode-to-emacs):
190 * emulation/viper.el (viper-mode, viper-set-hooks)
191 (viper-major-mode-modifier-list):
192 * emulation/viper-init.el (viper-emacs-state-cursor-color):
193 * emulation/viper-keym.el (viper-emacs-kbd-map)
194 (viper-toggle-key):
195 * mail/feedmail.el (feedmail-queue-reminder)
196 (feedmail-queue-reminder-alist, feedmail-confirm-outgoing)
197 (feedmail-confirm-outgoing-timeout, feedmail-nuke-bcc)
198 (feedmail-nuke-resent-bcc, feedmail-fill-to-cc-fill-column)
199 (feedmail-sender-line, feedmail-force-binary-write)
200 (feedmail-from-line, feedmail-deduce-envelope-from)
201 (feedmail-x-mailer-line, feedmail-message-id-generator)
202 (feedmail-date-generator, feedmail-fiddle-plex-user-list)
203 (feedmail-enable-spray, feedmail-spray-this-address)
204 (feedmail-spray-address-fiddle-plex-list, feedmail-enable-queue)
205 (feedmail-queue-runner-confirm-global)
206 (feedmail-ask-before-queue-prompt)
207 (feedmail-ask-before-queue-reprompt)
208 (feedmail-prompt-before-queue-standard-alist)
209 (feedmail-prompt-before-queue-user-alist)
210 (feedmail-prompt-before-queue-help-supplement)
211 (feedmail-queue-use-send-time-for-message-id)
212 (feedmail-queue-default-file-slug, feedmail-queue-fqm-suffix)
213 (feedmail-mail-send-hook-splitter, feedmail-mail-send-hook)
214 (feedmail-mail-send-hook-queued)
215 (feedmail-confirm-addresses-hook-example)
216 (feedmail-last-chance-hook, feedmail-before-fcc-hook)
217 (feedmail-queue-runner-mode-setter)
218 (feedmail-queue-alternative-mail-header-separator)
219 (feedmail-queue-runner-message-sender)
220 (feedmail-buffer-eating-function, feedmail-binmail-template)
221 (feedmail-run-the-queue-no-prompts)
222 (feedmail-run-the-queue-global-prompt)
223 (feedmail-queue-subject-slug-maker, feedmail-fiddle-header)
224 (feedmail-envelope-deducer, feedmail-fiddle-date)
225 (feedmail-default-message-id-generator)
226 (feedmail-fiddle-message-id, feedmail-fiddle-x-mailer)
227 (feedmail-fiddle-spray-address, feedmail-deduce-address-list):
228 * mail/vms-pmail.el (vms-pmail-save-and-exit, vms-pmail-abort)
229 (vms-pmail-setup):
230 * play/dunnet.el (dun-help):
231 * play/handwrite.el (handwrite):
232 * play/hanoi.el (hanoi-unix-64):
233 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
234 * textmodes/enriched.el (fixed):
235 * textmodes/org.el (org-file-apps)
236 (org-emphasis-regexp-components, org-emphasis-alist):
237 * textmodes/texinfmt.el (batch-texinfo-format):
238 Fix typos in docstrings.
239
240 2006-11-05 Juanma Barranquero <lekktu@gmail.com>
241
242 * loadhist.el (read-feature): Don't complete features not loaded
243 from a file (which make `unload-feature' to fail).
244
245 2006-11-05 Reiner Steib <Reiner.Steib@gmx.de>
246
247 * add-log.el (add-log-time-zone-rule): Mark as safe-local-variable.
248
249 2006-11-05 Chong Yidong <cyd@stupidchicken.com>
250
251 * startup.el (command-line-1): Kill emacs if the last frame is
252 deleted while evaluating the command-line arguments.
253
254 2006-11-05 Richard Stallman <rms@gnu.org>
255
256 * startup.el (init-file-had-error): Add doc string.
257 (fancy-splash-text, fancy-splash-head, fancy-splash-tail):
258 Use fixed-width font for keyboard key descriptions.
259
260 * cus-edit.el (custom-save-all): Error if saving in .emacs
261 and it had an error when loaded.
262
263 * dired-aux.el (dired-copy-file-recursive): Catch errors
264 from recursive copies in the loop, around the recursive call.
265
266 2006-11-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
267
268 * battery.el (battery-linux-proc-acpi): Search an ac_adapter in
269 `/proc/acpi/ac_adapter/*'. Ditto for the thermometers in
270 `/proc/acpi/thermal_zone/*'.
271 (battery-search-for-one-match-in-files): New. Search a regexp in
272 the content of some files.
273
274 2006-11-05 Martin Rudalics <rudalics@gmx.at>
275
276 * window.el (mouse-autoselect-window-now): Remove variable.
277 (mouse-autoselect-window-state): New variable.
278 (mouse-autoselect-window-start, mouse-autoselect-window-cancel)
279 (mouse-autoselect-window-select, handle-select-window):
280 Rewritten to make mouse-autoselect-window-timer a one-shot timer.
281 Suspend delayed autoselection during menu or popup dialog.
282
283 * info-look.el (info-lookup-guess-custom-symbol): New function
284 for retrieving symbol at point in custom buffers.
285 (top level) <info-lookup-maybe-add-help>: Add backquote and
286 comma to ignored characters in regexps of help specifications
287 for emacs-lisp-mode and lisp-interaction-mode. This permits
288 looking up symbols in `...' and after a comma. Add help
289 specifications for custom-mode and help-mode.
290
291 2006-11-04 Eli Zaretskii <eliz@gnu.org>
292
293 * mail/rmail.el (rmail-redecode-body): New optional argument RAW.
294 Don't encode body if RAW is non-nil, or if the old encoding is
295 identical to the new encoding, or if the body contains only
296 eight-bit-* characters.
297
298 2006-11-04 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
299
300 * faces.el (faces-sample-overlay, describe-face): Revert last
301 changes.
302 (faces-sample-overlay): Remove variable.
303 (describe-face): Insert sample text in the face being described.
304
305 2006-11-04 Martin Rudalics <rudalics@gmx.at>
306
307 * whitespace.el (whitespace-indent-regexp): Make this match any
308 multiples of eight spaces near the beginning of a line.
309 (whitespace-buffer): Use `remove-overlays' instead of
310 `whitespace-unhighlight-the-space' and `overlay-recenter' to
311 speed up overlay handling.
312 (whitespace-buffer-leading, whitespace-buffer-trailing): Make
313 these functions highlight the text removed by
314 `whitespace-buffer-leading-cleanup' and
315 `whitespace-buffer-trailing-cleanup' respectively.
316 (whitespace-buffer-search): Use `with-local-quit'. Move
317 `format' out of loop to speed up scanning larger buffers.
318 (whitespace-unhighlight-the-space): Remove `remove-hook' since
319 that function is never added to a hook.
320 (whitespace-spacetab-regexp, whitespace-ateol-regexp)
321 (whitespace-buffer-leading-cleanup)
322 (whitespace-refresh-rescan-list): Fix docstrings.
323
324 2006-11-03 Ken Manheimer <ken.manheimer@gmail.com>
325
326 * allout.el (allout-during-yank-processing): Cue for inhibiting
327 aberrance processing during yanks.
328 (allout-doublecheck-at-and-shallower): Reduce the limit to reduce
329 the amount of yanked topics that can be aberrant.
330 (allout-do-doublecheck): Encapsulate this multiply-used recipe in
331 a function, and supplement with inihibition of doublechecking
332 during yanks.
333 (allout-beginning-of-line, allout-next-heading)
334 (allout-previous-heading, allout-goto-prefix-doublechecked)
335 (allout-back-to-current-heading, allout-next-visible-heading)
336 (allout-next-sibling): Use new allout-do-doublecheck function.
337 (allout-next-sibling): Ensure we made progress when returning
338 other than nil.
339 (allout-rebullet-heading): Preserve text property annotations
340 indicating the text was hidden, if it was.
341 (allout-kill-line): Remove any added was-hidden annotations.
342 (allout-kill-topic): Remove any added was-hidden annotations.
343 (allout-annotate-hidden): Inhibit adding was-hidden text
344 properties to the undo list.
345 (allout-deannotate-hidden): New function to remove was-hidden
346 annotation.
347 (allout-hide-by-annotation): Use new allout-deannotate-hidden.
348 (allout-remove-exposure-annotation): Replaced by
349 allout-deannotate-hidden.
350 (allout-yank-processing): Signal that yank processing is happening
351 with allout-during-yank-processing. Also, wrap
352 allout-unprotected's closer to the text changes, for easier
353 debugging. We need to inhibit-field-text-motion explicitly, in
354 lieu of the encompassing allout-unprotected.
355 (outlineify-sticky): Adjust criteria for triggering new outline
356 decorations to presence or absence of any topics, not just a topic
357 at the beginning of the buffer.
358
359 2006-11-03 Juanma Barranquero <lekktu@gmail.com>
360
361 * bs.el (bs--show-all, bs--redisplay):
362 * cus-edit.el (custom-unlispify-menu-entries)
363 (custom-unlispify-tag-names, custom-prompt-variable):
364 * expand.el (expand-pos):
365 * speedbar.el (speedbar-generic-list-tag-p):
366 * wid-edit.el (widget-image-enable):
367 * emacs-lisp/checkdoc.el (checkdoc-rogue-space-check-engine):
368 * emacs-lisp/find-func.el (find-function-noselect)
369 (find-function, find-variable-noselect, find-variable)
370 (find-definition-noselect, find-face-definition):
371 * mail/rmail-spam-filter.el (rsf-scanning-messages-now):
372 * net/eudc-vars.el (eudc-expansion-overwrites-query):
373 * progmodes/ada-xref.el (ada-find-in-ali):
374 * textmodes/flyspell.el (flyspell-check-tex-math-command):
375 * textmodes/org.el (org-copy-subtree):
376 * textmodes/table.el (table--row-column-insertion-point-p):
377 Use "non-nil" in docstrings.
378
379 2006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
380
381 * sort.el (sort-columns): Set the field separator to tab; on
382 NetBSD, sort complains if "\n" is used as field separator.
383
384 2006-11-03 NIIMI Satoshi <sa2c@sa2c.net>
385
386 * emacs-lisp/pp.el (pp-eval-last-sexp): Evaluate target sexp.
387
388 2006-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
389
390 * server.el (server-auth-key): Remove. Replace by a process-property.
391 (server-start): Don't remove the file of the previous process, but
392 instead clear out the place for the new file.
393 (server-start): Set the :auth-key property.
394 (server-process-filter): Use the :auth-key property.
395
396 2006-11-02 Carsten Dominik <dominik@science.uva.nl>
397
398 * textmodes/org.el (org-mode-map): No longer copy
399 `outline-mode-map' explicitly - this is already done by
400 `define-derived-mode'.
401
402 2006-11-02 Juanma Barranquero <lekktu@gmail.com>
403
404 * server.el (server-visit-files): Use `when'.
405 (server-process-filter): When authentication fails, send error
406 message to client. Wrap `process-send-region' in `ignore-errors'
407 instead of `condition-case', and remove misleading comment.
408
409 2006-11-01 Juri Linkov <juri@jurta.org>
410
411 * simple.el (yank): Doc fix.
412
413 2006-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
414
415 * server.el: Try and fit within 80 columns.
416 (server-start): Make the auth file unreadable by other users.
417
418 2006-10-31 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
419
420 * battery.el (battery-linux-proc-acpi): Prevent range error when
421 `full-capacity' is 0.
422
423 2006-10-31 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
424
425 * faces.el (faces-sample-overlay): New defvar.
426 (faces-sample-overlay): New function to show face sample text.
427 (describe-face): Use it.
428
429 2006-10-31 Stephen Leake <stephen_leake@stephe-leake.org>
430
431 * progmodes/ada-stmt.el: Change maintainer, apply
432 whitespace-cleanup, checkdoc.
433 (ada-func-or-proc-name): Add doc string.
434
435 * progmodes/ada-prj.el (ada-prj-new): Change maintainer, apply
436 whitespace-cleanup, checkdoc. Minor improvements to many doc
437 strings and comments.
438 (ada-prj-display-page): Change buffer name to more accurately
439 reflect function.
440
441 * progmodes/ada-xref.el: Change maintainer, apply
442 whitespace-cleanup, checkdoc. Minor improvements to many doc
443 strings and comments. Don't look for `gvd' or `ddd' debuggers.
444 (ada-compile-current): Don't add newlines to commands.
445
446 2006-10-31 Juanma Barranquero <lekktu@gmail.com>
447
448 * server.el: Add support for TCP sockets.
449 (server-use-tcp, server-host, server-auth-dir): New options.
450 (server-auth-key): New variable.
451 (server-ensure-safe-dir): Create nonexistent parent dirs.
452 Ignore Unix-style file modes on Windows.
453 (server-start): Crete a TCP or Unix socket according to the value
454 of `server-use-tcp'. For TCP sockets, create the id/auth file in
455 `server-auth-dir' directory.
456 (server-process-filter): Delete process if authentication
457 fails (which never happens for Unix sockets).
458
459 2006-10-30 David Kastrup <dak@gnu.org>
460
461 * subr.el (add-to-list): Don't continue checking if a match has
462 been found.
463
464 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
465
466 * tutorial.el: Move defvars to avoid bytecomp warnings.
467 (tutorial--find-changed-keys): Check if viper-current-state is
468 bound before using it.
469 (help-with-tutorial): Check if viper-tutorial is defined before
470 using it.
471
472 2006-10-30 Lennart Borgman <lennart.borgman.073@student.lu.se>
473
474 * help-fns.el (help-with-tutorial): Moved to tutorial.el.
475
476 * tutorial.el: New file.
477 (help-with-tutorial): Moved here from help-fns.el. Added help for
478 rebound keys. Fixed resume of tutorial.
479 (tutorial--describe-nonstandard-key, tutorial--sort-keys)
480 (tutorial--find-changed-keys, tutorial--display-changes)
481 (tutorial--saved-dir, tutorial--saved-file)
482 (tutorial--save-tutorial): New functions to support the changes in
483 help-with-tutorial.
484
485 2006-10-30 Kenichi Handa <handa@m17n.org>
486
487 * files.el (revert-buffer): If a unibyte buffer is being reverted
488 with a coding system for multibyte, set buffer multibyte before
489 calling insert-file-contents.
490
491 2006-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
492
493 * server.el (server-select-display): Use a dummy buffer to detect when
494 the frame is later used.
495 (server-select-display): New function.
496 (server-process-filter): Use it to detect unused temp frames.
497
498 2006-10-29 Stephen Leake <stephen_leake@stephe-leake.org>
499
500 * progmodes/ada-mode.el: Change maintainer, apply
501 whitespace-clean, checkdoc. Minor improvements to many doc strings.
502 (ada-mode-version): New function.
503 (ada-create-menu): Menu operations are available for all supported
504 compilers.
505
506 2006-10-29 Lars Hansen <larsh@soem.dk>
507
508 * net/tramp.el (with-parsed-tramp-file-name): Correct debug spec.
509 Highlight as keyword.
510 (tramp-do-copy-or-rename-file): Correct data for 'file-already-exists.
511 Don't call tramp-method-out-of-band-p for local files.
512 (tramp-touch): Quote file name.
513
514 2006-10-28 Glenn Morris <rgm@gnu.org>
515
516 * calendar/calendar.el (cal-html-cursor-month)
517 (cal-html-cursor-year): Add autoloads for this new package.
518 (calendar-mode-map): Bind cal-html-cursor-month, cal-html-cursor-year.
519
520 2006-10-28 Anna Bigatti <bigatti@dima.unige.it>
521
522 * calendar/cal-html.el: New file.
523
524 2006-10-28 Chong Yidong <cyd@stupidchicken.com>
525
526 * emacs-lisp/authors.el (authors-aliases): Update.
527
528 2006-10-27 Chong Yidong <cyd@stupidchicken.com>
529
530 * version.el (emacs-version): Bump version number to 22.0.90.
531
532 2006-10-26 John W. Eaton <jwe@octave.org>
533
534 * progmodes/octave-inf.el (inferior-octave-has-built-in-variables):
535 New defvar.
536 (inferior-octave-resync-dirs): Check to see whether Octave has
537 built-in variables and set inferior-octave-has-built-in-variables.
538 Check inferior-octave-has-built-in-variables to decide whether to
539 send commands that set built-in variables or call functions to
540 change Octave's behavior.
541 Send "disp (pwd ())" to Octave instead of just "pwd".
542 (inferior-octave-startup): Send "more off" to Octave instead of
543 "page_screen_output = 0".
544
545 2006-10-26 Chong Yidong <cyd@stupidchicken.com>
546
547 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
548 pattern normally.
549
550 2006-10-26 Nick Roberts <nickrob@snap.net.nz>
551
552 * bindings.el (mode-line-mode-menu): Remove bindings for global
553 minor modes (line/column number) as they are on the menubar.
554
555 2006-10-25 Juanma Barranquero <lekktu@gmail.com>
556
557 * term/w32-win.el (x-handle-name-switch): Doc fix.
558 (w32-standard-fontset-spec): Fix typo in docstring.
559
560 * midnight.el (midnight-buffer-display-time): Doc fix.
561 (clean-buffer-list-kill-never-buffer-names): Add "*server*".
562
563 2006-10-22 Martin Rudalics <rudalics@gmx.at>
564
565 * textmodes/flyspell.el (flyspell-check-region-doublons):
566 Fix last fix.
567
568 2006-10-23 Nick Roberts <nickrob@snap.net.nz>
569
570 * bindings.el (mode-line-mode-menu): List global minor modes
571 before local ones.
572
573 2006-10-23 Kim F. Storm <storm@cua.dk>
574
575 * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'.
576 (sit-for): If last command was a prefix arg, add the read-ahead
577 event to unread-command-events as (t . EVENT) so it will be added
578 to this-command-keys by read-key-sequence.
579
580 2006-10-22 Martin Rudalics <rudalics@gmx.at>
581
582 * textmodes/flyspell.el (flyspell-word): Skip past all previous
583 whitespace when checking doublons.
584 (flyspell-check-region-doublons): Fix doublon regexp.
585 (flyspell-highlight-incorrect-region): Highlight doublons using
586 flyspell-duplicate face.
587
588 * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom.
589
590 2006-10-22 John Wiegley <johnw@newartisans.com>
591
592 * progmodes/python.el (python-use-skeletons): python-mode was
593 auto-inserting templates (for those with abbrev-mode on), not only
594 by default -- *but without a configuration variable to disable
595 it*. This rendered python-mode completely useless for me, so I
596 have added `python-use-skeletons', which is now off by default.
597
598 2006-10-22 Chong Yidong <cyd@stupidchicken.com>
599
600 * progmodes/cperl-mode.el (cperl-mode): Don't assume
601 font-lock-multiline is auto-local (it's not).
602 (cperl-windowed-init): Ensure that cperl-font-lock-multiline is
603 initialized before calling cperl-init-faces.
604
605 2006-10-22 Nick Roberts <nickrob@snap.net.nz>
606
607 * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give
608 gdb-stack-position a value when there is no fringe.
609
610 * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode
611 indicator if not visiting a file.
612
613 2006-10-20 David Kastrup <dak@gnu.org>
614
615 * window.el (kill-buffer-and-window): Fix a bug where an aborted
616 operation would still cause some window to collapse later.
617
618 2006-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
619
620 * vc.el (vc-switch-backend): Try to be more careful with unwanted
621 side-effect due to mixing various backends's file properties.
622
623 * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'.
624 Add arg `filename' instead. Don't set vc-backend if `filename' is set.
625 Return `filename's status if applicable. Update callers.
626
627 2006-10-19 Kenichi Handa <handa@m17n.org>
628
629 * international/kkc.el (kkc-region): When a key sequence is not
630 defined, append (this-single-command-raw-keys) to
631 unread-input-method-events.
632
633 2006-10-19 Juanma Barranquero <lekktu@gmail.com>
634
635 * progmodes/ada-mode.el (ada-in-string-p): Doc fix.
636
637 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
638
639 * version.el (emacs-version): Use mac-carbon-version-string.
640
641 * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el.
642
643 2006-10-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
644
645 * select.el (ccl-check-utf-8, string-utf-8-p): New functions
646 (by Kenichi Handa).
647 (xselect-convert-to-string): Decline requests for UTF8_STRING if
648 the selection is not UTF-8.
649
650 2006-10-18 Juanma Barranquero <lekktu@gmail.com>
651
652 * progmodes/ada-mode.el (ada-83-string-keywords)
653 (ada-last-which-function-line ada-no-auto-case, ada-indent-region)
654 (ada-which-compiler, ada-align-modes, ada-adjust-case-buffer)
655 (ada-looking-at-semi-private, ada-get-body-name):
656 Fix typos in docstrings.
657 (ada-create-case-exception, ada-create-case-exception-substring):
658 Fix typos in error messages.
659 (ada-goto-matching-end, ada-narrow-to-defun): Doc fixes.
660
661 2006-10-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
662
663 * term/x-win.el (res-geometry): Don't set geometry from Xresources
664 to default-frame-alist if default-frame-alist already contains
665 width/height.
666
667 2006-10-18 Richard Stallman <rms@gnu.org>
668
669 * emacs-lisp/pp.el (pp-eval-expression): Use `X' to read value.
670 Non-interactive arg is the value, not the expression.
671
672 * simple.el (read-expression-map): Just set it, no defvar.
673
674 * subr.el (insert-for-yank-1): If last inserted char has
675 properties, mark them as rear-nonsticky.
676
677 * recentf.el (recentf-mode): Doc fix.
678
679 * facemenu.el (facemenu-add-new-face): Defend against symbol
680 that isn't a face name.
681
682 * dired-aux.el (dired-do-copy): Doc fix.
683
684 2006-10-18 Chong Yidong <cyd@stupidchicken.com>
685
686 * simple.el (line-move-1): Ignore fields when moving to the
687 beginning of line to avoid getting point stuck.
688
689 2006-10-18 Martin Rudalics <rudalics@gmx.at>
690
691 * textmodes/flyspell.el (flyspell-word-search-backward):
692 Set inhibit-point-motion-hooks to avoid looping due to intangibile
693 text.
694
695 2006-10-16 Richard Stallman <rms@gnu.org>
696
697 * help-fns.el (describe-function-1): Special case optimization
698 for self-insert-command.
699
700 2006-10-16 Kim F. Storm <storm@cua.dk>
701
702 * ido.el (ido-reread-directory): Work in `dir' mode too.
703
704 2006-10-15 Martin Rudalics <rudalics@gmx.at>
705
706 * textmodes/table.el: Require 'regexp-opt.
707
708 2006-10-15 Lennart Borgman <lennart.borgman.073@student.lu.se>
709
710 * progmodes/flymake.el (flymake-get-project-include-dirs-imp):
711 Use shell-quote-argument.
712
713 * shell.el (explicit-bash-args): Likewise.
714
715 * progmodes/ada-xref.el (ada-find-in-src-path): Likewise.
716 Use grep -E rather than egrep.
717
718 2006-10-15 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
719
720 * ido.el (ido-exhibit): Allow `-', `_', and trailing `$' in user id.
721
722 2006-10-15 Kim F. Storm <storm@cua.dk>
723
724 * filesets.el (filesets-run-cmd--repl-fn): Use shell-quote-argument.
725
726 2006-10-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
727
728 * filesets.el (filesets-cmd-shell-command): Quote buffer-file-name
729 to protect whitespace and metacharacters from the shell.
730
731 2006-10-13 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
732
733 * apropos.el (apropos-pattern-quoted): Fix a typo in a doc string.
734
735 2006-10-13 Eli Zaretskii <eliz@gnu.org>
736
737 * subr.el (start-process-shell-command): Doc fix.
738
739 2006-10-13 Andrea Russo <rastandy@salug.it> (tiny change)
740
741 * info-look.el <maxima-mode, inferior-maxima-mode>: Allow [0-9] in
742 the regexp for Maxima symbols.
743
744 2006-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
745
746 * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom.
747 (vc-find-root): Don't walk higher up than ~.
748
749 2006-10-12 Chong Yidong <cyd@stupidchicken.com>
750
751 * international/utf-8.el (utf-translate-cjk-load-tables):
752 Avoid clobbering last-coding-system-used during load.
753
754 2006-10-12 Carsten Dominik <dominik@science.uva.nl>
755
756 * textmodes/reftex-global.el (reftex-create-tags-file):
757 Quote file arguments.
758
759 2006-10-12 Richard Stallman <rms@gnu.org>
760
761 * files.el (file-name-history): Add defvar.
762 (save-some-buffers-action-alist): Improve description strings.
763
764 2006-10-12 Andreas Schwab <schwab@suse.de>
765
766 * files.el (auto-mode-alist): Match change log file name also with
767 a dash before a numeric extension.
768
769 2006-10-11 Ilya Zakharevich <ilyaz@cpan.org>
770
771 * progmodes/cperl-mode.el: Merge from upstream, upto version 5.22.
772 After 5.0:
773 (cperl-add-tags-recurse-noxs-fullpath): New function (for -batch mode).
774
775 After 5.1: Major edit. Summary of most visible changes:
776
777 - Multiple <<HERE per line allowed.
778 - Handles multiline subroutine declaration headers (with comments).
779 (The exception is `cperl-etags' - but it is not used in the rest
780 of the mode.)
781 - Fontifies multiline my/our declarations (even with comments,
782 and with legacy `font-lock').
783 - Major speedup of syntaxification, both immediate and postponed
784 (3.5x to 15x [for different CPUs and versions of Emacs] on the
785 huge real-life document I tested).
786 - New bindings, edits to imenu.
787 - "_" is made into word-char during fontification/syntaxification;
788 some attempts to recognize non-word "_" during other operations too.
789 - Detect bug in Emacs with `looking-at' inside `narrow' and bulk out.
790 - autoload some more perldoc-related stuff
791 - New convenience features: ISpell POD/HEREDOCs, narrow-to-HEREDOC.
792 - Attempt to incorporate XEmacs edits which reached me.
793
794 Fine-grained changelog:
795 (cperl-hook-after-change): New configuration variable.
796 (cperl-vc-sccs-header): Likewise.
797 (cperl-vc-sccs-header): Likewise.
798 (cperl-vc-header-alist): Default via two preceding variables.
799 (cperl-invalid-face): Remove double quoting under XEmacs
800 (still needed under 21.2).
801 (cperl-tips): Update URLs for resources.
802 (cperl-problems): Likewise.
803 (cperl-praise): Mention new features.
804 New C-c key bindings: for `cperl-find-bad-style',
805 `cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
806 `cperl-perdoc', and `cperl-perldoc-at-point'.
807 CPerl Mode menu changes: "Fix style by spaces", "Imenu on Perl Info"
808 moved, new submenu of Tools with Ispell entries and narrowing.
809 (cperl-after-sub-regexp): New defsubst.
810 (cperl-imenu--function-name-regexp-perl): Use `cperl-after-sub-regexp'.
811 Allows heads up to head4.
812 Allow "package;".
813 (defun-prompt-regexp): Use `cperl-after-sub-regexp'.
814 (paren-backwards-message): ??? Something for XEmacs???
815 (cperl-mode): Never auto-switch abbrev-mode off.
816 Try to allow '_' be non-word char.
817 Do not use `font-lock-unfontify-region-function' on XEmacs.
818 Reset syntax cache on mode start.
819 Support multiline facification (even on legacy `font-lock').
820 (cperl-facemenu-add-face-function): ??? Some contributed code ???
821 (cperl-after-change-function): Since `font-lock' and `lazy-lock'
822 refuse to inform us whether the fontification is due to lazy
823 calling or due to edit to a buffer, install our own hook
824 (controlled by `cperl-hook-after-change').
825 (cperl-electric-pod): =cut may have been recognized as start.
826 (cperl-block-p): Move, updatedfor attributes.
827 (cperl-calculate-indent): Try to allow '_' be non-word char
828 Support subs with attributes.
829 (cperl-where-am-i): Queit (?) a warning.
830 (cperl-cached-syntax-table) New function.
831 (cperl-forward-re): Use `cperl-cached-syntax-table'.
832 (cperl-unwind-to-safe): Recognize `syntax-type' property
833 changing in a middle of line.
834 (cperl-find-sub-attrs): New function.
835 (cperl-find-pods-heres): Allow many <<EOP per line.
836 Allow subs with attributes.
837 Major speedups (3.5x..15x on a real-life test file nph-proxy.pl).
838 Recognize "extproc " (OS/2) case-folded and only at start.
839 /x on s///x with empty replacement was not recognized.
840 Better comments.
841 (cperl-after-block-p): Remarks on diff with `cperl-block-p'.
842 Allow subs with attributes, labels.
843 Do not confuse "else::foo" with "else".
844 Minor optimizations...
845 (cperl-after-expr-p): Try to allow '_' be non-word char.
846 (cperl-fill-paragraph): Try to detect a major bug in Emacs
847 with `looking-at' inside `narrow' and bulk out if found.
848 (cperl-imenu--create-perl-index): Updates for new
849 `cperl-imenu--function-name-regexp-perl'.
850 (cperl-outline-level): Likewise.
851 (cperl-init-faces): Allow multiline subroutine headers
852 and my/our declarations, and ones with comments.
853 Allow subroutine attributes.
854 (cperl-imenu-on-info): Better docstring.
855 (cperl-etags): Rudimentary support for attributes.
856 Support for packages and "package;".
857 (cperl-add-tags-recurse-noxs): Better (?) docstring.
858 (cperl-add-tags-recurse-noxs-fullpath): Likewise.
859 (cperl-tags-hier-init): Misprint for `fboundp' fixed.
860 (cperl-not-bad-style-regexp): Try to allow '_' be non-word char.
861 (cperl-perldoc): Add autoload.
862 (cperl-perldoc-at-point): Likewise.
863 (cperl-here-doc-spell): New function.
864 (cperl-pod-spell): Likewise.
865 (cperl-map-pods-heres): Likewise.
866 (cperl-get-here-doc-region): Likewise.
867 (cperl-font-lock-fontify-region-function): Likewise (backward
868 compatibility for legacy `font-lock').
869 (cperl-font-lock-unfontify-region-function): Fix style.
870 (cperl-fontify-syntaxically): Recognize and optimize away deferred
871 calls with no-change. Governed by `cperl-hook-after-change'.
872 (cperl-fontify-update): Recognize that syntaxification region
873 can be larger than fontification one.
874 XXXX we leave `cperl-postpone' property, so this is quadratic...
875 (cperl-fontify-update-bad): Temporary placeholder until
876 it is clear how to implement `cperl-fontify-update'.
877 (cperl-time-fontification): New function.
878 (attrib-group): New text attribute.
879 (multiline): New value: `syntax-type' text attribute.
880
881 After 5.2:
882 (cperl-emulate-lazy-lock): New function.
883 (cperl-fontify-syntaxically): Would skip large regions.
884 Add `cperl-time-fontification', `cperl-emulate-lazy-lock' to menu.
885 Some globals were declared, but uninitialized.
886
887 After 5.3, 5.4:
888 (cperl-facemenu-add-face-function): Add docs, fix U<>.
889 Copyright message updated.
890 (cperl-init-faces): Work around a bug in `font-lock'. May slow
891 facification down a bit.
892 Misprint for my|our|local for old `font-lock'
893 "our" was not fontified same as "my|local".
894 Highlight variables after "my" etc even in
895 a middle of an expression.
896 Do not facify multiple variables after my etc
897 unless parentheses are present.
898
899 After 5.5, 5.6
900 (cperl-fontify-syntaxically): after-change hook could reset.
901 (cperl-syntax-done-to) to a middle of line; unwind to BOL.
902
903 After 5.7:
904 (cperl-init-faces): Allow highlighting of local ($/).
905 (cperl-problems-old-emaxen): New variable (for the use of DOCSTRING).
906 (cperl-problems): Remove fixed problems.
907 (cperl-find-pods-heres): Recognize #-comments in m##x too.
908 Recognize charclasses (unless delimiter is \).
909 (cperl-fontify-syntaxically): Unwinding to safe was done in wrong order.
910 (cperl-regexp-scan): Update docs.
911 (cperl-beautify-regexp-piece): Use information got from regexp scan.
912
913 After 5.8:
914 Major user visible changes:
915 Recognition and fontification of character classes in RExen.
916 Variable indentation of RExen according to groups.
917
918 (cperl-find-pods-heres): Recognize POSIX classes in REx charclasses.
919 Fontify REx charclasses in variable-name face.
920 Fontify POSIX charclasses in "type" face.
921 Fontify unmatched "]" in function-name face.
922 Mark first-char of HERE-doc as `front-sticky'.
923 Reset `front-sticky' property when needed.
924 (cperl-calculate-indent): Indents //x -RExen accordning to parens level.
925 (cperl-to-comment-or-eol): Recognize ends of `syntax-type' constructs.
926 (cperl-backward-to-noncomment): Recognize stringy `syntax-type'
927 constructs. Support `narrow'ed buffers.
928 (cperl-praise): Remove a reservation.
929 (cperl-make-indent): New function.
930 (cperl-indent-for-comment): Use `cperl-make-indent'.
931 (cperl-indent-line): Likewise.
932 (cperl-lineup): Likewise.
933 (cperl-beautify-regexp-piece): Likewise.
934 (cperl-contract-level): Likewise.
935 (cperl-toggle-set-debug-unwind): New function.
936 New menu entry for this.
937 (fill-paragraph-function): Use when `boundp'.
938 (cperl-calculate-indent): Take into account groups when indenting RExen.
939 (cperl-to-comment-or-eol): Recognize # which end a string.
940 (cperl-modify-syntax-type): Make only syntax-table property non-sticky.
941 (cperl-fill-paragraph): Return t: needed for `fill-paragraph-function'.
942 (cperl-fontify-syntaxically): More clear debugging message.
943 (cperl-pod2man-build-command): Check (XEmacs) `Man-filter-list'.
944 (cperl-init-faces): More complicated highlight even on XEmacs (new).
945 Merge cosmetic changes from XEmacs.
946
947 After 5.9:
948 (cperl-1+): Move to before the first use.
949 (cperl-1-): Likewise.
950
951 After 5.10:
952
953 This code may lock Emacs hard!!! Use at your own risk!
954
955 (cperl-font-locking): New internal variable.
956 (cperl-beginning-of-property): New function.
957 (cperl-calculate-indent): Use `cperl-beginning-of-property'
958 instead of `previous-single-property-change'.
959 (cperl-unwind-to-safe): Likewise.
960 (cperl-after-expr-p): Likewise.
961 (cperl-get-here-doc-region): Likewise.
962 (cperl-font-lock-fontify-region-function): Likewise.
963 (cperl-to-comment-or-eol): Do not call `cperl-update-syntaxification'
964 recursively.
965 Bound `next-single-property-change' via `point-max'.
966 (cperl-unwind-to-safe): Bound likewise
967 (cperl-font-lock-fontify-region-function): Likewise.
968 (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol'
969 Initialization of `cperl-font-lock-multiline-start' could be
970 missed if the "main" fontification did not run due to the
971 keyword being already fontified.
972 (cperl-pod-spell): Return t from do-one-chunk function.
973 (cperl-map-pods-heres): Stop when the worker returns nil.
974 Call `cperl-update-syntaxification'.
975 (cperl-get-here-doc-region): Call `cperl-update-syntaxification'.
976 (cperl-get-here-doc-delim): Remove unused function.
977
978 After 5.11:
979
980 The possible lockup of Emacs (introduced in 5.10) fixed.
981
982 (cperl-unwind-to-safe): `cperl-beginning-of-property' won't return nil.
983 (cperl-syntaxify-for-menu): New customization variable.
984 (cperl-select-this-pod-or-here-doc): New function.
985 (cperl-get-here-doc-region): Extra argument.
986 Do not adjust pos by 1.
987
988 New menu entries
989 (Perl/Tools): Selection of current POD or HERE-DOC section.
990 (Debugging CPerl:) backtrace on fontification.
991
992 After 5.12:
993 (cperl-cached-syntax-table): Use `car-safe'.
994 (cperl-forward-re): Remove spurious argument SET-ST.
995 Add documentation.
996 (cperl-forward-group-in-re): New function.
997 (cperl-find-pods-heres): Find and highlight (?{}) blocks in RExen
998 (XXXX Temporary (?) hack is to syntax-mark them as comment).
999
1000 After 5.13:
1001 (cperl-string-syntax-table): Make { and } not-grouping
1002 (Sometimes they ARE grouping in RExen, but matching them would only
1003 confuse in many situations when they are not)
1004 (beginning-of-buffer): Replace two occurences with goto-char...
1005 (cperl-calculate-indent): `char-after' could be nil...
1006 (cperl-find-pods-heres): REx can start after "[" too.
1007 Hightlight (??{}) in RExen too.
1008 (cperl-maybe-white-and-comment-rex): New constant
1009 (cperl-white-and-comment-rex): Likewise.
1010 XXXX Not very efficient, but hard to make
1011 better while keeping 1 group.
1012
1013 After 5.13:
1014 (cperl-find-pods-heres): $foo << identifier() is not a HERE-DOC.
1015 Likewise for 1 << identifier.
1016
1017 After 5.14:
1018 (cperl-find-pods-heres): Different logic for $foo .= <<EOF etc.
1019 Error-less condition-case could fail.
1020 (cperl-font-lock-fontify-region-function): Likewise.
1021 (cperl-init-faces): Likewise.
1022
1023 After 5.15:
1024 (cperl-find-pods-heres): Support property REx-part2.
1025 (cperl-calculate-indent): Likewise.
1026 Don't special-case REx with non-empty 1st line.
1027 (cperl-find-pods-heres): In RExen, highlight non-literal backslashes.
1028 Invert highlighting of charclasses:
1029 now the envelop is highlighted.
1030 Highlight many others 0-length builtins.
1031 (cperl-praise): Mention indenting and highlight in RExen.
1032
1033 After 5.15:
1034 (cperl-find-pods-heres): Highlight capturing parens in REx.
1035
1036 After 5.16:
1037 (cperl-find-pods-heres): Highlight '|' for alternation
1038 Initialize `font-lock-warning-face' if not present.
1039 (cperl-find-pods-heres): Use `font-lock-warning-face' instead of
1040 `font-lock-function-name-face'.
1041 (cperl-look-at-leading-count): Likewise.
1042 (cperl-find-pods-heres): Localize `font-lock-variable-name-face',
1043 `font-lock-keyword-face' (needed for
1044 batch processing), etc...
1045 Use `font-lock-builtin-face' for builtin in REx
1046 Now `font-lock-variable-name-face'
1047 is used for interpolated variables
1048 Use "talking aliases" for faces inside REx
1049 Highlight parts of REx (except in charclasses)
1050 according to the syntax and/or semantic
1051 Syntax-mark a {}-part of (?{}) as "comment"
1052 (it was the ()-part)
1053 Better logic to distinguish what is what in REx
1054 (cperl-tips-faces): Document REx highlighting
1055 (cperl-praise): Mention REx syntax highlight etc.
1056
1057 After 5.17:
1058 (cperl-find-sub-attrs): Would not always manage to print error message.
1059 (cperl-find-pods-heres): Localize `font-lock-constant-face'.
1060
1061 After 5.18:
1062 (cperl-find-pods-heres): Misprint in REx for parsing REx.
1063 Very minor optimization.
1064 `my-cperl-REx-modifiers-face' got quoted.
1065 Recognize "print $foo <<END" as HERE-doc.
1066 Put `REx-interpolated' text attribute if needed.
1067 (cperl-invert-if-unless-modifiers): New function.
1068 (cperl-backward-to-start-of-expr): Likewise.
1069 (cperl-forward-to-end-of-expr): Likewise.
1070 (cperl-invert-if-unless): Works in "the opposite way" too.
1071 Cursor position on return is on the switch-word.
1072 Indents comments better.
1073 (REx-interpolated): New text attribute.
1074 (cperl-next-interpolated-REx): New function.
1075 (cperl-next-interpolated-REx-0): Likewise.
1076 (cperl-next-interpolated-REx-1): Likewise.
1077 "\C-c\C-x", "\C-c\C-y", "\C-c\C-v": New keybinding for these functions.
1078 Perl/Regexp menu: 3 new entries for `cperl-next-interpolated-REx'.
1079 (cperl-praise): Mention finded interpolated RExen.
1080
1081 After 5.19:
1082 (cperl-init-faces): Highlight %$foo, @$foo too.
1083 (cperl-short-docs): Better docs for system, exec.
1084 (cperl-find-pods-heres): Better detect << after print {FH} <<EOF etc.
1085 Would not find HERE-doc ended by EOF without NL.
1086 (cperl-short-docs): Correct not-doubled \-escapes.
1087 start block: Put some `defvar' for stuff gone from XEmacs.
1088
1089 After 5.20:
1090 initial comment: Extend copyright, fix email address.
1091 (cperl-indent-comment-at-column-0): New customization variable.
1092 (cperl-comment-indent): Indentation after $#a would increasy by 1.
1093 (cperl-mode): Make `defun-prompt-regexp' grok BEGIN/END etc.
1094 (cperl-find-pods-heres): Mark CODE of s///e as `syntax-type' `multiline'
1095 (cperl-at-end-of-expr): Would fail if @BAR=12 follows after ";".
1096 (cperl-init-faces): If `cperl-highlight-variables-indiscriminately'
1097 highlight $ in $foo too (UNTESTED).
1098 (cperl-set-style): Docstring missed some available styles.
1099 toplevel: Menubar/Perl/Indent-Styles had FSF, now K&R.
1100 Change "Current" to "Memorize Current".
1101 (cperl-indent-wrt-brace): New customization variable; the default is
1102 as for pre-5.2 version.
1103 (cperl-styles-entries): Keep `cperl-extra-newline-before-brace-multiline'.
1104 (cperl-style-alist): Likewise.
1105 (cperl-fix-line-spacing): Support `cperl-merge-trailing-else' being nil,
1106 and `cperl-extra-newline-before-brace' etc
1107 being t
1108 (cperl-indent-exp): Plans B and C to find continuation blocks even
1109 if `cperl-extra-newline-before-brace' is t.
1110
1111 After 5.21:
1112 Improve some docstrings concerning indentation.
1113 (cperl-indent-rules-alist): New variable.
1114 (cperl-sniff-for-indent): New function name
1115 (separated from `cperl-calculate-indent').
1116 (cperl-calculate-indent): Separate the sniffer and the indenter;
1117 uses `cperl-sniff-for-indent' now.
1118 (cperl-comment-indent): Test for `cperl-indent-comment-at-column-0'
1119 was inverted;
1120 Support `comment-column' = 0.
1121
1122 2006-10-11 Martin Rudalics <rudalics@gmx.at>
1123
1124 * dnd.el (dnd-handle-one-url): Fix typo in doc-string.
1125 * help-at-pt.el (scan-buf-move-to-region): Likewise.
1126 * longlines.el (longlines-window-change-function): Likewise.
1127 * simple.el (undo-ask-before-discard): Likewise.
1128 * wid-edit.el (widget-field-prompt-internal)
1129 (widget-documentation-link-p): Likewise.
1130
1131 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1132
1133 * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
1134 for a keyword.
1135
1136 2006-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1137
1138 * newcomment.el (comment-valid-prefix-p): Make the check
1139 more thorough. From an idea by Martin Rudalics <rudalics@gmx.at>.
1140 (comment-indent-new-line): Adjust call.
1141
1142 2006-10-09 Ken Manheimer <ken.manheimer@gmail.com>
1143
1144 * allout.el (allout-back-to-current-heading): Base on lower-level
1145 routines to get proper disqualification of aberrant topics.
1146
1147 2006-10-09 Richard Stallman <rms@gnu.org>
1148
1149 * textmodes/two-column.el (2C-two-columns): Doc fix.
1150
1151 2006-10-09 Kim F. Storm <storm@cua.dk>
1152
1153 * shell.el (explicit-csh-args, explicit-bash-args): Add comment
1154 about implicit use.
1155
1156 2006-10-08 Richard Stallman <rms@gnu.org>
1157
1158 * textmodes/two-column.el (2C-two-columns): Doc fix.
1159
1160 2006-10-08 Reiner Steib <Reiner.Steib@gmx.de>
1161
1162 * files.el: Mark `buffer-read-only' as safe-local-variable.
1163
1164 2006-10-08 Nick Roberts <nickrob@snap.net.nz>
1165
1166 * progmodes/gdb-ui.el (gdb-speedbar-expand-node):
1167 Burp if GUD buffer has been killed.
1168
1169 2006-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1170
1171 * completion.el (add-completions-from-c-buffer):
1172 Don't presume an error's second element is a string.
1173 Use looking-at rather than buffer-substring + member.
1174
1175 2006-10-07 Eli Zaretskii <eliz@gnu.org>
1176
1177 * mail/rmail.el (rmail-redecode-body): If the old encoding is
1178 `undecided', call find-coding-systems-region to find a proper
1179 non-trivial encoding.
1180 (rmail-mime-charset-pattern): Allow a TAB between "Content-Type"
1181 and "text/plain".
1182
1183 2006-10-07 Kevin Ryde <user42@zip.com.au>
1184
1185 * textmodes/reftex-vars.el (defgroup reftex): Update home page
1186 url-link.
1187
1188 * strokes.el (defgroup strokes): Remove invalid url-link.
1189
1190 2006-10-07 Magnus Henoch <mange@freemail.hu>
1191
1192 * autoinsert.el (auto-insert-alist): Doc fix.
1193
1194 2006-10-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1195
1196 * mouse-sel.el (mouse-insert-selection-internal):
1197 Use insert-for-yank, so that yank handlers are run.
1198
1199 2006-10-07 Kim F. Storm <storm@cua.dk>
1200
1201 * ido.el (ido-file-extension-aux): Fix comparison.
1202
1203 2006-10-06 Kim F. Storm <storm@cua.dk>
1204
1205 * ido.el (ido-wide-find-dirs-or-files): Use shell-quote-argument.
1206
1207 2006-10-05 Juanma Barranquero <lekktu@gmail.com>
1208
1209 * emacs-lisp/advice.el (ad-remove-advice, ad-parse-arglist)
1210 (ad-make-mapped-call): Use `let', not `let*'.
1211
1212 2006-10-05 Chong Yidong <cyd@stupidchicken.com>
1213
1214 * international/mule-cmds.el (coding-system-change-eol-conversion):
1215 Ensure the coding system is initialized before calling
1216 coding-system-eol-type.
1217
1218 2006-10-04 Carsten Dominik <dominik@science.uva.nl>
1219
1220 * textmodes/org.el (org-rm-props, org-activate-plain-links)
1221 (org-activate-angle-links, org-activate-dates)
1222 (org-activate-target-links, org-activate-camels)
1223 (org-activate-tags): Add `rear-nonsticky' text property to avoid
1224 textproperty keymaps from being active beyond the end of a line.
1225 (org-unfontify-region): Also remove `rear-nonsticky' property.
1226
1227 2006-10-04 Kenichi Handa <handa@m17n.org>
1228
1229 * international/code-pages.el (next): Table fixed.
1230
1231 2006-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1232
1233 * progmodes/sh-script.el (sh-prev-thing): Remove (forward-char 1) now
1234 that it's been made unnecessary by removing narrowing.
1235
1236 2006-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1237
1238 * progmodes/sh-script.el (sh-prev-thing): Massage to untangle the
1239 control flow a bit, simplify another bit, and add comments.
1240
1241 2006-10-03 David Kastrup <dak@gnu.org>
1242
1243 * help.el (describe-mode): For clicks on mode-line, use "@"
1244 interactive argument to get the major mode of the click instead of
1245 the current buffer.
1246
1247 * isearch.el (isearch-mouse-2): Use new semantics of `key-binding'
1248 in order to better redirect mouse-2 clicks. Also allow default
1249 bindings to apply.
1250
1251 2006-10-03 Kim F. Storm <storm@cua.dk>
1252
1253 * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
1254 (pushnew): Fix last change.
1255
1256 2006-10-03 Denis St\e,A|\e(Bnkel <dstuenkel@googlemail.com> (tiny change)
1257
1258 * ibuf-ext.el (eval, view-and-eval) <define-ibuffer-op>:
1259 Use the interactive spec of `eval-expression'.
1260
1261 2006-10-02 Michael Welsh Duggan <md5i@cs.cmu.edu>
1262
1263 * progmodes/sh-script.el (sh-prev-thing): Fix last change.
1264
1265 2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
1266
1267 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
1268 2006-09-28 commit.
1269
1270 2006-10-02 Kenichi Handa <handa@m17n.org>
1271
1272 * international/code-pages.el (iso-8859-6): Table fixed.
1273
1274 2006-10-01 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
1275
1276 * dired.el (dired-build-subdir-alist): Fix previous change.
1277
1278 2006-10-01 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se>
1279
1280 * simple.el (undo-elt-crosses-region): Fix the inequalities.
1281
1282 2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1283
1284 * emacs-lisp/find-func.el (find-function-regexp): Don't match
1285 "define-button-type".
1286
1287 * pcvs.el (cvs-update-header): Fix handling of extra newlines so that
1288 they don't keep accumulating.
1289
1290 2006-10-01 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
1291
1292 * ffap.el (ffap-rfc-path): Change the address of the RFC
1293 repository to ftp.rfc-editor.org, as ds.internic.net seems to be gone.
1294
1295 2006-10-01 Stephen Berman <Stephen.Berman@gmx.net>
1296
1297 * allout.el (allout-expose-topic): Rectify implementation of "+"
1298 spec, so that bodies are not exposed with headlines.
1299
1300 2006-10-01 Ken Manheimer <ken.manheimer@gmail.com>
1301
1302 * allout.el (allout-current-depth): Do aberrent check only at or
1303 below doublecheck depth.
1304 (allout-chart-subtree): Make it explicit that LEVELS being nil
1305 means unlimited depth. Drop undocumented support for LEVELS value
1306 t meaning unlimited depth. (This is consistent with
1307 allout-chart-to-reveal, but contrary to allout-show-children,
1308 which needs to use nil to default to depth of 1.)
1309 (allout-goto-prefix-doublechecked): Wrap long docstring line.
1310 (allout-chart-to-reveal): Be explicit in docstring about meaning
1311 of nil LEVELS, and drop support for LEVELS value t.
1312 (allout-show-children): Translate the level spec used by this
1313 routine to that used by allout-chart-subtree and
1314 allout-chart-to-reveal.
1315 (allout-show-to-offshoot): Retry once when stuck, after opening
1316 subtree - improvements in discontinuity handling likely will
1317 enable progress.
1318
1319 2006-09-30 Chong Yidong <cyd@stupidchicken.com>
1320
1321 * wid-edit.el (widget-button-click-moves-point): New variable.
1322 (widget-button-click): If widget-button-click-moves-point is
1323 non-nil, set point after performing the button action
1324
1325 * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
1326
1327 2006-09-30 Martin Rudalics <rudalics@gmx.at>
1328
1329 * files.el (find-file-existing): Modify to not allow wildcards.
1330
1331 2006-09-30 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1332
1333 * simple.el (undo-more): When undo information for the region is
1334 exhausted, say "No further undo information FOR REGION".
1335
1336 2006-09-30 Michael Welsh Duggan <md5i@cs.cmu.edu>
1337
1338 * progmodes/sh-script.el (sh-prev-thing):
1339 Take `sh-leading-keywords' into account.
1340
1341 2006-09-29 Glenn Morris <rgm@gnu.org>
1342
1343 * custom.el (defcustom): Doc fix.
1344
1345 * calendar/calendar.el (european-calendar-style):
1346 Call european-calendar or american-calendar as needed when set.
1347 (diary-view-entries, list-calendar-holidays): Move autoloads
1348 before use.
1349
1350 2006-09-29 Juri Linkov <juri@jurta.org>
1351
1352 * progmodes/cperl-mode.el (cperl-after-expr-p): Don't move point
1353 to nil if there is no previous property change.
1354
1355 2006-09-26 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1356
1357 * cus-edit.el (custom-save-all): Switch to emacs-lisp mode before
1358 saving anything to be sure that `forward-sexp' behaves correctly.
1359
1360 2006-09-29 Chong Yidong <cyd@stupidchicken.com>
1361
1362 * simple.el (line-move-finish): Ignore field boundaries if the
1363 initial and final points have the same `field' property.
1364
1365 2006-09-29 Kim F. Storm <storm@cua.dk>
1366
1367 * ido.el (ido-file-internal): Only bind minibuffer-completing-file-name
1368 to t while calling ido-read-internal.
1369
1370 2006-09-29 Carsten Dominik <dominik@science.uva.nl>
1371
1372 * textmodes/org.el (org-file-remote-p): Get regexp from list.
1373 (org-archive-subtree): Remove erraneous `]' from character list.
1374
1375 2006-09-28 Jonathan Yavner <jyavner@member.fsf.org>
1376
1377 * ses.el (ses-in-print-area, ses-goto-data, ses-load)
1378 (ses-reconstruct-all): Make undo of "insert row" work by keeping
1379 markers for data-area and parameters-area.
1380
1381 2006-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1382
1383 * progmodes/make-mode.el (makefile-mode): Don't disable jit-lock.
1384
1385 * font-lock.el (font-lock-after-change-function): Refontify next line
1386 as well if end is at BOL.
1387 (font-lock-extend-jit-lock-region-after-change): Be more careful to
1388 only extend the region as much as needed.
1389
1390 2006-09-28 Richard Stallman <rms@gnu.org>
1391
1392 * comint.el (comint-mode): Bind font-lock-defaults non-nil.
1393
1394 * subr.el (insert-for-yank-1): Handle `font-lock-face' specially.
1395
1396 * international/mule.el (after-insert-file-set-coding):
1397 If VISIT, don't let set-buffer-multibyte make undo info.
1398
1399 2006-09-28 Osamu Yamane <yamane@green.ocn.ne.jp> (tiny change)
1400
1401 * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
1402 lines in base64-encoded authentication response.
1403
1404 2006-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1405
1406 * progmode/ebnf2ps.el: Doc fix. Implement arrow spacing and scaling.
1407 (ebnf-version): New version 4.3.
1408 (ebnf-arrow-extra-width, ebnf-arrow-scale): New options.
1409 (ebnf-prologue): Adjust PostScript programming.
1410 (ebnf-begin-file, ebnf-insert-ebnf-prologue, ebnf-terminal-dimension1)
1411 (ebnf-repeat-dimension, ebnf-except-dimension): Adjust code.
1412
1413 2006-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1414
1415 * jit-lock.el (jit-lock-force-redisplay): Rename from
1416 jit-lock-fontify-again, and undo the mistaken change I've just done.
1417
1418 * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
1419 (jit-lock-fontify-again): Don't refontify text that's not displayed.
1420
1421 2006-09-26 Kenichi Handa <handa@m17n.org>
1422
1423 * startup.el (display-splash-screen): Allow a prefix argument.
1424
1425 2006-09-25 Jason Rumney <jasonr@gnu.org>
1426
1427 * subr.el (shell-quote-argument): Use DOS logic for Windows
1428 shells with DOS semantics.
1429
1430 2006-09-24 Richard Stallman <rms@gnu.org>
1431
1432 * progmodes/compile.el (compilation-goto-locus-delete-o): New fn.
1433 (compilation-goto-locus): Use compilation-goto-locus-delete-o
1434 to delete the overlay. Put it on pre-command-hook.
1435
1436 * emacs-lisp/timer.el (timer-max-repeats): Doc fix.
1437
1438 * startup.el (fancy-splash-screens, normal-splash-screen):
1439 Call the splash buffer *About GNU Emacs*.
1440
1441 * simple.el (next-error-highlight, next-error-highlight-no-select):
1442 Default to 0.5.
1443 (yank-excluded-properties): Add `fontified'.
1444
1445 * font-lock.el (font-lock-compile-keywords): Allow value of
1446 syntax-begin-function to enable paren-column-0 highlighting.
1447
1448 2006-09-24 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
1449
1450 * dired.el (dired-build-subdir-alist): When file ends in colon,
1451 don't exit the loop, just disregard that file.
1452
1453 2006-09-24 Chong Yidong <cyd@stupidchicken.com>
1454
1455 * simple.el (line-move-finish): Handle corner case for fields in
1456 continued lines.
1457 (line-move-1): Remove flawed test for that case.
1458
1459 2006-09-24 Ken Manheimer <ken.manheimer@gmail.com>
1460
1461 * icomplete.el (icomplete-simple-completing-p): Use the correct
1462 name for the new variable, `icomplete-with-completion-tables'.
1463 (file local variables): Remove superfluous setting.
1464
1465 2006-09-23 Jeff Miller <jmiller@cablespeed.com> (tiny change)
1466
1467 * calendar/appt.el (appt-check): Fix typo for appointments just
1468 after midnight.
1469
1470 2006-09-23 Chong Yidong <cyd@stupidchicken.com>
1471
1472 * help.el (describe-key-briefly, describe-key): Don't expect an
1473 extra up event if a down-event is generated by a popup menu.
1474
1475 2006-09-23 Michal Nazarewicz <mnazarewicz@gmail.com> (tiny change)
1476
1477 * textmodes/ispell.el (ispell-change-dictionary): Don't check the
1478 local dictionary when changing the global dictionary.
1479
1480 2006-09-23 Ken Manheimer <ken.manheimer@gmail.com>
1481
1482 * icomplete.el (icomplete-with-completion-tables): List of
1483 specialized completion tables with which icomplete should
1484 operate. Include the new `internal-complete-buffer', so icomplete
1485 works with interactive buffer-selection.
1486 (icomplete-simple-completing-p): Add acceptance of specialized
1487 completion tables listed in icomplete-with-completion-tables.
1488
1489 2006-09-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1490
1491 * frame.el (focus-follows-mouse): Set default to nil on Mac.
1492
1493 * startup.el (command-line): Use `custom-reevaluate-setting' for
1494 `focus-follows-mouse'.
1495
1496 2006-09-22 Richard Stallman <rms@gnu.org>
1497
1498 * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
1499 explain why Save is not available.
1500
1501 2006-09-22 Juanma Barranquero <lekktu@gmail.com>
1502
1503 * woman.el (woman0-so): Use `let*', not `let'.
1504 (woman-horizontal-line): Remove unbalanced parenthesis.
1505
1506 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
1507
1508 * woman.el: Make sure all the end-of-region markers we use have
1509 a non-nil insertion-type.
1510 (woman0-so): Move things around so we can use copy-marker.
1511 (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
1512 Adjust marker type.
1513 (woman2-process-escapes): Check marker type.
1514 (woman-horizontal-line): Dispense with the use of a marker.
1515
1516 2006-09-22 Jay Belanger <belanger@truman.edu>
1517
1518 * calc/calc-lang.el: Add Greek letters to math-variable-table
1519 property of tex.
1520
1521 2006-09-22 Chong Yidong <cyd@stupidchicken.com>
1522
1523 * files.el (save-some-buffers-action-alist): Display diff in view-mode.
1524
1525 2006-09-22 Masatake YAMATO <jet@gyve.org>
1526
1527 * add-log.el (add-log-current-defun): Use `forward-sexp'
1528 instead of `forward-word' to pick c++::symbol.
1529 Reported by Herbert Euler <herberteuler@hotmail.com>.
1530
1531 2006-09-22 Kenichi Handa <handa@m17n.org>
1532
1533 * bindings.el: Fix setting self-insert-command for multibyte
1534 characters in global-map.
1535
1536 2006-09-21 David Kastrup <dak@gnu.org>
1537
1538 * mouse.el (mouse-posn-property): Fix typo for `event-start' in
1539 doc string.
1540
1541 2006-09-21 Kenichi Handa <handa@m17n.org>
1542
1543 * language/european.el ("Latin-1"): Add windows-1252 to
1544 coding-priority.
1545 ("German"): Likewise.
1546
1547 2006-09-21 Kim F. Storm <storm@cua.dk>
1548
1549 * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
1550 Suggested by Miles Bader.
1551
1552 * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
1553 instead of add-to-list in the simple case.
1554
1555 2006-09-20 Kenichi Handa <handa@m17n.org>
1556
1557 * isearch.el (isearch-process-search-char): Cancel the previous change.
1558 (isearch-search-string): New function.
1559 (isearch-search): Use isearch-search-string.
1560 (isearch-lazy-highlight-search): Likewise.
1561
1562 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1563
1564 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of doc
1565 string to become an option.
1566
1567 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1568
1569 * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
1570
1571 2006-09-20 Kim F. Storm <storm@cua.dk>
1572
1573 * simple.el (line-move-partial): Call pos-visible-in-window-p with
1574 position t instead of trying both window-end and window-end - 1.
1575
1576 2006-09-20 Carsten Dominik <dominik@science.uva.nl>
1577
1578 * textmodes/org.el (org-scan-tags): Find end of subtrees also in
1579 hidden trees.
1580
1581 2006-09-20 David Kastrup <dak@gnu.org>
1582
1583 * mouse.el (mouse-posn-property): Improve doc string.
1584 (mouse-on-link-p): Change buffers for function calls on links.
1585
1586 * menu-bar.el (clipboard-yank): Bomb out in interactive use if
1587 buffer is read-only.
1588
1589 2006-09-20 Ken Manheimer <ken.manheimer@gmail.com>
1590
1591 * allout.el (allout-unprotected): Let inhibit-read-only only when
1592 buffer-read-only isn't set.
1593 (allout-annotate-hidden): Enable topic annotation during copies even
1594 when the buffer is read-only, eg for topic copies. Ensure that the loop
1595 advances, even when the span extends beyond the deletion region.
1596 (allout-toggle-subtree-encryption): Use allout-structure-added-hook
1597 rather than allout-exposure-changed-hook, as a stronger assertion.
1598 (allout-keybindings-list): Add bindings for
1599 allout-copy-line-as-kill and allout-copy-topic-as-kill.
1600 (allout-copy-line-as-kill, allout-copy-topic-as-kill):
1601 Copy wrappers for allout-kill-line and allout-kill-topic.
1602 (allout-listify-exposed): Position correctly to accumulate lines.
1603
1604 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
1605
1606 * simple.el (line-move-1): Escape field boundaries occurring
1607 exactly at point. Update goal column if constrained to a field.
1608 (line-move-finish): Escape field boundaries occurring exactly at point.
1609
1610 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1611
1612 * mouse.el (mouse-on-link-p): Tentatively fix last change.
1613 (mouse-drag-vertical-line): Remove unused var `wconfig'.
1614
1615 2006-09-19 Kim F. Storm <storm@cua.dk>
1616
1617 * help.el (describe-key-briefly, describe-key): Simplify printing
1618 of descriptions by using format and %S. Fix "is undefined"
1619 messages to say "at that spot" for mouse events.
1620
1621 * simple.el (line-move-partial): Optimize. Try window-line-height
1622 before posn-at-point to get vpos of current line.
1623
1624 2006-09-18 Michael Kifer <kifer@cs.stonybrook.edu>
1625
1626 * viper.el: Bump up version/date of update to reflect the substantial
1627 changes done in August 2006.
1628
1629 * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
1630 are defined.
1631
1632 * ediff-util.el (ediff-add-to-history): New function.
1633
1634 * ediff.el: Use ediff-add-to-history instead of add-to-history.
1635
1636 2006-09-18 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
1637
1638 * textmodes/conf-mode.el (conf-space-mode): Doc fix.
1639 Delete duplicate make-local-variable form.
1640 (conf-space-keywords): Add autoload cookie.
1641 Fix typo (`keywords', not `keyword').
1642
1643 2006-09-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1644
1645 * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
1646 x-gtk-file-dialog-help-text. Rename x-use-old-gtk-file-dialog
1647 to x-gtk-use-old-file-dialog
1648
1649 2006-09-18 Richard Stallman <rms@gnu.org>
1650
1651 * wid-edit.el (widget-button-click): Handle non-mouse-motion events
1652 that might come in during mouse tracking.
1653
1654 2006-09-18 Kim F. Storm <storm@cua.dk>
1655
1656 * simple.el (line-move-partial): Rework 2006-09-15 change to use
1657 new window-line-height function. Further optimize by not calling
1658 pos-visible-in-window-p for window-end when window-line-height
1659 returns useful information.
1660
1661 2006-09-16 Richard Stallman <rms@gnu.org>
1662
1663 * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
1664 (conf-space-mode): Don't handle prefix arg.
1665 Delete conf-space-keywords-override code.
1666 Use add-hook.
1667 (conf-space-keywords): New command.
1668 (conf-space-mode-internal): Be careful with imenu-generic-expression.
1669 Delete conf-space-keywords-override code.
1670 (conf-space-keywords-alist): Doc fix.
1671 (conf-space-font-lock-keywords): Doc fix.
1672 (conf-space-keywords-override): Var deleted.
1673
1674 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
1675
1676 * startup.el (fancy-splash-screens): Don't switch to the scratch
1677 buffer; it may not be the next buffer.
1678
1679 2006-09-16 Romain Francoise <romain@orebokech.com>
1680
1681 * saveplace.el (load-save-place-alist-from-file): Use expanded name
1682 in both messages.
1683
1684 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se>
1685
1686 * progmodes/python.el (python-preoutput-filter):
1687 Fix arg order to string-match.
1688
1689 2006-09-16 Richard Stallman <rms@gnu.org>
1690
1691 * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
1692 font-lock-compile-keywords.
1693
1694 * font-lock.el (font-lock-compile-keywords): Rename optional arg
1695 to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed.
1696
1697 2006-09-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1698
1699 * cus-start.el (all): Add x-gtk-show-chooser-help-text.
1700
1701 * select.el (xselect-convert-to-string): If UTF8_STRING is requested
1702 and the data doesn't look like UTF8, send STRING instead.
1703
1704 2006-09-16 Agustin Martin <agustin.martin@hispalinux.es>
1705
1706 * textmodes/flyspell.el (flyspell-check-region-doublons):
1707 New function to detect duplicated words.
1708 (flyspell-large-region): Use it.
1709
1710 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
1711
1712 * simple.el (line-move-to-column): Revert 2006-08-03 change.
1713
1714 2006-09-16 Eli Zaretskii <eliz@gnu.org>
1715
1716 * help.el (describe-prefix-bindings): Use let, not let*.
1717
1718 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
1719
1720 * allout.el (allout-regexp, allout-line-boundary-regexp)
1721 (allout-bob-regexp): Correct grouping and boundaries to fix
1722 backwards traversal.
1723 (allout-depth-specific-regexp, allout-depth-one-regexp):
1724 New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
1725 worse time in allout-ascend.
1726 (allout-doublecheck-at-and-shallower): Identify depth threshold
1727 below which topics are checked for and disqualified by containment
1728 discontinuities.
1729 (allout-hotspot-key-handler): Correctly handle multiple-key
1730 strokes. Remove some unused variables.
1731 (allout-mode-leaders): Clarify that mode-specific comment-start
1732 will be used.
1733 (set-allout-regexp): Correctly regexp-quote allout regexps to
1734 properly accept alternative header-leads and primary bullets with
1735 regexp-specific characters (eg, C "/*", mathematica "(*").
1736 Include new regular expressions among those configured.
1737 (allout-infer-header-lead-and-primary-bullet):
1738 Rename allout-infer-header-lead.
1739 (allout-recent-depth): Manifest as a variable as well as a function.
1740 (allout-prefix-data): Simplify into an inline instead of a macro,
1741 assuming current match data rather than being explicitly passed
1742 it. Establish allout-recent-depth value as well as
1743 allout-recent-prefix-beginning and allout-recent-prefix-end.
1744 (allout-aberrant-container-p): True when an item's immediate
1745 offspring discontinuously contained. Useful for disqualifying
1746 unintended topic prefixes, likely at low depths.
1747 (allout-goto-prefix-doublechecked): Elaborate version of
1748 allout-goto-prefix which disqualifies aberrant pseudo-items.
1749 (allout-pre-next-prefix): Layer on top of lower-level routines, to
1750 get disqualification of aberrant containers.
1751 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
1752 containers.
1753 (allout-beginning-of-current-entry): Position at start of buffer
1754 when in container (depth 0) entry.
1755 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
1756 (allout-current-bullet): Strip text properties.
1757 (allout-get-prefix-bullet): Use right match groups.
1758 (allout-beginning-of-line, allout-next-heading):
1759 Disqualify aberrant containers.
1760 (allout-previous-heading): Disqualify aberrant containers, and
1761 change to regular (rather than inline) function, to allow
1762 self-recursion.
1763 (allout-get-invisibility-overlay): Increment so progress is made
1764 when the first overlay is not the sought one.
1765 (allout-end-of-prefix): Disqualify aberrant containers.
1766 (allout-end-of-line): Cycle something like allout-beginning-of-line.
1767 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
1768 outline.el outlines) functional again. Change the primary bullet
1769 along with the header-lead - level 1 new-style bullets now work.
1770 Engage allout-before-change-handler in mainline Emacs, not just
1771 XEmacs, to do undo handling.
1772 (allout-before-change-handler): Expose undo changes occurring in
1773 hidden regions. Use allout-get-invisibility-overlay instead of
1774 reimplementing it inline.
1775 (allout-chart-subtree): Use start rather than end of prefix in
1776 charts. Use allout-recent-depth variable.
1777 (allout-chart-siblings): Disqualify aberrant topics.
1778 (allout-beginning-of-current-entry): Position correctly.
1779 (allout-ascend): Use new allout-depth-specific-regexp and
1780 allout-depth-one-regexp for linear instead of O(N^2) or worse
1781 behavior.
1782 (allout-ascend-to-depth): Depend on allout-ascend, rather than
1783 reimplementing an algorithm.
1784 (allout-up-current-level): Depend on allout-ascend, rather than
1785 reimplementing an algorithm. Return to start-point if we fail.
1786 (allout-descend-to-depth): Use allout-recent-depth variable
1787 instead of function.
1788 (allout-next-sibling): On traversal of numerous intervening
1789 topics, resort to economical allout-next-sibling-leap.
1790 (allout-next-sibling-leap): Specialized version of
1791 allout-next-sibling that uses allout-ascend cleverly, to depend on
1792 a regexp search to leap large numbers of contained topics, rather
1793 than arbitrarily many one-by-one traversals.
1794 (allout-next-visible-heading): Disqualify aberrant topics.
1795 (allout-previous-visible-heading): Position consistently when
1796 interactive.
1797 (allout-forward-current-level): Base on allout-previous-sibling
1798 rather than (differently) reimplmenting the algorithm. Remove some
1799 unused variables.
1800 (allout-solicit-alternate-bullet): Present default choice stripped
1801 of text properties.
1802 (allout-rebullet-heading): Use bullet stripped of text properties.
1803 Register changes using allout-exposure-change-hook.
1804 Disregard aberrant topics.
1805 (allout-shift-in): With universal-argument, make topic a peer of
1806 it's former offspring. Simplify the code by separating out
1807 allout-shift-out functionality.
1808 (allout-shift-out): With universal-argument, make offspring peers
1809 of their former container, and its siblings. Implement the
1810 functionality here, rather than inappropriately muddling the
1811 implementation of allout-shift-in.
1812 (allout-rebullet-topic): Respect additional argument for new
1813 parent-child separation function.
1814 (allout-yank-processing): Use allout-ascend directly.
1815 (allout-show-entry): Disqualify aberrant topics.
1816 (allout-show-children): Handle discontinuous children gracefully,
1817 extending the depth being revealed to expose them and posting a
1818 message indicating the situation.
1819 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
1820 Leave cursor in correct position.
1821 (allout-hide-current-subtree): Use allout-ascend directly.
1822 Disqualify aberrant topics.
1823 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
1824 a way that the yanks can restore it, as used to happen.
1825 (allout-yank-processing): Restore exposure layout as recorded by
1826 allout-kill-*, as used to happen.
1827 (allout-annotate-hidden, allout-hide-by-annotation): New routines
1828 for preseving and restoring exposure layout across kills.
1829 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
1830 (allout-encrypt-string): Strip text properties.
1831 Rearranged order and outline-headings for some of the
1832 miscellaneous functions.
1833 (allout-resolve-xref): No need to quote the error name in the
1834 condition-case handler section.
1835 (allout-flatten): Classic recursive (and recursively intensive,
1836 without tail-recursion) list-flattener, needed by allout-shift-out
1837 when confronted with discontinuous children.
1838
1839 2006-09-16 Jason Rumney <jasonr@gnu.org>
1840
1841 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
1842 on ms-windows.
1843 (dnd-open-unc-file): Remove.
1844 (dnd-open-local-file): Mention in doc string that it also handles
1845 remote files if the system natively supports unc file-names.
1846
1847 2006-09-15 Kim F. Storm <storm@cua.dk>
1848
1849 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
1850 all necessary information about the event before erasing *Help*.
1851
1852 * simple.el (line-move-partial): Use window-line-visiblity to
1853 quickly check whether last line is partially visible, and only do
1854 the hard (and slow) part in that case.
1855
1856 2006-09-15 Jay Belanger <belanger@truman.edu>
1857
1858 * COPYING: Replace "Library Public License" by "Lesser Public
1859 License" throughout.
1860
1861 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1862
1863 * term/x-win.el (x-menu-bar-open): New function for F10.
1864
1865 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
1866
1867 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1868 Disallow filenames containing " -" to avoid confusion with libtool
1869 compilation messages. Suggested by Stefan Monnier.
1870
1871 2006-09-15 David Kastrup <dak@gnu.org>
1872
1873 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
1874 instead of buffer position for `mouse-on-link-p'.
1875
1876 * mouse.el (mouse-posn-property): New function looking up the
1877 properties at a click position in overlays and text properties in
1878 either buffer or strings.
1879 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
1880 of both `follow-link' as well as `mouse-face' properties.
1881 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
1882 buffer position.
1883
1884 * help.el (describe-key-briefly): When reading a down-event on
1885 mode lines or scroll bar, swallow the following up event, too.
1886 Use the new mouse sensitity of `key-binding' for lookup.
1887 (describe-key): The same here.
1888
1889 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
1890
1891 * play/life.el (life-patterns): Add a few more interesting patterns.
1892 (life-setup): Force `show-trailing-whitespace' to nil.
1893
1894 2006-09-14 Richard Stallman <rms@gnu.org>
1895
1896 * startup.el (fancy-splash-text): Change text to improve alignment.
1897 (fancy-splash-screens): Don't set non-standard tab width.
1898 Bind cursor-type temporarily, and make it easy to patch to
1899 preserve the splash buffer.
1900 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
1901 (fancy-splash-screens): Display echo-area message explicitly.
1902 Don't set fancy-splash-help-echo.
1903
1904 * simple.el (line-number-mode): Group mode-line instead of
1905 editing-basics.
1906 (column-number-mode, size-indication-mode): Likewise.
1907
1908 * faces.el (mode-line-faces): Group mode-line instead of modeline.
1909
1910 * time.el (display-time): Group mode-line instead of modeline.
1911
1912 * cus-edit.el (mode-line): Rename from modeline. All uses changed.
1913
1914 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
1915
1916 * startup.el (fancy-splash-text): Move editing instructions to
1917 fancy-splash-head.
1918 (fancy-splash-head): Issue editing instructions.
1919 (fancy-splash-screens): Fixup whitespace.
1920
1921 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1922
1923 * bindings.el (mode-line-buffer-identification-keymap):
1924 Remove duplicate line.
1925
1926 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1927
1928 * ido.el (ido-ignore-item-p): Allow any kind of functions in
1929 ignore lists.
1930
1931 2006-09-14 Kim F. Storm <storm@cua.dk>
1932
1933 * jit-lock.el (jit-lock-fontify-again): New function.
1934 (jit-lock-fontify-now): Use it instead of lambda form.
1935
1936 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
1937
1938 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
1939 (flyspell-auto-correct-word): Make ispell-filter local to these
1940 functions. Check that ispell-filter has new stuff before calling
1941 ispell-parse-output.
1942
1943 2006-09-13 Kim F. Storm <storm@cua.dk>
1944
1945 * simple.el (line-move-partial): Optimize.
1946
1947 2006-09-13 Richard Stallman <rms@gnu.org>
1948
1949 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
1950 Delete spurious backquote.
1951
1952 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
1953
1954 * net/rcirc.el (rcirc-print): Fix last change.
1955
1956 2006-09-12 Jay Belanger <belanger@truman.edu>
1957
1958 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
1959
1960 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
1961
1962 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
1963 rcirc-show-maximum-output.
1964 (rcirc-mode): Remove window-scroll-function hook.
1965 (rcirc-scroll-to-bottom): Remove function.
1966 (rcirc-print): Recenter so point stays at the bottom of the window
1967 if point was already there.
1968
1969 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
1970
1971 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
1972 not to "t".
1973 * progmodes/compile.el (compilation-start): Likewise.
1974 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
1975 Don't use expand-file-name on invocation-directory, since this
1976 might mishandle special characters in invocation-directory.
1977
1978 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1979
1980 * pcvs-defs.el: Remove * in defcustom's docstrings.
1981
1982 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
1983
1984 * progmodes/compile.el (compilation-directory-properties):
1985 Doc fix for help-echo.
1986
1987 2006-09-12 Lars Hansen <larsh@soem.dk>
1988
1989 * desktop.el (desktop-read): Add comment.
1990
1991 2006-09-12 Kim F. Storm <storm@cua.dk>
1992
1993 * simple.el (next-error-highlight, next-error-highlight-no-select):
1994 Fix spelling error.
1995
1996 * subr.el (sit-for): Rework to use input-pending-p and cond.
1997 Return nil input is pending on entry also for SECONDS <= 0.
1998 (while-no-input): Use input-pending-p instead of sit-for.
1999
2000 2006-09-11 Richard Stallman <rms@gnu.org>
2001
2002 * simple.el (next-error-highlight, next-error-highlight-no-select):
2003 Fix custom type and doc strings.
2004
2005 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2006
2007 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
2008 (diff-apply-hunk): Use it to ask for confirmation.
2009
2010 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
2011
2012 * emacs-lisp/cl.el (pushnew): Add missing `,'.
2013
2014 2006-09-11 David Kastrup <dak@gnu.org>
2015
2016 * help.el (string-key-binding, describe-key-briefly)
2017 (describe-key): Remove `string-key-binding' and its callers since
2018 `key-binding' already caters for the proper lookup now.
2019
2020 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2021
2022 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
2023 (cfengine-mode): Use it. Fix \ syntax to be like /.
2024
2025 * bindings.el (mode-line-buffer-identification-keymap):
2026 Move initialization into declaration.
2027
2028 2006-09-10 Kim F. Storm <storm@cua.dk>
2029
2030 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
2031 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
2032 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
2033 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
2034
2035 2006-09-10 Richard Stallman <rms@gnu.org>
2036
2037 * dired-aux.el: Handle errors in recursive copy usefully.
2038 (dired-create-files-failures): New variable.
2039 (dired-copy-file): Remove condition-case.
2040 (dired-copy-file-recursive): Check for errors on all file
2041 operations, and add them to dired-create-files-failures.
2042 Check file file-date-erorr here too.
2043 (dired-create-files): Check dired-create-files-failures
2044 and report those errors too.
2045
2046 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
2047
2048 * subr.el (add-to-list): New argument COMPARE-FN.
2049
2050 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
2051
2052 * filecache.el (file-cache-add-directory)
2053 (file-cache-add-directory-list, file-cache-add-file)
2054 (file-cache-add-directory-using-find)
2055 (file-cache-add-directory-using-locate)
2056 (file-cache-add-directory-recursively): Add autoloads.
2057
2058 2006-09-09 Richard Stallman <rms@gnu.org>
2059
2060 * textmodes/conf-mode.el (conf-space-mode):
2061 Use hack-local-variables-hook instead of calling hack-local-variables.
2062 (conf-space-keywords-override): New variable.
2063 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
2064 (conf-space-mode): Always make conf-space-keywords and
2065 conf-space-keywords-override local.
2066 Call conf-space-mode-internal directly as well as via hook.
2067
2068 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
2069
2070 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
2071 quasi-keywords.
2072
2073 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
2076 (python-send-string): Be slightly more careful about adding \n.
2077
2078 * startup.el (normal-splash-screen): Don't display the buffer if we'll
2079 kill it right away anyway.
2080
2081 2006-09-09 Eli Zaretskii <eliz@gnu.org>
2082
2083 * international/codepage.el (cp850-decode-table): Fix a few codes.
2084 (cp858-decode-table): New variable.
2085
2086 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
2087
2088 * net/ldap.el (ldap-search-internal): Doc fix.
2089
2090 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2091
2092 * play/life.el (life-display-generation): Test for input manually if
2093 `sleeptime' is negative or null.
2094
2095 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
2096 (print-region-1): Substitute `%s' with the page title.
2097
2098 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
2099
2100 * locate.el (locate-current-search): New variable.
2101 (locate): Set buffer local value. Use current buffer if it is
2102 in Locate mode.
2103 (locate-mode): Disable undo here.
2104 (locate-do-setup): Use locate-current-filter from buffer to be killed.
2105 (locate-update): Use locate-current-search and locate-current-filter.
2106
2107 2006-09-08 David Kastrup <dak@gnu.org>
2108
2109 * desktop.el (desktop-read): When loading a desktop, disable
2110 saving it while the load progresses, and switch off a pending lazy
2111 load by calling `desktop-lazy-abort'.
2112
2113 2006-08-27 Martin Rudalics <rudalics@gmx.at>
2114
2115 * window.el (mouse-autoselect-window-timer)
2116 (mouse-autoselect-window-position)
2117 (mouse-autoselect-window-window)
2118 (mouse-autoselect-window-now): New vars.
2119 (mouse-autoselect-window-cancel)
2120 (mouse-autoselect-window-select)
2121 (mouse-autoselect-window-start): New functions.
2122 (handle-select-window): Call `mouse-autoselect-window-start' when
2123 delayed window autoselection is enabled.
2124
2125 * cus-start.el (mouse-autoselect-window): Handle delayed window
2126 autoselection.
2127
2128 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
2129 commands after which it is allowed to print in the echo area.
2130
2131 2006-09-08 Richard Stallman <rms@gnu.org>
2132
2133 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
2134
2135 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
2136 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
2137
2138 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
2139 (cancel-timer-internal): Add doc string.
2140 (cancel-function-timers): Doc fix.
2141 (with-timeout-handler, timer-event-last*): Add doc strings.
2142
2143 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
2144
2145 * files.el (risky-local-variable-p): Match ...-bindat-spec.
2146
2147 * dired.el (dired-log-summary): Add doc string.
2148
2149 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
2150 (custom-group-menu-create): Not here.
2151
2152 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
2153
2154 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
2155
2156 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2157
2158 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
2159 (mac-apple-event-map): Define its handler.
2160
2161 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
2162
2163 * net/ldap.el (ldap-search-internal): Handle `auth' key.
2164
2165 2006-09-07 Magnus Henoch <mange@freemail.hu>
2166
2167 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
2168 clause.
2169
2170 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2171
2172 * info.el (Info-index): Bind completion-ignore-case.
2173
2174 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2175
2176 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
2177 previous commit.
2178 (inferior-prolog-guess-flavor): New fun left out of previous commit.
2179 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
2180 burp in dedicated windows.
2181 (inferior-prolog-self-insert-command): New command.
2182 (inferior-prolog-mode-map): Use it.
2183
2184 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
2185
2186 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
2187
2188 * international/code-pages.el: Add cp858.
2189
2190 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2191
2192 * dnd.el: Fix bootstrapping.
2193
2194 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2195
2196 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
2197 (dnd-open-remote-url): New function.
2198 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
2199 not windows-nt.
2200
2201 2006-09-07 Jason Rumney <jasonr@gnu.org>
2202
2203 * dnd.el (dnd-open-remote-file-function): New variable.
2204 (dnd-open-unc-file): New function.
2205 (dnd-open-file): Call dnd-open-remote-file-function if set.
2206
2207 2006-09-06 Daiki Ueno <ueno@unixuser.org>
2208
2209 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
2210 pgg-passphrase-coding-system rather than locale-coding-system.
2211 * pgg-def.el (pgg-passphrase-coding-system): New user option.
2212
2213 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2214
2215 * progmodes/prolog.el: Remove * in docstrings.
2216 (prolog-program-name): Add SWI prolog.
2217 (prolog-mode-menu): New menu.
2218 (prolog-mode): Set comment-add.
2219 (prolog-indent-line): Simplify. Use indent-line-to.
2220 (inferior-prolog-buffer): New var.
2221 (inferior-prolog-run, inferior-prolog-process): New funs.
2222 (run-prolog, switch-to-prolog): Rewrite, using them.
2223 (prolog-consult-region): Use inferior-prolog-buffer.
2224 (inferior-prolog-load-file): New function.
2225 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
2226
2227 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
2228 last word, if it's not the end of the paragraph.
2229
2230 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
2231 file name.
2232
2233 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
2234
2235 * frame.el (display-mm-dimensions-alist): New defcustom.
2236 (display-mm-height, display-mm-width): Use it.
2237
2238 2006-09-06 Simon Josefsson <jas@extundo.com>
2239
2240 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
2241
2242 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
2243
2244 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
2245 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
2246 string values.
2247
2248 2006-09-06 Kim F. Storm <storm@cua.dk>
2249
2250 * simple.el (line-move-partial): New function to do vscrolling for
2251 partially visible images / tall lines. Rewrite based on code
2252 previously in line-move. Simplify backwards vscrolling.
2253 (line-move): Use it. Simplify.
2254
2255 2006-09-05 Kim F. Storm <storm@cua.dk>
2256
2257 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
2258
2259 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
2260
2261 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2262 Process the `gcc-include' after the `gnu' rule.
2263
2264 2006-09-05 Kim F. Storm <storm@cua.dk>
2265
2266 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
2267
2268 2006-09-05 Daiki Ueno <ueno@unixuser.org>
2269
2270 * pgg.el (pgg-clear-string): Alias to clear-string for backward
2271 compatibility.
2272
2273 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
2274 inhibit-redisplay; encode passphrase with locale-coding-system.
2275
2276 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
2277
2278 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
2279
2280 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
2281
2282 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
2283 (gdb-var-list-children-regexp): Make type field optional.
2284
2285 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
2286 e.g public, protected in C++.
2287
2288 2006-09-04 John Paul Wallington <jpw@pobox.com>
2289
2290 * simple.el (completion-show-help): New defcustom.
2291 (completion-setup-function): Heed it.
2292
2293 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
2294
2295 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
2296
2297 2006-09-04 Richard Stallman <rms@gnu.org>
2298
2299 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
2300 (rsf-min-region-to-spam-list): Doc fix.
2301 (rsf-add-content-type-field): Doc fix.
2302
2303 * simple.el (kill-region): Explicitly test there is a region.
2304
2305 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
2306
2307 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
2308 sendmail in several common directories.
2309
2310 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
2311
2312 * paths.el (sendmail-program): Removed.
2313
2314 2006-09-04 Daiki Ueno <ueno@unixuser.org>
2315
2316 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
2317 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
2318 http://article.gmane.org/gmane.emacs.gnus.general/50457
2319
2320 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
2321
2322 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
2323 mark after running the menu filter.
2324
2325 2006-09-03 Juri Linkov <juri@jurta.org>
2326
2327 * international/quail.el (quail-defrule-internal): Add a check
2328 if a key is a vector.
2329
2330 2006-09-02 Juri Linkov <juri@jurta.org>
2331
2332 * man.el (Man-topic-history): New variable.
2333 (man): Use it.
2334
2335 * woman.el (woman-topic-history): Change defvar to defvaralias
2336 for symbol `Man-topic-history'.
2337
2338 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
2339 `comint-last-output-start' is a marker by using `markerp' and
2340 check if it has a position by using `marker-position', and use
2341 this position for `goto-char'.
2342
2343 * international/quail.el (quail-defrule-internal): Add missing
2344 `error' call for null key.
2345
2346 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
2347
2348 * rcirc.el (rcirc-keywords): New variable.
2349 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
2350 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
2351 variables.
2352 (rcirc-responses-no-activity): New function.
2353 (rcirc-handler-generic): Check for responses in above.
2354 (rcirc-process-command): Add ?: character to arguments of raw
2355 server commands.
2356 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
2357 `rcirc-dim-nicks'.
2358 (rcirc-gray-toggle): Remove unused variable.
2359 (rcirc-print): Remove some tracking logic, which is moved into
2360 markup functions.
2361 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
2362 types.
2363 (rcirc-activity-string): Look for 'keyword in activity-types.
2364 (rcirc-window-configuration-change): Don't erase overlay-arrow
2365 unnecessarily.
2366 (rcirc-add-or-remove): New function.
2367 (rcirc-cmd-ignore): Use it.
2368 (rcirc-message-leader): Remove unused function.
2369 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
2370 (rcirc-add-face): New function.
2371 (rcirc-facify): Use rcirc-add-face.
2372 (rcirc-url-regexp): Add parens.
2373 (rcirc-map-regexp): Remove function.
2374 (rcirc-mangle-regexp): Remove function.
2375 (rcirc-markup-text-functions): New variable.
2376 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
2377 (rcirc-markup-body-text, rcirc-markup-attributes)
2378 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
2379 (rcirc-markup-bright-nicks): New markup handler functions.
2380 (rcirc-nick-in-message-full-line): New face.
2381 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
2382 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
2383
2384 2006-09-02 Martin Rudalics <rudalics@gmx.at>
2385
2386 * cus-start.el (hscroll-margin, hscroll-step)
2387 (mode-line-in-non-selected-windows, mouse-autoselect-window)
2388 (x-use-underline-position-properties): Change version to "22.1"
2389 since they will appear there for the first time.
2390
2391 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
2392
2393 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
2394
2395 2006-08-31 Richard Stallman <rms@gnu.org>
2396
2397 * cus-edit.el (custom-save-variables): Slight cleanup.
2398 (Custom-no-edit): Renamed from custom-no-edit.
2399 (Custom-newline): Renamed from custom-newline.
2400 (custom-mode-map): Use new names.
2401
2402 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
2403 about customization, rather than M-x customize, in the doc string
2404 made for the defcustom.
2405
2406 * emacs-lisp/trace.el (trace-function-background): Doc fix.
2407
2408 2006-08-31 Romain Francoise <romain@orebokech.com>
2409
2410 * dired-x.el (dired-guess-shell-alist-default): Update.
2411
2412 2006-08-31 Michael Mauger <mmaug@yahoo.com>
2413
2414 * custom.el (custom-theme-set-variables): Autoload packages before
2415 sorting the variables.
2416
2417 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
2418
2419 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
2420 chars if XEmacs.
2421 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
2422
2423 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2424
2425 * progmodes/python.el (python-eldoc-function): Re-enable quit while
2426 waiting for process.
2427
2428 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2429
2430 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
2431 results in ASCII-only string, encode original one directly.
2432
2433 2006-08-29 Romain Francoise <romain@orebokech.com>
2434
2435 * startup.el (normal-splash-screen, fancy-splash-screens):
2436 Make buffer read-only and arrange to enter view mode if necessary.
2437
2438 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
2439
2440 * hl-line.el (hl-line): New face.
2441 (hl-line-face): Use it.
2442
2443 * image-mode.el (image-mode): Fix last fix.
2444 Suggested by Kim F. Storm.
2445
2446 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
2447
2448 Sync with Tramp 2.0.54.
2449
2450 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
2451 of `=', because `tramp-get-remote-gid' might not always return an
2452 integer when expected.
2453 (tramp-register-file-name-handlers): `partial-completion-mode' is
2454 unknown to XEmacs.
2455 (tramp-time-diff): Don't use `floor', it might fail for large
2456 differences.
2457 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
2458 `tramp-auto-save-directory' if unset in order to guarantee unique
2459 auto-save file names.
2460
2461 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
2462
2463 * image-mode.el (image-mode): Display image as text on a terminal.
2464
2465 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2466
2467 * progmodes/python.el (python-send-command): Simplify.
2468 (run-python): Don't generate a new buffer unless `new' was specified.
2469 Make sure we send `import emacs' to the proper process.
2470
2471 * progmodes/python.el (python-send-command): Don't wait for the command
2472 to terminate. Don't fiddle with compilation-parsing-end.
2473
2474 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
2475
2476 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
2477 Insert commentary after first line summary.
2478
2479 * woman.el (woman-follow): New function, based on `man-follow'.
2480 (woman-mode-map): Use it.
2481
2482 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
2483 since ibuffer-do-sort-by-recency does not define a sorter.
2484
2485 2006-08-28 Kim F. Storm <storm@cua.dk>
2486
2487 * find-dired.el (find-dired): Use shell-quote-argument to properly
2488 escape ( and ) args. Also use it on {} and ; args in default
2489 value of find-ls-option string.
2490 (find-grep-dired): Use shell-quote-argument on {} and ; args.
2491
2492 2006-08-27 Michael Olson <mwolson@gnu.org>
2493
2494 * emacs-lisp/tq.el: Small grammar fix in comments.
2495 (tq-enqueue): Check for existence of queue rather than the
2496 head queue item's question, which was a no-op.
2497 (tq-filter, tq-process-buffer): Make sure the process buffer
2498 exists before making it the current buffer.
2499
2500 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2501
2502 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
2503 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
2504 (special-event-map): Apply 2006-08-16 change for x-win.el.
2505
2506 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
2507
2508 * progmodes/python.el (python-send-receive): Wait in the
2509 process's buffer so as to check the right buffer-local variables.
2510
2511 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
2512
2513 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
2514 (defgroup checkdoc): Move to beginning.
2515
2516 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
2517 (python-preoutput-continuation): Remove.
2518 (python-preoutput-filter): Simplify correspondingly.
2519 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
2520 Loop around to catch embedded _emacs_out output.
2521 (run-python): Send the import&print command on a single line.
2522 (python-send-command): Send command&print on a single line.
2523 (python-send-string): Only add double \n if needed.
2524 (python-send-receive): Loop until the result comes.
2525 (python-mode-running): Defvar it.
2526 (python-setup-brm): Remove unused var `menu'.
2527 Only bind py-mode-map and `features' around brm-init.
2528 (python-calculate-indentation): Remove unused var `point'.
2529 (python-beginning-of-defun): Remove unused var `def-line'.
2530
2531 2006-08-25 Richard Stallman <rms@gnu.org>
2532
2533 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
2534
2535 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
2536
2537 * viper.el (viper-set-hooks): Use frame bindings for
2538 viper-vi-state-cursor-color.
2539 (viper-non-hook-settings): Don't set default
2540 mode-line-buffer-identification.
2541
2542 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
2543 (viper-set-cursor-color-according-to-state)
2544 (viper-get-saved-cursor-color-in-replace-mode)
2545 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
2546 viper-emacs-state-cursor-color.
2547
2548 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
2549 (viper-undo): Use point if undo-beg-posn is nil.
2550 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
2551 (viper-after-change-undo-hook): Don't use
2552 viper-emacs-state-cursor-color by default.
2553 (viper-undo): More sensible positioning after undo.
2554
2555 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
2556 (viper-emacs-state-cursor-color): Default to nil, since this feature
2557 doesn't work well yet.
2558
2559 * ediff-mult.el (ediff-intersect-directories)
2560 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
2561 always expand filenames.
2562
2563 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
2564
2565 * tumme.el: Remove * in defcustoms's docstrings.
2566
2567 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
2568
2569 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
2570 Accept internal time format for SECS arg.
2571 (timer-relative-time): Doc fix.
2572
2573 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
2574 adapted from Martin Rudalics.
2575 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
2576 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
2577 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
2578 using sit-for.
2579
2580 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
2581
2582 * cus-start.el (all): Add `overline-margin' and
2583 `x-underline-at-descent-line'.
2584
2585 2006-08-24 Kim F. Storm <storm@cua.dk>
2586
2587 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
2588 to mean "use find -exec"; nil now unambiguously means auto-detect.
2589 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
2590 Use shell-quote-argument to build grep-find-command and
2591 grep-find-template.
2592 (rgrep): Use shell-quote-argument to properly quote arguments to find.
2593 Reported by Tom Seddon.
2594
2595 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
2596
2597 * startup.el (fancy-splash-head): Give instructions for dismissing
2598 the splash screen for default startup too.
2599 (display-startup-echo-area-message, fancy-splash-screens)
2600 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
2601 all splash text at once and keep the splash buffer around.
2602 (command-line-1): Give display-startup-echo-area-message a t arg.
2603
2604 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
2605
2606 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
2607 gnus frame is selected.
2608
2609 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
2610
2611 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
2612
2613 2006-08-22 Kim F. Storm <storm@cua.dk>
2614
2615 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
2616 Add suffix matching for subdirs.
2617
2618 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
2619
2620 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
2621 mouse-yank-at-point is non-nil.
2622
2623 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
2624
2625 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
2626 a bit wider and remove fringes to fit initial output on line.
2627
2628 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2629
2630 * frame.el (blink-cursor-end): Only ignore the error we care about.
2631 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
2632
2633 2006-08-21 Richard Stallman <rms@gnu.org>
2634
2635 * whitespace.el (whitespace-cleanup): Doc fix.
2636
2637 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
2638
2639 * net/rcirc.el (rcirc-show-maximum-output): New var.
2640 (rcirc-buffer-process): If no buffer argument is supplied, use
2641 current-buffer.
2642 (rcirc-complete-nick): Complete to the last completed nick first.
2643 (rcirc-mode): Preserve the value of `rcirc-urls' across
2644 connections. Setup scroll function.
2645 (rcirc-scroll-to-bottom): New function.
2646 (rcirc-print): Use nick syntax around regexp work.
2647 Notice dim-nicks speaking only if they say our nick.
2648 (rcirc-update-activity-string): Do not show the modeline indicator
2649 if there are no live rcirc processes.
2650 (rcirc-cmd-ignore): Ignore case.
2651 (rcirc-browse-url-at-point): Fix off-by-one error.
2652
2653 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2654
2655 * progmodes/python.el: Remove * in defcustom docstrings.
2656 (run-python, python-proc, python-try-complete): Use derived-mode-p.
2657 (python-mode): Set tab-width and indent-tabs-mode.
2658
2659 2006-08-20 Dave Love <fx@gnu.org>
2660
2661 * progmodes/python.el: Update to Dave Love's latest version.
2662 (python-font-lock-keywords, python-mode): Don't use
2663 font-lock-syntax-table, but match symbol elements explicitly instead.
2664 (python-mode-map): Add help, and a few more key bindings.
2665 (python-skip-comments/blanks): Move out of comments as well.
2666 (python-continuation-line-p): Behave better with unbalanced parens.
2667 (python-blank-line-p): New fun.
2668 (python-open-block-statement-p): Don't use a heuristic.
2669 (python-outdent-p): Better handle blocks-in-the-same-line.
2670 (python-calculate-indentation): Misc improvements.
2671 (python-comment-indent): Remove.
2672 (python-block-pairs): New var.
2673 (python-first-word): New fun.
2674 (python-indentation-levels): Handle more common cases.
2675 (python-indent-line-1): Add `leave' argument.
2676 (python-indent-region): New fun.
2677 (python-skip-out): New fun.
2678 (python-beginning-of-statement, python-end-of-statement): Use it.
2679 (python-next-statement): Return correct count even at eob.
2680 (python-end-of-block): Fix paren-typo.
2681 (python-imenu-create-index): Add module variables.
2682 (run-python): Add `new' arg.
2683 Check we're at a prompt before returning.
2684 (python-send-command): Move to end of buffer.
2685 Wait for prompt to return.
2686 (python-set-proc): New fun.
2687 (python-imports): New var.
2688 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
2689 (python-eldoc-function): Try to move out of arg list.
2690 (python-outline-level): Offset by 1.
2691 (python-find-imports): New fun.
2692 (python-symbol-completions): Use python-imports.
2693 (python-module-path, ffap-alist): Add support for ffap.
2694 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
2695 (python-insert-*, python-default-template, python-expand-template):
2696 Add templates/skeletons.
2697 (python-setup-brm): Support for Bicycle Repair Man.
2698 (python-abbrev-syntax-table): New var.
2699 (python-abbrev-pc-hook, python-pea-hook): New funs.
2700
2701 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
2702
2703 * frame.el (blink-cursor-start): Set timer first.
2704 (blink-cursor-end): Ignore timer cancelling errors.
2705 Suggested by Ken Manheimer.
2706
2707 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
2708
2709 * newcomment.el (comment-box): Call `comment-normalize-vars'.
2710 Add autoload cookie.
2711
2712 2006-08-20 Richard Stallman <rms@gnu.org>
2713
2714 * simple.el (line-number-at-pos): Doc fix.
2715
2716 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
2717 timer-activate-when-idle, so timer can run before Emacs becomes
2718 non-idle again.
2719
2720 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
2721
2722 * whitespace.el (whitespace-cleanup-internal): New optional arg
2723 REGION-ONLY. If it's non-nil, modify the message to the user
2724 accordingly.
2725 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
2726 a non-nil argument.
2727
2728 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
2729
2730 * rect.el (spaces-string): Simplify and add doc string.
2731
2732 2006-08-17 Romain Francoise <romain@orebokech.com>
2733
2734 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
2735
2736 2006-08-17 Richard Stallman <rms@gnu.org>
2737
2738 * compare-w.el (compare-windows): lambda's take an arg and pass
2739 it to compare-windows-skip-whitespace.
2740
2741 2006-08-17 Martin Rudalics <rudalics@gmx.at>
2742
2743 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
2744 the right buffer.
2745
2746 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
2747
2748 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
2749 removed files.
2750
2751 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
2752
2753 * progmodes/gdb-ui.el (gdb-locals-watch-map)
2754 (gdb-locals-watch-map-1): Suppress keymap first.
2755 (gdb-edit-locals-map-1): New variable.
2756 (gdb-edit-locals-value): New function.
2757 (gdb-stack-list-locals-handler): Use them.
2758
2759 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2760
2761 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
2762 cursor would normally be drawn in the fringe.
2763
2764 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
2765 Reported by Martin Rudalics <rudalics@gmx.at>.
2766
2767 2006-08-16 Richard Stallman <rms@gnu.org>
2768
2769 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
2770 (special-event-map): Process drag-n-drop events this way.
2771
2772 * simple.el (move-beginning-of-line): Test whether fields
2773 would prevent motion back to line's first visible character.
2774 If so, stop where the fields would stop the motion.
2775
2776 * newcomment.el (comment-indent): Fully update INDENT
2777 before checking to see if it will change the text.
2778
2779 * cus-edit.el (custom-newline): New function.
2780 (custom-mode-map): Bind newline to custom-newline.
2781
2782 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
2783 into ignore-whitespace.
2784 Check each buffer for its skip-function.
2785 Handle compare-windows-skip-whitespace special-case test
2786 by returning t from default skip function.
2787
2788 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
2789
2790 * textmodes/org.el (org-clock-special-range)
2791 (org-clock-update-time-maybe): New functions.
2792 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
2793 not only a-z.
2794 (org-agenda-get-blocks): Allow multiple blocks per headline.
2795 (org-timestamp-change): Call `org-clock-update-time-maybe'.
2796 (org-export-html-title-format)
2797 (org-export-html-toplevel-hlevel): New options.
2798 (org-export-language-setup): Add support for Czech.
2799 (org-mode, org-insert-todo-heading, org-find-visible)
2800 (org-find-invisible, org-invisible-p, org-invisible-p2)
2801 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
2802 (org-show-subtree, org-show-entry, org-make-options-regexp):
2803 Remove compatibility support for old outline-mode.
2804 (org-check-occur-regexp): Funtion removed.
2805 (org-on-heading-p, org-back-to-heading): Made defalias.
2806 (org-set-local): New defsubst.
2807 (org-set-regexps-and-options, org-mode)
2808 (org-set-font-lock-defaults, org-edit-agenda-file-list)
2809 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
2810 (org-remember-apply-template, org-table-edit-field)
2811 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
2812 (org-set-autofill-regexps): Use `org-set-local'.
2813 (org-table-eval-formula): Fix bug with parsing of display flags.
2814
2815 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
2816
2817 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
2818 frame with fringe arrow. Suggested by Simon Marshall
2819 <simon.marshall@misys.com>.
2820 (gdb-stack-position): New variable.
2821 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
2822 (gdb-frames-mode): Set gdb-stack-position to nil.
2823 Add to overlay-arrow-variable-list
2824 (gdb-reset): Delete gdb-stack-position from above list.
2825
2826 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2827
2828 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
2829 read only.
2830
2831 2006-08-13 Romain Francoise <romain@orebokech.com>
2832
2833 * cus-theme.el (customize-create-theme)
2834 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
2835
2836 * filesets.el (filesets-add-buffer): Ditto.
2837
2838 * pcvs.el (cvs-change-cvsroot): Ditto.
2839
2840 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
2841
2842 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
2843 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
2844 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
2845 expressions.
2846 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
2847 Only search till end of line.
2848 Add face to function names in case of no filename.
2849 Add face to variable names of watchpoints.
2850
2851 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
2852
2853 * cus-start.el <indent-tabs-mode>: Move to the `indent'
2854 customization group.
2855
2856 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
2857
2858 * allout.el (allout-prior-bindings, allout-added-bindings):
2859 Remove, after long deprecation.
2860 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
2861 Add customization vars controlling allout-beginning-of-line and
2862 allout-end-of-line conveniences.
2863 (allout-header-prefix, allout-use-mode-specific-leader)
2864 (allout-use-mode-specific-leader, allout-mode-leaders):
2865 Revise docstrings.
2866 (allout-infer-header-lead): Change to be an alias for
2867 allout-infer-header-lead-and-primary-bullet.
2868 (allout-infer-header-lead-and-primary-bullet): New version of
2869 allout-infer-header-lead which assigns the primary bullet to the
2870 same as the header lead, when its being changed.
2871 (allout-infer-body-reindent): Apply regexp-quote instead of
2872 unconditionally prepending "\\", so that all literal
2873 allout-header-prefix and allout-primary-bullet strings are
2874 properly handled.
2875 (allout-add-resumptions): Add optional qualifier for extending or
2876 appending to existing values, rather than replacing them.
2877 (allout-view-change-hook): Clarify docstring.
2878 (allout-exposure-change-hook): Take explicit arguments, via
2879 run-hook-with-args.
2880 (allout-structure-added-hook)
2881 (allout-structure-deleted-hook)
2882 (allout-structure-shifted-hook): New hooks analogous to
2883 allout-exposure-change-hook for other kinds of structural outline
2884 edits.
2885 (allout-encryption-plaintext-sanitization-regexps): New encryption
2886 customization variable, by which cooperating modes can provde
2887 massage of the plaintext without actually being passed it.
2888 (allout-encryption-ciphertext-rejection-regexps)
2889 (allout-encryption-ciphertext-rejection-ceiling): New encryption
2890 customization variables, by which cooperating modes can prohibit
2891 rare but possible ciphertext patterns from fouling their
2892 operation, with actually being passed the ciphertext.
2893 (allout-mode): Run activation and deactivation hooks after the
2894 minor-mode variable has been toggled, to clarify the mode
2895 disposition. The new encryption ciphertext rejection variable is
2896 used to ensure that the ciphertext does not contain text that
2897 would be recognized as outline structural elements by allout.
2898 Substite allout-beginning-of-line and allout-end-of-line for
2899 conventionall beginning-of-line and end-of-line bindings.
2900 If allout-old-style-prefixes is non-nil, don't nullify it on mode
2901 activation!
2902 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
2903 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
2904 (allout-chart-subtree): Implement new mode, charting only the
2905 visible items in the subtree, when new 'visible' parameter is non-nil.
2906 (allout-end-of-subtree): Properly handle the last item in the buffer.
2907 (allout-pre-command-business, allout-command-counter):
2908 Increment an advertised counter so that cooperating enhancements can
2909 track revisions of items.
2910 (allout-open-topic): Run allout-structure-added-hook with suitable
2911 arguments.
2912 (allout-shift-in): Run allout-structure-shifted-hook with suitable
2913 arguments.
2914 (allout-shift-out): Fix doubling for negative args and ensure call
2915 of allout-structure-shifted-hook by solely using allout-shift-in.
2916 (allout-kill-line, allout-kill-topic):
2917 Run allout-structure-deleted-hook with suitable arguments.
2918 (allout-yank-processing): Run allout-structure-added-hook with
2919 proper arguments.
2920 (allout-yank): Enclose activity in allout-unprotected.
2921 (allout-flag-region): Run allout-exposure-change-hook with
2922 suitable arguments, instead of making the callee infer the arguments.
2923 (allout-encrypt-string):
2924 Support allout-encryption-plaintext-sanitization-regexps,
2925 allout-encryption-ciphertext-rejection-regexps, and
2926 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
2927 en/de cryption mode in symmetric encryption failure message.
2928 (allout-obtain-passphrase): Use copy-sequence to get a distinct
2929 copy of the passphrase, and don't zero it or we'll corrupt the
2930 stashed copy.
2931 (allout-create-encryption-passphrase-verifier)
2932 (allout-verify-passphrase): Respect the new signature for
2933 allout-encrypt-string.
2934 (allout-get-configvar-values): Convenience for getting a
2935 configuration variable value and handling its absence gracefully.
2936
2937 2006-08-11 Romain Francoise <romain@orebokech.com>
2938
2939 * obsolete/zone-mode.el: Delete.
2940
2941 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
2942
2943 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
2944
2945 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
2946
2947 * emacs-lisp/bindat.el (bindat-ip-to-string):
2948 Use `format-network-address' if possible.
2949
2950 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2951
2952 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
2953
2954 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
2955
2956 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
2957 restore unread-command-events here.
2958 (edebug-display): Do it here, to detect sit-for interruptions.
2959
2960 2006-08-10 Romain Francoise <romain@orebokech.com>
2961
2962 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
2963 (dns-mode-soa-auto-increment-serial): New user option.
2964 (dns-mode-soa-maybe-increment-serial): New function.
2965 (dns-mode): Add the latter to `write-contents-functions'.
2966
2967 * obsolete/zone-mode.el: Move to obsolete/ from net/.
2968 Delete autoload cookies.
2969
2970 2006-08-10 John Wiegley <johnw@newartisans.com>
2971
2972 * eshell/em-glob.el (eshell-glob-chars-list)
2973 (eshell-glob-translate-alist): Add support for [^g] in character globs.
2974
2975 2006-08-10 Richard Stallman <rms@gnu.org>
2976
2977 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
2978 (facemenu-set-face): Doc fix.
2979 (facemenu-listed-faces): Doc fix.
2980
2981 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
2982
2983 * avoid.el (mouse-avoidance-animating-pointer): New var.
2984 (mouse-avoidance-nudge-mouse): Use it.
2985 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
2986 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
2987 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
2988 Don't activate if currently animating. All callers changed.
2989
2990 2006-08-09 John Wiegley <johnw@newartisans.com>
2991
2992 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
2993 variable, which causes timeclock to report elapsed time worked,
2994 instead of just work remaining.
2995
2996 2006-08-09 Kenichi Handa <handa@m17n.org>
2997
2998 * international/latexenc.el (latexenc-find-file-coding-system):
2999 Fix for the case that the 2nd element of arg-list is a cons.
3000
3001 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
3002
3003 * info.el (Info-fontify-node): Handle preceding `in' for note
3004 reference hiding rules.
3005
3006 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3007
3008 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
3009 mistake a closing " for an opening one.
3010
3011 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
3012
3013 * term/xterm.el (terminal-init-xterm): Add more key bindings.
3014
3015 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3016
3017 * complete.el (PC-do-completion): Filter out completions matching
3018 completion-ignored-extensions before checking whether there are
3019 multiple completions.
3020 Don't use `list' unnecessarily when building completion tables.
3021
3022 2006-08-06 Richard Stallman <rms@gnu.org>
3023
3024 * help.el (describe-mode): Make minor mode list more concise.
3025
3026 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
3027
3028 * bindings.el: Give mode-line-format, mode-line-modes, and
3029 mode-line-position `standard-value' properties.
3030
3031 2006-08-05 Eli Zaretskii <eliz@gnu.org>
3032
3033 * buff-menu.el (list-buffers-noselect): For Info buffers, use
3034 "(file)node" instead of the file name.
3035
3036 2006-08-05 Richard Stallman <rms@gnu.org>
3037
3038 * faces.el (escape-glyph): Doc fix.
3039
3040 2006-08-04 Kenichi Handa <handa@m17n.org>
3041
3042 * international/mule-diag.el (describe-font): Improve docstring
3043 and error message. Use frame-parameter (not frame-parameters).
3044
3045 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3046
3047 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
3048 Correctly mark the end-of-docstring char.
3049
3050 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
3051
3052 * simple.el (line-move-to-column): Constrain move-to-column to
3053 current field.
3054
3055 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3056
3057 * font-lock.el (font-lock-beg, font-lock-end)
3058 (font-lock-extend-region-functions): New vars.
3059 (font-lock-extend-region-multiline)
3060 (font-lock-extend-region-wholelines): New functions.
3061 (font-lock-default-fontify-region): Use them.
3062 (font-lock-extend-jit-lock-region-after-change): Only round up
3063 if font-lock-default-fontify-region will do it as well.
3064
3065 * font-lock.el (font-lock-extend-after-change-region-function):
3066 Rename from font-lock-extend-region-function.
3067 (font-lock-extend-region): Remove by inlining at call sites.
3068 (font-lock-after-change-function): Don't needlessly round up to a whole
3069 number of lines.
3070 (font-lock-extend-jit-lock-region-after-change): Be more careful about
3071 the boundary conditions and the interactions between the various ways
3072 to extend the region.
3073
3074 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3075
3076 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
3077 modification status when forcing the second redisplay.
3078
3079 2006-08-03 Kim F. Storm <storm@cua.dk>
3080
3081 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
3082
3083 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3084
3085 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
3086 doesn't look like a file name.
3087
3088 * complete.el (PC-expand-many-files): Avoid signalling an error when
3089 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
3090
3091 2006-08-02 Andreas Schwab <schwab@suse.de>
3092
3093 * bindings.el (mode-line-format): Simplify reference to vc-mode.
3094
3095 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
3096
3097 * bindings.el (map): Make mode-line-buffer-identification-keymap
3098 before defining propertized-buffer-identification.
3099
3100 2006-08-01 Richard Stallman <rms@gnu.org>
3101
3102 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
3103
3104 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
3105
3106 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
3107 default value.
3108 (gdb-find-source-frame): New function.
3109 (menu): Add to menu bar.
3110
3111 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3112
3113 * font-core.el (font-lock-extend-region-function)
3114 (font-lock-extend-region): Move to font-lock.el.
3115
3116 * font-lock.el (font-lock-extend-region-function)
3117 (font-lock-extend-region): Move from font-core.el. Simplify.
3118
3119 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
3120 if needed.
3121 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
3122 (jit-lock-after-change-extend-region-functions): New hook.
3123 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
3124
3125 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
3126 (font-lock-turn-on-thing-lock): Use it.
3127
3128 * longlines.el (longlines-show-region): Make it work on read-only
3129 buffers as well.
3130
3131 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
3132
3133 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
3134
3135 2006-07-31 Richard Stallman <rms@gnu.org>
3136
3137 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
3138 (vhdl-speedbar-display-projects): Update old obsolete
3139 speedbar variable names.
3140
3141 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
3142
3143 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
3144 (gdb-stopped): Use it.
3145
3146 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
3147
3148 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
3149
3150 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
3151 for load-history elements.
3152
3153 2006-07-29 Eli Zaretskii <eliz@gnu.org>
3154
3155 * files.el (convert-standard-filename): For Cygwin, replace
3156 characters not allowed in Windows file names.
3157 (make-auto-save-file-name): Add Cygwin to the list of systems
3158 where the auto-save file name needs to be run through
3159 convert-standard-filename.
3160
3161 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
3162
3163 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
3164
3165 2006-07-28 Richard Stallman <rms@gnu.org>
3166
3167 * bindings.el (mode-line-frame-identification)
3168 (propertized-buffer-identification): Centralize the code
3169 to initialize the variable.
3170
3171 * progmodes/grep.el (grep-default-command): Catch errors from
3172 wildcard-to-regexp.
3173
3174 2006-07-29 Kim F. Storm <storm@cua.dk>
3175
3176 * progmodes/grep.el (grep-tag-default): New function.
3177 (grep-default-command, grep-read-regexp): Use it.
3178 (grep-read-files): Use car of grep-files-history or grep-files-aliases
3179 as default if nothing else applies.
3180
3181 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
3182
3183 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3184 Throw error if buffer is not in Dired and Wdired mode, respectively.
3185
3186 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
3187
3188 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
3189 self-insert-command keys don't activate buttons.
3190 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
3191
3192 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
3193
3194 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
3195 faces for enable character.
3196
3197 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
3198
3199 * Makefile.in (recompile): Update comment to reflect change
3200 on 2004-04-21.
3201
3202 2006-07-27 Richard Stallman <rms@gnu.org>
3203
3204 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
3205 (customize-package-emacs-version): Change msg when pkg has no entry.
3206 (custom-no-edit): On a button, do like widget-button-press.
3207
3208 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3209
3210 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
3211 S-tab and C-S-tab.
3212
3213 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
3214
3215 * progmodes/which-func.el (which-function): Fix documentation/
3216 comment typo.
3217
3218 2006-07-26 Richard Stallman <rms@gnu.org>
3219
3220 * textmodes/ispell.el (ispell-word): If we replace the word,
3221 move point to the end. Insert before deleting.
3222
3223 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
3224
3225 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
3226 a timer.
3227
3228 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
3229
3230 * tumme.el (tumme-backward-image): Add prefix argument. Add error
3231 when at first image.
3232 (tumme-forward-image): Add prefix argument. Add error when at last
3233 image.
3234
3235 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
3236
3237 * tabify.el (tabify-regexp): Use more specific regexps.
3238 (tabify): Avoid modifying the buffer unnecessarily.
3239
3240 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
3241
3242 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
3243 (tumme-format-properties-string): Handle empty `buf'.
3244 (tumme-get-comment): Change variable names inside `let'.
3245 Add missing `let' variable that cause font-lock problems.
3246 (tumme-write-comments): Change variable names inside `let'.
3247 Add missing `let' variable that cause font-lock problems.
3248 (tumme-forward-image): Rename from `tumme-forward-char'.
3249 (tumme-backward-image): Rename from `tumme-backward-char'.
3250
3251 2006-07-25 Masatake YAMATO <jet@gyve.org>
3252
3253 * progmodes/ld-script.el (ld-script-keywords)
3254 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
3255 and add comments.
3256
3257 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
3258
3259 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
3260 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
3261 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
3262 for status indicator.
3263
3264 2006-07-24 Richard Stallman <rms@gnu.org>
3265
3266 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
3267
3268 * subr.el (dolist, dotimes): Use interned symbols for locals.
3269 (--dotimes-limit--, --dolist-tail--): New defvars.
3270 (looking-back): Doc fix.
3271
3272 * replace.el (replace-match-string-symbols): Handle dotted lists.
3273
3274 2006-07-24 mathias <mathias@mattis>
3275
3276 * tumme.el (tumme-write-tags): Add.
3277 (tumme-write-comments): Add.
3278 (tumme-tag-files): Change to use `tumme-write-tags'.
3279 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
3280 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
3281 (tumme-save-information-from-widgets): Change to use
3282 `tumme-write-comments' and `tumme-write-tags'.
3283 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
3284 (tumme-write-tag): Remove.
3285 (tumme-write-comment): Remove.
3286 (tumme-display-previous-thumbnail-original): Remove empty line.
3287 (tumme-widget-list): Add punctuation.
3288
3289 2006-07-24 mathias <mathias.dahl@gmail.com>
3290
3291 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
3292
3293 2006-07-24 Daiki Ueno <ueno@unixuser.org>
3294
3295 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
3296 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
3297 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
3298
3299 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
3300
3301 * mouse.el (mouse-on-link-p): Doc fix.
3302
3303 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
3304
3305 * emacs-lisp/find-func.el (find-function-search-for-symbol):
3306 Handle "C-h f `".
3307
3308 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
3309
3310 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
3311 column.
3312
3313 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
3314
3315 * textmodes/table.el: Add move-beginning-of-line and
3316 move-end-of-line to Point Motion Only Group.
3317
3318 2006-07-22 Eric Hanchrow <offby1@blarg.net>
3319
3320 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
3321
3322 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3323
3324 * startup.el (user-mail-address): Initialize from the `EMAIL'
3325 environment variable first. Document this.
3326 (command-line): Ditto.
3327
3328 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
3329
3330 * help-mode.el (help-function-def, help-variable-def)
3331 (help-face-def): Print a message in the minibuffer.
3332
3333 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
3334
3335 * term/xterm.el (terminal-init-xterm): Fix key bindings
3336 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
3337
3338 2006-07-21 Eli Zaretskii <eliz@gnu.org>
3339
3340 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
3341 where `(nth 1 command)' is a cons cell. Doc fix.
3342
3343 * textmodes/po.el (po-find-charset): Doc fix.
3344
3345 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
3346
3347 * allout.el (allout-unprotected, allout-e-o-prefix-p)
3348 (allout-beginning-of-current-line, allout-end-of-current-line)
3349 (allout-next-visible-heading, allout-open-topic)
3350 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
3351 (allout-flag-current-subtree, allout-show-to-offshoot)
3352 (allout-hide-current-entry, allout-show-current-branches)
3353 (allout-hide-region-body, allout-old-expose-topic)
3354 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
3355 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
3356 containing `beginning-of-line' and `end-of-line' with
3357 `inhibit-field-text-motion' t.
3358
3359 2006-07-21 Eli Zaretskii <eliz@gnu.org>
3360
3361 * frame.el (focus-follows-mouse): Document that it doesn't have
3362 any effect on MS-Windows.
3363
3364 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
3365
3366 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
3367
3368 2006-07-20 Jay Belanger <belanger@truman.edu>
3369
3370 * calc.el (calc-previous-alg-entry): Remove variable.
3371
3372 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
3373 New variables.
3374 (calc-alg-entry): Use `calc-alg-entry-history'.
3375 (calc-do-quick-calc): Use `calc-quick-calc-history'.
3376 Remove reference to `calc-previous-alg-entry'.
3377 (calcAlg-edit, calcAlg-enter): Remove reference to
3378 `calc-previous-alg-entry'.
3379 (calcAlg-previous): Use `previous-history-element' instead of
3380 `calc-previous-alg-entry'.
3381 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
3382 Change keybinding for `calcAlg-plus-minus', add keybindings for
3383 `previous-history-element' and `next-history-element'.
3384
3385 * calc-rewr.el (calc-match): Remove reference to
3386 `calc-previous-alg-entry'.
3387
3388 * calc-sel.el (calc-selection-history): New variable.
3389 (calc-enter-selection, calc-sel-mult-both-sides)
3390 (calc-sel-add-both-sides): Use `calc-selection-history'.
3391
3392 * calc-map.el (calc-get-operator-history): New variable.
3393 (calc-get-operator): Use `calc-get-operator-history'.
3394
3395 * calcalg3.el (calc-curve-fit-history): New variable.
3396 (calc-curve-fit): Use `calc-curve-fit-history'.
3397
3398 2006-07-20 Kenichi Handa <handa@m17n.org>
3399
3400 * international/mule-cmds.el (select-safe-coding-system): Fix the
3401 way of deciding eol-type of the coding system.
3402
3403 2006-07-20 Alan Mackenzie <acm@muc.de>
3404
3405 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
3406 (c-lang-setvar): New macro.
3407 (c-make-init-lang-vars-fun): Use the initialization forms in
3408 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
3409 (comment-start, comment-end, comment-start-skip): Change these from
3410 c-lang-defvar's to c-lang-setvar's.
3411
3412 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
3413 which calls make-local-variable on the elements of
3414 c-emacs-variable-inits.
3415 (c-init-language-vars-for): Call this new macro.
3416
3417 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3418
3419 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
3420 Try to rule out false positives due to time stamps.
3421 (compilation-mode-font-lock-keywords): Remove rules made redundant
3422 because of the above change. Add `segmentation fault' to the known and
3423 highlighted compilation termination messages.
3424
3425 2006-07-19 Kim F. Storm <storm@cua.dk>
3426
3427 * progmodes/grep.el (grep-find-ignored-directories):
3428 Add .svn and _darcs to list.
3429
3430 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
3431
3432 * dired.el (dired-mode-map): Add key binding `C-te' for
3433 `tumme-dired-edit-comment-and-tags'.
3434
3435 * tumme.el (tumme-display-thumbnail-original-image): Make sure
3436 image display buffer is displayed before call to
3437 `tumme-display-image.
3438 (tumme-dired-display-image): Make sure image display buffer is
3439 displayed before call to `tumme-display-image.
3440 (tumme-mouse-display-image): Make sure image display buffer is
3441 displayed before call to `tumme-display-image.
3442 (tumme-widget-list): Add.
3443 (tumme-dired-edit-comment-and-tags): Add.
3444 (tumme-save-information-from-widgets): Add.
3445
3446 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3447
3448 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
3449
3450 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
3451
3452 * progmodes/sh-script.el (sh-font-lock-keywords-1):
3453 Revert inadvertently installed patch hunk.
3454
3455 * progmodes/compile.el (compilation-find-file): Handle the
3456 cases where the user selects a non-existent file.
3457
3458 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
3459
3460 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
3461
3462 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
3463
3464 * subr.el (sit-for): Just sleep-for if noninteractive.
3465
3466 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
3467
3468 * emacs-lisp/autoload.el (make-autoload): Use new arg.
3469
3470 * custom.el (custom-autoload): Add `noset' argument.
3471 (custom-push-theme): Don't autoload the variable, let callers do it.
3472 (custom-theme-set-variables): Autoload the variable if necessary.
3473
3474 * cus-edit.el (custom-variable-state-set): If the variable was
3475 originally set outside custom, but to the same value as the default,
3476 consider it to be standard.
3477
3478 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
3479 file *before* telling Emacs to add the autoloads, in case it fails.
3480
3481 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
3482 Use `cond', push', and `dolist'.
3483
3484 2006-07-17 Richard Stallman <rms@gnu.org>
3485
3486 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
3487 Add defvars to silence warnings.
3488
3489 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
3490
3491 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3492 Don't highlight "Compiling file" messages as error.
3493
3494 * dired-aux.el (dired-compress-file): Confirm again if gzipped
3495 file already exists.
3496
3497 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
3498
3499 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
3500 entry, don't assign to free var; simply return the extracted filename.
3501 (ff-treat-as-special): Incorporate common preamble from callers.
3502 (ff-other-file-name, ff-find-the-other-file):
3503 Update call to ff-treat-as-special.
3504
3505 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
3506
3507 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
3508
3509 * tumme.el (tumme-get-comment): Fix bug.
3510
3511 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
3512
3513 * files.el: Remove spurious * in docstrings.
3514
3515 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
3516
3517 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
3518 grammar.
3519 (allout-beginning-of-current-line): Beware beginning of buffer.
3520 Also, a comment is simplified.
3521 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
3522 when appropriate. (This fix enables use for other than
3523 bullet-hotspot operation.)
3524 (allout-hide-current-subtree): While escalating to sibling-close,
3525 make sure to situate on a topic.
3526
3527 2006-07-14 Kim F. Storm <storm@cua.dk>
3528
3529 * emulation/cua-base.el (cua-delete-selection)
3530 (cua-toggle-set-mark): New defcustoms.
3531 (cua-rectangle-modifier-key): Add `alt' modifier.
3532 (cua-replace-region): Don't delete if cua-delete-selection is nil.
3533 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
3534 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
3535
3536 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
3537
3538 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
3539
3540 * allout.el: Require 'cl during byte-compilation/interactive load,
3541 for the `assert' macro.
3542 (allout-mode-deactivate-hook): New hook, run when allout mode
3543 deactivates.
3544 (allout-developer): New allout customization subgroup.
3545 (allout-run-unit-tests-on-load): New allout-developer
3546 customization variable, when true allout unit tests are run towards
3547 end of file load/eval.
3548 (allout-inhibit-auto-fill): Disable auto-fill activity even during
3549 auto-fill-mode.
3550 (allout-resumptions): Remove, to be replaced by...
3551 (allout-add-resumptions): Register variable settings to be
3552 reinstated by `allout-do-resumptions'. The settings are made
3553 buffer-local, but the locality/globality of the suspended setting
3554 is restored on resumption.
3555 (allout-do-resumptions): Reinstate all settings suspended using
3556 `allout-add-resumptions'.
3557 (allout-test-resumptions): Unit tests (and intermediate variables)
3558 for resumptions.
3559 (allout-tests-globally-unbound, allout-tests-globally-true)
3560 (allout-tests-locally-true): Intermediate variables for
3561 resumptions unit tests.
3562 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
3563 (allout-exposure-category): Replaces 'allout-overlay-category variable.
3564 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
3565 instead of retired `allout-resumptions'. For hook functions, use
3566 `local' parameter so hook settings are created and removed as
3567 buffer-local settings. Revise (resumptions) setting
3568 auto-fill-function so it is set only if already active. (The
3569 related fill-function settings are all made in either case, so
3570 that activating auto-fill-mode activity will have the custom
3571 allout-mode behaviors (hanging indent on topics, if configured for it).
3572 Remove all allout-exposure-category overlays on mode deactivation.
3573 (allout-hotspot-key-handler): New function extracted from
3574 `allout-pre-command-business', so the functionality can be used
3575 for other purposes, eg as a binding in an overlay.
3576 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
3577 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
3578 customization variable.
3579 (allout-run-unit-tests): Run the (currently quite small)
3580 repertoire of unit tests. Called just before the provide iff user
3581 has customized `allout-run-unit-tests-on-load' non-nil.
3582
3583 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
3584
3585 * emacs-lisp/authors.el (authors-aliases): Update.
3586
3587 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
3588
3589 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
3590 gdb-source-window. Add dedicated argument.
3591 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
3592 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
3593 (gdb-display-threads-buffer, gdb-display-memory-buffer)
3594 (gdb-display-locals-buffer): Use it.
3595
3596 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
3597 Set gdb-source-window.
3598
3599 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
3600
3601 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
3602 minor modes, redundant with the custom-autoload line above.
3603
3604 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
3605
3606 * longlines.el (longlines-post-command-function): Handle open-line too.
3607
3608 2006-07-12 Richard Stallman <rms@gnu.org>
3609
3610 * progmodes/grep.el (grep-last-buffer): Doc fix.
3611
3612 * info.el (Info-try-follow-nearest-node): Doc fix.
3613
3614 * emacs-lisp/edebug.el (edebug-instrument-function):
3615 Err if find-function-noselect gives no position.
3616
3617 * emacs-lisp/find-func.el (find-function-search-for-symbol):
3618 If can't find definition, return nil for position.
3619 (find-function-do-it): Handle new return value
3620 of find-definition-noselect.
3621 (find-definition-noselect, find-variable-noselect): Doc fix.
3622 (find-function-noselect): Doc fix.
3623
3624 * help-mode.el (help-variable-def): Handle find-variable-noselect
3625 returning no position.
3626 (help-function-def): Likewise for find-function-search-for-symbol.
3627 (help-face-def): Likewise.
3628
3629 * help-fns.el (describe-variable): Handle find-variable-noselect
3630 returning no position.
3631
3632 * files.el (locate-file-completion): Avoid duplicates in result.
3633
3634 * cus-edit.el (custom-no-edit): New command.
3635 (custom-mode-map): Remap to custom-no-edit instead of
3636 using suppress-keymap.
3637
3638 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
3639
3640 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
3641 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
3642 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
3643
3644 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
3645
3646 2006-07-11 Kim F. Storm <storm@cua.dk>
3647
3648 * ido.el (ido-copy-current-file-name): Use buffer-name if
3649 buffer-file-name is nil.
3650
3651 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
3652
3653 * simple.el (undo-ask-before-discard): Set to nil.
3654
3655 * vc.el (vc-exec-after): Don't delete process manually.
3656 (vc-print-log): Run log-view-mode in process sentinel inside
3657 inhibit-read-only. Don't shrink window due to timing issues.
3658
3659 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
3660 Avoid using with-output-to-temp-buffer, which clobbers local vars.
3661
3662 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
3663
3664 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3665 Fix ambiguity introduced by last change.
3666 (compilation-find-file): Move save-excursion to where it may
3667 make sense. Fix a left over `find-file'.
3668
3669 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
3670
3671 * textmodes/texinfmt.el (texinfo-format-separate-node):
3672 Insert a string before point, which fits documentation, not after.
3673 (texinfo-multitable-item): In a multitable row, insert any
3674 additional needed @tabs and spaces.
3675
3676 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
3677
3678 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
3679 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
3680 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
3681 instead of shell-command.
3682 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
3683 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
3684 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
3685 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
3686 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
3687 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
3688
3689 2006-07-11 Kim F. Storm <storm@cua.dk>
3690
3691 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
3692 Remove special case for seconds < 0. Use (redisplay t) instead.
3693
3694 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
3695
3696 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
3697 avoid compilation error.
3698
3699 * subr.el (sit-for): New function.
3700
3701 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
3702
3703 2006-07-10 Richard Stallman <rms@gnu.org>
3704
3705 * ldefs-boot.el (edebug): Update page.
3706
3707 2006-07-10 Kim F. Storm <storm@cua.dk>
3708
3709 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
3710 to FOR-RELEASE and TODO.
3711
3712 2006-07-10 Romain Francoise <romain@orebokech.com>
3713
3714 * emacs-lisp/authors.el (authors-aliases): Update.
3715
3716 2006-07-10 Alan Mackenzie <acm@muc.de>
3717
3718 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
3719 * cc-mode.el: Changes to eradicate eval-after-load.
3720
3721 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
3722
3723 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
3724 on non-char events.
3725
3726 2006-07-09 Romain Francoise <romain@orebokech.com>
3727
3728 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3729 Don't highlight start/end markers as compilation messages.
3730
3731 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
3732 to t.
3733
3734 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
3735
3736 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
3737
3738 2006-07-08 Richard Stallman <rms@gnu.org>
3739
3740 * term/x-win.el (x-handle-display): Add doc string.
3741
3742 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3743
3744 * subr.el (def-edebug-spec): Move here.
3745 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
3746
3747 * imenu.el (imenu-choose-buffer-index): Doc fix.
3748
3749 2006-07-08 Romain Francoise <romain@orebokech.com>
3750
3751 * term/x-win.el (x-display-name): Fix typo.
3752
3753 2006-07-08 Eli Zaretskii <eliz@gnu.org>
3754
3755 * hexl.el (hexl-find-file): Doc fix.
3756
3757 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3758
3759 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
3760
3761 * term/x-win.el (x-display-name): Doc fix.
3762
3763 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3764
3765 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
3766 long prefixes.
3767 (fill-region-as-paragraph): Don't round up to a whole line.
3768 (fill-comment-paragraph): Don't include the code-before-the-comment
3769 when calling fill-region-as-paragraph.
3770
3771 * international/mule.el (make-char): Remove redundancy.
3772
3773 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
3774 property may contain an anonymous function rather than a symbol.
3775
3776 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
3777
3778 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
3779 Use shy regexp. Fix incorrect backref to potentially unmatched group.
3780
3781 * dirtrack.el (dirtrack-default-directory-function): Remove.
3782 (dirtrack-directory-function): Use file-name-as-directory.
3783 (dirtrack-windows-directory-function): Simplify.
3784 (dirtrack-forward-slash, dirtrack-backward-slash)
3785 (dirtrack-replace-slash): Remove.
3786 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
3787 (dirtrack): Fix wrong parenthesizing; use match-string.
3788
3789 * progmodes/octave-inf.el: Remove spurious * in docstrings.
3790 (inferior-octave-mode): Only change the buffer-local value of
3791 comint-dynamic-complete-functions.
3792 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
3793 Move the initialization to the declaration.
3794 (inferior-octave-complete): Remove unused var `filter'.
3795
3796 * shell.el (shell-mode): Only change the buffer-local value of
3797 comint-dynamic-complete-functions.
3798
3799 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
3800
3801 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
3802 entry is skipped because it has been scheduled.
3803 (org-prepare-agenda-buffers): Don't mark buffers as modified when
3804 changing `:org-archived' and `:org-comment' properties.
3805
3806 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
3807
3808 * server.el (server-select-display): Don't make the temp frame
3809 minibuffer-only, in case it's not a temp frame.
3810 (server-process-filter): Don't delete the temp frame if it's the
3811 only one we have on that display.
3812
3813 * files.el (find-alternate-file): Doc fix.
3814
3815 2006-07-05 Richard Stallman <rms@gnu.org>
3816
3817 * files.el (abbreviate-file-name): Add save-match-data.
3818
3819 2006-07-03 Richard Stallman <rms@gnu.org>
3820
3821 * faces.el (read-face-name): Doc fix.
3822
3823 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
3824
3825 * net/goto-addr.el (goto-address): Mark as safe for local evals.
3826
3827 2006-07-05 Andre Spiegel <spiegel@gnu.org>
3828
3829 * vc.el (vc-diff-internal): Fix prev change.
3830
3831 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
3832
3833 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
3834 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
3835
3836 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3837
3838 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
3839 fails if the symbol contains chars like ( or '.
3840 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
3841 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
3842 `short'.
3843
3844 2006-07-04 Kenichi Handa <handa@m17n.org>
3845
3846 * international/mule-cmds.el (set-language-info): If LANG-ENV is
3847 the current one, don't call set-language-environment, but call one
3848 of set-language-environment-XXX to make INFO effective now.
3849 (set-language-environment): Call set-language-environment-XXX
3850 functions instead of doing the various setups directly.
3851 (set-language-environment-coding-systems): Delete argument eol-type.
3852 (set-language-environment-input-method)
3853 (set-language-environment-nonascii-translation)
3854 (set-language-environment-charset)
3855 (set-language-environment-fontset)
3856 (set-language-environment-unibyte): New functions.
3857
3858 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
3859
3860 * locate.el (locate-update-when-revert): New option.
3861 (locate-update-path): New option (suggested by Michael Albinus).
3862 (locate-prompt-for-command): Whitespace change.
3863 (locate-update): No longer offer to update the locate database by
3864 default. Implement the two new options.
3865
3866 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
3867
3868 * tooltip.el: Move comment about track-mouse...
3869
3870 * progmodes/gud.el: ...to here.
3871
3872 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
3873
3874 * facemenu.el (facemenu-listed-faces): New var.
3875 (facemenu-unlisted-faces): Variable deleted.
3876 (facemenu-add-new-face): Use facemenu-listed-faces.
3877
3878 * emulation/viper-init.el, calendar/calendar.el:
3879 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
3880
3881 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
3882
3883 * textmodes/org.el (org-mode): Remove no invalid settings for
3884 calc embedded mode.
3885 (org-mode-p): New defsubst.
3886 (org-save-all-org-buffers): New function.
3887 (org-first-headline-recenter): Enclose outline-regexp in group
3888 delimiters.
3889 (org-set-tags): Keep single space after stars.
3890
3891 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
3892
3893 * window.el (set-window-text-height): Only set window-min-height to
3894 1 if that's the requested size.
3895
3896 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
3897 (diff-unified->context, diff-context->unified)
3898 (diff-reverse-direction): Make sure the end marker stays at the end.
3899 (diff-mode): Add the keymap table at the end of docstring.
3900 Use lexical-let rather than constructing a closure manually.
3901
3902 * files.el (find-file-noselect-1): Remove unused var assignment.
3903 (hack-local-variables-confirm): Print lists of strings as lists of
3904 strings rather than lists of symbols.
3905 (abbreviate-file-name, hack-local-variables-prop-line):
3906 Use match-string.
3907 (hack-one-local-variable): Move `make-local-variable' nearer its use.
3908 (recover-session-finish): Use line-end-position.
3909
3910 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
3911
3912 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
3913
3914 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
3915
3916 * progmodes/make-mode.el (makefile-macroassign-regex):
3917 Accept preceding keyword.
3918 (makefile-gmake-statements): Reorganize, now that makepp has
3919 "override" and also handle forgotten "override define".
3920 (makefile-makepp-statements): Add new "global", "override export"
3921 and "override global".
3922
3923 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
3924
3925 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
3926 (ada-compile-mouse-goto-error, ada-deactivate-properties)
3927 (ada-no-auto-case): Fix typos in docstrings.
3928
3929 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
3930
3931 * info.el (Info-find-node-2): Search for makeinfo version more
3932 carefully.
3933
3934 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
3935
3936 * textmodes/org.el (org-prepare-agenda-buffers):
3937 Use `invisible-OK' argument for `org-end-of-subtree'.
3938 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
3939 (org-beginning-of-item): Fix bug in regular expression for white line.
3940 (org-export-as-html): Enforce space after bullet in plain list items.
3941 (org-set-autofill-regexps): Require space after plain list bullet
3942 for paragraph-start.
3943 (org-ts-regexp3): New constant.
3944 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
3945 (org-timestamp-up-day, org-timestamp-down-day)
3946 (org-timestamp-change): Work with inactive timestamps.
3947 (org-ts-regexp1): Don't allow brackets in time stamps.
3948
3949 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
3950
3951 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
3952 for ignoring links.
3953
3954 * faces.el (read-face-name): Use it.
3955
3956 2006-06-28 Juri Linkov <juri@jurta.org>
3957
3958 * buff-menu.el (list-buffers-noselect): Compare Info file
3959 with the string "dir" to detect Info directory.
3960
3961 * complete.el (partial-completion-mode): In lambda for
3962 `choose-completion-string-functions' use full function signature
3963 with 4 args, and move point to the end of the minibuffer only if arg
3964 `mini-p' is non-nil.
3965
3966 2006-06-28 John Paul Wallington <jpw@pobox.com>
3967
3968 * ibuffer.el (ibuffer-mode): Doc fix.
3969
3970 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
3971
3972 * textmodes/org.el (org-context): New contexts :item-bullet,
3973 :latex-fragment, :latex-preview.
3974 (org-overlays-at, org-overlay-start, org-overlay-end):
3975 New compatibility functions.
3976 (org-inside-LaTeX-fragment-p): More accurate matching, using the
3977 exact regexp that will be used during export.
3978 (org-latex-regexps): New variable.
3979 (org-cdlatex-mode): Improve advice for `texmathp'.
3980 (turn-on-org-cdlatex): New function.
3981
3982 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3983
3984 * term/mac-win.el (mac-handle-font-selection): Change keys of
3985 mac-atsu-font-table from strings to numbers.
3986 (mac-ts-caret-position): Use also when cursor-type is nil.
3987 (mac-ts-update-active-input-area): Add Mac OS Classic support.
3988 Relax condition for using overlay strings.
3989 Use mac-ts-caret-position face when cursor-type is nil.
3990
3991 2006-06-26 Kim F. Storm <storm@cua.dk>
3992
3993 * help.el (view-emacs-news): Declare `res' in the right let* form.
3994
3995 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
3996
3997 * net/rcompile.el (remote-compile): Replace ange-ftp based
3998 implementation by Tramp functions.
3999 Suggested by Marc Abramowitz <msabramo@gmail.com>.
4000
4001 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
4002
4003 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
4004
4005 * international/fontset.el (setup-default-fontset): Fix a typo in
4006 the "Oriya-Akruti" registry name.
4007
4008 2006-06-23 Lars Hansen <larsh@soem.dk>
4009
4010 * desktop.el (desktop-full-file-name): New function.
4011 (desktop-kill, desktop-save, desktop-remove, desktop-read)
4012 (desktop-revert): Use it.
4013 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
4014 (desktop-after-read-hook): Add option list-buffers.
4015 (desktop-locals-to-save): Add tab-width.
4016 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
4017 Fix docstring.
4018
4019 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
4020
4021 * textmodes/org.el (org-cdlatex-mode-map)
4022 (org-cdlatex-texmathp-advice-is-done): New variables.
4023 (org-cdlatex-mode): New minor mode.
4024 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
4025 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
4026 (org-export-with-archived-trees): New option.
4027 (org-open-file): Remove the call to `convert-standard-filename'.
4028 (org-archive-tag, org-agenda-skip-archived-trees)
4029 (org-cycle-open-archived-trees)
4030 (org-sparse-tree-open-archived-trees): New options.
4031 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
4032 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
4033 New functions.
4034 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
4035 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
4036 (org-mode-map): Add binding for `org-toggle-archive-tag'.
4037 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
4038 Call `org-prepare-agenda-buffers'.
4039 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
4040 (org-file-apps, org-file-apps-defaults-gnu)
4041 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
4042 Handle remote files by forcing them to be opened in Emacs.
4043
4044 2006-06-23 Andre Spiegel <spiegel@gnu.org>
4045
4046 * vc.el (vc-diff-knows-L): New variable.
4047 (vc-diff-internal): Use it to handle "diff" programs that don't
4048 understand -L. This works automatically, no user action is necessary.
4049
4050 2006-06-23 Daniel Brockman <daniel@brockman.se>
4051
4052 * net/rcirc.el (rcirc-default-user-full-name): Default to
4053 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
4054 longer exists).
4055 (rcirc-process-list): Check `buffer-live-p' before attempting to
4056 switch to a buffer.
4057
4058 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
4059
4060 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
4061 based on rcirc-coding-system-alist.
4062
4063 2006-06-23 Martin Rudalics <rudalics@gmx.at>
4064
4065 * cus-edit.el (customize-apropos): A better error message.
4066 (top level) <debug-ignored-errors>: Extend and update the list of
4067 ignored error messages.
4068
4069 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
4070
4071 * complete.el (PC-do-completion): Retain capitalization of user
4072 input, when possible, even if completion-ignore-case is set.
4073
4074 2006-06-23 Eli Zaretskii <eliz@gnu.org>
4075
4076 * generic-x.el (bat-generic-mode): Support .cmd files.
4077
4078 * dos-w32.el (top level): Use find-file-not-found-functions
4079 instead of the obsolete find-file-not-found-hooks.
4080
4081 2006-06-22 Kim F. Storm <storm@cua.dk>
4082
4083 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
4084 to recognize mode name containing submodes, such as Grep/lw.
4085
4086 2006-06-21 Kim F. Storm <storm@cua.dk>
4087
4088 * simple.el (line-move-1): Check for move-end-of-line instead of
4089 end-of-line when setting temporary-goal-column.
4090
4091 2006-06-21 Miles Bader <miles@gnu.org>
4092
4093 * play/cookie1.el (cookie): Work properly when there's only one entry.
4094
4095 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
4096
4097 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
4098 (gdb-frame-handler): Generalize frame regexp for templates.
4099
4100 2006-06-20 Glenn Morris <rgm@gnu.org>
4101
4102 * calendar/appt.el (appt-display-format): Default value must be
4103 one of the customize options.
4104
4105 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
4106
4107 * term/xterm.el (terminal-init-xterm): Update key availability info.
4108 Bind C-return.
4109
4110 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
4111
4112 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
4113
4114 * files.el (hack-local-variables): Run `hack-local-variables-hook'
4115 whether or not a local variables list is defined.
4116
4117 * msb.el (msb): Move `sit-for' hack here to handle both
4118 "mouse-down and drag" and "mouse-up and select" situations.
4119 (mouse-select-buffer): Move `sit-for' hack to `msb'.
4120
4121 2006-06-20 Kenichi Handa <handa@m17n.org>
4122
4123 * international/characters.el (word-combining-categories):
4124 Add entries for 2-byte Han characters.
4125
4126 2006-06-19 Richard Stallman <rms@gnu.org>
4127
4128 * bindings.el (mode-line-format): Save some mode line space.
4129
4130 * files.el (find-file-noselect): Improve the question wording.
4131 (basic-save-buffer-2): Mask UMASK against 666.
4132
4133 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
4134 (mouse-drag-vertical-line): Call it.
4135
4136 * cus-edit.el (customize-option, customize-option-other-window):
4137 Error if SYMBOL is nil.
4138
4139 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
4140
4141 * textmodes/org.el: Require noutline, also on XEmacs.
4142 (org-end-of-subtree): Return point.
4143 (org-dblock-start-re, org-dblock-end-re): New constants.
4144 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
4145 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
4146 (org-update-all-dblocks, org-find-dblock): New functions.
4147 (org-collect-clock-time-entries): New function.
4148 (org-html-handle-time-stamps): Never export CLOCK timeranges.
4149 (org-fixup-indentation): Modify to deal correctly with lines
4150 starting with TAB. Only one argument DIFF now.
4151 (org-demote, org-promote): Call `org-fixup-indentation' with just
4152 one argument, DIFF.
4153 (org-mode): Don't mark buffer as modified when aligning tables.
4154 (org-clock-sum): Don't mark buffer modified when adding time sum
4155 properties.
4156 (org-export-as-html): Add support for a link validation function.
4157 (org-archive-all-done): New function.
4158 (org-archive-subtree): New prefix argument. When set, archive all
4159 done subtrees in this buffer.
4160 (org-remove-clock-overlays)
4161 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
4162 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
4163 (org-put-clock-overlay): Don't swallow last headline character
4164 when displaying overlay.
4165 (org-store-link): Link to `image-mode' with just the file name.
4166
4167 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
4168
4169 * viper-cmd.el (viper-special-read-and-insert-char):
4170 Use read-key-sequence.
4171 (viper-after-change-undo-hook): Misc enhancements.
4172 (viper-after-change-undo-hook): New hook.
4173 (viper-undo): Use viper-after-change-undo-hook.
4174 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
4175 (viper-next-line-at-bol): If point is on a widget or a button, simulate
4176 clicking on that widget/button.
4177
4178 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
4179
4180 * ediff-diff (ediff-test-patch-utility): Catch errors.
4181 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
4182 (ediff-set-actual-diff-options): New function.
4183 (ediff-reset-diff-options, ediff-toggle-ignore-case):
4184 Use ediff-set-actual-diff-options.
4185 (ediff-extract-diffs): Catch errors.
4186 (ediff-whitespace): Add non-breakable space.
4187 (ediff-same-file-contents): Catch errors.
4188
4189 * ediff-mult.el (ediff-collect-custom-diffs):
4190 Save coding-system-for-read.
4191
4192 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
4193 (ediff-vc-internal, ediff-vc-merge-internal):
4194 Use ediff-delete-version-file.
4195 (ediff-delete-version-file): New function.
4196
4197 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
4198
4199 * ediff.el (ediff-directories, ediff-directory-revisions)
4200 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
4201 (ediff-directories-internal, ediff-merge-directory-revisions)
4202 (ediff-merge-directory-revisions-with-ancestor)
4203 (ediff-directories3): Use read-directory-name.
4204
4205 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
4206
4207 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
4208 Remove superfluous part of regexp for brace matching which is handled
4209 by `scan-lists' call.
4210
4211 2006-06-16 Richard Stallman <rms@gnu.org>
4212
4213 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
4214
4215 * files.el (basic-save-buffer-2): For a new precious file,
4216 use the default modes in the return value.
4217
4218 * facemenu.el (facemenu-color-alist): Doc fix.
4219
4220 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
4221
4222 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4223
4224 * cus-start.el (all): Add mac-ts-script-language-on-focus.
4225
4226 * term/mac-win.el (mac-text-encoding-ascii): New constant.
4227 (mac-utxt-to-string): Use it.
4228 (mac-ts-update-active-input-area): Use mac-ae-number.
4229
4230 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
4231
4232 * term.el (term-handle-scroll, term-delete-lines)
4233 (term-insert-lines): Fix off by one errors.
4234
4235 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
4236
4237 * net/tramp.el (tramp-touch): Use UTC to express time.
4238
4239 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
4240
4241 * mail/sendmail.el (mail-send): Search explicitly for
4242 mail-header-separator when checking for corrupted header lines.
4243
4244 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
4245
4246 * progmodes/gdb-ui.el (gdb-same-frame): New option.
4247 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
4248 (gdb-init-1): Initialise them.
4249 (gdb-starting): Reset gdb-printing
4250 (gdb-starting): Save value of gud-overlay-arrow-position.
4251 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
4252 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
4253 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
4254 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
4255
4256 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4257
4258 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
4259
4260 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
4261
4262 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
4263 (ldap-search-internal): Keep error messages, and a regexp fix.
4264
4265 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
4266
4267 * files.el (hack-local-variables-confirm):
4268 Display string value using its printed representation.
4269
4270 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
4271
4272 * server.el (server-edit): No-op if no server buffers exist.
4273
4274 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
4275
4276 * textmodes/page-ext.el (pages-directory-for-addresses):
4277 Including `pages-directory-address-mode' in the function results
4278 in the message "Buffer in which pages were found is deleted".
4279
4280 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
4281
4282 * textmodes/org.el (org-agenda-mode-map): Add bindings for
4283 clocking functions.
4284
4285 (org-agenda-clock-in, org-check-running-clock)
4286 (org-clock-out-if-current, org-remove-clock-overlays)
4287 (org-put-clock-overlay): New functions.
4288 (org-clock-marker, org-clock-file-total-minutes)
4289 (org-clock-overlays): New variables.
4290 (org-clock-display, org-clock-sum, org-clock-cancel)
4291 (org-clock-out, org-clock-in): New commands.
4292 (org-export): New function.
4293 (org-emph-re): New constant.
4294 (org-set-emph-re, org-do-emphasis-faces): New functions.
4295 (org-emphasis-regexp-components, org-emphasis-alist): New options.
4296 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
4297 (org-export-html-convert-emphasize): Use the configurable emphasis.
4298 (org-cleaned-string-for-export): Make multiline emphasis visible
4299 to the exporter. New optional argument PARAMETERS.
4300 (org-export-as-html): Specify :emph-multiline parameter to
4301 `org-cleaned-string-for-export'.
4302
4303 2006-06-10 Richard Stallman <rms@gnu.org>
4304
4305 * help.el (help-for-help-internal): Clean up help text.
4306
4307 2006-06-10 Andreas Schwab <schwab@suse.de>
4308
4309 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
4310 in doc string.
4311
4312 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
4313
4314 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
4315
4316 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
4317 spaces after the comment start.
4318
4319 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4320
4321 * play/pong.el (pong-init-buffer):
4322 Fill buffer with spaces instead of ^A.
4323
4324 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
4325 launched asynchronously, delete its process instead of being cool.
4326 (ispell-async-processp): Check for `delete-process' existence
4327 instead of `kill-process' one for consistency.
4328
4329 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
4330
4331 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
4332 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
4333 in mode line at startup.
4334
4335 2006-06-08 Kim F. Storm <storm@cua.dk>
4336
4337 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
4338 (ido-init-completion-maps): Bind them to M-SPC and M-v.
4339 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
4340 (ido-file-internal): Pass full file name to write-file.
4341 (ido-read-internal): Only pop stack elements automatically if they
4342 actually match an existing directory or file name.
4343
4344 2006-06-07 Kenichi Handa <handa@m17n.org>
4345
4346 * international/mule.el (find-auto-coding): Don't handle the short
4347 name `char-trans'.
4348
4349 * files.el (hack-local-variables-prop-line)
4350 (hack-local-variables): Cancel the previous change.
4351
4352 2006-06-06 Jesper Harder <harder@phys.au.dk>
4353
4354 * ediff-diff.el (ediff-test-utility): Protect against file-error.
4355
4356 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
4357
4358 * diff-mode.el (diff-mode): Set buffer-read-only to t when
4359 diff-default-read-only is non-nil.
4360 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
4361 (diff-refine-hunk): Set inhibit-read-only to t.
4362
4363 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
4364 modifying the *Diff* buffer.
4365 (diff-process-filter): New filter function for diff process that
4366 sets inhibit-read-only to t when modifying the *Diff* buffer.
4367
4368 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
4369
4370 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
4371 insertion point and control the number of empty lines.
4372 (org-paste-subtree): Limit the number of empty lines at the end of
4373 the inserted tree.
4374 (org-agenda): Use buffer name of current file for narrowing.
4375 (org-export-as-xml): Command removed.
4376 (org-export-xml-type): Option removed.
4377 (org-mode-map): Call `org-export-as-xoxo' directly.
4378 (org-get-indentation): New optional argument LINE.
4379 (org-fix-indentation, org-remove-tabs): New functions.
4380 (org-export-as-ascii, org-ascii-level-start): Determine and apply
4381 correct indentation for headlines that are converted it items.
4382 (org-skip-comments): Remove table lines that contain narrowing
4383 cookies but no other non-empty fields.
4384 (org-set-tags): Allow groups of mutually exclusive tags.
4385 (org-cmp-time): Sort 24:21 before items without time.
4386 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
4387 (org-open-at-point): Require double colon also for numbers.
4388
4389 2006-06-06 Kim F. Storm <storm@cua.dk>
4390
4391 * ido.el (ido-default-file-method, ido-default-buffer-method):
4392 Make choice values consistent with corresponding command names.
4393 (ido-visit-buffer): Update accordingly. Default to selected-window.
4394
4395 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
4396
4397 * progmodes/gud.el (gud-running): Fix doc string.
4398 (gud-menu-map): Use :visible instead fo :enable for debugger test.
4399 (gud-tooltip-modes): Add python-mode.
4400 (gud-tooltip-print-command): Add pdb. Remove perldb.
4401
4402 2006-06-05 Eli Zaretskii <eliz@gnu.org>
4403
4404 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
4405 Quote $(EMACS).
4406
4407 2006-06-05 Richard Stallman <rms@gnu.org>
4408
4409 * faces.el (defined-colors): Doc fix.
4410
4411 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
4412
4413 * vc.el (vc-process-filter): Inhibit undo info collection around
4414 call to insert.
4415 (vc-setup-buffer): Likewise for call to erase-buffer.
4416 (vc-do-command): Likewise for call to process-file.
4417
4418 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
4419
4420 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
4421 for gud-go.
4422 (gud-common-init): Other debuggers may trigger error.
4423
4424 2006-06-05 Kenichi Handa <handa@m17n.org>
4425
4426 * international/mule.el (find-auto-coding):
4427 Handle enable-character-translation in file header.
4428
4429 2006-06-04 Kim F. Storm <storm@cua.dk>
4430
4431 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
4432 (authors-fixed-entries): Fix spelling.
4433 (authors-canonical-file-name): Don't report error for wildcards.
4434
4435 * help.el (view-emacs-news): Rewrite to support new NEWS,
4436 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
4437 e.g. version 10 matches 1.10, and don't be confused by version 1.1
4438 being a prefix of 1.12 (etc). A numeric prefix arg also works.
4439
4440 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
4441
4442 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
4443 exec constructs like `foo bar`.
4444 (sh-quoted-subshell): New helper function to search for a possibly
4445 nested subshell (like `` or $()) within a "" quoted string.
4446 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
4447 (sh-apply-quoted-subshell): Flag quote characters inside a
4448 subshell, which is itself already in a quoted region, as
4449 punctuation, since this is the closest to what they actually are.
4450 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
4451 sh-apply-quoted-subshell.
4452 (sh-font-lock-syntactic-face-function): Apply the new face for
4453 text inside `` instead of the old font-lock-string-face.
4454
4455 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4456
4457 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
4458 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
4459 (mac-bytes-to-text-range, mac-ae-text-range-array)
4460 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
4461 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
4462 (mac-ts-unicode-for-key-event): New functions.
4463 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
4464 (mac-handle-font-selection): Use mac-ae-number.
4465 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
4466 New variables.
4467 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
4468 (mac-ts-converted-text, mac-ts-selected-converted-text)
4469 (mac-ts-block-fill-text, mac-ts-outline-text)
4470 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
4471 (mac-ts-hilite-style-faces): New constant.
4472 (mac-apple-event-map): Bind text input events.
4473 (mac-dispatch-apple-event): Use command-execute instead of
4474 call-interactively.
4475 (global-map): Don't bind mac-apple-event.
4476 (special-event-map): Bind mac-apple-event.
4477
4478 2006-06-02 Eli Zaretskii <eliz@gnu.org>
4479
4480 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
4481 file name.
4482 (emacs): Enclose the value of $(EMACS) in quotes.
4483
4484 2006-06-02 Juri Linkov <juri@jurta.org>
4485
4486 * international/mule.el (sgml-html-meta-auto-coding-function):
4487 Remove the condition `(search-forward "<html" size t)'.
4488 Replace `\"' with `[\"']?' in `re-search-forward'.
4489
4490 2006-06-02 Kenichi Handa <handa@m17n.org>
4491
4492 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
4493 as well as `coding'.
4494 (hack-local-variables): Likewise.
4495
4496 * international/mule.el (enable-character-translation):
4497 Put permanent-local and safe-local-variable properties.
4498 (find-auto-coding): Handle char-trans: tag.
4499
4500 2006-06-02 Juri Linkov <juri@jurta.org>
4501
4502 * international/mule.el (sgml-html-meta-auto-coding-function):
4503 Limit the search by the end of the HTML header (if any).
4504
4505 2006-06-01 Richard Stallman <rms@gnu.org>
4506
4507 * subr.el (with-current-buffer): Doc fix.
4508
4509 2006-06-02 Masatake YAMATO <jet@gyve.org>
4510
4511 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
4512 Almost rewrite. Underlines over all lines of gcov output are too
4513 uncomfortable to read. Suggested by Dan Nicolaescu.
4514
4515 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
4516
4517 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
4518
4519 * shell.el (shell-mode): Use shell-mode-map in docstring.
4520
4521 * comint.el (comint-send-input): Do not add help-echo and
4522 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
4523
4524 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4525
4526 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
4527
4528 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
4529
4530 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
4531 (gdb-stopped, gdb-info-stack-custom): If there is no source info
4532 look up the stack and pop up GUD buffer if necessary.
4533 (gdb-frames-select): Remove redundant call to gud-display-frame.
4534 (gdb-info-threads-custom): Keep point at start of buffer.
4535 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
4536
4537 2006-05-31 Juri Linkov <juri@jurta.org>
4538
4539 * replace.el (query-replace-read-from, query-replace-read-to):
4540 Bind `history-add-new-input' to nil. Call `add-to-history'.
4541
4542 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
4543
4544 * textmodes/table.el: Convert all HTML tags to lower case for
4545 XHTML compatibility.
4546
4547 2006-05-31 Masatake YAMATO <jet@gyve.org>
4548
4549 * progmodes/compile.el:
4550 (compilation-error-regexp-alist-alist::gcov-called-line):
4551 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
4552
4553 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
4554
4555 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
4556 Revert inadvertent changes made with last commit.
4557
4558 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
4559
4560 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
4561 New functions.
4562
4563 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
4564
4565 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
4566
4567 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
4568 only matches in the right place.
4569 (org-upcoming-deadline): New face.
4570 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
4571 (org-export-ascii-underline): Rename constant `org-ascii-underline'
4572 and make it an option.
4573 (org-export-ascii-bullets): New option.
4574 (org-export-as-html): Many changes to emit valid XHTML.
4575 (org-par-open): New variable.
4576 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
4577 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
4578 (org-timeline): Pass `org-timeline-show-empty-dates' to
4579 `org-get-all-dates'. Interpret empty dates returned by
4580 `org-get-all-dates'.
4581 (org-get-all-dates): New argument EMPTY. Add dates without
4582 entries to the list, mark large ranges of empty dates.
4583 (org-point-in-group, org-context): New functions.
4584
4585 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
4586
4587 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
4588
4589 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
4590 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
4591 to C-mouse-3 (for 2 button mice).
4592 (gdb-send): Do the right thing for C-d.
4593
4594 * speedbar.el (speedbar-detach): Delete.
4595 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
4596 it breaks things.
4597 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
4598
4599 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
4600
4601 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
4602 Makeppfile.
4603
4604 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4605 Add makepp diagnostic.
4606
4607 2006-05-29 Richard Stallman <rms@gnu.org>
4608
4609 * window.el (fit-window-to-buffer): Doc fix.
4610
4611 * help.el (temp-buffer-max-height): Doc fix.
4612
4613 * subr.el (with-current-buffer): Doc fix.
4614
4615 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4616
4617 * term/x-win.el: Bind F10 to menu-bar-start if available.
4618
4619 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
4620
4621 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
4622 uses with a simple test.
4623 (term-set-escape-char, term-mode, term-check-kill-echo-list)
4624 (term-send-raw-string, term-send-raw, term-mouse-paste)
4625 (term-char-mode, term-line-mode, term-exec, term-sentinel)
4626 (term-handle-exit, term-read-input-ring)
4627 (term-previous-matching-input-string)
4628 (term-previous-matching-input-string-position)
4629 (term-previous-matching-input-from-input)
4630 (term-replace-by-expanded-history, term-send-input)
4631 (term-skip-prompt, term-bol, term-send-invisible)
4632 (term-kill-input, term-delchar-or-maybe-eof)
4633 (term-backward-matching-input, term-check-source)
4634 (term-proc-query, term-emulate-terminal)
4635 (term-handle-colors-array, term-process-pager, term-pager-line)
4636 (term-pager-bob, term-unwrap-line, term-word)
4637 (term-dynamic-complete-filename)
4638 (term-dynamic-complete-as-filename)
4639 (term-dynamic-simple-complete): Replace one arm ifs with whens or
4640 unlesses.
4641
4642 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
4643
4644 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
4645 during bootstrapping.
4646
4647 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
4648 Basically undo the change of 2006-05-26: use extra arguments instead of
4649 dynamic scoping.
4650 (ewoc-locate): Remove unused var `footer'.
4651
4652 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4653
4654 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
4655
4656 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
4657 (generate-file-autoloads): Obey it. Return whether autoloads were
4658 added at point or not.
4659 (update-file-autoloads): Use this new return value.
4660 Remove redundant test for the presence of an autoload cookie.
4661
4662 * emacs-lisp/autoload.el (autoload-find-file): New fun.
4663 This one calls hack-local-variables.
4664 (generate-file-autoloads, update-file-autoloads): Use it.
4665
4666 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
4667 (bibtex-sort-entry-class): Add safe-local-variable predicate.
4668 (bibtex-sort-entry-class-alist): Don't set the global value.
4669 (bibtex-init-sort-entry-class-alist): New fun.
4670 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
4671 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
4672 of bibtex-init-sort-entry-class.
4673
4674 2006-05-28 Richard Stallman <rms@gnu.org>
4675
4676 * subr.el (load-history-regexp): If FILE is relative, insist
4677 entire last name component must match it.
4678 (load-history-filename-element, load-history-regexp): Doc fixes.
4679
4680 2006-05-29 Kim F. Storm <storm@cua.dk>
4681
4682 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
4683 `pos' and `raw-data' for clarity, as eval forms may access these.
4684
4685 2006-05-28 Kim F. Storm <storm@cua.dk>
4686
4687 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
4688
4689 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4690
4691 * progmodes/make-mode.el (makefile-browser-map)
4692 (makefile-mode-syntax-table): Move initialization inside declaration.
4693 (makefile-fill-paragraph): Use the default comment-filling code.
4694
4695 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
4696
4697 * replace.el (query-replace-defaults): New variable.
4698 (query-replace-read-from): Use `query-replace-defaults' for
4699 default value, instead of history list.
4700 (query-replace-read-to): Update `query-replace-defaults'.
4701
4702 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
4703
4704 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
4705 with no X toolkit.
4706
4707 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
4708
4709 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
4710 (tumme-show-all-from-dir): Add autoload.
4711
4712 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
4713
4714 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
4715 (tumme-remove-tag): Fix bug.
4716
4717 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
4718
4719 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
4720 FOOTER args. Update unique caller.
4721 (ewoc-delete): Compute last node once before looping.
4722 (ewoc--node-branch): Merge into unique caller.
4723 (ewoc--node): Don't define constructor make-ewoc--node for this
4724 structure.
4725 (ewoc): Add member `hf-pp' to this structure.
4726 (ewoc--wrap): New func.
4727 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
4728 header/footer pretty-printers. Save header/footer pretty-printer.
4729 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
4730
4731 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
4732
4733 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
4734
4735 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
4736 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
4737 Tag'. Change "Compare directories..." to "Change Directories...".
4738 Move tumme commands to Operate, Regexp and Immediate menus.
4739 Change "Add Comment" to "Add Image Comment". Change "Add Image
4740 Tag" to "Add Image Tags".
4741
4742 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
4743 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
4744 `tumme-delete-tag'.
4745
4746 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
4747
4748 * shell.el (shell-mode): Call shell-dirtrack-mode after
4749 list-buffers-directory is made a local variable, to avoid setting
4750 the default value.
4751
4752 2006-05-26 Kevin Ryde <user42@zip.com.au>
4753
4754 * info.el (Info-index-next): Use where-is-internal to report
4755 actual binding of Info-index-next, rather than hard-coded `,'.
4756
4757 2006-05-26 Eli Zaretskii <eliz@gnu.org>
4758
4759 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
4760 and "Find Command in Manual" to here.
4761
4762 * buff-menu.el (list-buffers-noselect): For Info buffers, use
4763 Info-current-file as the file name.
4764
4765 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
4766
4767 * ses.el (defadvice undo-more): Delete this defadvice. The undo
4768 overrides will now be done a different way.
4769 (ses-set-parameter): Reapply this function for undo.
4770 (ses-set-header-row): Reconstruct header row during undo.
4771 (ses-widen): New function.
4772 (ses-goto-data, ses-reconstruct-all): Use new function.
4773 (ses-command-hook): Widen buffer during undo, before unupdating
4774 the cells.
4775 (ses-insert-row, ses-delete-row): Widen buffer during undo.
4776 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
4777 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
4778 formula hasn't been executed yet.
4779
4780 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4781
4782 * comint.el (comint-kill-whole-line): Rename arg to count.
4783 Fix doc string.
4784
4785 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
4786
4787 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
4788 to copy-file.
4789
4790 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4791
4792 * simple.el (toggle-truncate-lines): Make arg optional for
4793 backward compatibility.
4794
4795 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
4796
4797 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
4798 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
4799 DLL arg. Instead, use ewoc--current-dll. Update all callers.
4800 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
4801 (ewoc--adjust): Use ewoc--current-dll.
4802 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
4803
4804 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
4805
4806 * textmodes/org.el (org-next-item, org-previous-item): Emit more
4807 compact error message.
4808 (org-tags-view): Refresh category table in each file.
4809 (org-table-justify-field-maybe): Remove superfluous arguments to
4810 `format'.
4811 (org-export-as-html): Insert "<p>" before postamble.
4812 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
4813
4814 2006-05-26 Kenichi Handa <handa@m17n.org>
4815
4816 * textmodes/po.el (po-find-charset): Pay attention to the case
4817 FILENAME is a cons (NAME . BUFFER).
4818 (po-find-file-coding-system-guts): Likewise.
4819
4820 * arc-mode.el (archive-set-buffer-as-visiting-file):
4821 Call find-operation-coding-system with (FILENAME . BUFFER).
4822
4823 * tar-mode.el (tar-extract): Call find-operation-coding-system
4824 with (FILENAME . BUFFER).
4825
4826 * international/mule.el (decode-coding-inserted-region):
4827 Call find-operation-coding-system with (FILENAME . BUFFER).
4828
4829 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
4830
4831 * image-mode.el (image-toggle-display): Use buffer contents to
4832 generate image for a remote file.
4833
4834 2006-05-25 Juri Linkov <juri@jurta.org>
4835
4836 * replace.el (query-replace-read-from, query-replace-read-to):
4837 Remove 8th arg KEEP-ALL in read-from-minibuffer.
4838
4839 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
4840
4841 * whitespace.el (whitespace-cleanup): Change to cleanup
4842 region if one is active.
4843 * whitespace.el (whitespace-cleanup-internal): New internal method.
4844
4845 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4846
4847 * dired.el (dired-mode-map): Add help-echo strings to tumme
4848 commands. Bind `tumme-dired-display-image' to C-t i.
4849
4850 * tumme.el (tumme-display-image): Change documentation string slightly.
4851 (tumme-dired-display-image): Add call to `display-buffer'.
4852
4853 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
4854
4855 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
4856 Signal error if RAW-DATA is a multibyte string.
4857
4858 2006-05-24 Richard Stallman <rms@gnu.org>
4859
4860 * subr.el (with-local-quit): When handling `quit' signal,
4861 make a chance for quit-flag to cause a quit.
4862
4863 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
4864 (ad-disable-advice): Add autoloads.
4865
4866 * subr.el (read-passwd): Copy PROMPT before changing its properties.
4867
4868 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4869
4870 * dired.el (dired-mode-map): Change menu items for tumme as per
4871 suggestions in emacs-devel.
4872
4873 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
4874
4875 * dired.el (dired-mode-map): Fix breakage.
4876
4877 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4878
4879 * tumme.el (tumme-display-dired-image): Rename to...
4880 (tumme-dired-display-image): ...this.
4881 (tumme-track-movement): Change default value to t.
4882 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
4883 used from `tumme-next-line-and-display' and similar commands.
4884
4885 * dired.el (dired-mode-map): Add Thumbnail submenu under the
4886 Immediate menu. Add some tumme commands there.
4887
4888 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
4889
4890 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
4891
4892 2006-05-24 Chong Yidong <cyd@mit.edu>
4893
4894 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
4895 menu entries that open submenus.
4896
4897 2006-05-24 Alan Mackenzie <acm@muc.de>
4898
4899 * startup.el (command-line): For names of preloaded files, don't
4900 append ".elc" (now done in Fload), and call file-truename on the
4901 lisp directory.
4902
4903 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
4904 match ANY loaded file with the right name, not just those in
4905 load-path. Put a regexp matching the file name into
4906 after-load-alist, rather than the name itself.
4907
4908 * subr.el: New functions load-history-regexp,
4909 load-history-filename-element, do-after-load-evaluation.
4910
4911 * international/mule.el (load-with-code-conversion): Do the
4912 eval-after-load stuff by calling do-after-load-evaluation.
4913
4914 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
4915
4916 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
4917 has not been killed.
4918
4919 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4920
4921 * term/mac-win.el: Set idle timer to clean up expired Apple events.
4922 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
4923 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
4924 Optionally set error message in reply.
4925
4926 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
4927
4928 * textmodes/org.el (org-open-at-point): Use renamed variable
4929 `org-confirm-shell-link-function'.
4930 (org-confirm-shell-link-function): Rename from
4931 `org-confirm-shell-links'.
4932 (org-export-directory): New function.
4933 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
4934 (org-export-icalendar): Use `org-export-directory'.
4935 (org-indent-item): Keep cursor position.
4936 (org-link-file-path-type): New option.
4937 (org-export-as-html): Fix bug with plain lists starting in
4938 column 0.
4939 (org-export-as-html): Remove deadline formatting, this happens
4940 now already in `org-html-handle-time-stamps'.
4941 (org-export-html-style): Deadline class removed.
4942 (org-insert-labeled-timestamps-at-point): New option.
4943 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
4944 of `hide-sublevels 1', in case the first headline is not level 1.
4945 (org-overview, org-content): New fuction.
4946 (org-cycle-global-status, org-cycle-subtree-status): Make these
4947 variables buffer-local.
4948 (org-global-cycle): New command.
4949 (org-shifttab): Use `org-global-cycle'.
4950 (org-insert-heading, org-insert-item): Go to end of new
4951 headline/item after creating it.
4952 (org-export-visible): Rename from `org-export-copy-visible'.
4953 Now creates a temporary org-file and applies an exporting command
4954 to it.
4955 (org-table-eval-formula): Support for lisp forms.
4956 (org-agenda-todo-ignore-scheduled): New option.
4957 (org-agenda-get-todos): Use new option
4958 `org-agenda-todo-ignore-scheduled'.
4959 (org-export-html-inline-images): New value `maybe'.
4960 (org-export-as-html): Inlining of images dependent on link description.
4961 (org-archive-subtree): Check for end-of-buffer before trying
4962 `kill-line'.
4963 (org-agenda-follow-mode): New option.
4964 (org-export-with-tags, org-export-with-timestamps): New options.
4965 (org-html-handle-time-stamps): New function.
4966 (org-keyword-time-regexp): New variable.
4967 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
4968 (org-agenda-todo-list-sublevels): New option.
4969 (org-html-level-start): When TITLE is nil, just close all levels.
4970 (org-parse-key-lines, org-parse-export-options): Remove functions,
4971 replaced by `org-infile-export-plist'.
4972 (org-combine-plists, org-infile-export-plist)
4973 (org-default-export-plist): New functions.
4974 (org-export-html-preamble, org-export-html-postamble)
4975 (org-export-html-auto-preamble, org-export-html-auto-postamble):
4976 New variables.
4977 (org-export-publishing-directory): New option.
4978 (org-export-as-html, org-export-as-ascii): Use the new property
4979 lists for settings.
4980 (org-export-copy-visible, org-export-as-xoxo):
4981 Respect `org-export-publishing-directory'.
4982 (org-link-search, org-store-link, org-file-apps): Support for
4983 links to BibTeX database entries..
4984 (org-get-current-options, org-set-regexps-and-options):
4985 Implement logging as a startup option.
4986 (org-store-link): Make sure context string is never empty
4987 (org-insert-link): Use relative path when possible.
4988 (org-at-item-checklet-p): New function.
4989 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
4990 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
4991 (org-metaright, org-metaup, org-metadown, org-shiftup)
4992 (org-shiftdown, org-shiftright, org-shiftleft)
4993 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
4994 Dispatch using `call-interactively'.
4995 (org-call-with-arg): New defsubst.
4996 (org-tag-alist, org-use-fast-tag-selection): New options.
4997 (org-complete): Use `org-tag-alist'.
4998 (org-fast-tag-insert, org-fast-tag-selection): New functions.
4999 (org-next-item, org-previous-item): New commands.
5000 (org-beginning-of-item, org-end-of-item): Add (interactive) to
5001 make command.
5002 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
5003
5004 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
5005
5006 * emacs-lisp/ewoc.el (ewoc-delete): New function.
5007 (ewoc-filter): Use `ewoc-delete'.
5008
5009 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
5010
5011 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
5012
5013 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
5014 Signal more user-friendly error messages.
5015
5016 * complete.el (PC-do-completion): Undo the addition of implicit
5017 wildcards if they did not lead to finding any match.
5018 (read-file-name-internal): Don't add the final > if the completion is
5019 not finished.
5020
5021 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
5022
5023 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
5024 Quote safe-local-variable predicate.
5025
5026 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
5027
5028 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
5029
5030 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5031
5032 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
5033
5034 * progmodes/make-mode.el (makefile-special-targets-list)
5035 (makefile-macro-table, makefile-target-table): Mark as risky.
5036 (makefile-query-one-target-method): Make this the alias for the
5037 following variable.
5038 (makefile-query-one-target-method-function): Make this the real name.
5039
5040 * textmodes/artist.el (artist-text-renderer): Make this the alias
5041 for the following variable.
5042 (artist-text-renderer-function): Make this the real name.
5043
5044 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
5045 the alias for the following variable.
5046 (flyspell-generic-check-word-predicate): Make this the real name.
5047
5048 * textmodes/ispell.el (ispell-format-word): Make this the alias
5049 for the following variable.
5050 (ispell-format-word-function): Make this the real name.
5051 (ispell-message-text-end): Mark as risky.
5052
5053 * skeleton.el (skeleton-transformation, skeleton-filter)
5054 (skeleton-pair-filter): Make these the aliases for the following
5055 variables.
5056 (skeleton-transformation-function, skeleton-filter-function)
5057 (skeleton-pair-filter-function): Make these the real names.
5058
5059 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
5060 and skeleton-pair-filter-function.
5061
5062 * textmodes/sgml-mode.el (sgml-transformation): Make this the
5063 alias for the following variable.
5064 (sgml-transformation-function): Make this the real name.
5065 (sgml-tag-alist): Mark as risky.
5066
5067 2006-05-21 Richard Stallman <rms@gnu.org>
5068
5069 * simple.el (kill-region): Interactively, pass point, then mark.
5070
5071 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
5072
5073 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
5074
5075 2006-05-21 Romain Francoise <romain@orebokech.com>
5076
5077 * dired-x.el (dired-mode-map): Don't bind M-g.
5078
5079 2006-05-20 Richard Stallman <rms@gnu.org>
5080
5081 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
5082 (dired-goto-file): Doc fix.
5083
5084 2006-05-21 Kim F. Storm <storm@cua.dk>
5085
5086 * emulation/cua-base.el: Mention customizing cua-mode as alternative
5087 way to enable built-in cua-mode if user loads older CUA-mode package.
5088
5089 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
5090 if default-filename is specified.
5091
5092 2006-05-20 Eli Zaretskii <eliz@gnu.org>
5093
5094 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
5095
5096 * info.el (info-apropos): Make sure current-file and current-node
5097 have non-nil values. Speed up by using add-to-list instead of
5098 manual consing.
5099
5100 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
5101
5102 * progmodes/make-mode.el (makefile-mode): Doc fix.
5103
5104 2006-05-20 Eli Zaretskii <eliz@gnu.org>
5105
5106 * dired-aux.el (dired-do-shell-command): Doc fix.
5107
5108 2006-05-20 Kevin Ryde <user42@zip.com.au>
5109
5110 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
5111 ``(custom-manual :tag "Foo" "(foo)Node")''.
5112
5113 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
5114
5115 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
5116 value is an integer.
5117
5118 2006-05-20 Eli Zaretskii <eliz@gnu.org>
5119
5120 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
5121 "format".
5122 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
5123
5124 2006-05-20 Martin Rudalics <rudalics@gmx.at>
5125
5126 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
5127 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
5128
5129 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
5130
5131 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
5132 regexp for keywords.
5133
5134 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
5135
5136 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
5137 replace-regexp-in-string.
5138
5139 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
5140 encode, and escape file name on conversion to URL.
5141
5142 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5143
5144 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
5145 Don't unescape URL.
5146 (dnd-get-local-file-name): Unescape URL on conversion to file name.
5147
5148 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
5149 on conversion to URLs.
5150
5151 * net/browse-url.el (browse-url-file-url): Encode file name on
5152 conversion to URL.
5153
5154 * term/mac-win.el (mac-ae-open-documents): Escape file name on
5155 conversion to URL.
5156
5157 2006-05-19 Eli Zaretskii <eliz@gnu.org>
5158
5159 * progmodes/cc-styles.el (c-style-alist): Doc fix.
5160
5161 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5162
5163 * term/mac-win.el (mac-bytes-to-digits): Remove function.
5164 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
5165
5166 2006-05-19 Glenn Morris <rgm@gnu.org>
5167
5168 * calendar/diary-lib.el (diary-bahai-date)
5169 (list-bahai-diary-entries, mark-bahai-diary-entries)
5170 (mark-bahai-calendar-date-pattern): Not interactive.
5171 (add-to-diary-list): New optional arg LITERAL. Doc fix.
5172 (diary-entries-list): Change format of 4th element in each entry.
5173 (diary-list-entries): Use add-to-diary-list.
5174 (diary-goto-entry): Handle the case where the buffer visiting the
5175 diary has been killed.
5176 (fancy-diary-display): Add 'locator to button rather than 'marker.
5177 Only generate temp-face when there are marks to apply.
5178 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
5179 (diary-fancy-date-pattern): New variable.
5180 (diary-time-regexp): Doc fix.
5181 (diary-anniversary, diary-time): New faces.
5182 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
5183 diary-time-regexp. Add font-lock-multiline property where needed.
5184 Use new faces diary-anniversary and diary-time.
5185 (diary-fancy-font-lock-fontify-region-function): New function, to
5186 handle multiline font-lock pattern in fancy diary.
5187 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
5188 (diary-font-lock-keywords): Tweak time regexp. Use new face
5189 diary-time.
5190
5191 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
5192
5193 * international/code-pages.el (mik): Table corrected.
5194
5195 2006-05-18 Kim F. Storm <storm@cua.dk>
5196
5197 * progmodes/grep.el (grep-find): Don't check grep-find-command
5198 before running command (breaks non-interactive usage).
5199
5200 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
5201
5202 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
5203 (ewoc--insert-new-node): Don't insert trailing newline.
5204 Instead, adjust successor nodes's start markers.
5205 (ewoc--refresh-node): Delete all text from current node's start
5206 marker to the next one's; adjust successor nodes's start markers.
5207 (ewoc--create): Doc fixes.
5208 (ewoc--refresh): Don't insert newline.
5209 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
5210 * pcvs.el (cvs-make-cvs-buffer):
5211 Specify extra newline for ewoc's header and footer.
5212 (cvs-update-header): Update initial header recognition.
5213 Append newline to final header and footer values.
5214 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
5215
5216 2006-05-17 Richard Stallman <rms@gnu.org>
5217
5218 * files.el (file-name-extension): Doc fix.
5219
5220 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5221
5222 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
5223 we can explicitly enable/disable rather than toggle.
5224 (shell-mode): Use it.
5225 (shell-cd): Don't try to reproduce what `cd' does.
5226
5227 2006-05-17 Kim F. Storm <storm@cua.dk>
5228
5229 * ido.el (ido-read-internal): Use only nondirectory part of
5230 default item.
5231
5232 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
5233
5234 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
5235 (ewoc-nth): Doc fix.
5236
5237 (ewoc-map, ewoc-invalidate): Compute PP before looping.
5238
5239 2006-05-16 Eli Zaretskii <eliz@gnu.org>
5240
5241 * international/mule.el (auto-coding-alist): Add .lha to files
5242 read with no-conversion.
5243
5244 * files.el (auto-mode-alist): Add .lha files to archive file
5245 extensions.
5246
5247 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
5248 Convert csize to integer when computing offsets within the
5249 compressed archive file.
5250
5251 2006-05-16 Kim F. Storm <storm@cua.dk>
5252
5253 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
5254 with read-from-minibuffer.
5255
5256 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
5257
5258 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
5259 (byte-compile-warnings): Fix safe-local-variable property.
5260
5261 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
5262
5263 * allout.el (allout-show-bodies, allout-old-style-prefixes)
5264 (allout-stylish-prefixes, allout-numbered-bullet)
5265 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
5266 predicates to qualify `safe-local-variable' property, when
5267 available, else use equivalent lambda.
5268 (allout-current-topic-collapsed-p): Do the right thing regarding
5269 trailing blank lines.
5270
5271 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
5272
5273 * server.el (server-start): Only create a directory if needed.
5274 (server-edit, server-unload-hook): server-start => server-mode.
5275 (kill-emacs-hook): Cleanup upon exit.
5276
5277 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
5278
5279 * hexl.el (hexlify-buffer): Encode process arguments manually.
5280
5281 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
5282
5283 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
5284 call to gdb-tooltip-print.
5285
5286 2006-05-15 Romain Francoise <romain@orebokech.com>
5287
5288 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
5289 systems, default to "tar" since those systems probably have GNU tar.
5290
5291 2006-05-14 Lars Hansen <larsh@soem.dk>
5292
5293 * desktop.el (desktop-missing-file-warning): Fix docstring.
5294 (desktop-restore-file-buffer): Correct question asked on missing file.
5295
5296 2006-05-14 Kim F. Storm <storm@cua.dk>
5297
5298 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
5299 Add CUA move property.
5300
5301 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
5302
5303 * custom.el (custom-push-theme): Load the variable before checking
5304 its `standard-value'.
5305
5306 2006-05-13 Lars Hansen <larsh@soem.dk>
5307
5308 * desktop.el (desktop-save): Use with-temp-buffer.
5309
5310 2006-05-12 Glenn Morris <rgm@gnu.org>
5311
5312 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
5313 * calendar/calendar.el (calendar-mode-map):
5314 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
5315 * calendar/appt.el (appt-check, appt-make-list): Refer to
5316 diary-view-entries, diary-list-entries, diary-show-all-entries
5317 rather than obsolete aliases.
5318
5319 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
5320
5321 * simple.el (line-move-finish): Avoid calling point motion hooks
5322 while processing intangibility.
5323
5324 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
5325
5326 * term/xterm.el (terminal-init-xterm): Fix typo.
5327
5328 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
5329
5330 * allout.el (allout-view-change-hook): Mark as being deprecated,
5331 to be replaced by `allout-exposure-change-hook'.
5332 (allout-exposure-change-hook): New, replacing
5333 `allout-view-change-hook'.
5334 (allout-flag-region): Run new hook `allout-exposure-change-hook',
5335 in addition to `allout-view-change-hook'.
5336 (allout-show-bodies, allout-old-style-prefixes)
5337 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
5338 lambda forms to prevent their showing up in variable help
5339 presentations as inscrutable byte-compiled code.
5340 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
5341 Use string-or-null-p to qualify safe-local-variable values.
5342 (allout-reindent-bodies): Use memq to qualify matches against
5343 valid safe-local-variable values. Also, quote the lambda as above.
5344 (allout-use-mode-specific-leader): Add missing candidate-value
5345 symbols, use memq, and quote the lambda.
5346 (allout-overlay-interior-modification-handler): Remove unused
5347 variables `msg' and 'opened'.
5348 (allout-hidden-p): Constrain invisibility consideration to allout's
5349 invisibility spec, disregarding invisibility for other reasons.
5350
5351 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
5352
5353 * files.el (version-control): Correct safe values.
5354
5355 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
5356
5357 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
5358
5359 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
5360 (ewoc--insert-new-node): New func.
5361 Update callers of deleted funcs to use it, instead.
5362
5363 2006-05-11 Glenn Morris <rgm@gnu.org>
5364
5365 * calendar/calendar.el (diary-show-all-entries): Do not refer to
5366 obsolete alias `show-all-diary-entries'.
5367 (make-diary-entry): Not interactive.
5368 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
5369 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
5370 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
5371 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5372 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
5373 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
5374
5375 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
5376
5377 * calendar/calendar.el (calendar-french-date-string)
5378 (calendar-mayan-date-string, calendar-chinese-date-string)
5379 (calendar-astro-date-string, calendar-iso-date-string)
5380 (calendar-islamic-date-string, calendar-bahai-date-string)
5381 (calendar-hebrew-date-string, calendar-coptic-date-string)
5382 (calendar-ethiopic-date-string, calendar-persian-date-string):
5383 These functions are not interactive.
5384
5385 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
5386
5387 * files.el: Balance parentheses.
5388
5389 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
5390
5391 * files.el, newcomment.el, outline.el, simple.el,
5392 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
5393 progmodes/cc-vars.el, progmodes/compile.el:
5394 Move `safe-local-variable' declarations to the respective files.
5395
5396 * help-fns.el (describe-variable): Don't print safe-var if it is
5397 byte-code. Improve wording as suggested by Luc Teirlinck.
5398
5399 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
5400
5401 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
5402 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
5403 Use a token for pending-triggers to ensure gdb-var-update
5404 gets called once per user input again for pre-GDB 6.4.
5405 (gdb-var-delete): Match on more complex expressions.
5406 (gdb-var-list-children-handler, gdb-var-create-handler):
5407 Use a token for consistency.
5408
5409 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
5410
5411 * textmodes/org.el (org-read-date, org-goto-calendar)
5412 (org-agenda-goto-calendar):
5413 Bind `view-calendar-holidays-initially' to nil.
5414
5415 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
5416
5417 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
5418 Update all callers to do it there, instead.
5419
5420 2006-05-10 Glenn Morris <rgm@gnu.org>
5421
5422 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
5423 prefix arg case, to avoid view-diary-entries-initially error.
5424 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
5425 (calendar-date-is-legal-p): Handle dates with no day part.
5426
5427 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
5428
5429 * comint.el (comint-insert-input): Just make it when
5430 comint-use-prompt regexp is nil (default) and with the mouse.
5431 (comint-copy-old-input): Reinstate from 2004-06-23.
5432 (comint-mode-map): Bind C-c C-m to it.
5433
5434 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
5435
5436 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
5437 Remove spurious move to point-max (new comint behavior fixes).
5438
5439 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
5440 compatibility function (Emacs 18/19).
5441 (idlwave-is-continuation-line): Always return point at start of
5442 previous non-blank continuation line.
5443 (keyword-parameters): Fix continued comment font-lock matcher.
5444 (idlwave-font-lock-fontify-region): Written, use as
5445 font-lock-fontify-region-function, to fix continued keyword
5446 fontification issues.
5447
5448 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5449
5450 * term/mac-win.el (mac-font-panel-mode): Doc fix.
5451 (mac-service-selection, mac-service-open-file)
5452 (mac-service-open-selection, mac-service-mail-selection)
5453 (mac-service-mail-to, mac-service-insert-text): Rename from
5454 mac-services-*. All uses changed.
5455 (mac-apple-event-map): Rename event symbol `services' to `service'.
5456
5457 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
5458
5459 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
5460 (ewoc--node-enter-first, ewoc--node-enter-last)
5461 (ewoc--delete-node-internal): Merge funcs into unique callers.
5462
5463 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
5464
5465 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
5466 return value of read-from-minibuffer for empty input.
5467
5468 2006-05-09 Miles Bader <miles@gnu.org>
5469
5470 * comint.el (comint-insert-input): Remove redundant calls to setq
5471 and goto-char.
5472
5473 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
5474
5475 * comint.el (comint-insert-input): Make it work when
5476 comint-use-prompt-regexp is t.
5477
5478 2006-05-10 Miles Bader <miles@gnu.org>
5479
5480 * subr.el (field-at-pos): New function.
5481
5482 * comint.el (comint-insert-input): Use it.
5483
5484 2006-05-09 Juri Linkov <juri@jurta.org>
5485
5486 * battery.el (battery-linux-proc-acpi): Also try
5487 `/proc/acpi/thermal_zone/THR2/temperature'.
5488
5489 * files.el <safe-local-variable>: Remove `eval' and `let' binding
5490 for now unused lambda `string-or-null'.
5491
5492 * add-log.el (change-log-default-name): Put `string-or-null-p'
5493 instead of lambda on `safe-local-variable' property.
5494
5495 * diff-mode.el (diff-context->unified): Use `region-beginning' and
5496 `region-end' instead of `mark' and `point'.
5497 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
5498 Operate on region in Transient Mark mode when the mark is active.
5499 Use `region-beginning' and `region-end' instead of `mark' and
5500 `point'.
5501 (diff-hunk-text, diff-goto-source): Doc fix.
5502
5503 * startup.el (fancy-splash-screens, normal-splash-screen): Use
5504 face `mode-line-buffer-id' for mode-line buffer face instead of
5505 hard-coded `(:weight bold)'.
5506
5507 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
5508 buffer-undo-list to t (undo-ask is reproducible by visiting
5509 nested archives).
5510
5511 2006-05-09 Kim F. Storm <storm@cua.dk>
5512
5513 * progmodes/grep.el (rgrep): Set default directory of *grep*
5514 buffer if we start M-x rgrep in the *grep* buffer and choose
5515 a different base directory.
5516
5517 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
5518
5519 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
5520 completion also when ido is loaded.
5521
5522 2006-05-09 Masatake YAMATO <jet@gyve.org>
5523
5524 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
5525 "warning" and "import".
5526 (cpp-font-lock-keywords): Added "warning".
5527
5528 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
5529
5530 * term/xterm.el (terminal-init-xterm): Add more key bindings.
5531
5532 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
5533
5534 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
5535 pages at a time, if we signal the end, we should indeed reach that end.
5536
5537 2006-05-08 David Reitter <david.reitter@gmail.com>
5538
5539 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
5540 output during execution of the body.
5541
5542 2006-05-08 Kim F. Storm <storm@cua.dk>
5543
5544 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
5545
5546 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
5547
5548 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
5549 Use with-current-buffer.
5550
5551 2006-05-07 Kim F. Storm <storm@cua.dk>
5552
5553 * subr.el (add-to-history): Remove keep-dups arg.
5554
5555 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
5556 to nil around call to add-to-history.
5557
5558 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
5559
5560 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
5561 than after a buffer modification.
5562
5563 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
5564
5565 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
5566 call to...
5567 (gud-watch): ...here so speedbar is raised for already watched
5568 expressions.
5569 (gdb-speedbar-refresh): Delete function.
5570 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
5571 Use speedbar-timer-fn instead of speedbar-refresh (reverting
5572 earlier change).
5573 (gdb-var-evaluate-expression-handler)
5574 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
5575
5576 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
5577 Update localized contents for all buffers except ignored modes.
5578
5579 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5580
5581 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
5582 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
5583 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
5584 (mac-handle-font-panel-closed, mac-handle-font-selection):
5585 New functions.
5586 (mac-font-panel-mode): New minor mode.
5587 (mac-apple-event-map): Add bindings for toolbar toggle button and
5588 font panel.
5589 (menu-bar-showhide-menu): Add mac-font-panel-mode.
5590
5591 2006-05-07 John Paul Wallington <jpw@pobox.com>
5592
5593 * ibuffer.el (ibuffer-compressed-file-name-regexp):
5594 Avoid `regexp-opt'; simplify regexp for readability.
5595
5596 2006-05-06 Eli Zaretskii <eliz@gnu.org>
5597
5598 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
5599 * files.el (buffer-stale-function):
5600 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
5601 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
5602 links to the main manual, not to emacs-xtra.
5603
5604 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5605
5606 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
5607 MacJapanese if text is ASCII-only.
5608
5609 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
5610
5611 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
5612 unless so nil isn't returned.
5613 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
5614
5615 2006-05-06 Kim F. Storm <storm@cua.dk>
5616
5617 * subr.el (add-to-history): New function.
5618
5619 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
5620 (ediff-merge-files-with-ancestor):
5621 * env.el (setenv):
5622 * isearch.el (isearch-update-ring):
5623 * server.el (server-visit-files):
5624 * progmodes/grep.el (lgrep, rgrep):
5625 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
5626 * progmodes/xscheme.el (xscheme-insert-expression):
5627 Use add-to-history.
5628
5629 * kmacro.el (kmacro-push-ring): Use add-to-history.
5630 (kmacro-ring-length): Remove unused defun.
5631 (kmacro-start-macro): Use kmacro-push-ring.
5632
5633 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
5634
5635 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
5636 directly instead of a lambda expression that calls it.
5637
5638 2006-05-06 Kim F. Storm <storm@cua.dk>
5639
5640 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
5641 instead of compute-motion.
5642
5643 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
5644
5645 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
5646 change.
5647
5648 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
5649
5650 * startup.el (command-line-1): Refer to "Pure Storage" on
5651 pure-space-overflow.
5652
5653 2006-05-05 Martin Rudalics <rudalics@gmx.at>
5654
5655 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
5656 provided faces once they all have been used up.
5657
5658 2006-05-05 Eli Zaretskii <eliz@gnu.org>
5659
5660 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
5661 reference to the Lisp manual to the warning about pure space
5662 overflow.
5663
5664 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
5665
5666 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
5667 argument to avoid the call to `ispell-internal-change-dictionary'
5668 when not needed.
5669 (ispell-change-dictionary): Use this argument and call
5670 `ispell-internal-change-dictionary' after the possible change
5671 to `ispell-local-dictionary'.
5672 (ispell-internal-change-dictionary): Check for a change in
5673 personal dictionary use too.
5674
5675 2006-05-05 Eli Zaretskii <eliz@gnu.org>
5676
5677 * startup.el (command-line): On MS-Windows, probe "~", not
5678 "~USER", for warning about non-existent home directory
5679
5680 * arc-mode.el (archive-l-e): New optional argument `float' means
5681 generate a float value.
5682 (archive-arc-summarize, archive-lzh-summarize)
5683 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
5684 with 3rd argument non-nil when file's size is being computed.
5685 Format the file sizes with %8.0f instead of %8d.
5686
5687 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5688
5689 * cus-start.el (all): Add mac-dnd-known-types.
5690
5691 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
5692 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
5693 (mac-TIFF-to-string): New functions.
5694 (x-get-selection, x-selection-value)
5695 (mac-select-convert-to-string): Use them.
5696 (mac-text-encoding-mac-japanese-basic-variant): New constant.
5697 (mac-dnd-types-alist): New customization variable.
5698 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
5699 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
5700 (mac-dnd-handle-drag-n-drop-event): New functions.
5701 (mac-drag-n-drop): Remove function.
5702 (global-map): Bind drag-n-drop and M-drag-n-drop to
5703 mac-dnd-handle-drag-n-drop-event.
5704
5705 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
5706
5707 * progmodes/perl-mode.el (perl-beginning-of-function):
5708 Skip anonymous subs.
5709
5710 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
5711
5712 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
5713 regexp-opt at run time.
5714
5715 * term.el (term-handle-ansi-escape): Fix off by one error.
5716
5717 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
5718
5719 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
5720 (gdb-init-1, gdb-post-prompt): ...and references to it.
5721 (gdb-frame-handler): Strip directory name from filename if present.
5722
5723 * progmodes/gud.el (gdb-force-update): Delete defvar
5724 (gud-speedbar-buttons): ...and references to it. Use window-start
5725 to try to keep positon in watch expression.
5726
5727 2006-05-03 Richard Stallman <rms@gnu.org>
5728
5729 * simple.el (next-history-element, previous-history-element): Doc fix.
5730
5731 * isearch.el (isearch-update-ring): Doc fix.
5732
5733 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
5734
5735 * isearch.el (isearch-update-ring): Take history-delete-duplicates
5736 into consideration. Replace one arm ifs with whens.
5737
5738 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
5739
5740 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
5741 (menu): Fix typo.
5742
5743 2006-05-02 Miles Bader <miles@gnu.org>
5744
5745 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
5746
5747 2006-05-02 Jay Belanger <belanger@truman.edu>
5748
5749 * calc/calc-embed.el (calc-override-minor-modes-map)
5750 (calc-override-minor-modes): New variables.
5751 (calc-do-embedded): Make sure that Calc keystrokes aren't
5752 overwritten by minor modes.
5753
5754 2006-05-02 Chong Yidong <cyd@mit.edu>
5755
5756 * msb.el (msb): If EVENT is a down event, read and discard the up event.
5757
5758 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
5759
5760 * startup.el (command-line-1): Refer to Lisp manual when
5761 pure-space-overflow occurs.
5762
5763 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
5764 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
5765 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
5766 (version-control): Don't use `t' for safe-local-variable declarations.
5767
5768 2006-05-01 Richard Stallman <rms@gnu.org>
5769
5770 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
5771 M-r, M-R, M-A, M-SPC or M-DEL.
5772 (diff-mode-map): diff-refine-hunk now on C-c C-w
5773 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
5774
5775 * help-mode.el (help-mode): view-exit-action calls delete-window
5776 only when it is safe and possible.
5777
5778 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
5779 in messages.
5780
5781 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
5782
5783 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
5784 in the default tool-bar-map.
5785
5786 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
5787
5788 * net/tramp.el (tramp-completion-file-name-handler-alist)
5789 (tramp-run-real-handler, tramp-completion-run-real-handler)
5790 (tramp-completion-handle-file-name-all-completions)
5791 (tramp-completion-handle-file-name-completion): Autoload them.
5792 (tramp-completion-handle-file-exists-p)
5793 (tramp-completion-handle-file-name-directory)
5794 (tramp-completion-handle-file-name-nondirectory)
5795 (tramp-completion-handle-expand-file-name): Remove them.
5796 (tramp-handle-file-name-directory): Return the real directory name.
5797 Returning "/" only doesn't need to be necessary any longer.
5798 (tramp-file-name-handler): Make special attention when in hostname
5799 completion mode.
5800 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
5801 (tramp-register-file-name-handlers):
5802 Register `tramp-completion-file-name-handler' only when
5803 `partial-completion-mode' is enabled.
5804 (tramp-completion-handle-file-name-all-completions):
5805 Delete directory part from results.
5806 (tramp-get-completion-methods, tramp-get-completion-user-host):
5807 Discard deleting "/", it doesn't work after the change of
5808 `tramp-handle-file-name-directory' above.
5809
5810 2006-05-01 Kim F. Storm <storm@cua.dk>
5811
5812 * progmodes/grep.el (grep-expand-template): Use save-match-data
5813 and symbol-value.
5814
5815 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5816
5817 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
5818 Use select-frame-set-input-focus instead of raise-frame.
5819 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
5820
5821 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
5822
5823 * progmodes/gud.el (gud-def): Add %c case.
5824 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
5825 (gud-format-command): Make match case sensitive. Match on %F.
5826
5827 2006-04-30 Glenn Morris <rgm@gnu.org>
5828
5829 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
5830 (cal-tex-preamble): Use cal-tex-preamble-extra.
5831 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
5832 than alias `list-diary-entries'.
5833
5834 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
5835
5836 * help-fns.el (describe-variable): Add info about safe local variables.
5837
5838 2006-04-29 Richard Stallman <rms@gnu.org>
5839
5840 * bindings.el (mode-line-format): help-echo doc fixes.
5841
5842 * net/tramp.el (tramp-file-name-handler-alist): Delete
5843 expand-file-name and other operations that can cause spurious loading.
5844
5845 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5846
5847 * files.el (safe-local-variable-p): Remove support for the special
5848 value t.
5849
5850 * textmodes/paragraphs.el (sentence-end-without-space):
5851 Fix safety predicate.
5852 (sentence-end-double-space, sentence-end-without-period)
5853 (paragraph-ignore-fill-prefix):
5854 * textmodes/fill.el (colon-double-space):
5855 * abbrev.el (abbrev-mode): Tighten the safety predicate.
5856
5857 * subr.el (booleanp): New fun.
5858
5859 * textmodes/reftex-vars.el (reftex-guess-label-type):
5860 Tighten the safety predicate.
5861
5862 2006-04-28 Kim F. Storm <storm@cua.dk>
5863
5864 * progmodes/grep.el (defgroup grep): Doc fix.
5865 (grep-auto-highlight): Remove.
5866 (grep-template): New defcustom.
5867 (grep-find-template): Rename from grep-tree-template.
5868 (grep-files-aliases): Rename from grep-tree-files-aliases.
5869 Remove "all" alias, add "l" alias.
5870 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
5871 (grep-find-ignored-directories): New defcustom to replace
5872 grep-tree-ignore-CVS-directories, to facilitate ignoring
5873 subdirectories for multiple version control systems.
5874 (grep-mode-map): Add Recursive grep item to GREP menu.
5875 (grep-regexp-history, grep-files-history): New defvars.
5876 (grep-probe): New helper function.
5877 (grep-compute-defaults): Use it to simplify code.
5878 Adapt to name changes.
5879 Use `.' as base in grep-find-template rather than <D>.
5880 (grep): Remove superfluous highlight-regexp arg. Fix doc.
5881 Call grep-compute-defaults unconditionally.
5882 (grep-expand-keywords): New defconst.
5883 (grep-expand-template): Rename from grep-expand-command-macros.
5884 Simplify via grep-expand-keywords. Look at case-fold-search instead
5885 of grep-tree-ignore-case to add -i option.
5886 Bind case-fold-search to nil while matching keywords.
5887 (grep-tree-last-regexp, grep-tree-last-files): Remove.
5888 (grep-read-regexp, grep-read-files): New helper functions.
5889 (rgrep): Rename from grep-tree. Rework to use proper histories.
5890 Adapt to changes in defcustoms and functions above.
5891 (lgrep): New command, as grep, but using same interactive UI as rgrep.
5892
5893 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
5894
5895 * net/tramp.el (tramp-completion-file-name-handler):
5896 Disable Tramp's functionality while loading Tramp itself.
5897 (tramp-register-file-name-handlers): That's a defsubst now.
5898 Code from `tramp-repair-jka-compr' moved here. Apply it via
5899 `after-init-hook'.
5900 (tramp-repair-jka-compr): Remove.
5901
5902 2006-04-27 Jay Belanger <belanger@truman.edu>
5903
5904 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
5905 read expression when `math-read-big-expr' doesn't work.
5906
5907 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
5908
5909 * startup.el (command-line-1): Display warning when
5910 pure-space-overflow is non-nil.
5911
5912 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5913
5914 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
5915 risky.
5916
5917 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5918
5919 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
5920 Return the URL or nil if none can be generated.
5921
5922 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
5923
5924 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
5925 byte compiler warnings.
5926 (gud-basic-call, gud-find-expr): Let user select an expression
5927 for printing. Print expression as well as value in GUD buffer.
5928
5929 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
5930
5931 * allout.el: Remove local autoload declaration for
5932 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
5933 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
5934 (allout-plain-bullets-string, allout-distinctive-bullets-string)
5935 (allout-use-mode-specific-leader, allout-old-style-prefixes)
5936 (allout-stylish-prefixes, allout-numbered-bullet)
5937 (allout-file-xref-bullet, allout-presentation-padding)
5938 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
5939 safe-local-variable with suitable value spec, and add autoload
5940 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
5941 (move-beginning-of-line, move-end-of-line): Repair so these compat
5942 functions now actually resituate the point, when appropriate.
5943
5944 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5945
5946 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
5947
5948 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
5949 (add-log-iso8601-time-string): Fix call to format-time-string.
5950
5951 2006-04-26 Kim F. Storm <storm@cua.dk>
5952
5953 * subr.el (posn-string, posn-image, posn-object): Doc fix.
5954
5955 2006-04-26 Masatake YAMATO <jet@gyve.org>
5956
5957 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
5958 Add support for "//" style comments. Remove `b' flag
5959 from ?* in `asm-mode-syntax-table'.
5960
5961 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5962
5963 * follow.el: Use (featurep 'xemacs) everywhere.
5964 (follow-mode): Use define-minor-mode.
5965 (follow-mode-map): Move initialization into the declaration.
5966 Use command remapping.
5967 (follow-emacs-version-xemacs-p): Remove.
5968 (follow-submit-feedback): Remove.
5969
5970 * allout.el (allout-layout, allout-passphrase-verifier-string)
5971 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
5972
5973 * textmodes/reftex-vars.el (reftex-vref-is-default)
5974 (reftex-fref-is-default, reftex-guess-label-type):
5975 Tighten up a bit the safety predicate.
5976
5977 * textmodes/paragraphs.el (sentence-end-double-space)
5978 (sentence-end-without-period, sentence-end-without-space)
5979 (page-delimiter, paragraph-ignore-fill-prefix):
5980 Tighten up a bit the safety predicate.
5981
5982 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
5983
5984 * progmodes/python.el (python-continuation-line-p)
5985 (python-beginning-of-statement): syntax-ppss may return
5986 a negative depth.
5987 (python-mode): Don't forcefully enable font-lock.
5988
5989 * time-stamp.el (time-stamp-start, time-stamp-end)
5990 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
5991
5992 * add-log.el: Remove spurious * in docstrings.
5993 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
5994 (add-change-log-entry): Use it here, since it's not specific
5995 to iso8601.
5996 (add-log-iso8601-time-string): Don't use it here any more.
5997 (change-log-indent-text, change-log-indent): Rename from add-log-*.
5998
5999 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
6000
6001 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
6002
6003 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
6004 (rcirc-toggle-low-priority): Doc fix.
6005 (rcirc-handler-NOTICE): Remove beginning of line anchor in
6006 ChanServ regexp.
6007 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
6008 #emacs.
6009 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
6010 (rcirc-decode-coding-system): Use utf-8 as the default.
6011 (rcirc-multiline-minor-mode): Set the fill-column.
6012 (rcirc-format-response-string): Display bright and dim nicks.
6013 (rcirc-browse-url): Update interactive spec to fill ARG.
6014 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
6015 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
6016
6017 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
6018
6019 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
6020 case for @Article, etc.
6021
6022 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
6023
6024 * net/tramp.el (tramp-register-file-name-handlers): New defun.
6025 Added with autoload cookie.
6026 (tramp-unload-file-name-handlers): Rename from
6027 `tramp-unload-file-name-handler-alist'.
6028
6029 2006-04-23 Romain Francoise <romain@orebokech.com>
6030
6031 * comint.el (comint-match-partial-filename): Doc fix.
6032
6033 2006-04-21 Glenn Morris <rgm@gnu.org>
6034
6035 * calendar/cal-menu.el (calendar-mode-map): Refer to
6036 `diary-view-entries' rather than alias `view-diary-entries'.
6037 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
6038
6039 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
6040
6041 * progmodes/antlr-mode.el (antlr-default):
6042 * cus-edit.el (custom-documentation):
6043 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
6044 in defface.
6045
6046 2006-04-21 Kim F. Storm <storm@cua.dk>
6047
6048 * image.el (image-type): New defun split out of create-image.
6049 (create-image): Use it.
6050
6051 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
6052
6053 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
6054 (org-open-at-point): Remove the "...done" message to keep output
6055 in the echo area visible.
6056 (org-export-as-xoxo): Fix call to `indent-region'.
6057
6058 2006-04-21 Kevin Ryde <user42@zip.com.au>
6059
6060 * international/mule.el (keyboard-coding-system): defcustom
6061 info-link fixes: "Specify Coding" has been split, keyboard now in
6062 "Terminal Coding", and "Single-Byte Character Support" is now
6063 "Unibyte Mode".
6064
6065 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
6066
6067 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
6068 Use font-lock-warning-face for any errors e.g. no stack.
6069 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
6070
6071 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
6072
6073 * progmodes/sh-script.el (sh-shell): Mark as safe.
6074
6075 * newcomment.el (comment-start, comment-start-skip)
6076 (comment-end-skip, comment-end): Mark as safe.
6077
6078 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
6079
6080 * textmodes/org.el (org-deadline-announce): Face removed.
6081 (org-level-faces, org-n-levels): Convert to constant.
6082 (org-compatible-face): New function.
6083 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
6084 (org-level-5, org-level-6, org-level-7, org-level-8)
6085 (org-special-keyword, org-warning, org-headline-done, org-link)
6086 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
6087 (org-scheduled-today, org-scheduled-previously, org-time-grid):
6088 Face definition revised for better color tty support.
6089 (org-bold-re, org-italic-re, org-underline-re): New constants.
6090 (org-set-font-lock-defaults): Use the new constants.
6091 (org-agenda-highlight-todo): New function.
6092 (org-agenda-todo): Fix bug with point at end of line.
6093 (org-agenda-change-all-lines, org-finalize-agenda-entries):
6094 Fontify TODO keywords.
6095 (org-insert-link): Preserve relative path in ../ links.
6096 (org-export-as-html): Convert links pointing to .org files into
6097 links that will work beteen the exported HTML files.
6098 (org-todo-list): Fix bug when arg=0.
6099 (org-insert-heading): More fine-tuning.
6100
6101 2006-04-19 Romain Francoise <romain@orebokech.com>
6102
6103 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
6104 from `rmail-mime-charset-pattern'.
6105
6106 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
6107
6108 * progmodes/python.el (python-mode): Fix typo.
6109
6110 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
6111
6112 * comint.el (comint-previous-input): Don't clobber input line
6113 when moving off either end of the input history ring.
6114 (comint-delete-input): New function, used by
6115 `comint-previous-input' and others.
6116 (comint-previous-matching-input):
6117 Use `coming-delete-input'. Save the partial input if leaving the
6118 edit line. Goto point-max before deleting input to avoid
6119 partial input fragments hanging around.
6120 (comint-restore-input): New function, used by `comint-previous-input'.
6121
6122 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
6123
6124 * imenu.el (imenu--index-alist): Balance parentheses.
6125
6126 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
6127
6128 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
6129
6130 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
6131
6132 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
6133 file is nil.
6134
6135 2006-04-18 Richard Stallman <rms@gnu.org>
6136
6137 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
6138
6139 * imenu.el (imenu-create-index-function, imenu--index-alist)
6140 (imenu--last-menubar-index-alist, imenu--make-index-alist)
6141 (imenu-default-create-index-function, imenu--generic-function):
6142 Doc fixes.
6143
6144 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
6145
6146 * help-mode.el (help-mode): Set view-exit-action to delete window.
6147
6148 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
6149 now works by passing nil as arg.
6150
6151 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
6152
6153 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
6154 (read-abbrev-file): Provide default when reading filename.
6155
6156 * files.el (enable-local-variables): Allow :all as value.
6157 (hack-local-variables): Implement that value.
6158 (safe-local-variable-values, safe-local-eval-forms)
6159 (enable-local-variables): Mark as risky.
6160 (find-file-visit-truename, kept-old-versions): Mark safe.
6161
6162 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
6163 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
6164 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
6165
6166 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6167
6168 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
6169 Use forward-line so as to get to BOL even in the presence of fields.
6170 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
6171 in return.
6172 (inferior-tcl): Tell tclsh to work in interactive mode.
6173
6174 * complete.el (partial-completion-mode):
6175 Use 'choose-completion-string-functions to make sure that
6176 choose-completion fills the minibuffer properly.
6177
6178 * complete.el (PC-old-read-file-name-internal): Remove.
6179 (PC-read-include-file-name-internal): Remove. Turn it into an advice
6180 of read-file-name-internal.
6181 (partial-completion-mode): Enable/disable this advice.
6182
6183 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
6184
6185 * net/tramp.el (tramp-completion-file-name-handler): Revert change
6186 of 2006-04-17.
6187
6188 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
6189
6190 * textmodes/org.el (org-insert-heading): Insert heading before
6191 current if at beginning of line.
6192 (org-todo, org-date): New faces.
6193 (org-table-align): Make sure tooltip window contains full text.
6194 (org-no-properties): New defsubst.
6195 (org-set-font-lock-defaults): Use new faces.
6196
6197 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
6198
6199 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
6200 for root variables.
6201
6202 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
6203 (gdb-frame-address): Re-use to identify frame for watch expression.
6204 (gdb-var-list, gdb-var-create-handler): Add frame address for root
6205 variables.
6206 (gdb-init-1, gdb-source, gdb-post-prompt)
6207 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
6208 (gdb-frame-handler): Get gdb-frame-address.
6209
6210 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
6211
6212 Sync with Tramp 2.0.53.
6213
6214 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
6215 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
6216 (tramp-completion-file-name-handler): Add autoload cookie for
6217 adding to `file-name-handler-alist'.
6218
6219 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
6220 the prompt. If it returns earlier (when detecting an error
6221 message), the rest of the output will merge accidently with the
6222 output of the next command. Reported by M Jared Finder
6223 <jared@hpalace.com>.
6224
6225 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
6226 for `process-file', in order to let it work for older Emacsen too.
6227
6228 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
6229
6230 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
6231 (tex-font-lock-keywords-3): Use it.
6232
6233 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6234
6235 * newcomment.el (comment-add): New function.
6236 (comment-region-default, comment-dwim): Use it.
6237
6238 2006-04-15 Michael Olson <mwolson@gnu.org>
6239
6240 * emacs-lisp/tq.el: Improve comments.
6241 (tq-queue-head-question): New accessor function.
6242 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
6243 Update for modified queue structure.
6244 (tq-queue-add): Accept `question' argument.
6245 (tq-queue-pop): If a question is pending, send it.
6246 (tq-enqueue): Accept new optional argument `delay-question'.
6247 If this is non-nil, and at least one other question is pending a
6248 response, queue the question rather than sending it immediately.
6249
6250 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6251
6252 * calendar/appt.el (appt-add): Check whether an appointment is
6253 already present in appt-time-msg-list. Simplify code.
6254
6255 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6256
6257 * progmodes/cc-langs.el (c-mode-menu):
6258 Don't presume c-subword-mode is bound.
6259
6260 2006-04-13 Bill Wohler <wohler@newt.com>
6261
6262 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
6263 (customize-package-emacs-version): Use cdr instead of cadr now
6264 that alists use dotted pairs.
6265
6266 * custom.el (defcustom): Fix docstring for :package-version.
6267
6268 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
6269
6270 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
6271 (tramp-handle-shell-command): Display output buffer only when
6272 `tramp-display-shell-command-buffer' is true.
6273 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
6274
6275 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
6276
6277 * textmodes/org.el (org-set-autofill-regexps): Set only the local
6278 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
6279
6280 2006-04-13 Romain Francoise <romain@orebokech.com>
6281
6282 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
6283 leaving temporary .cvsignore buffers behind.
6284
6285 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
6286
6287 * textmodes/org.el (org-set-regexps-and-options)
6288 (org-get-current-options): Better names for the startup folding
6289 options.
6290
6291 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
6292
6293 * vc.el (vc-annotate): Arrange for point to end up at the same
6294 line number as in the original, but only when using a new buffer.
6295
6296 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
6297
6298 * files.el (hack-one-local-variable-eval-safep):
6299 Recognize `edebug-form-spec' for `put', but only if it passes
6300 `edebug-basic-spec'. Generalize `put' handling.
6301
6302 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
6303 vetting file-local form specs.
6304
6305 * allout.el (allout-layout): Autoload its `safe-local-variable'
6306 property.
6307
6308 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
6309
6310 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
6311 (org-agenda-mouse-1-follows-link)
6312 (org-mouse-1-follows-link): New options.
6313 (org-format-agenda-item): Fix bug if TAGS is nil.
6314 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
6315
6316 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
6317
6318 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
6319 GDB 6.1+ gives full filename for "info sources" so use
6320 file-name-nondirectory.
6321
6322 2006-04-12 Romain Francoise <romain@orebokech.com>
6323
6324 * subr.el (read-passwd): Bind `message-log-max' to nil.
6325
6326 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6327
6328 * progmodes/perl-mode.el (perl-indent-new-calculate):
6329 Recompute parse-start after jumping backward by a whole sexp.
6330
6331 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6332
6333 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
6334 window configuration.
6335 (vc-annotate-display-select): Select the buffer so that current-buffer
6336 (and selected-window) is the output buffer at the end of vc-annotate.
6337
6338 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
6339
6340 * vc.el (vc-annotate-color-map): Add custom TTY color map for
6341 8-color terminals, to use all of the colors in a sensible order.
6342 256-color terminals work well with the standard map.
6343 (vc-annotate-lines): Only strip the first color character if it
6344 is "#", to allow for terminal-style named colors.
6345 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
6346 the correct buffer is scrolled.
6347
6348 2006-04-11 Richard Stallman <rms@gnu.org>
6349
6350 * emacs-lisp/bytecomp.el (byte-compile-file):
6351 Bind enable-local-variables to :safe, and make normal-mode obey it.
6352
6353 * files.el (enable-local-variables): Allow value :safe.
6354 (normal-mode): Doc fix.
6355 (hack-local-variables): Implement enable-local-variables = :safe.
6356 (hack-local-variables-confirm): Don't prevent quitting.
6357
6358 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6359
6360 * loadhist.el (unload-feature): A bit of sanity check of
6361 load-history entries. Cancel timer-vars before unbinding them.
6362
6363 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
6364 quote special chars, and make the trick work on the hex part of the
6365 buffer as well.
6366 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
6367 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
6368
6369 * startup.el (normal-splash-screen): Fix last change so we don't wait
6370 2 minutes if we don't show the splash screen.
6371
6372 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
6373
6374 * textmodes/org.el (org-export-plain-list-max-depth)
6375 (org-table-spaces-around-separators)
6376 (org-radio-targets, org-activate-camels)
6377 (org-table-spaces-around-invisible-separators): Options removed.
6378 (org-time-stamp-rounding-minutes, org-remember-templates)
6379 (org-ellipsis, org-activate-links, org-descriptive-links):
6380 New options.
6381 (org-remember-apply-template, org-current-time)
6382 (org-finish-edit-table-field)
6383 (org-link-unescape, org-link-escape)
6384 (org-string-width, org-table-clean-line, org-html-do-expand)
6385 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
6386 (org-read-agenda-file-list): New functions.
6387 (org-table-edit-field)
6388 (org-table-create-or-convert-from-region): New commands
6389 (org-table-toggle-vline-visibility): Command removed.
6390 (org-table-convert-region): Made a command.
6391 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
6392 Replace with the normal org- functions.
6393 (org-self-insert-command): Don't trigger realign unnecessarily
6394 when blanking a field that is not full.
6395 (org-mode): `Set buffer-invisibility-spec' for links.
6396 (org-activate-links2): Hide link part and only show descriptive
6397 part of the link.
6398 (org-insert-link): Modify for new linking system.
6399 (org-store-link): Store description separately, for use by
6400 `org-insert-link'.
6401 (org-table-align): Use `org-string-width'.
6402 (defgroup): Completely new group structure for custom variables.
6403 (org-agenda-files): Option: Single file name allowed. Function:
6404 Optional argument unrestrited means ignore any restricitons.
6405 (org-install-agenda-files-menu): Find a buffer in Org-mode before
6406 trying to modify the menu. Use generalized access to
6407 `org-agenda-files.'
6408 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
6409 (org-agenda-file-to-front, org-remove-file, org-diary)
6410 (org-tags-view, org-export-icalendar-all-agenda-files)
6411 (org-export-icalendar-combine-agenda-files): Use generalized
6412 access to `org-agenda-files'.
6413 (org-remember-handler): Correctly preserve heading if present.
6414 (org-table-insert-row, org-table-insert-hline): Deal with
6415 invisible characters.
6416
6417 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
6418
6419 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
6420 (vc-annotate-color-map): New 18 element constant
6421 value/saturation, rotating hue colormap, from red->blue.
6422 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
6423 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
6424 (vc-annotate): To avoid killing the required local variables,
6425 set them before the end of `with-output-to-temp-buffer', and
6426 after first switching to annotate-mode.
6427 (vc-annotate-warp-version): Add buffer argument in goto-line to
6428 ensure annotation, not source, is scrolled.
6429
6430 2006-04-10 Bill Wohler <wohler@newt.com>
6431
6432 * custom.el (defcustom, custom-handle-keyword):
6433 Add :package-version keyword.
6434 (custom-add-package-version): New function. Sets value of new
6435 property 'custom-package-version from :package-version keyword.
6436 (defcustom): Create Common Keywords section in docstring.
6437 (defface, defgroup): Replace definitions of a select few keywords
6438 with a reference to the Common Keywords in defcustom.
6439 (defcustom, defface, defgroup): Replace reference to Customization
6440 chapter in manual with hyperlink.
6441
6442 * cus-edit.el (customize-package-emacs-version-alist):
6443 New variable.
6444 (customize-changed-options): Add check for custom-package-version.
6445 (customize-package-emacs-version): New function to look up Emacs
6446 version corresponding to the given package version.
6447
6448 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
6449 defun name, in similar fashion to find-variable-regexp.
6450
6451 2006-04-10 Eli Zaretskii <eliz@gnu.org>
6452
6453 * international/mule-cmds.el (set-locale-environment): Fix last
6454 change for when the locale's preferences don't specify any encoding.
6455
6456 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6457
6458 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
6459 so the defined var/fun doesn't need to be quoted.
6460
6461 2006-04-10 Richard Stallman <rms@gnu.org>
6462
6463 * finder.el (finder-mode-map): Add n and p bindings.
6464
6465 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
6466
6467 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
6468 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
6469 (gdb-setup-windows): Put something in source window if we can't find
6470 the source file.
6471 (gdb-frame-handler): Make it work again with just assembly.
6472 (gdb-data-list-register-values-handler): Make it work when there is
6473 no stack.
6474
6475 2006-04-09 Richard Stallman <rms@gnu.org>
6476
6477 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
6478 specs while looking for charset.
6479
6480 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
6481
6482 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
6483 Make them faces.
6484 (lm-font-lock-keywords): Update appropriately.
6485
6486 2006-04-10 Kim F. Storm <storm@cua.dk>
6487
6488 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
6489 it can also replace buffer-substring-no-properties.
6490
6491 * emulation/cua-base.el (cua-delete-region, cua-paste)
6492 (cua-repeat-replace-region): Use filter-buffer-substring.
6493
6494 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6495 (cua-cut-region-to-global-mark): Likewise.
6496
6497 * emulation/cua-rect.el (cua--extract-rectangle)
6498 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
6499
6500 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6501
6502 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
6503 entry-type. Add field delimiters to numerical fields if they are
6504 not present.
6505
6506 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6507
6508 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
6509 string-const to return value.
6510 (bibtex-remove-delimiters): Use it.
6511
6512 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
6513
6514 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
6515 cl-byte-compile-compiler-macro unless it exists.
6516
6517 2006-04-08 Eli Zaretskii <eliz@gnu.org>
6518
6519 * files.el (hack-local-variables-confirm) <offer-save>:
6520 Clarify message text. Suggested by Ralf Angeli.
6521
6522 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
6523
6524 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
6525 (delete-extract-rectangle-line): Use `filter-buffer-substring'
6526 instead of `buffer-substring' and `delete-region'. (Most of the
6527 code actually copied from `kill-region'.)
6528
6529 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
6530
6531 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
6532 (rcirc-default-port): Rename from rcirc-port.
6533 (rcirc-default-nick): Rename from rcirc-nick.
6534 (rcirc-default-user-name): Rename from rcirc-user-name.
6535 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
6536 (rcirc-low-priority-flag): New variable.
6537 (rcirc-decode-coding-system): New defcustom.
6538 (rcirc-encode-coding-system): New defcustom.
6539 (rcirc-coding-system-alist): New defcustom.
6540 (rcirc-multiline-major-mode): New defcustom.
6541 (rcirc-nick): New internal variable.
6542 (rcirc-process): Remove variable.
6543 (rcirc-server-buffer): New variable.
6544 (rcirc): Update to use rcirc-default-* variables above.
6545 (rcirc-connect): Do not add window-configuration-hook-here.
6546 (rcirc-server): New internal variable.
6547 (rcirc-connect): Do not send keepalive pings if
6548 rcirc-keepalive-seconds is nil.
6549 (with-rcirc-server-buffer): New macro.
6550 (rcirc-send-string): Encode with rcirc-encode-coding-system.
6551 (rcirc-server-name): Rename from rcirc-server.
6552 (rcirc-buffer-process): New function.
6553 (rcirc-buffer-nick): New function.
6554 (rcirc-buffer-target): Remove function.
6555 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
6556 New commands.
6557 (rcirc-mode-map): Change binding of C-c C-l to
6558 rcirc-toggle-low-priority.
6559 (rcirc-mode): Initialize coding system based on
6560 rcirc-coding-system-alist. New change-major-mode-hook to part the
6561 channel on a mode change. Make kill-buffer-hook buffer-local.
6562 (rcirc-change-major-mode-hook): New function.
6563 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
6564 (rcirc-last-post-time): New variable.
6565 (rcirc-process-message): Store the last time user posted a message
6566 to this target.
6567 (rcirc-multiline-minor-mode): New mode.
6568 (rcirc-multiline-minor-mode-map): New mode map.
6569 (rcirc-edit-multiline): Put multiline-edit buffer in
6570 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
6571 (rcirc-print): Ignore any line starting with an ignored nick.
6572 (rcirc-print): Decode using rcirc-decode-coding-system.
6573 (rcirc-track-minor-mode): Update global-mode-string when disabling
6574 this mode.
6575 (minor-mode-alist): Add LowPri indicator.
6576 (rcirc-toggle-low-priority): New function.
6577 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
6578 next lowpriority buffer with activity.
6579 (rcirc-record-activity): Sort buffers in rcirc-activity by the
6580 last time the user posted a message in to the target.
6581 (rcirc-update-activity-string): New formatting for low priority
6582 buffers.
6583 (rcirc-split-activity): New function.
6584 (rcirc-handler-PART, rcirc-handler-KICK)
6585 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
6586 (rcirc-nick-away-alist): New variable.
6587 (rcirc-handler-301): New handler. Away messages are printed once
6588 per change.
6589
6590 2006-04-08 Eli Zaretskii <eliz@gnu.org>
6591
6592 * info.el (Info-follow-nearest-node): Doc fix.
6593
6594 * international/mule-cmds.el (set-locale-environment): Make sure
6595 the coding-system preferred by the locale's language has the same
6596 EOL conversion type as the original buffer-file-coding-system.
6597 (locale-language-names): Add a few MS Windows language codes.
6598
6599 2006-04-07 Richard Stallman <rms@gnu.org>
6600
6601 * simple.el (eval-expression): Doc fix.
6602
6603 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
6604 (eval-defun): Doc fixes.
6605
6606 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
6607
6608 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
6609
6610 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
6611
6612 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
6613 GDB list command without argument for greater generality.
6614
6615 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
6616
6617 * subr.el (string-or-null-p): New function.
6618
6619 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
6620
6621 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
6622
6623 * files.el: Update comment about safe-local-variable declarations.
6624
6625 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
6626
6627 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
6628 See idlwave.org.
6629
6630 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
6631 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
6632
6633 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
6634 See idlwave.org.
6635
6636 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
6637 version 6.0 (minimal changes). See idlwave.org.
6638
6639 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
6640 6.0 (minimal changes). See idlwave.org.
6641
6642 * progmodes/idlw-rinfo.el: File obsoleted and removed.
6643
6644 2006-04-06 Romain Francoise <romain@orebokech.com>
6645
6646 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
6647 symmetric encryption features and a new asynchronous interface to
6648 GnuPG. This new version is version 1.4, plus whitespace changes.
6649
6650 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
6651
6652 * files.el: Move some `safe-local-variable' declarations to the
6653 respective files.
6654
6655 * textmodes/ispell.el (ispell-check-comments)
6656 (ispell-local-dictionary): Mark as safe.
6657
6658 * abbrev.el (abbrev-mode): Mark as safe.
6659
6660 * add-log.el (change-log-default-name): Mark as safe.
6661
6662 * textmodes/reftex-vars.el (reftex-vref-is-default)
6663 (reftex-fref-is-default, reftex-level-indent)
6664 (reftex-guess-label-type): Mark as safe.
6665
6666 * textmodes/fill.el (colon-double-space): Mark as safe.
6667
6668 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
6669 (sentence-end-double-space, sentence-end-without-period)
6670 (sentence-end-without-space, sentence-end, sentence-end-base)
6671 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
6672
6673 2006-04-06 Kim F. Storm <storm@cua.dk>
6674
6675 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
6676 the :set-after list.
6677 (ido-downcase-unc-hosts): New user option. Default on.
6678 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
6679 when it is set, as regexps are now applied on the fly.
6680 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
6681 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
6682 on the fly, but only when ido-process-ignore-lists is set.
6683 Do case insensitive filtering if ido-downcase-unc-hosts is set.
6684 Only downcase names if ido-downcase-unc-hosts is set.
6685
6686 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
6687
6688 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
6689
6690 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
6691
6692 2006-04-05 Kim F. Storm <storm@cua.dk>
6693
6694 * ido.el (ido-mode): Set after ido-unc-hosts and
6695 ido-ignore-unc-host-regexps.
6696 (ido-save-history): Save ido-unc-hosts-cache.
6697 (ido-load-history): Load ido-unc-hosts-cache.
6698 (ido-reread-directory): Refresh unc hosts cache in // dir.
6699
6700 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
6701 to nil while displaying slash screen.
6702
6703 2006-04-05 Daiki Ueno <ueno@unixuser.org>
6704
6705 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
6706 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
6707
6708 2006-04-05 Kenichi Handa <handa@m17n.org>
6709
6710 * international/characters.el: Setup cases of Latin, Greek, and
6711 Cyrillic characters in CJK charsets.
6712
6713 2006-03-29 Daiki Ueno <ueno@unixuser.org>
6714
6715 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
6716 default-enable-multibyte-characters. This reverts the change from
6717 revision 6.17 which is no longer necessary because the passphrase
6718 is sent separately now. GnuPG messages are unreadable under
6719 multibyte locales with default-enable-multibyte-characters set to nil.
6720
6721 2006-04-04 Andreas Schwab <schwab@suse.de>
6722
6723 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
6724 and `byte-compile-warnings' as `safe-local-variable'.
6725
6726 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
6727
6728 * man.el (Man-mode-map): Restore the \r binding.
6729 (Man-abstract-xref-man-page): If Man-target-string is a function,
6730 call it.
6731 (Man-highlight-references): Use Man-default-man-entry to get the
6732 target. Deal with xrefs too.
6733 (Man-highlight-references0): Don't call the target function.
6734
6735 * woman.el (WoMan-xref-man-page): Strip the section number, woman
6736 cannot deal with it.
6737
6738 2006-04-04 Daiki Ueno <ueno@unixuser.org>
6739
6740 * pgg-gpg.el: Clean up process buffers every time gpg processes
6741 complete.
6742
6743 2006-04-04 Kenichi Handa <handa@m17n.org>
6744
6745 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
6746 here.
6747 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
6748 Temporarily bind inhibit-field-text-motion to t.
6749
6750 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
6751
6752 * startup.el (normal-splash-screen): Only set mode-line-format in the
6753 splash buffer, so as not to interfere when debugging the code.
6754 Ignore errors when switching buffer.
6755
6756 2006-04-03 Romain Francoise <romain@orebokech.com>
6757
6758 * dired.el (dired-dnd-protocol-alist): Fix typo.
6759
6760 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
6761
6762 * savehist.el (savehist): Add :version.
6763 (savehist-ignored-variables): New variable.
6764 (savehist-minibuffer-hook): Don't save variables listed in
6765 `savehist-ignored-variables'.
6766
6767 * dired.el (dired-dnd-protocol-alist): Mention that change does
6768 only apply to new buffers in doc string.
6769
6770 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
6771
6772 * recentf.el (recentf-open-files-item): Include newline in button
6773 field, so opening a file will work, when the point is at the end
6774 of the file name. Allow, for example, to [i]search a file by
6775 extension and just push RET to open it.
6776
6777 2006-04-03 Daiki Ueno <ueno@unixuser.org>
6778
6779 * pgg-gpg.el (pgg-gpg-process-filter)
6780 (pgg-gpg-wait-for-completion): Check if buffer is alive.
6781
6782 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
6783 lines, temporary fix.
6784
6785 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
6786
6787 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
6788
6789 2006-04-02 Richard Stallman <rms@gnu.org>
6790
6791 * progmodes/compile.el (compilation-message-face): Make it defcustom.
6792
6793 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
6794
6795 * ibuf-macs.el (define-ibuffer-column): Add a new key:
6796 header-mouse-map.
6797
6798 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
6799 (ibuffer-mode-header-map): New keymaps.
6800 (ibuffer-update-title-and-summary): Enable mouse face highlighting
6801 and keybindings for column headers.
6802 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
6803 property.
6804
6805 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
6806
6807 * speedbar.el (speedbar-after-create-hook): Doc fix.
6808
6809 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
6810
6811 * shell.el (shell-directory-tracker)
6812 (shell-dynamic-complete-command): Doc fixes.
6813
6814 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
6815
6816 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
6817 terminals.
6818
6819 2006-04-01 Kim F. Storm <storm@cua.dk>
6820
6821 * ido.el (ido-unc-hosts-cache): New defvar.
6822 (ido-unc-hosts): If value of defcustom is a function, call it to
6823 get list of UNC hosts. Add function-item choices to specify
6824 ido-unc-hosts-net-view or user function.
6825 (ido-ignore-unc-host-regexps): New defcustom.
6826 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
6827 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
6828 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
6829
6830 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
6831
6832 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
6833 wwidth.
6834
6835 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
6836
6837 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
6838 (ido-max-work-file-list, ido-switch-buffer)
6839 (ido-read-file-name-as-directory-commands):
6840 Fix typos in docstrings.
6841
6842 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6843
6844 * term/mac-win.el (mac-system-coding-system): Define and use after
6845 Mac-specific coding systems are ready.
6846
6847 2006-03-27 Romain Francoise <romain@orebokech.com>
6848
6849 * net/rcirc.el (rcirc-connect): Add autoload cookie.
6850
6851 * ldefs-boot.el: Update.
6852
6853 2006-03-27 Daiki Ueno <ueno@unixuser.org>
6854
6855 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
6856 passphrases when it is not needed.
6857 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
6858 passphrase stuff from gpg, should only be necessary when you use
6859 gpg with a smartcard.
6860
6861 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
6862
6863 * comint.el (comint-dynamic-list-completions): Allow user to
6864 select *Completions* buffer.
6865
6866 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
6867
6868 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
6869
6870 2006-03-26 Andreas Schwab <schwab@suse.de>
6871
6872 * progmodes/gud.el (gdb): Only complain about multiple debugging
6873 when the gdb process is still running.
6874
6875 2006-03-25 Eli Zaretskii <eliz@gnu.org>
6876
6877 * mail/rmail.el (tool-bar-map): Defvar it.
6878 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
6879 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
6880
6881 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
6882
6883 * help.el (print-help-return-message): Suggest to use
6884 display-buffer instead of switch-to-buffer-other-window to restore
6885 the previous window without selecting it.
6886
6887 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6888
6889 * frame.el (select-frame-by-name): Call x-focus-frame also when
6890 window-system is mac.
6891
6892 * term/mac-win.el: Adjust Courier font specifications in
6893 x-fixed-font-alist.
6894 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
6895 when directly encoding to UTF-16 in native byte order, no BOM.
6896
6897 2006-03-25 Kim F. Storm <storm@cua.dk>
6898
6899 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
6900 (cua--init-keymaps): Use it instead of fixed C-return.
6901 (cua-mode): Set after it.
6902
6903 * emulation/cua-rect.el (cua--init-rectangles):
6904 Use cua-rectangle-mark-key instead of fixed C-return.
6905
6906 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
6907
6908 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
6909 "run" in .gdbinit.
6910 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
6911
6912 2006-03-24 Romain Francoise <romain@orebokech.com>
6913
6914 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
6915 `display-buffer-other-frame'.
6916
6917 2006-03-24 Kim F. Storm <storm@cua.dk>
6918
6919 * apropos.el (apropos-synonyms): Add selection => region.
6920
6921 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
6922
6923 * progmodes/gdb-ui.el (gdb-var-create-regexp)
6924 (gdb-var-list-children-regexp, gdb-var-update-regexp)
6925 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
6926 (gdb-data-list-register-values-regexp)
6927 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
6928 Future proof against new fields being added to MI output.
6929 (gdb-send): Don't treat backslashes for program input as
6930 continuations.
6931 (gdb-assembler-handler): Don't use window-start for this handler.
6932 (gdb-frame-handler): Don't change to hollow arrow if overlay
6933 arrow doesn't move to new frame.
6934
6935 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
6936
6937 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
6938 prevent compiler warnings.
6939 (gdb-stopped): Check for gud-last-last-frame (case: signal).
6940 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
6941 (gdb-assembler-custom): Use hollow-right-triangle for assembler
6942 buffer too.
6943
6944 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
6945
6946 * pgg-gpg.el (pgg-gpg-update-agent): Check for
6947 make-network-process, so we can use the same code in Gnus v5-10
6948 too and have this file fully synchronized with that release.
6949
6950 2006-03-23 Romain Francoise <romain@orebokech.com>
6951
6952 * ibuf-ext.el (ibuffer-read-filter-group-name):
6953 Use `ibuffer-generate-filter-groups' to make completion list match
6954 the filter groups that are really displayed in the Ibuffer buffer.
6955 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
6956
6957 2006-03-23 Kenichi Handa <handa@m17n.org>
6958
6959 * international/mule-cmds.el (sort-coding-systems): Describe that
6960 the argument is modified in docstring.
6961
6962 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
6963
6964 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
6965 (pgg-gpg-update-agent): New function.
6966 (pgg-gpg-use-agent-p): New function.
6967 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
6968 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
6969 (pgg-gpg-sign-region): Use it.
6970
6971 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
6972
6973 * cus-edit.el (custom-face-set): Call custom-push-theme before
6974 face-spec set so that `changed' theme is correctly saved.
6975 (custom-face-reset-standard): Reset to recalculated face rather
6976 than defface spec.
6977
6978 * custom.el (custom-push-theme): Only save `changed' theme if the
6979 current face does not match the defface specs.
6980
6981 2006-03-21 Simon Josefsson <jas@extundo.com>
6982
6983 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
6984 <wilde@sha-bang.de>.
6985 (pgg-gpg-use-agent): New variable.
6986 (pgg-gpg-process-region): Use it.
6987 (pgg-gpg-encrypt-region): Likewise.
6988 (pgg-gpg-encrypt-symmetric-region): Likewise.
6989 (pgg-gpg-decrypt-region): Likewise.
6990 (pgg-gpg-sign-region): Likewise.
6991 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
6992
6993 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
6994
6995 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
6996 bracket links.
6997
6998 2006-03-21 Kim F. Storm <storm@cua.dk>
6999
7000 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
7001 fringe-indicator-alist instead of modifying global value.
7002 (gdb-frame-handler): Likewise.
7003
7004 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
7005
7006 * diff-mode.el (diff-function): Make it inherit from diff-header
7007 instead of diff-context.
7008
7009 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
7010 bitmap.
7011 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
7012 change names in macro above for consistency.
7013 (gdb-frame-handler): Use hollow-right-triangle for all selected
7014 frames which except the innermost (where execution has stopped).
7015 (gdb-reset): Reset buffer-local values of overlay-arrow.
7016
7017 2006-03-20 Richard Stallman <rms@gnu.org>
7018
7019 * simple.el (set-mark-command): Doc fix.
7020
7021 * files.el (display-buffer-other-frame): New command.
7022 (ctl-x-4-map): Bind C-x 5 C-o to it.
7023
7024 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7025
7026 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
7027 rather than just defer-time, in case defer-time has been changed but
7028 the timer isn't running yet.
7029 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
7030
7031 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
7032
7033 * help-mode.el (help-follow-symbol): New function.
7034 Essentially identical to the old `help-follow', but do not let
7035 `push-button' do the work when on an xref.
7036 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
7037
7038 2006-03-19 Richard Stallman <rms@gnu.org>
7039
7040 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
7041 preceded by the word `program'.
7042 (help-follow-mouse, help-follow): Throw error if not on xref.
7043 Delete no longer used args.
7044
7045 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
7046
7047 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
7048 annotation ensure gud-overlay-arrow-position is redisplayed.
7049
7050 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7051
7052 * textmodes/bibtex.el (bibtex-include-OPTkey)
7053 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
7054 (bibtex-autokey-name-case-convert)
7055 (bibtex-autokey-titleword-case-convert): Make these the aliases
7056 for the following two variables.
7057 (bibtex-autokey-name-case-convert-function)
7058 (bibtex-autokey-titleword-case-convert-function): Make these the
7059 real names.
7060 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
7061 bibtex-font-lock-crossref sublists.
7062 (bibtex-mode): Revert 2005-12-30 change (which made
7063 completion-ignore-case buffer-local).
7064 (bibtex-url): Simplify.
7065
7066 2006-03-19 Kim F. Storm <storm@cua.dk>
7067
7068 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
7069 cursor property value to 2 (to align with C level change).
7070
7071 2006-03-19 Bill Wohler <wohler@newt.com>
7072
7073 * image.el (image-load-path-for-library): Shorten first line in
7074 docstring.
7075
7076 2006-03-18 Richard Stallman <rms@gnu.org>
7077
7078 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
7079
7080 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
7081
7082 * isearch.el (isearch-other-meta-char): Handle user bindings for
7083 shifted control characters.
7084
7085 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
7086
7087 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
7088 part that matches email addresses, file names, etc.
7089
7090 2006-03-18 Eli Zaretskii <eliz@gnu.org>
7091
7092 * term/w32-win.el (mouse-set-font):
7093 Mention w32-list-proportional-fonts in the doc string.
7094
7095 2006-03-18 Kim F. Storm <storm@cua.dk>
7096
7097 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
7098 (ido-unc-hosts): New user option to explicitly define list of know
7099 UNC-style hosts for completion.
7100 (ido-cache-unc-host-shares-time): New user option.
7101 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
7102 New helper functions for UNC file-name support.
7103 (ido-may-cache-directory): Check for UNC host. Simplify.
7104 (ido-wash-history): Clean out old UNC hosts.
7105 (ido-nonreadable-directory-p): UNC hosts are always readable.
7106 (ido-directory-too-big-p): UNC hosts are never too big.
7107 (ido-set-current-directory): Handle UNC root path.
7108 (ido-file-name-all-completions): Complete UNC host names from
7109 ido-unc-hosts list. Cache UNC host shares.
7110 (ido-make-file-list-1): Don't filter UNC root.
7111 (ido-exhibit): Check for // in root directory, and switch to UNC
7112 mode by setting ido-current-directory to //.
7113
7114 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
7115
7116 * cus-edit.el (customize-changed-options): Mention explicit
7117 version number as default in prompt.
7118
7119 2006-03-17 Bill Wohler <wohler@newt.com>
7120
7121 * image.el (image-load-path-for-library): Minor docstring fix.
7122
7123 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
7124
7125 * textmodes/org.el (org-read-date): Include subgroup 5 into
7126 replacement text.
7127 (org-popup-calendar-for-date-prompt): Fix customization type.
7128
7129 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
7130
7131 * progmodes/gdb-ui.el (gud-watch): Provide completion.
7132 (gdb-continuation): New variable.
7133 (gdb-send): Deal with continuation lines.
7134
7135 * progmodes/gud.el (gud-gdb-complete-command)
7136 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
7137 expressions.
7138 (gud-tooltip-mode): Use buffer-local value.
7139
7140 2006-03-16 Kim F. Storm <storm@cua.dk>
7141
7142 * ido.el (ido-edit-input): Use selected match, if any.
7143
7144 2006-03-16 Bill Wohler <wohler@newt.com>
7145
7146 * image.el (image-load-path-for-library): Prefer user's images in
7147 image-load-path.
7148
7149 2006-03-16 Martin Rudalics <rudalics@gmx.at>
7150
7151 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
7152 when checking for attempt to drag leftmost or rightmost scrollbar.
7153
7154 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
7155
7156 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
7157 (gdb-force-mode-line-update): New function.
7158 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
7159 (gdb-exited): Use them.
7160 (gdb-signal): New function.
7161 (gdb-annotation-rules): Provide a rule for it.
7162
7163 2006-03-16 Kenichi Handa <handa@m17n.org>
7164
7165 * international/mule.el (auto-coding-regexp-alist): Add entries
7166 for Unicode BOM.
7167
7168 * sort.el (sort-build-lists): Temporarily bind
7169 inhibit-field-text-motion to t.
7170
7171 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
7172
7173 * locate.el (locate-command, locate-make-command-line)
7174 (locate-fcodes-file, locate-update-command)
7175 (locate-prompt-for-command, locate, locate-with-filter)
7176 (locate-get-file-positions): Doc fixes.
7177 (locate-buffer-name, locate-header-face): Remove leading `*' in
7178 defcustom.
7179 (locate-filter-output): Use `keep-lines' instead of its alias
7180 `delete-non-matching-lines'.
7181 (locate-get-filename, locate-get-dirname): Add introductory comment.
7182 (locate-find-directory-other-window): Give appropriate error
7183 message if used outside main listing.
7184
7185 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
7186
7187 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
7188 the new extend-region feature.
7189 (font-lock-after-change-function): Update correspondingly.
7190 * jit-lock.el (jit-lock-after-change): Update correspondingly.
7191 * progmodes/grep.el (font-lock-lines-before): Don't disable.
7192
7193 2006-03-15 Bill Wohler <wohler@newt.com>
7194
7195 * image.el (image-load-path-for-library): Fix example by not
7196 recommending that one binds image-load-path. Just defvar it to
7197 placate compiler and only use it if previously defined.
7198
7199 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
7200
7201 * textmodes/org.el (org-insert-centered): Use `string-width' to
7202 make underlining work for wide characters.
7203 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
7204 TAB to `org-cycle', to make sure that no binding in
7205 `outline-mode-map' can supercede it.
7206
7207 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
7208
7209 * allout.el: Increment version to 2.2.1 in file commentary.
7210
7211 (allout-version): Increment to 2.2.1.
7212
7213 (allout-default-layout): New customization variable, used when the
7214 file lacks a specific allout-layout. Uses allout-layout-type for
7215 recursively nested definition.
7216
7217 (allout-layout-type): Widget defining allout layouts, necessary for
7218 self-recursive definition.
7219
7220 (allout-mode): Incorporate allout-default-layout as fallback for
7221 allout-layout.
7222
7223 (allout-layout): Mark as 'safe-local-variable', and refer mention
7224 fallback to `allout-default-layout' in absence of a specified value.
7225 (allout-passphrase-verifier-string)
7226 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
7227
7228 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
7229
7230 (allout-get-encryption-passphrase-verifier): Use correct name of
7231 passphrase verifier in docstring.
7232
7233 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
7234
7235 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
7236 elements.
7237 (gdb-find-watch-expression): Make it work for arrays too.
7238 Follow change to gdb-var-list.
7239 (gud-watch): Allow the user to enter variable name with a prexix
7240 arg. Create keybindings.
7241 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
7242 (gdb-var-list-children-handler, gdb-var-update-handler)
7243 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
7244 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
7245 Follow change to gdb-var-list.
7246 (gdb-starting): Don't show the overlay arrows when program is running.
7247
7248 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
7249 gdb-var-list.
7250
7251 2006-03-14 Bill Wohler <wohler@newt.com>
7252
7253 * image.el (image-load-path-for-library): Pass value of path
7254 rather than symbol. Always return list of directories.
7255 Guarantee that image directory comes first.
7256
7257 2006-03-14 Alan Mackenzie <acm@muc.de>
7258
7259 * font-core.el (font-lock-extend-region\(-function\)?.):
7260 New function/variable.
7261
7262 * font-lock.el (font-lock-after-change-function):
7263 Call font-lock-extend-region. Obey font-lock-lines-before.
7264 (font-lock-default-fontify-region): Remove reference to
7265 font-lock-lines-before.
7266
7267 * jit-lock.el (jit-lock-after-change):
7268 Call font-lock-extend-region. Obey font-lock-lines-before.
7269
7270 2006-03-14 David Ponce <david@dponce.com>
7271
7272 * tree-widget.el (tree-widget-themes-load-path)
7273 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
7274
7275 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
7276
7277 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
7278 (rcirc-print): Mark the start of text at the end of the prompt.
7279 (rcirc-track-minor-mode): Add autoload cookie.
7280 (rcirc-update-activity-string): Add space to front of mode-line
7281 indicator.
7282
7283 2006-03-13 Miles Bader <miles@gnu.org>
7284
7285 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
7286 (rcirc-abbrev-nick): Remove function.
7287 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
7288
7289 2006-03-13 David Ponce <david@dponce.com>
7290
7291 * tree-widget.el: Handle themes across all occurrences of the main
7292 themes sub-directory found in tree-widget-themes-load-path.
7293 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
7294 (tree-widget--locate-sub-directory): Return all occurrences.
7295 (tree-widget-themes-path): New function.
7296 Replace tree-widget-themes-directory, and return a list of directories.
7297 (tree-widget-set-parent-theme)
7298 (tree-widget-lookup-image): Use it.
7299
7300 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
7301
7302 * textmodes/org.el (org-link-search): Avoid self-matching of
7303 links, allow target text to be distributed over several lines.
7304 (org-search-not-link): New function.
7305 (org-set-regexps-and-options, org-get-current-options):
7306 New startup options.
7307 (org-export-as-html): Take odd-level setting from local variable.
7308 (org-fontify-emphasized-text): New option.
7309 (org-set-font-lock-defaults): Include emphasized text.
7310 (org-follow-mhe-link): Allow folder-only links, fix folder name.
7311 (org-font-lock): Customize group renamed from `org-faces'.
7312
7313 2006-03-13 John Paul Wallington <jpw@pobox.com>
7314
7315 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
7316 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
7317
7318 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
7319
7320 * cus-start.el (all): Delete :version keyword for members of the
7321 fringe group, since the entire group is new in 22.1.
7322
7323 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
7324
7325 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
7326 map if value is hexadecimal (an address).
7327 (gud-watch): Only search roots for existing watch expressions.
7328 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
7329 prevent caching problems with speedbar-update-directory-contents.
7330
7331 2006-03-12 Juri Linkov <juri@jurta.org>
7332
7333 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
7334 before comparing with `low' and `warn'.
7335
7336 * info.el (Info-dir-remove-duplicates): Move point to the
7337 beginning of the current line after deleting the entries from
7338 redundant heading. Use marker for `limit' and compare it with
7339 point before calling `re-search-forward'.
7340
7341 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
7342
7343 * simple.el (yank): Fix typo in docstring.
7344
7345 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
7346
7347 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
7348 messages, where "D" is the 6th character.
7349
7350 2006-03-11 Eli Zaretskii <eliz@gnu.org>
7351
7352 * simple.el (yank): Fix last change.
7353
7354 2006-03-11 David Ponce <david@dponce.com>
7355
7356 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
7357 merging elements from the standard ispell-dictionary-alist.
7358 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
7359 alist, and return the new alist.
7360
7361 2006-03-11 Richard Stallman <rms@gnu.org>
7362
7363 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
7364
7365 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
7366 the way it is implemented is too unclean.
7367
7368 * simple.el (kill-region, yank): Doc fix.
7369
7370 * battery.el (battery-echo-area-format): Doc fix.
7371 (battery-mode-line-format): Likewise.
7372 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
7373 (battery-linux-proc-acpi): Ignore batteries that say "charged".
7374
7375 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
7376
7377 * progmodes/octave-mod.el (octave-indent-for-comment):
7378 Behave according to do string.
7379
7380 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
7381
7382 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
7383 Be visible only if major mode is Mail Mode.
7384
7385 * textmodes/flyspell.el (flyspell-external-point-words)
7386 (flyspell-process-localwords): Fix last changes.
7387
7388 2006-03-11 Eli Zaretskii <eliz@gnu.org>
7389
7390 * calendar/holidays.el (list-holidays): Doc fix.
7391
7392 * international/mule.el (auto-coding-alist): Add .odt
7393 (OpenOffice's open document) files.
7394
7395 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
7396 document) files. Mention in the doc string the need to sync with
7397 auto-coding-alist.
7398
7399 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
7400
7401 * files.el (hack-local-variables-confirm): Don't prompt for ! if
7402 enable-local-variables is set to always query, or there is no
7403 savable variable.
7404
7405 2006-03-10 Bill Wohler <wohler@newt.com>
7406
7407 * image.el (image-load-path-for-library): Merge at least three
7408 functions from Gnus and MH-E into this one function that can now
7409 be shared.
7410
7411 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
7412
7413 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
7414 gdb-remove-mouse-face and remove help-echo too.
7415 (gdb-enqueue-input): Correct conditional clause.
7416
7417 2006-03-10 Glenn Morris <rgm@gnu.org>
7418
7419 * calendar/calendar.el (calendar-holidays): Doc fix.
7420 * calendar/holidays.el (list-holidays): Doc fix.
7421
7422 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
7423
7424 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
7425 it gets called in gdb-prompt anyway.
7426 (gdb-use-separate-io-buffer): Only restore window arrangement for
7427 gdb-many-windows.
7428 (gdb-enqueue-input): Make it harder to send GDB input when program
7429 is running.
7430 (gdb-buffer-list): New variable.
7431 (gdb-remove-mouse-face): New function.
7432 (gdb-starting): Use it when GDB input won't get sent.
7433
7434 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
7435
7436 * help.el (view-lossage): Remove trailing whitespace before
7437 inserting "\n".
7438
7439 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
7440
7441 * files.el (hack-local-variables-confirm):
7442 Set coding-system-for-read to nil before writing to .emacs.
7443
7444 * arc-mode.el (archive-extract): Check if an existing buffer name
7445 comes from a different archive.
7446
7447 * help.el (describe-key-briefly): If KEY is a down event, read and
7448 discard the up event.
7449
7450 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
7451
7452 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
7453 be edited and use font-lock-warning-face for any changes.
7454
7455 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
7456 (gdb-edit-value): Use it to report any errors.
7457
7458 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
7459
7460 * help.el (describe-key): Remove leftover test code.
7461
7462 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
7463
7464 * textmodes/org.el: Move defvars out of eval-when-compile.
7465 Use buffer-file-name variable.
7466 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
7467 arg `file'.
7468 (org-level-faces): Remove startup dependency.
7469 (org-cycle, org-map-tree, org-scan-tags)
7470 (org-remember-handler): Don't call `outline-level' directly.
7471 (org-mhe-search-all-folders): New option.
7472 (org-mhe-get-message-folder-from-index)
7473 (org-mhe-get-message-folder): Fix indexing search.
7474 (org-format-agenda-item): Handle nil TAGS argument.
7475 (org-cleaned-string-for-export, org-activate-target-links)
7476 (org-make-target-link-regexp): Deal with empty radio target list.
7477 (org-tag): New face.
7478 (org-get-level-face): New function.
7479 (org-set-font-lock-defaults): Simplify setup for headlines.
7480 (org-complete): Pass common substring to `display-completion-list'.
7481
7482 2006-03-06 David Ponce <david@dponce.com>
7483
7484 * tree-widget.el: Update Commentary header.
7485 (tree-widget-theme-name): Ignore parent themes.
7486 (tree-widget-set-parent-theme): New function.
7487 (tree-widget-set-theme): Use it.
7488 (tree-widget-set-image-properties): Move definition. Does nothing
7489 if image properties have already been set.
7490 (tree-widget-image-properties): Move definition. Receive an image
7491 name. Set the :pointer property.
7492 (tree-widget-lookup-image): Doc fix. Search in parent themes.
7493 Don't set the :pointer image property.
7494 (tree-widget-convert-widget): New function. Handle :dynargs
7495 compatibility here.
7496 (tree-widget): Use it to :convert-widget. Add the :expander-p
7497 predicate to control when the :expander function is entered.
7498 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
7499 (tree-widget-value-create): Handle :expander-p. widget-apply
7500 :expander.
7501 (tree-widget-expander-p): New function. Default value of the
7502 :expander-p property.
7503
7504 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
7505
7506 * help.el (describe-key): Properly handle the return value of
7507 read-key-sequence when grabbing an up-event. Cleanup mouse-1
7508 remaps. Handle string and vector `follow-link' values.
7509
7510 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
7511
7512 * complete.el (PC-expand-many-files): Try be more careful when parsing
7513 the shell's output.
7514
7515 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
7516
7517 * outline.el (hide-sublevels): Provide better interactive default.
7518
7519 2006-03-06 Kenichi Handa <handa@m17n.org>
7520
7521 * international/fontset.el (create-fontset-from-fontset-spec):
7522 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
7523
7524 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
7525
7526 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
7527 backslashes instead of one in regexp.
7528 (gud-tooltip-dereference): Add missing optional argument.
7529
7530 2006-03-04 John Paul Wallington <jpw@pobox.com>
7531
7532 * wdired.el (toplevel): Require `cl' at compile-time.
7533
7534 2006-03-04 Andreas Schwab <schwab@suse.de>
7535
7536 * server.el (server-process-filter): Handle errors during
7537 evaluation of the argument.
7538
7539 2006-03-03 John Paul Wallington <jpw@pobox.com>
7540
7541 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
7542 escape parentheses at beginning of line.
7543 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
7544 (t-mouse-mode): Remove period from end of error message.
7545
7546 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
7547
7548 * textmodes/flyspell.el (flyspell-process-localwords):
7549 Be case-sensitive.
7550
7551 2006-03-03 Martin Rudalics <rudalics@gmx.at>
7552
7553 * cus-edit.el (custom-quote): Remove function, since it has been
7554 moved to custom.el.
7555
7556 * font-lock.el (lisp-font-lock-keywords-2)
7557 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
7558 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
7559 they have no special meaning.
7560
7561 * midnight.el (clean-buffer-list): Handle case where base-buffer of
7562 indirect buffer gets killed before indirect buffer. Use dolist.
7563
7564 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
7565
7566 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
7567 value instead of a literal constant (1) on more pauses.
7568
7569 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
7570
7571 * textmodes/flyspell.el (flyspell-external-point-words):
7572 Be case-sensitive.
7573
7574 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
7575
7576 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
7577 with "www".
7578
7579 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
7580
7581 * allout.el: Restablish intermediate missing comment header to
7582 preserve outline structure.
7583 (allout-beginning-of-current-entry): Skip invisible text.
7584 (allout-open-topic): Fix opening a topic at end-of-buffer.
7585 (allout-minor-mode): Move nearer to allout-mode function.
7586
7587 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
7588
7589 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
7590
7591 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
7592
7593 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
7594 is nil.
7595
7596 * progmodes/gud.el (gud-speedbar-menu-items):
7597 Use buffer-local-value and add missing :visible keyword.
7598
7599 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
7600
7601 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
7602
7603 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
7604 must be `follow-link'.
7605
7606 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
7607
7608 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
7609 formatting: No nested anchors.
7610 (org-all-targets): Fix bug with XEmacs compatibility.
7611 (org-read-date): Add (require 'parse-time).
7612 (org-set-tags): Fix bug with extra inserted space.
7613 (org-export-html-style): Define a style class for targets.
7614 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
7615 (org-hide-leading-stars): New option.
7616 (org-hide): New face.
7617 (org-set-font-lock-defaults): Allow to hide leading stars.
7618 (org-get-legal-level, org-tr-level): New functions.
7619 (org-odd-levels-only): New option.
7620 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
7621 (org-demote, org-promote): Deal with double-star levels.
7622 (org-convert-to-odd-levels): New command.
7623
7624 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
7625
7626 * speedbar.el (speedbar-update-localized-contents): Try to
7627 preserve window-start.
7628 (speedbar-update-directory-contents): Try to preserve window-start
7629 and window-point.
7630 (speedbar-update-special-contents): Don't move back to start of window.
7631
7632 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
7633 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
7634 speedbar-timer-fn.
7635 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
7636 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
7637 instead of gdb-speedbar-timer-fn.
7638
7639 2006-02-28 Jay Belanger <belanger@truman.edu>
7640
7641 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
7642 (math-compose-expr): Use latex option when calling
7643 `math-compose-tex-matrix' for latex mode.
7644
7645 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
7646
7647 * speedbar.el: Re-instate comments about developing for speedbar
7648 [this is what info and gdb-ui use even if better methods exist now].
7649
7650 * t-mouse.el: New file.
7651 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
7652 (t-mouse-lispy-buffer-posn-from-coords): Remove.
7653 (t-mouse-make-event-element): Use posn-at-x-y instead.
7654 (t-mouse-make-event): Deal with Fedora Core 3.
7655 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
7656 (t-mouse-mouse-position-function): New function. Use it instead
7657 of advising mouse-position.
7658 (t-mouse-mode): New minor mode.
7659 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
7660
7661 2006-02-27 Glenn Morris <rgm@gnu.org>
7662
7663 * calendar/calendar.el (calendar-holidays): Doc fix.
7664
7665 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
7666
7667 * progmodes/gdb-ui.el (gdb-source-window): New variable.
7668 Re-introduce the concept of a source window.
7669 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
7670 consistency with get-buffer-create.
7671 (def-gdb-auto-update-handler, gdb-info-locals-handler)
7672 (gdb-data-list-register-values-handler)
7673 (gdb-stack-list-locals-handler): Try to preserve window-start as
7674 well as window-point.
7675 (gdb-display-source-buffer): New function (old concept).
7676 (gdb-goto-breakpoint): Use it.
7677
7678 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
7679 for gdb-ui/gdb-mi (old concept).
7680
7681 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
7682
7683 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
7684 binding.
7685
7686 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
7687
7688 * textmodes/reftex-sel.el (reftex-select-label-map)
7689 (reftex-select-bib-map): Add `follow-mouse' binding.
7690
7691 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
7692
7693 * jka-cmpr-hook.el (jka-compr-compression-info-list)
7694 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
7695 Give :set functions to provide automatic updating.
7696 Update docstring. Give compiler defvars early in the file
7697 and move the defcustoms to a later spot where all called functions
7698 are defined.
7699 (jka-compr-file-name-handler-entry): Doc fix.
7700 (jka-compr-compression-info-list--internal)
7701 (jka-compr-mode-alist-additions--internal)
7702 (jka-compr-load-suffixes--internal): New variables.
7703 (jka-compr-install): Set the three above variables.
7704 Update `load-file-rep-suffixes' instead of `load-suffixes'.
7705 (jka-compr-update, jka-compr-set): New functions.
7706 (auto-compression-mode): Doc fix.
7707
7708 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
7709 Update `load-file-rep-suffixes' instead of `load-suffixes'.
7710 Use jka-compr-compression-info-list--internal,
7711 jka-compr-mode-alist-additions--internal and
7712 jka-compr-load-suffixes--internal.
7713
7714 * files.el (load-library):
7715 * loadhist.el (file-loadhist-lookup):
7716 * startup.el (command-line):
7717 * subr.el (locate-library):
7718 * emacs-lisp/autoload.el (update-directory-autoloads):
7719 * emacs-lisp/find-func.el (find-library-suffixes):
7720 Use `get-load-suffixes' instead of `load-suffixes'.
7721
7722 * subr.el (locate-library):
7723 * emacs-lisp/find-func.el (find-library-name):
7724 Use `load-file-rep-suffixes' instead of '("").
7725
7726 2006-02-26 Kim F. Storm <storm@cua.dk>
7727
7728 * ido.el (ido-save-history, ido-load-history): Simplify.
7729 Don't use find-file-noselect to avoid interference from other modes.
7730
7731 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
7732
7733 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
7734 to use the default shell if filename is not available.
7735 Reported by Giorgos Keramidas.
7736
7737 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
7738
7739 * progmodes/etags.el (tags-completion-table): Do completion from
7740 all the tables in the current list, as documented in the manual.
7741
7742 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7743
7744 * CC Mode Update to 5.31.3.
7745
7746 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7747
7748 * progmodes/cc-mode.el (c-postprocess-file-styles):
7749 Bind inhibit-read-only to t, around the call to
7750 c-remove-any-local-eval-or-mode-variables, so that it works on a
7751 RO file.
7752
7753 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7754
7755 * progmodes/cc-awk.el: Correct a typo.
7756
7757 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7758
7759 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
7760 c-hungry-delete-backwards, at the request of RMS. Leave the old
7761 name as an alias.
7762
7763 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7764
7765 * progmodes/cc-mode.el: Correct a typo.
7766
7767 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7768
7769 * progmodes/cc-defs.el: Update the version number to 5.31.3.
7770
7771 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7772
7773 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
7774 brace-else-brace (error due to mbeg, mend being undefined).
7775
7776 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7777
7778 * progmodes/cc-mode.el: File Local variables: Solve the problem
7779 where both `mode' and c-file-offsets are specified: `mode' will
7780 overwrite c-f-o's settings:
7781 (c-remove-any-local-eval-or-mode-variables): New function.
7782 (c-postprocess-file-styles): Call the above new function, within
7783 c-tentative-buffer-change, to splat `mode' and `eval' before the
7784 second hack-local-variables.
7785
7786 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7787
7788 * progmodes/cc-mode.el:
7789 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
7790 (c-after-change): Protect the match data with save-match-data.
7791 It was getting corrupted by c-after-change-check-<>-operators.
7792
7793 * cc-defs.el: [Supersedes patch V1.38]:
7794 (top level): Check for a buggy font-lock-compile-keywords ONLY in
7795 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
7796
7797 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
7798 with save-match-data. It was being corrupted when Font Lock was
7799 not enabled.
7800
7801 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7802
7803 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
7804 Mode and Subword Mode.
7805
7806 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
7807 real labels ("case 1:" or "foo:") from non-labels ("public:").
7808 (c-forward-objc-directive): Replace c-forward-token-2 with crude
7809 coding; c-f-t-2 doesn't move over a token at EOB.
7810
7811 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
7812
7813 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
7814 (c-update-modeline): Concatenate the minor mode indicators
7815 directly onto mode-name, removing c-submode-indicators.
7816 Sometimes, c-s-i got separated from the mode name on the mode line.
7817
7818 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
7819 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
7820
7821 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7822
7823 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
7824 error message when there's an evaluation error to show whether
7825 it's loaded from source or not.
7826 (c-filter-ops): Make it available at runtime too to work when
7827 `c-make-init-lang-vars-fun' needs to evaluate from source.
7828
7829 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
7830
7831 * help.el (help): Revert last part of 2006-02-23 change (deletion
7832 of the `provide' call).
7833
7834 2006-02-23 Juri Linkov <juri@jurta.org>
7835
7836 * compare-w.el (compare-windows-highlight): Add new value
7837 `persistent' and change :type from `boolean' to `choice'.
7838 (compare-windows-overlays1, compare-windows-overlays2):
7839 New internal variables.
7840 (compare-windows-highlight): If compare-windows-highlight is
7841 `persistent', add current overlays to compare-windows-overlays[12]
7842 instead of adding compare-windows-dehighlight to pre-command-hook.
7843 (compare-windows-dehighlight): Delete all overlays from
7844 compare-windows-overlays[12].
7845
7846 * info.el (Info-search): Don't bind search-spaces-regexp to
7847 Info-search-whitespace-regexp in non-regexp isearch mode.
7848
7849 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7850
7851 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
7852
7853 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
7854
7855 * textmodes/org.el (org-xemacs-p)
7856 (org-export-html-show-new-buffer, org-table-may-need-update)
7857 (org-insert-item, org-mhe-get-message-real-folder)
7858 (org-mhe-get-message-folder-from-index)
7859 (org-mhe-get-message-folder, org-mhe-get-message-num)
7860 (org-mhe-get-header, org-make-org-heading-search-string)
7861 (org-make-org-heading-camel, org-table-sort-lines)
7862 (org-format-org-table-html, org-format-table-table-html):
7863 Fix typos in docstrings.
7864
7865 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
7866
7867 * textmodes/org.el (org-cleaned-string-for-export)
7868 (org-solidify-link-text): New function.
7869 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
7870 XEmacs, just to silence the compiler.
7871 (org-export-as-ascii, org-export-as-html-and-open):
7872 Use `org-cleaned-string-for-export' and create internal links.
7873 (org-follow-mhe-link): Require mh-e, use folder.
7874
7875 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
7876
7877 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
7878
7879 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
7880 gdb-debug-log-length.
7881 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
7882 it a real ring but...
7883 (gud-gdba-marker-filter): ...make it work like mark-ring.
7884 (gdb-enable-debug): Rename from gdb-enable-debug-log.
7885 (gdb-mouse-jump): New function. Add bindings.
7886
7887 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
7888
7889 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
7890 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
7891 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
7892 (gdb-debug-log-length): Customize it's length.
7893 (gud-watch, gdb-var-create-handler): Display function::var format
7894 but don't use to create variable object.
7895 (gdb-var-create-handler): Use message-box in place of message.
7896 (gdb-stopped): Call gdb-exited if signalled.
7897
7898 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
7899
7900 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
7901
7902 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
7903
7904 * textmodes/reftex.el (reftex-locate-file): Search all extensions
7905 if `reftex-try-all-extensions' is set.
7906
7907 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
7908 fail silently when there is no valid argument at point.
7909 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
7910 `fail-silently' argument. From a patch by David Reiter.
7911
7912 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
7913 New commands.
7914 (org-mark-ring): New variable.
7915 (org-mark-ring-length): New option.
7916 (org-open-at-point, org-goto, org-open-file): Push old position
7917 onto the mark ring.
7918 (org-add-hook): New function.
7919 (org-export-table-remove-special-lines): New option.
7920 (org-skip-comments, org-format-org-table-html): Respect new
7921 option `org-export-table-remove-special-lines'.
7922 (org-open-file): Allow special command configuration for
7923 directory link.
7924 (org-file-apps): Fix bugs in customize type, added setting
7925 for directories.
7926 (org-activate-tags, org-format-agenda-item, org-complete)
7927 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
7928 (org-get-tags, org-get-buffer-tags, org-open-at-point)
7929 (org-link-search, org-make-org-heading-search-string)
7930 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
7931 (org-radio-targets, org-file-link-context-use-camel-case)
7932 (org-activate-camels): New options.
7933 (org-update-radio-target-regexp, org-all-targets)
7934 (org-make-target-link-regexp, org-activate-target-links):
7935 New functions.
7936 (org-make-org-heading-search-string): New function.
7937 (org-store-link, org-insert-link): Use new option
7938 `org-file-link-context-use-camel-case'.
7939 (org-activate-camels): Use new option `org-activate-camels'.
7940 (org-link-regexp): Add mhe prefix.
7941 (org-open-at-point, org-store-link): Support for mhe links.
7942 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
7943 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
7944 (org-mhe-get-header, org-follow-mhe-link): New functions.
7945 (org-remove-angle-brackets, org-add-angle-brackets):
7946 New functions.
7947 (org-bracket-link-regexp): New constant.
7948 (org-read-date): Fix bug that was rejecting all typed dates.
7949 (org-link-search): Make hierarchy above visible after a match.
7950 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
7951 (org-store-link): Fix bug with link creation when cursor is in
7952 an empty line.
7953 (org-open-at-point): Fix bug with matching a link.
7954 Fixed buggy argument sequence in call to `org-view-tags'.
7955 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7956 (org-prefix-has-tag): New variable.
7957 (org-format-agenda-item): Remove tags from headline
7958 if appropriate.
7959 (org-agenda-remove-tags-when-in-prefix): New option.
7960
7961 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
7962
7963 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
7964 Fix the regular expressions.
7965
7966 2006-02-21 Richard M. Stallman <rms@gnu.org>
7967
7968 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
7969 if there's no other specific basis.
7970
7971 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
7972 as variables at all.
7973 (unsafep-variable): Rename arg; doc fix.
7974
7975 * abbrevlist.el (list-one-abbrev-table): Add autoload.
7976
7977 * calendar/appt.el (diary-selective-display): Add defvar.
7978
7979 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
7980
7981 * isearch.el (search-whitespace-regexp): Fix custom type.
7982
7983 * help.el (describe-key-briefly): Compute interactive args
7984 in same was as before previous change.
7985
7986 * files.el (enable-local-variables): Doc fix.
7987
7988 2006-02-21 Kim F. Storm <storm@cua.dk>
7989
7990 * fringe.el: Cleanup as file is now pre-loaded.
7991 (fringe-bitmaps): Initialize unconditionally.
7992 (fringe-mode, set-fringe-style): Remove autoload cookies.
7993
7994 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
7995
7996 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
7997 `horizontal-bar'.
7998 (fringe-cursor-alist): Use `horizontal-bar'.
7999
8000 2006-02-20 Kim F. Storm <storm@cua.dk>
8001
8002 * fringe.el (fringe-bitmaps): Update to new bitmap names.
8003 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
8004
8005 * loadup.el: Load "fringe" on window systems.
8006
8007 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
8008
8009 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
8010 out of scope components.
8011
8012 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
8013 default.
8014
8015 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
8016
8017 * custom.el (customize-mark-to-save, customize-mark-as-set):
8018 Load the symbol first.
8019
8020 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
8021
8022 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
8023 strech spec so it doesn't display as "^J" on the header line
8024 when `Buffer-menu-use-header-line' is t.
8025
8026 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
8027
8028 * speedbar.el (speedbar-make-button): Keep text properties
8029 of string arguments if desired.
8030
8031 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
8032 expessions.
8033
8034 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
8035 of speedbar.
8036
8037 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
8038
8039 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
8040 to value of `read-file-name-completion-ignore-case'.
8041
8042 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
8043
8044 * custom.el (customize-mark-as-set): Push to `user' theme.
8045
8046 * cus-edit.el (custom-save-variables): Allow unthemed values.
8047 (customize-set-variable): Push setting to `user' theme.
8048
8049 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
8050
8051 * progmodes/gud.el: Don't require font-lock as it's now
8052 automatically loaded.
8053 (gud-speedbar-buttons): Replace gdb-var-changed with
8054 gdb-force-update.
8055
8056 * progmodes/gdb-ui.el (gdb-force-update): Rename from
8057 gdb-var-changed.
8058 (gdb-post-prompt): Use it.
8059 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
8060 (gdb-var-update-handler, gdb-var-delete)
8061 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
8062 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
8063 gdb-force-update in gdb-post-prompt.
8064 (gdb-reset): Clear watch expressions from speedbar when quitting.
8065
8066 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
8067
8068 * viper-cmd.el (viper-insert-state-post-command-sentinel)
8069 (viper-change-state-to-vi, viper-change-state-to-emacs):
8070 Make aware of cursor coloring in the Emacs state.
8071 (viper-special-read-and-insert-char): Use read-char-exclusive.
8072 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
8073
8074 * viper-init.el (viper-emacs-state-cursor-color): New variable.
8075
8076 * viper-util.el (viper-save-cursor-color)
8077 (viper-get-saved-cursor-color-in-replace-mode)
8078 (viper-get-saved-cursor-color-in-insert-mode)
8079 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
8080 state.
8081 (viper-get-saved-cursor-color-in-emacs-mode): New function.
8082
8083 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
8084 (ediff-ignore-case-option3, ediff-actual-diff-options)
8085 (ediff-actual-diff3-options): New variables to control case sensitivity.
8086 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
8087 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
8088 (ediff-toggle-ignore-case): New function.
8089 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
8090
8091 * ediff-help.el (ediff-long-help-message-narrow2)
8092 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
8093 (ediff-long-help-message-word-mode): Add ignore-case command.
8094 (ediff-help-for-quick-help): Add ignore-case command.
8095
8096 * ediff-merg.el: Move provide to the end.
8097
8098 * ediff-ptch.el: Move provide to the end.
8099
8100 * ediff-wind.el: Move provide to the end.
8101
8102 * ediff-mult.el: Move provide to the end.
8103 (ediff-set-meta-overlay): Enable follow-link.
8104
8105 * ediff.el: Move provide to the end.
8106 Break recursive load cycle in eval-when-compile.
8107 (ediff-patch-buffer): Better heuristics.
8108
8109 * ediff-util.el: Move provide to the end.
8110 Break recursive load cycle in eval-when-compile.
8111 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
8112 defuns.
8113 (ediff-submit-report): Pass the values of ediff-diff3-program,
8114 ediff-diff3-options.
8115
8116 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
8117
8118 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
8119 the opening bracket of the following bracketing pairs: {}, [], (), <>,
8120 `' (for example, in the docstring of `windmove-default-keybindings').
8121
8122 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
8123
8124 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
8125 shadow face. Don't provide binding to edit variable when it is
8126 out of scope.
8127
8128 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
8129 (gdb-var-update-handler): Detect out of scope variables with pre
8130 GDB 6.4 too.
8131 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
8132 Reset status of variable objects to nil in update handlers.
8133 (gdb-var-update-handler-1): Detect when a variable object comes
8134 in scope. setcar on var changes gdb-var-list directly.
8135
8136 2006-02-17 Juri Linkov <juri@jurta.org>
8137
8138 * ffap.el (ffap) <defface>: Add explicit face declaration.
8139 (ffap-highlight): Use face `ffap' directly instead of checking
8140 for its existence.
8141
8142 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
8143 `visible-ok' of `other-buffer' to find the right original buffer.
8144
8145 * info.el (Info-search): Skip `Local Variables' node.
8146
8147 2006-02-17 Juri Linkov <juri@jurta.org>
8148
8149 * info.el (Info-find-file): Check for symbols `apropos', `history',
8150 `toc' in the input filename, and return these symbols as is.
8151 (Info-find-node-2): Set Info-current-file to symbols `apropos',
8152 `history', `toc' instead of strings.
8153 (Info-set-mode-line): For non-string Info-current-file use the
8154 symbol's name inside **.
8155 (Info-isearch-push-state): Add quote before Info-current-file and
8156 Info-current-node.
8157 (Info-isearch-pop-state): Use `equal' instead of `string='.
8158 (Info-extract-pointer, Info-following-node-name): Use
8159 `match-string-no-properties' instead of `match-string'.
8160 (Info-up): Check `old-file' for `stringp'.
8161 (Info-history): Use `equal' instead of `string-equal'.
8162 Check `file' for `stringp'.
8163 (Info-history): Use symbol `history' instead of string as first arg
8164 of `Info-find-node'.
8165 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
8166 `toc' instead of string.
8167 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
8168 instead of `buffer-substring', and `match-string-no-properties'
8169 instead of `match-string'.
8170 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
8171 instead of strings.
8172 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
8173 Use symbol `apropos' instead of string.
8174 (Info-copy-current-node-name): Check `Info-current-file' for
8175 `stringp' and construct a command with `Info-find-node' from it.
8176 (Info-fontify-node): Use `match-string-no-properties' instead of
8177 `match-string' and check file names for `stringp'.
8178 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
8179 `history', `toc' instead of strings.
8180
8181 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
8182
8183 * files.el: Rearrange functions and variables in the file local
8184 variables section.
8185
8186 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
8187
8188 * files.el: Add truncate-lines, ispell-check-comments and
8189 ispell-local-dictionary as safe local variables.
8190
8191 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
8192
8193 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
8194 out of scope variables.
8195 (gud-speedbar-buttons): Use unless.
8196
8197 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
8198 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
8199 (gdb-show-changed-values): Also use for out of scope variables.
8200 (gdb-var-update-handler-1): Note if variable goes out of scope.
8201
8202 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
8203
8204 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
8205 default to global variable values for unsupplied args.
8206 (rcirc-get-buffer-create): Fix bug with setting the target.
8207 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
8208 test for rcirc-always-use-server-buffer-flag here.
8209 (rcirc-response-formats): Add %N, which is a facified nick. %n
8210 uses the default face. Change the ACTION format string. If the
8211 "nick" is the server, don't print anything for that field.
8212 Comment fixes.
8213 (rcirc-target-buffer): Don't test
8214 rcirc-always-use-server-buffer-flag here.
8215 (rcirc-print): Squeeze extra spaces out of the text before message.
8216 (rcirc-put-nick-channel): Strip potential "@" char from nick
8217 before adding them to nick table.
8218 (rcirc-url-regexp): Improve to match address like "foo.com".
8219
8220 2006-02-17 Eli Zaretskii <eliz@gnu.org>
8221
8222 * allout.el (allout-hidden-p): Move this defsubst before
8223 allout-overlay-interior-modification-handler, where it is first
8224 used.
8225
8226 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
8227
8228 * allout.el: Use allout invisible-text overlays instead of
8229 selective display for concealed text. Also, lots of general
8230 cleanup, and improved compatibility code.
8231
8232 (allout-version) Incremented, corrected, revised, and refined
8233 module commentary.
8234
8235 (provide 'allout): Moved to the bottom, added a require of overlay.
8236
8237 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
8238 `except-current'.
8239 (allout-write-file-hook-handler): Minimize delay.
8240 (count-trailing-whitespace-region): New function so
8241 auto-encryption of current topic can resituate cursor exactly.
8242 PGP/GPG encryption trims trailing whitespace from lines, which
8243 must be accounted for across encryption then decryption.
8244
8245 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
8246 just plain "\C-c", to avoid intruding on user's keybinding space.
8247
8248 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
8249 parameter, so user request to provide a new password is done.
8250
8251 (allout-outside-normal-auto-fill-function, allout-auto-fill):
8252 Refined mechanism for auto-filling behavior while in allout mode.
8253
8254 (allout-mode): Explicitly specify the mode map in the docstring.
8255 Clarify provision for various write-file hook var names.
8256 Adjusted for invisible-text overlays instead of selective-display.
8257
8258 (allout-depth): Really return 0 if not within any topic. This
8259 rectifies `allout-beginning-of-level' and sequence numbering
8260 errors that occur when cutting and pasting numbered topics.
8261 Changed from a in-line subst to a regular function, as well.
8262
8263 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
8264
8265 (allout-end-of-subtree, allout-end-of-subtree)
8266 (allout-end-of-entry, allout-end-of-current-heading)
8267 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
8268 (allout-show-children, allout-show-to-offshoot)
8269 (allout-hide-current-entry, allout-show-current-entry): Rectified
8270 handling of trailing blank lines between items.
8271
8272 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
8273 (allout-current-depth, allout-unprotected, allout-hidden-p)
8274 (allout-on-current-heading-p, allout-listify-exposed)
8275 (allout-chart-subtree, allout-goto-prefix)
8276 (allout-back-to-current-heading, allout-get-body-text)
8277 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
8278 (allout-hide-region-body, allout-toggle-subtree-encryption)
8279 (allout-encrypt-string, allout-encrypted-key-info)
8280 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
8281 (allout-file-vars-section-data): Adjusted for use with
8282 invisible-text overlays instead of selective-display.
8283
8284 (allout-kill-line, allout-kill-topic, allout-yank-processing):
8285 Reworked for use with invisible text overlays.
8286
8287 (allout-current-topic-collapsed-p): New function.
8288
8289 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
8290 to know when to close the containing topic.
8291
8292 (allout-pre-command-business, allout-post-command-business):
8293 Simplify undo-batching and dynamic isearch exposure.
8294
8295 (allout-set-overlay-category): New for invisible-text overlays.
8296 Sets properties of allout-overlay-category, used by
8297 allout-flag-region to set invisible-text overlay properties.
8298 (allout-get-invisibility-overlay): Get the first qualifying
8299 invisibility overlay, so we can find the extent of it.
8300 (allout-back-to-visible-text): Get to just before the beginnining
8301 of the current invisibility overlay, if any.
8302
8303 (allout-overlay-insert-in-front-handler)
8304 (allout-overlay-interior-modification-handler)
8305 (allout-before-change-handler, allout-isearch-end-handler): New
8306 functions to handle extraordinary actions affecting concealed
8307 text.
8308
8309 (allout-flag-region): Use overlays instead of selective-display
8310 for invisible text - by inheritence from the properties of
8311 allout-overlay-category in mainline Emacs, and applied
8312 property-by-property in XEmacs, some recent versions of which
8313 don't inherit the properties from the category. Provisions to
8314 respond to concealed-text edits simplified drastically.
8315
8316 (allout-isearch-rectification, allout-isearch-was-font-lock)
8317 (allout-isearch-expose, allout-enwrap-isearch)
8318 (allout-isearch-abort, allout-pre-was-isearching)
8319 (allout-isearch-prior-pos, allout-isearch-did-quit)
8320 (allout-isearch-dynamic-expose)
8321 (allout-hide-current-entry-completely): Functions deleted.
8322
8323 (allout-undo-aggregation): Explicit undo aggregation no longer
8324 necessary due to transition away from selective-display.
8325
8326 (set-allout-regexp, allout-up-current-level)
8327 (allout-next-visible-heading, allout-forward-current-level)
8328 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
8329 (allout-kill-line, allout-yank-processing, allout-show-children)
8330 (allout-expose-topic, allout-old-expose-topic)
8331 (allout-listify-exposed, allout-insert-latex-header)
8332 (allout-toggle-subtree-encryption, allout-encrypt-string)
8333 (remove-from-invisibility-spec, allout-hide-current-subtree):
8334 Ditched unused variables.
8335
8336 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
8337
8338 * textmodes/ispell.el (ispell-change-dictionary): Call
8339 ispell-buffer-local-dict instead of
8340 ispell-accept-buffer-local-defs.
8341 (ispell-local-dictionary-alist): Accept as valid any coding-system
8342 supported by Emacs.
8343 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
8344 changed to iso-8859-3.
8345
8346 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
8347
8348 * speedbar.el (speedbar-frame-width): Make an inline function
8349 instead of a macro. Use frame-width.
8350 (speedbar-try-completion, speedbar-update-contents)
8351 (speedbar-timer-fn): Use consp.
8352 (speedbar-update-localized-contents): Try to preserve point.
8353
8354 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
8355 (menu): Re-order menu items.
8356 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
8357 field.
8358 (gdb-var-update-handler-1): Use it for GDB 6.4+.
8359 (gdb-post-prompt): Speed things by not forcing update.
8360
8361 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
8362
8363 * wid-edit.el (widget-button-click): For mouse-1, cancel button
8364 press and perform default action if we get a mouse movement event.
8365
8366 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
8367
8368 * calendar/icalendar.el (icalendar--get-event-property)
8369 (icalendar--get-event-property-attributes): Fix typos in
8370 docstrings.
8371
8372 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
8373 docstring.
8374
8375 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
8376
8377 * bs.el (bs-mode): Use `buffer-disable-undo'.
8378 (bs--get-file-name): Simplify.
8379 (bs-show-in-buffer): Mark the buffer as not modified.
8380
8381 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
8382
8383 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
8384 widget-button-click.
8385
8386 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
8387 (custom-mode): Update docstring.
8388
8389 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
8390 binding.
8391
8392 * files.el (hack-local-variables-confirm): Allow scrolling if the
8393 file variable list is too long. Kill temp buffer after use.
8394
8395 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
8396
8397 * progmodes/gud.el (gdb): Improve doc string.
8398 (gdb-script-font-lock-keywords): Expand allowed character set.
8399
8400 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
8401 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
8402 (gdb-separate-io-interrupt, gdb-separate-io-quit)
8403 (gdb-separate-io-stop, gdb-separate-io-eof):
8404 Rename from gdb-inferior-* to gdb-separate-*.
8405 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
8406
8407 2006-02-14 Jay Belanger <belanger@truman.edu>
8408
8409 * calc/calc-arith.el (math-check-known-scalarp): Make sure
8410 expression is a symbol before checking that it is bound.
8411
8412 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
8413 test to see if equation can be solved.
8414
8415 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
8416
8417 * wid-edit.el (widget-button-click): Use :pressed-face property
8418 for overlay face, if it exists.
8419
8420 * cus-edit.el (custom-manual, custom-add-see-also)
8421 (custom-add-parent-links, custom-group-link): Add :pressed-face
8422 property to links.
8423
8424 * files.el (hack-local-variables): Remove ignored variables before
8425 checking if any variables need setting.
8426
8427 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8428
8429 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
8430
8431 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
8432
8433 * help.el (where-is): Fix message for remapped commands.
8434
8435 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
8436 Fix typos in docstrings.
8437
8438 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
8439
8440 * files.el (safe-local-variable-values): New option.
8441 (hack-local-variables-prop-line): Return a list of variable-value
8442 pairs if MODE-ONLY is non-nil.
8443 (hack-local-variables): Construct list of variable-value pairs,
8444 and apply or reject them in one go. Ask for confirmation if
8445 variables are not known safe.
8446 (hack-local-variables-confirm): Complete rewrite. Support
8447 `safe-local-variable-values'.
8448 (enable-local-variables): Update docstring to reflect new
8449 behavior.
8450 (ignored-local-variables): Ignore ignored-local-variables and
8451 safe-local-variable-values.
8452 (safe-local-variable-p): New function.
8453 (risky-local-variable-p): `safe-local-variable' property check
8454 moved to safe-local-variable-p.
8455 (hack-one-local-variable): Checks moved to hack-local-variables.
8456
8457 (byte-compile-dynamic, c-basic-offset, c-file-style)
8458 (c-indent-level, comment-column, fill-column, fill-prefix)
8459 (indent-tabs-mode, kept-new-versions, no-byte-compile)
8460 (no-update-autoloads, outline-regexp, page-delimiter)
8461 (paragraph-start, paragraph-separate, sentence-end)
8462 (sentence-end-double-space tab-width, version-control):
8463 Add `safe-local-variable' property.
8464
8465 * find-lisp.el: Delete nonexistent `autocompile' file variable.
8466
8467 * icomplete.el, play/landmark.el: Change nonexistent
8468 `outline-layout' file variable to `allout-layout'.
8469
8470 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
8471
8472 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
8473 (gdb-get-changed-registers): Test value of gud-minor-mode relative
8474 to gud-comint-buffer.
8475 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
8476 gdb-ui.el for gdb-mi.el.
8477 (gdb-post-prompt, gdb-get-changed-registers): Move test for
8478 registers buffer to gdb-get-changed-registers.
8479 (gdb-breakpoint-regexp): New regexp. Allow toggling and
8480 deletion of catchpoints (throw and catch).
8481 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
8482 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
8483 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
8484 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
8485 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
8486
8487 2006-02-13 Jay Belanger <belanger@truman.edu>
8488
8489 * calc/calc-arith.el (math-check-known-matrixp): Make sure
8490 expression is a symbol before checking that it is bound.
8491
8492 2006-02-13 Richard M. Stallman <rms@gnu.org>
8493
8494 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
8495 for the minibuffer too, but not if resize-mini-windows will interfere.
8496
8497 * help.el (describe-key-briefly, describe-key): Do all arg-reading
8498 inside `interactive' spec.
8499 (describe-key-briefly-internal, describe-key-internal):
8500 Functions merged back into their callers.
8501
8502 2006-02-13 Martin Rudalics <rudalics@gmx.at>
8503
8504 * info.el (info-xref-visited): Inherit from info-xref too.
8505 (Info-set-mode-line): Replace occurrences of `%' by `%%'
8506 when propertizing Info-current-file and Info-current-node.
8507
8508 2006-02-13 Juri Linkov <juri@jurta.org>
8509
8510 * tumme.el (tumme-thumbnail-storage): Fix docstring.
8511 (tumme-thumb-name): Fix per-directory format.
8512
8513 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
8514
8515 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
8516
8517 2006-02-12 Miles Bader <miles@gnu.org>
8518
8519 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
8520
8521 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
8522
8523 * tumme.el: Remove history section. If someone needs the it, it
8524 can always be found in CVS.
8525
8526 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
8527
8528 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
8529 about the Thumbnail Managing Standard option.
8530
8531 2006-02-12 Richard M. Stallman <rms@gnu.org>
8532
8533 * subr.el (substitute-key-definition): Doc fix.
8534
8535 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
8536
8537 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
8538
8539 * info.el (Info-mode): Doc fix.
8540
8541 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
8542
8543 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
8544
8545 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
8546 because on Solaris a POSIX compatible "id" is needed. Reported by
8547 Magnus Henoch <mange@freemail.hu>.
8548
8549 2006-02-12 Juri Linkov <juri@jurta.org>
8550
8551 * tumme.el: Remove todo item about Thumbnail Managing Standard.
8552 (tumme) <defgroup>: Change :group to `multimedia'.
8553 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
8554 Managing Standard.
8555 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
8556 Fix dostring.
8557 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
8558 and %y. Fix docstring.
8559 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
8560 (tumme-cmd-create-standard-thumbnail-command): New user options.
8561 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
8562 is `standard'. Fix docstring.
8563 (tumme-thumb-width, tumme-thumb-height): New user options.
8564 (tumme-external-viewer): Try to find various viewers.
8565 (tumme-get-thumbnail-image): Use `create-image' instead of
8566 constructing the `image' structure.
8567 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
8568 `standard'.
8569 (tumme-thumb-name): Add file name generation for standard storage.
8570 Simplify code for other storages.
8571 (tumme-thumb-name): Use width %w and height %h instead of size %s.
8572 Add modification time %m and thumbnail-nq8 %q.
8573 Use `tumme-cmd-create-standard-thumbnail-command' if
8574 tumme-thumbnail-storage is `standard'.
8575 (tumme-dired-insert-marked-thumbs): New autoload command.
8576 (tumme-dired-after-readin-hook): New function.
8577 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
8578 `tumme-thumb-size'.
8579 (tumme-display-image): Replace size-x %x and size-y %y with
8580 width %w and height %h.
8581
8582 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
8583 `tumme-dired-insert-marked-thumbs'.
8584
8585 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
8586
8587 * tumme.el (tumme-write-tag): Fix small bug (file name did not
8588 include path).
8589 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
8590 matching tag.
8591
8592 2006-02-12 Miles Bader <miles@gnu.org>
8593
8594 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
8595 New variables.
8596 (rcirc-abbrev-nick): New function.
8597 (rcirc-format-response-string): Rewrite to use the formats in
8598 `rcirc-response-formats' and expand escape sequences therein.
8599 A text-property `rcirc-text' is added over the actual response
8600 text to make easy to find inside the returned string.
8601 (rcirc-print): When filling, just look for the `rcirc-text'
8602 text-property to find the appropriate fill prefix, instead of
8603 using hardwired patterns.
8604
8605 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
8606
8607 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
8608 Managing Standard.
8609
8610 2006-02-11 Kim F. Storm <storm@cua.dk>
8611
8612 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
8613 Don't use insert-buffer; do insert-buffer-substring directly.
8614 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
8615
8616 2006-02-11 Martin Rudalics <rudalics@gmx.at>
8617
8618 * files.el (revert-buffer, recover-file): Replace buffer-read-only
8619 with inhibit-read-only. Suggested by Stefan Monnier.
8620 (revert-buffer): Let insert-file-contents discard
8621 buffer-undo-list. Simplify code.
8622 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
8623
8624 2006-02-11 Eli Zaretskii <eliz@gnu.org>
8625
8626 * menu-bar.el (menu-bar-select-yank): Add a doc string.
8627
8628 * help.el (describe-key-briefly): Now a wrapper for
8629 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
8630 to t. Populate yank-menu if empty.
8631 (describe-key-briefly-internal): Renamed from describe-key-briefly.
8632 (describe-key): Now a wrapper for describe-key-internal. Bind
8633 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
8634 (describe-key-internal): Renamed from describe-key.
8635
8636 2006-02-11 Milan Zamazal <pdm@zamazal.org>
8637
8638 * progmodes/glasses.el (glasses-separator): Doc fix.
8639 (glasses-original-separator): New defcustom.
8640 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
8641
8642 2006-02-11 Martin Rudalics <rudalics@gmx.at>
8643
8644 * mwheel.el (mouse-wheel-up-event): Doc fix.
8645
8646 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
8647
8648 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
8649 (tumme-dir): New function. Copied from thumbs.el.
8650
8651 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
8652
8653 * desktop.el (desktop-outvar): Fix typo.
8654 (desktop-save-buffer-p): Doc fix.
8655
8656 * subr.el (substitute-key-definition): Fix typo.
8657
8658 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8659
8660 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
8661 when window-system is mac.
8662
8663 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
8664
8665 2006-02-10 Kim F. Storm <storm@cua.dk>
8666
8667 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
8668 indirect-function instead of using condition-case.
8669
8670 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
8671
8672 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
8673 less `colloquial'...
8674
8675 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
8676
8677 * tumme.el: Add a couple of todo items.
8678
8679 2006-02-09 Lars Hansen <larsh@soem.dk>
8680
8681 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
8682 (highlight-changes-mode): Don't change desktop-locals-to-save.
8683
8684 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
8685
8686 * image-mode.el (image-toggle-display): Clear image cache if using
8687 filename.
8688
8689 2006-02-09 Masatake YAMATO <jet@gyve.org>
8690
8691 * dired-x.el (dired-guess-shell-alist-default): Add .man as
8692 a `dired-man' target.
8693
8694 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
8695 boundary of symbols.
8696
8697 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
8698
8699 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
8700
8701 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
8702
8703 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
8704 `mapcar'; return nil.
8705
8706 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
8707
8708 * mouse.el (mouse-drag-track): Don't change window if we rebind to
8709 some other event.
8710
8711 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
8712
8713 * net/rcirc.el (rcirc-startup-channels-alist):
8714 Add irc.freenode.net and #emacs as defaults.
8715 (rcirc-ignore-all-activity-flag): Remove variable.
8716 (rcirc-authinfo): New variable.
8717 (rcirc-authinfo-filename): Remove variable.
8718 (rcirc-always-use-server-buffer-flag): New flag.
8719 (rcirc): M-x rcirc will automatically connect without prompting.
8720 C-u M-x rcirc will prompt. Use rcirc-connect to create a
8721 connection in lisp.
8722 (rcirc-process-server-response-1): Remove everything but the nick
8723 portion of the sender so it doesn't need to be done everywhere
8724 else. Update related code.
8725 (global-map): Remove global keybindings.
8726 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
8727 (rcirc-send-input): Split into several functions.
8728 (rcirc-process-input-line, rcirc-process-message)
8729 (rcirc-process-command): New functions.
8730 (rcirc-target-buffer): New function to determine where to route
8731 messages.
8732 (rcirc-user-nick): Save match data.
8733 (rcirc-toggle-ignore-buffer-activity)
8734 (rcirc-update-activity-string): Remove global ignore functionality,
8735 which can be done now by toggling rcirc-track-minor-mode.
8736 (rcirc-track-minor-mode-map): New keymap.
8737 (rcirc-track-minor-mode): New minor-mode.
8738 (ignore): Make the ignore output nicer. Always print it when
8739 adding or removing nicks.
8740 (rcirc-url-regexp): Improve.
8741 (rcirc-mangle-text): Remove properties before using text in the
8742 modeline.
8743 (rcirc-authenticate): Authentication data comes from
8744 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
8745 (rcirc-server-prefix): Inherit from rcirc-server.
8746
8747 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
8748
8749 * Makefile.in (compile): Append "|| true" to the end of the `find'
8750 command, like compile-always does.
8751
8752 2006-02-08 Sam Steingold <sds@gnu.org>
8753
8754 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
8755 output from a dead connection.
8756
8757 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
8758
8759 * dired.el (dired-mode-map): Add more bindings for tumme.
8760
8761 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
8762
8763 * wdired.el (wdired-mode-map): Use remap.
8764 (wdired-get-filename): Massage.
8765 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
8766 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
8767 `keymap' property rather than `local-map'.
8768
8769 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
8770
8771 * tumme.el (tumme-get-thumbnail-image): New utility function.
8772 Suggested by from Chong Yidong.
8773 (tumme-dired-with-window-configuration): Rename from
8774 `tumme-dired'. Add code to save window configuration.
8775 (tumme-restore-window-configuration): New command to restore the
8776 window configuration that `tumme-dired-with-window-configuration'
8777 saves before it changes the window configuration.
8778 (tumme-show-all-from-dir): New command to display thumbnails for
8779 all files in a directory entered by the user, like M-x thumbs.
8780 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
8781 have been created.
8782 (tumme-display-thumbnail-original-image): Call `display-buffer'.
8783 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
8784 Remove obsolete test function.
8785
8786 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
8787
8788 * vc.el (small-temporary-file-directory): Remove defvar; there's
8789 a defcustom for it in files.el.
8790
8791 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
8792 Fix typo in message.
8793 (tumme-gallery-generate): Fix typo in `error' message.
8794 (tumme-display-window-height-correction)
8795 (tumme-display-window-width-correction, tumme-line-up-dynamic)
8796 (tumme-line-up-interactive): Dox fixes.
8797 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
8798 (tumme-restore-window-configuration, tumme-format-properties-string)
8799 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
8800 Fix typos in docstrings.
8801
8802 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
8803
8804 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
8805
8806 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
8807
8808 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
8809 User should use hook if desired.
8810
8811 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
8812 buffer if necessary.
8813 (gdb-delete-frame-or-window): New function.
8814 (gdb-breakpoints-mode-map): Bind "q" to it.
8815
8816 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
8817
8818 * textmodes/nroff-mode.el: Clean up name space.
8819 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
8820 (nroff-mode): Obey the global setting of nroff-electric-mode.
8821 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
8822
8823 * calendar/calendar.el (calendar-increment-month): Typo in last change.
8824
8825 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
8826
8827 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
8828
8829 2006-02-06 Lars Hansen <larsh@soem.dk>
8830
8831 * generic-x.el (etc-fstab-generic-mode): Add file system types
8832 cifs and usbdevfs. Allow special chars in file names.
8833
8834 2006-02-05 Jay Belanger <belanger@truman.edu>
8835
8836 Update copyright notices of the files in lisp/calc.
8837
8838 2006-02-05 Romain Francoise <romain@orebokech.com>
8839
8840 Update copyright notices of all files in the lisp/play directory.
8841
8842 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
8843
8844 * ldefs-boot.el: Regenerate.
8845
8846 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
8847
8848 2006-02-05 Kim F. Storm <storm@cua.dk>
8849
8850 * files.el (magic-mode-regexp-match-limit): New defvar.
8851 (set-auto-mode): Use it to limit magic-mode-alist matching.
8852
8853 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
8854
8855 * simple.el (display-message-or-buffer): Compare the number of
8856 characters to the frame width when determining whether a 1-line
8857 message string will fit in the echo area. Count screen lines
8858 instead of buffer lines when determining whether a multi-line
8859 message will fit in the echo area/minibuffer window.
8860
8861 2006-02-04 Eli Zaretskii <eliz@gnu.org>
8862
8863 * info.el (Info-index, Info-mode): Improve the description of the
8864 `i' command.
8865
8866 * ldefs-boot.el: Regenerate.
8867
8868 2006-02-03 Werner Lemberg <wl@gnu.org>
8869
8870 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
8871 greedy to find the closing bracket in \*[...] and similar
8872 expressions. This is a first rough fix -- many additional
8873 refinements are necessary to make nroff mode really usable with groff.
8874
8875 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
8876
8877 * international/mule-cmds.el (set-locale-environment):
8878 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
8879 libX11.
8880
8881 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
8882
8883 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
8884 archive are created in archive-tmpdir.
8885
8886 2006-02-02 John Paul Wallington <jpw@pobox.com>
8887
8888 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
8889 (ibuffer-fontification-alist): Use it.
8890 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
8891 to "* z" and the Ibuffer Mark menu.
8892
8893 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
8894
8895 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
8896
8897 * textmodes/table.el (*table--cell-describe-mode)
8898 (*table--cell-describe-bindings): Undo last change since
8899 print-help-return-message is not obsoleted by anything at all.
8900
8901 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
8902
8903 * emulation/cua-base.el (cua-mode): Doc fix.
8904
8905 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
8906
8907 * dframe.el (dframe-handle-make-frame-visible)
8908 (dframe-handle-iconify-frame, dframe-get-focus)
8909 (dframe-select-attached-frame, dframe-power-click)
8910 (dframe-frame-mode): Fix typos in docstrings.
8911
8912 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
8913 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
8914 Fix typos in docstrings.
8915
8916 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
8917 (hi-lock-face-buffer, hi-lock-font-lock-hook)
8918 (hi-lock-archaic-interface-message-used)
8919 (hi-lock-file-patterns-range): Fix typos in docstrings.
8920
8921 * savehist.el (savehist-loaded, savehist-load, savehist-install)
8922 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
8923
8924 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
8925 Fix typo in docstring.
8926
8927 * net/newsticker.el (newsticker--decode-iso8601-date)
8928 (newsticker--set-customvar, newsticker--buffer-insert-item)
8929 (newsticker--do-run-auto-mark-filter)
8930 (newsticker--parse-generic-feed): Doc fixes.
8931 (newsticker--retrieval-timer-list, newsticker-url-list)
8932 (newsticker-hide-immortal-items-in-echo-area)
8933 (newsticker-hide-obsolete-items-in-echo-area)
8934 (newsticker-new-item-face, newsticker--enclosure)
8935 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
8936 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
8937 (newsticker--parse-generic-feed, newsticker--cache-contains)
8938 (newsticker--stat-num-items, newsticker-download-enclosures):
8939 Fix typos in docstrings.
8940
8941 * net/rcirc.el (rcirc-debug): Doc fix.
8942 (rcirc-fill-column, rcirc-receive-message-hooks)
8943 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
8944 (rcirc-mode, rcirc-generate-new-buffer-name)
8945 (rcirc-startup-channels, rcirc-ignore-update-automatic)
8946 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
8947 Fix typos in docstrings.
8948 (rcirc-print): "?\ " -> "?\s".
8949 (rcirc-cmd-join): Improve argument/docstring consistency.
8950
8951 2006-02-01 Mark A. Hershberger <mah@everybody.org>
8952
8953 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
8954 before narrow-to-region.
8955
8956 2006-02-01 Richard M. Stallman <rms@gnu.org>
8957
8958 * simple.el (move-beginning-of-line): Scan properly for invis change.
8959
8960 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
8961
8962 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
8963
8964 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
8965 change bit only when id-format is 'integer. Reported by Matt
8966 Hodges <M.P.Hodges@rl.ac.uk>.
8967
8968 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
8969
8970 * hilit-chg.el (highlight-changes-initial-state)
8971 (highlight-changes-global-initial-state): Doc fixes.
8972 (highlight-changes-global-modes, global-highlight-changes):
8973 Fix typos in docstrings.
8974
8975 2006-02-01 Kim F. Storm <storm@cua.dk>
8976
8977 * emulation/cua-base.el (cua-mode): Mention that CUA enables
8978 transient-mark-mode in doc string.
8979
8980 2006-01-31 Richard M. Stallman <rms@gnu.org>
8981
8982 * replace.el (multi-occur): Doc fix.
8983 (multi-occur-in-matching-buffers): Rename from
8984 multi-occur-by-filename-regexp. Prefix arg says match
8985 buffer names instead of file names.
8986
8987 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
8988
8989 * bs.el: Allow non-default values of `bs-header-lines-length'.
8990 (bs--running-in-xemacs): Remove (not needed anymore).
8991 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
8992 instead of `shrink-window', thus avoiding having to compute the
8993 height of the window.
8994 (bs--up): Wrap around even when there's no header.
8995 (bs--down): Use `forward-line' instead of `next-line'.
8996
8997 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
8998
8999 * image-mode.el (image-toggle-display): Use file name if possible,
9000 instead of unnecessarily allocating a (possibly huge) lisp string.
9001
9002 2006-01-30 John Paul Wallington <jpw@pobox.com>
9003
9004 * subr.el (toplevel): Define `cl-assertion-failed' condition here
9005 because the `assert' macro signals it at runtime.
9006
9007 * emacs-lisp/cl.el (toplevel): Remove definition of
9008 `cl-assertion-failed' condition.
9009
9010 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
9011
9012 * thumbs.el (thumbs-marked-list): Make buffer-local and
9013 permanent-local.
9014 (thumbs-insert-thumb): Make help-echo non-sticky.
9015 (thumbs-file-alist): Use eolp as check for (non)-image.
9016
9017 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
9018
9019 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
9020 (ediff-before-session-group-setup-hooks)
9021 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
9022 Fix typos in docstrings.
9023
9024 * window.el (bw-dir, bw-eqdir, balance-windows)
9025 (split-window-keep-point): Fix typos in docstrings.
9026
9027 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
9028 (org-quote-string, org-calendar-to-agenda-key)
9029 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
9030 (org-show-following-heading, org-tags-column)
9031 (org-use-tag-inheritance, org, org-allow-space-in-links)
9032 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
9033 (org-enable-table-editor, org-calc-default-modes)
9034 (org-table-allow-automatic-line-recalculation)
9035 (org-export-html-style, org-export-with-fixed-width)
9036 (org-export-with-sub-superscripts, org-special-keyword)
9037 (org-formula, org-time-grid, org-table-may-need-update)
9038 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
9039 (org-goto-quit, org-get-indentation, org-end-of-item)
9040 (org-move-item-down, org-move-item-up)
9041 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
9042 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
9043 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
9044 (org-agenda-log-mode, org-agenda-toggle-diary)
9045 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
9046 (org-agenda-file-to-end, org-agenda-no-heading-message)
9047 (org-agenda-get-closed, org-format-agenda-item)
9048 (org-cmp-priority, org-cmp-category, org-cmp-time)
9049 (org-agenda-change-all-lines, org-agenda-diary-entry)
9050 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
9051 (org-link-search, org-camel-to-words, org-open-file)
9052 (org-remember-handler, org-table-convert-region)
9053 (org-table-move-row-down, org-table-move-row-up)
9054 (org-table-copy-region, org-table-wrap-region)
9055 (org-table-toggle-vline-visibility)
9056 (org-table-get-vertical-vector, org-table-modify-formulas)
9057 (org-table-get-specials, org-recalc-commands)
9058 (org-table-rotate-recalc-marks, org-table-eval-formula)
9059 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
9060 (org-level-color-stars-only, org-insert-heading):
9061 Fix typos in docstrings.
9062 (last-arg): Add defvar.
9063
9064 * makefile.w32-in (WINS): Add erc.
9065 (MH_E_SRC): Update (copied from lisp/Makefile.in).
9066
9067 2006-01-29 Bill Wohler <wohler@newt.com>
9068
9069 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
9070 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
9071 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
9072 (mh-autoloads): Don't use comments on otherwise empty lines.
9073
9074 2006-01-29 Edward O'Connor <ted@oconnor.cx>
9075
9076 * emulation/viper.el (viper-major-mode-modifier-list): Add
9077 insert-state and vi-state entries for erc-mode.
9078 (viper-go-away, viper-set-hooks): Add and remove
9079 viper-comint-mode-hook from erc-mode-hook as appropriate.
9080
9081 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
9082
9083 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
9084
9085 * bs.el (bs--format-aux): Implement `middle' alignment as
9086 described in the docstring for `bs-attributes-list'.
9087 (bs--get-name): Simplify. Don't pad the buffer name.
9088
9089 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
9090
9091 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
9092 English aspell dictionary is installed, use the first entry of
9093 ispell-dictionary-alist-1.
9094
9095 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
9096
9097 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
9098 Doc fix.
9099
9100 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
9101
9102 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
9103 for `process-file', in order to let it work for older Emacsen too.
9104
9105 2006-01-27 Eli Zaretskii <eliz@gnu.org>
9106
9107 * international/latexenc.el: Add a suitable `coding:' tag.
9108 (latexenc-find-file-coding-system): Undo last change.
9109
9110 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
9111
9112 * international/latexenc.el (latexenc-find-file-coding-system):
9113 Make sure latexenc-main-file is a regular file and is readable.
9114
9115 2006-01-27 Andre Spiegel <spiegel@gnu.org>
9116
9117 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
9118 Pass FILE to vc-user-login-name.
9119
9120 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
9121
9122 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
9123
9124 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
9125 there are no more images to display.
9126 (thumbs-mark, thumbs-unmark): Revert change so that they move to
9127 the next image.
9128
9129 2006-01-26 Richard M. Stallman <rms@gnu.org>
9130
9131 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
9132
9133 * wid-edit.el (advertised-widget-backward): New alias.
9134 (widget-keymap): Use advertised-widget-backward for S-TAB.
9135
9136 * tumme.el: Correct the keywords.
9137 (tumme-dir-max-size): Use defvar.
9138 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
9139
9140 * simple.el (move-beginning-of-line): Take account of fields.
9141 (clone-indirect-buffer-other-window): Take args like
9142 clone-indirect-buffer, and work like it.
9143
9144 * help-fns.el (describe-function): Don't pass `nil' as default.
9145
9146 * files.el (risky-local-variable-p): Follow var aliases.
9147
9148 * subr.el (lazy-completion-table): Doc fix.
9149
9150 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
9151 global binding of `line'.
9152
9153 2006-01-25 Andre Spiegel <spiegel@gnu.org>
9154
9155 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
9156 Tramp.
9157
9158 * vc.el (vc-default-dired-state-info): Pass FILE to
9159 vc-user-login-name.
9160 (vc-default-update-changelog): Don't use vc-user-login-name, we
9161 don't need it here.
9162
9163 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
9164 no longer necessary.
9165
9166 2006-01-25 Kenichi Handa <handa@m17n.org>
9167
9168 * international/mule.el (decode-char): Avoid the overhead of
9169 calling utf-lookup-subst-table-for-decode if
9170 utf-translate-cjk-mode is nil.
9171 (encode-char): Avoid the overhead of calling
9172 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
9173 nil.
9174
9175 2006-01-22 Kenichi Handa <handa@m17n.org>
9176
9177 * international/mule.el (make-subsidiary-coding-system): Reset
9178 `coding-system-define-form' property of subsidiaries to nil.
9179 Avoid duplicated entry in coding-system-alist.
9180 (make-coding-system): Avoid duplicated entry in
9181 coding-system-alist.
9182 (define-coding-system-alias): Likewise.
9183
9184 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
9185
9186 * completion.el: Minor fixes in introductory comment.
9187 (completion-def-wrapper): Fix alist.
9188
9189 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
9190
9191 * thumbs.el (thumbs-new-image-size): New function.
9192 (thumbs-increment-image-size-element)
9193 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
9194 (thumbs-decrement-image-size): Delete.
9195 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
9196 temp files and use to resize.
9197 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
9198 Use increment argument to enlarge/shrink. Preserve point.
9199 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
9200 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
9201 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
9202 (thumbs-mark, thumbs-unmark): Preserve point.
9203 (thumbs-modify-image): Keep old temp files and use to modify.
9204 Cleanup old temp files at load time. Preserve point.
9205 (thumbs-view-image-mode-map): Use new command names.
9206
9207 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
9208
9209 * log-view.el (log-view-minor-wrap): First rev is the one at point.
9210
9211 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
9212 the nastiest part of the cyclic dependency.
9213 (cal-menu-update): Use dotimes and calendar-increment-month.
9214
9215 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
9216 (calendar-week-start-day): Add an :initializer.
9217 (calendar-mode-map): Use suppress-keymap, and command remapping.
9218 (describe-calendar-mode): Setup xref-stack info for the back button.
9219 (calendar-star-date): Insert before delete.
9220 (calendar-set-mode-line): Add file-modified info if applicable.
9221 (calendar-increment-month): New function.
9222
9223 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
9224
9225 * font-lock.el (lisp-font-lock-keywords-2):
9226 Recognize "& keywords" only at word boundaries.
9227
9228 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
9229
9230 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
9231 and permanent-local.
9232 (thumbs-max-image-number): New variable.
9233 (thumbs-do-thumbs-insertion): Use them.
9234 (thumbs-per-line): Change default to 4.
9235 (thumbs-marked-list): Rename from thumbs-markedL.
9236 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
9237 (thumbs-rename-images): Use -list instead of L for internal variables.
9238 (thumbs-call-convert): Use call-process instead of shell-command.
9239 (thumbs-insert-thumb): Add filename as help-echo to each image.
9240 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
9241 Give dir to thumbs-show-thumbs-list.
9242 (thumbs-show-thumbs-list): Set default-directory to that of images.
9243 (thumbs-dired-show): Rename from thumbs-dired-show-all.
9244 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
9245 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
9246 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
9247
9248 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
9249
9250 * ses.el (ses-read-cell): Provide a default value.
9251
9252 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
9253
9254 * term/w32-win.el (image-library-alist): Add additional names for
9255 GIF library.
9256
9257 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
9258
9259 * international/latexenc.el (latexenc-find-file-coding-system):
9260 Add file-regular-p check.
9261
9262 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
9263
9264 * simple.el (clone-buffer): Don't show the new buffer in the same
9265 window.
9266
9267 2006-01-23 Juri Linkov <juri@jurta.org>
9268
9269 * faces.el (link, link-visited): New faces based on default values
9270 of `info-xref' and `info-xref-visited'.
9271
9272 * info.el (info-xref): Inherit from `link'.
9273 (info-xref-visited): Inherit from `link-visited'.
9274
9275 * cus-edit.el (custom-buffer-create-internal): Use widget type
9276 `custom-manual' instead of `info-link' and don't set properties
9277 `button-face' and `mouse-face' explicitly.
9278 (custom-browse-group-tag, custom-browse-variable-tag)
9279 (custom-browse-face-tag): Inherit from widget class
9280 `custom-group-link' instead of `push-button'.
9281 (custom-button-unraised): Inherit from `underline' face.
9282 (custom-link): Inherit from `link' face. Fix doc and group.
9283 (custom-add-parent-links, custom-group-value-create): Don't set
9284 properties `button-face' and `mouse-face' explicitly for
9285 `custom-group-link' widget.
9286 (custom-group-link): Add properties `button-face' and `mouse-face'
9287 to widget definition.
9288 (custom-field-keymap): New variable. Put `custom-field-keymap' to
9289 editable-field's :keymap property.
9290 (custom-mode): Fix docstring: substitute keybindings for
9291 `widget-forward' and `widget-backward' from `widget-keymap',
9292 `widget-complete' from `custom-field-keymap', replace old
9293 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
9294
9295 * desktop.el (desktop-load-file): Check for `fboundp' before
9296 calling `symbol-function'.
9297
9298 * simple.el (clone-buffer, clone-indirect-buffer)
9299 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
9300 `read-string'. Fix prompts.
9301
9302 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
9303
9304 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
9305
9306 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
9307
9308 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
9309
9310 * startup.el (inhibit-splash-screen, initial-scratch-message):
9311 Doc fixes.
9312
9313 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
9314
9315 Sync with Tramp 2.0.52.
9316
9317 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
9318 net/tramp-vc.el: Add code for unloading Tramp. See comment before
9319 `tramp-unload-tramp' for checklist.
9320
9321 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
9322 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
9323 (tramp-unload-file-name-handler-alist)
9324 (tramp-unload-tramp): New defuns.
9325 (tramp-advice-PC-expand-many-files): New defadvice.
9326 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
9327 removed.
9328 (tramp-handle-expand-file-name): Remove double slash.
9329 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
9330 It doesn't matter, because it will be converted later on.
9331 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
9332 implementation was just heuristic.
9333 (tramp-post-connection): Set uid and gid properties.
9334 (tramp-convert-file-attributes): Set file's gid change bit.
9335 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
9336 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
9337 in case of su(do)? methods. The home directory of the local user
9338 will be taken else.
9339 (tramp-open-connection-telnet)
9340 (tramp-open-connection-rsh, tramp-open-connection-su)
9341 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
9342 local shell prompt could hurt. Reported by Romain Francoise
9343 <romain@orebokech.com>.
9344 (tramp-let-maybe): Add `edebug-form-spec' property.
9345 (tramp-handle-expand-file-name): Bind `default-directory' locally
9346 to "/" in order to avoid problems with UNC shares or Cygwin
9347 mounts.
9348 (tramp-md5-function): Fix typo in error message.
9349
9350 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
9351
9352 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
9353 for byte-compiler pacification.
9354
9355 2006-01-22 Andre Spiegel <spiegel@gnu.org>
9356
9357 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
9358 ID-FORMAT `string'. This allows us to get rid of
9359 `vc-user-login-name UID'.
9360
9361 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
9362
9363 2006-01-22 John Paul Wallington <jpw@pobox.com>
9364
9365 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
9366
9367 2006-01-21 Martin Rudalics <rudalics@gmx.at>
9368
9369 * emacs-lisp/find-func.el (find-definition-noselect)
9370 (find-variable-noselect): Search variables in C source code too.
9371 (find-function-C-source, find-function-noselect, find-function)
9372 (find-function-other-frame, find-variable-noselect, find-variable)
9373 (find-variable-other-frame, find-variable-at-point):
9374 Fix docstrings.
9375
9376 2006-01-21 Francesco Potorti` <pot@gnu.org>
9377
9378 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
9379
9380 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
9381
9382 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
9383 Default to disabling the "Save affix" question.
9384
9385 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
9386
9387 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
9388 the first arg to run-python.
9389
9390 2006-01-21 Eli Zaretskii <eliz@gnu.org>
9391
9392 * startup.el (command-line-1): Handle --no-desktop if desktop.el
9393 is not loaded.
9394
9395 2006-01-20 Jay Belanger <belanger@truman.edu>
9396
9397 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
9398 limit is 0.
9399
9400 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
9401 the correct variable.
9402
9403 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
9404
9405 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
9406 link. Fixed buggy argument sequence in call to `org-view-tags'.
9407 (org-compile-prefix-format): Set `org-prefix-has-tag'.
9408 (org-prefix-has-tag): New variable.
9409 (org-format-agenda-item): Remove tags from headline if
9410 appropriate.
9411 (org-agenda-remove-tags-when-in-prefix): New option.
9412 (org-get-tags-at): New function.
9413
9414 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
9415
9416 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
9417 (thumbs-find-image): Move image name and number from buffer name
9418 to mode name. Set thumbs-buffer. Preserve point so that large
9419 images remain visible.
9420 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
9421 order.
9422 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
9423 mode name.
9424 (thumbs-next-image, thumbs-previous-image): Make them work.
9425
9426 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
9427
9428 * cus-edit.el (custom-buffer-create-internal): State in the text above
9429 the whole buffer buttons that they do not operate on hidden items.
9430 (custom-face-menu): Use `custom-face-save' instead of
9431 `custom-face-save-command'.
9432 (custom-face-save-command): Make it an alias for `custom-face-save'
9433 and declare it obsolete.
9434 (custom-face-save): Doc fix.
9435
9436 * dired.el (dired-no-confirm): Add quote.
9437 (dired-subdir-alist-pre-R): Add quote in
9438 `make-variable-buffer-local' form and remove unbalanced parenthesis.
9439
9440 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
9441
9442 * textmodes/table.el (table-mode-indicator): Typo in last change.
9443
9444 2006-01-19 Richard M. Stallman <rms@gnu.org>
9445
9446 * outline.el (hide-leaves): Don't call outline-end-of-heading.
9447 Fixes bug reported in Nov 2005.
9448
9449 * isearch.el (isearch-forward): Doc fix.
9450
9451 * dired.el (dired-move-to-filename-regexp): Define as alias.
9452 (dired-no-confirm): Use defcustom.
9453 (dired-subdir-alist-pre-R): Put defvar at top level.
9454
9455 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
9456
9457 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
9458 Mark as risky.
9459
9460 * simple.el (set-mark-command): Doc fix.
9461 (clone-indirect-buffer-other-window):
9462 Read arg like clone-indirect-buffer.
9463 (move-beginning-of-line): Skip invisible newlines.
9464
9465 2006-01-19 Masatake YAMATO <jet@gyve.org>
9466
9467 * progmodes/cpp.el (cpp-edit-load): Make the order of
9468 listed conditions in a base C code buffer and its associate
9469 CPP Edit buffer the same.
9470
9471 2006-01-19 Kenichi Handa <handa@m17n.org>
9472
9473 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
9474 (rmail-mime-feature): Likewise.
9475 (rmail-require-mime-maybe): Use display-warning to show a warning
9476 message.
9477
9478 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
9479 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
9480
9481 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
9482
9483 * array.el: Move defvars out of eval-when-compile.
9484 (array-make-template): Replace undeclared global var with a local one.
9485 (array-mode): Inline initialization functions.
9486 (array-init-local-variables, array-init-max-row)
9487 (array-init-max-column, array-init-columns-per-line)
9488 (array-init-field-width, array-init-rows-numbered)
9489 (array-init-line-length, array-init-lines-per-row): Remove.
9490
9491 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
9492 (doc-mode-map): Define explicitly.
9493 (doctor-txtype): Use mapc.
9494
9495 * textmodes/table.el: Move defvars out of eval-when-compile.
9496 Remove harmful code meant to avoid byte-compiler warnings.
9497 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
9498 specification that checks table-fixed-width-mode directly.
9499 (table-recognize-region, table-recognize-cell):
9500 Use restore-buffer-modified-p.
9501 (table-fixed-width-mode): Remove code that refreshes
9502 table-fixed-mode-indicator.
9503 (*table--cell-describe-bindings, *table--cell-describe-mode):
9504 Avoid obsolete name print-help-return-message.
9505 (table--test-cell-list): Don't use replace-regexp from elisp.
9506 (table--point-entered-cell-function, table--point-left-cell-function):
9507 Don't set table-fixed-mode-indicator, use force-mode-line-update.
9508
9509 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
9510 that was after the end of file. Use buffer-file-name variable.
9511 (org-timestamp-change): Use with-current-buffer.
9512 (org-todo-list): Don't unnecessarily define a new buffer-local var.
9513 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
9514 `file'.
9515
9516 * progmodes/fortran.el: Move defvars out of eval-when-compile.
9517 (fortran-break-line): Remove unused var `opoint'.
9518 (fortran-abbrev-start): Obey help-event-list.
9519
9520 2006-01-18 Jesper Harder <harder@phys.au.dk>
9521
9522 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
9523
9524 2006-01-18 Masatake YAMATO <jet@gyve.org>
9525
9526 * progmodes/make-mode.el (makefile-imake-mode): New mode
9527 derived from makefile-mode.
9528 (makefile-imake-mode-syntax-table): New syntax table
9529 derived from makefile-mode-syntax-table.
9530 (makefile-mode): Write about makefile-imake-mode in doc string.
9531 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
9532 (makefile-imake-font-lock-keywords): New font lock keywords.
9533
9534 * files.el (auto-mode-alist): Add Imakefile.
9535
9536 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
9537
9538 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
9539 loading the file rather than when turning on flyspell-mode.
9540
9541 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
9542
9543 * cus-edit.el (customize-rogue): Minor doc fix.
9544
9545 2006-01-17 Juri Linkov <juri@jurta.org>
9546
9547 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
9548 instead of the file at the mark as default if the file at the mark
9549 is the same as the file at point or if dired-dwim-target-directory
9550 is not the same as the current directory and the mark is not active.
9551
9552 * log-view.el (log-view-minor-wrap): Use the same logic to get
9553 revisions as `log-view-diff'.
9554
9555 * info.el (Info-revert-find-node): Check for Info-current-file
9556 before preserving new-history.
9557
9558 * man.el (Man-heading-regexp): Add `/'.
9559
9560 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
9561 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
9562
9563 2006-01-16 Juri Linkov <juri@jurta.org>
9564
9565 * faces.el (mode-line-faces): New defgroup.
9566 (mode-line-highlight): Move definition after new defgroup.
9567 (mode-line, mode-line-inactive, mode-line-highlight):
9568 Replace :group `modeline' with `mode-line-faces'.
9569 (mode-line-buffer-id): New face.
9570 (modeline-buffer-id): New face alias.
9571 (vertical-border): Remove :group `modeline'.
9572
9573 * bindings.el (propertized-buffer-identification): Use face
9574 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
9575 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
9576 (mode-line-buffer-identification-keymap): For mouse-1 replace
9577 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
9578 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
9579 mouse-3.
9580
9581 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
9582 Buffer-menu-buffer. Doc fix.
9583 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
9584 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
9585 `Buffer-menu-buffer'.
9586
9587 * info.el (Info-mode-line-node-keymap): New defvar.
9588 (Info-set-mode-line): Use `stringp' to check Info-current-file.
9589 Propertize Info-current-node with `mode-line-buffer-id' and
9590 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
9591
9592 * time.el (display-time-mail-face): Replace :group `faces' with
9593 `mode-line-faces'.
9594
9595 2006-01-16 Kenichi Handa <handa@m17n.org>
9596
9597 * international/code-pages.el: Add autoload cookies for cp125[0345678].
9598
9599 * language/european.el (cp1252): New alias for windows-1252.
9600
9601 * international/mule.el (autoload-coding-system): Prepare for EOL
9602 variants.
9603
9604 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
9605
9606 * term.el (term-raw-map): Add mapping for insert.
9607 (term-send-insert): New.
9608 (term-mode): Make variables local here instead of doing it in
9609 `term-emulate-terminal'.
9610 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
9611 Scroll reverse needs to take into account the scroll region.
9612 Saving and restoring the cursor should save the color attributes too.
9613 (term-reset-terminal): Reset the scroll region.
9614 (term-handle-ansi-escape): Cursor up and down should take into
9615 account the scroll region.
9616 (term-set-scroll-region): Rename from `term-scroll-region'.
9617 Move to 0,0 after setting the region.
9618 (term-handle-scroll): Handle scroll up.
9619 (term-down): Fix off by one error.
9620 (term-delete-lines): Do not delete outside the scroll region.
9621 (term-insert-lines): Take into account the scroll region.
9622
9623 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
9624
9625 * textmodes/ispell.el (ispell-internal-change-dictionary)
9626 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
9627 (start, end): Move declaration outside of eval-when-compile.
9628
9629 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
9630 (flyspell-mode-on): Use it.
9631
9632 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
9633 ispell-kill-ispell-hook.
9634
9635 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
9636
9637 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
9638 (Custom-reset-saved): Do not ask for confirmation in single option
9639 buffers.
9640
9641 2006-01-13 Richard M. Stallman <rms@gnu.org>
9642
9643 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
9644
9645 2006-01-13 Romain Francoise <romain@orebokech.com>
9646
9647 * add-log.el (add-change-log-entry, change-log-merge):
9648 Conditionally use `hard-newline'.
9649
9650 2006-01-13 Martin Rudalics <rudalics@gmx.at>
9651
9652 * wid-edit.el (widget-field-end): If the overlay is no longer
9653 associated with a buffer, behave as if the overlay didn't exist.
9654
9655 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
9656 Make sure the links use the `custom-link' face.
9657
9658 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
9659
9660 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
9661 (ld-script-mode): Don't set indent-line-function since we don't
9662 have one.
9663
9664 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
9665
9666 * textmodes/org.el (org-open-file): Use mailcap for selecting an
9667 application.
9668 (org-file-apps-defaults-gnu): Use mailcap as the default for
9669 selecting an application on a UNIX system.
9670 (org-agenda-show-tags): New command.
9671 (org-table-insert-hline): Keep cursor in current table line.
9672 (org-table-convert): Offset effect of modifying
9673 `org-table-insert-hline'.
9674 (org-format-agenda-item): New optional argument TAG.
9675 (org-compile-prefix-format): Handle %T format for the tag.
9676 (org-expand-wide-chars): New function.
9677 (org-table-insert-row, org-table-insert-hline):
9678 Use `org-expand-wide-chars'.
9679 (org-open-file): Fix bug in program launch.
9680 (org-get-time-of-day): Fix bug with times before 1am.
9681 (org-agenda-menu): Add tags commands.
9682
9683 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
9684
9685 * textmodes/ispell.el (ispell-init-process): Include the used
9686 dictionary in ispell process start message.
9687 (ispell-internal-change-dictionary): When flyspell-mode is active
9688 and dictionary is changed, make sure ispell process is restarted
9689 and flyspell word cache cleared out for the current buffer.
9690 (ispell-change-dictionary): Make sure flyspell word cache is
9691 cleared out in all buffers with active flyspell mode when
9692 dictionary is globally changed.
9693 Call ispell-internal-change-dictionary after dictionary change.
9694
9695 2006-01-13 Eli Zaretskii <eliz@gnu.org>
9696
9697 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
9698
9699 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
9700 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
9701 years. Fix small differences wrt Makefile.in.
9702 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
9703 Makefile.in does.
9704
9705 2006-01-12 Bill Wohler <wohler@newt.com>
9706
9707 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
9708 mh-search.el.
9709
9710 2006-01-12 Masatake YAMATO <jet@gyve.org>
9711
9712 * progmodes/ld-script.el: Update copyright year.
9713
9714 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
9715
9716 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
9717 Don't add widget if setting undefined.
9718
9719 2006-01-12 John Paul Wallington <jpw@pobox.com>
9720
9721 * help-fns.el (describe-variable): Remove newlines from void
9722 variable output.
9723
9724 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
9725
9726 * wdired.el (wdired-mode-map): Add help echo for
9727 wdired-abort-changes.
9728
9729 * man.el (Man-file-name-regexp): Adjust for a list of files.
9730
9731 2006-01-12 Masatake YAMATO <jet@gyve.org>
9732
9733 * progmodes/ld-script.el (auto-mode-alist): Support
9734 suffix conventions used in netbsd and eCos.
9735
9736 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
9737
9738 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
9739 (custom-variable-menu, custom-face-menu, custom-group-menu)
9740 (Custom-mode-menu): Change names of menu items. (As discussed on
9741 emacs-devel.)
9742 (custom-face-menu): Add "Undo Edits" item.
9743
9744 * startup.el (init-file-user): defcustom -> defvar.
9745
9746 * tooltip.el (tooltip-mode): Doc fix.
9747
9748 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
9749
9750 * reveal.el (reveal-post-command): window-buffer signals an error on
9751 dead windows rather than returning nil.
9752 (reveal-open-new-overlays): An overlay might die while we open others.
9753
9754 2006-01-11 Bill Wohler <wohler@newt.com>
9755
9756 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
9757 phrasing in docstring.
9758
9759 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
9760 can give some systems gas. Add new file mh-buffers.el.
9761
9762 2006-01-06 Masatake YAMATO <jet@gyve.org>
9763
9764 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
9765 C preprocessor forward ported from GNU Emacs 21.2.
9766
9767 * progmodes/asm-mode.el (asm-font-lock-keywords):
9768 Use `cpp-font-lock-keywords'.
9769
9770 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
9771
9772 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
9773 of $ for "\\.ld[s]?".
9774
9775 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
9776
9777 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
9778 (tcl-indent-line): Return `noindent' if inside a string.
9779
9780 * progmodes/flymake.el (flymake-split-string): Remove more than one
9781 empty string at beg/end of the result.
9782 (flymake-find-buildfile, flymake-find-possible-master-files):
9783 Use expand-file-name.
9784 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
9785 since expand-file-name does it for us. Use directory-file-name.
9786 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
9787 (flymake-ler-get-type, flymake-ler-get-text)
9788 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
9789 (flymake-current-line-no): Remove spurious interactive spec.
9790 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
9791 (flymake-check-include): Remove arg inc-path merged into inc-name.
9792 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
9793 Arg regexp-list replaced by a simple regexp.
9794 (flymake-master-make-header-init, flymake-master-tex-init):
9795 Correspondingly replace regexp-list with a regexp. Fix regexp.
9796
9797 2006-01-10 Simon Josefsson <jas@extundo.com>
9798
9799 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
9800 describing AUTH PLAIN fix.
9801
9802 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
9803
9804 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
9805 (report-emacs-bug): Don't record initial prompt text.
9806 Instead, add text properties to prompting text.
9807 (report-emacs-bug-hook): Delete prompting text.
9808
9809 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
9810
9811 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
9812 `dirs'. Adjust callers.
9813
9814 2006-01-09 John Paul Wallington <jpw@gnu.org>
9815
9816 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
9817
9818 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
9819
9820 * reveal.el (reveal-open-new-overlays): New extracted fun.
9821 (reveal-close-old-overlays): Idem. Check overlays's liveness before
9822 using them. Simplify the code.
9823 (reveal-post-command): Use them. Fix up obsolete windows in
9824 reveal-open-spots.
9825
9826 * progmodes/flymake.el: Use `require' rather than autoload for
9827 XEmacs's overlays.
9828 (flymake-get-common-file-prefix, flymake-build-relative-filename):
9829 Delete. Use file-relative-name instead.
9830 (flymake-get-syntax-check-program-args, flymake-perl-init):
9831 Simplify the resulting code.
9832
9833 * log-view.el (log-view-file-re, log-view-message-re): Add support
9834 for DaRCS output.
9835
9836 2006-01-09 Alex Schroeder <alex@gnu.org>
9837
9838 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
9839 identifiers sometimes added in square brackets at the beginning of
9840 subject lines.
9841
9842 2006-01-07 Richard M. Stallman <rms@gnu.org>
9843
9844 * cus-edit.el (Custom-set, Custom-save): Doc fix.
9845 (Custom-reset-current, Custom-reset-saved): Change question text.
9846 (Custom-reset-standard): Likewise.
9847 (custom-variable-reset-saved): Doc fix.
9848
9849 2006-01-07 Eli Zaretskii <eliz@gnu.org>
9850
9851 * startup.el (init-file-user): Doc fix.
9852
9853 2006-01-07 Alex Schroeder <alex@gnu.org>
9854
9855 * mail/rmail.el (rmail-current-subject): New function.
9856 (rmail-current-subject-regexp): New function.
9857 (rmail-next-same-subject): Use it.
9858
9859 * mail/rmailsum.el (rmail-summary-by-topic):
9860 Use rmail-current-subject and rmail-current-subject-regexp.
9861 (rmail-summary-next-same-subject): Ditto.
9862
9863 * net/rcirc.el (rcirc-send-input): No longer check whether the
9864 process is open, since not all commands need an open process.
9865 (rcirc-send-string): Check whether the process is open before
9866 sending anything.
9867 (rcirc-ignore-list): New option.
9868 (rcirc-ignore-list-automatic): New variable.
9869 (rcirc-print): Take rcirc-ignore-list into account.
9870 (rcirc-cmd-ignore): New command.
9871 (rcirc-ignore-update-automatic): New function.
9872 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
9873 list if ignored nicks.
9874 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
9875
9876 2006-01-06 David Reitter <david.reitter@gmail.com>
9877
9878 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
9879 reflect the address to which the report will be sent.
9880
9881 2006-01-06 Eli Zaretskii <eliz@gnu.org>
9882
9883 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
9884 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
9885
9886 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
9887
9888 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
9889
9890 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
9891 the doc string: "functoin" => "function".
9892 * ldefs-boot.el: Likewise.
9893
9894 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
9895 message text: "Duplicat" => "Duplicate".
9896
9897 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
9898
9899 * files.el (basic-save-buffer-2): If backing-up failed, reset
9900 buffer-backed-up to nil.
9901
9902 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
9903
9904 * progmodes/gud.el (gdb-script-skip-to-head)
9905 (gdb-script-calculate-indentation): Indent for breakpoint command
9906 lists also.
9907
9908 2006-01-05 Bill Wohler <wohler@newt.com>
9909
9910 * Makefile.in (compile-always): Add mh-autoloads dependency.
9911 (bootstrap): Remove mh-autoloads dependency, as compile dependency
9912 provides it.
9913 (updates): Remove mh-autoloads dependency, since it probably has
9914 already run recently (via recompile).
9915
9916 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
9917
9918 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
9919 argument `force' to disable the flyspell-last-buffer optimization.
9920 (flyspell-mode-on): Use it.
9921
9922 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
9923 flymake-simple-cleanup.
9924 (flymake-allowed-file-name-masks): Use this new default.
9925 All the functions are now called in the right buffer rather than
9926 passing the buffer as argument.
9927 (flymake-process-sentinel): Switch to buffer before calling cleanup.
9928 (flymake-parse-err-lines): Remove redundant buffer arg.
9929 (flymake-get-program-dir): Comment out unused function.
9930 (flymake-start-syntax-check, flymake-start-syntax-check-process):
9931 Remove redundant buffer argument.
9932 (flymake-get-real-file-name, flymake-simple-java-cleanup)
9933 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
9934
9935 2006-01-05 Richard M. Stallman <rms@gnu.org>
9936
9937 * info.el (Info-find-node): Don't record previous node if have none.
9938 (info): Go to directory only if history is empty.
9939
9940 * simple.el (mark): Doc fix.
9941
9942 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9943
9944 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
9945 already of desired type.
9946 (mac-ae-list): Coerce parameter to "list" type.
9947 (mac-dispatch-apple-event): Replace cadr part of event with a
9948 dummy position so that event-start returns it.
9949
9950 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
9951
9952 * textmodes/org.el (org-end-of-subtree): New function.
9953 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
9954 Use `org-end-of-subtree'.
9955 (org-agenda, org-agenda-convert-date): Protect calls to
9956 `fit-window-to-buffer'.
9957 (org-tags-view): Force matching of sublevels when doing a
9958 todo-only search. Define the correct redo command, including the
9959 arguments.
9960 (org-agenda-redo): Display message.
9961 (org-check-for-org-mode): New function.
9962 (org-agenda-type): New variable.
9963 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
9964 Set `org-agenda-type'.
9965 (org-agenda-check-type): New function.
9966 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
9967 (org-agenda-week-view, org-agenda-day-view)
9968 (org-agenda-next-date-line, org-agenda-previous-date-line)
9969 (org-agenda-log-mode, org-agenda-toggle-diary)
9970 (org-agenda-toggle-time-grid, org-agenda-date-later)
9971 (org-agenda-date-prompt, org-agenda-diary-entry)
9972 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
9973 (org-agenda-convert-date, org-agenda-menu):
9974 Use `org-agenda-check-type'.
9975 (org-make-overlay, org-delete-overlay)
9976 (org-detatch-overlay, org-move-overlay, org-overlay-put):
9977 New compatibility functions.
9978 (org-calendar-select-mouse): New command.
9979
9980 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
9981
9982 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
9983 (Custom-reset-standard): Fix y-or-n-p messages.
9984 (custom-link): New face for links.
9985 (custom-buffer-create-internal, custom-manual): Use it.
9986 (custom-face-save): Push to theme-face before setting face spec.
9987
9988 * wid-edit.el (widget-default-mouse-face-get): New function.
9989 (widget-specify-button): Handle mouse-face like button-face.
9990
9991 * custom.el (load-theme): Clear old theme settings if reloading.
9992
9993 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
9994
9995 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
9996 "Erase Customization" button back to same position it occupies in
9997 the individual State menus.
9998
9999 2006-01-04 Kim F. Storm <storm@cua.dk>
10000
10001 * wid-edit.el (key-sequence): Rework widget to read key binding
10002 using `kbd' syntax. Use C-q to insert literal key, event, or code.
10003 (widget-key-sequence-default-value): Default value for empty sequence.
10004 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
10005 (widget-key-sequence-read-event): New command for C-q.
10006 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
10007 (widget-key-sequence-value-to-external): New functions.
10008
10009 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
10010
10011 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
10012 Use expand-file-name.
10013 (flymake-delete-temp-directory): Use expand-file-name,
10014 file-name-directory, and directory-file-name.
10015 (flymake-strrchr): Delete.
10016 (flymake-start-syntax-check): Don't pass the redundant buffer argument
10017 to the init-f function.
10018 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
10019 (flymake-init-find-buildfile-dir)
10020 (flymake-init-create-temp-source-and-master-buffer-copy)
10021 (flymake-simple-make-init-impl, flymake-simple-make-init)
10022 (flymake-master-make-init, flymake-master-make-header-init)
10023 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
10024 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
10025 (flymake-xml-init): Remove corresponding redundant buffer argument.
10026 (flymake-allowed-file-name-masks): Remove last elems that are equal to
10027 the default anyway. Clean up regexps.
10028
10029 * progmodes/flymake.el (flymake-temp-source-file-name)
10030 (flymake-master-file-name, flymake-temp-master-file-name)
10031 (flymake-base-dir): New buffer-local vars.
10032 (flymake-buffer-data, flymake-get-buffer-value)
10033 (flymake-set-buffer-value): Replace those hash-tables by the new
10034 buffer-local vars. Update callers.
10035
10036 * progmodes/flymake.el (flymake-check-start-time)
10037 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
10038 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
10039 Move definition, so we can remove redundant earlier declaration.
10040 (flymake-replace-regexp-in-string, flymake-split-string)
10041 (flymake-get-temp-dir): Use defalias.
10042 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
10043 (flymake-xemacs-window-edges): Remove unused function.
10044 (flymake-get-point-pixel-pos): Move.
10045 (flymake-pid-to-names, flymake-reg-names)
10046 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
10047 Replace by a simple list flymake-processes and by process-buffer.
10048 Update callers. Other than simplify the code, it uses buffers rather
10049 than buffer-names so it doesn't get confused by uniquify.
10050 (flymake-buffer-data): The global value should just be nil.
10051
10052 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
10053 Optimize the body of a defalias like any other code.
10054
10055 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
10056 Make sure we've setup font-lock's vars. It may influence which
10057 function we then call.
10058 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
10059 here since it's too late anyway.
10060
10061 2006-01-03 Romain Francoise <romain@orebokech.com>
10062
10063 * startup.el (fancy-splash-tail, normal-splash-screen):
10064 Update copyright year.
10065
10066 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
10067
10068 * mouse.el (mouse-drag-track): Rename, from
10069 `mouse-drag-region-1'. Includes optional argument required to
10070 enable post-drag event processing (e.g. delete region keys).
10071 Can be used without this argument to track a mouse region and operate
10072 on it as soon as the drag completes.
10073 (mouse-drag-region): Use `mouse-drag-track'.
10074
10075 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
10076
10077 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
10078 Move to `custom-buffer' group.
10079
10080 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
10081 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
10082 (custom-theme-insert-face-marker, custom-theme-variable-menu)
10083 (custom-theme-face-menu): New variables.
10084 (custom-theme-add-variable, custom-theme-variable-action)
10085 (custom-variable-reset-theme, custom-theme-delete-variable)
10086 (custom-face-reset-theme, custom-theme-face-action)
10087 (custom-theme-delete-face, custom-theme-merge-theme)
10088 (custom-theme-add-face, custom-theme-visit-theme): New functions.
10089
10090 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
10091
10092 * custom.el: Move Custom Themes commentary to start of theme code.
10093 (custom-known-themes): Rename `standard' theme to `changed'.
10094 (custom-push-theme): Caller no longer specifies what theme to use
10095 when doing `reset'---the setting is simply removed from the theme.
10096 Delete MODE from `theme-value' and `theme-settings' properties.
10097 (custom-declare-theme): Ignore &rest args since we don't use them.
10098
10099 (custom-loaded-themes): Delete variable.
10100 (custom-theme-load-themes, custom-theme-loaded-p)
10101 (custom-theme-value): Delete functions.
10102
10103 (custom-declare-theme): Signal error on invalid theme names.
10104 (provide-theme): custom-loaded-themes was deleted.
10105 (load-theme): Load the file unconditionally.
10106 (enable-theme): Call `load-theme' if theme is undefined.
10107 (custom-enabled-themes): Only update value for successful loads.
10108 (disable-theme): Complete from enabled themes when interactive.
10109 (custom-variable-theme-value): Calculate theme value directly.
10110
10111 (custom-theme-reset-variables, custom-reset-variables): Mark as
10112 XEmacs compatibility functions. We don't actually use these.
10113
10114 * cus-edit.el (custom-variable-state-set):
10115 Use custom-variable-theme-value instead of custom-theme-value.
10116 (custom-face-state-set): Rename `standard' theme to `changed'.
10117 (custom-save-variables, custom-save-faces): Delete unneeded
10118 references to custom-reset-variables.
10119 (custom-save-resets): Delete function.
10120 (custom-save-variables, custom-save-faces): MODE argument deleted.
10121 (custom-save-variables, custom-save-faces): Ignore theme values.
10122
10123 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
10124 compatibility function.
10125
10126 2006-01-01 Richard M. Stallman <rms@gnu.org>
10127
10128 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
10129 (Custom-reset-current, Custom-reset-saved): Likewise.
10130 (Custom-reset-standard): Show message if aborted.
10131 (custom-mode): Doc fix, describing those commands.
10132
10133 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
10134 put on event-kind property.
10135
10136 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
10137
10138 * custom.el (provide-theme): Ban `user' theme name.
10139 (custom-enabling-themes): New variable.
10140 (enable-theme): Don't enable user if custom-enabling-themes is t.
10141 (custom-enabled-themes): Make it a defcustom.
10142 (custom-theme-recalc-face): No-op if face is undefined.
10143
10144 * cus-edit.el (custom-button-mouse): New variable.
10145 (custom-button-mouse): New face.
10146 (custom-raised-buttons, custom-mode): Use it.
10147
10148 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
10149
10150 2005-12-31 Eli Zaretskii <eliz@gnu.org>
10151
10152 * progmodes/gud.el (gud-display-line): Support hl-line in the
10153 source buffer.
10154
10155 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
10156
10157 * mouse.el (mouse-drag-window-above): Verify that the found window
10158 overlaps with the given window in the horizontal dimension.
10159
10160 2005-12-31 Eli Zaretskii <eliz@gnu.org>
10161
10162 * Makefile.in (cvs-update): New target.
10163
10164 * makefile.w32-in (cvs-update): Ditto.
10165
10166 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
10167
10168 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
10169 (custom-new-theme-mode-map): New variable.
10170
10171 2005-12-30 Richard M. Stallman <rms@gnu.org>
10172
10173 * custom.el (custom-load-themes): Function deleted.
10174
10175 * cus-edit.el (custom-save-loaded-themes): Function deleted.
10176 (custom-save-variables): Don't delete or add custom-load-themes call.
10177
10178 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
10179
10180 * cus-start.el: Add `visible-cursor'.
10181
10182 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
10183 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
10184 (flymake-process-filter): Switch to buffer before calling it instead.
10185 (flymake-post-syntax-check, flymake-highlight-err-lines)
10186 (flymake-delete-own-overlays, flymake-parse-err-lines)
10187 (flymake-start-syntax-check, flymake-start-syntax-check-process)
10188 (flymake-count-lines, flymake-parse-residual):
10189 Remove constant buffer argument.
10190 (flymake-start-syntax-check-for-current-buffer): Remove.
10191 Update callers to use flymake-start-syntax-check instead.
10192 (flymake-display-err-menu-for-current-line):
10193 Remove unused var `mouse-pos'.
10194 (flymake-restore-formatting): Comment out unused function.
10195 (flymake-report-status, flymake-report-fatal-status): Remove buffer
10196 argument, use current-buffer instead. Update callers.
10197
10198 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10199
10200 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
10201 buffer-local because choose-completion-delete-max-match requires
10202 that we set completion-ignore-case (i.e., binding via let is not
10203 sufficient).
10204 (bibtex-complete): Always set completion-ignore-case and
10205 choose-completion-string-functions. The latter is needed because
10206 choose-completion-string-functions keeps its value if we quit the
10207 *Completions* buffer without requesting a completion.
10208
10209 2005-12-30 Andreas Schwab <schwab@suse.de>
10210
10211 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
10212
10213 2005-12-30 Eli Zaretskii <eliz@gnu.org>
10214
10215 * jit-lock.el (jit-lock-chunk-size): Doc fix.
10216
10217 2005-12-30 Juri Linkov <juri@jurta.org>
10218
10219 * locate.el (locate-fcodes-file, locate-header-face)
10220 * progmodes/delphi.el (delphi-other-face)
10221 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
10222
10223 * paren.el (show-paren-match, show-paren-mismatch): Use existing
10224 group `paren-showing-faces'.
10225
10226 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
10227 (goto-address): Fix docstring.
10228
10229 * net/webjump.el (webjump-sample-sites): Update URLs.
10230
10231 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
10232
10233 * subr.el (cancel-change-group): Add listp around pending-undo-list.
10234
10235 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
10236
10237 * font-lock.el (font-lock-compile-keywords): Signal an error when
10238 font-lock-set-defaults hasn't been called.
10239
10240 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
10241
10242 * subr.el (noreturn, 1value): Doc fixes.
10243
10244 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10245
10246 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
10247 that assoc-string returns nil.
10248
10249 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10250
10251 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
10252 (bibtex-entry-type-str, bibtex-empty-field-re)
10253 (bibtex-search-backward-string, bibtex-preamble-prefix)
10254 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
10255 (bibtex-any-valid-entry-type): New variable.
10256 (bibtex-parse-field-name): Simplify.
10257 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
10258 (bibtex-preamble-prefix): Include left delimiter.
10259 (bibtex-search-forward-field, bibtex-search-backward-field):
10260 Allow unbounded search past entry boundaries (required by bibtex-pop).
10261 (bibtex-text-in-field-bounds): Use push.
10262 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
10263 (bibtex-parse-preamble, bibtex-valid-entry)
10264 (bibtex-beginning-first-field): New functions.
10265 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
10266 (bibtex-map-entries): Fix docstring.
10267 (bibtex-flash-head): New arg prompt. Simplify.
10268 (bibtex-enclosing-field): Include code of bibtex-inside-field.
10269 (bibtex-insert-kill): Simplify. Always insert text past the
10270 current field or entry.
10271 (bibtex-format-entry): Use bibtex-parse-field.
10272 (bibtex-pop): Use bibtex-beginning-of-entry and
10273 bibtex-end-of-entry to initiate the search. Insert empty field if
10274 we found ourselves.
10275 (bibtex-print-help-message): New args field and comma.
10276 Handle entry keys.
10277 (bibtex-make-field): Use bibtex-beginning-of-entry.
10278 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
10279 invalid entry.
10280 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
10281 Handle preambles. Simplify code for thorough test.
10282 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
10283 New arg comma. Handle entry heads.
10284 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
10285 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
10286 New arg comma.
10287 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
10288 (bibtex-fill-field): Simplify.
10289 (bibtex-fill-entry): Use bibtex-beginning-first-field and
10290 bibtex-parse-field.
10291 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
10292 (bibtex-complete): Use bibtex-parse-preamble.
10293
10294 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
10295
10296 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
10297 Display name of expression instead of convenience variable.
10298 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
10299
10300 * progmodes/gud.el (gud-tooltip-dereference): Rename from
10301 toggle-gud-tooltip-dereference.
10302 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
10303 (gud-tooltip-tips): ...here when dereferencing.
10304
10305 2005-12-28 Bill Wohler <wohler@newt.com>
10306
10307 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
10308
10309 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
10310
10311 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
10312 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
10313 (vc-annotate-display-autoscale): Adjust call.
10314 (vc-annotate-display-default): Adjust call. Make arg compulsory.
10315 Fix interactive spec.
10316 (vc-annotate-time-span): Remove.
10317 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
10318 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
10319 (vc-annotate-display-select): Use new name.
10320
10321 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
10322 (vc-annotate-mode-menu): Remove left-over redundant declaration.
10323 Correct the construction of span entries. Simplify.
10324 (vc-annotate-display-select): Fix the nil case.
10325 (vc-annotate): Remove obsolete (and now broken) code.
10326 (vc-annotate-extract-revision-at-line): Remove obsolete code.
10327 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
10328
10329 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
10330
10331 * subr.el (lazy-completion-table): Correct typo in docstring.
10332
10333 * startup.el (command-line): Use `custom-reevaluate-setting' for
10334 `send-mail-function'.
10335
10336 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
10337
10338 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
10339
10340 * mail/smtpmail.el (smtpmail-try-auth-methods):
10341 Send credentials together with "AUTH PLAIN" command.
10342
10343 2005-12-27 Richard M. Stallman <rms@gnu.org>
10344
10345 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
10346 mouse-2, go back to previously selected window, so it's selected
10347 when mouse-2 command runs.
10348
10349 2005-12-27 Juri Linkov <juri@jurta.org>
10350
10351 * descr-text.el (describe-text-sexp): Use square brackets for
10352 button [Show] to distinguish it from the property value `show'.
10353 (describe-property-list): Use `insert-text-button' with
10354 `help-face' type instead of putting face in quotes, because button
10355 is not created automatically for a list of faces.
10356 (describe-text-properties-1): Put button-type value in quotes to
10357 distinguish from plain text "button".
10358 (describe-char): Display code point values in hex. Don't use
10359 `symbol-name' for `current-input-method' because it is a string.
10360 Use `insert-text-button' with `help-face' type instead of putting
10361 hardcoded face in quotes, because button is not created automatically.
10362
10363 2005-12-27 Richard M. Stallman <rms@gnu.org>
10364
10365 * progmodes/glasses.el (glasses-face): More specific custom type.
10366
10367 * files.el (set-visited-file-name): Doc fix.
10368
10369 * textmodes/flyspell.el (flyspell-external-point-words):
10370 Use local var buffer-scan-pos to advance scan for next misspelling.
10371 Advance it only after we find the misspelling.
10372
10373 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
10374
10375 * textmodes/flyspell.el (flyspell-external-point-words):
10376 New criteria for finding the misspelling in the buffer.
10377
10378 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
10379
10380 * help-mode.el (help-insert-string): Set help-xref-stack-item
10381 rather than call help-setup-xref.
10382
10383 * descr-text.el (describe-char): Revert previous changes for
10384 optional buffer argument.
10385
10386 2005-12-27 Juri Linkov <juri@jurta.org>
10387
10388 * help-mode.el (help-insert-string): New function. Save buffer
10389 contents in cases where it is impossible to recompute the old contents.
10390
10391 * descr-text.el (describe-char): Set help-xref-stack-item
10392 explicitly after buffer has been generated.
10393
10394 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10395
10396 * cus-start.el (all): Add x-gtk-show-hidden-files.
10397
10398 2005-12-26 Richard M. Stallman <rms@gnu.org>
10399
10400 * replace.el (perform-replace): Calculate match-again
10401 before skipping read-only matches.
10402
10403 * paren.el (paren-showing-faces): New group.
10404 (show-paren-match, show-paren-mismatch): Move to that group.
10405
10406 * button.el (button): Put into group `basic-faces'.
10407
10408 * progmodes/make-mode.el: Remove faces from group `faces'.
10409
10410 * apropos.el (apropos, apropos-value): Doc fix.
10411 (apropos-documentation): Doc fix.
10412
10413 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
10414
10415 * subr.el (lazy-completion-table): Remove argument `args'.
10416
10417 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
10418 Don't use the `args' argument of lazy-completion-table.
10419
10420 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
10421
10422 * descr-text.el (describe-char): Add optional argument for buffer.
10423 Set buffer appropriately. Call help-setup-xref.
10424 Suggested by Stefan Monnier.
10425
10426 2005-12-26 Juri Linkov <juri@jurta.org>
10427
10428 * descr-text.el: Require `help-fns' at runtime. Don't require
10429 `button' for byte compilation.
10430 (describe-text-widget): Add `help-echo' for first button.
10431 Use `help-info' for second.
10432 (describe-property-list): Use `help-argument-name' instead of `italic'.
10433 (describe-text-category): Add prompt to interactive spec.
10434 Call `help-setup-xref'.
10435 (describe-char): Use `help-character-set'. Add `help-echo' for
10436 code point. Use `help-input-method'. Remove superfluous insert.
10437
10438 2005-12-25 Richard M. Stallman <rms@gnu.org>
10439
10440 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
10441 at point, in case of narrowing.
10442
10443 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
10444
10445 * locate.el (locate-header-face): Allow nil in type.
10446
10447 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
10448
10449 2005-12-25 Romain Francoise <romain@orebokech.com>
10450
10451 * battery.el (battery-linux-proc-acpi): Also try
10452 `/proc/acpi/thermal_zone/THM0/temperature'.
10453
10454 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
10455
10456 * custom.el (custom-push-theme): Fix docstring.
10457
10458 * cus-edit.el (custom-variable-set, custom-variable-save)
10459 (custom-variable-save): Custom-quote widget values.
10460 (customize-save-variable): Fix custom-push-theme call.
10461
10462 2005-12-24 Eli Zaretskii <eliz@gnu.org>
10463
10464 * w32-fns.el (w32-batch-update-autoloads): New function.
10465
10466 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
10467 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
10468 from the command line.
10469
10470 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
10471
10472 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
10473 reset means to remove setting from theme entirely. Don't keep
10474 expanding theme-settings list; delete old entries if necessary.
10475
10476 * cus-edit.el (custom-buffer-create-internal): Move "Erase
10477 customization" button one line up.
10478 (custom-themed): New face.
10479 (custom-magic-alist): New value, THEMED, for theme settings.
10480 (custom-variable-state-set, custom-face-state-set):
10481 Check theme-value instead of saved-value.
10482 (custom-variable-reset-standard, custom-face-reset-standard):
10483 Remove theme setting entirely. Recalculate new values.
10484 (custom-variable-set, custom-variable-set)
10485 (custom-variable-reset-saved, custom-variable-reset-backup)
10486 (custom-face-set, custom-face-reset-saved): Update `user' theme.
10487 (custom-variable-save): Fix typos.
10488
10489 2005-12-23 Juri Linkov <juri@jurta.org>
10490
10491 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
10492 Add autoload cookies.
10493 (edebug-outside-d-c-i-n-s-w): New variable.
10494 (edebug-display, edebug-outside-excursion): Use it to save the
10495 original value of default-cursor-in-non-selected-windows.
10496 Set default-cursor-in-non-selected-windows to t while Edebug
10497 is active.
10498 (edebug-mode, edebug-eval-mode): Doc fix.
10499
10500 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
10501 with `buffer-substring-no-properties' to remove common substring
10502 highlighting.
10503
10504 * info.el (info-other-window, info): Rename function argument
10505 `file' to `file-or-node'.
10506 (Info-complete-menu-item): Use local variable `complete-nodes' to
10507 keep the global value of `Info-complete-nodes' unchanged for
10508 subsequent completions.
10509 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
10510
10511 * simple.el (get-next-valid-buffer, last-buffer)
10512 (next-error-buffer-p, next-error-find-buffer)
10513 (minibuffer-history-sexp-flag): Doc fix.
10514
10515 * savehist.el (savehist-mode-hook): Add `:group'.
10516
10517 * log-view.el: Call autoload for vc-find-version.
10518 (log-view-current-file): Adjust subgroup numbers.
10519 (log-view-current-tag): Add `length'.
10520
10521 2005-12-23 Richard M. Stallman <rms@gnu.org>
10522
10523 * vc.el (vc-annotate-car-last-cons): Defn moved up.
10524
10525 2005-12-23 Juri Linkov <juri@jurta.org>
10526
10527 * hi-lock.el (hi-lock-archaic-interface-message-used)
10528 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
10529 (hi-lock-mode): Display "Hi" in the mode line only when
10530 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
10531 (hi-lock-write-interactive-patterns):
10532 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
10533 (hi-lock-set-pattern, hi-lock-set-file-patterns)
10534 (hi-lock-font-lock-hook): Set 3rd arg `how' of
10535 font-lock-add-keywords to t.
10536
10537 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
10538
10539 * hi-lock.el (hi-lock-highlight-range): New variable.
10540 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
10541 only if font-lock-fontified is non-nil. Remove overlays.
10542 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
10543 font-lock-fontified is non-nil, otherwise use overlays (instead of
10544 text properties).
10545 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
10546 New variables.
10547 (hi-lock-string-serialize) New function.
10548
10549 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10550
10551 * menu-bar.el (menu-find-file-existing): New function.
10552 (menu-bar-file-menu): Use menu-find-file-existing for Open.
10553
10554 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
10555
10556 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
10557
10558 * vc.el: Remove unnecessary leading * in docstrings.
10559 (vc-annotate-mode-map): Move initialization into declaration.
10560 (vc-static-header-alist): Nitpick on the regexp.
10561 (vc-default-init-version): New fun.
10562 (vc-register): Use it.
10563 (vc-insert-headers): Use dolist.
10564 (vc-annotate-get-backend): Remove unused function.
10565 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
10566 (vc-annotate-mode): Remove corresponding call.
10567 (vc-annotate-car-last-cons): Simplify.
10568 (vc-annotate-buffers): Remove var.
10569 (vc-annotate-backend): Make it buffer-local.
10570 (vc-annotate): Move the interaction to the interactive spec.
10571 Add a `buf' argument.
10572 (vc-annotate-warp-version): Use this new `buf' argument to avoid
10573 killing&creating a vc-annotate buffer, which is very disruptive when
10574 the buffers are shown in dedicated frames.
10575
10576 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
10577
10578 * descr-text.el: Add FSF as maintainer.
10579 (describe-text-mode, describe-text-mode-map)
10580 (describe-text-mode-hook, describe-text-done): Delete. Use normal
10581 help-mode.
10582 (describe-text-widget, describe-text-sexp)
10583 (describe-property-list, describe-text-category)
10584 (describe-text-properties, describe-text-properties-1)
10585 (describe-char): Use help buttons instead of widgets.
10586 (describe-char-unicodedata-file): Make URL link in doc string.
10587
10588 2005-12-22 Richard M. Stallman <rms@gnu.org>
10589
10590 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
10591 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
10592 Don't include buttons that write a file when there's no file.
10593 (custom-variable-menu, custom-face-menu, custom-group-menu):
10594 Don't include commands that write a file when there's no file.
10595 (customize-browse): Reword the top-of-buffer help intro.
10596 (custom-buffer-create-internal): Fix previous change.
10597 (customize-changed-options-previous-release): Prev release is 21.1.
10598 (customize-changed-options): Doc fix.
10599 (customize-changed): New alias.
10600 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
10601 Say "standard values".
10602 (Custom-reset-standard): Doc fix.
10603 (custom-face-reset-standard): Doc fix.
10604
10605 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
10606
10607 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
10608 even if font-lock-mode is non-nil since it may be t without having
10609 turned on font-lock-mode-internal.
10610 (font-lock-choose-keywords): Minor optimization.
10611 (font-lock-add-keywords, font-lock-remove-keywords)
10612 (font-lock-set-defaults): Don't call make-local-variable on a variable
10613 that we know to already be local.
10614
10615 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
10616
10617 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
10618 messages if in the minibuffer.
10619
10620 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
10621
10622 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
10623 (tex-mode-flyspell-verify, flyspell-get-word)
10624 (flyspell-external-point-words): Don't use point-min/max uselessly.
10625
10626 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
10627 by Kevin Rodgers. Instead, just hide the completions buffer if we
10628 don't need to show it.
10629
10630 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
10631
10632 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
10633
10634 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
10635
10636 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
10637 delete-windows-on with an inexistent buffer.
10638
10639 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
10640
10641 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
10642 Delete defcustom variable :tag names.
10643
10644 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
10645
10646 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
10647 (log-view-font-lock-keywords): Ajust subgroup numbers.
10648 (log-view-current-tag): Don't hard code the number of subgroups.
10649
10650 2005-12-20 Juri Linkov <juri@jurta.org>
10651
10652 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
10653 (tooltip-x-offset, tooltip-y-offset): Doc fix.
10654
10655 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
10656 (menu-bar-non-minibuffer-window-p): Instead of checking
10657 display-multi-frame-p, use selected-frame when menu-updating-frame
10658 is nil.
10659
10660 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
10661
10662 * align.el (align-rules-list): Use [ \t] instead of \s-
10663 for column separators in text mode.
10664
10665 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
10666
10667 * help-mode.el (help-customize-variable, help-customize-face):
10668 Don't pop help-xref-stack as help-follow no longer pushes
10669 anything on to it.
10670
10671 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
10672
10673 * textmodes/org.el (org-agenda-custom-commands): New option.
10674 (org-agenda): Offer custom commands on splash screen.
10675 (org-make-tags-matcher): Parser for Boolean logic added.
10676 (org-agenda-set-tags): New command.
10677 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
10678 (org-set-tags): Efficiency improvements.
10679 (org-auto-align-tags): New option.
10680 (org-todo, org-demote, org-promote): Realign tags.
10681 (org-tags-completion-function): Use also "&" and "|" as separators.
10682 (org-org-menu): Agenda commands simplified.
10683
10684 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
10685
10686 * cus-edit.el (customize-apropos, customize-apropos-options):
10687 Docstring changes.
10688
10689 * font-lock.el (font-lock): Add tags to the links in the defgroup.
10690
10691 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
10692
10693 * longlines.el (longlines-mode): Wrap while widened.
10694 (longlines-decode-region, longlines-encode-region): Compute max
10695 just once.
10696
10697 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10698
10699 * cus-edit.el (mac): New group.
10700
10701 * cus-start.el (all): Add user options in macterm.c. Add test for
10702 Mac-related built-ins. Fix test for GTK-related built-ins.
10703
10704 * term/mac-win.el (mac-handle-language-change)
10705 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
10706 (mac-services-open-selection, mac-services-mail-selection)
10707 (mac-services-mail-to, mac-services-insert-text)
10708 (mac-dispatch-apple-event): Add docstrings.
10709 (x-get-selection, mac-select-convert-to-string): Select coding
10710 system from `utf-16be' and `utf-16le' using `byteorder'.
10711
10712 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
10713
10714 * subr.el (lazy-completion-table): Don't be fooled if the var holds
10715 a "list" (lambda ...) rather than a real completion list.
10716
10717 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
10718 lexical-let when encountering ((lambda (...) ...) ...).
10719
10720 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
10721
10722 * progmodes/sh-script.el (sh-mode):
10723 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
10724 * textmodes/picture.el (picture-mode): Update docstrings.
10725
10726 2005-12-17 Eli Zaretskii <eliz@gnu.org>
10727
10728 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
10729 commands enclosed in $(ARGQUOTE)s should not be split between two
10730 lines, as that will break with GNU Make >3.80, when sh.exe is used
10731 and arg quoting is with '..'.
10732 (autoloads): Don't break the quoted --eval expression between
10733 several lines.
10734
10735 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
10736
10737 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
10738 Capture error from printing circular structures.
10739
10740 2005-12-17 Martin Rudalics <rudalics@gmx.at>
10741
10742 * wid-edit.el (widget-checkbox-action): Clear undo info.
10743
10744 2005-12-16 Bill Wohler <wohler@newt.com>
10745
10746 * menu-bar.el (kill-this-buffer): Set a good example by using menu
10747 bar, not menubar in comment.
10748
10749 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
10750
10751 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
10752 After-change-functions should not clobber the match data.
10753
10754 2005-12-16 Juri Linkov <juri@jurta.org>
10755
10756 * simple.el (choose-completion): Use `buffer-substring-no-properties'
10757 instead of `buffer-substring'.
10758 (completion-common-substring): Doc fix.
10759 (completion-setup-function): Use minibuffer-completion-contents
10760 instead of minibuffer-contents. Don't set common-string-length
10761 initially. Remove special handling of partial-completion-mode.
10762 Move computation of completion-base-size into one cond.
10763 Call completion-base-size-function in mainbuf. In computation of
10764 completion-base-size for file name completion don't move point to
10765 the end of the minibuffer. Move computation of common-string-length
10766 into one cond. Start putting faces only when common-string-length>=0.
10767 Add condition to put completions-common-part when
10768 common-string-length>0.
10769
10770 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
10771 place point at the first different character in the minibuffer
10772 even if this position is at the beginning of the minibuffer.
10773
10774 * info.el (Info-read-node-name-1): In completion-base-size-function's
10775 lambda return 1 if common-substring or minibuffer-completion-contents
10776 starts with (, and 0 otherwise.
10777
10778 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
10779 Use `crm-current-element' for second arg of `display-completion-list'.
10780
10781 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
10782
10783 * files.el (set-auto-mode): Look for an interpreter specified on
10784 the first line also if search for mode specification succeeded,
10785 but the mode is not known.
10786
10787 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
10788
10789 * textmodes/org.el (org-tags-match-list-sublevels): New option.
10790 (org-open-at-point): Implement tag searches as links.
10791 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
10792 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
10793 (org-tags-sparse-tree, org-tags-view, org-set-tags)
10794 (org-agenda-dispatch): New commands.
10795 (org-use-tag-inheritance, org-tags-column): New options.
10796 (org-tab-follows-link, org-return-follows-link): New options.
10797 (org-tags): New customize group.
10798 (org-start-icalendar-file): Get local time zone.
10799 (org-tags-completion-function): New function.
10800 (org-set-font-lock-defaults): Make sure links will also be
10801 highlighted inside headlines.
10802
10803 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
10804
10805 * term.el (term-emulate-terminal):
10806 Let term-handle-ansi-terminal-messages override what Bash says about
10807 its current directory.
10808
10809 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
10810
10811 * bindings.el (last-buffer): Move to simple.el.
10812 * simple.el (last-buffer): Move here.
10813 (get-next-valid-buffer): New function.
10814 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
10815 (prev-buffer): Ditto. Rename to `previous-buffer'.
10816
10817 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
10818 * bindings.el (global-map): Ditto.
10819
10820 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
10821
10822 * cus-edit.el: Introductory comment change.
10823 (custom-magic-alist): Change message string for the `rogue' state.
10824
10825 2005-12-15 Richard M. Stallman <rms@gnu.org>
10826
10827 * tooltip.el: Delete defcustom variable :tag names.
10828
10829 * complete.el (partial-completion-mode): Doc fix.
10830
10831 * textmodes/flyspell.el (flyspell-external-point-words):
10832 Use save-excursion to ensure we don't move backward in the
10833 search loop, not even one character.
10834 (flyspell-delete-all-overlays): Use remove-overlays directly.
10835
10836 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
10837 (ispell-start-process): Set that variable.
10838 Clear ispell-buffer-local-name.
10839 (ispell-internal-change-dictionary):
10840 Set ispell-current-dictionary after killing process.
10841 (ispell-buffer-local-dict):
10842 Don't set spell-personal-dictionary after killing process.
10843 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
10844 (ispell-tex-skip-alists, ispell-html-skip-alists)
10845 (ispell-skip-region-alist): Mark as risky.
10846
10847 * net/newsticker.el (newsticker--retrieval-timer-list)
10848 (newsticker--display-timer, newsticker-running-p)
10849 (newsticker-ticker-running-p): Definitions moved up.
10850
10851 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
10852
10853 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
10854
10855 2005-12-15 David Ponce <david@dponce.com>
10856
10857 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
10858 (recentf-edit-list, recentf-open-files): Signal an error when
10859 there is no recent file.
10860
10861 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
10862
10863 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
10864 read-only except for texinfo-format-region evaluation.
10865
10866 2005-12-14 Richard M. Stallman <rms@gnu.org>
10867
10868 * vc.el (vc-default-previous-version, vc-default-next-version)
10869 (vc-do-command): Doc fixes.
10870
10871 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10872
10873 * textmodes/bibtex.el (bibtex-expand-strings)
10874 (bibtex-autokey-expand-string, bibtex-name-part)
10875 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
10876 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
10877 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
10878 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
10879 (bibtex-entry-postfix, bibtex-known-entry-type-re)
10880 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
10881 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
10882 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
10883 (bibtex-beginning-of-last-entry): Remove.
10884 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
10885 message if comma is missing but buffer is read-only.
10886 (bibtex-parse-field-text): Handle whitespaces at the end of field
10887 text. Return 3-element list with beginning and end of field text
10888 and end of field.
10889 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
10890 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
10891 (bibtex-search-forward-field, bibtex-search-backward-field):
10892 Search always delimited by limits of entry. Use more efficient
10893 search algorithms.
10894 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
10895 bibtex-end-of-name-in-field.
10896 (bibtex-text-in-field-bounds): Handle BibTeX strings when
10897 extracting the content of a field.
10898 (bibtex-text-in-field): Use search limits.
10899 (bibtex-parse-string-prefix): Handle empty string keys based on
10900 bibtex-string-empty-key.
10901 (bibtex-parse-string): Fix docstring.
10902 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
10903 (bibtex-preamble-prefix, bibtex-strings): New functions.
10904 (bibtex-skip-to-valid-entry): Include preceding whitespace in
10905 BibTeX entries (consistent with other BibTeX functions).
10906 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
10907 (bibtex-search-entry): Fix docstring. Simplify.
10908 (bibtex-flash-head, bibtex-complete-string-cleanup)
10909 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
10910 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
10911 (bibtex-parse-entry): New optional arg content.
10912 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
10913 Use bibtex-text-in-field-bounds.
10914 (bibtex-print-help-message): Handle BibTeX strings and preambles.
10915 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
10916 bibtex-parse-string-postfix.
10917 (bibtex-find-text-internal): New function.
10918 (bibtex-remove-delimiters): Use it.
10919 (bibtex-find-text): Use it. New optional arg help.
10920 (bibtex-complete): Handle BibTeX string and preamble entries.
10921 (bibtex-Preamble): Fix order of closing delimiters.
10922
10923 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
10924
10925 * vc.el (vc-default-revert): New fun.
10926
10927 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
10928
10929 2005-12-14 Romain Francoise <romain@orebokech.com>
10930
10931 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
10932 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
10933 (font-lock-remove-keywords): Likewise.
10934
10935 2005-12-14 Juri Linkov <juri@jurta.org>
10936
10937 * log-view.el (log-view-diff): Doc fix.
10938
10939 * isearch.el (isearch-query-replace): Use (mark) instead of
10940 isearch-opoint if mark is active in transient-mark-mode.
10941
10942 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
10943
10944 * isearch.el (isearch-query-replace): Check for isearch-other-end.
10945
10946 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
10947
10948 * progmodes/cpp.el (cpp-face): New widget.
10949 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
10950
10951 2005-12-14 Juri Linkov <juri@jurta.org>
10952
10953 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
10954 around `erase-buffer' and `insert'.
10955
10956 * descr-text.el (describe-text-properties): Replace buffer name
10957 "*Help-2*" with "*Help*<2>".
10958 (describe-char): Add functions print-help-return-message,
10959 toggle-read-only. Use help-setup-xref with nil to not store
10960 describe-char in help-xref-stack. Use help-make-xrefs to
10961 make [back] button.
10962
10963 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
10964
10965 * wdired.el (wdired-old-point): New internal variable.
10966 (wdired-change-to-wdired-mode): Set it buffer-locally.
10967 (wdired-abort-changes): Restore point after aborting changes.
10968
10969 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
10970
10971 * vc.el (vc-do-command): Add a new value t for okstatus.
10972
10973 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
10974 frame in case of errors.
10975
10976 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10977
10978 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
10979 so it comes after "On the Left" in the menu.
10980
10981 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
10982
10983 * cus-edit.el (customize-apropos, customize-apropos-options)
10984 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
10985
10986 2005-12-12 Bill Wohler <wohler@newt.com>
10987
10988 * vc-svn.el (vc-svn-registered): Fix problem of visiting
10989 non-writable Subversion-controlled files by saving window
10990 configuration before calling vc-do-command. vc-do-command calls
10991 pop-to-buffer on error which is unexpected during registration.
10992
10993 2005-12-12 Jay Belanger <belanger@truman.edu>
10994
10995 * calc/README: Update the summary of changes.
10996
10997 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
10998
10999 * descr-text.el (describe-char): Rework last fix to solve the problem
11000 is the same way it's solved for everything else in that function
11001 (i.e. by extracting the info before setting up the *Help* buffer).
11002
11003 2005-12-12 Kim F. Storm <storm@cua.dk>
11004
11005 * subr.el (version-regexp-alist): Allow space as separator before
11006 non-numeric part, e.g. "1.0 alpha".
11007 (version-to-list): Interpret .X.Y version as 0.X.Y version.
11008
11009 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
11010
11011 * textmodes/org.el (org-agenda, org-timeline, org-todo):
11012 Implement Logging and the keep-modes setting.
11013 (org-get-category): Make sure a string is returned.
11014 (org-log-done): New function.
11015 (org-log-done, org-closed-string): New options.
11016
11017 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11018
11019 * tooltip.el (tooltip-y-offset): Change default to 20.
11020
11021 2005-12-12 Richard M. Stallman <rms@gnu.org>
11022
11023 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
11024
11025 * frame.el (display-hourglass): Doc fix.
11026
11027 * help.el (help-for-help-internal): Simplify entry for `a'.
11028
11029 * info.el (Info-on-current-buffer): Doc fix.
11030 (info-insert-file-contents): Don't test (featurep 'jka-compr).
11031
11032 * startup.el (inhibit-splash-screen): Make this the real name.
11033 (inhibit-startup-message): Make this the alias.
11034 (command-line): Find only simple.el, and use its directory
11035 to fill in other preloaded files' names.
11036 (command-line): Deactivate the mark if deactivate-mark is set.
11037
11038 * international/mule.el (load-with-code-conversion):
11039 Bind deactivate-mark.
11040
11041 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
11042
11043 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
11044
11045 * cus-edit.el (customize-apropos): Avoid listing an option more
11046 than once under different aliases. No longer list user options
11047 that are not defined with defcustom (unless a prefix arg is given).
11048 Doc fix.
11049 (customize-apropos-options): Doc fix.
11050
11051 2005-12-11 Juri Linkov <juri@jurta.org>
11052
11053 * frame.el (set-background-color, set-foreground-color)
11054 (set-cursor-color, set-mouse-color, set-border-color):
11055 Add explicit prompts to read colors by `facemenu-read-color'.
11056 (show-trailing-whitespace, blink-cursor-delay)
11057 (blink-cursor-interval, display-hourglass, hourglass-delay):
11058 Remove tags.
11059 (display-hourglass, hourglass-delay): Doc fix.
11060 (cursor-in-non-selected-windows): Capitalize words in tag.
11061
11062 * faces.el (frame-background-mode): Replace `choice-item' keywords
11063 with `const' to not make [default] button. Change default value tag
11064 from `default' to `automatic'. Doc fix.
11065 (trailing-whitespace) <defface>: Change group `whitespace' to
11066 `whitespace-faces'.
11067
11068 2005-12-11 Richard M. Stallman <rms@gnu.org>
11069
11070 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
11071
11072 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11073
11074 * term/mac-win.el: Create keymap for mac-apple-event-map.
11075
11076 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
11077
11078 * tooltip.el (tooltip-mode): Move to start of file so that it
11079 appears at top of customize buffer.
11080
11081 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
11082 Add the gud groupname.
11083 (gud-tooltip-mode): Add the tooltip groupname.
11084 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
11085 avoid conflict with tooltip-use-echo-area.
11086
11087 2005-12-10 Romain Francoise <romain@orebokech.com>
11088
11089 * help.el (help-for-help-internal): Add `r' in doc string.
11090
11091 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11092
11093 * align.el (align-regexp, align-highlight-rule):
11094 Use region-beginning and region-end instead of point and mark, so that
11095 repetition (with `repeat-complex-command') recomputes the region
11096 bounds.
11097
11098 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
11099
11100 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
11101 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
11102 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
11103 (balance-windows): Rewrite using the above new functions.
11104
11105 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
11106
11107 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
11108 react if global-hi-lock-mode seems intended.
11109 (global-hi-lock-mode) Renamed from hi-lock-mode.
11110 (hi-lock-archaic-interface-message-used)
11111 (hi-lock-archaic-interface-deduce): New variables.
11112 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
11113 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
11114 (hi-lock-find-patterns, hi-lock-font-lock-hook):
11115 Replace hi-lock-buffer-mode with hi-lock-mode.
11116
11117 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
11118
11119 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
11120 completion list, even after a partial completion has been
11121 inserted in the current buffer. If there are more than 1
11122 completion, redisplay the *Completions* buffer; if the
11123 completion is unique, delete the *Completions* window.
11124
11125 2005-12-10 Eli Zaretskii <eliz@gnu.org>
11126
11127 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
11128 strings and long subject lines that were broken into multiple
11129 lines at arbitrary places. Handle subjects that have "Re: " in
11130 the middle.
11131
11132 2005-12-10 John W. Eaton <jwe@octave.org>
11133
11134 * emacs/octave-mod.el (octave-electric-space): Don't indent
11135 comments or strings if octave-auto-indent is nil.
11136
11137 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11138
11139 * term/mac-win.el: Require url when compiling.
11140 Call mac-process-deferred-apple-events after loading init files.
11141 (mac-apple-event-map): New defvar. Define event handlers in it.
11142 (core-event, internet-event): New Apple event class symbols.
11143 (open-application, reopen-application, open-documents)
11144 (print-documents, open-contents, quit-application)
11145 (application-died, show-preferences, autosave-now, get-url):
11146 New Apple event ID symbols.
11147 (about): New HICommand ID symbol.
11148 (mac-event-spec, mac-event-ae): New macros.
11149 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
11150 (mac-ae-selection-range, mac-ae-text-for-search)
11151 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
11152 (mac-application-menu-map): Remove keymap. Handlers for HICommand
11153 and Services menu events are now defined in mac-apple-event-map.
11154 (mac-drag-n-drop): Remove selection range handling.
11155
11156 2005-12-10 Kenichi Handa <handa@m17n.org>
11157
11158 * simple.el (zap-to-char):
11159 * isearch.el (isearch-process-search-char): Translate CHAR by
11160 translation-table-for-input.
11161
11162 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
11163
11164 * foldout.el (foldout-exit-fold): Properly hide subtree.
11165
11166 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
11167
11168 * files.el (save-buffer):
11169 * international/ucs-tables.el (ucs-set-table-for-input):
11170 * mail/mail-extr.el (mail-extract-address-components):
11171 * mail/sendmail.el (mail-mode): Reformat doc string.
11172
11173 2005-12-09 Juri Linkov <juri@jurta.org>
11174
11175 * isearch.el (isearch-highlight): Change main overlay priority
11176 from 1 to 1001. Simplify.
11177 (isearch-lazy-highlight-update): Change lazy overlay priority
11178 from 0 to 1000.
11179
11180 * replace.el (replace-highlight): Change overlay priority from
11181 1 to 1001.
11182
11183 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
11184 Change overlay priority from 1 to 1001. Reuse existing overlay.
11185
11186 * compare-w.el (compare-windows-highlight): Change overlay
11187 priority from 1 to 1000.
11188
11189 * menu-bar.el (menu-bar-edit-menu): Add listp around
11190 pending-undo-list to disable menu item "undo" when pending
11191 undo list is empty.
11192
11193 * locate.el (locate): Disable undo in *Locate* buffer.
11194
11195 2005-12-09 Kim F. Storm <storm@cua.dk>
11196
11197 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
11198
11199 2005-12-09 David Ponce <david@dponce.com>
11200
11201 * recentf.el: Improvement of the menu code.
11202 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
11203 instead of menu hook.
11204 (recentf-show-menu, recentf-hide-menu): New functions.
11205 (recentf-menu-customization-changed, recentf-mode): Use them.
11206 (recentf-menu-action, recentf-max-menu-items)
11207 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
11208 (recentf-arrange-by-rule-others)
11209 (recentf-arrange-by-rules-min-items)
11210 (recentf-arrange-by-rule-subfilter) : Don't use
11211 `recentf-menu-customization-changed'.
11212 (recentf-arrange-rules): Likewise. Accept functions to compute
11213 sub-menu titles.
11214 (recentf-menu-filter): Likewise. Doc fix.
11215 (recentf-menu-value-shortcut): Doc fix.
11216 (recentf-dump-variable): Quote atom value.
11217 (recentf-make-menu-items): Update to use it as a menu filter.
11218 (recentf-match-rule): New function.
11219 (recentf-arrange-by-rule): Use it.
11220 (recentf-indirect-mode-rule): New function.
11221 (recentf-build-mode-rules): Use it.
11222 (recentf-dir-rule): New function.
11223 (recentf-arrange-by-dir): Use it.
11224 (recentf-filter-changer-current): Rename from
11225 `recentf-filter-changer-state'. All references updated.
11226 (recentf-filter-changer-alist): Update filter names.
11227 (recentf-filter-changer-select): New function.
11228 (recentf-filter-changer): Use it. Make a sub-menu from filters
11229 available in `recentf-filter-changer-alist'.
11230 (recentf-data-cache, recentf-clear-data)
11231 (recentf-update-menu): Remove. All references updated.
11232 (recentf-match-rule-p, recentf-build-dir-rules)
11233 (recentf-filter-changer-goto-next)
11234 (recentf-filter-changer-get-current)
11235 (recentf-filter-changer-get-next): Remove.
11236
11237 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
11238
11239 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
11240 buffer "Reset" button to "Reset to Current" for consistency with
11241 the State buttons.
11242
11243 2005-12-08 John Paul Wallington <jpw@pobox.com>
11244
11245 * ibuf-ext.el (define-ibuffer-filter filename):
11246 If `dired-directory' is a list then really use its car.
11247
11248 2005-12-08 Kim F. Storm <storm@cua.dk>
11249
11250 * emulation/cua-rect.el (cua--rectangle-aux-replace):
11251 Fix indention of text on right side of replaced rectangle.
11252
11253 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
11254
11255 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
11256 No need to check gud-comint-buffer is bound.
11257 (gdb): Prevent multiple debugging when first session uses gdba.
11258
11259 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11260
11261 CC Mode update to 5.31.
11262
11263 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
11264 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
11265 We might do this function properly in the future).
11266
11267 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
11268 New macros c-sentence-end and c-default-value-sentence end, to cope
11269 with Emacs 22's new function `sentence-end'.
11270
11271 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11272
11273 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
11274 compat issue using `c-put-overlay' and `c-delete-overlay'.
11275
11276 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
11277 New compat macros to handle overlays/extents.
11278
11279 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11280
11281 * progmodes/cc-fix.el: Add definitions of the macros push and pop
11282 (for GNU Emacs 20.4)
11283
11284 * progmodes/cc-defs.el:
11285 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
11286
11287 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
11288 highlighting mechanism so it will work in XEmacs too.
11289
11290 * progmodes/cc-defs.el: Insert c-int-to-char.
11291
11292 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
11293 call to the new macro c-int-to-char. This solves XEmacs's
11294 regarding characters as different from integers.
11295
11296 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11297
11298 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
11299 New internal helper.
11300
11301 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
11302 construct to make the indirect face lookup work in XEmacs.
11303
11304 (c-cpp-matchers): Append the negation char face to the existing
11305 fontification, so that the cpp face doesn't disappear.
11306 Use `c-make-syntactic-matcher' to avoid negation chars in comments
11307 and strings.
11308
11309 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
11310 to map to `font-lock-negation-char-face' in emacsen where it exists.
11311
11312 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11313
11314 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
11315
11316 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
11317 Rename "c-subword-move-mode" as "c-subword-mode".
11318
11319 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
11320 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
11321
11322 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11323
11324 * progmodes/cc-mode.el: Added autoload directive for
11325 `c-subword-move-mode' for use in older emacsen.
11326
11327 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11328
11329 * progmodes/cc-mode.el:
11330 (i) Insert a binding for C-c C-backspace into
11331 c-bind-special-erase-keys which works in TTYs.
11332 (ii) Make sure that when file styles are used, any explicitly
11333 given style variables take priority over those in the style.
11334 Do this by calling `hack-local-variables' a second time.
11335
11336 * progmodes/cc-vars.el: Add language specific customization
11337 widgets for AWK to c-doc-comment-style, c-require-final-newline
11338 and c-default-style. Add a defcustom for awk-mode-hook.
11339 Give c-syntactic-element and c-syntactic-context doc-strings by
11340 directly setting their `variable-documentation' propery.
11341 This allows Emacs 22.1 to read these with C-h v.
11342
11343 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
11344
11345 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11346
11347 * progmodes/cc-fonts.el, cc-vars.el
11348 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
11349 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
11350 Masatake YAMATO.
11351
11352 (c-doc-comment-style): Made GtkDoc default in C mode.
11353
11354 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
11355 and C-c C-<delete>.
11356
11357 (c-bind-special-erase-keys): New function for use on
11358 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
11359
11360 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
11361 <delete> key behavior in XEmacs according to `delete-forward-p'.
11362 C.f. `c-electric-delete'.
11363
11364 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11365
11366 * progmodes/cc-mode.el: Give c-hungry-backspace and
11367 c-hungry-delete-forward permanent key bindings.
11368
11369 * progmodes/cc-cmds.el (c-electric-semi&comma):
11370 Bind c-syntactic-context for calls to "criteria functions", for
11371 consistency with other calls to user functions.
11372
11373 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
11374 `current-prefix-arg', since this might be the prefix arg to a
11375 command which calls c-indent-command as a function. Change the
11376 interactive spec from "p" to "P".
11377
11378 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
11379 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
11380 was difficult to understand.
11381
11382 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11383
11384 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
11385 first char of an identifier.
11386
11387 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
11388 +" syntax in C++.
11389
11390 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11391
11392 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
11393 auto-fill doesn't split a c-comment's last word from a hanging
11394 "*/" when a space is typed between them after fill-column.
11395
11396 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
11397
11398 * progmodes/cc-styles.el (c-set-style)
11399 (c-setup-paragraph-variables): Abort the command if we're not in a
11400 CC Mode buffer.
11401
11402 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
11403 with blank comment-prefix, and a blank line as the comment's
11404 second line.
11405
11406 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11407
11408 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
11409 Incorporate the patterns added in the Emacs development branch
11410 for the new Emacs 22 face `font-lock-negation-char-face'.
11411
11412 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
11413 of "red" since it stands out better in xterms and DOS terminals.
11414
11415 * progmodes/cc-engine.el (c-literal-faces):
11416 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
11417
11418 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11419
11420 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
11421 forcibly enable c-electric-flag.
11422
11423 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
11424 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
11425 after the comment-prefix of a C-style comment will close that comment.
11426
11427 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11428
11429 * progmodes/cc-fonts.el (c-basic-matchers-before)
11430 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
11431 in Pike.
11432
11433 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
11434 digraphs.
11435
11436 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
11437 (c-cpp-message-directives, c-cpp-include-directives)
11438 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
11439 (c-cpp-expr-directives): Introduce new language constants to
11440 control cpp syntax in a cleaner way.
11441
11442 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
11443
11444 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
11445
11446 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
11447 (c-multiline-string-start-char): New language constants and
11448 variables to specify how newlines in string literals work.
11449
11450 (c-font-lock-invalid-string): Use them.
11451
11452 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
11453 unbalanced close brace is entered. Optimization by avoiding going
11454 back over arbitrarily large blocks. Removed hints that this
11455 function only would be relevant/useful in AWK.
11456
11457 (c-electric-brace): Indent syntactically after the cleanups since
11458 lineup functions might do it differently then.
11459
11460 * progmodes/cc-engine.el, cc-langs.el
11461 (c-opt-op-identifier-prefix): New language constant and variable.
11462
11463 (c-just-after-func-arglist-p, c-after-special-operator-id)
11464 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
11465
11466 * progmodes/cc-align.el, cc-engine.el
11467 (c-after-special-operator-id): New helper to handle C++ operator
11468 identifiers.
11469
11470 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
11471 (c-guess-basic-syntax): Handle C++ operator identifiers in
11472 declarations.
11473
11474 * progmodes/cc-langs.el (c-assignment-operators): Add the
11475 trigraph version of ^= too.
11476
11477 * progmodes/cc-langs.el (c-assignment-operators): Add the
11478 trigraph version of |= in C++.
11479
11480 * progmodes/cc-fonts.el (c-font-lock-declarators):
11481 Handle `c-decl-hangon-kwds' after the identifier name.
11482
11483 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
11484 whether an arglist is "nonempty", ignore a comment after the open
11485 paren if it isn't followed by a non-comment token on the same line.
11486
11487 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
11488 Enable heuristics below the point to cope with classes inside special
11489 brace lists in Pike.
11490
11491 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11492
11493 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
11494
11495 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11496
11497 * progmodes/cc-guess.el (cc-guess-install): New function to
11498 install an already guessed style in another buffer.
11499
11500 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
11501 sets `inhibit-read-only' - `c-save-buffer-state' should be used
11502 anyway if the change always is undone.
11503
11504 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11505
11506 Implement togglable electricity:
11507
11508 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
11509 saying when it should be used.
11510
11511 * progmodes/cc-engine.el: Add the new buffer-local variable,
11512 c-electric-flag.
11513
11514 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
11515 c-toggle-auto-newline.
11516
11517 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
11518 c-toggle-auto-newline. Remove the binding for
11519 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
11520 c-toggle-electric-state.
11521
11522 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
11523
11524 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
11525 c-\(forward\|backward\)-subword.
11526 (c-update-modeline): Add the new modeline flag `l' for
11527 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
11528 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
11529 Make the old name an alias of the new name.
11530 (c-toggle-electric-state): New function.
11531 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
11532 Adapt these functions to do electric things only when
11533 c-electric-flag is non-nil.
11534 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
11535 new functions from c-electric-brace.
11536 (c-point-syntax): Add a check for "virtual semicolons" in AWK
11537 mode, so that the tentative extra newline doesn't change the
11538 syntax of the following brace.
11539 (c-electric-brace): Restructure by extracting the above functions.
11540 Tidy up the coding somewhat.
11541 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
11542 restructure a bit.
11543
11544 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11545
11546 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
11547 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
11548
11549 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
11550 (c-submode-indicators): Change name from `c-auto-hungry-string'
11551 since it's now used to track another submode.
11552
11553 (c-update-modeline): Convert to function and extended to check
11554 `c-subword-move-mode'.
11555
11556 (c-forward-into-nomenclature, c-backward-into-nomenclature):
11557 Convert to compat aliases for `c-forward-subword' and
11558 `c-backward-subword'.
11559
11560 * progmodes/cc-subword.el: New functions and minor mode to handle
11561 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
11562
11563 (c-forward-subword, c-backward-subword, c-mark-subword)
11564 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
11565 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
11566 Functions corresponding to the standard word handling functions.
11567
11568 (c-subword-move-mode): Minor mode that replaces all the standard
11569 word handling functions with their subword equivalences.
11570
11571 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11572
11573 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
11574 entry for one-liner-defun.
11575
11576 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
11577 name in its def-edebug-spec.
11578
11579 * progmodes/cc-cmds.el (c-electric-brace): Make the
11580 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
11581 compacts space before a comment, if this will make things fit on
11582 one line.
11583
11584 Introduce an "awk" style, mainly for auto-newline and clean-ups.
11585
11586 * progmodes/cc-align.el: New function c-snug-1line-defun-close
11587
11588 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
11589 clean-up one-liner-defun.
11590
11591 * progmodes/cc-styles.el: Add the new "awk" style.
11592
11593 * progmodes/cc-vars.el: Add description of one-liner-defun to
11594 c-cleanup-list's doc-string. New user options,
11595 c-max-one-liner-length. In c-default-style, set the default style
11596 for AWK to "awk".
11597
11598 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11599
11600 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
11601 macros inside labels.
11602
11603 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
11604 `c-at-statement-start-p' and `c-at-expression-start-p'.
11605
11606 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
11607 error if the mark isn't set.
11608
11609 * progmodes/cc-engine.el (c-guess-continued-construct)
11610 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
11611 accurately detect functions inside functions.
11612
11613 * progmodes/cc-engine.el (c-at-expression-start-p): New function
11614 like `c-at-statement-start-p' that additionally recognizes commas
11615 and expression parentheses as delimiters.
11616
11617 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
11618 to avoid heuristics that doesn't work for unclosed blocks.
11619 (c-at-statement-start-p): New function.
11620
11621 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
11622 Objective-C directives, e.g. directives spanning lines should work
11623 reasonably well now.
11624
11625 (c-put-c-type-property, c-clear-c-type-property): New helpers.
11626
11627 (c-forward-objc-directive): New function to move over any ObjC
11628 directive.
11629
11630 (c-just-after-func-arglist-p, c-guess-basic-syntax)
11631 (c-basic-matchers-before): Use it.
11632
11633 (c-font-lock-objc-iip-decl): Remove.
11634
11635 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
11636 in the template arglist recognition.
11637
11638 * progmodes/cc-styles.el (c-style-alist): Fix several
11639 inconsistencies in the Whitesmith style.
11640
11641 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
11642 New lineup function to get lines after Whitesmith style blocks
11643 correctly indented.
11644
11645 (c-lineup-whitesmith-in-block): Back out the compensation for
11646 opening parens since it's done using `add' lists in the style
11647 definition instead. Don't use the anchor position since it varies
11648 too much between the syntactic symbols. :P
11649
11650 * progmodes/cc-vars.el (c-valid-offset): Update.
11651
11652 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
11653 lists where the offsets are combined according to several
11654 different methods: `first', `min', `max', and `add'.
11655 Report offset evaluation errors with `c-benign-error' so that some kind
11656 of reindentation still is done.
11657
11658 * progmodes/cc-engine.el (c-guess-basic-syntax):
11659 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
11660 `arglist-close'.
11661
11662 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
11663 situations for `arglist-cont-nonempty' and `arglist-close'.
11664
11665 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
11666
11667 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
11668 cc-bytecomp-boundp' in a number of places.
11669
11670 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
11671 macro related issue.
11672
11673 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11674
11675 * progmodes/cc-awk.el: Change the terminology of regexps: A char
11676 list is now [asdf], a char class [:alpha:].
11677 Include code for char classes.
11678 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
11679 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
11680
11681 Remove (nearly all of) the cruft associated with AWK Mode's former
11682 concept of "virtual semicolons":
11683
11684 Adapt c-beginning-of-statement, c-end-of-statement (together with
11685 subfunctions) to use the new notion of "virtual semicolon" in
11686 place of the old awkward special handling for AWK. There remains
11687 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
11688 * progmodes/cc-cmds.el:
11689 (c-ascertain-adjacent-literal): In the backwards direction, now
11690 recognises AWK regexp delimiters as string delimiters.
11691 (c-after-statement-terminator-p): Adapt for virtual semicolons;
11692 check more rigorously for "end of macro".
11693 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
11694 virtual semicolons;
11695 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
11696 out the code for forward movement into ...
11697 (c-end-of-statement): Now contains the code for forward movement,
11698 adapted for virtual semicolons.
11699
11700 * progmodes/cc-engine.el:
11701 (c-ws*-string-limit-regexp): New regexp.
11702 (c-forward-single-comment, c-backward-single-comment): Comment out
11703 the (now redundant) "special" AWK stuff.
11704
11705 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
11706 c-string-par-start, c-string-par-separate to be more like Text
11707 Mode than Fundamental Mode.
11708
11709 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11710
11711 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
11712 to the fontified region so that fontification doesn't occur
11713 outside it (could happen e.g. when fontifying a line with an
11714 unfinished declaration).
11715
11716 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11717
11718 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
11719 start of the file. ^L now separate sections of the file.
11720 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
11721 (c-awk-one-line-possibly-open-string-re)
11722 (c-awk-regexp-one-line-possibly-open-char-class-re)
11723 (c-awk-one-line-possibly-open-regexp-re)
11724 (c-awk-one-line-non-syn-ws*-re): New defonsts.
11725 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
11726
11727 Amend the concept of "virtual semicolons" (in the indentation
11728 engine) for languages like AWK, such that they are now
11729 conceptually attached to end of the last token of a statement, not
11730 the end of the line. (In AWK Mode, however, the pertinent text
11731 property is still physically set on the EOL.) Remove the specific
11732 tests for awk-mode, thus facilitating the introduction of other
11733 language modes where EOLs can end statements.
11734 (Note: The funtionality in cc-cmds.el, specifically
11735 c-beginning/end-of-statement has yet to be amended.)
11736
11737 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
11738 New macros.
11739
11740 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
11741 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
11742 c-vsemi-status-unknown-p-fn (in a new page).
11743
11744 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
11745 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
11746 numerous awkward forms like
11747 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
11748 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
11749 variable before-ws-ip, the place just after char-before-ip appears.
11750
11751 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
11752 a comment.
11753
11754 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11755
11756 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
11757 `c-tentative-buffer-changes'.
11758
11759 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
11760 convert to macro to choose between Emacs and XEmacs at compile time.
11761
11762 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
11763
11764 (c-tentative-buffer-changes): New macro to handle temporary buffer
11765 changes in a convenient way.
11766
11767 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
11768 for `c-tentative-buffer-changes'.
11769
11770 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
11771 the checks for paren sexps between the point and the keyword, to
11772 avoid some false alarms.
11773
11774 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
11775 Fixed a situation where an error could be thrown for unbalanced
11776 parens. Changed to make use of c-keyword-member' to avoid some
11777 repeated regexp matches.
11778
11779 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
11780 These language variable are no longer necessary.
11781
11782 (c-block-stmt-kwds): New language constant used by
11783 c-looking-at-inexpr-block'.
11784
11785 (c-guess-basic-syntax): Remove an optional check that looked at
11786 the existence of the now removed language variables.
11787
11788 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
11789 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
11790 object instantiation expressions as declarations in some contexts.
11791 This bug only affected languages where the declarator can't be
11792 enclosed in parentheses.
11793
11794 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
11795 insert newlines before and after substatement braces.
11796
11797 * progmodes/cc-engine.el: Improved the heuristics for recognizing
11798 function declaration headers and the handling of C++ style member
11799 init lists.
11800
11801 (c-just-after-func-arglist-p): Rewritten to use
11802 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
11803
11804 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
11805
11806 (c-guess-basic-syntax): Adapt case 5B for the new
11807 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
11808 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
11809 covers all cases now).
11810
11811 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
11812
11813 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11814
11815 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
11816 c-string-par-start/separate c-sentence-end-with-esc-eol,
11817 initialised in c-setup-paragraph-variables, used in string
11818 scanning subroutines of c-beginning-of-statement.
11819
11820 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
11821 which precedes the newly inserted `{'.
11822
11823 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11824
11825 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
11826 function for declaration level blocks. It should now cope with
11827 templates better and also be a lot more comprehensible.
11828
11829 (c-looking-at-decl-block): The new function.
11830
11831 (c-search-uplist-for-classkey): The old one. It's now a wrapper
11832 for compatibility.
11833
11834 (c-add-class-syntax, c-guess-continued-construct)
11835 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
11836
11837 (c-decl-block-key): Change to tell apart ambiguous and
11838 unambiguous keywords. Pike specials are now handled directly in
11839 the code instead.
11840
11841 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
11842 New language constants and variables to make the backward skip in
11843 `c-looking-at-decl-block' as tight as possible.
11844
11845 (c-nonsymbol-token-char-list): New language constant.
11846
11847 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
11848 find balanced template arglists backwards.
11849
11850 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
11851 making char classes for `c-syntactic-skip-backward'.
11852
11853 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
11854 16D - can't be a class-close at that point.
11855
11856 * progmodes/cc-engine.el (c-guess-basic-syntax)
11857 (c-add-class-syntax): Don't narrow out the enclosing declaration
11858 level. This makes everything a lot easier, and it was actually
11859 only four small places that needed it to work. Some places that
11860 previously did `widen' are removed now, which has the effect that
11861 `c-guess-basic-syntax' never will look at things outside the
11862 current narrowment now. The anchor position for `topmost-intro'
11863 is affected by this, but it was so bogus it was basically useless
11864 before, and now it's equally bogus but in a slightly different way.
11865
11866 (c-narrow-out-enclosing-class): Gone.
11867
11868 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
11869 the narrowed region.
11870
11871 (c-least-enclosing-brace): Remove silly optional argument.
11872
11873 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
11874 the point could be left directly after an open paren when finding
11875 the beginning of the first decl in the block.
11876
11877 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
11878 Specify which submatch to use.
11879
11880 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
11881
11882 (c-decl-start-re): No longer any need for special treatment of
11883 ObjC due to the above.
11884
11885 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
11886 presumably follows C in that regard.
11887
11888 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
11889 New language constants to specify operator tokens inside
11890 identifiers in a more high level way.
11891
11892 (c-opt-identifier-prefix-key): New internal language constant.
11893
11894 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
11895 (c-identifier-start, c-identifier-key): Now completely calculated
11896 from other constants.
11897
11898 (c-identifier-last-sym-match): Decommission since it's no longer used.
11899
11900 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
11901
11902 * progmodes/cc-engine.el (c-forward-name): Remove the
11903 optimization when c-identifier-key is equal to c-symbol-key since
11904 it doesn't work in byte compiled files. Don't record empty
11905 regions as identifiers.
11906
11907 * progmodes/cc-langs.el (c-filter-ops): New helper function to
11908 simplify access to `c-operators' and its likes.
11909
11910 (c-operator-list, c-all-op-syntax-tokens)
11911 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
11912 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
11913 (c-primary-expr-regexp, c-cast-parens): Use it.
11914
11915 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
11916 an explicit language in functions.
11917
11918 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
11919 variant of adornment.
11920
11921 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
11922 variable.
11923
11924 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
11925 the Pike value.
11926
11927 * progmodes/cc-engine.el (c-on-identifier)
11928 (c-simple-skip-symbol-backward): Small fix for handling "-"
11929 correctly in `skip-chars-backward'. Affected the operator lfun
11930 syntax in Pike.
11931
11932 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
11933 diagnostic message about precompiled language vars not being used.
11934
11935 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
11936 "__attribute__" is followed by a parenthesis.
11937
11938 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
11939 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
11940 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
11941
11942 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
11943 Internal cleanups to properly detect the declared identifiers in
11944 various declarations.
11945
11946 (c-decl-start-kwds): New language constant to recognize
11947 declarations that can start anywhere. Used for class declarations
11948 in Pike.
11949
11950 (c-specifier-key, c-not-decl-init-keywords)
11951 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
11952 (c-find-decl-spots): Implement `c-decl-start-kwds'.
11953
11954 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
11955 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
11956 handling of the compiler specific extension keywords into a new
11957 language constant `c-decl-hangon-kwds' that defines keyword
11958 clauses to be ignored in declarations.
11959
11960 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
11961 past unrecognized tokens when handling `c-colon-type-list-kwds'.
11962 Necessary to stop at the declared identifier in e.g. IDL valuetype
11963 declarations.
11964
11965 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
11966 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
11967 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
11968 (c-forward-decl-or-cast-1): Recognize the declared identifier in
11969 class and enum declarations as such and not as part of the type.
11970
11971 (c-forward-decl-or-cast-1, c-forward-label): Relax the
11972 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
11973
11974 (c-forward-decl-or-cast-1): Don't disregard sure signs of
11975 declarations when there's some syntax error later on.
11976
11977 (c-complex-decl-matchers): Did away with a reference to
11978 `c-specifier-key'.
11979
11980 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
11981 value - this variable is always dynamically bound.
11982
11983 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
11984 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
11985 * cc-cmds.el, cc-defs.el: Change the policy for marking up
11986 functions that might do hidden buffer changes: All such internal
11987 functions are now marked instead of those that don't.
11988
11989 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
11990 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
11991 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
11992 (c-literal-type): Allow these functions to make hidden buffer changes,
11993 so that they are free to use text property caching later on.
11994
11995 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
11996 (c-electric-brace, c-electric-slash, c-electric-star)
11997 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
11998 (c-electric-paren, c-electric-continued-statement, c-indent-command)
11999 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
12000 (c-context-line-break): Add `c-save-buffer-state' calls to comply
12001 with the changed semantics of the functions above.
12002
12003 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
12004 when macros occur in obscure places. Optimized the sexp movement
12005 a bit.
12006
12007 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
12008
12009 Enhancements for c-beginning-of-statement to work in AWK Mode:
12010
12011 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
12012 (completed statement) with `}' (statement completed by closing
12013 brace or semicolon) and `$' (statement completed by EOL).
12014
12015 (c-awk-virtual-semicolon-ends-prev-line-p)
12016 (c-awk-virtual-semicolon-ends-line-p)
12017 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
12018 (c-awk-at-statement-end-p): New functions.
12019
12020 * progmodes/cc-cmds.el: Simplify the structure of functions
12021 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
12022 two functions and c-beginning-of-statement to handle AWK Mode.
12023
12024 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
12025 c-backward-single-comment for AWK mode. Attempt to clarify their
12026 doc-strings.
12027
12028 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
12029
12030 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
12031
12032 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
12033 label handling. Labels are now recognized in a uniform and more
12034 robust way, regardless of context. Text properties are put on all
12035 labels to recognize the following declarations better.
12036 Multiword labels are handled both in indentation and fontification for
12037 the benefit of language extensions like Qt. For consistency, keywords
12038 in labels are now fontified with the label face instead.
12039 That also applies to "case" and "default".
12040
12041 (c-beginning-of-statement-1): Fix some bugs in the label
12042 handling. Disregard `c-nonlabel-token-key' in labels that begin
12043 with `c-label-kwds'.
12044
12045 (c-find-decl-spots): Support that the callback adds more
12046 `c-decl-end' spots to find.
12047
12048 (c-forward-decl-or-cast-1): Don't treat a list of plain
12049 identifiers followed by a colon as a declaration.
12050
12051 (c-forward-label): New function to recognize labels.
12052
12053 (c-guess-basic-syntax): Replace uses of `c-label-key' with
12054 `c-forward-label'. Moved the label recognition cases (14 and 15)
12055 earlier since they aren't so context sensitive now. Handle labels
12056 on the top level gracefully. Moved access label recognition to
12057 the generic label case (CASE 15) - removed CASE 5E.
12058
12059 (c-font-lock-declarations): Add recognition of labels in the
12060 same round since we need to handle labels in parallell with other
12061 declarations to recognize both accurately. It should also improve
12062 speed.
12063
12064 (c-simple-decl-matchers, c-basic-matchers-after):
12065 Move `c-font-lock-labels' so that it only is used on decoration level 2
12066 since `c-font-lock-declarations' handles it otherwise.
12067
12068 (c-complex-decl-matchers): Remove the simplistic recognition of
12069 access labels.
12070
12071 (c-decl-prefix-re): Remove the kludges that was necessary to cope
12072 with labels earlier.
12073
12074 (c-decl-start-re): New language variable to make
12075 `c-font-lock-declarations' stop for the special protection labels
12076 in Objective-C that start with `@'.
12077
12078 (c-label-key): Remove since it's no longer used.
12079
12080 (c-recognize-colon-labels, c-label-prefix-re): New language
12081 constants to support recognition of generic colon-terminated labels.
12082
12083 (c-type-decl-end-used): `c-decl-end' is now used whenever there
12084 are colon terminated labels.
12085
12086 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
12087 first argument starts with a special brace list.
12088
12089 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
12090 (c-font-lock-declarations): Break out the declaration and cast
12091 recognition from `c-font-lock-declarations' to a new function, so
12092 that it can be used in the indentation engine.
12093
12094 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
12095 up to the start of the literal. Fixed bug with the point on the
12096 wrong side of the search limit that could happen when the start
12097 position is inside a literal.
12098
12099 * progmodes/cc-engine.el (c-parse-state)
12100 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
12101 so that it's kept a little bit back to increase the hit rate.
12102
12103 (c-parse-state): Change the macro handling and fixed some
12104 glitches. Macro context is checked more often than necessary now,
12105 but otoh less garbage conses are generated.
12106
12107 * progmodes/cc-engine.el (c-parse-state)
12108 (c-invalidate-state-cache): Cache the last position where
12109 `c-state-cache' applies. This can speed up refontification quite
12110 a bit in blocks where there are many non-brace parens before the point.
12111
12112 (c-state-cache-end): New variable for this.
12113
12114 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
12115 cache variable.
12116
12117 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
12118 get close initial continue positions when the start position is
12119 inside a literal or macro. Do not call the callback for spots
12120 before the start position (which can happen e.g. for `c-decl-end'
12121 spots inside comments). Optimize better in special cases when the
12122 region is a single line inside a literal or macro (typically when
12123 the current line is refontified).
12124
12125 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
12126 to `c-add-stmt-syntax' - there's no need to explicitly whack off
12127 entries from the paren state.
12128
12129 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
12130 special case for "else if" clauses.
12131
12132 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
12133 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
12134
12135 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
12136 New language variable to recognize the gcc extension with statement
12137 blocks inside expressions.
12138
12139 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
12140 it somewhat more comprehensible. The argument AT-BLOCK-START is
12141 no longer used and hence removed.
12142
12143 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
12144 to `c-add-stmt-syntax'.
12145
12146 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
12147 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
12148 This fixes bogus label recognition.
12149
12150 * progmodes/cc-engine.el (c-add-type, c-check-type)
12151 (c-forward-name, c-forward-type): Improve storage of template
12152 types in `c-found-types' so that they can be recognized better.
12153
12154 (c-syntactic-content): Add option to skip past nested parens.
12155
12156 * progmodes/cc-engine.el (c-forward-name):
12157 Set `c-last-identifier-range' all the time. It's less work that way.
12158 Handle that there might not be an identifier to store in
12159 `c-last-identifier-range'.
12160
12161 (c-forward-type): Handle that `c-last-identifier-range' might be
12162 nil from `c-forward-name'.
12163
12164 * progmodes/cc-defs.el (c-safe-scan-lists)
12165 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
12166
12167 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
12168 to work even if the form fails.
12169
12170 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
12171 down in a large file in one go.
12172
12173 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
12174
12175 * progmodes/cc-align.el (c-lineup-assignments): New lineup
12176 function which is like `c-lineup-math' but returns nil instead of
12177 `c-basic-offset' when it doesn't match.
12178
12179 (c-lineup-math): Change to use `c-lineup-assignments'.
12180
12181 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
12182
12183 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
12184 c-beginning-of-statement. New subfunctions
12185 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
12186
12187 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
12188
12189 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
12190 hardcoded char classes whereever possible. Changed a couple of
12191 places to use skip by syntax instead of skip by char class.
12192
12193 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
12194 Fix a bug in the regexp that caused extreme backtracking.
12195
12196 * progmodes/cc-langs.el (c-block-comment-starter)
12197 (c-block-comment-ender): New language constants to specify in a
12198 single place how block comments look.
12199
12200 (c-comment-start-regexp, c-block-comment-start-regexp)
12201 (comment-start, comment-end, comment-start-skip)
12202 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
12203 (c-syntactic-ws, c-nonempty-syntactic-ws)
12204 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
12205 `c-line-comment-starter', `c-block-comment-starter' and
12206 `c-block-comment-ender'.
12207
12208 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
12209 New language constants to break up things a bit.
12210
12211 (c-simple-ws): New language constant for simple whitespace.
12212
12213 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
12214
12215 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
12216 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
12217 newlines. Allow and ignore nil elements in the list.
12218
12219 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
12220
12221 * progmodes/cc-cmds.el: Comment out a (n almost certainly
12222 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
12223
12224 * progmodes/cc-cmds.el: Tidy up the comments in
12225 c-beginning-of-statement and subfunctions.
12226
12227 * progmodes/cc-awk.el: Replace calls to put-text-property to the
12228 more flexible c-put-char-property and c-clear-char-properties.
12229 Add the author's email address.
12230
12231 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
12232
12233 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
12234 closing "*/" of a block comment.
12235
12236 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
12237 subfunctions) so that it works at BOB and EOB.
12238
12239 * progmodes/cc-cmds.el, cc-vars.el: More updating of
12240 c-beginning-of-statement, including new variable
12241 c-block-comment-start-regexp.
12242
12243 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
12244
12245 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
12246 symbols from `*-font-lock-extra-types' so that there's no need to
12247 use `regexp-opt' on those lists.
12248
12249 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
12250 `c-type-modifier-kwds' is empty.
12251
12252 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
12253 there are several strings on the same line.
12254
12255 * progmodes/cc-engine.el (c-literal-limits): Remove the
12256 compatibility function for older emacsen. `c-literal-limits-fast'
12257 has now taken the place of this function.
12258
12259 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
12260 with older emacsen: We now require `pps-extended-state'.
12261
12262 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
12263
12264 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
12265 which obviates the need to hack sentence-end. This now handles
12266 escaped newlines in strings correctly. Correct minor bugs in
12267 c-move-over-sentence and in c-beginning-of-statement.
12268
12269 * progmodes/cc-cmds.el (c-beginning-of-statement (and
12270 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
12271 that movement over macros and code are rigorously separated from
12272 eachother. Correct a few incidental bugs.
12273
12274 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
12275 Improve its doc-string. Improve the handling of certain specific cases.
12276
12277 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
12278
12279 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
12280 (c-guess-basic-syntax): Change the way class-level labels are
12281 recognized; they can now contain essentially any symbols.
12282
12283 (c-opt-extra-label-key): New language variable to cope with the
12284 special protection label syntax in Objective-C.
12285
12286 (c-opt-access-key): Remove; this is now handled better by
12287 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
12288
12289 (c-complex-decl-matchers): Update to handle that
12290 `c-opt-access-key' no longer exists.
12291
12292 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
12293 improved label recognition in `c-beginning-of-statement-1'.
12294
12295 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
12296 Recognize bitfields better.
12297
12298 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
12299 Remove some cruft and fixed a bug that could cause it to go to a
12300 position further down.
12301
12302 * progmodes/cc-langs.el, cc-engine.el
12303 (c-beginning-of-statement-1): Improve detection of labels in
12304 declaration contexts.
12305
12306 (c-beginning-of-decl-1): Use it.
12307
12308 (c-nonlabel-token-key): New language constant and variable needed
12309 by `c-beginning-of-statement-1'.
12310
12311 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
12312 manifested itself due to the correction in `c-forward-sexp'.
12313
12314 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
12315 Make these behave as documented when used at the buffer limits.
12316
12317 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
12318 (c-type-decl-end-used): Made this a language variable.
12319
12320 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
12321 correctly when `combine-after-change-calls' is used together with
12322 temporary narrowings.
12323
12324 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12325 Report labels correctly when the start point is immediately after the
12326 colon.
12327
12328 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
12329 Remove since it isn't used anymore.
12330
12331 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
12332 bracket arglists such as template parens in C++.
12333
12334 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
12335 in the last check-in. Some optimization.
12336
12337 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
12338 where it could stop at the same level in a preceding sexp when
12339 PAREN-LEVEL is set.
12340
12341 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
12342 text property lookup only when it's needed.
12343
12344 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
12345 Change the policy for paren marked angle brackets to be more
12346 persistent; once marked they remain marked even when they're found
12347 to be unbalanced in the searched region. This should keep the
12348 paren syntax around even when individual lines are refontified in
12349 multiline template arglists.
12350
12351 (c-parse-and-markup-<>-arglists): New dynamically bound variable
12352 to control markup so that incorrect angle bracket arglists aren't
12353 marked in contexts where the correct value for
12354 `c-disallow-comma-in-<>-arglists' isn't known.
12355
12356 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
12357 argument has become `c-parse-and-markup-<>-arglists'.
12358
12359 (c-remove-<>-arglist-properties): Remove - no longer used.
12360
12361 (c-after-change-check-<>-operators): New function used on
12362 `after-change-functions' to avoid that "<" and ">" characters that
12363 are part of longer operators have paren syntax.
12364
12365 (c-<>-multichar-token-regexp): New language variable used by
12366 `c-after-change-check-<>-operators'.
12367
12368 (c-after-change): Call `c-after-change-check-<>-operators'.
12369
12370 (c-font-lock-<>-arglists): Use the context properties set by
12371 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
12372 correctly to avoid doing invalid markup.
12373
12374 (c-font-lock-declarations): Remove code that undoes the invalid
12375 markup done by `c-font-lock-<>-arglists'.
12376
12377 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
12378 after `c-font-lock-declarations'.
12379
12380 * progmodes/cc-engine.el (c-syntactic-skip-backward):
12381 Add paren-level feature.
12382
12383 (c-guess-basic-syntax): Improve the anchor position for
12384 `template-args-cont' in nested template arglists. There's still
12385 much to be desired in this area, though.
12386
12387 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
12388
12389 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
12390 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
12391
12392 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
12393
12394 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
12395 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
12396
12397 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
12398 it doesn't work no longer are supported.
12399
12400 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
12401 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
12402 requires support for the syntax-table' text property, which rules
12403 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
12404 cruft associated with those versions.
12405
12406 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
12407 for the `syntax-table' text property, which rules out Emacs 19 and
12408 XEmacs < 21.4. Removed various compatibility cruft associated
12409 with those versions.
12410
12411 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
12412 support for the `syntax-table' text property.
12413
12414 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
12415 variable and use an extra quoted face name instead. All the
12416 emacsen flavors handle that correctly.
12417
12418 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
12419 (c-font-lock-declarators, c-font-lock-declarations)
12420 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
12421 property to mark the items in in declarator lists to handle
12422 refontification inside multiline declarations better.
12423
12424 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
12425 construct like "a * b = c;" as a declaration.
12426
12427 2005-12-08 Kim F. Storm <storm@cua.dk>
12428
12429 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
12430 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
12431 select either meta, hyper, or super modifier for rectangle commands.
12432 (cua--rectangle-modifier-key): New defvar.
12433 (cua--M/H-key): Use it. Remove special case for `space'.
12434 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
12435 on X, to meta otherwise. Always bind C-return to toggle
12436 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
12437
12438 * emulation/cua-rect.el (cua-help-for-rectangle):
12439 Use cua--rectangle-modifier-key. Handle super modifier too.
12440 (cua--init-rectangles): Always bind C-return to toggle rectangle.
12441 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
12442
12443 * ido.el: Move Acknowledgements and History after Commentary.
12444 Minor changes to Commentary.
12445
12446 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
12447 keymap if cua--prefix-override-timer is `shift'.
12448 (cua--shift-control-prefix): New function; emulate "type prefix
12449 key twice" functionality to handle shifted prefix key override.
12450 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
12451 New commands.
12452 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
12453
12454 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
12455
12456 * textmodes/org.el (org-insert-heading): Try to do items before
12457 headings.
12458 (org-agenda-mode): Quote `org-agenda-mode-hook'.
12459 (org-insert-item): New function.
12460 (org-renumber-ordered-list): Don't skip to higher level lists.
12461
12462 2005-12-08 Juri Linkov <juri@jurta.org>
12463
12464 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
12465
12466 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
12467
12468 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
12469
12470 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
12471 the constructed function name fun-1.
12472
12473 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
12474 because such links don't lead to parent documentation.
12475
12476 2005-12-08 Kenichi Handa <handa@m17n.org>
12477
12478 * descr-text.el (describe-char): Use *Help-2* buffer if the
12479 current buffer is *Help*. Call describe-text-properties while
12480 setting the original buffer.
12481
12482 2005-12-07 Bill Wohler <wohler@newt.com>
12483
12484 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
12485 and causes problems with non-MH users (such as Gnus users).
12486
12487 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
12488
12489 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
12490 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
12491 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
12492 command "info sources". Move calls to GDB command "list".
12493 (gdb-find-file-hook): Just use gdb-source-file-list.
12494 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
12495 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
12496 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
12497 (gdb-data-list-register-values-handler): Use correct trigger name.
12498
12499 2005-12-07 Kim F. Storm <storm@cua.dk>
12500
12501 * ido.el (ido-completion-map): Rename from ido-mode-map.
12502 (ido-common-completion-map, ido-file-completion-map)
12503 (ido-file-dir-completion-map, ido-buffer-completion-map):
12504 Rename from ido-mode-....-map.
12505 (ido-init-completion-maps): Rename from ido-init-mode-maps.
12506 (ido-setup-completion-map): Rename from ido-define-mode-map.
12507 (ido-read-internal): Bind minibuffer-local-filename-completion-map
12508 to ido-completion-map.
12509
12510 2005-12-07 Kenichi Handa <handa@m17n.org>
12511
12512 * international/mule-cmds.el
12513 (set-display-table-and-terminal-coding-system): If the coding
12514 system specified in `unibyte-display' property is different from
12515 the arg coding-system, don't setup standard-display-table.
12516
12517 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12518
12519 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
12520 that comments end at \n, regardless of selective-display.
12521
12522 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
12523
12524 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
12525 (gdb-version): New variables.
12526 (gdb-source-file-list, gdb-register-names)
12527 (gdb-changed-registers): New variables for use with GDB 6.4+.
12528 (gdb-ann3): Replace with...
12529 (gdb-init-1, gdb-init-2): ...two new functions.
12530 (gdba, gdb-prompt): Call gdb-init-1.
12531 (gdb-get-version): New function. Call gdb-init-2 from here.
12532 (gud-watch): Make it work with mouse events too.
12533 (gdb-post-prompt): Don't add to queue until GDB version is known.
12534 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
12535 (gdb-locals-mode): Use gdb-version.
12536 (gdb-memory-format-map, gdb-memory-unit-map)
12537 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
12538 (gdb-locals-font-lock-keywords-1)
12539 (gdb-locals-font-lock-keywords-2): New variables.
12540 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
12541 (gdb-set-gud-minor-mode-existing-buffers-1)
12542 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
12543 (gdb-var-update-1, gdb-var-update-handler-1)
12544 (gdb-data-list-register-values-handler)
12545 (gdb-data-list-register-values-custom)
12546 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
12547 (gdb-stack-list-locals-handler, gdb-get-register-names):
12548 New functions for use with GDB 6.4+.
12549 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
12550 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
12551 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
12552 (gdb-stack-list-locals-regexp)
12553 (gdb-data-list-register-names-regexp): New regexps for use with
12554 GDB 6.4+.
12555
12556 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12557
12558 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
12559
12560 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
12561
12562 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
12563 prompts work for AUTH PLAIN. Also reported by Steve Allan
12564 <seallan@verizon.net>.
12565
12566 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
12567
12568 * frame.el (set-frame-parameter): Add doc string.
12569
12570 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
12571
12572 * textmodes/org.el (org-occur-highlights): New variable.
12573 (org-highlight-new-match, org-remove-occur-highlights): New functions.
12574 (org-highlight-sparse-tree-matches): New option.
12575 (org-do-occur): New function.
12576 (org-get-heading): Make it work also at beginning of line.
12577 (org-category-table): New variable.
12578 (org-get-category-table, org-get-category)
12579 (org-camel-to-words, org-link-search): New functions.
12580 (org-select-this-todo-keyword): New variable.
12581 (org-todo-list): New command.
12582 (org-shiftright, org-shiftleft): New commands.
12583 (org-agenda-todo): Add prefix argument.
12584 (org-show-hierarchy-above): New option.
12585 (org-show-todo-tree): Numerical prefix creates tree for specific
12586 TODO keyword.
12587 (org-outline-level): New function, to assign a level to plain
12588 lists items.
12589 (org-cycle-include-plain-lists): New option.
12590 (org-mode): Use `org-outline-level' as value of `outline-level'.
12591 (org-cycle): Temporarily switch `outline-regexp' if
12592 `org-cycle-include-plain-lists' is non-nil.
12593 (org-start-icalendar-file): Fix format bug.
12594 (org-agenda-get-day-entries): Create category table.
12595 (org-agenda-get-todos, org-agenda-get-timestamps)
12596 (org-agenda-get-deadlines, org-agenda-get-scheduled)
12597 (org-agenda-get-blocks): Use `org-get-category'.
12598 (org-context-in-file-links): Rename from
12599 `org-line-numbers-in-file-links'.
12600
12601 2005-12-06 Romain Francoise <romain@orebokech.com>
12602
12603 * window.el (balance-windows): Delete extraneous third arg in call
12604 to `enlarge-window'.
12605
12606 2005-12-06 Kenichi Handa <handa@m17n.org>
12607
12608 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
12609
12610 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
12611
12612 * progmodes/gdb-ui.el (gdb-var-create-handler)
12613 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
12614 (gdb-var-list-children-handler, gdb-var-update-handler):
12615 Current buffer is already gdb-partial-output-buffer, don't
12616 make it current again.
12617
12618 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
12619
12620 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
12621 (list-buffers-noselect): Use it.
12622
12623 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
12624
12625 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
12626 (mail-yank-ignored-headers): Use regexp-opt.
12627 (mail-mode-map): Move initialization into declaration.
12628 (mail-sent-via): Remove unused shadowed var `to-line'.
12629 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
12630 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
12631 (mail-do-fcc): Use dolist and push.
12632 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
12633 (mail-yank-ignored-headers): Don't autoload.
12634
12635 2005-12-05 Kenichi Handa <handa@m17n.org>
12636
12637 * international/mule-cmds.el (set-language-info-internal): New fun.
12638 (set-language-info): Call set-language-info-internal to update
12639 language-info-alist. If LANG-ENV is the current one, call
12640 set-language-environment to make INFO effective now.
12641 (set-language-info-alist): Likewise.
12642 (locale-language-names): With locale "en", use English
12643 lang. env. but set the default codings to iso-8859-1.
12644
12645 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
12646
12647 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
12648 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
12649 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
12650 for plain strings.
12651 (gdb-frames-mode): Remove redundant call to font-lock-mode.
12652 (gdb-all-registers): Rename from toggle-gdb-all-registers.
12653 Create registers buffer if necessary. Echo new state in minibuffer.
12654 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
12655
12656 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
12657
12658 * info.el (Info-fontify-node): Match external links using
12659 non-directory part of filename.
12660
12661 2005-12-04 Juri Linkov <juri@jurta.org>
12662
12663 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
12664 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
12665 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
12666 because there is no customization option for it.
12667
12668 * font-lock.el (lisp-font-lock-keywords-1):
12669 Add define-global-minor-mode.
12670
12671 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
12672
12673 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
12674 properties on the constructed variable names.
12675
12676 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12677 Put `definition-name' properties on the constructed function names
12678 next-sym and prev-sym.
12679
12680 * emacs-lisp/find-func.el (find-function-regexp):
12681 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
12682 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
12683 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
12684 and easy-menu-define.
12685
12686 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
12687 easy-mmode-define-global-mode and define-global-minor-mode.
12688 (lisp-imenu-generic-expression): Add define-global-minor-mode.
12689
12690 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
12691 instead of easy-mmode-define-global-mode.
12692
12693 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
12694 Use define-minor-mode instead of easy-mmode-define-minor-mode.
12695
12696 * cus-edit.el (customize-group, customize-group-other-window):
12697 Filter out autoloaded options from the group completion list by
12698 using heuristics that autoloaded groups don't have `custom-autoload'
12699 property on their symbols (they have only `custom-loads').
12700
12701 * simple.el (completion-setup-function): Put completions-common-part
12702 face on complete completion string too (i.e. completion string
12703 without completions-first-difference face).
12704
12705 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
12706
12707 2005-12-03 Eli Zaretskii <eliz@gnu.org>
12708
12709 * view.el (view-mode): Doc fix.
12710
12711 * disp-table.el (standard-display-european): Add to the warning
12712 message a reference to the doc string.
12713
12714 * play/yow.el (apropos-zippy): Call print-help-return-message,
12715 similar to other Help and Apropos commands.
12716
12717 * help.el (print-help-return-message): If pop-up-frames is
12718 non-nil, set up help-return-method to delete the help window and,
12719 possibly, its frame as well, and don't display message about
12720 scrolling the help window. Doc fix.
12721 (help-return-method): Doc fix.
12722
12723 2005-12-03 Martin Rudalics <rudalics@gmx.at>
12724
12725 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
12726 whereby names of length one or names starting with a
12727 symbol-constituent character would not be returned.
12728
12729 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
12730
12731 * subr.el (atomic-change-group): Add edebug and indentation spec.
12732
12733 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12734
12735 * completion.el (save-completions-file-name): Fix typo in last change.
12736
12737 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12738
12739 * info.el: Move back/forward history to the beginning of the tool bar.
12740
12741 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
12742
12743 * allout.el (eval-when-compile): Remove unnecessary load of cl.
12744 Add fset of allout-real-isearch-abort during compile to fix
12745 byte-compilation warnings.
12746 (allout-mode-p): Move definition of this macro above all uses, or
12747 byte compilation in barren Emacs (eg, during Emacs build) will
12748 lack the definition.
12749 (allout-mode): Move this variable above any uses, or byte
12750 compilation will fail.
12751 (allout-resolve-xref): Remove use of personal file-reference function.
12752 (allout-toggle-current-subtree-encryption): Do the current (ie,
12753 visible containing) topic, rather than nearest around point. Doc fix.
12754 (allout-toggle-subtree-encryption): New function, workhorse that
12755 works on nearest topic containing point.
12756 (allout-encrypt-string): Signal requirement for newer version of pgg.
12757 (allout-resumptions): Doc fix.
12758
12759 2005-12-02 Eli Zaretskii <eliz@gnu.org>
12760
12761 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
12762
12763 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
12764
12765 * textmodes/flyspell.el (flyspell-external-point-words):
12766 Consider a misspelling as found in the string search if: (a) misspelling
12767 and found string lengths match, or (b) misspelling is found as
12768 element in a boundary-chars separated longer string, or (c)
12769 ispell-program-name is really ispell and misspelling is found as
12770 part of a TeX string. After successful match move beginning of
12771 search region to end of match. Warn about not found misspellings
12772 once the process is done.
12773 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
12774
12775 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
12776
12777 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
12778 tool bar (removed inadvertently).
12779
12780 2005-12-02 Juri Linkov <juri@jurta.org>
12781
12782 * log-view.el (log-view-diff): Clarify doc string.
12783
12784 2005-12-01 Bill Wohler <wohler@newt.com>
12785
12786 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
12787 triggers lm-verify errors.
12788
12789 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
12790
12791 * simple.el (transient-mark-mode, line-number-mode)
12792 (column-number-mode, size-indication-mode): Remove `:require nil'.
12793
12794 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
12795
12796 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
12797 in the margin also.
12798 (gdb-breakpoints-mode-map): Use D instead of d for
12799 gdb-delete-breakpoint.
12800 (gdb-get-frame-number): Require a number to match on.
12801 (gdb-threads-mode-map): Add follow-link binding.
12802
12803 2005-11-30 Jason Rumney <jasonr@gnu.org>
12804
12805 * isearch.el (isearch-mode-map): Avoid exiting search on
12806 language-change event.
12807
12808 2005-11-30 Romain Francoise <romain@orebokech.com>
12809
12810 * speedbar.el (speedbar-default-position): New defcustom.
12811 (speedbar-frame-reposition-smartly): Use it.
12812
12813 * dframe.el (dframe-reposition-frame-emacs): Fix position
12814 computation for `left' location.
12815 Update copyright year.
12816
12817 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
12818
12819 * help.el (help-map): Move initialization into declaration.
12820
12821 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
12822
12823 * help-fns.el (help-argument-name): Don't autoload.
12824 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
12825 to be re-loaded when customizing the `help' group.
12826
12827 2005-11-30 John Paul Wallington <jpw@gnu.org>
12828
12829 * help-fns.el (describe-function-1): Fill arglist output.
12830
12831 2005-11-30 Kim F. Storm <storm@cua.dk>
12832
12833 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
12834 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
12835 after revert-buffer (or anything else which kills all local variables).
12836
12837 * apropos.el (apropos-parse-pattern): Doc fix.
12838 Set apropos-regexp directly, rather than expecting callers to do so.
12839 (apropos-command, apropos, apropos-value, apropos-documentation):
12840 Simplify calls to apropos-parse-pattern.
12841
12842 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
12843
12844 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
12845 (hi-lock-face-phrase-buffer): Use hi-yellow face.
12846 (hi-lock-write-interactive-patterns): Use comment-region.
12847
12848 * longlines.el (longlines-mode): Add mail-setup-hook.
12849
12850 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
12851
12852 * simple.el (sendmail-user-agent-compose, next-line):
12853 Conditionally use hard-newline.
12854
12855 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
12856
12857 * international/latexenc.el (latex-inputenc-coding-alist):
12858 Reword doc string.
12859
12860 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
12861
12862 * help.el (describe-key-briefly, describe-key): Recognize default
12863 bindings.
12864
12865 2005-11-29 Romain Francoise <romain@orebokech.com>
12866
12867 * view.el (view-inhibit-help-message): New defcustom.
12868 (view-mode-enter): Use it.
12869
12870 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
12871
12872 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
12873 Preserve user position.
12874
12875 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
12876
12877 * font-lock.el: Throw error if facemenu is not loaded to prevent
12878 accidental change of loading order in loadup.el. (Suggested by RMS.)
12879
12880 * loadup.el: Add comment explaining why facemenu must be loaded
12881 before font-lock.
12882
12883 2005-11-28 Jay Belanger <belanger@truman.edu>
12884
12885 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
12886 (calc-dispatch-map): Add more keys for `calc-same-interface'.
12887
12888 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
12889
12890 * calc/calc-embed.el (calc-do-embedded): Update help message.
12891
12892 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
12893
12894 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12895
12896 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
12897
12898 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
12899 called-interactively-p.
12900 (elp-profilable-p): Rename from elp-not-profilable-p.
12901 Invert result and take into account macros and autoloaded functions.
12902 (elp-instrument-function): Update call.
12903 (elp-instrument-package): Update call. Add completion.
12904 (elp-pack-number): Use match-string.
12905 (elp-results-jump-to-definition-by-mouse): Merge into
12906 elp-results-jump-to-definition and then remove.
12907 (elp-output-insert-symname): Make help echo text single-line.
12908
12909 * replace.el (query-replace-map): Move initialization into declaration.
12910 (occur-engine): Use with-current-buffer.
12911 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
12912 (occur-mode-mouse-goto): Replace with an alias.
12913
12914 2005-11-28 Juri Linkov <juri@jurta.org>
12915
12916 * simple.el (quoted-insert): Let-bind input-method-function to nil.
12917
12918 * term/w32-win.el: Bind [S-tab] to [backtab].
12919
12920 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
12921 `Info-find-file' to t.
12922
12923 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
12924 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
12925 and same-window-regexps.
12926 (occur-next-error): Don't move point for arg 0.
12927
12928 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
12929
12930 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
12931
12932 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12933
12934 * log-edit.el (log-edit-changelog-use-first): New var.
12935 (log-edit-changelog-ours-p): Use it.
12936 (log-edit-insert-changelog): Set it with new arg `use-first'.
12937 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
12938 (log-edit-hook): Add them to the list of suggested options.
12939
12940 * textmodes/flyspell.el (flyspell-last-buffer): New var.
12941 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
12942 redundant work.
12943 (flyspell-mode-on): Use add-hook for after-change-functions.
12944 (flyspell-mode-off): Use remove-hook for after-change-functions.
12945 (flyspell-changes): Make it buffer-local.
12946 (flyspell-after-change-function): Make it non-interactive. Use push.
12947 (flyspell-post-command-hook): Check input-pending-p while processing
12948 the potentially long list of buffer changes.
12949
12950 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
12951
12952 * buff-menu.el (list-buffers-noselect): Display the selected
12953 frame's buffer list, not the global one.
12954
12955 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
12956
12957 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
12958 that (list last-input-event) works as in interactive spec.
12959
12960 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
12961
12962 * loadup.el ("facemenu"): Load facemenu before font-lock, because
12963 `facemenu-keymap' needs to be defined when font-lock is loaded.
12964 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
12965
12966 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
12967
12968 * completion.el: Remove useless leading * in defcustom docstrings.
12969 (save-completions-file-name): Use ~/.emacs.d if available.
12970 (completion-standard-syntax-table): Rename from
12971 cmpl-standard-syntax-table and fold initialization into declaration,
12972 thus removing cmpl-make-standard-completion-syntax-table.
12973 (completion-lisp-syntax-table, completion-c-syntax-table)
12974 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
12975 (cmpl-saved-syntax, cmpl-saved-point): Remove.
12976 (symbol-under-point, symbol-before-point)
12977 (symbol-under-or-before-point, symbol-before-point-for-complete)
12978 (add-completions-from-c-buffer): Use with-syntax-table.
12979 (make-completion): Don't return a list of completion entries.
12980 Update callers.
12981 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
12982 (completion-initialize): Rename from initialize-completions.
12983 (completion-find-file-hook): Rename from cmpl-find-file-hook.
12984 (kill-emacs-save-completions): Collect stats here.
12985 (save-completions-to-file, load-completions-from-file):
12986 Use with-current-buffer.
12987 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
12988 into a function. Move all calls to toplevel.
12989 (completion-lisp-mode-hook): New fun.
12990 (completion-c-mode-hook, completion-setup-fortran-mode):
12991 Set the syntax-table here. Use local-set-key.
12992 (completion-saved-bindings): New var.
12993 (dynamic-completion-mode): Make it into a proper minor mode.
12994 (load-completions-from-file): Remove unused var `num-uses'.
12995
12996 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
12997 constructor if it is explicitly overridden.
12998
12999 * complete.el (PC-completion-as-file-name-predicate):
13000 Use minibuffer-completing-file-name.
13001 (partial-completion-mode): Use find-file-not-found-functions.
13002 (PC-lisp-complete-symbol): Use with-syntax-table.
13003 (PC-look-for-include-file): Remove dead setq.
13004 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
13005 (PC-complete): Use with-current-buffer.
13006
13007 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
13008 escape single quotes.
13009
13010 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
13011
13012 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
13013 of `if' whose condition always returned nil. Doc fix.
13014
13015 * buff-menu.el (Buffer-menu-revert-function): Make the selected
13016 window's buffer the current buffer around the call to
13017 `list-buffers-noselect'. This is necessary to mark that buffer
13018 with a `.' in the Buffer Menu when called from Lisp, for instance
13019 by Auto Revert Mode.
13020
13021 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
13022
13023 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
13024 attaching to it.
13025 (gdb-pre-prompt): Make sure gdb-error is reset.
13026
13027 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
13028 with a child process, detect it.
13029 (gud-speedbar-buttons): Match regexp more carefully.
13030
13031 2005-11-27 Richard M. Stallman <rms@gnu.org>
13032
13033 * mouse.el (mouse-drag-move-window-bottom):
13034 Use adjust-window-trailing-edge.
13035
13036 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
13037
13038 * simple.el (blink-matching-open): Ignore
13039 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
13040 (blink-matching-paren-on-screen): Update docstring.
13041
13042 * paren.el (show-paren-mode): No longer change
13043 `blink-matching-paren-on-screen'.
13044
13045 2005-11-27 John Paul Wallington <jpw@pobox.com>
13046
13047 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
13048 (gdb-threads-select, gdb-edit-register-value):
13049 Use `posn-set-point' instead of `mouse-set-point' because the
13050 latter is not fbound when configured without X.
13051
13052 2005-11-27 Kim F. Storm <storm@cua.dk>
13053
13054 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
13055 existing face when partially highlighting a TAB in a rectangle.
13056
13057 2005-11-26 Kim F. Storm <storm@cua.dk>
13058
13059 * ido.el (ido-mode-map): Doc fix.
13060 (ido-mode-common-map, ido-mode-file-map)
13061 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
13062 (ido-define-mode-map): Rewrite. Select one of the new maps as
13063 parent for ido-mode-map instead of building from scratch.
13064 (ido-init-mode-maps): New defun to initialize new maps.
13065 (ido-mode): Call it.
13066 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
13067 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
13068
13069 2005-11-26 John Paul Wallington <jpw@pobox.com>
13070
13071 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
13072 `mouse-set-point' because the latter is not fbound when configured
13073 without X.
13074
13075 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
13076
13077 * files.el (file-relative-name): Doc fix.
13078
13079 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
13080
13081 * progmodes/octave-inf.el (inferior-octave-startup): Force a
13082 non-empty string for secondary prompt PS2.
13083
13084 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
13085
13086 * progmodes/compile.el (compilation-setup): Fix last change.
13087
13088 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
13089
13090 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
13091 (gdb-mouse-toggle-breakpoint-margin)
13092 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
13093 Add gdb-server-prefix to keep out of command history.
13094 (gdb-edit-register-value): New function.
13095 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
13096 (gdb-info-registers-custom): Use above map.
13097
13098 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
13099
13100 * custom.el (enable-theme): Signal error if argument is not a
13101 theme. Don't recalculate a face if it's not loaded yet.
13102
13103 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
13104 the `user' theme is in effect.
13105
13106 * info.el (Info-on-current-buffer): Record actual filename in
13107 Info-current-file, instead of t, or a fake filename if a non-file
13108 buffer. Make autoload.
13109 (Info-find-node, Info-revert-find-node): No need to check for
13110 Info-current-file nil.
13111 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
13112 Info-current-file is now never `t'.
13113 (Info-fontify-node): Many simplifications due to Info-current-file
13114 always being valid. Use Info-find-file to find node filename.
13115
13116 2005-11-25 David Kastrup <dak@gnu.org>
13117
13118 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
13119 new character, then delete" in order to preserve markers.
13120
13121 2005-11-25 David Ponce <david@dponce.com>
13122
13123 * recentf.el (recentf-arrange-by-rule): Handle a special
13124 `auto-mode-alist'-like "strip suffix" rule.
13125 (recentf-build-mode-rules): Handle second level auto-mode entries.
13126
13127 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
13128
13129 * viper-keym.el (viper-ESC-key): Use different values in terminal and
13130 window modes.
13131
13132 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
13133 jde-javadoc-checker-report-mode.
13134
13135 * ediff-wind (ediff-make-wide-display): Slight simplification.
13136
13137 * ediff.el (ediff-date): Change the date of last update.
13138
13139 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
13140
13141 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
13142 Use define-minor-mode, and make it a local mode. Turn on font-lock.
13143 (hi-lock-mode): New global minor mode.
13144 (turn-on-hi-lock-if-enabled): New function.
13145 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
13146 Change arguments to regexp and face instead of a font-lock pattern.
13147 Directly set face property, instead of refontifying.
13148 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
13149 (hi-lock-find-patterns): Use line-number-at-pos.
13150
13151 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
13152 arguments for hi-lock-set-pattern.
13153 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
13154 Call font-lock-fontify-buffer.
13155 (hi-lock-find-file-hook, hi-lock-current-line)
13156 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
13157
13158 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
13159 turned off.
13160
13161 * progmodes/compile.el (compilation-setup): Don't fiddle with
13162 font-lock-defaults.
13163
13164 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
13165
13166 * progmodes/gdb-ui.el (gdb-var-create-handler)
13167 (gdb-var-list-children-handler): Find values for all variable
13168 objects. gud-speedbar-buttons decides whether to display them.
13169
13170 2005-11-24 Romain Francoise <romain@orebokech.com>
13171
13172 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
13173 buffer name with a space.
13174
13175 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
13176
13177 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
13178 `org-export-local-list-max-depth'. Change default value to 3.
13179 (org-auto-renumber-ordered-lists)
13180 (org-plain-list-ordered-item-terminator): New options.
13181 (org-at-item-p, org-beginning-of-item, org-end-of-item)
13182 (org-get-indentation, org-get-string-indentation)
13183 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
13184 New functions.
13185 (org-move-item-down, org-move-item-up): New commands.
13186 (org-export-as-html): New classes for CSS support. Bug fix in
13187 regular expression detecting fixed-width regions. Respect
13188 `org-local-list-ordered-item-terminator'.
13189 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
13190 also a list item.
13191 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
13192 New item moving functions.
13193
13194 2005-11-24 Juri Linkov <juri@jurta.org>
13195
13196 * isearch.el (isearch-repeat): With empty search ring set
13197 `isearch-error' to the error string instead of signaling error
13198 with the function `error'.
13199
13200 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13201
13202 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
13203
13204 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
13205
13206 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
13207 and variable.
13208 (gdb-var-create-handler, gdb-var-list-children-handler):
13209 Don't match on "char **...".
13210 (gdb-var-update-handler): Find values for all variable objects.
13211 (gdb-info-frames-custom): Identify frames by leading "#".
13212
13213 * progmodes/gud.el (gud-speedbar-menu-items): Add
13214 gdb-speedbar-auto-raise as radio button.
13215 (gud-speedbar-buttons): Raise speedbar if requested.
13216 Don't match on "char **...".
13217 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
13218 Make it editable.
13219
13220 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
13221
13222 * info.el (Info-fontify-node): Handle the case where
13223 Info-current-file is t.
13224
13225 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
13226
13227 * simple.el (blink-matching-open): Fix off-by-one in last change.
13228
13229 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13230
13231 * term/mac-win.el: Don't change default directory.
13232
13233 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
13234
13235 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
13236 buffers correctly. (It used to throw an error in such buffers.)
13237 Make it ask for confirmation in group buffers and other Custom
13238 buffers containing more than one customization item.
13239
13240 2005-11-22 John Paul Wallington <jpw@gnu.org>
13241
13242 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
13243 property on mail and url overlays.
13244 (goto-address-at-point): Use `posn-set-point' instead of
13245 `mouse-set-point' because the latter is not fbound when configured
13246 without X.
13247
13248 2005-11-22 Lars Hansen <larsh@soem.dk>
13249
13250 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
13251 (ls-lisp-classify, ls-lisp-format): Delete call to
13252 ls-lisp-parse-symlink.
13253 (ls-lisp-handle-switches): Handle symlinks to directories as
13254 directories when ls-lisp-dirs-first in non-nil.
13255
13256 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
13257
13258 * startup.el (command-line): Make sure that loaddefs.el is handled
13259 correctly in load-history.
13260
13261 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
13262
13263 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
13264 (gdb-struct-string, gdb-array-string): New constants.
13265 (gdb-info-locals-handler): Use them.
13266 (gdb-reset): Reset gdb-var-list to nil.
13267
13268 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13269
13270 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
13271 in patterns.
13272
13273 2005-11-21 Juri Linkov <juri@jurta.org>
13274
13275 * custom.el (defcustom): Update link types in docstring.
13276
13277 2005-11-20 Martin Rudalics <rudalics@gmx.at>
13278
13279 * custom.el (defgroup): Add doc-string-elt info.
13280
13281 * widget.el (define-widget): Don't use declare for the doc-string-elt.
13282
13283 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
13284
13285 * newcomment.el (comment-enter-backward): Fix last fix.
13286
13287 * simple.el (blink-matching-open):
13288 * paren.el (show-paren-function): Allow new paren-class info.
13289
13290 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
13291
13292 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
13293 handled automagically.
13294
13295 2005-11-20 Andreas Schwab <schwab@suse.de>
13296
13297 * descr-text.el (describe-char): When copying overlays put them
13298 over the full char description instead of just the first character
13299 of it.
13300
13301 2005-11-20 Juri Linkov <juri@jurta.org>
13302
13303 * simple.el (what-cursor-position):
13304 * descr-text.el (describe-char): Use Lisp-readable syntax
13305 for octal and hex. Reorder decimal, octal and hex values.
13306 Remove excess whitespace in the output. Use `=' in `column='
13307 like in `point=' and `Hscroll='.
13308
13309 * international/mule-cmds.el (encoded-string-description):
13310 Use Lisp-readable syntax for hex.
13311
13312 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
13313
13314 * newcomment.el (comment-enter-backward): Handle the case where the
13315 comment is closed by EOB.
13316
13317 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
13318
13319 * longlines.el (longlines-before-revert-hook)
13320 (longlines-after-revert-hook): New functions.
13321 (longlines-mode): Turn off longlines temporarily when reverting.
13322 Add a message-setup-hook.
13323 (longlines-decode-buffer): New function.
13324 (longlines-wrap-line): Preserve marker positions.
13325
13326 2005-11-19 Andreas Schwab <schwab@suse.de>
13327
13328 * emacs-lisp/shadow.el: Handle compressed files.
13329
13330 2005-11-19 Romain Francoise <romain@orebokech.com>
13331
13332 * net/browse-url.el (browse-url-default-browser): Signal an error
13333 if no usable browser can be found, rather than try to load w3.
13334
13335 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
13336
13337 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
13338 replacing existing properties.
13339 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
13340 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
13341 tty specs.
13342 (rcirc-server-prefix, rcirc-server): New faces.
13343 (rcirc-url-regexp): Generate with rx macro.
13344 (rcirc-last-server-message-time): New variable.
13345 (rcirc-filter): Record time of last message.
13346 (rcirc-keepalive): Kill processes that did not send a message
13347 since the last ping.
13348 (rcirc-mode): Give rcirc-topic a local binding here.
13349
13350 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
13351
13352 * subr.el (read-passwd): Fontify the prompt as we do with other
13353 prompts.
13354
13355 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
13356
13357 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
13358 binding buffer-read-only to nil.
13359
13360 2005-11-19 Eli Zaretskii <eliz@gnu.org>
13361
13362 * complete.el (partial-completion-mode):
13363 Mention completion-auto-help in the doc string.
13364
13365 * man.el (Man-highlight-references): Doc fix. Reformat code in a
13366 more Lisp-ish way.
13367
13368 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
13369
13370 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
13371 digits, not 8, to avoid misalignment for files larger than 100MB.
13372
13373 2005-11-19 Eli Zaretskii <eliz@gnu.org>
13374
13375 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
13376 Mention "keyboard shortcuts" in the help text.
13377
13378 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13379
13380 * startup.el (fancy-splash-default-action): Discard only
13381 mouse-down and succeeding mouse-up events in the splash screen
13382 window so that drag-n-drop event can be processed.
13383
13384 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
13385
13386 * longlines.el (longlines-mode): Add hacks for mail-mode and
13387 message-mode.
13388
13389 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
13390
13391 * textmodes/org.el (org-table-sort-lines): New command.
13392 (org-tbl-menu): Add entry for `org-table-sort-lines'.
13393 (org-add-file): Command removed, use `org-agenda-file-to-front'
13394 instead.
13395 (org-export-icalendar): Use `org-icalendar-combined-name'.
13396 (org-cycle-agenda-files, org-agenda-file-to-end)
13397 (org-agenda-file-to-front): New commands.
13398 (org-table-tab-jumps-over-hlines, org-export-html-style):
13399 New options.
13400 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
13401 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
13402 New functions.
13403 (org-fill-paragraph): Call `org-table-align' in tables.
13404 (org-mode): Call `org-set-autofill-regexps'.
13405 (org-export-as-html): Support for local handformatted lists.
13406 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
13407 (org-export-local-list-max-depth): New option.
13408 (org-html-expand): Use `org-html-protect'.
13409
13410 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
13411
13412 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
13413 to "p".
13414 (gdb): Move definition of gud-pp to...
13415
13416 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
13417 speedbar.
13418 (gdb-find-watch-expression): New function.
13419
13420 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
13421
13422 * faces.el (face-attribute, set-face-attribute): Mention existence
13423 of `:ignore-defface' setting in docstring.
13424
13425 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
13426
13427 * simple.el (completion-setup-function): Fix last change.
13428
13429 2005-11-17 John Paul Wallington <jpw@pobox.com>
13430
13431 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
13432 Use `posn-set-point' instead of `mouse-set-point' because the
13433 latter is not fbound when configured without X.
13434
13435 * comint.el (comint-insert-input): Likewise.
13436
13437 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
13438
13439 * simple.el (hard-newline): New variable.
13440 (sendmail-user-agent-compose, next-line): Use it.
13441
13442 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
13443 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
13444 (mail-mail-reply-to, mail-mail-followup-to)
13445 (mail-position-on-field, mail-signature, mail-yank-original)
13446 (mail-attach-file): Likewise.
13447
13448 * mail/mailheader.el (mail-header-format)
13449 (mail-header-format-function): Likewise.
13450
13451 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
13452
13453 2005-11-17 Juri Linkov <juri@jurta.org>
13454
13455 * font-lock.el (font-lock-faces): Rename this defgroup from
13456 `font-lock-highlighting-faces'.
13457 (font-lock-comment-face, font-lock-comment-delimiter-face)
13458 (font-lock-string-face, font-lock-doc-face)
13459 (font-lock-keyword-face, font-lock-builtin-face)
13460 (font-lock-function-name-face, font-lock-variable-name-face)
13461 (font-lock-type-face, font-lock-constant-face)
13462 (font-lock-warning-face, font-lock-negation-char-face)
13463 (font-lock-preprocessor-face)
13464 (font-lock-regexp-grouping-backslash)
13465 (font-lock-regexp-grouping-construct): Rename :group from
13466 `font-lock-highlighting-faces' to `font-lock-faces'.
13467
13468 * cus-edit.el (lisp, c, tex):
13469 * progmodes/ada-mode.el (ada):
13470 * progmodes/asm-mode.el (asm):
13471 * progmodes/cperl-mode.el (cperl-faces):
13472 * progmodes/cpp.el (cpp):
13473 * progmodes/dcl-mode.el (dcl):
13474 * progmodes/f90.el (f90):
13475 * progmodes/fortran.el (fortran):
13476 * progmodes/icon.el (icon):
13477 * progmodes/idlwave.el (idlwave-misc):
13478 * progmodes/m4-mode.el (m4):
13479 * progmodes/make-mode.el (makefile):
13480 * progmodes/meta-mode.el (meta-font):
13481 * progmodes/modula2.el (modula2):
13482 * progmodes/octave-mod.el (octave):
13483 * progmodes/pascal.el (pascal):
13484 * progmodes/perl-mode.el (perl):
13485 * progmodes/prolog.el (prolog):
13486 * progmodes/ps-mode.el (PostScript-edit):
13487 * progmodes/scheme.el (scheme):
13488 * progmodes/sh-script.el (sh-script):
13489 * progmodes/simula.el (simula):
13490 * progmodes/tcl.el (tcl):
13491 * textmodes/nroff-mode.el (nroff):
13492 * textmodes/reftex-vars.el (reftex-fontification-configurations):
13493 * textmodes/sgml-mode.el (sgml):
13494 * textmodes/texinfo.el (texinfo):
13495 Add :link (custom-group-link font-lock-faces) to defgroup.
13496
13497 * hi-lock.el (hi-lock): Rename this defgroup from
13498 `hi-lock-interactive-text-highlighting'. Change parent group from
13499 `faces' to `font-lock'. Add link to the manual.
13500 (hi-lock-mode, hi-lock-file-patterns-range)
13501 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
13502 `hi-lock-interactive-text-highlighting' to `hi-lock'.
13503 (hi-lock-faces): Add :group `faces'.
13504
13505 * cus-edit.el (custom-variable-prompt): Clarify the code.
13506
13507 * faces.el (face-read-string): Set the default value arg of
13508 completing-read.
13509
13510 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
13511
13512 * rfn-eshadow.el (file-name-shadow-properties)
13513 (file-name-shadow-tty-properties, file-name-shadow-mode):
13514 Remove autoloads, because the file is now preloaded.
13515
13516 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13517
13518 * printing.el (easy-menu-intern): Don't define.
13519 (pr-get-symbol): Use easy-menu-intern only if defined.
13520
13521 * simple.el (blink-matching-open): Simplify a bit.
13522 (completion-setup-function): Fix the case of partial-completion-mode
13523 when the minibuffer's contents start with "-".
13524 Obey completion-base-size-function even when
13525 minibuffer-completing-file-name is non-nil.
13526
13527 2005-11-16 Richard M. Stallman <rms@gnu.org>
13528
13529 * net/eudcb-ph.el (eudc-ph-open-session):
13530 Use set-process-query-on-exit-flag.
13531
13532 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
13533
13534 * international/ucs-tables.el (ucs-set-table-for-input):
13535 Use make-local-variable, not make-variable-buffer-local.
13536
13537 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
13538 Improve warning message text.
13539
13540 * savehist.el (savehist-save-hook): Add :group.
13541
13542 * menu-bar.el (menu-bar-help-menu):
13543 Rename Find Extra Packages to External Packages.
13544
13545 * cus-edit.el (Custom-reset-standard): Verify that
13546 :custom-standard-value prop exists before calling it.
13547
13548 * apropos.el (apropos-calc-scores): Use apropos-pattern.
13549
13550 2005-11-16 Martin Rudalics <rudalics@gmx.at>
13551
13552 * wid-edit.el (color): Enclose %t in %{...%}.
13553
13554 * cus-edit.el (face): Enclose %t in %{...%}.
13555
13556 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
13557
13558 * savehist.el (savehist-mode-hook): Re-add the var.
13559 (savehist-mode): Use it.
13560
13561 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13562
13563 * textmodes/flyspell.el: Fix commenting convention.
13564 Remove unnecessary leading * in custom docstrings.
13565 (flyspell-emacs): Remove unused var.
13566 (flyspell-delete-region-overlays): Use remove-overlays.
13567 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
13568 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
13569 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
13570 (flyspell-debug-signal-word-checked): Use with-current-buffer.
13571 (make-flyspell-overlay): Don't locally reuse a global name.
13572 (flyspell-highlight-incorrect-region)
13573 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
13574 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
13575 (flyspell-notify-misspell): Remove unused args `start' and `end'.
13576 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
13577 Wrap calls to accept-process-output inside with-local-quit since it's
13578 often called from a post-command-hook.
13579 (flyspell-correct-word, flyspell-auto-correct-word):
13580 Use ispell-send-string.
13581 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
13582
13583 * calendar/diary-lib.el (diary-list-entries): Also hide the
13584 terminating newline.
13585
13586 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
13587
13588 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
13589 window-system, to allow fonts on tty.
13590
13591 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
13592
13593 * progmodes/gud.el (gud-speedbar-item-info): New function.
13594 (gud-install-speedbar-variables): Use it to display data type
13595 of watch expression as a tooltip in speedbar.
13596
13597 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
13598
13599 * font-core.el (global-font-lock-mode): Add :version keyword,
13600 because default was changed.
13601
13602 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
13603
13604 * startup.el (command-line): Use `custom-reevaluate-setting' for
13605 `file-name-shadow-mode'.
13606
13607 * loadup.el: Preload rfn-eshadow.
13608
13609 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
13610 Add :version keyword.
13611 (file-name-shadow-properties, file-name-shadow-tty-properties)
13612 (file-name-shadow): Add :version keyword.
13613
13614 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
13615 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
13616 in the custom-group property of the symbol frames and the fringe
13617 group got no link to its parent group frames.
13618 Doc fix.
13619
13620 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
13621
13622 * progmodes/gud.el (gud-stop-subjob): New function.
13623 (gud-menu-map, gud-tool-bar-map): Use it.
13624
13625 2005-11-16 Kim F. Storm <storm@cua.dk>
13626
13627 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
13628 than kill it.
13629 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
13630 to a more useful/logical place.
13631
13632 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
13633
13634 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
13635 go buttons complementary.
13636
13637 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13638
13639 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
13640 (rfn-eshadow-sifn-equal): New function.
13641 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
13642
13643 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
13644
13645 * viper-utils.el (viper-non-word-characters-reformed-vi):
13646 Quote `-' in string.
13647
13648 * viper.el (viper-emacs-state-mode-list): Ensure that
13649 rcirc-mode buffers come up in Emacs state.
13650
13651 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
13652 operation.
13653
13654 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
13655
13656 * term.el (term-termcap-format): Fix typos.
13657 (term-down): Fix the negative argument case.
13658
13659 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
13660
13661 * progmodes/gdb-ui.el: Remove face-alias left over from change on
13662 2005-08-15.
13663 (gdb-ann3): New command gud-go.
13664 (menu): Accomodate gdb-mi.el.
13665 (gdb-assembler-custom): Make buffer of selected window current
13666 so that set-window-point works.
13667
13668 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
13669 buttons and include new ones.
13670
13671 2005-11-16 Kim F. Storm <storm@cua.dk>
13672
13673 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
13674 (gud-menu-map): Use it.
13675
13676 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
13677
13678 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
13679 that works correctly for Custom and that does not override a user
13680 who disables it.
13681
13682 * help-mode.el (help-make-xrefs, help-xref-on-pp)
13683 (help-xref-interned, help-follow): Make hyperlinks for variables
13684 that are unbound, but have a non-nil variable-documentation property.
13685
13686 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
13687 mode hook. (It conflicted with defcustoms for some mode hooks.)
13688 Use the `variable-documentation' property to give the mode hook a
13689 docstring and expand that docstring.
13690
13691 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
13692
13693 * savehist.el (savehist-mode): Don't bother with
13694 `custom-set-minor-mode'.
13695 (savehist-coding-system): Check XEmacs version.
13696 (history-length): Declare also at run time.
13697 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
13698 Don't set the customize state.
13699 (savehist-minibuffer-hook): Special case for when
13700 minibuffer-history-variable is equal to t.
13701
13702 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * files.el (write-file): Refresh VC status.
13705
13706 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
13707 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
13708 than fundamental-mode to see if the mode was set.
13709
13710 2005-11-14 Romain Francoise <romain@orebokech.com>
13711
13712 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
13713 dummy function in `eval-when-compile' to avoid compiler warning.
13714 Require `man' at compile time.
13715
13716 2005-11-14 Jay Belanger <belanger@truman.edu>
13717
13718 * calc-alg.el (calcFunc-write-out-power): Rename it to
13719 calcFunc-powerexpand.
13720 (math-write-out-power): Rename it to math-powerexpand; have it
13721 handle negative exponents.
13722 (calc-writeoutpower): Rename it to calc-powerexpand.
13723
13724 * calc-ext.el: Change calcFunc-writeoutpower and
13725 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
13726 autoloads.
13727 Add calcFunc-ldiv to autoloads.
13728
13729 * calc-arith.el (calcFunc-ldiv): New function.
13730
13731 * calc.el (calc-left-divide): New function.
13732
13733 2005-11-14 Juri Linkov <juri@jurta.org>
13734
13735 * cus-edit.el (custom-variable-prompt): Set the default value arg
13736 of completing-read.
13737
13738 * cus-dep.el (custom-make-dependencies): Reverse the list of
13739 found dependencies.
13740
13741 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
13742
13743 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
13744 Highlighting" entry, it is on by default now.
13745 (menu-bar-options-save): Do not save global-font-lock-mode.
13746
13747 2005-11-13 Richard M. Stallman <rms@gnu.org>
13748
13749 * textmodes/flyspell.el (flyspell-large-region):
13750 Call flyspell-accept-buffer-local-defs.
13751
13752 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
13753
13754 * textmodes/flyspell.el (flyspell-notify-misspell):
13755 Fix misspelling of "Misspelling".
13756 (flyspell-process-localwords): New function.
13757 (flyspell-large-region): Call flyspell-process-localwords and
13758 flyspell-delete-region-overlays.
13759 (flyspell-delete-region-overlays): New function.
13760 (flyspell-delete-all-overlays): Call that.
13761
13762 2005-11-13 Richard M. Stallman <rms@gnu.org>
13763
13764 * help.el (help-for-help-internal): Improve doc of C-h a.
13765 (describe-key): Improve prompt; doc fix.
13766
13767 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
13768
13769 * vc-svn.el (vc-svn-registered): Catch all errors.
13770
13771 * cus-dep.el (custom-make-dependencies): Typo.
13772
13773 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
13774
13775 * net/tramp-util.el (top): Fix compilation warning.
13776
13777 2005-11-13 Kim F. Storm <storm@cua.dk>
13778
13779 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
13780
13781 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
13782
13783 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
13784 (gud-speedbar-buttons): Match on "const char *" too.
13785
13786 * progmodes/gdb-ui.el (gdb-var-create-handler)
13787 (gdb-var-list-children-handler): Match on "const char *" too.
13788 (gdb-var-evaluate-expression-handler): Match on empty string.
13789 (gdb-var-update-handler): Only call
13790 gdb-var-evaluate-expression-handler when required.
13791
13792 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
13793
13794 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
13795 selected window. This still doesn't work for speedbar.
13796 (gud-speedbar-buttons): Handle string expressions properly.
13797
13798 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
13799 (gdb-var-create-handler): Handle string expressions properly.
13800 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
13801 Handle string expressions properly. Move "type" field into regexp.
13802
13803 2005-11-12 Karl Fogel <kfogel@red-bean.com>
13804
13805 * bookmark.el (bookmark-maybe-message): New function to reduce
13806 code duplication: invokes `message' iff baud-rate is high enough.
13807 (bookmark-write-file): Use above instead of an inline conditional.
13808 (bookmark-load): Same.
13809
13810 2005-11-12 Karl Fogel <kfogel@red-bean.com>
13811
13812 * bookmark.el (bookmark-write-file): Don't visit the destination
13813 file, just write the data to it using write-region. This is
13814 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
13815 change to avoid visiting the file in the first place.
13816
13817 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
13818
13819 * hi-lock.el (hi-lock-mode): Set the default value of
13820 font-lock-defaults.
13821
13822 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
13823
13824 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
13825 arg to `file-attributes'.
13826 (find-lisp-format): The UID and GID can now be strings.
13827
13828 2005-11-12 Kim F. Storm <storm@cua.dk>
13829
13830 * help.el (help-map): Bind C-h d to apropos-documentation.
13831
13832 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
13833 when point is at end-of-buffer.
13834
13835 * apropos.el (apropos-match-face): Doc fix.
13836 (apropos-sort-by-scores): Add new choice `verbose'.
13837 (apropos-documentation-sort-by-scores): New defcustom.
13838 (apropos-pattern): Now contains the pattern entered by the user.
13839 (apropos-pattern-quoted): New defvar.
13840 (apropos-regexp): New defvar, containing the regexp corresponding
13841 to apropos-pattern.
13842 (apropos-all-words-regexp): Rename from apropos-all-regexp.
13843 (apropos-read-pattern): New defun. Use it to read pattern arg in
13844 interactive calls; returns list of words for a word list, and
13845 string for a regexp.
13846 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
13847 parses a list of words or regexp as returned by apropos-read-pattern.
13848 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
13849 (apropos-score-doc): Return a very high score if the string
13850 entered by the user matches literally.
13851 (apropos-variable): Doc fix. Use apropos-read-pattern.
13852 (apropos-command): Doc fix. Use apropos-read-pattern and
13853 apropos-parse-pattern. Call apropos-print with nosubst=t.
13854 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
13855 apropos-parse-pattern.
13856 (apropos-documentation): Doc fix. Use apropos-read-pattern and
13857 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
13858 apropos-documentation-sort-by-scores. Call apropos-print with
13859 nosubst=t.
13860 (apropos-documentation-internal): Pass doc string through
13861 substitute-key-definition before adding text properties.
13862 Highlight substring matching literal user input if possible.
13863 (apropos-documentation-check-doc-file): Remove locals beg and end.
13864 Fix calculation of score (as added twice). Pass doc string through
13865 substitute-key-definition before adding text properties.
13866 (apropos-documentation-check-elc-file): Pass doc string through
13867 substitute-key-definition before adding text properties.
13868 Highlight substring matching literal user input if possible.
13869 (apropos-print): Add new arg NOSUBST; if set, command and variable
13870 doc strings have already been passed through substitute-key-definition.
13871 Add code to handle apropos-accumulator items without score element
13872 for backwards compatibility (e.g. with woman package).
13873 Only show scores if apropos-sort-by-scores is `verbose'.
13874
13875 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13876
13877 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
13878 Add jka-compr-load-suffixes to load-suffixes.
13879
13880 * jka-compr.el: Require jka-cmpr-hook.
13881 (jka-compr-info-compress-message, jka-compr-info-compress-program)
13882 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
13883 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
13884 (jka-compr-info-can-append, jka-compr-info-strip-extension)
13885 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
13886 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
13887 (jka-compr-uninstall): Remove entries from
13888 jka-compr-added-to-file-coding-system-alist after they are used.
13889 (jka-compr-error): Remove unused var `curbuf'.
13890 (jka-compr-file-local-copy): Remove unused var `notfound'.
13891
13892 2005-11-10 Romain Francoise <romain@orebokech.com>
13893
13894 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
13895
13896 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
13897
13898 * progmodes/gud.el (gud-menu-map): Move parentheses.
13899 (gdb): New command gud-pv.
13900
13901 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13902
13903 * tar-mode.el: Remove spurious or unnecessary leading stars
13904 in docstrings.
13905 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
13906 (tar-parse-octal-integer-safe): Use mapc.
13907 (tar-header-block-summarize): Remove unused var `ck'.
13908 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
13909 cleared before. Obey default-enable-multibyte-characters.
13910 Use mapconcat. Simplify setting of tar-header-offset.
13911 (tar-mode-map): Move initialization inside delcaration.
13912 (tar-flag-deleted): Use `abs'.
13913 (tar-expunge-internal): Remove unused var `line'.
13914 (tar-expunge-internal): Don't hardcode point-min==1.
13915 (tar-expunge): Widen while doing set-buffer-multibyte.
13916 (tar-rename-entry): Use file-name-coding-system.
13917 (tar-alter-one-field): Don't hardcode point-min==1.
13918 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
13919 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
13920
13921 2005-11-10 Masatake YAMATO <jet@gyve.org>
13922
13923 * add-log.el (add-log-current-defun): Handle class::method
13924 notation of c++. Fix incorrect comment.
13925
13926 2005-11-10 Alan Mackenzie <acm@muc.de>
13927
13928 * help-fns.el (describe-variable): Make C-h v work when a variable
13929 has variable documentation yet is unbound.
13930
13931 2005-11-10 Masatake YAMATO <jet@gyve.org>
13932
13933 * man.el (Man-highlight-references): Set an empty
13934 string to `Man-arguments' if it is nil.
13935 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
13936
13937 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13938
13939 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
13940 commenting conventions.
13941
13942 * cus-dep.el (custom-make-dependencies): Simplify.
13943 Better follow the commenting conventions.
13944
13945 2005-11-09 Richard M. Stallman <rms@gnu.org>
13946
13947 * apropos.el (apropos-pattern): Rename from apropos-regexp.
13948 (apropos-orig-pattern): Rename from apropos-orig-regexp.
13949 All uses changed.
13950 (apropos-rewrite-regexp): Doc fix.
13951 (apropos-variable, apropos-command, apropos, apropos-value):
13952 Change prompt; carry through the argument renaming.
13953
13954 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
13955
13956 * find-lisp.el: Require dired.
13957 (find-lisp-find-dired-internal): Do not call
13958 `abbreviate-file-name' on DIR.
13959
13960 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
13961
13962 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
13963
13964 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
13965
13966 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
13967 when using the speedbar.
13968 (gdb): New command gud-pp.
13969 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
13970
13971 2005-11-09 Juri Linkov <juri@jurta.org>
13972
13973 * replace.el (occur-excluded-properties): New defcustom.
13974 (occur-1, occur-engine, occur-accumulate-lines): Use it.
13975
13976 2005-11-08 Jay Belanger <belanger@truman.edu>
13977
13978 * calc/calc-units.el (math-convert-units): Replace any composite
13979 unit by its definition.
13980
13981 2005-11-08 Lars Hansen <larsh@soem.dk>
13982
13983 * emacs-lisp/autoload.el (update-directory-autoloads):
13984 Add obsolete function alias.
13985
13986 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13987
13988 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
13989 comment-indent-function.
13990 (lisp-comment-indent): Replace by an alias for comment-indent-default.
13991
13992 * reveal.el (reveal-post-command): Rework the handling of
13993 reveal-open-spots, so as to be more reliable. There were several
13994 tricky corner cases where an open spot might be lost, or where
13995 a closed spot might end up on the list of open spots.
13996 Only reveal text that's ellipsised.
13997
13998 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
13999
14000 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
14001
14002 2005-11-07 John Paul Wallington <jpw@gnu.org>
14003
14004 * ibuffer.el (ibuffer): Search iconified frames too when
14005 getting Ibuffer buffer's window.
14006
14007 2005-11-06 Richard M. Stallman <rms@gnu.org>
14008
14009 * progmodes/compile.el (compilation-internal-error-properties):
14010 save-excursion around the computation of MARKER.
14011
14012 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
14013
14014 * textmodes/flyspell.el (flyspell-external-point-words):
14015 flyspell-get-word returns a list, not just a string.
14016
14017 2005-11-06 John Paul Wallington <jpw@pobox.com>
14018
14019 * ibuffer.el (ibuffer): Search all visible frames when getting
14020 Ibuffer buffer's window.
14021
14022 2005-11-07 Masatake YAMATO <jet@gyve.org>
14023
14024 * man.el (Man-reference-regexp): Accept spaces between
14025 `Man-name-regexp' and `Man-section-regexp'.
14026 (Man-apropos-regexp): New variable.
14027 (Man-abstract-xref-man-page): Use value for `Man-target-string'
14028 if available.
14029 (Man-highlight-references, Man-highlight-references0):
14030 Handle the case when `Man-arguments' includes "-k".
14031 (Man-highlight-references0): Rename the argument `TARGET-POS' to
14032 `TARGET'. `TARGET' can be a number, function or nil.
14033
14034 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
14035
14036 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
14037 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
14038 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
14039 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
14040 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
14041 (gdb-send-item): Use buffer-local-value and simplify.
14042
14043 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
14044
14045 * startup.el (command-line): Use `custom-reevaluate-setting' for
14046 `global-font-lock-mode'.
14047
14048 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
14049 by default, except in batch mode or when the -D option is given.
14050
14051 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
14052 specified keyword args on to `define-minor-mode'. Update docstring.
14053
14054 2005-11-05 Romain Francoise <romain@orebokech.com>
14055
14056 * replace.el (occur-engine): Add marker at end of line, too.
14057
14058 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
14059
14060 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
14061 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
14062 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
14063 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
14064 argument to all these routines, so the passphrase can be managed
14065 externally and passed in to the system.
14066 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
14067 pgg-add-passphrase-to-cache function.
14068
14069 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
14070 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
14071 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
14072 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
14073 argument to all these routines, so the passphrase can be managed
14074 externally and passed in to the system.
14075 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
14076 function.
14077
14078 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
14079
14080 * font-lock.el: Don't deal with font-lock-face-attributes here,
14081 move the code ...
14082
14083 * startup.el (command-line): ... here. Use face-spec-set instead
14084 of custom-declare-face.
14085
14086 * faces.el (face-spec-set): Reset the face if spec is not nil.
14087
14088 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14089
14090 * newcomment.el (comment-region-internal): Box more tightly in the
14091 common case where there's no TAB in the boxed text.
14092
14093 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14094
14095 * info.el (info-tool-bar-map): Use images prev-node, next-node and
14096 up-node.
14097
14098 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
14099
14100 * newsticker.el: Commentary updated. Code formatting changed.
14101 (newsticker-version): Change to "1.9".
14102 (newsticker, newsticker-feed): Doc fix.
14103 (newsticker-url-list): Doc fix. Add option "Weekly".
14104 (newsticker-retrieval-interval): Add option "Weekly".
14105 (newsticker-headline-processing): Doc fix.
14106 (newsticker-auto-mark-filter): Remove.
14107 (newsticker-auto-mark-filter-list): New.
14108 (newsticker-layout, newsticker-sort-method): Doc fix.
14109 (newsticker-hide-old-items-in-newsticker-buffer)
14110 (newsticker-heading-format, newsticker-item-format)
14111 (newsticker-desc-format): Doc fix.
14112 (newsticker-show-all-rss-elements): Remove.
14113 (newsticker-show-all-news-elements): New.
14114 (newsticker-faces, newsticker-ticker): Doc fix.
14115 (remove-from-invisibility-spec): Code formatting.
14116 (newsticker--process-ids): New.
14117 (newsticker-mode): Doc fix.
14118 (newsticker-mode): Change mode-line-format.
14119 (newsticker-start): Remove debug output.
14120 (newsticker-start-ticker): Doc fix. Add autoload cookie.
14121 (newsticker-w3m-show-inline-images): Code formatting.
14122 (newsticker-next-item): Call `force-mode-line-update'.
14123 (newsticker-previous-item): Call `force-mode-line-update'.
14124 (newsticker-next-feed): Call `force-mode-line-update'.
14125 (newsticker-previous-feed): Call `force-mode-line-update'.
14126 (newsticker-mark-all-items-at-point-as-read): Code formatting.
14127 (newsticker-show-old-items): Do not show descs.
14128 (newsticker-hide-entry): Hide too much.
14129 (newsticker-hide-entry, newsticker-show-entry)
14130 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
14131 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
14132 (newsticker-toggle-auto-narrow-to-item): Code formatting.
14133 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
14134 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
14135 (newsticker-get-news): Call `force-mode-line-update'.
14136 Collect process ids.
14137 (newsticker--sentinel): Change coding system handling.
14138 Move image retrieval to new functions newsticker--get-logo-url-*.
14139 Move feed parsing to new functions newsticker--parse-*.
14140 Update list of process ids.
14141 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
14142 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
14143 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
14144 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
14145 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
14146 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
14147 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
14148 (newsticker--decode-coding-string): Remove.
14149 (newsticker--decode-numeric-entities): Check input. Format code.
14150 (newsticker--remove-whitespace): Check input.
14151 (newsticker--do-forget-preformatted): Doc fix.
14152 (newsticker--decode-rfc822-date): Allow for missing time.
14153 (newsticker--update-process-ids): New.
14154 (newsticker--image-sentinel): Change comment.
14155 (newsticker--image-read): Change error message.
14156 (newsticker--imenu-goto): Doc fix. Show headline title.
14157 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
14158 (newsticker--buffer-do-insert-text): Clean whitespace in
14159 html-rendered headline title. Code formatting.
14160 Call `newsticker--buffer-print-extra-elements'.
14161 (newsticker--buffer-print-extra-element): Remove.
14162 (newsticker--buffer-print-extra-elements): New.
14163 (newsticker--buffer-do-print-extra-element): New.
14164 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
14165 large sizes.
14166 (newsticker--run-auto-mark-filter)
14167 (newsticker--do-run-auto-mark-filter):
14168 Use `newsticker-auto-mark-filter-list'.
14169
14170 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
14171
14172 * net/rcirc.el: Use split-string OMIT-NULLS argument.
14173 (rcirc-print): Force redisplay before running hooks. Do long
14174 buffer truncation after making new text read-only. Deal with nil
14175 text when decoding strings. If TARGET is nil, use either the
14176 currently selected buffer, if it is an rcirc buffer and of the
14177 same process or the process buffer.
14178 (rcirc-mode): Remove header-line. Recompute short buffer names.
14179 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
14180 (rcirc-short-buffer-name): Add variable.
14181 (rcirc-kill-buffer-hook): Recompute short buffer names.
14182 Remove nick from private channel.
14183 (rcirc-send-input): Send command text to current-buffer.
14184 Don't clear overlay arrow here.
14185 (rcirc-short-buffer-name): Return a short buffer name.
14186 (rcirc-update-short-buffer-names, rcirc-abbreviate)
14187 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
14188 buffer-name abbreviations.
14189 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
14190 Do not touch nick-table when killing a parted channel.
14191 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
14192 Clear arrow from current buffer if it is now hidden.
14193 (rcirc-current-buffer): Add variable.
14194 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
14195 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
14196 Remove -face from names.
14197 (rcirc-update-activity-string): Print "DND" when globally ignoring
14198 activity.
14199 (rcirc-ignore-buffer-activity-flag): Rename from
14200 rcirc-ignore-channel-activity.
14201 (rcirc-ignore-all-activity-flag): Doc fix.
14202 (rcirc-channels): Remove variable.
14203 (rcirc-kill-buffer-hook):
14204 (rcirc-get-buffer-create): Add nick to private channel.
14205 (rcirc-multiline-edit-submit): Remove tabs.
14206 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
14207 folded.
14208 (rcirc-remove-nick-channel): Bug fix.
14209 (rcirc-toggle-ignore-buffer-activity): Rename from
14210 rcirc-toggle-ignore-channel-activity.
14211 (rcirc-record-activity): Add buffers to the front of the list.
14212 (rcirc-update-activity): Remove killed buffers from list.
14213 (rcirc-process-server-response-1): Remove last argument if it is
14214 null before calling handler.
14215 (rcirc): Add "rcirc" defcustom prefix.
14216 (rcirc-prompt): Simplify default prompt.
14217 Use custom-initialize-default.
14218 (rcirc-private-chats): Remove variable.
14219 (rcirc-prompt): Change initialization.
14220 (rcirc-version): Remove function.
14221 (rcirc-id-string): Add constant.
14222 (rcirc-last-buffer): Remove variable.
14223 (rcirc-buffer-alist): Add variable.
14224 (rcirc-connect): Update variable setup.
14225 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
14226 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
14227 default.
14228 (rcirc-handler-generic): Trigger activity.
14229 (rcirc-send-message): Create the buffor of the target.
14230 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
14231 (rcirc-get-buffer): Just return nil if there is no matching buffer.
14232 (rcirc-multiline-edit-cancel): Remove function.
14233 (rcirc-set-last-buffer): Remove function.
14234 (rcirc-get-any-buffer): Add function.
14235 (rcirc-join-channels): Don't print /join text.
14236 (rcirc-toggle-ignore-channel-activity): Add and update echo area
14237 messages.
14238 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
14239 (rcirc-handler-NOTICE): Recognize CTCP responses.
14240 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
14241 constructing TOPIC string for buffers we are not JOINed.
14242 (rcirc-handler-CTCP-response): Add handler.
14243 (rcirc-multiline-edit-submit): Restore the window-configuration
14244 before adjusting point.
14245 (rcirc): Add customization group.
14246 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
14247 (rcirc-user-full-name, rcirc-startup-channels-alist)
14248 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
14249 (rcirc-ignore-all-activity-flag, rcirc-time-format)
14250 (rcirc-input-ring-size, rcirc-read-only-flag)
14251 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
14252 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
14253 Change defvar to defcustom.
14254 (rcirc-update-prompt): Add optional ALL arg, which will update
14255 prompts in all rcirc buffers. Regexp quote replacement text.
14256 (rcirc-fill-column): Accept frame-width as a value.
14257 (rcirc-set-changed): Add function.
14258 (rcirc-next-active-buffer): Write more meaningful messages.
14259 (rcirc-faces): Add customization group.
14260 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
14261 (rcirc-nick-in-message-face, rcirc-prompt-face)
14262 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
14263 (with-rcirc-process-buffer): Move before first usage.
14264 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
14265 (rcirc-debug-flag): Rename from `rcirc-log-p'.
14266 (rcirc-debug): Rename from `rcirc-log'.
14267 (rcirc-format-response-string): Do not print `-' chars for a
14268 NOTICE with no sender. Simplify output of server responses.
14269
14270 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
14271
14272 (rcirc-browse-url-map, rcirc-browse-url-at-point)
14273 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
14274 Make urls mouse and RET clickable.
14275
14276 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
14277
14278 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
14279
14280 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
14281
14282 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
14283 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
14284 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
14285 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
14286 argument to all these routines, so the passphrase can be managed
14287 externally and passed in to the system.
14288 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
14289 pgg-add-passphrase-to-cache function.
14290
14291 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
14292 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
14293 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
14294 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
14295 argument to all these routines, so the passphrase can be managed
14296 externally and passed in to the system.
14297 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
14298 function.
14299
14300 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
14301
14302 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
14303 from goto-address-url-regexp.
14304
14305 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
14306
14307 * textmodes/org.el (org-read-date, org-goto-calendar)
14308 (org-recenter-calendar, org-agenda-goto-calendar):
14309 Temporarily clear `calendar-move-hook'.
14310
14311 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
14312
14313 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
14314 merging.
14315
14316 * ediff-util.el (ediff-previous-difference): Don't skip regions that
14317 have merge clashes.
14318
14319 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14320
14321 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
14322 Undo previous change.
14323
14324 * startup.el (command-line): Use `custom-reevaluate-setting' for
14325 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
14326 tty-register-default-colors on Mac.
14327
14328 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
14329
14330 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
14331 (gdb-buffer-type): Make it automatically buffer local...
14332 (gdb-get-create-buffer): ...and set it accordingly.
14333 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
14334 actually work.
14335
14336 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
14337
14338 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
14339 not red.
14340
14341 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
14342
14343 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
14344 case GUD buffer is not visible.
14345 (gdb-goto-breakpoint): Try to force display in source buffer.
14346 (gdb-frame-gdb-buffer): Copy other similar functions.
14347 (gdb-restore-windows): Don't display source if not asked for.
14348 (gdb-assembler-buffer-name): Don't capitalise.
14349
14350 2005-11-03 Richard M. Stallman <rms@gnu.org>
14351
14352 * wid-edit.el (key-sequence): New widget type.
14353
14354 * simple.el (set-mark-command-repeat-pop): New variable.
14355 (set-mark-command): Only interpret plan C-@ after a pop as a pop
14356 if set-mark-command-repeat-pop is true.
14357
14358 * info.el (Info-fontify-node): Don't display extra "see" if there
14359 already is one here.
14360
14361 * mouse.el: Fix special handling of DEL after dragging a region:
14362 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
14363 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
14364
14365 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
14366
14367 * textmodes/ispell.el (ispell-command-loop): Change `i' description
14368 not to assume it pertains to an affix.
14369
14370 * textmodes/flyspell.el (flyspell-post-command-hook):
14371 Bind deactivate-mark to prevent deactivation.
14372
14373 2005-11-03 Lars Hansen <larsh@soem.dk>
14374
14375 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
14376 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
14377 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
14378
14379 2005-11-03 Romain Francoise <romain@orebokech.com>
14380
14381 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
14382 Update copyright years.
14383
14384 2005-11-03 Sam Steingold <sds@gnu.org>
14385
14386 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
14387 Use system-type instead of window-system because window-system is not
14388 correctly defined during loadup.
14389
14390 2005-11-02 Mark A. Hershberger <mah@everybody.org>
14391
14392 * xml.el (xml-syntax-table): Allow xml.el to compile in XEmacs.
14393 (xml-parse-tag): Join strings separated by a comment properly.
14394
14395 2005-11-02 Andreas Schwab <schwab@suse.de>
14396
14397 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
14398
14399 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
14400
14401 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
14402 (byte-optimize-pure-func): Quote the eval'd value.
14403
14404 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
14405 Rename from perl-font-lock-syntactic-face-function.
14406 Change the calling convention so it can be used as a font-lock MATCHER.
14407 Do the parse-partial-sexp loop outselves.
14408 (perl-font-lock-syntactic-keywords): Use it.
14409 (perl-mode): Don't set font-lock-syntactic-face-function any more.
14410
14411 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
14412
14413 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
14414 disassembly buffer too.
14415 (gdb-exited): Remove overlay arrows when execution has finished.
14416 (gdb-info-frames-custom, gdb-info-threads-custom)
14417 (gdb-info-registers-custom): Don't add inappropriate text
14418 properties if inferior is not active.
14419
14420 2005-11-02 Glenn Morris <rgm@gnu.org>
14421
14422 * progmodes/fortran.el (fortran-blink-match):
14423 Use `blink-matching-delay'.
14424
14425 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
14426
14427 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
14428
14429 2005-11-02 Lars Hansen <larsh@soem.dk>
14430
14431 * net/tramp.el (tramp-action-out-of-band): Handle scp message
14432 "Permission denied".
14433
14434 2005-11-01 Richard M. Stallman <rms@gnu.org>
14435
14436 * textmodes/flyspell.el (flyspell-external-point-words):
14437 Pass nil to flyspell-get-word.
14438
14439 2005-11-02 Kim F. Storm <storm@cua.dk>
14440
14441 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
14442 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
14443
14444 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
14445
14446 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
14447 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
14448 (calendar-mouse-print-dates): Add optional `event' argument.
14449 Update interactive-spec.
14450 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
14451 Use `calendar-event-to-date' instead of `event'.
14452
14453 2005-11-02 Masatake YAMATO <jet@gyve.org>
14454
14455 * progmodes/ld-script.el (ld-script-builtins):
14456 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
14457 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
14458 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
14459
14460 2005-11-01 Romain Francoise <romain@orebokech.com>
14461
14462 * vc-sccs.el: Update copyright year.
14463 * ezimage.el: Likewise.
14464
14465 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
14466
14467 * info.el (Info-fontify-node): Use `string-width' for fontifying
14468 underlined titles.
14469
14470 2005-11-01 Juri Linkov <juri@jurta.org>
14471
14472 * info.el (Info-fontify-node): Downcase node header keywords Node,
14473 Prev, Next, Up before comparison.
14474 (Info-history): Insert absolute directory name, and put invisible
14475 property on it.
14476
14477 2005-11-01 Juri Linkov <juri@jurta.org>
14478
14479 * info.el (Info-file-supports-index-cookies): New variable.
14480 (Info-find-node-2): Check makeinfo version for index cookie support.
14481 (Info-index-nodes): Search for nodes with index cookies only when
14482 Info-file-supports-index-cookies is t. Otherwise, search nodes
14483 with "Index" in the node name.
14484 (Info-index-node): Search index cookie in the current node only when
14485 Info-file-supports-index-cookies is t. Otherwise, check the word
14486 "Index" in the node name.
14487 (Info-find-emacs-command-nodes): Remove code that searches nodes
14488 with "Index" node name in the top menu.
14489
14490 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
14491
14492 * progmodes/scheme.el (scheme-mode-variables): Use the default
14493 comment-indent-function.
14494
14495 * faces.el (face-attribute): Handle the case where a face inherits from
14496 a non-existent face.
14497
14498 * simple.el (eval-expression-print-format): Use lisp-readable syntax
14499 for octal and hexa output, and merge the char into the paren.
14500 (kill-new): Use push.
14501 (copy-to-buffer): Use with-current-buffer.
14502 (completion-setup-function): Move code in loop to remove redundancy.
14503 (minibuffer-local-must-match-map): Don't add bindings that duplicate
14504 those inherited from minibuffer-local-completion-map.
14505
14506 * savehist.el (savehist-mode) <defcustom>:
14507 Use custom-set-minor-mode if available.
14508 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
14509 and emit a message if applicable.
14510
14511 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
14512
14513 * savehist.el: Sync up to version 19.
14514 (savehist-mode): New minor mode.
14515 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
14516 (savehist-length): Remove (use history-length instead).
14517 (savehist-file-modes): Rename from savehist-modes.
14518 (savehist-save-hook, savehist-loaded): New vars.
14519 (savehist-load): Use savehist-mode. Try to smooth up transition from
14520 old format to new format.
14521 (savehist-install): Allow savehist-autosave-interval to be nil.
14522 (savehist-save): Run the new hook. Be more careful to only trim the
14523 history variables.
14524 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
14525 (savehist-printable): Print into a buffer rather than char-by-char.
14526
14527 2005-11-01 John Wiegley <johnw@newartisans.com>
14528
14529 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
14530 toggle-ignore keybinding (C-a). The author said it had been
14531 disabled much earlier due to a possible incompatibility, but after
14532 many months of usage I have encountered no problems (and it is a
14533 rather useful option, especially for switching to " *temp*").
14534
14535 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
14536 support for OS/X's AddressBook, by calling out to the open source
14537 program "contacts" (installable through Fink).
14538
14539 * net/eudc.el (eudc-expand-inline): If the
14540 `eudc-multiple-match-handling-method' is set to `all', delete the
14541 query string before inserting the query result.
14542
14543 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
14544 flag, to prevent Eshell from using the system ls when
14545 `eshell-ls-insert-directory' is in used.
14546 (eshell-ls-insert-directory): Disable font-lock in directory
14547 buffer so that Eshell's own fontification is seen. This broke
14548 recently due to changes in font-lock, so this goes back to version
14549 21 behavior.
14550
14551 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
14552
14553 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
14554 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
14555 (gdb-many-windows): Doc fix.
14556
14557 2005-10-31 Romain Francoise <romain@orebokech.com>
14558
14559 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
14560
14561 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
14562
14563 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
14564 that global-font-lock-mode can be enabled by default.
14565
14566 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
14567 (font-lock-add-keywords, font-lock-remove-keywords)
14568 (font-lock-fontify-buffer): Remove autoload cookies.
14569
14570 * jit-lock.el (jit-lock-register): Likewise.
14571
14572 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
14573
14574 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
14575
14576 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
14577 intact if there is no gud-comint-buffer.
14578
14579 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
14580
14581 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
14582 old prompt comint-prompt-read-only is t and GDB commands are
14583 issued from tool bar etc.
14584
14585 2005-10-31 Masatake YAMATO <jet@gyve.org>
14586
14587 * vc.el (vc-directory-exclusion-list): Add "{arch}".
14588
14589 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
14590
14591 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
14592 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
14593
14594 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
14595
14596 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
14597 starting at beginning of line. Fontification is messed up when
14598 `open-paren-in-column-0-is-defun-start' set to t.
14599 Reported by John Paul Wallington <jpw@pobox.com>.
14600
14601 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
14602
14603 * comint.el (comint-send-input): Call `comint-update-fence' when
14604 `comint-process-echoes' and `comint-prompt-read-only' are both
14605 non-nil, to avoid leftover read-only newline.
14606
14607 2005-10-30 Richard M. Stallman <rms@gnu.org>
14608
14609 * textmodes/flyspell.el (flyspell-external-point-words):
14610 Detect when WORD can't be checked properly because
14611 flyspell-get-word finds just part of it, and move on.
14612
14613 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
14614 boundarychar for Polish.
14615 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
14616 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
14617
14618 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
14619
14620 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
14621 (gdb-registers-font-lock-keywords): Delete.
14622 (gdb-registers-mode): Don't fontify.
14623 (gdb-info-registers-custom): Use text properties instead as, in
14624 future, changed register values will use font-lock-warning-face.
14625 (gdb-local-font-lock-keywords): Rename to...
14626 (gdb-locals-font-lock-keywords): ...for consistency.
14627
14628 2005-10-30 Andre Spiegel <spiegel@gnu.org>
14629
14630 * vc.el (vc-switch-backend): Better error message if the buffer is
14631 not visiting a file under version control.
14632
14633 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
14634
14635 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
14636
14637 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
14638 ~/.emacs.d/.emacs.
14639
14640 2005-10-29 Richard M. Stallman <rms@gnu.org>
14641
14642 * replace.el (occur-mode-mouse-goto): Always go to other window.
14643 (occur-mode-goto-occurrence): Always switch in same window.
14644
14645 * simple.el (undo): Display message at end, not at start.
14646
14647 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
14648 New arg REUSE-CELL.
14649 (cancel-timer-internal): New function.
14650 (timer-event-handler): Use cancel-timer-internal,
14651 and pass the cell it returns to timer-activate...
14652
14653 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
14654 (jit-lock-deferred-fontify, jit-lock-context-fontify)
14655 (jit-lock-after-change): Test memory-full.
14656
14657 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
14658
14659 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
14660 part of the decoded armor to find the key-identifier.
14661 (pgg-gpg-lookup-key-owner): New function to return the
14662 human-readable identifier of a key owner.
14663 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
14664 key itself.
14665 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
14666 the key value) if we have a key and can match it against a secret
14667 key. Also, added a note pointing out fact that the prompt only
14668 indicates the first matching key.
14669
14670 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
14671 pgg-decrypt-region.
14672 (pgg-pending-timers): A new hash for tracking the passphrase cache
14673 timers, so that new ones supercede old ones.
14674 (pgg-add-passphrase-to-cache): Rename from
14675 `pgg-add-passphrase-cache' to reduce confusion (all callers
14676 changed). Modified to cancel old timers when new ones are added.
14677 (pgg-remove-passphrase-from-cache): Rename from
14678 `pgg-remove-passphrase-cache' to reduce confusion (all callers
14679 changed). Modified to cancel old timers when their keys are
14680 removed from the cache.
14681 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
14682 XEmacs, an indirection to delete-itimer.
14683 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
14684 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
14685 users can only check cache without risk of prompting. Correct bug in
14686 notruncate behavior.
14687 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
14688 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
14689 Add informative docstrings.
14690 (pgg-decrypt): Convey provided passphrase in subordinate call to
14691 pgg-decrypt-region.
14692
14693 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
14694 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
14695 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
14696 `passphrase' argument, so the passphrase can be managed externally
14697 and then passed in to the system.
14698
14699 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
14700 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
14701 so the passphrase cache can be used reliably with identifiers
14702 besides a pgp packet's key id.
14703
14704 * pgg-gpg.el (pgg-pgp-encrypt-region)
14705 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
14706 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
14707 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
14708 argument to all these routines, so the passphrase can be managed
14709 externally and passed in to the system.
14710
14711 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
14712 `notruncate' argument, so the passphrase cache can be used
14713 reliably with identifiers besides a pgp packet's key id.
14714
14715 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
14716
14717 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
14718 symmetric encryption.
14719 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
14720 encrypted session key.
14721 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
14722 message ask for the passphrase in a proper way.
14723
14724 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
14725 New user commands for symmetric encryption.
14726
14727 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
14728
14729 * textmodes/conf-mode.el (conf-assignment-sign)
14730 (conf-assignment-regexp): Fix docstrings.
14731 (conf-mode-initialize): New function.
14732 (conf-mode): Remove optional args. Use delay-mode-hooks to
14733 recognize recursive calls.
14734 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
14735 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
14736 (conf-xdefaults-mode): Use define-derived-mode and
14737 conf-mode-initialize.
14738
14739 2005-10-29 Romain Francoise <romain@orebokech.com>
14740
14741 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
14742
14743 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
14744
14745 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
14746 part of the decoded armor to find the key-identifier.
14747 (pgg-gpg-lookup-key-owner): New function to return the
14748 human-readable identifier of a key owner.
14749 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
14750 key itself.
14751 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
14752 the key value) if we have a key and can match it against a secret
14753 key. Also, added a note pointing out fact that the prompt only
14754 indicates the first matching key.
14755
14756 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
14757 pgg-decrypt-region.
14758 (pgg-pending-timers): A new hash for tracking the passphrase cache
14759 timers, so that new ones supercede old ones.
14760 (pgg-add-passphrase-to-cache): Rename from
14761 `pgg-add-passphrase-cache' to reduce confusion (all callers
14762 changed). Modified to cancel old timers when new ones are added.
14763 (pgg-remove-passphrase-from-cache): Rename from
14764 `pgg-remove-passphrase-cache' to reduce confusion (all callers
14765 changed). Modified to cancel old timers when their keys are
14766 removed from the cache.
14767 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
14768 XEmacs, an indirection to delete-itimer.
14769 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
14770 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
14771 users can only check cache without risk of prompting. Correct bug in
14772 notruncate behavior.
14773 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
14774 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
14775 Add informative docstrings.
14776 (pgg-decrypt): Convey provided passphrase in subordinate call to
14777 pgg-decrypt-region.
14778
14779 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
14780
14781 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
14782 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
14783 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
14784 `passphrase' argument, so the passphrase can be managed externally
14785 and then passed in to the system.
14786
14787 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
14788 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
14789 so the passphrase cache can be used reliably with identifiers
14790 besides a pgp packet's key id.
14791
14792 * pgg-gpg.el (pgg-pgp-encrypt-region)
14793 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
14794 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
14795 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
14796 argument to all these routines, so the passphrase can be managed
14797 externally and passed in to the system.
14798
14799 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
14800 `notruncate' argument, so the passphrase cache can be used
14801 reliably with identifiers besides a pgp packet's key id.
14802
14803 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
14804
14805 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
14806 symmetric encryption.
14807 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
14808 encrypted session key.
14809 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
14810 message ask for the passphrase in a proper way.
14811
14812 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
14813 New user commands for symmetric encryption.
14814
14815 2005-10-28 Bill Wohler <wohler@newt.com>
14816
14817 * help-mode.el (help-url): New button type. Calls browse-url.
14818 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
14819 Similar to Info nodes: URL `url'.
14820 (help-make-xrefs): Create help-url buttons for
14821 help-xref-url-regexp matches.
14822
14823 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
14824
14825 * tool-bar.el (tool-bar-add-item-from-menu)
14826 (tool-bar-local-item-from-menu): Fix doc strings.
14827
14828 2005-10-28 Romain Francoise <romain@orebokech.com>
14829
14830 * ldefs-boot.el: Update.
14831
14832 * subr.el (locate-library): Move from help-fns.el.
14833 * help-fns.el (locate-library): Move to subr.el.
14834
14835 2005-10-28 Richard M. Stallman <rms@gnu.org>
14836
14837 * net/tramp.el (tramp-completion-mode): defvar moved up.
14838
14839 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
14840
14841 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
14842
14843 * files.el (find-file-noselect): Use %d to format large file size.
14844
14845 * bindings.el (mode-line-format): Add %e.
14846
14847 * loadup.el ("facemenu"): Load unconditionally.
14848 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
14849 ("x-dnd"): Load, when appropriate.
14850
14851 * startup.el (command-line): Call before-init-hook earlier.
14852 Warn about some bad characters in -u user name.
14853
14854 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
14855 (flyspell-external-point-words): Error if misspelled word is not found.
14856 Set flyspell-large-region-beg at end of word.
14857
14858 2005-10-28 Andreas Schwab <schwab@suse.de>
14859
14860 * view.el (View-revert-buffer-scroll-page-forward):
14861 Use view-page-size-default.
14862
14863 2005-10-28 Juri Linkov <juri@jurta.org>
14864
14865 * international/quail.el (quail-get-current-str): Translate last
14866 raw character for deterministic input methods.
14867
14868 2005-10-27 Jay Belanger <belanger@truman.edu>
14869
14870 * calc/calc-ext.el: Add functions to autoloads.
14871 (math-identity-matrix-p, math-ident-row-p): New functions.
14872
14873 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
14874 multiplication by an identity matrix; don't turn multiplication by
14875 an inverse matrix into division.
14876 (math-div-symbol-fancy): Replace division by matrices with
14877 multiplication by inverse.
14878
14879 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
14880
14881 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
14882 (calc-writeoutpower): New functions.
14883
14884 2005-10-27 Romain Francoise <romain@orebokech.com>
14885
14886 * replace.el (occur-engine): Include colon in mouse-face highlight.
14887
14888 * dired-x.el: Change Maintainer field.
14889
14890 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
14891
14892 * longlines.el (longlines-mode): Bind after-change-functions to
14893 nil during initial decoding and final encoding.
14894
14895 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
14896
14897 * term.el (term-emulate-terminal, term-handle-colors-array)
14898 (term-handle-ansi-escape): Specify the terminfo capabilities
14899 implemented.
14900
14901 2005-10-26 Richard M. Stallman <rms@gnu.org>
14902
14903 * info.el (Info-fontify-node): Fix detection of sentence-break
14904 before *Note.
14905
14906 2005-10-26 Romain Francoise <romain@orebokech.com>
14907
14908 * smerge-mode.el: Add `tools' to file keywords.
14909
14910 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
14911
14912 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
14913 when the fringe is not available.
14914
14915 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
14916 (def-gdb-auto-update-trigger): Simplify construction.
14917 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
14918 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
14919 defined explicitly.
14920 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
14921 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
14922 defined explicitly.
14923 (gdb-info-locals-custom): Remove as it's a no-op.
14924
14925 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
14926
14927 * longlines.el (longlines-mode): Remove narrowing before
14928 performing the initial decoding or final encoding.
14929
14930 2005-10-25 Romain Francoise <romain@orebokech.com>
14931
14932 * emacs-lisp/find-func.el (find-library-name): Also strip
14933 extension if library name ends in .el, to take advantage of
14934 `find-library-suffixes'.
14935
14936 2005-10-25 Richard M. Stallman <rms@gnu.org>
14937
14938 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
14939
14940 2005-10-25 Juri Linkov <juri@jurta.org>
14941
14942 * textmodes/texinfo.el (texinfo-mode): Change charset of one
14943 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
14944
14945 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14946
14947 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
14948 (blackbox-redefine-key): Add argument `map'.
14949
14950 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
14951 regions when moving the jit-lock-context-unfontify-pos boundary.
14952
14953 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
14954
14955 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
14956
14957 2005-10-25 Masatake YAMATO <jet@gyve.org>
14958
14959 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
14960
14961 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14962
14963 * play/blackbox.el (blackbox-redefine-key): New function.
14964 (blackbox-mode-map): Use it to remap existing bindings for cursor
14965 motion instead of binding literal keys.
14966
14967 2005-10-25 Glenn Morris <rgm@gnu.org>
14968
14969 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
14970 diary does not end in a newline. Do not assume a blank line at
14971 the start of the diary file.
14972
14973 2005-10-25 Kenichi Handa <handa@m17n.org>
14974
14975 * international/quail.el (quail-translate-key): If the input
14976 method is deterministic and failed to handle the last key, restart
14977 the key handling loop from an appropriate key.
14978
14979 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
14980
14981 * vc.el (vc-dired-mode): Extend comment for binding of
14982 `directory-listing-before-filename-regexp'.
14983
14984 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14985
14986 * textmodes/texinfo.el (texinfo-mode):
14987 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
14988 not to unnecessarily expose emacs-mule's internal char codes.
14989
14990 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
14991
14992 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
14993 Display hand pointer and help-echo on disabled icon too.
14994 (gdb-mouse-until): New function.
14995 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
14996
14997 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
14998
14999 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
15000 with 2005-10-23 change to doctor.el.
15001
15002 * finder.el (finder-mode-map): Add follow-link binding.
15003
15004 2005-10-25 Kim F. Storm <storm@cua.dk>
15005
15006 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
15007 to gdb-mouse-toggle-breakpoint-fringe.
15008 (gdb-mouse-toggle-breakpoint-margin): Rename from
15009 gdb-mouse-toggle-breakpoint. Fix doc.
15010 (gdb-mouse-toggle-breakpoint-fringe): New defun.
15011 (gdb-put-string): Add optional SPROPS arg. Add props to string.
15012 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
15013 string properties also for fringe breakpoint bitmaps.
15014
15015 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
15016
15017 * textmodes/org.el (org-start-icalendar-file): Fix format form.
15018
15019 2005-10-25 Masatake YAMATO <jet@gyve.org>
15020
15021 * simple.el (completion-common-substring):
15022 Use `completion-common-substring' prior to `completion-base-size'.
15023
15024 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
15025
15026 * savehist.el: Require CL while compiling.
15027 (savehist-history-variables): Remove.
15028 (savehist-save-minibuffer-history, savehist-additional-variables)
15029 (savehist-minibuffer-history-variables): New vars.
15030 (savehist-save): Use them.
15031 (savehist-uninstall, savehist-minibuffer-hook): New funs.
15032 (savehist-install): New fun, extracted from savehist-load.
15033 (savehist-load): Use them.
15034
15035 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15036
15037 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
15038 a dummy doc-string-elt property.
15039 (defalias, defvaralias, define-category): Add a docstring property.
15040
15041 * image.el (defimage):
15042 * widget.el (define-widget):
15043 * custom.el (defface, defcustom): Add `doc-string' declaration.
15044
15045 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
15046 (defadvice): Add `doc-string' declaration.
15047
15048 * emacs-lisp/byte-run.el (macro-declaration-function):
15049 Handle `doc-string' declarations.
15050 (define-obsolete-function-alias, define-obsolete-variable-alias):
15051 Add `doc-string' declaration.
15052
15053 2005-10-24 Kenichi Handa <handa@m17n.org>
15054
15055 * international/utf-7.el (utf-7): Add autoload cookie.
15056
15057 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
15058
15059 2005-10-24 Eli Zaretskii <eliz@gnu.org>
15060
15061 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
15062 list of directories passed to batch-update-autoloads. Add "." to
15063 the list of the echoed directories.
15064
15065 * pgg-def.el:
15066 * pgg-gpg.el:
15067 * pgg-parse.el:
15068 * pgg-pgp.el:
15069 * pgg-pgp5.el:
15070 * pgg.el: Moved here from the gnus subdirectory.
15071
15072 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
15073
15074 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
15075 in case comint-prompt-read-only is set to t.
15076
15077 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
15078 in case comint-prompt-read-only is set to t.
15079
15080 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
15081
15082 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
15083 Now a string.
15084 (icalendar-import-format): Handle CLASS, STATUS, URL.
15085 Rename `subject' to `summary'.
15086 (icalendar-import-format-summary): Rename from
15087 `icalendar-import-format-subject'.
15088 (icalendar-import-format-url, icalendar-import-format-status)
15089 (icalendar-import-format-class): New variables.
15090 (icalendar--rris): Take variable argument list.
15091 (icalendar--datestring-to-isodate): Remove unnecessary
15092 calendar-style check when converting dates with explicit month names.
15093 (icalendar-export-region): Change return type of conversion
15094 subroutines. Bury current buffer unless error occurred.
15095 (icalendar--convert-to-ical)
15096 (icalendar--parse-summary-and-rest): New functions.
15097 (icalendar--convert-ordinary-to-ical)
15098 (icalendar--convert-weekly-to-ical)
15099 (icalendar--convert-yearly-to-ical)
15100 (icalendar--convert-block-to-ical)
15101 (icalendar--convert-cyclic-to-ical)
15102 (icalendar--convert-anniversary-to-ical): Change return type.
15103 Strip trailing blanks from subject.
15104 (icalendar--convert-sexp-to-ical): Change return type.
15105 Strip trailing blanks from subject. Handle simple sexp
15106 entries as generated by icalendar.el.
15107 (icalendar--convert-float-to-ical)
15108 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
15109 (icalendar-import-file): Doc fix.
15110 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
15111 Correct call to icalendar--rris.
15112 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
15113 `summary'.
15114 (icalendar--add-diary-entry): Rename `subject' to `summary'.
15115
15116 2005-10-24 Romain Francoise <romain@orebokech.com>
15117
15118 * server.el (server-sentinel): Set query-on-exit flag to nil on
15119 new client processes (it isn't inherited from the server process).
15120
15121 * replace.el (occur-engine): Rearrange text properties.
15122
15123 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15124
15125 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
15126 case-fold-search is nil.
15127 (debug-help-follow): Use help-xref-interned directly.
15128
15129 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
15130
15131 * thumbs.el (thumbs-image-type): Add .pbm.
15132
15133 2005-10-23 Richard M. Stallman <rms@gnu.org>
15134
15135 * faces.el (inhibit-face-set-after-frame-default): New variable.
15136 (set-face-attribute): Bind it.
15137 (face-set-after-frame-default): Test it.
15138
15139 * help-fns.el (describe-simplify-lib-file-name): New function.
15140 (describe-function-1, describe-variable): Use it.
15141
15142 * faces.el (describe-face): Use describe-simplify-lib-file-name.
15143
15144 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
15145 Eliminate nil as possible value.
15146 (tooltip-hide-delay): Reduce internal-border-width.
15147
15148 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
15149 (menu-bar-file-menu) <new-file>: Likewise.
15150
15151 * simple.el (line-move-finish): Ignore fields computing LINE-END.
15152
15153 * international/mule.el (load-with-code-conversion):
15154 Pass full file name to `eval-buffer' unless preloading.
15155
15156 * textmodes/flyspell.el (flyspell-large-region):
15157 Call ispell-check-version.
15158
15159 * textmodes/ispell.el (ispell-local-dictionary-overridden):
15160 Fix the make-variable-buffer-local call that was supposed
15161 to be for this variable.
15162 (ispell-aspell-supports-utf8): Doc fix.
15163 (ispell-find-aspell-dictionaries): Preserve elements of
15164 ispell-dictionary-alist for dictionaries that aspell doesn't report.
15165 (ispell-aspell-find-dictionary): Return nil on error.
15166
15167 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
15168 (doctor-symptoms): Likewise.
15169
15170 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
15171
15172 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
15173
15174 * cus-edit.el (custom-button, custom-button-pressed): New vars.
15175 (custom-raised-buttons): Add :set spec.
15176 (custom-button-unraised, custom-button-pressed-unraised):
15177 New faces, so that custom-raised-buttons actually does something.
15178 (custom-mode): Use custom-button and custom-button-pressed.
15179
15180 * wid-edit.el (widget-specify-button): Don't ignore
15181 widget-mouse-face on graphic terminals.
15182 (widget-move-and-invoke): Cleanup.
15183
15184 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
15185
15186 * whitespace.el (whitespace-cleanup): Doc fix.
15187
15188 2005-10-23 Romain Francoise <romain@orebokech.com>
15189
15190 * emulation/viper.el (viper-set-hooks): Quote forms passed to
15191 `eval-after-load' to avoid evaluating their result.
15192
15193 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
15194
15195 * files.el (directory-listing-before-filename-regexp):
15196 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
15197
15198 * dired.el (dired-move-to-filename-regexp): Remove.
15199 All occurences replaced by `directory-listing-before-filename-regexp'.
15200
15201 * dired-x.el, locate.el, vc.el:
15202 Replace `dired-move-to-filename-regexp' by
15203 `directory-listing-before-filename-regexp'. In vc.el it is
15204 overwritten locally; maybe this can be handled in files.el too.
15205
15206 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
15207 replaced by `directory-listing-before-filename-regexp'.
15208
15209 2005-10-23 Andreas Schwab <schwab@suse.de>
15210
15211 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
15212 and eval-next-after-load.
15213
15214 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
15215
15216 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
15217 exist, create it.
15218
15219 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
15220
15221 * allout.el: Remove autoloads for mailcrypt and crypt++.
15222 Require pgg, pgg-gpg during compilation.
15223 (allout-version): Increment version number to 2.1, and use a literal
15224 rather than RCS Id.
15225 (allout-default-encryption-scheme): Remove.
15226 (allout-passphrase-verifier-handling)
15227 (allout-passphrase-verifier-string)
15228 (allout-file-passphrase-verifier-string)
15229 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
15230 (allout-passphrase-hint-handling): Rename and simplify.
15231 (allout-init): Use `find-file-hook' if available, otherwise
15232 `find-file-hooks'.
15233 (allout-mode): Use `write-file-functions' if available, otherwise
15234 `local-write-file-hooks' and, instead of making auto-save-hook
15235 buffer local, make the write-file-hook activity contingent to
15236 allout-mode.
15237 (allout-mode): Use key-binding substitution in the docstring.
15238 (allout-kill-line): Spell-out kill ring data structure mutation
15239 instead of using byte-compiler-complaint-provoking `pop'.
15240 (allout-insert-listified): Use `insert' rather than `insert-string'
15241 (allout-toggle-current-subtree-encryption): Update docstring, adjust
15242 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
15243 (allout-encrypt-string): Totally revamped vis new underlying
15244 encryption facilities.
15245 (allout-mc-activate-passwd): Remove.
15246 (allout-obtain-passphrase): New, more or less replaces
15247 allout-mc-activate-passwd.
15248 (allout-encrypted-key-info): More or less replaces
15249 allout-encrypted-text-type.
15250 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
15251 (my-mark-marker): Use `(featurep 'xemacs)'.
15252
15253 2005-10-23 Lars Hansen <larsh@soem.dk>
15254
15255 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
15256 (byte-compile-file-form-defmumble, byte-compile-defun)
15257 (byte-compile-defmacro): Use it.
15258 (byte-compile-form): Don't call byte-compile-set-symbol-position
15259 when a byte-compile handler is called.
15260
15261 2005-10-22 Romain Francoise <romain@orebokech.com>
15262
15263 * savehist.el (savehist-history-variables): Add `grep-find-history'.
15264
15265 * subr.el (eval-after-load): Convert library name to an absolute
15266 file name using locate-library, since load-history no longer has
15267 library names in it.
15268
15269 2005-10-22 Richard M. Stallman <rms@gnu.org>
15270
15271 * files.el (make-temp-file): Move from subr.el.
15272 * subr.el (make-temp-file): Move to files.el.
15273
15274 * window.el (get-buffer-window-list): Move from subr.el.
15275 * subr.el (get-buffer-window-list): Move to window.el.
15276
15277 * image.el (image-load-path): Use eval-at-startup to initialize.
15278
15279 * subr.el (eval-at-startup): New macro.
15280
15281 * subr.el: Much rearrangement of functions and division
15282 into pages. No code changes.
15283
15284 2005-10-22 Kenichi Handa <handa@m17n.org>
15285
15286 * tar-mode.el (tar-extract): Be sure to call
15287 find-operation-coding-system if set-auto-coding doesn't find a
15288 coding system.
15289
15290 2005-10-22 Kim F. Storm <storm@cua.dk>
15291
15292 * image.el (image-type-header-regexps): Rename from image-type-regexps.
15293 Change users.
15294 (image-type-file-name-regexps): New defconst.
15295 (image-type-from-data): Simplify loop.
15296 (image-type-from-buffer): New defun.
15297 (image-type-from-file-header): Use it instead of image-type-from-data.
15298 Use image-search-load-path instead of only looking in data-directory.
15299 (image-type-from-file-name): New defun.
15300 (image-search-load-path): Change `pathname' to `filename'.
15301 Make PATH arg optional, default to image-load-path.
15302
15303 2005-10-21 Richard M. Stallman <rms@gnu.org>
15304
15305 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
15306
15307 * textmodes/paragraphs.el (sentence-end-base): New variable.
15308 (sentence-end): Use sentence-end-base.
15309
15310 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15311
15312 * font-lock.el (font-lock-default-fontify-region): Check the multiline
15313 property independently from the font-lock-multiline variable.
15314
15315 2005-10-21 Richard M. Stallman <rms@gnu.org>
15316
15317 * emacs-lisp/find-func.el (find-library-name): Doc fix.
15318
15319 * startup.el (command-line): Convert library names
15320 in `load-history' to absolute file names.
15321
15322 * subr.el (symbol-file): Doc fix.
15323
15324 * loadhist.el (file-loadhist-lookup): Call locate-library
15325 instead of find-library-name. Don't try converting
15326 abs file names to library names, since load-history no longer
15327 has library names in it.
15328 (file-dependents, file-provides, file-requires): Doc fixes.
15329
15330 2005-10-21 Juri Linkov <juri@jurta.org>
15331
15332 * progmodes/etags.el (tags-table-mode): New function.
15333 (tags-verify-table): Replace initialize-new-tags-table with
15334 tags-table-mode.
15335
15336 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
15337 default value.
15338 (desktop-modes-not-to-save): Add tags-table-mode to the
15339 default value.
15340
15341 * info.el (Info-index-next): Add total number of index
15342 alternatives to the message.
15343
15344 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
15345 backward only space (instead of space and period) before looking
15346 at sentence end.
15347
15348 * simple.el (set-variable): Use user-variable-p instead of symbolp.
15349 Add the old variable value as 4th default-value arg of read-string.
15350
15351 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15352
15353 * cus-face.el (custom-declare-face): Make face from X resources
15354 also on Mac.
15355
15356 * disp-table.el (standard-display-g1, standard-display-graphic):
15357 Refuse to use string glyphs also on Mac.
15358 (standard-display-european): Don't set terminal coding system also
15359 on Mac.
15360
15361 * frame.el (display-screens): Use x-display-screens also on Mac.
15362
15363 2005-10-21 Romain Francoise <romain@orebokech.com>
15364
15365 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
15366
15367 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15368
15369 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
15370 and $? into sexps.
15371
15372 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
15373 warning face on open-paren-in-column-0.
15374
15375 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
15376 boundary case. Fix typo.
15377 Suggested by Martin Rudalics <rudalics@gmx.at>.
15378
15379 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
15380
15381 * textmodes/org.el (org-combined-agenda-icalendar-file)
15382 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
15383 (org-export-icalendar-this-file)
15384 (org-export-icalendar-all-agenda-files)
15385 (org-export-icalendar-combine-agenda-files): New commands.
15386 (org-export-icalendar, org-print-icalendar-entries)
15387 (org-start-icalendar-file, org-finish-icalendar-file)
15388 (org-ical-ts-to-string): New functions.
15389 (org-read-date, org-goto-calendar)
15390 (org-agenda-goto-calendar): Inhibit displaying diary entries by
15391 call to `calendar'.
15392 (orgtbl-setup): Remove the :keys arguments from the menu description.
15393 (org-after-save-iCalendar-file-hook): New variable.
15394
15395 2005-10-21 Kenichi Handa <handa@m17n.org>
15396
15397 * language/vietnamese.el (tcvn-5712): Make it an alias of
15398 vietnamese-tcvn coding-system.
15399
15400 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
15401
15402 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
15403 group id is given.
15404
15405 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
15406
15407 * progmodes/sh-script.el (sh-escaped-line-re): New var.
15408 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
15409 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
15410 whose line is either continued or ends with a comment.
15411
15412 2005-10-20 Romain Francoise <romain@orebokech.com>
15413
15414 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
15415
15416 * replace.el (occur-engine): Add follow-link property.
15417
15418 * font-core.el (font-lock-mode): Doc fix.
15419
15420 2005-10-20 Richard M. Stallman <rms@gnu.org>
15421
15422 * net/rcirc.el: New file.
15423
15424 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
15425
15426 * term.el (term-term-name): Initialize to "eterm-color".
15427
15428 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
15429
15430 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
15431 for encryption functionality.
15432 Move allout customization subgroup from `editing' to `outlines' group.
15433 Fix commentary keywords to legitimate ones.
15434 Update author info (using my current email address, obscurified).
15435 (allout-encrypt-string, allout-encryption-produce-work-buffer)
15436 (allout-encrypted-topic-p, allout-encrypted-text-type)
15437 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
15438 (allout-situate-encryption-key-verifier)
15439 (allout-get-encryption-key-verifier, allout-verify-key)
15440 (allout-next-topic-pending-encryption)
15441 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
15442 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
15443 (outline-key-verifier-handling, outline-key-hint-handling)
15444 (outline-encrypt-unencrypted-on-saves): New defcustoms.
15445 (allout-file-key-verifier-string, allout-encryption-scheme)
15446 (allout-key-verifier-string, allout-key-hint-string)
15447 (allout-after-save-decrypt): New variables.
15448 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
15449 (allout-after-saves-handler): New hook functions.
15450 (allout-post-command-business): Do allout-after-save-decrypt.
15451 (allout-enable-file-variable-adjustment): Custom var to enable
15452 mechanism for adding and adjusting settings of Emacs file variables.
15453 (allout-adjust-file-variable, allout-file-vars-section-data):
15454 New functions, implement the mechanism.
15455 (outlineify-sticky): Use the file vars mechanism.
15456 (allout-inhibit-protection, allout-during-write-cue)
15457 (allout-override-protect, allout-before-change-protect): Remove.
15458 (allout-flag-region, allout-open-topic): Adjust read-only text.
15459 (allout-open-line-not-read-only): Add to facilitate read-only
15460 text based protection.
15461 (allout-kill-line): Revise to adjust read-only text, clue the
15462 user about the inhibition.
15463 (allout-unprotected): Use unwind-protect.
15464 (allout-shift-in, allout-shift-out): Disallow manually shifting a
15465 topic deeper than the offspring depth of the previous topic -
15466 avoiding confusing "containment discontinuities".
15467 (allout-reindent-bodies): Fix retention of body relative hanging
15468 indent during promotion of collapsed bodies.
15469 (allout-open-topic): Make it easy to open new topic with same
15470 bullet as current topic - topic creation functions provided with
15471 any universal argument provokes now prompt for bullet, defaulting
15472 to the bullet of the previous topic.
15473 (allout-plain-bullets-string, allout-distinctive-bullets-string):
15474 Plain bullet alternates `.' period and `,' comma only. All other
15475 bullets are relegated to special status (but customizable).
15476 (allout-end-of-entry): Rename from allout-end-of-current-entry
15477 since it actually operates w.r.t. most immediately containing
15478 entry, visible or not.
15479 (allout-hide-current-entry, allout-show-current-entry): Use the
15480 revised version.
15481 (allout-old-expose-topic): Solidify deprecation.
15482 (allout-end-of-subtree): Add so we can span concealed as well
15483 as visible topics.
15484 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
15485 (allout-end-of-current-heading): Tweak to just respect the first line.
15486 (allout-get-body-text): Add.
15487 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
15488 when invoked interactively.
15489 (allout-up-current-level): Use `interactive-p'.
15490 (allout-mode, allout-init): Miscellaneous docstring and
15491 operational refinements, as well as hookups of new encryption stuff.
15492 (allout-beginning-of-current-entry): Now works as advertised.
15493 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
15494 (allout-isearch-rectification): Refine condition for isearching.
15495 (allout-isearch-abort, allout-enwrap-isearch)
15496 (allout-flag-region, my-region-active-p): Relocate some macros.
15497 (allout-title): Fallback title is (buffer-name), not
15498 non-existing (current-buffer-name).
15499 (subst-char-in-string): Define if absent (for some XEmacs versions).
15500
15501 2005-10-20 Jari Aalto <jari.aalto@cante.net>
15502
15503 * mail/sendmail.el (mail-setup-hook, mail-aliases)
15504 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
15505 (mail-citation-prefix-regexp, mail-signature-file)
15506 (mail-default-headers, mail-bury-selects-summary)
15507 (mail-send-nonascii): Add autoload cookies.
15508
15509 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15510
15511 * frame.el (blink-cursor-mode): Add `mac' to the list of
15512 window-system's that support blinking cursor.
15513
15514 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
15515
15516 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
15517
15518 2005-10-20 Eli Zaretskii <eliz@gnu.org>
15519
15520 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
15521 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
15522 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
15523
15524 2005-10-20 Kim F. Storm <storm@cua.dk>
15525
15526 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
15527 (ido-set-current-directory): Don't add / after final @.
15528 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
15529 Explicitly handle ange-ftp completion oddities.
15530 (ido-make-file-list): Don't rotate list at tramp root to avoid
15531 triggering tramp file handler for expand-file-name via get-file-buffer.
15532
15533 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15534
15535 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
15536
15537 2005-10-19 Jay Belanger <belanger@truman.edu>
15538
15539 * calc/calc-units.el (math-standard-units): Add units, adjust
15540 symbols and update values.
15541 (math-unit-prefixes): Add more prefixes.
15542
15543 2005-10-19 Romain Francoise <romain@orebokech.com>
15544
15545 * bookmark.el (bookmark-menu-heading): New face.
15546 (bookmark-bmenu-list): Use it.
15547 Don't fiddle with `baud-rate' at top-level.
15548
15549 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
15550
15551 * image.el (create-image, find-image): Mention max-image-size in
15552 docstring.
15553
15554 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
15555
15556 * savehist.el (savehist-load): Revert to checking XEmacs.
15557
15558 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
15559 Various docstring and line-width fixups.
15560 (conf-mode): Use cond.
15561 Set font-lock-defaults. Don't set comment-use-syntax.
15562
15563 2005-10-18 David Ponce <david@dponce.com>
15564
15565 * tree-widget.el (tree-widget-button-click): New function.
15566 (tree-widget-button-keymap): Use it.
15567
15568 2005-10-18 Romain Francoise <romain@orebokech.com>
15569
15570 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
15571 (bookmark-bmenu-hide-filenames): Add follow-link property.
15572 Improve help-echo text.
15573
15574 * ffap.el (find-file-at-point): Doc fix.
15575
15576 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15577
15578 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
15579
15580 2005-10-18 Masatake YAMATO <jet@gyve.org>
15581
15582 Install to the CVS repository what I forgot to install in my
15583 2005-10-16 changes.
15584
15585 * progmodes/python.el (python-complete-symbol): Pass the common
15586 prefix substring of completion to `display-completion-list'.
15587
15588 * textmodes/org.el (org-complete): Ditto.
15589
15590 2005-10-18 Masatake YAMATO <jet@gyve.org>
15591
15592 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
15593
15594 * woman.el (WoMan-xref-man-page): New button type derived
15595 from `Man-abstract-xref-man-page'.
15596 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
15597
15598 * man.el (Man-abstract-xref-man-page): New button type.
15599 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
15600 (Man-highlight-references): Add new optional argument `xref-man-type'.
15601
15602 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
15603
15604 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
15605
15606 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
15607
15608 * cus-edit.el (Custom-move-and-invoke): Delete.
15609 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
15610
15611 * wid-edit.el (widget-move-and-invoke): New function, from
15612 Custom-move-and-invoke.
15613
15614 2005-10-17 Bill Wohler <wohler@newt.com>
15615
15616 Move all remaining images from lisp/toolbar to etc/images, move
15617 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
15618 the low resolution images in their own directory (low-color).
15619
15620 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
15621 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
15622 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
15623 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
15624 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
15625 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
15626 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
15627
15628 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
15629 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
15630 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
15631 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
15632 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
15633 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
15634 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
15635 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
15636 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
15637 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
15638 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
15639 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
15640 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
15641 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
15642 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
15643
15644 To conform with convention, replace the underscore (_) in the
15645 following image names with dash (-) or (/) as appropriate.
15646
15647 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
15648 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
15649 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
15650 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
15651 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
15652 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
15653 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
15654 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
15655 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
15656 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
15657 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
15658 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
15659 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
15660 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
15661 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
15662
15663 * info.el (info-tool-bar-map): Replace underscores in image names
15664 with dashes.
15665
15666 * makefile.w32-in (WINS): Remove toolbar.
15667
15668 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
15669
15670 * tool-bar.el: Move to lisp from toolbar. Now that
15671 toolbar is empty, it should be deleted when folks run "cvs up -P".
15672
15673 2005-10-18 Jay Belanger <belanger@truman.edu>
15674
15675 * calc/calc-store.el (calc-store-into): Get the proper variable name
15676 to display in message.
15677
15678 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
15679
15680 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
15681 expressions display in speedbar for all buffers when debugging.
15682 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
15683
15684 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
15685 (speedbar-insert-button, speedbar-make-button):
15686 Use add-text-properties.
15687 (speedbar-update-localized-contents)
15688 (speedbar-update-directory-contents)
15689 (speedbar-update-special-contents): Use dolist.
15690 (speedbar-buffer-easymenu-definition): Add a menu separator.
15691
15692 2005-10-17 Jason Rumney <jasonr@gnu.org>
15693
15694 * makefile.w32-in: Use $(lisp) consistently.
15695 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
15696 for shell specific generation of mh-autoloads.
15697
15698 2005-10-17 Richard M. Stallman <rms@gnu.org>
15699
15700 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
15701
15702 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15703
15704 * jit-lock.el (jit-lock-fontify-now):
15705 Move jit-lock-context-unfontify-pos to avoid wasted work.
15706
15707 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
15708
15709 * net/tramp.el (tramp-completion-mode): New defvar. Used in
15710 `tramp-completion-mode' for checking if we are in completion mode.
15711 (tramp-completion-handle-file-name-all-completions): Reorder code
15712 in order to complete for file names only in case there are no
15713 method/user/host completions. This is necessary for cooperation
15714 with ido. Reported by Kim F. Storm <storm@cua.dk>.
15715
15716 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
15717
15718 * longlines.el (longlines-search-forward)
15719 (longlines-search-backward): Match any number of spaces.
15720
15721 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
15722
15723 * diff-mode.el (diff-mode): Doc fix.
15724
15725 2005-10-16 David Reitter <david.reitter@gmail.com>
15726
15727 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
15728 as default on darwin and windows systems.
15729
15730 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
15731
15732 * arc-mode.el (archive-zip-extract): Doc fix.
15733
15734 2005-10-16 Romain Francoise <romain@orebokech.com>
15735
15736 * mouse.el (mouse-1-click-follows-link): Doc fix.
15737
15738 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15739
15740 * savehist.el: Don't require CL at runtime.
15741 (savehist-xemacs): Remove.
15742 (savehist-coding-system): Use utf-8 if present, regardless of religion.
15743 (savehist-no-conversion): Use (featurep 'xemacs).
15744 (savehist-load): Check existence of start-itimer rather than XEmacs.
15745 Use an idle timer.
15746 (savehist-process-for-saving): Replace use of CL funs `subseq' and
15747 `delete-if-not'.
15748
15749 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
15750
15751 * savehist.el: Newer version.
15752 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
15753 (savehist-last-checksum, savehist-no-conversion): New vars.
15754 (savehist-autosave, savehist-process-for-saving, savehist-printable):
15755 New functions.
15756 (savehist-load, savehist-save): Use them.
15757 (savehist-delimit): Remove.
15758
15759 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15760
15761 * progmodes/compile.el (compilation-goto-locus): Display the
15762 compilation buffer first and the source buffer second, in case they're
15763 in overlapping frames. Don't raise the compilation frame if it was the
15764 selected window upon entry. Pass the `other-window' arg to
15765 pop-to-buffer.
15766
15767 * info.el (Info-fontify-node): Use dolist.
15768 Change add-text-properties to put-text-property.
15769
15770 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15771
15772 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
15773 bound of search.
15774
15775 2005-10-16 Masatake YAMATO <jet@gyve.org>
15776
15777 * dabbrev.el (dabbrev-completion): Pass the common
15778 prefix substring of completion to `display-completion-list'.
15779
15780 * filecache.el (file-cache-minibuffer-complete)
15781 (file-cache-complete): Ditto.
15782
15783 * tempo.el (tempo-display-completions): Ditto.
15784
15785 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
15786
15787 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
15788
15789 * eshell/em-hist.el (eshell-list-history): Ditto.
15790
15791 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
15792
15793 * mail/mailalias.el (mail-complete): Ditto.
15794
15795 * progmodes/etags.el (complete-tag): Ditto.
15796
15797 * progmodes/make-mode.el (makefile-complete): Ditto.
15798
15799 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
15800
15801 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
15802
15803 * progmodes/pascal.el (pascal-complete-word)
15804 (pascal-show-completions): Ditto.
15805
15806 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
15807
15808 * simple.el (completion-common-substring): New variable.
15809 (completion-setup-function): Use `completion-common-substring'
15810 to put faces.
15811
15812 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15813
15814 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
15815 (x-get-selection, mac-select-convert-to-string): Convert from/to
15816 UTF-16 clipboard data as in native byte order, no BOM.
15817
15818 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
15819
15820 * progmodes/gud.el (gud-tool-bar-map): Rename the images
15821 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
15822 (gud-sentinel): Use speedbar-frame to check for speedbar.
15823
15824 2005-10-15 Richard M. Stallman <rms@gnu.org>
15825
15826 * savehist.el: New file.
15827
15828 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
15829
15830 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
15831 Fix bug in \bf fontification.
15832
15833 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
15834
15835 * pcvs.el (cvs-edit-log-files): New var.
15836 (cvs-mode-edit-log): New arg `file'.
15837 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
15838 Instead force the use of the original file and nothing else.
15839 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
15840 the cvs-minor-wrap-function is set.
15841 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
15842
15843 2005-10-14 Bill Wohler <wohler@newt.com>
15844
15845 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
15846 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
15847 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
15848 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
15849 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
15850 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
15851 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
15852 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
15853 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
15854 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
15855 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
15856 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
15857 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
15858 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
15859 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
15860
15861 * progmodes/gud.el (gud-tool-bar-map): Rename the images
15862 appropriately (for example, gud-break to gud/break).
15863
15864 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
15865
15866 * longlines.el (longlinges-search-function)
15867 (longlines-search-forward, longlines-search-backward): New functions.
15868 (longlines-mode): Set isearch-search-fun-function to
15869 longlinges-search-function.
15870
15871 * mouse.el (mouse-drag-region-1): Handle the case where a
15872 double-click event is bound to an arbitrary function.
15873
15874 2005-10-14 David Ponce <david@dponce.com>
15875
15876 * recentf.el (recentf-track-opened-file)
15877 (recentf-track-closed-file, recentf-update-menu)
15878 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
15879 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
15880 mouse-1-click-follows-link.
15881
15882 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15883
15884 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
15885 Gnome file-manager.png. Suggested by
15886 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
15887
15888 * toolbar/README: Add diropen.xpm.
15889
15890 2005-10-13 Bill Wohler <wohler@newt.com>
15891
15892 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
15893 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
15894
15895 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
15896
15897 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
15898 Don't waste the byte-compiler's time on constant data.
15899
15900 2005-10-13 Kenichi Handa <handa@m17n.org>
15901
15902 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
15903 byte with `escape-glyph' face.
15904
15905 * international/fontset.el (ccl-encode-unicode-font):
15906 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
15907 Handle the case that ucs-mule-to-mule-unicode translates a character to
15908 ASCII (usually for IPA characters).
15909
15910 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15911
15912 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
15913 Don't hide the underline of titles if font-lock-mode is disabled.
15914
15915 2005-10-12 Bill Wohler <wohler@newt.com>
15916
15917 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
15918 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
15919 files in MH-E-SRC have been updated.
15920 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
15921
15922 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15923
15924 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
15925 (mixal-mode-syntax-table): Add \n as end-comment.
15926 (mixal-operation-codes-alist): Immediately initialize to full value.
15927 (mixal-add-operation-code): Remove.
15928 (mixal-describe-operation-code): Make the arg non-optional.
15929 Use the interactive spec instead.
15930 Use mixal-operation-codes-alist rather than mixal-operation-codes.
15931 (mixal-font-lock-keywords): Don't highlight comments here any more.
15932 (mixal-font-lock-syntactic-keywords): New var.
15933 (mixal-mode): Use it. Fix comment-start-skip.
15934
15935 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15936
15937 * startup.el (command-line-x-option-alist): -nb => -nbi
15938
15939 2005-10-12 Kim F. Storm <storm@cua.dk>
15940
15941 * startup.el (fancy-splash-default-action): Discard mouse click in
15942 the splash screen window, as it has no sensible meaning in the
15943 next window to be selected. Fixes error reported by Jan D.
15944
15945 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
15946
15947 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
15948
15949 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15950
15951 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
15952 Try to fix up minor layout issues like indentation, line break, etc...
15953 (mixal-mode-syntax-table): Don't try to specify comment syntax,
15954 because it doesn't work.
15955 (mixal-operation-codes): Add some more codes.
15956 (mixal-font-lock-keywords): Process comments here.
15957 (mixal-mode): mixasm no longer needs -g option.
15958
15959 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
15960
15961 * progmodes/sh-script.el (sh-tmp-file):
15962 Use mktemp -t. Finish support for es and rc shells.
15963
15964 2005-10-11 Jay Belanger <belanger@truman.edu>
15965
15966 * calc/calcalg2.el (calc-integral): With an argument, compute the
15967 definite integral.
15968
15969 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
15970
15971 * mouse.el (mouse-drag-region-1): Don't try to catch a
15972 double-click when doing follow-link (it's overridden anyway).
15973
15974 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
15975
15976 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
15977 (autoload-print-form-outbuf): Add docstring.
15978
15979 2005-10-11 Juri Linkov <juri@jurta.org>
15980
15981 * info.el (Info-mode-menu): Delete menu item "Edit".
15982 (Info-mode): Delete description of Info-edit from docstring,
15983 and rearrange descriptions of Info commands in the order
15984 they are documented in the Info manual.
15985
15986 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15987
15988 * calendar/appt.el (appt-check): Use diary-selective-display var.
15989
15990 2005-10-10 Richard M. Stallman <rms@gnu.org>
15991
15992 * net/newsticker.el (newsticker-start, newsticker-show-news):
15993 Add autoload cookies.
15994
15995 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
15996
15997 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
15998
15999 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
16000
16001 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
16002
16003 2005-10-10 Jay Belanger <belanger@truman.edu>
16004
16005 * calc/calc-arith.el (math-check-known-scalarp)
16006 (math-check-known-matrixp): Check the values of arguments that are
16007 variables.
16008 (math-check-known-square-matrixp): New function.
16009 (math-known-square-matrixp): Use math-check-known-square-matrixp.
16010 (math-super-types): Add sqmatrix type.
16011
16012 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
16013 mode name `square' to `sqmatrix'.
16014
16015 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
16016 mode name `square' to `sqmatrix'.
16017
16018 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
16019
16020 * progmodes/etags.el (select-tags-table-mode): Don't use
16021 selective-display.
16022 (tags-select-tags-table): Pass `button' to the action function.
16023 (select-tags-table): Place the side-info on button properties rather
16024 than in hidden text. Abbreviate file names.
16025 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
16026 (select-tags-table-select): Add `button' argument.
16027 Get side-info from the button property rather than from hidden text.
16028
16029 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
16030
16031 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
16032 (gud-speedbar-buttons): Preserve point if possible.
16033 (gud-sentinel): Restore previous speedbar display type.
16034
16035 * progmodes/gdb-ui.el (gdba): Improve diagram.
16036 (def-gdb-auto-update-handler, gdb-info-locals-handler)
16037 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
16038 Call get-buffer-window once.
16039
16040 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
16041
16042 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
16043 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
16044 (pascal-indent-command): Remove unused var `ind'.
16045 (pascal-indent-case): Remove unused var `oldpos'.
16046 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
16047 since it's now used as a proper minor mode map.
16048 (pascal-outline): Rename to pascal-outline-mode.
16049 (pascal-outline-mode): Use define-minor-mode.
16050 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
16051 selective-display.
16052
16053 2005-10-10 Andreas Schwab <schwab@suse.de>
16054
16055 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
16056 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
16057
16058 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
16059 outside source directory.
16060
16061 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
16062
16063 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
16064 C-x' as a prefix.
16065 (orgtbl-mode-map): Full keymap instead of sparse, because all
16066 `self-insert-command' keys are redefined in this map.
16067 (org-export-as-html): Specify charset for HTML file, by taking it
16068 from the coding system.
16069
16070 2005-10-10 Kenichi Handa <handa@m17n.org>
16071
16072 * textmodes/flyspell.el (flyspell-check-word-p):
16073 If unread-command-events is non-empty, don't call sit-for.
16074
16075 2005-10-09 Richard M. Stallman <rms@gnu.org>
16076
16077 * font-lock.el (font-lock-syntactic-keywords)
16078 (font-lock-keywords): Doc fixes.
16079
16080 * textmodes/flyspell.el (flyspell-external-point-words):
16081 Simplify logic, and don't try to check for consecutive appearances
16082 of one incorrect word.
16083
16084 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
16085
16086 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
16087 separator.
16088
16089 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
16090 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
16091 (gud-expansion-speedbar-buttons): New function.
16092 (gud-speedbar-buttons): Check for gud-comint-buffer.
16093
16094 2005-10-09 Bill Wohler <wohler@newt.com>
16095
16096 * Makefile.in (updates): Add mh-loaddefs dependency.
16097
16098 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
16099
16100 * speedbar.el (speedbar-file-key-map): Fix typo.
16101
16102 2005-10-09 Daniel Brockman <daniel@brockman.se>
16103
16104 * cus-start.el (line-spacing): Add custom spec.
16105
16106 2005-10-09 Romain Francoise <romain@orebokech.com>
16107
16108 * textmodes/ispell.el (ispell-check-version): Fix last change.
16109
16110 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16111
16112 * term/x-win.el: Remove -i, --icon-type from comment.
16113
16114 * startup.el (command-line-x-option-alist): Remove options -i,
16115 -itype, --icon-type, added -nb, --no-bitmap-icon
16116
16117 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
16118
16119 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
16120 instead of :active.
16121
16122 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
16123
16124 * textmodes/ispell.el (ispell-check-version):
16125 Ignore hyphen, and all that follows, in aspell's version text.
16126
16127 2005-10-08 Jay Belanger <belanger@truman.edu>
16128
16129 * calc/calc-arith.el (math-known-square-matrixp): New function.
16130 (math-pow-fancy): Check for matrices before distributing exponent
16131 across products.
16132
16133 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
16134 fullscreen keypad. Suggested by Luc Teirlinck.
16135 (calc-keypad-show-input): Add space for formatting.
16136
16137 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
16138 Add square matrix option.
16139
16140 * calc/calc-poly.el (math-expand-term): Check for matrices instead
16141 of checking calc-matrix-mode when deciding how to expand.
16142
16143 * calc/calc.el (calc-set-mode-line): Add square matrix option.
16144
16145 2005-10-08 Lars Hansen <larsh@soem.dk>
16146
16147 * net/tramp.el (tramp-perl-directory-files-and-attributes):
16148 Add error handling.
16149 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
16150
16151 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
16152
16153 Sync with Tramp 2.0.51.
16154
16155 * net/tramp.el (tramp-handle-set-visited-file-modtime)
16156 (tramp-handle-insert-file-contents, tramp-handle-write-region):
16157 Insert special handling for `last-coding-system-used', again
16158 it still seems to be necessary (unlike stated before).
16159 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
16160 (tramp-password-prompt-regexp): There might be other words before
16161 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
16162 (tramp-chunksize): Improve docstring.
16163 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
16164 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
16165 Christian Joergensen <bugs@razor.dk>.
16166
16167 2005-10-07 Glenn Morris <rgm@gnu.org>
16168
16169 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
16170 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
16171 precision'.
16172
16173 2005-10-07 Romain Francoise <romain@orebokech.com>
16174
16175 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
16176 (ibuffer-do-shell-command-pipe-replace)
16177 (ibuffer-do-shell-command-file, ibuffer-do-eval)
16178 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
16179 (ibuffer-do-revert, ibuffer-do-replace-regexp)
16180 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
16181 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
16182 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
16183 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
16184 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
16185 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
16186 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
16187 Autoload file sans suffix.
16188
16189 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
16190
16191 2005-10-07 David Ponce <david@dponce.com>
16192
16193 * recentf.el (recentf-menu-open-all-flag): New option.
16194 (recentf-digit-shortcut-command-name): New function.
16195 (recentf--shortcuts-keymap): New variable.
16196 (recentf-menu-shortcuts): New variable.
16197 (recentf-make-menu-items): Initialize it. Replace the "More..."
16198 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
16199 (recentf-menu-value-shortcut): New function.
16200 (recentf-make-menu-item): Use it. No more in-lined.
16201 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
16202 (recentf-open-most-recent-file): Rename from
16203 `recentf-open-file-with-key'. Don't depend on key binding.
16204 (recentf-mode-map): New variable.
16205 (recentf-mode): Use it.
16206
16207 2005-10-06 Bill Wohler <wohler@newt.com>
16208
16209 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
16210
16211 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
16212 (MH-E-SRC): New. Used by mh-autoloads.
16213 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
16214 files in MH-E-SRC have been updated.
16215 (compile, recompile, bootstrap): Depend on mh-autoloads.
16216
16217 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
16218
16219 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
16220 gud-break and gud-remove icons when the fringe is not available.
16221
16222 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
16223 Typo.
16224
16225 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
16226
16227 * play/zone.el (zone): Wrap body with save-window-excursion.
16228
16229 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
16230
16231 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
16232 Use the new `list-only' arg to diary-list-entries.
16233
16234 * calendar/diary-lib.el: Use overlays rather than selective-display.
16235 (diary-selective-display): New var.
16236 (diary-header-line-format): Use it.
16237 (diary-list-entries): Add argument `list-only'.
16238 Put the buffer in diary-mode. Don't add \^M at beg and end.
16239 Replace \^M by invisible overlays.
16240 (diary-unhide-everything): Replace \^M by invisible overlays.
16241 (print-diary-entries): Look for overlays rather than \^M.
16242 Add a space to the temp buffer name.
16243 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
16244 Put the buffer in diary-mode.
16245 (list-sexp-diary-entries): Replace \^M by invisible overlays.
16246 (diary-anniversary): Make the year arg optional.
16247 (diary-time-regexp): New const.
16248 (diary-font-lock-keywords): Use it to accept a few more time formats.
16249
16250 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
16251
16252 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
16253
16254 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
16255 Fix bug introduced 2005-07-03: Use (car (last ...))
16256 to faithfully reproduce replaced artist-last.
16257 (artist-set-arrow-points-for-poly): Likewise.
16258 Suggested by Johan Bockg\e,Ae\e(Brd.
16259
16260 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
16261
16262 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
16263 * wid-edit.el (widget):
16264 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
16265 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
16266
16267 2005-10-06 Kenichi Handa <handa@m17n.org>
16268
16269 * international/mule-cmds.el (set-language-environment):
16270 Fix setting up of case-table for unibyte mode.
16271
16272 * simple.el (what-cursor-position): If the character is displayed
16273 by some `display' text property, show that. Don't use
16274 single-key-description for eight-bit characters in multibyte mode.
16275
16276 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
16277
16278 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
16279 (gdb-ann3): Set it.
16280 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
16281 (gdb-info-frames-custom): Use inverse-video for first five
16282 characters of selected frame only.
16283 (gdb-get-frame-number): Select frame even when point is on frame
16284 number.
16285
16286 2005-10-06 Masatake YAMATO <jet@gyve.org>
16287
16288 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
16289 Put `font-lock-function-name-face'.
16290 (gdb-info-frames-custom): Put `font-lock-function-name-face'
16291 and `font-lock-variable-name-face'
16292 (gdb-registers-font-lock-keywords): New font lock keywords definition.
16293 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
16294 (gdb-memory-font-lock-keywords): New font lock keywords definition.
16295 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
16296 (gdb-local-font-lock-keywords): New font lock keywords definition.
16297 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
16298 (gdb-threads-font-lock-keywords): New font lock keywords definition.
16299 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
16300
16301 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
16302
16303 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
16304 (ediff-merge-region-is-non-clash-to-skip): Previously called
16305 ediff-merge-region-is-non-clash.
16306
16307 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
16308 Use insert-buffer-substring.
16309
16310 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
16311 selecting files to patch. Also bug fixes.
16312
16313 * ediff-util.el (ediff-setup): Bug fix.
16314 (ediff-next-difference): Never skip clashes that differ in white
16315 space only.
16316
16317 * ediff-wind.el (ediff-setup-control-frame)
16318 (ediff-destroy-control-frame): Check the menubar feature.
16319
16320 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
16321 (viper-refresh-mode-line): Use make-local-variable to localize
16322 some vars instead of make-variable-buffer-local. Suggested by
16323 Stefan Monnier.
16324
16325 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
16326 (viper-restore-cursor-type, viper-set-insert-cursor-type):
16327 Use make-local-variable instead of make-variable-buffer-local.
16328 Suggested by Stefan Monnier.
16329
16330 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
16331 (viper-comint-mode-hook): Use make-local-variable on
16332 require-final-newline.
16333 (viper-non-hook-settings): Don't use make-variable-buffer-local.
16334
16335 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16336
16337 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
16338 also the second char of a comment-start sequence.
16339 (scheme-sexp-comment-syntax-table): New var.
16340 (lambda, define): Set their scheme-doc-string-elt property.
16341 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
16342 Use lisp-font-lock-syntactic-face-function now that it properly
16343 handles |...| symbols.
16344 (scheme-mode-variables): Set lisp-doc-string-elt-property,
16345 parse-sexp-lookup-properties and font-lock-extra-managed-props.
16346
16347 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
16348 bit from # to |.
16349 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
16350
16351 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
16352 (lisp-doc-string-elt-property): New var.
16353 (lisp-font-lock-syntactic-face-function): Use it.
16354 Rewrite to recognize docstrings even for forms not at toplevel.
16355
16356 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
16357 annotation on the | part of #| rather than on the # part.
16358 (scheme-font-lock-syntactic-face-function): New function, to
16359 distinguish strings from |...| symbols.
16360 (scheme-mode-variables): Use it. Also fix up the font-lock-time
16361 syntax-table so that #|...|# is properly highlighted.
16362
16363 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
16364 Don't mark as docstring the 3rd elem of an unknown toplevel form.
16365
16366 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
16367
16368 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
16369 and C-e.
16370
16371 * emacs-lisp/eldoc.el: Move comments into docstrings.
16372 (eldoc-message-commands): Initialize in its declaration.
16373 Add move-beginning-of-line and move-end-of-line.
16374 (eldoc-add-command, eldoc-add-command-completions)
16375 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
16376
16377 * outline.el (outline-mark-subtree): Activate the mark.
16378
16379 * calendar/appt.el (appt-time-regexp): New var.
16380 (appt-add, appt-make-list): Use it.
16381 (appt-convert-time): Clean up.
16382
16383 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
16384 Don't set any syntax-table property here.
16385 (tex-font-lock-verb): New function. Do it here.
16386 (tex-font-lock-syntactic-keywords): Use it.
16387
16388 2005-10-04 Richard M. Stallman <rms@gnu.org>
16389
16390 * wid-edit.el (widget-file-complete): Get the widget start point
16391 the right way. Default directory to `/' if file has none.
16392
16393 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
16394
16395 * textmodes/flyspell.el (flyspell-mode-on):
16396 Call ispell-maybe-find-aspell-dictionaries.
16397
16398 * textmodes/ispell.el (ispell-word, ispell-region):
16399 Call ispell-maybe-find-aspell-dictionaries.
16400 (ispell-accept-buffer-local-defs):
16401 Don't call ispell-maybe-find-aspell-dictionaries
16402
16403 2005-10-04 Richard M. Stallman <rms@gnu.org>
16404
16405 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
16406
16407 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
16408
16409 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
16410 instead of `fboundp' in order to allow for anonymous functions.
16411
16412 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
16413
16414 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
16415 case the user clicks on the link while another window is selected.
16416 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
16417
16418 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
16419 functionality.
16420 (dframe-help-echo): Save point in case mouse tracking is off.
16421
16422 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
16423
16424 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
16425
16426 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16427
16428 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
16429 not change the global value of those vars.
16430
16431 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
16432 make-local-variable which we do not need any more.
16433
16434 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
16435
16436 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
16437 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
16438 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
16439 (speedbar-path-line): Define obsolete aliases.
16440 (speedbar-line-directory): Doc fix.
16441
16442 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
16443 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
16444 instead of speedbar-line-path.
16445
16446 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16447
16448 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
16449 to nil if dropping on a window. Handle dropping on a minibuffer window
16450 like dropping on a non-window part of Emacs.
16451
16452 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16453
16454 * net/ange-ftp.el: Use with-current-buffer.
16455 (ange-ftp-insert-directory): Do not follow symlinks any more.
16456
16457 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
16458 Remove interactive spec.
16459
16460 2005-10-03 Kim F. Storm <storm@cua.dk>
16461
16462 * ido.el (ido-mode): Use custom-initialize-set.
16463
16464 2005-10-02 Richard M. Stallman <rms@gnu.org>
16465
16466 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
16467 Use insert-buffer-substring.
16468
16469 * net/tramp.el: Pacify byte compiler warnings in pacification code.
16470 (tramp-handle-file-local-copy): Use insert-buffer-substring.
16471
16472 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16473
16474 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
16475 in last change.
16476 (ange-ftp-insert-directory): Fix up the search for the case where
16477 `file' is absolute.
16478
16479 2005-10-02 Romain Francoise <romain@orebokech.com>
16480
16481 * progmodes/compile.el (compile-goto-error): Delete extra paren.
16482
16483 2005-10-02 Andreas Schwab <schwab@suse.de>
16484
16485 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
16486 directory component in the session info.
16487
16488 2005-10-01 Richard M. Stallman <rms@gnu.org>
16489
16490 * comint.el (comint-redirect-subvert-readonly): Doc fix.
16491
16492 * simple.el (next-error-internal): New function.
16493
16494 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
16495 (compilation-start): Pass new arg to compilation-buffer-name.
16496 (compile-goto-error): Use next-error-internal.
16497
16498 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
16499
16500 * speedbar.el: Remove RCS tag.
16501 (speedbar-check-read-only): Handle non-existent files.
16502
16503 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
16504
16505 * info.el (Info-speedbar-hierarchy-buttons)
16506 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
16507
16508 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16509
16510 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
16511 Do not match newline.
16512 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
16513 (bibtex-summary): Remove unnecessary save-excursion.
16514 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
16515
16516 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16517
16518 * term/mac-win.el: Add charset info for "iso10646-1".
16519 Modify default fontset to use ATSUI-compatible fonts for some charsets
16520 if available.
16521
16522 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
16523
16524 * speedbar.el: Re-apply arch tag.
16525 (speedbar-version): Rename to version 1.0. Suggested by Eric
16526 M. Ludlam.
16527 Reapply two changes from Emacs CVS' version of speedbar lost
16528 during the merge:
16529 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
16530 (speedbar-frame-parameters): Improve customize type.
16531
16532 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16533
16534 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
16535 (ange-ftp-file-directory-p): Fix the symlink case.
16536 (ange-ftp-insert-directory): When listing a single file, get a list of
16537 the parent buffer and extract the relevant line. Inspired from a patch
16538 by Katsumi Yamaoka <yamaoka@jpl.org>.
16539 (ange-ftp-file-name-sans-versions): Simplify.
16540
16541 2005-09-30 Bill Wohler <wohler@newt.com>
16542
16543 Move MH-E image files from toolbar and mail directories into
16544 etc/images.
16545
16546 * mail/reply2.*: Move to etc/images/mail/reply*.
16547
16548 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
16549 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
16550 etc/images.
16551
16552 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
16553 * toolbar/reply*: Move to etc/images/mail.
16554
16555 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
16556
16557 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
16558
16559 * speedbar.el: New version 1.0pre3.
16560
16561 Frame management code (including timer, and mouse click specifics)
16562 moved to dframe.el:
16563 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
16564 (speedbar-timer): Removed. Use dframe-timer.
16565 (speedbar-close-frame): Removed. Use dframe-close-frame.
16566 (speedbar-activity-change-focus-flag): Removed. Use
16567 dframe-activity-change-focus-flag.
16568 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
16569 dframe-update-speed.
16570
16571 (speedbar-current-frame): New macro. Use this instead of the
16572 variable speedbar-frame.
16573
16574 (speedbar-use-images, speedbar-expand-image-button-alist)
16575 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
16576
16577 (speedbar-find-image-on-load-path): Removed. Replaced by
16578 defezimage in ezimage.el.
16579 (speedbar-expand-image-button-alist): Removed. Replaced by
16580 ezimage-expand-image-button-alist in ezimage.el.
16581
16582 (speedbar-ignored-directory-regexp)
16583 (speedbar-add-ignored-directory-regexp)
16584 (speedbar-ignored-directory-expressions)
16585 (speedbar-line-directory, speedbar-buffers-line-directory)
16586 (speedbar-directory-line, speedbar-buffers-line-directory):
16587 Renamed, replacing `path' with `directory'.
16588
16589 (speedbar-create-directory, speedbar-expand-line-descendants)
16590 (speedbar-toggle-line-expansion)
16591 (speedbar-contract-line-descendants): New commands.
16592
16593 (speedbar-query-confirmation-method, speedbar-select-frame-method)
16594 (speedbar-use-tool-tips-flag): New options.
16595
16596 (speedbar-check-read-only, speedbar-require-version)
16597 (speedbar-insert-separator, speedbar-buffers-tail-notes)
16598 (speedbar-handle-delete-frame, speedbar-try-completion)
16599 (speedbar-update-localized-contents): New functions.
16600
16601 (speedbar-incompatible-version, speedbar-ro-to-do-point)
16602 (speedbar-object-read-only-indicator): New variables.
16603
16604 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
16605 New hooks.
16606
16607 (speedbar-separator-face): New face.
16608
16609 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
16610 (speedbar-ignored-modes): Add fundamental-mode.
16611 (speedbar-directory-unshown-regexp): Add . directories.
16612
16613 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
16614 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
16615 `]' for full expand/close.
16616 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
16617
16618 (speedbar-check-vc): Support hidden files.
16619 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
16620 (speedbar-this-file-in-vc): Use vc-state if available. If VC
16621 state is nil, it is not checked out.
16622
16623 (speedbar-line-text, speedbar-line-token): Support expand buttons
16624 with no text.
16625 (speedbar-refresh): Universal argument acts as power-click.
16626 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
16627 that buffer to get variable values.
16628
16629 And many other bugfixes.
16630
16631 * dframe.el, ezimage.el, sb-image.el: New files.
16632
16633 * sb-*.xpm: Remove files. New image files installed into
16634 etc/images/ezimage.
16635
16636 2005-09-30 Kenichi Handa <handa@m17n.org>
16637
16638 * ps-mule.el (ps-mule-show-warning): If a character is in
16639 ps-print-translation-table, don't treat it as non-printable.
16640
16641 2005-09-30 David Ponce <david@dponce.com>
16642
16643 * tree-widget.el (tree-widget-themes-load-path): New variable.
16644 (tree-widget-themes-directory): Doc fix.
16645 (tree-widget-image-formats) [Emacs]: Doc fix.
16646 (tree-widget--locate-sub-directory): New function.
16647 (tree-widget-themes-directory): Use it.
16648
16649 * recentf.el (recentf-filename-handlers): Rename from
16650 `recentf-filename-handler'. Allow a list of functions.
16651 (recentf-menu-items-for-commands): Fix :help strings.
16652 (recentf-apply-filename-handlers): New function.
16653 (recentf-expand-file-name): Use it.
16654 (recentf-cleanup): Remove duplicates too.
16655
16656 2005-09-29 Juri Linkov <juri@jurta.org>
16657
16658 * faces.el: Rearrange face definitions to be in the same order as
16659 their face descriptions in "(emacs)Standard Faces".
16660
16661 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
16662
16663 * tooltip.el (tooltip): Add group `basic-faces'.
16664
16665 * buff-menu.el (Buffer-menu-buffer): Remove group
16666 `font-lock-highlighting-faces'.
16667
16668 * progmodes/compile.el (compilation-error, compilation-warning)
16669 (compilation-info, compilation-line-number, compilation-column-number):
16670 Change group from `font-lock-highlighting-faces' to `compilation'.
16671
16672 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
16673 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
16674 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
16675 (vhdl-font-lock-reserved-words-face)
16676 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
16677 `font-lock-highlighting-faces'.
16678
16679 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
16680
16681 2005-09-28 Kim F. Storm <storm@cua.dk>
16682
16683 * emulation/cua-base.el: Set CUA move property on additional commands:
16684 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
16685 forward-sexp, backward-sexp, forward-list, backward-list.
16686
16687 2005-09-28 Romain Francoise <romain@orebokech.com>
16688
16689 * comint.el (comint-show-output): Really set point at the
16690 beginning of the output when not using `comint-use-prompt-regexp'.
16691
16692 2005-09-27 Jay Belanger <belanger@truman.edu>
16693
16694 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
16695 in TeX mode.
16696
16697 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
16698
16699 * textmodes/org.el (org-table-sum): Fix format string.
16700
16701 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
16702 Quote face names.
16703
16704 2005-09-26 Romain Francoise <romain@orebokech.com>
16705
16706 * isearch.el (isearch-forward-regexp): Close doc string.
16707
16708 2005-09-25 Richard M. Stallman <rms@gnu.org>
16709
16710 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
16711
16712 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
16713
16714 * progmodes/compile.el (compilation-error-properties):
16715 When getting the file from the previous error message,
16716 correctly decode the new data format.
16717
16718 * progmodes/cc-cmds.el (c-electric-paren):
16719 Call old-blink-paren only for close-paren.
16720
16721 2005-09-24 Andreas Schwab <schwab@suse.de>
16722
16723 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
16724 condition.
16725
16726 2005-09-25 Romain Francoise <romain@orebokech.com>
16727
16728 * dired-aux.el (dired-copy-file-recursive):
16729 * dired.el (dired-delete-file):
16730 * ediff-mult.el (ediff-dir-diff-copy-file):
16731 * ediff-util.el (ediff-test-save-region):
16732 * forms.el (forms-mode):
16733 * ido.el (ido-file-internal, ido-delete-file-at-head):
16734 * log-edit.el (log-edit-done):
16735 * ses.el (ses-yank-resize):
16736 * play/gomoku.el (gomoku-human-plays, gomoku)
16737 (gomoku-human-resigns, gomoku-prompt-for-other-game)
16738 (gomoku-offer-a-draw):
16739 * play/landmark.el (lm-human-resigns, lm):
16740 * net/eudcb-ldap.el (eudc-ldap-check-base):
16741 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
16742 * progmodes/ebrowse.el (ebrowse-find-pattern):
16743 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
16744 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
16745 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
16746
16747 * vc.el (vc-delete-file):
16748 * play/gomoku.el (gomoku-terminate-game, gomoku)
16749 (gomoku-prompt-for-move, gomoku-human-takes-back):
16750 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
16751 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
16752
16753 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16754
16755 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
16756 color rxvt terminals by using the code xterm.el used to use before
16757 2005-04-09 in order to match the colors used by rxvt.
16758
16759 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
16760
16761 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
16762 colors rxvt-unicode terminals by using the same code as xterm.el.
16763
16764 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
16765
16766 * textmodes/tex-mode.el (tex-font-lock-append-prop)
16767 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
16768 new symbol used for the tex-verbatim face.
16769
16770 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
16771
16772 * woman.el (woman-file-name):
16773 * wid-edit.el (widget-file-prompt-value)
16774 (widget-coding-system-prompt-value):
16775 * w32-fns.el (set-w32-system-coding-system):
16776 * vc.el (vc-version-diff, vc-annotate):
16777 * textmodes/reftex-auc.el (reftex-arg-cite)
16778 (reftex-arg-index-tag):
16779 * textmodes/refer.el (refer-get-bib-files):
16780 * textmodes/artist.el (artist-figlet-choose-font):
16781 * terminal.el (terminal-emulator):
16782 * replace.el (occur-read-primary-args):
16783 * rect.el (string-rectangle, string-insert-rectangle):
16784 * ps-print.el (ps-print-preprint):
16785 * progmodes/pascal.el (pascal-goto-defun):
16786 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
16787 * progmodes/compile.el (compilation-find-file):
16788 * printing.el (pr-interactive-n-up):
16789 * play/animate.el (animate-birthday-present):
16790 * net/rcompile.el (remote-compile):
16791 * man.el (man, Man-goto-section, Man-follow-manual-reference):
16792 * mail/rmailsum.el (rmail-summary-search-backward)
16793 (rmail-summary-search):
16794 * mail/rmailout.el (rmail-output-read-rmail-file-name)
16795 (rmail-output-read-file-name):
16796 * mail/rmail.el (rmail-search, rmail-search-backwards):
16797 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
16798 * locate.el (locate):
16799 * international/quail.el (quail-show-keyboard-layout):
16800 * international/mule.el (set-buffer-file-coding-system)
16801 (revert-buffer-with-coding-system, set-file-name-coding-system)
16802 (set-terminal-coding-system, set-keyboard-coding-system)
16803 (set-next-selection-coding-system):
16804 * international/mule-diag.el (describe-coding-system)
16805 (describe-font, describe-fontset):
16806 * international/mule-cmds.el (universal-coding-system-argument)
16807 (search-unencodable-char, describe-input-method)
16808 (set-language-environment, describe-language-environment):
16809 * international/codepage.el (codepage-setup):
16810 * international/code-pages.el (codepage-setup):
16811 * info.el (Info-search, Info-follow-reference)
16812 (Info-search-backward):
16813 * emacs-lisp/advice.el (ad-read-advised-function)
16814 (ad-read-advice-class, ad-clear-cache, ad-activate)
16815 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
16816 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
16817 (ad-read-regexp):
16818 * ediff-util.el (ediff-toggle-regexp-match):
16819 * ediff-ptch.el (ediff-prompt-for-patch-file):
16820 * dired-aux.el (dired-diff):
16821 * diff.el (diff):
16822 * cus-edit.el (custom-variable-prompt):
16823 * calendar/timeclock.el (timeclock-ask-for-project):
16824 * calc/calcalg3.el (calc-get-fit-variables):
16825 * calc/calc-store.el (calc-edit-variable)
16826 (calc-permanent-variable):
16827 * vc-mcvs.el (vc-mcvs-register):
16828 * shadowfile.el (shadow-define-literal-group):
16829 * woman.el (woman-file-name):
16830 * vc.el (vc-version-diff, vc-merge):
16831 * textmodes/reftex-index.el (reftex-index-complete-tag):
16832 * format.el (format-decode-buffer, format-decode-region):
16833 * emulation/viper-cmd.el (viper-read-string-with-history):
16834 * emacs-lisp/debug.el (cancel-debug-on-entry):
16835 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
16836 * ediff.el (ediff-merge-revisions)
16837 (ediff-merge-revisions-with-ancestor, ediff-revision):
16838 * completion.el (interactive-completion-string-reader):
16839 * calc/calc-prog.el (calc-user-define-formula):
16840 Follow convention for reading with the minibuffer.
16841
16842 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
16843
16844 * progmodes/python.el (python-describe-symbol): Add globals() and
16845 locals() to the arguments of emacs.ehelp.
16846
16847 2005-09-24 Magnus Henoch <mange@freemail.hu>
16848
16849 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
16850 New function, code extracted from ispell-valid-dictionary-list.
16851 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
16852 Call it.
16853
16854 2005-09-24 Eli Zaretskii <eliz@gnu.org>
16855
16856 * subr.el (version-regexp-alist): Extend valid syntax for version
16857 strings: allow any of the characters -,_,+ to separate the
16858 alpha/beta/rc part from the version part. Doc fix.
16859 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
16860
16861 2005-09-23 David Reitter <david.reitter@gmail.com>
16862
16863 * mail/mailclient.el: New file.
16864
16865 2005-09-23 Richard M. Stallman <rms@gnu.org>
16866
16867 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
16868 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
16869 Doc fixes.
16870
16871 * progmodes/cc-mode.el (c-font-lock-init):
16872 Specify font-lock-lines-before.
16873
16874 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16875
16876 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
16877 whole conflict.
16878
16879 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
16880
16881 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
16882 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
16883 of `remap' feature when available. Additional key bindings for
16884 better tty support.
16885 (org-mode-restart, org-force-self-insert): New commands.
16886 (org-time-stamp-inactive): New command.
16887 (org-remap): New function.
16888 (org-table-auto-blank-field, org-level-color-stars-only): New options.
16889 (org-enable-fixed-width-editor): Move to `org-structure'
16890 customization group.
16891 (org-self-insert-command, orgtbl-self-insert-command): Modify to
16892 blank field after field motion commands.
16893
16894 2005-09-23 Kenichi Handa <handa@m17n.org>
16895
16896 * international/mule-cmds.el (set-language-environment):
16897 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
16898 have to call utf-translate-cjk-load-tables.
16899
16900 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
16901
16902 * mouse.el (mouse-move-drag-overlay): Fix last change.
16903
16904 2005-09-22 David Ponce <david@dponce.com>
16905
16906 * tree-widget.el (tree-widget-value-create): Fix previous change.
16907
16908 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16909
16910 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
16911
16912 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16913
16914 * mouse.el (mouse-move-drag-overlay): New function.
16915 (mouse-drag-region-1): Use it.
16916 Try to simplify a bit the state handling. Handle clicks on links
16917 inside intangible areas.
16918 (mouse-save-then-kill): Minor simplification.
16919 (mouse-secondary-overlay): Make it always non-nil instead of
16920 recreating it each time.
16921 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
16922 (mouse-kill-secondary, mouse-secondary-save-then-kill):
16923 Simplify accordingly.
16924
16925 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16926
16927 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
16928
16929 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
16930
16931 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
16932 (ediff-file-name-sans-prefix): Treat nil as an empty string.
16933 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
16934 to patch.
16935
16936 * ediff-util.el: Use insert-buffer-substring.
16937
16938 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
16939
16940 * emulation/viper-cmd.el (viper-change-state): Don't move over the
16941 field boundaries in the minibuffer.
16942 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
16943 (viper-minibuffer-post-command-hook): New hook.
16944 (viper-line): Don't move cursor at bolp.
16945
16946 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
16947
16948 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
16949 avoid compiler warnings.
16950
16951 * emulation/viper-macs.el (ex-map): Better messages.
16952
16953 * emulation/viper-utils.el (viper-beginning-of-field): New function.
16954
16955 * emulation/viper.el: Replace make-variable-buffer-local with
16956 viper-make-variable-buffer-local everywhere, to avoid warnings.
16957
16958 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16959
16960 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
16961 Delete unused var `old-selected-window'.
16962 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
16963 (mouse-drag-secondary): Delete unused var `start-frame'.
16964
16965 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
16966
16967 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
16968
16969 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16970
16971 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
16972 Re-indent within 80 columns. Use inhibit-read-only.
16973
16974 2005-09-19 Romain Francoise <romain@orebokech.com>
16975
16976 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
16977
16978 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16979
16980 * font-lock.el (font-lock-default-fontify-region): Don't add a line
16981 unconditionally, since the after-change-function already did it.
16982
16983 2005-09-19 Miles Bader <miles@gnu.org>
16984
16985 * net/newsticker.el: Get rid of CVS keyword.
16986
16987 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
16988
16989 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
16990 The prompt is formatted later.
16991
16992 2005-09-19 David Ponce <david@dponce.com>
16993
16994 * tree-widget.el (tree-widget-value-create): Save the converted
16995 tree :node widget.
16996
16997 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
16998
16999 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
17000 variable `message'.
17001
17002 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
17003
17004 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
17005 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
17006 <slawomir.nowaczyk.847@student.lu.se>.
17007
17008 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
17009
17010 * image.el (image-load-path): Use symbol `data-directory' instead
17011 of its value, for backward compatibility with packages that bind
17012 it during `find-image'. Suggested by Katsumi Yamaoka.
17013 (image-search-load-path): Handle symbols whose values are strings.
17014
17015 2005-09-18 Romain Francoise <romain@orebokech.com>
17016
17017 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
17018 with-current-buffer form in save-excursion.
17019
17020 2005-09-18 Deepak Goel <deego@gnufans.org>
17021
17022 * apropos.el (apropos-command): Fix `message' call: first arg
17023 should be a format spec. In this and all other cases that appear
17024 below and elsewhere in the source code, I made a change only when
17025 two conditions were satisfied: [1] I can think of a possibility
17026 that the arguments would cause an error, for example, the code in
17027 question relies on external variables such as filenames. [2] I
17028 was sure that the arg to `message' could not have been nil in the code.
17029
17030 * textmodes/tildify.el (tildify-region): Ditto.
17031
17032 * textmodes/reftex-index.el (reftex-index-change-entry)
17033 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
17034 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
17035 * textmodes/org.el (org-complete, org-deadline, org-schedule)
17036 (org-priority, org-table-sum):
17037 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
17038 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
17039 (flyspell-word, flyspell-display-next-corrections):
17040 * textmodes/bibtex.el (bibtex-print-help-message):
17041 * textmodes/artist.el (artist-key-set-point-poly):
17042 * term/mac-win.el (mac-services-insert-text):
17043 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
17044 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
17045 (vhdl-port-paste-testbench, vhdl-compose-new-component)
17046 (vhdl-compose-configuration):
17047 * progmodes/sh-script.el (sh-blink, sh-show-indent)
17048 (sh-set-indent, sh-learn-line-indent):
17049 * progmodes/ps-mode.el (ps-mode-target-column):
17050 * progmodes/idlwave.el (idlwave-make-tags)
17051 (idlwave-scan-library-catalogs):
17052 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
17053 * progmodes/gud.el (gud-jdb-analyze-source):
17054 * progmodes/flymake.el (flymake-log):
17055 * progmodes/ebnf2ps.el (ebnf-generate-region):
17056 * progmodes/cmacexp.el (c-macro-expansion):
17057 * progmodes/ada-xref.el (ada-treat-cmd-string):
17058 * progmodes/ada-mode.el (ada-create-case-exception-substring)
17059 (ada-justified-indent-current, ada-batch-reformat):
17060 * play/zone.el (zone):
17061 * play/landmark.el (lm-move):
17062 * play/decipher.el (decipher-show-alphabet):
17063 * net/newsticker.el (newsticker--display-jump)
17064 (newsticker--display-scroll):
17065 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
17066 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
17067 * mail/feedmail.el (feedmail-dump-message-to-queue):
17068 * eshell/esh-proc.el (eshell-remove-process-entry):
17069 * emulation/ws-mode.el (ws-last-error):
17070 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
17071 (viper-record-kbd-macro):
17072 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
17073 * emacs-lisp/lisp-mnt.el (lm-report-bug):
17074 * emacs-lisp/find-func.el (find-function-noselect):
17075 * calendar/timeclock.el (timeclock-status-string)
17076 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
17077 (timeclock-when-to-leave-string):
17078 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
17079 * calc/calc-units.el (calc-enter-units-table):
17080 * calc/calc-mode.el (calc-mode-record-mode):
17081 * woman.el (woman-mini-help):
17082 * wdired.el (wdired-change-to-wdired-mode):
17083 * vc.el (vc-retrieve-snapshot):
17084 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
17085 * startup.el (display-startup-echo-area-message):
17086 * simple.el (set-goal-column):
17087 * ses.el (ses-command-hook, ses-recalculate-cell):
17088 * server.el (server-process-filter):
17089 * printing.el (pr-interface-txt-print, pr-interface-printify)
17090 (pr-interface-ps):
17091 * pcvs.el (cvs-help):
17092 * log-edit.el (log-edit, log-edit-mode-help):
17093 * iswitchb.el (iswitchb-possible-new-buffer):
17094 * isearch.el (isearch-edit-string):
17095 * image-mode.el (image-mode, image-minor-mode):
17096 * ibuf-macs.el (define-ibuffer-filter):
17097 * hi-lock.el (hi-lock-find-patterns):
17098 * files.el (toggle-read-only):
17099 * ediff-util.el (ediff-copy-diff)
17100 (ediff-write-merge-buffer-and-maybe-kill):
17101 * echistory.el (Electric-history-undefined):
17102 * dnd.el (dnd-insert-text):
17103 * dired-aux.el (dired-query):
17104 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
17105 * bookmark.el (bookmark-bmenu-locate):
17106 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
17107 Fix `message' calls to ensure first arg is a format string.
17108 The change was made only when these two conditions were satisfied:
17109 [1] when there is a possibility that the arguments would cause an error
17110 for example, if the code in question relies on external variables
17111 such as filenames, and
17112 [2] if the arg to `message' could not have been nil in the code.
17113
17114 * pcomplete.el (pcomplete--help): Fix `message' format spec.
17115 Not having a %s would be weird, though not technically wrong.
17116
17117 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17118
17119 * term/mac-win.el (mac-add-charset-info): Doc fix.
17120
17121 2005-09-17 Romain Francoise <romain@orebokech.com>
17122
17123 * shell.el (shell-resync-dirs): Handle echoing processes more
17124 reliably. Don't insert resync command if `comint-process-echoes'
17125 is non-nil.
17126
17127 2005-09-17 Magnus Henoch <mange@freemail.hu>
17128
17129 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
17130 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
17131 aspell versions >= 0.60.
17132 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
17133 only if ispell-aspell-supports-utf8 is non-nil.
17134
17135 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
17136
17137 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
17138 buffer-local value to lisp-indent-function.
17139
17140 2005-09-17 Milan Zamazal <pdm@zamazal.org>
17141
17142 * progmodes/glasses.el (glasses-make-readable): If
17143 glasses-separator differs from underscore, put appropriate
17144 overlays over underscore characters.
17145 (glasses-convert-to-unreadable): If glasses-separator differs from
17146 underscore, try to convert glasses-separator characters to
17147 underscores.
17148
17149 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17150
17151 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
17152 Use with-syntax-table and dolist.
17153
17154 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
17155
17156 * textmodes/reftex-auc.el:
17157 * textmodes/reftex-cite.el:
17158 * textmodes/reftex-dcr.el:
17159 * textmodes/reftex-global.el:
17160 * textmodes/reftex-parse.el:
17161 * textmodes/reftex-ref.el:
17162 * textmodes/reftex-sel.el:
17163 * textmodes/reftex-toc.el:
17164 * textmodes/reftex-vars.el:
17165 * textmodes/reftex.el: Small changes to remove compiler warnings.
17166
17167 * textmodes/reftex-index.el: Likewise.
17168 (reftex-query-index-phrase): More efficient use of markers.
17169
17170 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
17171
17172 * image.el (image-load-path): New variable.
17173 (image-search-load-path): New function.
17174 (find-image): Search for images in `image-load-path'.
17175
17176 2005-09-15 Richard M. Stallman <rms@gnu.org>
17177
17178 * follow.el: Change Maintainer field.
17179
17180 2005-09-15 David Ponce <david@dponce.com>
17181
17182 * recentf.el (recentf-save-file-modes): New option.
17183 (recentf-save-list): Use it.
17184
17185 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
17186
17187 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
17188 (mode-line-mule-info, mode-line-modified): Move bindings from
17189 mouse-3 to mouse-1.
17190
17191 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
17192
17193 * simple.el (sendmail-user-agent-compose): Revert last change.
17194
17195 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17196
17197 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
17198 Use with-current-buffer.
17199 (ange-ftp-gwp-start): Remove unused var `gw-user'.
17200 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
17201 (ange-ftp-insert-directory): Remove unused var `short'.
17202 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
17203
17204 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
17205 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
17206
17207 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
17208 (check-calendar-holidays, diary-list-entries): Autoload.
17209 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
17210 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
17211
17212 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
17213 which mistakenly removed a call to display-buffer.
17214
17215 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
17216
17217 * obsolete/iso-insert.el: Move to obsolete/ from international/.
17218
17219 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
17220
17221 * progmodes/hideshow.el
17222 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
17223 (hs-allow-nesting): New user var.
17224 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
17225 (hs-hide-block-at-point): When nesting allowed,
17226 if there is already an overlay in place, delete it.
17227 (hs-safety-is-job-n): Delete func; remove call sites.
17228 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
17229 (hs-overlay-at): New func.
17230 (hs-already-hidden-p, hs-show-block): Use it.
17231 (hs-hide-all): Don't pre-clean if nesting allowed.
17232 (hs-show-all): Temporarily disallow
17233 nesting around call to `hs-discard-overlays'.
17234
17235 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
17236
17237 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
17238 Delete unused local var.
17239
17240 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
17241
17242 * help-fns.el (describe-categories): "?\ " -> "?\s".
17243 (help-do-arg-highlight): Recognize also ARG-n, as in
17244 `move-to-left-margin' (ARG+n is already recognized). Simplify.
17245
17246 * international/codepage.el (dos-unsupported-char-glyph):
17247 * net/newsticker.el (tool-bar-map, w3-mode-map)
17248 (w3m-minor-mode-map):
17249 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
17250 (ent-alist):
17251 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
17252
17253 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
17254
17255 * custom.el (custom-push-theme): Handle the case where a symbol is
17256 bound but face properties have not yet been assigned.
17257
17258 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
17259 Fix behavior if noerase is `t' and there is no mail buffer.
17260
17261 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
17262 if `continue' is nil, rather than signal an error.
17263
17264 2005-09-12 Richard M. Stallman <rms@gnu.org>
17265
17266 * font-lock.el (font-lock-keywords): Add autoload.
17267
17268 * help-fns.el (describe-variable): Rearrange to put source link
17269 in a predictable place.
17270
17271 * net/newsticker.el: New file.
17272
17273 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17274
17275 * calendar/calendar.el (calendar-for-loop): Add edebug info.
17276 (calendar-basic-setup): Use the new nil arg.
17277 (number-of-diary-entries): Move to diary-lib.el.
17278
17279 * calendar/diary-lib.el: Use with-current-buffer, match-string.
17280 (diary-list-entries): Use with-syntax-table and dolist.
17281 Rename from list-diary-entries.
17282 Use number-of-diary-entries if `number' is nil.
17283 (diary, diary-view-entries): Use this new name and new nil arg value.
17284 (number-of-diary-entries): Move from calendar.el.
17285 (diary-unhide-everything): New function.
17286 (include-other-diary-files, fancy-diary-display)
17287 (diary-show-all-entries, make-diary-entry): Use it.
17288 (diary-mail-entries): Use buffer-string.
17289 (mark-diary-entries): Fix long standing paren typo.
17290 (diary-sexp-entry): Use count-lines.
17291 (make-diary-entry): Avoid `previous-line'.
17292 (diary-mode-map): New var.
17293 (diary-mode): Redraw cal after saving. Setup header-line.
17294 (fancy-diary-display-mode): Use local-set-key.
17295
17296 * startup.el (command-line): Try calling various terminal-init-foo-bar
17297 functions by stripping hyphenated suffixes from $TERM.
17298
17299 * files.el (normal-mode): Check boundness of font-lock-keywords.
17300
17301 2005-09-12 Richard M. Stallman <rms@gnu.org>
17302
17303 * progmodes/compile.el: Don't decide a file's directory
17304 until the user actually tries to go there.
17305 (compilation-next-error-function):
17306 Pass compilation-find-file the directory from the file-struct.
17307 (compilation-internal-error-properties): Separate local FILE-STRUCT
17308 from FILE. Doc the args better. Rename arg FMT to FMTS.
17309 (compilation-find-file): Arg DIR renamed to DIRECTORY.
17310 Expand it, and if nil, use default-directory.
17311 (compilation-get-file-structure): Don't mix specified directory
17312 with default directory. Put specified directory into
17313 file-struct. Don't make the file name absolute.
17314
17315 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
17316 (compile-command): Add autoload.
17317 (compilation-disable-input): Add autoload.
17318
17319 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
17320
17321 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
17322 strings of the variables it can override.
17323 (time-stamp): New (as yet undocumented) time-stamp-format escapes
17324 %Q and %q, for fully-qualified domain name and unqualified host name.
17325
17326 2005-09-11 Kim F. Storm <storm@cua.dk>
17327
17328 * emacs-lisp/authors.el (authors-aliases): Update list.
17329 (authors-fixed-entries): Update mldrag.el entry.
17330
17331 2005-09-10 Alan Mackenzie <acm@muc.de>
17332
17333 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
17334 from the region narrowed to.
17335
17336 2005-09-10 Magnus Henoch <mange@freemail.hu>
17337
17338 * textmodes/ispell.el (ispell-check-version): Signal an error if
17339 aspell version is less than 0.60.
17340
17341 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
17342
17343 * progmodes/octave-inf.el (inferior-octave-startup):
17344 Resync current dir at the end.
17345
17346 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
17347
17348 * woman.el (woman-topic-at-point-default):
17349 Rename to woman-use-topic-at-point-default.
17350 (woman-topic-at-point): Rename to woman-use-topic-at-point.
17351 (woman-file-name): Reflect renames above. Automatically use the
17352 word at point as topic if woman-use-topic-at-point is non-nil.
17353 Otherwise offer it as default but don't insert it in the
17354 minibuffer. Also use `test-completion' instead of `assoc' as
17355 suggested by Stefan Monnier.
17356
17357 2005-09-10 Andre Spiegel <spiegel@gnu.org>
17358
17359 * vc.el (vc-directory, vc-update-change-log): Throw an error on
17360 the attempt to do it over Tramp. This is not yet supported.
17361
17362 2005-09-10 Eli Zaretskii <eliz@gnu.org>
17363
17364 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
17365 (menu-bar-non-minibuffer-window-p): New functions.
17366 ("Split Window", "Save As..."): Use them.
17367 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
17368 ("Print Buffer", "Truncate Long Lines in this Buffer"):
17369 Use menu-bar-menu-frame-live-and-visible-p.
17370 ("Save Buffer", "Insert File", "Open Directory...")
17371 ("Open File...", "Visit New File..."):
17372 Use menu-bar-non-minibuffer-window-p.
17373 (kill-this-buffer-enabled-p, dired <menu-enable>):
17374 Use menu-bar-non-minibuffer-window-p.
17375
17376 2005-09-09 Eli Zaretskii <eliz@gnu.org>
17377
17378 * cus-start.el (all): Don't complain about fringe-related
17379 built-ins if fringes are not supported. Ditto about
17380 selection-related built-ins. Fix the test for GTK-related built-ins.
17381
17382 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
17383 ("Postscript Print Buffer", "Print Region", "Save As...")
17384 ("Save", "Insert File...", "Open Directory...")
17385 ("Open File...", "Visit New File..."")
17386 ("Truncate Long Lines in this Buffer"): Don't look at
17387 menu-updating-frame if this display does not support multiple frames.
17388
17389 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
17390
17391 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
17392
17393 2005-09-09 Emilio Lopes <eclig@gmx.net>
17394
17395 * woman.el: Format- and whitespace-related changes.
17396
17397 2005-09-09 Eli Zaretskii <eliz@gnu.org>
17398
17399 * woman.el: Fix my email address.
17400
17401 2005-09-08 Richard M. Stallman <rms@gnu.org>
17402
17403 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
17404 (sh-mode): Locally set skeleton-pair-default-alist.
17405
17406 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
17407
17408 * progmodes/flymake.el: Require `compile' unconditionally.
17409
17410 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
17411
17412 * woman.el (woman-file-name): Provide a default, not initial input.
17413
17414 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
17415
17416 * font-lock.el (font-lock-support-mode): Doc fix.
17417
17418 * descr-text.el (describe-property-list): Handle non-symbol prop names.
17419
17420 2005-09-08 Richard M. Stallman <rms@gnu.org>
17421
17422 * simple.el (blink-matching-open): Get rid of text props from
17423 the string shown in echo area. Don't permanently set point.
17424 Some rearrangements.
17425
17426 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
17427
17428 * recentf.el (recentf-filename-handler): Add custom choice
17429 `abbreviate-file-name'.
17430
17431 * msb.el (msb--very-many-menus): Fix typo.
17432
17433 * disp-table.el (standard-display-european): Don't set
17434 enable-multibyte-characters to nil.
17435
17436 2005-09-08 David Ponce <david@dponce.com>
17437
17438 * recentf.el (recentf-show-file-shortcuts-flag): New option.
17439 (recentf-expand-file-name): Doc fix.
17440 (recentf-dialog-mode-map): Define digit shortcuts.
17441 (recentf--files-with-key): New variable.
17442 (recentf-show-digit-shortcut-filter): New function.
17443 (recentf-open-files-items): New function.
17444 (recentf-open-files): Use it.
17445 (recentf-open-file-with-key): New command.
17446
17447 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
17448
17449 * buff-menu.el (Buffer-menu-sort-by-column): New function.
17450 Suggested by Kim F. Storm.
17451 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
17452 (Buffer-menu-make-sort-button): Use global keymap.
17453
17454 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
17455
17456 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
17457 (Man-getpage-in-background-advice): Remove defadvice; it isn't
17458 necessary any longer with the remapped command.
17459 (Man-bgproc-sentinel-advice): Remove defadvice which counts
17460 formatting time only.
17461
17462 * net/tramp.el (tramp-action-password)
17463 (tramp-multi-action-password): Compile the password prompt from
17464 `method', `user' and `host'. Sometimes it isn't obvious which
17465 password to enter, for example with remote files offered by
17466 recentf.el, or with multiple steps. Suggested by Robert Marshall
17467 <robert@chezmarshall.freeserve.co.uk>.
17468
17469 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17470
17471 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
17472 Fix regexp for when "s///" is at the beginning of line.
17473
17474 2005-09-07 Jay Belanger <belanger@truman.edu>
17475
17476 * calc/calc-poly.el (math-expand-term): Multiply out any powers
17477 when in matrix mode.
17478
17479 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
17480
17481 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
17482 non-anonymous functions.
17483
17484 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
17485
17486 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
17487 when using a header line. Otherwise, use mouse-1-click-follows-link.
17488
17489 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
17490 can't be moved; don't signal an error.
17491
17492 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
17493
17494 * cus-theme.el (custom-theme-write-faces): Save the current face
17495 spec, not the defface spec.
17496
17497 * custom.el (custom-known-themes): Clarify meaning of "standard".
17498 (custom-push-theme): Save old values in the standard theme.
17499 (disable-theme): Correct typo.
17500 (custom-face-theme-value) Deleted unused function.
17501 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
17502
17503 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
17504
17505 * progmodes/compile.el (compilation-goto-locus): Take into account
17506 iconified frames when determining whether the buffer is
17507 already visible.
17508 Don't reset window height if the window already existed.
17509
17510 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
17511
17512 * custom.el (load-theme): Rename from require-theme.
17513 Add interactive spec.
17514 (enable-theme): Rename from custom-enable-theme.
17515 Add interactive spec.
17516 (disable-theme): Rename from custom-disable-theme.
17517 Add interactive spec.
17518 (custom-make-theme-feature): Doc fix.
17519 (custom-theme-directory): Doc fix.
17520 (provide-theme): Call enable-theme.
17521
17522 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
17523
17524 * obsolete/lazy-lock.el (lazy-lock-mode):
17525 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
17526 font-lock-mode if it's off. Print a warning instead.
17527
17528 * progmodes/compile.el (compilation-start): Ignore errors if the
17529 process died before we get to send-eof.
17530
17531 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
17532 Undo last change. Enclosing the result in quotes broke things on Unix
17533 since tex-send-command passes it through shell-quote-argument.
17534 (tex-send-command): Pass `file' through convert-standard-filename
17535 when possible.
17536 (tex-uptodate-p): Handle the case where TeX hasn't put additional
17537 info in a transcript.
17538
17539 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
17540
17541 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
17542 fix compilation warning. Reorder the key definitions to group
17543 together keys emitted by the current version of xterm.
17544
17545 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
17546 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
17547 Reorder predicates to correct min-color usage.
17548
17549 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
17550
17551 * longlines.el (longlines-mode): Inhibit read-only when encoding.
17552 Kill local variables when longlines-mode is turned off.
17553
17554 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
17555
17556 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
17557
17558 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
17559
17560 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
17561
17562 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
17563 (font-lock-lines-before): Change default to being inactive.
17564 (font-lock-default-fontify-region): Obey font-lock-lines-before.
17565 (font-lock-after-change-function): Don't handle f-l-lines-before here.
17566
17567 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
17568
17569 * net/tramp.el (tramp-handle-make-auto-save-file-name):
17570 Deactivate temporarily advice if active (not needed for Emacs 22,
17571 but for backwards compatibility).
17572 (tramp-exists-file-name-handler): Rewrite. First implementation
17573 was too simple.
17574 (tramp-advice-make-auto-save-file-name):
17575 Call `tramp-handle-make-auto-save-file-name' (again, just for
17576 backwards compatibility).
17577
17578 2005-08-31 Reto Zimmermann <reto@gnu.org>
17579
17580 * progmodes/vhdl-mode.el
17581 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
17582 (vhdl-end-p): Fix indentation bug "else" after "-- when".
17583 (vhdl-set-default-project): New function (easier setting of default).
17584 (vhdl-port-copy): Handle extended identifiers for generics.
17585 (vhdl-compiler-alist): Better description for error message regexp.
17586 (vhdl-make): Query for target, use previous as default.
17587 (vhdl-port-copy): Fix port copy for port names starting with "signal".
17588 (vhdl-font-lock-keywords-2): Fix fontification for record
17589 el. assign.
17590 (vhdl-speedbar-make-subpack-line): Add package body link.
17591 (vhdl-generate-makefile-1): Not include itself as dependency.
17592 (vhdl-font-lock-init): Highlight c-preprocessor directives.
17593 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
17594 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
17595 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
17596 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
17597 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
17598 (vhdl-import-project): Add string argument for `error'.
17599 (vhdl-compose-configuration)
17600 (vhdl-compose-configuration-architecture): Add configuration
17601 declaration generation.
17602 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
17603 (vhdl-trailer-re): Add "record" keyword (better indentation).
17604 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
17605 "[^ \t-\"]+".
17606 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
17607 (vhdl-testbench-entity-file-name)
17608 (vhdl-testbench-architecture-file-name): Allow separate
17609 customization of testbench file names.
17610 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
17611 (vhdl-get-visible-signals): Allow newline within alias declaration.
17612 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
17613 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
17614 (member-ignore-case): Alias for missing function in XEmacs.
17615 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
17616 (vhdl-update-sensitivity-list): Ignore case on read signals.
17617 (vhdl-replace-string): Adjust case only for file names.
17618 (vhdl-update-sensitivity-list): Fix search for read signals.
17619 (vhdl-update-sensitivity-list): Exclude formal parameters.
17620 (vhdl-get-visible-signals): Include aliases of signals.
17621 (vhdl-get-visible-signals): Fix signal name searching.
17622 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
17623 (vhdl-fixup-whitespace-region): Fix for character
17624 literals (e.g. `:').
17625
17626 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
17627
17628 * ansi-color.el (comint-last-output-start):
17629 * bs.el (font-lock-verbose):
17630 * diff-mode.el (add-log-buffer-file-name-function):
17631 * dired-x.el (vm-folder-directory):
17632 * faces.el (help-xref-stack-item):
17633 * files.el (font-lock-keywords):
17634 * find-lisp.el (dired-buffers, dired-subdir-alist):
17635 * ido.el (cua-inhibit-cua-keys):
17636 * log-view.el (cvs-minor-wrap-function):
17637 * outline.el (font-lock-warning-face):
17638 * simple.el (compilation-current-error):
17639 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
17640 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
17641 * tooltip.el (comint-prompt-regexp):
17642 * w32-fns.el (explicit-shell-file-name):
17643 * term/mac-win.el (mac-charset-info-alist)
17644 (mac-services-selection, mac-system-script-code):
17645 * term/tty-colors.el (msdos-color-values):
17646 * term/w32-win.el (xlfd-regexp-registry-subnum):
17647 * term/x-win.el (x-keysym-table, x-selection-timeout)
17648 (x-session-id, x-session-previous-id):
17649 * textmodes/ispell.el (mail-yank-prefix):
17650 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
17651 * textmodes/org.el (calc-embedded-close-formula)
17652 (calc-embedded-open-formula)
17653 (font-lock-unfontify-region-function):
17654 * textmodes/reftex-global.el (isearch-next-buffer-function)
17655 (TeX-master):
17656 * textmodes/reftex.el (font-lock-keywords):
17657 * textmodes/tex-mode.el (font-lock-comment-face)
17658 (font-lock-doc-face):
17659 * textmodes/texinfo.el (outline-heading-alist):
17660 Add defvars.
17661
17662 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
17663 (artist-spray-chars, artist-mode-init, artist-replace-string)
17664 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
17665 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
17666 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
17667
17668 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
17669 (conf-align-assignments): "?\ " -> "?\s".
17670
17671 * textmodes/reftex-index.el (TeX-master): Add defvar.
17672 (reftex-index-phrases-marker): Move up defvar.
17673
17674 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
17675 (reftex-toc-include-labels-indicator)
17676 (reftex-toc-include-index-indicator)
17677 (reftex-toc-max-level-indicator): Move up declarations.
17678
17679 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
17680 of args to `tramp-run-real-handler', even if it's empty in this case.
17681
17682 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17683
17684 * dired.el (dired-move-to-filename-regexp): Add date format for
17685 Mac OS X 10.3 in East Asian locales.
17686
17687 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
17688
17689 * files.el (make-auto-save-file-name): Add file name handler call
17690 if applicable.
17691
17692 * net/tramp.el (tramp-file-name-handler-alist)
17693 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
17694 (tramp-handle-make-auto-save-file-name): Rename from
17695 `tramp-make-auto-save-file-name'.
17696 (tramp-exists-file-name-handler): New defun.
17697 (tramp-advice-make-auto-save-file-name): Make defadvice only when
17698 `make-auto-save-file-name' is not a magic file name operation.
17699
17700 2005-08-30 Richard M. Stallman <rms@gnu.org>
17701
17702 * files.el (risky-local-variable-p):
17703 Match `-predicates' and `-commands.
17704
17705 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
17706 (custom-save-all): Visit the file if necessary;
17707 kill the buffer if we created it.
17708 (custom-save-delete): Don't visit file or kill buffer here.
17709
17710 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
17711
17712 * textmodes/org.el (org-special-keyword): New face.
17713 (org-table-copy-down, org-table-eval-formula)
17714 (org-table-recalculate, org-init-section-numbers):
17715 Use `string-to-number' instead of `string-to-int'.
17716 (org-get-location): Use `insert-buffer-substring' instead of
17717 `insert-buffer'.
17718 (org-modify-diary-entry-string): New function.
17719 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
17720 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
17721 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
17722 active region.
17723 (org-export-as-html): Handle QUOTE keyword.
17724 (org-quote-string): New option.
17725 (org-bookmark-jump-unhide): New function, used for
17726 `bookmark-after-jump-hook'.
17727 (org-diary-default-entry): Apply only when not called through
17728 `org-agenda'.
17729
17730 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
17731
17732 * net/eudc.el (mode-popup-menu):
17733 * play/handwrite.el (ps-printer-name, ps-lpr-command):
17734 * progmodes/ada-mode.el (compile-auto-highlight)
17735 (skeleton-further-elements):
17736 * progmodes/autoconf.el (font-lock-syntactic-keywords):
17737 * progmodes/cmacexp.el (msdos-shells):
17738 * progmodes/compile.el (font-lock-extra-managed-props)
17739 (font-lock-keywords, font-lock-maximum-size)
17740 (font-lock-support-mode):
17741 * progmodes/grep.el (font-lock-lines-before):
17742 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
17743 * progmodes/mixal-mode.el (compile-command):
17744 * progmodes/perl-mode.el (font-lock-comment-face)
17745 (font-lock-doc-face, font-lock-string-face):
17746 * progmodes/prolog.el (comint-prompt-regexp):
17747 * progmodes/sh-script.el (font-lock-comment-face)
17748 (font-lock-set-defaults, font-lock-string-face):
17749 * progmodes/sql.el (font-lock-keyword-face)
17750 (font-lock-set-defaults, font-lock-string-face):
17751 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
17752 (itimer-version, lazy-lock-defer-contextually)
17753 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
17754 Add defvars.
17755
17756 * progmodes/cperl-mode.el (cperl-electric-lbrace)
17757 (cperl-electric-keyword, cperl-electric-pod)
17758 (cperl-electric-backspace, cperl-forward-re)
17759 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
17760 (vc-rcs-header, vc-sccs-header): Add defvars.
17761
17762 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
17763 (font-lock-syntactic-keywords, gud-find-expr-function):
17764 Add defvars.
17765
17766 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
17767 (gdb-frame-parameters): Declare before use.
17768
17769 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
17770 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
17771 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
17772 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
17773
17774 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
17775 (idlwave-help-with-source): Use `insert-buffer-substring', not
17776 `insert-buffer'.
17777
17778 2005-08-29 Juri Linkov <juri@jurta.org>
17779
17780 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
17781 Put outline-back-to-heading function call inside save-excursion.
17782
17783 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
17784
17785 * man.el (Man-init-defvars, Man-translate-references)
17786 (Man-support-local-filenames, Man-highlight-references):
17787 * progmodes/sql.el (sql-interactive-mode):
17788 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
17789
17790 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
17791 (compilation-mode-font-lock-keywords): Add defvars.
17792 (checkdoc-interactive-loop): "?\ " -> "?\s".
17793
17794 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
17795 (font-lock-doc-face, font-lock-string-face)
17796 (font-lock-keywords-case-fold-search): Add defvars.
17797 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
17798
17799 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
17800 Don't pass X and Y (they are ignored anyway).
17801 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
17802 (mouse-delete-window): Make arguments optional.
17803
17804 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
17805 (caesar-translate-table, minor-modes, news-buffer-save)
17806 (news-group-name, news-minor-modes): Add defvars.
17807
17808 * emacs-lisp/lselect.el (mouse-highlight-priority)
17809 (x-lost-selection-functions, zmacs-regions):
17810 * emacs-lisp/pp.el (font-lock-verbose):
17811 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
17812 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
17813 (ses-mode-map):
17814 * emacs-lisp/tcover-unsafep.el (safe-functions):
17815 * international/mule-cmds.el (mac-system-coding-system)
17816 (mac-system-locale):
17817 * language/ethio-util.el (rmail-current-message)
17818 (rmail-message-vector):
17819 * language/thai-util.el (thai-auto-composition-mode):
17820 * mail/metamail.el (rmail-current-message, rmail-message-vector):
17821 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
17822 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
17823 (vm-primary-inbox, vm-spool-files):
17824 * mail/rmail.el (deleted-head, font-lock-fontified)
17825 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
17826 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
17827 (total-messages):
17828 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
17829 (rmail-summary-mode-map):
17830 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
17831 (rmail-last-label, rmail-last-multi-labels)
17832 (rmail-summary-vector, rmail-total-messages):
17833 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
17834 * mail/rmailsum.el (msgnum):
17835 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
17836 (rmail-current-message):
17837 * obsolete/fast-lock.el (font-lock-face-list):
17838 * obsolete/rnewspost.el (mail-reply-buffer):
17839 * obsolete/scribe.el (compile-command):
17840 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
17841
17842 2005-08-28 John Paul Wallington <jpw@gnu.org>
17843
17844 * ibuf-ext.el (ibuffer-auto-update-changed):
17845 Use `frame-or-buffer-changed-p' to check whether we need to update.
17846 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
17847 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
17848 as a `frame-or-buffer-changed-p' state vector instead.
17849
17850 2005-08-27 Romain Francoise <romain@orebokech.com>
17851
17852 * textmodes/makeinfo.el (makeinfo-compile):
17853 Use `compilation-start'. Set `next-error-function' according to
17854 `disable-errors'.
17855 (makeinfo-next-error): New function.
17856 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
17857 (makeinfo-buffer): Likewise.
17858
17859 * progmodes/compile.el (compilation-start): Add autoload cookie.
17860
17861 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
17862 * textmodes/sgml-mode.el: Likewise.
17863 * progmodes/python.el: Likewise.
17864
17865 2005-08-27 Eli Zaretskii <eliz@gnu.org>
17866
17867 * simple.el (blink-matching-paren-distance): Document the meaning
17868 of nil value, and allow to customize to nil.
17869
17870 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
17871 command.com, not command.exe.
17872
17873 2005-08-26 John Wiegley <johnw@newartisans.com>
17874
17875 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
17876 code around a bit so that an extraneous nil argument is not added
17877 to a command when no args are given.
17878
17879 * eshell/esh-arg.el (eshell-parse-double-quote): If a
17880 double-quoted argument resolves to nil, return it as an empty
17881 string rather than as nil. This made it impossible to pass "" to
17882 a shell script as a null string argument.
17883
17884 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
17885
17886 * outline.el (outline-invent-heading): New fun.
17887 (outline-promote, outline-demote): Use it.
17888 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
17889 (outline-end-of-subtree): Remove unused var `opoint'.
17890
17891 2005-08-26 David Reitter <david.reitter@gmail.com>
17892
17893 * menu-bar.el (truncate-lines, write-file, print-buffer)
17894 (ps-print-buffer-faces, ps-print-buffer, split-window):
17895 Disable menu items when the frame they refer to is invisible, or when
17896 they refer to a buffer and the minibuffer is selected.
17897
17898 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
17899
17900 * progmodes/flymake.el (flymake-highlight-err-lines):
17901 Use save-excursion around flymake-highlight-line to preserve point.
17902
17903 2005-08-26 Eli Zaretskii <eliz@gnu.org>
17904
17905 * progmodes/octave-mod.el: Change Author and Maintainer address.
17906 (octave-maintainer-address): Change Kurt's email address.
17907 * progmodes/octave-inf.el: Change Author and Maintainer address.
17908 * progmodes/octave-hlp.el: Change Author and Maintainer address.
17909
17910 2005-08-26 Kim F. Storm <storm@cua.dk>
17911
17912 * subr.el (version-list-<, version-list-<=, version-list-=):
17913 Rename from integer-list-*.
17914 (version-list-not-zero): Likewise. Fix while loop.
17915 (version=): Use version-list-= instead of string-equal.
17916
17917 2005-08-26 Richard M. Stallman <rms@gnu.org>
17918
17919 * outline.el (outline-promote): Try shortening the heading.
17920 As last resort, read the heading to use.
17921 (outline-demote): As last resort, read the heading to use.
17922
17923 2005-08-26 Romain Francoise <romain@orebokech.com>
17924
17925 * progmodes/compile.el (compilation-start): Doc fix.
17926
17927 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
17928 (antlr-font-lock-additional-keywords): Fix reference to
17929 `antlr-font-lock-literal-regexp' erroneously changed during the
17930 mass face rename.
17931 (antlr-run-tool): Use `compilation-start'.
17932
17933 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
17934 instead of the obsolete `compile-internal'.
17935
17936 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
17937
17938 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
17939 (number, original-date):
17940 * calendar/cal-china.el (date):
17941 * calendar/cal-coptic.el (date):
17942 * calendar/cal-french.el (date):
17943 * calendar/cal-hebrew.el (date, entry, number, original-date):
17944 * calendar/cal-islam.el (date, number, original-date):
17945 * calendar/cal-iso.el (date):
17946 * calendar/cal-julian.el (date):
17947 * calendar/cal-mayan.el (date):
17948 * calendar/cal-menu.el (date, event):
17949 * calendar/cal-persia.el (date):
17950 * calendar/lunar.el (date):
17951 * calendar/solar.el (date): Add defvars.
17952
17953 * emerge.el:
17954 * ibuffer.el:
17955 * info-xref.el:
17956 * obsolete/bg-mouse.el:
17957 * obsolete/sun-curs.el:
17958 * obsolete/swedish.el: Move the `defvar's to the top level.
17959
17960 * smerge-mode.el (smerge-refined-change): Add :group.
17961
17962 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
17963
17964 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
17965 (smerge-keep-n): Remove props.
17966 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
17967 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
17968 now that it's done in smerge-keep-n.
17969 (smerge-refined-change): New face.
17970 (smerge-refine-chopup-region, smerge-refine-highlight-change)
17971 (smerge-refine): New funs.
17972 (smerge-basic-map): Bind smerge-refine.
17973
17974 2005-08-25 Juri Linkov <juri@jurta.org>
17975
17976 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
17977 compilation-process-setup-function and compilation-disable-input
17978 in grep-mode instead of let-bindings in grep.
17979
17980 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
17981 Delete "Automatic File De/compression" (auto-compression-mode).
17982
17983 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
17984
17985 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
17986 Silence warning about non-existent variable.
17987
17988 2005-08-25 Richard M. Stallman <rms@gnu.org>
17989
17990 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
17991 Rename "Describe Key" to "Describe Key or Mouse Operation".
17992
17993 * mail/mailalias.el (build-mail-aliases): Delete comments
17994 from the contents before processing them.
17995
17996 * isearch.el (isearch-edit-string): Erase the Search prompt
17997 if user enters an empty string and there is no default.
17998
17999 * comint.el (comint-file-name-prefix): Add autoload.
18000
18001 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
18002
18003 * subr.el (play-sound): Rearrange to avoid warning.
18004
18005 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
18006
18007 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
18008 New hook.
18009 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
18010
18011 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18012
18013 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
18014
18015 * custom.el (custom-theme-set-variables): Sort minor modes last.
18016
18017 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18018
18019 * subr.el (version-separator, version-regexp-alist): New vars used by
18020 version comparison funs.
18021 (integer-list-<, integer-list-=, integer-list-<=)
18022 (integer-list-not-zero): New funs for integer list comparison.
18023 (version-to-list, version=, version<, version<=): New funs for version
18024 comparison.
18025
18026 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
18027
18028 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
18029 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
18030 time to silence the byte-compiler.
18031
18032 * ibuffer.el (ibuffer-compile-make-eliding-form)
18033 (ibuffer-check-formats): Use `with-no-warnings' to hide references
18034 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
18035 so it's silly to get warnings for it).
18036 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
18037 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
18038 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
18039 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
18040 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
18041 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
18042 Defvar at compile time.
18043 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
18044 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
18045 Declare them before use.
18046
18047 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
18048 (info-xref-good, info-xref-bad): Defvar at compile time.
18049
18050 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
18051 Use `let*' instead of `let'.
18052
18053 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
18054 (*mouse-y*, menu, char): Defvar at compile time.
18055 (sc::menu): Declare it before use.
18056 (sc::pack-one-line): Use `let', not `let*'.
18057
18058 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
18059 (mail-send-hook): Defvar at compile time.
18060
18061 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
18062 Defvar at compile time.
18063
18064 * term/sun-mouse.el (current-global-mousemap)
18065 (current-local-mousemap): Declare them before use.
18066
18067 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
18068
18069 * bookmark.el (bookmark-after-jump-hook): New hook.
18070 (bookmark-jump): Run `bookmark-after-jump-hook'.
18071
18072 2005-08-23 Juri Linkov <juri@jurta.org>
18073
18074 * faces.el (minibuffer-prompt): Doc fix.
18075
18076 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
18077
18078 * progmodes/xscheme.el: Trivial changes to silence warnings.
18079 (xscheme-previous-mode, xscheme-previous-process-state):
18080 Add defvars.
18081 (xscheme-last-input-end, xscheme-process-command-line)
18082 (xscheme-process-name, xscheme-buffer-name)
18083 (xscheme-expressions-ring-max, xscheme-expressions-ring)
18084 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
18085 (xscheme-control-g-synchronization-p)
18086 (xscheme-control-g-disabled-p, xscheme-string-receiver)
18087 (default-xscheme-runlight, xscheme-runlight)
18088 (xscheme-runlight-string, xscheme-process-filter-state)
18089 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
18090 Move to beginning of file.
18091 (scheme-interaction-mode-commands-alist)
18092 (scheme-interaction-mode-map, scheme-debugger-mode-map):
18093 Declare them before use. Note: the initialization code for the
18094 variables has not been moved because it uses functions that reference
18095 the variables.
18096 (xscheme-control-g-message-string, xscheme-process-filter-alist)
18097 (xscheme-prompt-for-expression-map): Declare them before use.
18098 (scheme-debugger-mode-commands): "?\ " -> "?\s".
18099
18100 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
18101
18102 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
18103
18104 2005-08-22 Juri Linkov <juri@jurta.org>
18105
18106 * faces.el (set-face-underline): Delete this duplicate function
18107 and make an obsolete alias to set-face-underline-p.
18108 (set-face-underline-p): Use docstring of set-face-underline.
18109 (describe-face): Create hyperlink to parent face.
18110
18111 * info.el (Info-insert-dir): Use save-excursion around
18112 insert-buffer-substring.
18113 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
18114 (Info-escape-percent): Delete function.
18115 (Info-fontify-node): Replace Info-escape-percent by
18116 replace-regexp-in-string with REP arg set to lambda that
18117 duplicates `%' and preserves text properties.
18118
18119 * progmodes/compile.el (compilation-disable-input): Doc fix.
18120 (define-compilation-mode): Doc fix and refill.
18121 (kill-compilation): Use `mode-name' in the error message.
18122 (compilation-find-file): Use `compilation-error' in the
18123 read-file-name's prompt.
18124
18125 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
18126
18127 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
18128 (smerge-auto-leave): Make undo re-enable the mode.
18129 (debug-ignored-errors): Add the user-error of impossible resolution.
18130 (smerge-resolve): Move things around a bit, in preparation for later.
18131 (smerge-diff): Don't fail if the buffer has no associated file.
18132 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
18133 (smerge-conflict-overlay): New function.
18134 (smerge-match-conflict): Don't add text properties here.
18135 (smerge-find-conflict): Instead, add an overlay here.
18136 Also check for the case where we're inside a conflict already, so as to
18137 obviate the need for font-lock-multiline, which is unbearably slow with
18138 large conflicts and ciomplex font-lock patterns.
18139 (smerge-remove-props): Remove overlay rather than text-properties.
18140 (smerge-mode): Don't set font-lock-multiline.
18141 Remove overlays when turned off.
18142
18143 2005-08-21 Kim F. Storm <storm@cua.dk>
18144
18145 * ido.el (ido-ignore-item-p): Use save-match-data.
18146 Bind case-fold-search to ido-case-fold locally.
18147
18148 2005-08-20 Richard M. Stallman <rms@gnu.org>
18149
18150 * files.el (normal-mode): If font lock is on, turn it off and on.
18151
18152 * subr.el (replace-regexp-in-string): Doc fix.
18153
18154 * startup.el (command-line-1): Don't suppress startup screen
18155 due to existing processes.
18156
18157 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
18158
18159 * progmodes/compile.el (compilation-disable-input): Default to nil.
18160
18161 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
18162
18163 * progmodes/compile.el (compilation-disable-input): New defcustom.
18164 (compilation-start): If compilation-disable-input is non-nil, send
18165 EOF to the compilation process.
18166
18167 2005-08-20 Eli Zaretskii <eliz@gnu.org>
18168
18169 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
18170 Run the argument of tex-shell-cd-command through
18171 convert-standard-filename, to get the correct style of slashes on
18172 Windows, and enclose the result in quotes, in case the file name
18173 includes whitespace or other special characters.
18174
18175 2005-08-19 Andreas Schwab <schwab@suse.de>
18176
18177 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
18178 process.
18179
18180 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
18181
18182 * cus-start.el (minibuffer-prompt-properties): Correct typo.
18183
18184 2005-08-18 Kim F. Storm <storm@cua.dk>
18185
18186 * scroll-lock.el: Fix errors due to incorrect line wrapping.
18187
18188 2005-08-18 Richard M. Stallman <rms@gnu.org>
18189
18190 * scroll-lock.el: New file.
18191
18192 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
18193
18194 * dired.el (dired-move-to-end-of-filename):
18195 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
18196
18197 2005-08-18 Kim F. Storm <storm@cua.dk>
18198
18199 * ido.el (ido-everywhere): Fix defcustom :set function to disable
18200 rather than toggle mode when custom value is nil.
18201 (ido-everywhere): Fix defun doc string.
18202
18203 2005-08-17 Richard M. Stallman <rms@gnu.org>
18204
18205 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
18206 as tag instead of "Inviolable".
18207
18208 2005-08-17 Kim F. Storm <storm@cua.dk>
18209
18210 * windmove.el (windmove-coordinates-of-position): Remove.
18211 (windmove-coordinates-of-window-position): Remove.
18212 (windmove-reference-loc): Use posn-at-point instead.
18213
18214 * subr.el (insert-for-yank-1): Doc fix.
18215
18216 * ido.el (ido-enter-matching-directory): Rename from
18217 ido-enter-single-matching-directory. Change `slash' choice to
18218 `only'. Add `first' choice.
18219 (ido-exhibit): Adapt to above changes.
18220
18221 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
18222
18223 * Makefile.in: Expand comment about building loaddefs.el.
18224
18225 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
18226
18227 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
18228 Comment use of defadvice.
18229
18230 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
18231
18232 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
18233
18234 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
18235 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
18236 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
18237 * progmodes/idlw-shell.el, progmodes/ld-script.el,
18238 * progmodes/which-func.el, ruler-mode.el, strokes.el,
18239 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
18240 for backward compatibility for faces that did not appear in the
18241 previous Emacs release.
18242
18243 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
18244
18245 2005-08-15 Kim F. Storm <storm@cua.dk>
18246
18247 * emulation/cua-base.el (cua-delete-region): Return t if
18248 deleted region was non-empty.
18249 (cua-replace-region): Inhibit overwrite-mode for
18250 self-insert-command if replaced region was non-empty.
18251 (cua--explicit-region-start, cua--status-string): Make them
18252 buffer-local at top-level...
18253 (cua-mode): ...rather than when mode is enabled.
18254
18255 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
18256
18257 * progmodes/vhdl-mode.el (vhdl-emacs-21):
18258 Set t for Emacs 21, 22, and so on.
18259
18260 2005-08-15 David Ponce <david@dponce.com>
18261
18262 * tree-widget.el: Update Commentary header.
18263 (tree-widget-theme): Doc fix.
18264 (tree-widget-space-width): New option.
18265 (tree-widget-image-properties): Look up in the default theme too.
18266 (tree-widget--cursors): Only for images with arrow pointer shape.
18267 (tree-widget-lookup-image): Pointer shape is hand by default.
18268 (tree-widget-icon): Rename generic icon widget from
18269 `tree-widget-control'.
18270 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
18271 derive from `tree-widget-icon'.
18272 (tree-widget-handle): Improve default look and feel of the text
18273 representation.
18274 (tree-widget): Rename :*-control properties to :*-icon properties.
18275 Add :action and :help-echo properties.
18276 (tree-widget-after-toggle-functions): Move.
18277 (tree-widget-close-node, tree-widget-open-node): Remove.
18278 (tree-widget-before-create-icon-functions): New hook.
18279 (tree-widget-value-create): Update to allow customization of icons
18280 and nodes at run-time via that new hook.
18281 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
18282 (tree-widget-icon-action, tree-widget-icon-help-echo)
18283 (tree-widget-action, tree-widget-help-echo): New functions.
18284
18285 2005-08-15 Kim F. Storm <storm@cua.dk>
18286
18287 * ido.el (ido-buffer-internal): Use with-no-warnings.
18288 (ido-make-merged-file-list): Use while-no-input.
18289
18290 2005-08-15 Richard M. Stallman <rms@gnu.org>
18291
18292 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
18293 (flyspell-large-region): Fix doc and custom type.
18294
18295 2005-08-14 Richard M. Stallman <rms@gnu.org>
18296
18297 * files.el (interpreter-mode-alist): Doc fix.
18298
18299 * mail/rmail.el (rmail-nonignored-headers): New variable.
18300 (rmail-clear-headers): Use it.
18301 (rmail-reply): Better handling of mail-followup-to header.
18302
18303 * progmodes/sh-script.el (sh-font-lock-keywords-var):
18304 Rename variable from sh-font-lock-keywords. In the `shell' entry,
18305 don't try to refer to executable-font-lock-keywords.
18306 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
18307 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
18308 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
18309 (sh-mode): Set comment-start-skip, local-abbrev-table,
18310 imenu-case-fold-search.
18311 (sh-set-shell): Don't set them here.
18312 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
18313 Don't cache the results in the original alist; don't ever modify
18314 that alist.
18315
18316 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
18317
18318 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
18319 empty.
18320
18321 2005-08-15 Andreas Schwab <schwab@suse.de>
18322
18323 * desktop.el: Put autoload cookie at risky-local-variable declarations.
18324
18325 * dired.el, info.el, mail/rmail.el: Revert last change.
18326
18327 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
18328
18329 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
18330 modification in `eval-after-load' form.
18331 * info.el: Likewise.
18332 * mail/rmail.el: Likewise.
18333
18334 2005-08-14 Juri Linkov <juri@jurta.org>
18335
18336 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18337 Remove highlighting of "Compilation started". Highlight only
18338 the word "finished" in "Compilation finished". Add highlighting
18339 of "interrupt", "killed", "terminated" and the exit code.
18340 (compilation-start): Add newline after header. Use exactly the
18341 same time stamp format as the finishing message.
18342 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
18343
18344 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
18345 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
18346 Add highlighting of "interrupt", "killed", "terminated".
18347
18348 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
18349 enabled and the current command is self-insert-command, call it
18350 explicitly with overwrite-mode bound to nil, to not allow it
18351 to delete the character after the selected region.
18352
18353 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
18354
18355 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
18356 move-end-of-line, end-of-line, and beginning-of-line to the list
18357 of commands after which the echo area is updated.
18358
18359 2005-08-12 Eli Zaretskii <eliz@gnu.org>
18360
18361 * cus-edit.el (custom-save-all, custom-save-delete):
18362 Bind recentf-exclude to exclude custom-file.
18363
18364 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
18365
18366 * mail/rmailsum.el (rmail-summary-end-of-message): New command
18367 to go to the bottom of the mail message. Added to
18368 `rmail-summary-mode-map' with key "/".
18369 (rmail-summary-show-message): New (internal) function for use by
18370 both `rmail-summary-beginning/end-of-message'.
18371 (rmail-summary-beginning-of-message): Change to use
18372 rmail-summary-show-message.
18373
18374 * mail/rmail.el (rmail-end-of-message): New command to go to the
18375 end of the current message. Added to `rmail-mode-map' with key "/".
18376 (rmail-beginning-of-message): Fix to work as documented.
18377 (rmail-mode): Change documentation.
18378
18379 * progmodes/compile.el (compilation-start): Add the line
18380 "Compilation started" with compilation start time.
18381 (compilation-mode-font-lock-keywords): Add `started' to keywords.
18382
18383 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
18384
18385 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
18386 of menu items.
18387
18388 2005-08-11 Richard M. Stallman <rms@gnu.org>
18389
18390 * simple.el (pop-global-mark): Reverse test of widen-automatically.
18391
18392 * battery.el (battery-status-function): Don't use ignore-errors.
18393
18394 2005-08-11 Lute Kamstra <lute@gnu.org>
18395
18396 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
18397 define-obsolete-variable-alias.
18398
18399 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
18400
18401 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
18402 (ange-ftp-send-cmd): Revert last change, and expand
18403 the comment explaining the problem.
18404
18405 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
18406
18407 * ldefs-boot.el: Update.
18408
18409 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
18410 item to "Time, Load and Mail". Change help echo text.
18411
18412 * time.el (display-time-use-mail-icon, display-time-format)
18413 (display-time-string-forms): Shorten first line of docstrings.
18414
18415 2005-08-10 Lars Hansen <larsh@soem.dk>
18416
18417 * desktop.el (desktop-buffer-mode-handlers):
18418 Make non-customizable. Add autoload cookie. Change initial value to
18419 nil; add elements in respective modules instead. Fix doc string.
18420 (desktop-load-file): New function.
18421 (desktop-minor-mode-handlers): New autoloaded variable.
18422 (desktop-create-buffer): Call minor mode handlers.
18423 Use desktop-load-file to load major and minor mode modules prior to
18424 checking for a handler.
18425 (desktop-save): Don't add nil to desktop-minor-modes for minor
18426 modes with nil function in desktop-minor-mode-table. Don't delete
18427 desktop file before rewriting it.
18428 (desktop-locals-to-save): Add autoload cookie. Don't make
18429 automatically buffer-local. Add variables column-number-mode,
18430 size-indication-mode, indent-tabs-mode,
18431 indicate-buffer-boundaries, indicate-empty-lines and
18432 show-trailing-whitespace.
18433 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
18434 regexps. Don't use desktop-clear-preserve-buffers-regexp.
18435 (desktop-clear-preserve-buffers-regexp): Delete.
18436 (desktop-clear-preserve-buffers): Update initial value and docstring.
18437 (desktop-save-buffer): Fix doc string.
18438
18439 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
18440 (hilit-chg-desktop-restore): New function.
18441 (highlight-changes-mode): Add highlight-changes-mode to
18442 desktop-locals-to-save.
18443
18444 * dired.el: Add handler to desktop-buffer-mode-handlers.
18445 (dired-restore-desktop-buffer): Remove autoload cookie.
18446 (dired-mode): Add autoload cookie.
18447
18448 * info.el: Add handler to desktop-buffer-mode-handlers.
18449 (Info-restore-desktop-buffer): Remove autoload cookie.
18450 (Info-mode): Add autoload cookie.
18451
18452 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
18453 (mh-restore-desktop-buffer): Remove autoload cookie.
18454 (mh-folder-mode): Add autoload cookie.
18455
18456 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
18457 (rmail-restore-desktop-buffer): Remove autoload cookie.
18458
18459 2005-08-11 Masatake YAMATO <jet@gyve.org>
18460
18461 * hexl.el (hexl-address-region):
18462 (hexl-ascii-region, hexl-font-lock-keywords):
18463 (hexl-highlight-line-range): Use the term "region"
18464 instead of "area" for consistency with the other symbols
18465 defined in hexl.el.
18466
18467 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
18468
18469 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
18470 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
18471 out by Juri Linkov). Add `display-battery-mode'.
18472
18473 2005-08-09 Juri Linkov <juri@jurta.org>
18474
18475 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18476 Remove `-text' from face variable names.
18477 (compilation-error-file-name, compilation-warning-file-name)
18478 (compilation-info-file-name): Delete faces.
18479 (compilation-line-number, compilation-column-number):
18480 Remove face underlining.
18481 (compilation-message-face): Set to `underline' value by default.
18482 (compilation-error-face, compilation-warning-face)
18483 (compilation-info-face): Remove `-file-name' from face names.
18484 (compilation-error-text-face, compilation-warning-text-face)
18485 (compilation-info-text-face): Delete face variables.
18486 (compilation-text-face): Delete function.
18487
18488 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
18489 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
18490 (grep-error-face): Set to `compilation-error' instead of
18491 `compilation-error-face' (which is redefined to `grep-hit-face' in
18492 grep buffers).
18493 (grep-mode-font-lock-keywords): Remove `-text' from face variable
18494 names. Use `grep-error-face' instead of `compilation-error-text-face'.
18495
18496 * dired-aux.el (dired-do-query-replace-regexp):
18497 Use `query-replace-read-args'.
18498
18499 * replace.el (query-replace-read-from, query-replace-read-to)
18500 (query-replace-read-args): Rename arg `string' to `prompt'.
18501
18502 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
18503
18504 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
18505
18506 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
18507 uploading files.
18508 (ange-ftp-canonize-filename): Handle file names beginning with ~
18509 correctly.
18510
18511 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
18512
18513 * textmodes/fill.el (canonically-space-region)
18514 (fill-context-prefix, fill-french-nobreak-p)
18515 (fill-delete-newlines, fill-comment-paragraph)
18516 (justify-current-line): "?\ " -> "?\s".
18517
18518 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
18519
18520 * textmodes/fill.el (fill-nonuniform-paragraphs):
18521 Improve argument/docstring consistency.
18522
18523 2005-08-09 Richard M. Stallman <rms@gnu.org>
18524
18525 * textmodes/ispell.el (ispell-word): More fboundp checks.
18526
18527 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
18528 (find-file-noselect-1): Call it here, only if RAWFILE.
18529 (normal-mode): Always set some major mode.
18530 (save-some-buffers-action-alist): Change some explanation strings.
18531 (file-name-non-special): In the `quote' method, use unwind-protect.
18532
18533 2005-08-09 Magnus Henoch <mange@freemail.hu>
18534
18535 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
18536 (ispell-have-aspell-dictionaries): New variable.
18537 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
18538 (ispell-get-aspell-config-value): New function.
18539 (ispell-aspell-find-dictionary): New function.
18540 (ispell-aspell-add-aliases): New function.
18541 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
18542 appropriate. Don't look for ispell dictionaries if we use aspell.
18543 (ispell-menu-map): Don't build a submenu of dictionaries.
18544
18545 2005-08-09 Richard M. Stallman <rms@gnu.org>
18546
18547 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
18548 (sql-read-passwd): Use read-passwd.
18549
18550 * progmodes/idlw-toolbar.el (idlwave-toolbar)
18551 (idlwave-toolbar-is-possible): Add defvars.
18552
18553 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
18554 Avoid warnings.
18555
18556 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
18557 (idlwave-system-class-info, idlwave-executive-commands-alist):
18558 Use defvar.
18559
18560 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
18561
18562 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
18563 Avoid warnings.
18564
18565 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
18566 and content-type: headers.
18567
18568 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
18569
18570 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
18571 and rename some of them to be more self-explanatory.
18572
18573 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
18574
18575 * startup.el (command-line-1): Implement -scriptload.
18576
18577 * replace.el (occur-engine): Initial *Occur* output not undoable.
18578
18579 * menu-bar.el (menu-bar-file-menu): Rename some menu items
18580 and improve help strings.
18581
18582 * isearch.el (isearch-repeat): When changing direction,
18583 mark search successful.
18584
18585 * ediff-init.el: Use (featurep 'xemacs).
18586
18587 * comint.el (send-invisible): Identify buffer, if not selected.
18588
18589 * align.el: Delete autoload for c-guess-basic-syntax.
18590
18591 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
18592
18593 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
18594 Improve argument/docstring consistency. Doc fixes.
18595 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
18596 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
18597 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
18598 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
18599 (r2bv-organization, r2bv-pages, r2bv-primary-author)
18600 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
18601 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
18602 Defvar at compile time.
18603
18604 2005-08-09 Juri Linkov <juri@jurta.org>
18605
18606 * info.el: Replace `info' with upper-case `Info' where appropriate.
18607 (info-title-1, info-title-2, info-title-3, info-title-4)
18608 (info-menu-header): Move up face definitions.
18609 (info-menu-star): Rename from `info-menu-5'.
18610 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
18611 (Info-fontify-visited-nodes): Fix docstring.
18612 (Info-hide-note-references): Fix docstring.
18613 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
18614 menu items in the same way as on cross-references.
18615 (info-apropos): Fix sorting order and formatting to be like in the
18616 stand-alone Info browser. Display error messages for 1 sec.
18617 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
18618 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
18619 from the menu bar.
18620 (Info-insert-dir): Restore point after calling
18621 `insert-buffer-substring'.
18622
18623 2005-08-08 Richard M. Stallman <rms@gnu.org>
18624
18625 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
18626 (recompute-lucid-menubar): Add defvars.
18627
18628 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
18629
18630 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
18631
18632 * net/net-utils.el (run-dig): Rename from `dig'.
18633
18634 * play/gametree.el (gametree-mode): Use make-local-variable,
18635 not make-variable-buffer-local.
18636
18637 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
18638
18639 * ansi-color.el (ansi-color-make-extent)
18640 (ansi-color-set-extent-face): Use fboundp, not functionp.
18641
18642 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
18643 not make-variable-buffer-local.
18644
18645 * bookmark.el (Info-current-file): Add defvar.
18646 (bookmark-jump-noselect): Use with-no-warnings.
18647
18648 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
18649
18650 * ebuff-menu.el (Helper-return-blurb): Add defvar.
18651
18652 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
18653
18654 * find-file.el (ada-procedure-start-regexp)
18655 (ada-package-start-regexp): Add defvars.
18656
18657 * info.el (Info-insert-dir): Use insert-buffer-substring.
18658
18659 * xml.el (xml-att-def-re): Add defvar.
18660
18661 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
18662 calling convention.
18663
18664 * subr.el (while-no-input): Return t if there is input.
18665
18666 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
18667
18668 * cus-start.el (all): Add `overflow-newline-into-fringe'.
18669
18670 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
18671
18672 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
18673 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
18674
18675 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
18676
18677 * cmuscheme.el (scheme-start-file): Replace reference to
18678 `user-emacs-directory' by "~/.emacs.d/".
18679
18680 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
18681
18682 * info.el (Info-dir-remove-duplicates): Avoid case folding
18683 in loop; instead, keep downcased strings for comparison.
18684 Suggested by Helmut Eller.
18685
18686 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
18687
18688 Sync with Tramp 2.0.50.
18689
18690 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
18691 XEmacs case; not necessary anymore.
18692 (tramp-user-regexp): Allow "@" as part of user name.
18693 (tramp-handle-set-visited-file-modtime)
18694 (tramp-handle-insert-file-contents)
18695 (tramp-handle-write-region): No special handling for
18696 `last-coding-system-used, because this is done in
18697 `tramp-accept-process-output' now.
18698 (tramp-accept-process-output): New defun.
18699 (tramp-process-one-action, tramp-process-one-multi-action)
18700 (tramp-wait-for-regexp, tramp-wait-for-output)
18701 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
18702 Howells <dhowells@redhat.com>.
18703 (clear-visited-file-modtime): Defadvice removed. The check for
18704 unset buffer's modtime does not need to be based on
18705 `tramp-buffer-file-attributes'. Suggested by RMS.
18706 (tramp-message): Insert "\n" if not being at beginning of line.
18707 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
18708 sequence with same logic.
18709 (tramp-completion-handle-expand-file-name): Discard call of
18710 `tramp-drop-volume-letter'. It is not necessary, and there have
18711 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
18712 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
18713 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
18714 should always be visible.
18715 (tramp-handle-insert-directory, tramp-setup-complete)
18716 (tramp-set-process-query-on-exit-flag)
18717 (tramp-append-tramp-buffers): Pacify byte-compiler.
18718 (tramp-bug): Delete non-existing variables from list.
18719 Apply `tramp-load-report-modules' as pre-hook.
18720 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
18721 `shell-prompt-pattern' because of non-7bit characters.
18722 Reported by Sebastian Luque <sluque@mun.ca>.
18723 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
18724 (tramp-match-string-list): Remove function.
18725 (tramp-wait-for-regexp): Remove call of that function.
18726 Suggested by Kim F. Storm <storm@cua.dk>.
18727 (tramp-set-auto-save-file-modes): Use octal integer code #o600
18728 instead of octal character code ?\600. The latter resulted in a
18729 syntax error with XEmacs.
18730
18731 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
18732 XEmacs case; not necessary anymore.
18733 (tramp-smb-handle-write-region): No special handling for
18734 `last-coding-system-used, because this is done in
18735 `tramp-accept-process-output' now.
18736 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
18737
18738 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
18739
18740 * wid-edit.el (widget-choice-value-create):
18741 Unconditionally respect user choice. Set :explicit-choice back to nil
18742 when no longer needed.
18743 (widget-choice-action): Unconditionally respect user choice.
18744 Eliminate :explicit-choice-value.
18745
18746 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
18747
18748 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
18749 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
18750 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
18751 running new function `toggle-indicate-empty-lines'.
18752 Rename "Customize" item to "Customize fringe".
18753 Rename "Indicators" item to "Buffer boundaries" and change help echo.
18754 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
18755 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
18756 Delete "Empty lines only" item.
18757 (menu-bar-showhide-fringe-ind-customize): New function.
18758 (menu-bar-showhide-fringe-ind-mixed)
18759 (menu-bar-showhide-fringe-ind-box)
18760 (menu-bar-showhide-fringe-ind-right)
18761 (menu-bar-showhide-fringe-ind-left)
18762 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
18763 instead of `fringe-indicators'.
18764
18765 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
18766
18767 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
18768 Change the date of last update.
18769
18770 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
18771
18772 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
18773 (viper-exec-yank, viper-put-back): Don't display modification msg
18774 if in the minibuffer.
18775
18776 * viper-init.el (viper-replace-overlay-cursor-color)
18777 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
18778 Make variables frame local.
18779
18780 * viper-util.el (viper-append-filter-alist): Use append instead of
18781 nconc.
18782
18783 * viper.el (viper-vi-state-mode-list)
18784 (viper-emacs-state-mode-list): Move help-mode and
18785 completion-list-mode from the first list to the second.
18786 (viper-mode): Docstring.
18787 (viper-go-away, viper-non-hook-settings): Don't localize
18788 minor-mode-alist in newer Emacsen. Add advice to
18789 set-cursor-color. Don't bind "\C-c\\".
18790
18791 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
18792
18793 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
18794 (scheme-macro-expand-command): New user options.
18795 (scheme-trace-procedure, scheme-expand-current-form): New commands.
18796 (scheme-form-at-point, scheme-start-file)
18797 (scheme-interactively-start-process): New functions.
18798 (scheme-get-process): New function, extracted from `scheme-proc'.
18799 (run-scheme): Call `scheme-start-file' to get start file, and pass
18800 it to `make-comint'.
18801 (switch-to-scheme, scheme-proc):
18802 Call `scheme-interactively-start-process' if no Scheme buffer/process
18803 is available.
18804
18805 2005-08-06 Juri Linkov <juri@jurta.org>
18806
18807 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18808 Use `compilation-text-face', `compilation-info-text-face' and
18809 `compilation-error-text-face' instead of `font-lock-keyword-face'.
18810 (compilation-error): New face.
18811 (compilation-error-file-name): Inherit from
18812 `compilation-error' instead of `font-lock-warning-face'.
18813 (compilation-warning-file-name): Inherit from
18814 `compilation-warning' instead of `font-lock-warning-face'.
18815 (compilation-info, compilation-error-file-name)
18816 (compilation-warning-file-name, compilation-info-file-name)
18817 (compilation-line-number, compilation-column-number): Doc fix.
18818 (compilation-error-text-face, compilation-warning-text-face)
18819 (compilation-info-text-face): New face variables.
18820 (compilation-line-face, compilation-column-face)
18821 (compilation-enter-directory-face)
18822 (compilation-leave-directory-face): Doc fix.
18823 (compilation-text-face): New function.
18824
18825 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
18826 instead of 1 to display binary file names as info file links.
18827 (grep-error-face): Use `compilation-error-face' instead of
18828 `font-lock-keyword-face'.
18829 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
18830 and `compilation-warning-text-face' instead of
18831 `font-lock-keyword-face'. Use `compilation-error-text-face'
18832 instead of `grep-error-face'.
18833
18834 2005-08-05 Kenichi Handa <handa@m17n.org>
18835
18836 * international/code-pages.el: Add autoload cookies for all coding
18837 systems.
18838
18839 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
18840
18841 * cus-start.el (all): Put undo.c where it alphabetically belongs.
18842
18843 2005-08-04 Juri Linkov <juri@jurta.org>
18844
18845 * progmodes/compile.el (compilation-mode-map):
18846 * progmodes/grep.el (grep-mode-map):
18847 Bind TAB to `compilation-next-error' and [backtab] to
18848 `compilation-previous-error'.
18849
18850 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
18851 matching line numbers, column numbers and their ranges with regexp
18852 matching only line numbers.
18853 (grep-context-face): New face variable.
18854 (grep-mode-font-lock-keywords): Use it.
18855
18856 * faces.el (read-face-name): Delete duplicate faces.
18857
18858 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
18859
18860 * thumbs.el (thumbs-find-image): Don't make variables
18861 automatically buffer local.
18862 (thumbs-current-tmp-filename, thumbs-current-image-filename)
18863 (thumbs-image-num): Make automatically buffer local.
18864 (thumbs-show-thumbs-list): Use `make-local-variable', not
18865 `make-variable-buffer-local'.
18866 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
18867
18868 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
18869 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
18870 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
18871 (bother, bye, canyou, chatlst, continue, deathlst, describe)
18872 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
18873 (feelings-about, foullst, found, hello, history, howareyoulst)
18874 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
18875 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
18876 (neglst, obj, object, owner, please, problems, qlist)
18877 (random-adjective, relation, remlst, repetitive-shortness)
18878 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
18879 (shortlst, something, sportslst, stallmanlst, states, subj)
18880 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
18881 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
18882 Defvar at compile time.
18883
18884 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
18885 not `make-variable-buffer-local'.
18886
18887 2005-08-02 Kim F. Storm <storm@cua.dk>
18888
18889 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
18890 rectangle overlay in selected window.
18891
18892 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
18893
18894 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
18895 instead of display group. Make `indicate-buffer-boundaries'
18896 customizable through Custom.
18897
18898 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
18899
18900 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
18901 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
18902 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
18903 (gdb-put-string): Fix typos in docstrings.
18904
18905 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
18906
18907 Update copyright notices of files in progmodes directory for
18908 release of Emacs 22.1.
18909
18910 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
18911
18912 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
18913 Don't barf if the GUD buffer has been killed.
18914
18915 2005-08-01 Kim F. Storm <storm@cua.dk>
18916
18917 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
18918
18919 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
18920
18921 * simple.el (next-error-follow-minor-mode):
18922 make-variable-buffer-local -> make-local-variable.
18923
18924 * emacs-lisp/cl-extra.el: Require CL also when compiling.
18925
18926 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
18927 (byte-compile-form-make-variable-buffer-local): New functions to warn
18928 about misuses of make-variable-buffer-local where make-local-variable
18929 was meant.
18930
18931 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
18932
18933 * bs.el (bs-attributes-list): Doc fix.
18934 (bs): Update url-link.
18935
18936 * desktop.el (desktop-save-buffer): Fix typos in docstring.
18937 (desktop-load-default): Simplify.
18938
18939 * ibuffer.el (ibuffer-columnize-and-insert-list)
18940 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
18941 (ibuffer-unmark-all, ibuffer-toggle-marks)
18942 (ibuffer-unmark-forward, ibuffer-unmark-backward)
18943 (ibuffer-compile-make-format-form, ibuffer-format-column)
18944 (ibuffer-current-buffers-with-marks)
18945 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
18946 (ibuffer): Doc fix.
18947 (ibuffer-mode): Fix typo in docstring.
18948 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
18949 with `define-obsolete-variable-alias'.
18950 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
18951
18952 2005-07-29 Kenichi Handa <handa@m17n.org>
18953
18954 * international/mule-cmds.el (select-message-coding-system):
18955 Be sure to use LF for end-of-line. If no coding system is decided,
18956 return iso-8859-1-unix.
18957
18958 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
18959
18960 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
18961 (ange-ftp-pending-error-line): New vars.
18962 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
18963 to handle the non-fatal no-route-to-host messages.
18964 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
18965
18966 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
18967
18968 * isearch.el (isearch-mode-map, isearch-other-meta-char)
18969 (isearch-quote-char, isearch-printing-char)
18970 (isearch-text-char-description): "?\ " -> "?\s".
18971 (isearch-lazy-highlight-cleanup)
18972 (isearch-lazy-highlight-initial-delay)
18973 (isearch-lazy-highlight-interval)
18974 (isearch-lazy-highlight-max-at-a-time)
18975 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
18976 Declare with define-obsolete-*-alias macros.
18977 (isearch-forward): Fix typo in docstring.
18978 (search-invisible, search-ring-yank-pointer)
18979 (regexp-search-ring-yank-pointer): Doc fixes.
18980
18981 * recentf.el (recentf-menu-append-commands-p): Declare with
18982 `define-obsolete-variable-alias'.
18983 (recentf-max-saved-items, recentf-menu-filter)
18984 (recentf-arrange-by-rule-subfilter): Doc fixes.
18985 (recentf-menu-append-commands-flag)
18986 (recentf-initialize-file-name-history, recentf-expand-file-name)
18987 (recentf-clear-data): Fix typos in docstrings.
18988
18989 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
18990
18991 * progmodes/gdb-ui.el: Smarten comments.
18992 (gdb-info-breakpoints-custom): Use nowarn when finding file.
18993
18994 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
18995
18996 * term/apollo.el (terminal-init-apollo): New function containing
18997 all former top level forms in the file.
18998 * term/bobcat.el (terminal-init-bobcat):
18999 * term/cygwin.el (terminal-init-cygwin):
19000 * term/iris-ansi.el (terminal-init-iris-ansi):
19001 * term/linux.el (terminal-init-linux):
19002 * term/news.el (terminal-init-news):
19003 * term/rxvt.el (terminal-init-rxvt):
19004 * term/sun.el (terminal-init-sun):
19005 * term/tvi970.el (terminal-init-tvi970):
19006 * term/vt100.el (terminal-init-vt100):
19007 * term/vt102.el (terminal-init-vt102):
19008 * term/vt125.el (terminal-init-vt125):
19009 * term/vt200.el (terminal-init-vt200):
19010 * term/vt201.el (terminal-init-vt201):
19011 * term/vt220.el (terminal-init-vt220):
19012 * term/vt240.el (terminal-init-vt240):
19013 * term/vt300.el (terminal-init-vt300):
19014 * term/vt320.el (terminal-init-vt320):
19015 * term/vt400.el (terminal-init-vt400):
19016 * term/vt420.el (terminal-init-vt420):
19017 * term/wyse50.el (terminal-init-wyse50):
19018 * term/xterm.el (terminal-init-xterm): Likewise.
19019
19020 * term/README: Describe the terminal-init-* functionality.
19021
19022 * startup.el (command-line): After loading the terminal initialization
19023 file call the corresponding terminal initialization function.
19024
19025 2005-07-27 Kenichi Handa <handa@m17n.org>
19026
19027 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
19028 negative.
19029
19030 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
19031 (ps-mule-composition-prologue): Fix for the case that
19032 RelativeCompose is false.
19033
19034 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
19035
19036 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
19037
19038 * descr-text.el (describe-char): Handle the case where the list of
19039 chars is displayed in a separate frame.
19040 Be a bit more discriminating when looking for the char.
19041
19042 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
19043
19044 * bookmark.el (bookmark-automatically-show-annotations)
19045 (bookmark-read-annotation-text-func): Doc fixes.
19046 (bookmark-save): Improve argument/docstring consistency.
19047 (bookmark-get-bookmark, bookmark-get-bookmark-record)
19048 (bookmark-alist-from-buffer)
19049 (bookmark-upgrade-file-format-from-0)
19050 (bookmark-grok-file-format-version)
19051 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
19052 (bookmark-read-annotation-mode)
19053 (bookmark-insert-current-bookmark, bookmark-jump)
19054 (bookmark-exit-hook): Fix typos in docstrings.
19055 (bookmark-exit-hooks): Define as obsolete alias.
19056 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
19057 not `bookmark-exit-hooks'. Fix docstring.
19058 (bookmark-bmenu-select): "?\ " -> "?\s".
19059
19060 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
19061
19062 * startup.el (command-line): Fix typo.
19063
19064 2005-07-24 Richard M. Stallman <rms@gnu.org>
19065
19066 * tooltip.el (tooltip-mode): Test emacs-basic-display,
19067 not emacs-quick-startup.
19068
19069 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
19070
19071 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
19072 (reb-next-match, reb-show-subexp): Use `with-selected-window'
19073 instead of `reb-with-current-window'.
19074 (reb-prev-match): Likewise. Also, don't move left if the search
19075 was unsuccessful.
19076 (reb-initialize-buffer): New function.
19077 (re-builder, reb-change-syntax): Use it.
19078
19079 * man.el (Man-goto-page): Make second argument NOERROR optional.
19080
19081 2005-07-23 Richard M. Stallman <rms@gnu.org>
19082
19083 * man.el (Man-bgproc-sentinel): Check here for failure to find
19084 any man page in the output, and report the error here.
19085 (Man-arguments): Make it permanent local.
19086 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
19087 (Man-mode): Pass t for NOERROR.
19088
19089 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
19090 (grep-mode-font-lock-keywords):
19091 Don't use compilation-...-face for messages that are not file names.
19092
19093 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19094 Don't use compilation-...-face for messages that are not file names.
19095
19096 2005-07-22 Juri Linkov <juri@jurta.org>
19097
19098 * startup.el (normal-splash-screen): Update menu name.
19099
19100 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
19101
19102 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
19103
19104 * term/xterm.el: Load term/rxvt if the terminal is actually an
19105 rxvt terminal.
19106 (xterm-rxvt-set-background-mode): Remove, not used anymore.
19107
19108 * term/rxvt.el (function-key-map): Use substitute-key-definition
19109 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
19110
19111 * term/cygwin.el: New file.
19112
19113 2005-07-22 Kim F. Storm <storm@cua.dk>
19114
19115 * image-file.el (insert-image-file, image-file-yank-handler):
19116 Fix last change to maintain a (unique) yank-handler on yanked images.
19117
19118 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
19119
19120 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
19121 of the file size (as in "177B" for 177 bytes). This happens with
19122 "ls -lh" on FreeBSD.
19123
19124 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
19125
19126 * hilit-chg.el (highlight-changes-global-initial-state)
19127 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
19128 (hilit-chg-fixup, highlight-changes-mode):
19129 Fix typos in docstrings.
19130 (highlight-changes-global-modes, highlight-changes-rotate-faces):
19131 Doc fixes.
19132
19133 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
19134
19135 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
19136 mode function using `eval-after-load'.
19137
19138 2005-07-21 Kim F. Storm <storm@cua.dk>
19139
19140 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
19141 included when reporting an Emacs crash, and tell about the DEBUG file.
19142
19143 * image-file.el (insert-image-file): Add yank-handler.
19144 (image-file-yank-handler): Yank handler to make unique copies of
19145 images when they are yanked into a buffer next to each other.
19146
19147 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
19148
19149 * comint.el (comint-use-prompt-regexp, comint-send-input)
19150 (comint-source-default, comint-extract-string)
19151 (comint-get-source, comint-word, comint-completion)
19152 (comint-source, comint-prompt-read-only, comint-update-fence):
19153 Fix typos in docstrings.
19154 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
19155 Declare with define-obsolete-*-alias macros.
19156 (comint-previous-matching-input-from-input)
19157 (comint-next-matching-input-from-input)
19158 (comint-previous-matching-input, comint-next-matching-input)
19159 (comint-forward-matching-input):
19160 Improve argument/docstring consistency.
19161
19162 * desktop.el (desktop-clear-preserve-buffers-regexp):
19163 Also preserve the *server* buffer.
19164
19165 * simple.el (clone-indirect-buffer): Doc fix.
19166 (fixup-whitespace, just-one-space)
19167 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
19168 (next-error, next-error-highlight)
19169 (next-error-highlight-no-select, next-error-last-buffer)
19170 (next-error-buffer-p, next-error-find-buffer, next-error)
19171 (previous-error, next-error-no-select, previous-error-no-select)
19172 (open-line, split-line, minibuffer-prompt-width, kill-new)
19173 (binary-overwrite-mode): Fix typos in docstrings.
19174 (set-fill-column): Fix typo in message.
19175
19176 * skeleton.el (skeleton-proxy-new): Doc fix.
19177
19178 * strokes.el (strokes-load-hook): Doc fix.
19179 (strokes-grid-resolution, strokes-get-grid-position)
19180 (strokes-renormalize-to-grid, strokes-read-stroke)
19181 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
19182 (strokes-global-map): Fix typos in docstrings.
19183 (strokes-help): Doc fix. Fix help message and pass it through
19184 `substitute-command-keys'.
19185
19186 * tempo.el (tempo-insert-prompt, tempo-interactive)
19187 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
19188 (tempo-insert-string-functions, tempo-local-tags)
19189 (tempo-define-template, tempo-insert-template)
19190 (tempo-insert-prompt-compat, tempo-is-user-element)
19191 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
19192 Fix typos in docstrings.
19193
19194 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
19195 (vcursor-key-bindings, vcursor-use-vcursor-map)
19196 (vcursor-find-window, vcursor-scroll-down)
19197 (vcursor-disable, vcursor-beginning-of-buffer)
19198 (vcursor-end-of-buffer): Fix typos in docstrings.
19199 (vcursor-relative-move, vcursor-get-char-count):
19200 Improve argument/docstring consistency.
19201
19202 * version.el: "?\ " -> "?\s".
19203
19204 * wid-edit.el (widget-default-create, widget-after-change)
19205 (widget-default-format-handler, widget-checklist-add-item)
19206 (widget-radio-add-item, widget-choose, widget-specify-secret)
19207 (widget-field-value-create, widget-field-value-get)
19208 (widget-editable-list-format-handler)
19209 (widget-editable-list-entry-create, widget-group-value-create)
19210 (widget-documentation-link-add)
19211 (widget-documentation-string-value-create): "?\ " -> "?\s".
19212 (widget-convert-text): Doc fix.
19213 (widget-narrow-to-field, widget-field-find)
19214 (widget-url-link-action, widget-emacs-library-link-action)
19215 (widget-color-notify): Fix typos in docstrings.
19216
19217 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
19218 (x-select-text, set-w32-system-coding-system)
19219 (w32-add-charset-info): Fix typos in docstrings.
19220
19221 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
19222 (cua-enable-cua-keys, cua-use-hyper-key)
19223 (cua-virtual-rectangle-edges): Fix typos in docstrings.
19224 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
19225
19226 * net/tramp.el (tramp-handle-load): Fix typo in error message.
19227
19228 * emacs-lisp/re-builder.el (regexp-builder): Declare with
19229 `defalias' instead of faking it.
19230
19231 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
19232 (eshell-ls-missing, eshell-ls-dired-initial-args)
19233 (eshell-ls-use-in-dired): Fix typos in docstrings.
19234
19235 2005-07-20 Kim F. Storm <storm@cua.dk>
19236
19237 * emulation/cua-base.el (cua-mode): Improve doc string.
19238
19239 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
19240
19241 * abbrev.el (expand-region-abbrevs): Doc fix.
19242 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
19243 Improve argument/docstring consistency.
19244
19245 * arc-mode.el (archive-get-descr, archive-alternate-display):
19246 Doc fixes.
19247 (archive-l-e): Improve argument/docstring consistency.
19248 (archive-tmpdir, archive-unixdate, archive-unixtime)
19249 (archive-chmod-entry): Fix typos in docstrings.
19250 (archive-unflag, archive-unflag-backwards)
19251 (archive-unmark-all-files): "?\ " -> "?\s".
19252
19253 * buff-menu.el (Buffer-menu-unmark): Doc fix.
19254 (Buffer-menu-not-modified, Buffer-menu-execute)
19255 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
19256 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
19257
19258 * composite.el (compose-string, encode-composition-rule)
19259 (compose-last-chars): Fix typos in docstrings.
19260
19261 * desktop.el (desktop-enable, desktop-basefilename):
19262 Declare with `define-obsolete-variable-alias'.
19263 (desktop-internal-v2s): Don't quote keywords.
19264 (desktop-clear): "?\ " -> "?\s".
19265
19266 * dired.el (dired-align-file, dired-flag-backup-files)
19267 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
19268 (dired-listing-switches, dired-ls-F-marks-symlinks)
19269 (dired-dwim-target, dired-load-hook, dired-mode-hook)
19270 (dired-directory, dired-faces, dired, dired-revert)
19271 (dired-mode, dired-summary, dired-view-file)
19272 (dired-copy-filename-as-kill, dired-delete-file)
19273 (dired-no-confirm, dired-unmark-all-marks)
19274 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
19275 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
19276 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
19277 Fix typos in message strings.
19278
19279 * dired-x.el (virtual-dired): Declare with `defalias'.
19280 (dired-mark-unmarked-files, dired-local-variables-file)
19281 (dired-omit-here-always): Doc fix.
19282 (dired-omit-mode, dired-find-subdir)
19283 (dired-enable-local-variables, dired-clean-up-buffers-too)
19284 (dired-extra-startup, dired-mark-extension, dired-jump)
19285 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
19286 (dired-smart-shell-command, dired-guess-shell-alist-user)
19287 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
19288 (dired-x-bind-find-file, dired-x-submit-report):
19289 Fix typos in docstrings.
19290 (dired-mark-unmarked-files): "?\ " -> "?\s".
19291
19292 * dirtrack.el (dirtrack-list): Fix typos in docstring.
19293
19294 * faces.el (describe-face): "?\ " -> "?\s".
19295 (read-all-face-attributes, read-face-font, modify-face)
19296 (face-attr-construct, italic): Fix typos in docstrings.
19297 (frame-update-face-colors): Declare with
19298 `define-obsolete-function-alias'.
19299
19300 * files.el (find-file-noselect, recode-file-name): Doc fixes.
19301 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
19302 (magic-mode-alist, buffer-file-numbers-unique)
19303 (write-file-functions, get-free-disk-space):
19304 Fix typos in docstrings.
19305 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
19306 (write-contents-hooks, write-file-hooks):
19307 Declare with `define-obsolete-variable-alias'.
19308
19309 * forms-d2.el (arch-rj): Fix typo in docstrings.
19310 (arch-tocol): Likewise. "?\ " -> "?\s".
19311
19312 * frame.el (set-frame-font, cursor-in-non-selected-windows):
19313 Fix typo in docstring.
19314 (set-screen-width, set-screen-height): Delete redundant info in
19315 doctrings.
19316 (new-frame, screen-height, screen-width): Declare with
19317 `define-obsolete-function-alias'.
19318 (delete-frame-hook, blink-cursor): Declare with
19319 `define-obsolete-variable-alias'.
19320
19321 * paths.el (prune-directory-list): Fix typos in docstring.
19322
19323 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
19324 (cvs-prefix-get): Fix typos in docstrings.
19325
19326 * ps-print.el (ps-extend-face-list, ps-extend-face)
19327 (ps-print-background-image): Fix typos in docstrings.
19328 (ps-default-fg, ps-default-bg): Doc fixes.
19329
19330 * s-region.el (s-region-bind): Doc fix.
19331 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
19332
19333 * textmodes/org.el (org-table-formula-substitute-names)
19334 (org-table-get-vertical-vector): Doc fixes.
19335 (org-table-recalculate): Remove unused argument to `message'.
19336
19337 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
19338
19339 * textmodes/org.el (org-table-column-names)
19340 (org-table-column-name-regexp)
19341 (org-table-named-field-locations): New variables.
19342 (org-archive-subtree): Protect `this-command' when calling
19343 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
19344 the kill buffer.
19345 (org-complete): Remove fixed-formula completion.
19346 (org-edit-formulas-map): New variable.
19347 (org-table-edit-formulas): New command.
19348 (org-finish-edit-formulas, org-abort-edit-formulas)
19349 (org-show-variable, org-table-get-vertical-vector): New functions.
19350 (org-table-maybe-eval-formula): Handle `:=' fields.
19351 (org-table-get-stored-formulas, org-table-store-formulas)
19352 (org-table-get-formula, org-table-modify-formulas)
19353 (org-table-replace-in-formulas): Handle named field formulas.
19354 (org-table-get-specials): Store locations of named fields.
19355
19356 2005-07-19 Juri Linkov <juri@jurta.org>
19357
19358 * progmodes/grep.el (grep-regexp-alist)
19359 (grep-mode-font-lock-keywords, grep-process-setup):
19360 Use default GNU grep match color "01;31m" instead of "01;41m".
19361 (grep-regexp-alist, grep-mode-font-lock-keywords):
19362 Use `\\[[0-9]*m' instead of `\\[00m'.
19363 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
19364 sgr_start where its handling is more important. Use the real
19365 length of sgr_start instead of constant 8.
19366 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
19367 specially. Delete all remaining escape sequences.
19368 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
19369 (grep-regexp-alist): Make hyperlink only for binary file name
19370 instead of the whole line.
19371 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
19372 (grep-mode): Add autoload.
19373
19374 * emacs-lisp/find-func.el (find-function-regexp):
19375 Add `define-compilation-mode'.
19376
19377 2005-07-19 Juri Linkov <juri@jurta.org>
19378
19379 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
19380 (compare-windows-sync-string-size, compare-windows-recenter)
19381 (compare-windows-highlight, compare-windows): Add version 22.1.
19382 (compare-windows) <defface>: Inherit from lazy-highlight instead
19383 of duplicating its default value.
19384
19385 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
19386 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
19387
19388 * descr-text.el (describe-char): Create link buttons for `charset'
19389 and `code point'. Add the current input method name with a link
19390 button to `to input' field. Print face names of display table
19391 characters in `The display table entry is displayed by' section
19392 instead of printing face-id in the `display' field.
19393 Guess hardcoded faces and create a link button for them.
19394 Skip empty fields when calculating max-width.
19395 Treat `widget-create' specially while inserting strings from the
19396 collected field list.
19397 (describe-char-after): Made obsolete in version 22.1, not 21.5.
19398
19399 * diff-mode.el (diff-file-header): Change foreground color from
19400 yellow to green on light backgrounds.
19401 (diff-context): Inherit from `shadow' only for color/grayscale
19402 with more than 88 colors.
19403 (diff-indicator-removed, diff-indicator-added)
19404 (diff-indicator-changed): New faces.
19405 (diff-font-lock-keywords): Use new faces. Regroup rules.
19406 Add "^---$" for `normal' diff format. Fontify `#' lines with
19407 font-lock-comment-delimiter-face and font-lock-comment-face.
19408 Add `#' to ^[^...] in the rule for `diff-context-face'.
19409
19410 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
19411 a button-like box. Inherit from `highlight' on low colors.
19412 (shadow): Use shades of gray only for color/grayscale with
19413 more than 88 colors. Use green for light backgrounds with
19414 8 colors, and yellow for dark backgrounds with 8 colors.
19415
19416 * font-lock.el (font-lock-regexp-grouping-backslash):
19417 Don't inherit from escape-glyph (use bold for all cases).
19418
19419 * info.el (info-xref-visited): Use light foreground color `violet'
19420 for dark backgrounds instead of dark color `magenta3'.
19421 (info-title-1): Use `yellow' color for dark backgrounds.
19422
19423 * isearch.el (isearch): Use not-too-dark magenta3 instead of
19424 too-light magenta2.
19425
19426 * replace.el (match): Use slightly more light RoyalBlue3 instead
19427 of dark RoyalBlue4.
19428
19429 * wid-edit.el (widget-inactive): Inherit from `shadow'.
19430
19431 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
19432
19433 * novice.el (disabled-command-hook): Declare it with
19434 `define-obsolete-variable-alias'.
19435
19436 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
19437 (desktop-buffer-misc-functions, desktop-buffer-handlers)
19438 (desktop-load-default): Add release to obsolescence info.
19439 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
19440 (desktop-append-buffer-args, desktop-read):
19441 Fix typos in docstrings.
19442 (desktop-kill): Fix typo in message.
19443 (desktop-save): Doc fix.
19444
19445 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
19446
19447 * viper-cmd.el (viper-escape-to-state): Bug fix.
19448 (viper-envelop-ESC-key): Change the definition of fast
19449 keysequence so it'll work with keyboard macros.
19450
19451 * ediff.el (ediff-patch-buffer): Change the docstring.
19452
19453 2005-07-19 Kenichi Handa <handa@m17n.org>
19454
19455 * international/mule-cmds.el (select-safe-coding-system): Try to
19456 use an auto-coding (if any) before anything else. If the found
19457 auto-coding is invalid, show a warning message.
19458
19459 * international/mule.el (find-auto-coding): New function created
19460 by modifying the body of set-auto-coding.
19461 (set-auto-coding): Use find-auto-coding to find a coding.
19462
19463 2005-07-18 Richard M. Stallman <rms@gnu.org>
19464
19465 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
19466 not isearch-mode-end-hook-error.
19467 (allout-before-change-protect): Fix error message.
19468
19469 2005-07-18 Juri Linkov <juri@jurta.org>
19470
19471 * allout.el (allout-mode):
19472 * calculator.el (calculator-copy):
19473 * custom.el (custom-known-themes):
19474 * dired.el (dired-desktop-buffer-misc-data)
19475 (dired-restore-desktop-buffer):
19476 * dired-x.el (dired-omit-marker-char):
19477 * files.el (basic-save-buffer):
19478 * font-core.el (font-lock-mode):
19479 * calendar/calendar.el (calendar-goto-hebrew-date)
19480 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
19481 (calendar-goto-persian-date):
19482 * language/ethio-util.el (ethio-sera-to-fidel-region):
19483 * textmodes/picture.el (picture-mode):
19484 Delete duplicate duplicate words.
19485
19486 2005-07-18 Juri Linkov <juri@jurta.org>
19487
19488 * isearch.el (isearch-mode-map): Remove key bindings for regexp
19489 chars * ? } |.
19490 (isearch-fallback): Don't call `isearch-process-search-char'.
19491 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
19492 (isearch-process-search-char): Call `isearch-fallback' for regexp
19493 chars * ? } |.
19494 (isearch-return-char): Make obsolete with `make-obsolete' instead
19495 of simply documenting it as obsolete in the docstring.
19496 (isearch-fallback): Refill docstring.
19497
19498 * international/isearch-x.el
19499 (isearch-process-search-multibyte-characters): Remove unneeded
19500 `concat'. Add intermediate values to `junk-hist' instead of
19501 `minibuffer-history'. Test the length of `str'.
19502
19503 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
19504
19505 * allout.el (allout-resolve-xref): Fix typos in error strings.
19506 (allout-before-change-protect): Remove unneeded `concat'.
19507
19508 * array.el (array-mode, array-reconfigure-rows)
19509 (untabify-backward): Fix typos in docstrings.
19510 (array-reconfigure-rows): Use `insert-buffer-substring', not
19511 `insert-buffer'.
19512
19513 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
19514 * progmodes/ada-mode.el (ada-make-body):
19515 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
19516
19517 * dired.el (dired-log):
19518 * tar-mode.el (tar-subfile-save-buffer):
19519 * play/zone.el (zone-pgm-stress-destress):
19520 Use `insert-buffer-substring', not `insert-buffer'.
19521
19522 2005-07-17 Simon Josefsson <jas@extundo.com>
19523
19524 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
19525
19526 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
19527
19528 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
19529 Add plain auth method.
19530 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
19531
19532 2005-07-17 Kim F. Storm <storm@cua.dk>
19533
19534 * ido.el (dired-other-window): Add ido property.
19535
19536 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
19537
19538 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
19539 Fix typo in docstring.
19540 (byte-compile-interactive-only-functions): Add `insert-buffer' and
19541 `insert-file-literally'.
19542
19543 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
19544 info and delete redundant message. Doc fix.
19545 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
19546 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
19547
19548 2005-07-16 Richard M. Stallman <rms@gnu.org>
19549
19550 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
19551 (byte-compile-and): Use byte-compile-and-recursion.
19552 (byte-compile-or-recursion): New function.
19553 (byte-compile-or): Use that.
19554 (byte-compile-if): Guard the else-clause too.
19555 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
19556
19557 * isearch.el (isearch-mode-end-hook-quit): New variable.
19558 (isearch-done): Bind it.
19559 (isearch-mode-end-hook): Doc fix.
19560
19561 * allout.el (allout-isearch-did-quit): Variable deleted.
19562 (allout-real-isearch-abort): Function name no longer used.
19563 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
19564 (allout-isearch-rectification): isearch-mode always exists.
19565 Don't set allout-isearch-did-quit.
19566 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
19567 allout-isearch-did-quit.
19568 (allout-enwrap-isearch): Just add the hook.
19569 (allout-isearch-abort): Function deleted.
19570 (allout-pre-command-business): Avoid warning.
19571
19572 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
19573 Correctly avoid warnings.
19574 (pascal-outline): Likewise.
19575
19576 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
19577
19578 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
19579
19580 * play/tetris.el (tetris-mode): Avoid warning.
19581
19582 * play/snake.el (snake-mode): Avoid warning.
19583
19584 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
19585 (gamegrid-set-display-table): Avoid warning.
19586 (gamegrid-set-timer): Likewise.
19587 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
19588 (gamegrid-add-score-with-update-game-score-1): Take FILE
19589 as argument.
19590 (gamegrid-add-score-with-update-game-score): Pass that argument.
19591 Rename have-shared-game-dir to gamegrid-shared-game-dir.
19592
19593 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
19594
19595 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
19596 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
19597
19598 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
19599 and insert-file.
19600
19601 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
19602 (sc-ask): Avoid warnings.
19603
19604 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
19605 (eshell-hist-initialize): Use that var the natural way.
19606
19607 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
19608
19609 * emacs-lisp/re-builder.el (reb-cook-regexp):
19610 Avoid warning calling lre-compile-string.
19611 (reb-color-display-p): Avoid warning.
19612
19613 * calculator.el (calculator-last-input): Guard uses
19614 of event-key and key-press-event-p.
19615 (event-key, key-press-event-p): Delete definitions.
19616
19617 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
19618 (find-gc-source-directory, find-gc-subrs-callers)
19619 (find-gc-noreturn-list, find-gc-source-files)
19620 (find-gc-subrs-called): Vars renamed and defvar'd.
19621
19622 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
19623 (checkdoc-overlay-put, checkdoc-delete-overlay)
19624 (checkdoc-overlay-start, checkdoc-overlay-end)
19625 (checkdoc-mode-line-update, checkdoc-char=):
19626 Define such that compiler knows they are defined.
19627 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
19628 (checkdoc-read-event): Delete. Use read-event directly.
19629
19630 * whitespace.el (whitespace-make-overlay)
19631 (whitespace-overlay-put, whitespace-delete-overlay)
19632 (whitespace-overlay-start, whitespace-overlay-end):
19633 Define such that compiler knows they are defined.
19634 (whitespace): Move conditional inside.
19635
19636 * tempo.el (tempo-insert-template): Suppress warning.
19637
19638 * ediff-diff.el (longlines-mode): Add defvar.
19639
19640 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
19641
19642 * server.el: Bind "C-x #" in a way that works even if C-x is
19643 redefined to a command key, not a prefix key.
19644
19645 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
19646
19647 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
19648 cl-make-type-test till execution time.
19649
19650 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
19651
19652 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
19653 arg ARG and use it.
19654
19655 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
19656
19657 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
19658
19659 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
19660
19661 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
19662 a defcustom with two :set or :type keywords.
19663
19664 2005-07-15 Richard M. Stallman <rms@gnu.org>
19665
19666 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19667 Don't give ^M comment-end syntax.
19668
19669 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
19670
19671 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
19672 Don't consider gdbmi (gdb-mi.el has its own update functions).
19673 (gdb-var-delete): Make it work for gdbmi as well.
19674 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
19675
19676 * progmodes/gud.el (etags, sdb): Only require etags when needed.
19677 (gud-speedbar-menu-items): Correct logic for enabling items.
19678
19679 2005-07-15 Kim F. Storm <storm@cua.dk>
19680
19681 * ido.el: Fix commentary.
19682 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
19683 Use with-no-warnings around ffap-guesser.
19684 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
19685 Let bind minibuffer-completing-file-name to t.
19686
19687 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
19688
19689 * startup.el (site-run-file, keyboard-type): Doc fixes.
19690 (command-line): Check for "--basic-display" argument; also for
19691 "--quick", not "--bare-bones" (which was renamed).
19692 (fancy-splash-text): Add missing item "Getting New Versions".
19693 (normal-splash-screen): Fix typos and improve consistency with
19694 `fancy-splash-text'. Update copyright year.
19695
19696 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
19697 valid binding for `help-char'.
19698
19699 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
19700
19701 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
19702
19703 * term.el (term-mode): Disable cua-mode for term buffers.
19704
19705 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
19706
19707 * add-log.el (add-log-mailing-address, change-log-merge):
19708 Doc fixes.
19709 (change-log-get-method-definition): Fix typo in docstring.
19710
19711 2005-07-14 Kim F. Storm <storm@cua.dk>
19712
19713 * emulation/cua-base.el:
19714 (cua--pre-command-handler-1, cua--pre-command-handler)
19715 (cua--post-command-handler-1, cua--post-command-handler):
19716 Split in two. Check (buffer local) value of cua-mode.
19717 (cua-selection-mode): New command.
19718
19719 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
19720
19721 * custom.el (custom-initialize-safe-set)
19722 (custom-initialize-safe-default): Doc fixes.
19723
19724 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
19725 and simplify :init-value again.
19726
19727 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
19728 and simplify :init-value again. Delete autoload.
19729
19730 * startup.el (command-line): Use `custom-reevaluate-setting' again
19731 for tooltip-mode.
19732
19733 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
19734 a defcustom with two :initialize keywords.
19735
19736 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
19737
19738 * allout.el (my-mark-marker, allout-isearch-prior-pos)
19739 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
19740 (allout-post-command-business, allout-flag-region)
19741 (isearch-reenable-font-lock, allout-yank)
19742 (allout-insert-latex-header, allout-insert-latex-trailer)
19743 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
19744 (allout-latex-verb-quote): Fix typos in docstrings.
19745 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
19746 (allout-unprotected, allout-prefix-data):
19747 Improve argument/docstring consistency.
19748 (allout-chart-subtree): Fix argument spec.
19749 (allout-open-topic): Rename `use_sib_bullet' argument to
19750 `use-sib-bullet'. Doc fix.
19751
19752 * whitespace.el (whitespace-check-buffer-leading)
19753 (whitespace-check-buffer-trailing)
19754 (whitespace-check-buffer-indent)
19755 (whitespace-check-buffer-spacetab)
19756 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
19757 (whitespace-check-leading-whitespace)
19758 (whitespace-check-trailing-whitespace)
19759 (whitespace-check-spacetab-whitespace)
19760 (whitespace-check-indent-whitespace)
19761 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
19762 (whitespace-modes): Fix typos in docstrings.
19763 (defgroup, defcustom): Doc fixes.
19764
19765 * winner.el (winner-mode, winner-boring-buffers)
19766 (winner-pending-undo-ring): Doc fixes.
19767 (winner-ring): Remove unneeded `progn'.
19768 (winner-equal): `defsubst' it.
19769 (winner-redo): Fix message.
19770
19771 2005-07-13 Kim F. Storm <storm@cua.dk>
19772
19773 * simple.el (line-move-1): Always use vertical-motion to
19774 do the last (or only) line move to ensure some movement.
19775 Undo 2005-06-23 change--don't check for overlays.
19776
19777 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19778
19779 * term/mac-win.el (ccl-encode-mac-roman-font)
19780 (ccl-encode-mac-centraleurroman-font)
19781 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
19782 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
19783 Change charset-id boundary of dimension to ?\xef.
19784 (mac-char-fontspec-list): New constant.
19785 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
19786 argument. Nil uses itself as family in font-spec. Previous
19787 behavior for nil is now provided by non-nil non-string argument.
19788 All callers changed. Add font-specs for Mac fonts to
19789 "fontset-default" unless iso8859-1 fonts are installed.
19790
19791 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
19792
19793 * progmodes/sh-script.el (sh-get-indent-info): Only indent
19794 a continuation line if the \ is preceded by SPC or TAB.
19795 (sh-get-indent-info): Simplify.
19796 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
19797 Use with-current-buffer.
19798
19799 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
19800 when the matched text is empty.
19801
19802 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
19803
19804 * startup.el (command-line): Revert to previous handling of
19805 tooltip-mode. Explain in comment why the complexity is needed.
19806
19807 * tooltip.el (tooltip-mode): Revert to previous implementation of
19808 its defcustom.
19809
19810 * frame.el (blink-cursor-mode): Revert to previous implementation
19811 of its defcustom. Update comment.
19812
19813 2005-07-12 Lars Hansen <larsh@soem.dk>
19814
19815 * desktop.el: Update e-mail address.
19816
19817 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19818
19819 * term/mac-win.el (mac-services-mail-selection)
19820 (mac-services-mail-to): New functions.
19821 (mac-application-menu-map): Bind them.
19822
19823 2005-07-12 wulei <milton@wulei.net> (tiny change)
19824
19825 * progmodes/gdb-ui.el: Add note about buffering with Windows.
19826
19827 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
19828
19829 * custom.el (custom-reevaluate-setting): Doc fix.
19830
19831 2005-07-11 Jay Belanger <belanger@truman.edu>
19832
19833 * calc/calc.el (calc-embedded-announce-formula-alist)
19834 (calc-embedded-open-close-plain-alist)
19835 (calc-embedded-open-close-mode-alist): Add checks for additional
19836 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
19837
19838 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
19839
19840 * custom.el (custom-enable-theme): Don't add theme to
19841 `custom-enabled-themes' with `push' because there is no
19842 setf-method for `delq'.
19843
19844 2005-07-11 Richard M. Stallman <rms@gnu.org>
19845
19846 * custom.el (custom-declare-variable): Doc fix.
19847
19848 * dired-aux.el (dired-compare-directories): Remove "." and ".."
19849 from the alists.
19850
19851 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
19852 Do nothing if edebug-active.
19853
19854 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
19855 (edebug-display): Do it here instead.
19856
19857 2005-07-10 Richard M. Stallman <rms@gnu.org>
19858
19859 * cus-face.el (custom-theme-set-faces): Make it work.
19860 (custom-reset-faces): Doc fix.
19861 (custom-theme-reset-internal-face, custom-theme-face-value):
19862 Functions deleted.
19863
19864 * custom.el (custom-push-theme): Maintain list of the settings
19865 of a given theme in its theme-settings property.
19866 Maintain position of old settings in the theme-value
19867 or theme-face property.
19868 (custom-enabled-themes): New variable.
19869 (custom-theme-enabled-p): New function.
19870 (provide-theme): Update custom-enabled-themes.
19871 Disable and reenable the `user' theme.
19872 (require-theme): Doc fix.
19873 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
19874 (custom-theme-value, custom-theme-variable-value): Likewise.
19875 (custom-theme-reset-internal): Likewise.
19876 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
19877 (custom-enable-theme, custom-disable-theme): New functions.
19878 (custom-variable-theme-value, custom-face-theme-value): Likewise.
19879 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
19880 (custom-theme-reset-variables): Simplify.
19881 (deftheme, custom-declare-theme, custom-make-theme-feature):
19882 Definitions moved.
19883
19884 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
19885
19886 * longlines.el (longlines-show-region)
19887 (longlines-unshow-hard-newlines): Recognize hard newlines by
19888 non-nil hard property, instead of t.
19889
19890 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
19891
19892 * viper-cmd.el (viper--key-maps): New variable.
19893 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
19894 emulation-mode-map-alists.
19895 (viper-envelop-ESC-key): Use viper-subseq.
19896 (viper-search-forward/backward/next): Disable debug-on-error.
19897
19898 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
19899 (viper-ESC-key): New defcustoms.
19900
19901 * viper-macs.el (ex-map-read-args): Use viper-subseq.
19902
19903 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
19904 (viper-subseq): Copy of subseq from cl.el.
19905
19906 * viper.el (viper-go-away, viper-set-hooks): Use
19907 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
19908
19909 * viper-mous.el (viper-current-frame-saved): Use defvar.
19910
19911 * viper-init.el: Get rid of -face in face names.
19912
19913 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
19914 Make it work with longlines mode
19915
19916 * ediff-mult.el (ediff-meta-mode-hook): New variable.
19917
19918 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
19919
19920 * ediff-init.el: Get rid of -face in face names.
19921
19922 2005-07-10 Richard M. Stallman <rms@gnu.org>
19923
19924 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
19925 and with-timeout-unsuspend.
19926
19927 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
19928 and with-timeout-unsuspend.
19929
19930 * emacs-lisp/timer.el (with-timeout-timers): New variable.
19931 (with-timeout): Bind that variable to record timers.
19932 (with-timeout-suspend, with-timeout-unsuspend): New functions.
19933
19934 * emacs-lisp/debug.el (debug-help-follow): New function.
19935 (debugger-mode-map): Use that instead of help-follow.
19936 (debugger-setup-buffer): Use eval-buffer-list
19937 to handle eval-buffer frames.
19938
19939 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
19940
19941 * timezone.el (timezone-parse-date): Change first regexp
19942 so it will not mistakenly match dates with no time zone.
19943
19944 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
19945
19946 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
19947
19948 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
19949
19950 * custom.el (custom-initialize-safe-set)
19951 (custom-initialize-safe-default): New functions.
19952
19953 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
19954 and simplify :init-value.
19955
19956 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
19957 and simplify :init-value. Delete obsolete comment.
19958
19959 * startup.el (command-line): Use `custom-reevaluate-setting' to
19960 handle `tooltip-mode'. Delete obsolete comment.
19961
19962 * files.el (set-visited-file-name): Avoid calling
19963 `file-name-nondirectory' with a nil argument.
19964
19965 2005-07-09 Richard M. Stallman <rms@gnu.org>
19966
19967 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
19968 was called with nil for the buffer, handle the read position right.
19969 Handle read position for eval-region, too.
19970
19971 2005-07-09 Juri Linkov <juri@jurta.org>
19972
19973 * fringe.el (fringe-mode): Add period in docstring.
19974 (fringe-query-style): Build prompt depending on `all-frames' arg.
19975
19976 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
19977 to not create links to unrelated functions in the Help buffer.
19978
19979 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
19980 Doc fix.
19981
19982 * simple.el (next-error-hook): New variable.
19983 (next-error): Use it. Doc fix.
19984
19985 * textmodes/ispell.el (ispell-command-loop): Add current
19986 dictionary name and program name to mode-line-format.
19987 (ispell-region, ispell-process-line): Add current dictionary name
19988 and program name to messages.
19989
19990 2005-07-08 Jay Belanger <belanger@truman.edu>
19991
19992 * calc/calc.el (calc-embedded-announce-formula-alist)
19993 (calc-embedded-open-close-formula-alist)
19994 (calc-embedded-open-close-word-alist)
19995 (calc-embedded-open-close-plain-alist)
19996 (calc-embedded-open-close-new-formula-alist)
19997 (calc-embedded-open-close-mode-alist)
19998 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
19999 (calc-embedded-mode-hook): New variables.
20000
20001 * calc/calc-embed.el (calc-embedded-firsttime)
20002 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
20003 New variables.
20004 (calc-do-embedded): Use calc-embedded-firsttime,
20005 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
20006 determine whether or not to run hooks.
20007 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
20008 calc-embedded-firsttime-formula appropriately.
20009 Set calc-embedded delimiter variables according to mode.
20010
20011 2005-07-08 Richard M. Stallman <rms@gnu.org>
20012
20013 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
20014 Check for "emacs", etc., as entire symbol, not just as word.
20015 (checkdoc-file-comments-engine): Use regexp-quote on FN.
20016
20017 * files.el (set-visited-file-name): Report the error
20018 for "empty filename" earlier.
20019 (kill-some-buffers): Ignore buffers already dead.
20020
20021 * fringe.el (fringe-mode): Doc fix.
20022
20023 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
20024 Check for (featurep 'xemacs) and turn off warnings in what it guards.
20025 Use unwind-protect to ensure byte-compile-unresolved-functions
20026 is updated.
20027
20028 * whitespace.el (whitespace-buffer-leading-cleanup):
20029 Simplify w/ skip-chars-forward.
20030 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
20031
20032 * mail/rmail.el (rmail-only-expunge): Fix paren error.
20033 Unconditionally try to leave point at the same old place.
20034
20035 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
20036
20037 * comint.el (comint-postoutput-scroll-to-bottom)
20038 (comint-show-maximum-output): Take scroll-margin into consideration.
20039
20040 2005-07-08 Kim F. Storm <storm@cua.dk>
20041
20042 * ido.el (ido-use-filename-at-point): New choice `guess'.
20043 (ido-file-internal): Try ffap-guesser if selected.
20044
20045 * ido.el (ido-before-fallback-functions): New hook.
20046 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
20047 (ido-read-file-name): Run it.
20048
20049 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
20050
20051 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
20052 strings rather than a list of symbols to the completion function.
20053
20054 2005-07-07 Jay Belanger <belanger@truman.edu>
20055
20056 * calc/calc-units.el (math-apply-units): Change the places in
20057 which units are simplified.
20058
20059 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
20060
20061 * cus-edit.el (customize-option, customize-option-other-window):
20062 Make them handle aliases.
20063
20064 * custom.el (custom-variable-p): Make it recursively follow
20065 aliases. Mention that in the docstring.
20066
20067 2005-07-07 Richard M. Stallman <rms@gnu.org>
20068
20069 * cus-start.el (exec-path): Use `directory' instead of `file'.
20070 Fix tag for nil.
20071
20072 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
20073
20074 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
20075 when called non-interactively. Doc fix.
20076
20077 2005-07-07 Lute Kamstra <lute@gnu.org>
20078
20079 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
20080 new address as well.
20081
20082 2005-07-07 Kenichi Handa <handa@m17n.org>
20083
20084 * international/mule.el (make-coding-system):
20085 Describe `ascii-incompatible' property in the docstring.
20086 (set-file-name-coding-system): Signal an error if coding-system is
20087 ascii-incompatible.
20088 (set-keyboard-coding-system): Likewise.
20089
20090 * international/mule-cmds.el (set-default-coding-systems):
20091 Don't set default-file-name-coding-system and
20092 default-keyboard-coding-system if coding-system is ASCII-incompatible.
20093
20094 * international/utf-16.el: Declare that all UTF-16-based coding
20095 systems are ASCII-incompatible.
20096
20097 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
20098
20099 * progmodes/gud.el: Require font-lock for displaying errors.
20100 Used by gdb-ui.el.
20101
20102 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
20103
20104 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
20105 values for the pattern lists which are `read'able but not
20106 `append'able (like symbols).
20107
20108 2005-07-06 Richard M. Stallman <rms@gnu.org>
20109
20110 * progmodes/flymake.el (flymake-float-time): Instead of
20111 with-no-warnings, test for XEmacs.
20112 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
20113 to avoid warning.
20114
20115 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
20116
20117 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
20118
20119 2005-07-05 Lute Kamstra <lute@gnu.org>
20120
20121 * battery.el: Add support for Darwin (with much debugging help
20122 from Samuel Lauber <sam124@operamail.com>).
20123 (battery-status-function, battery-echo-area-format)
20124 (battery-mode-line-format): Add support for pmset on Darwin.
20125 (battery-load-low, battery-load-critical): New user options.
20126 (battery-pmset): New function.
20127
20128 2005-07-05 Lute Kamstra <lute@gnu.org>
20129
20130 Update FSF's address in GPL notices.
20131
20132 * textmodes/page-ext.el: Update FSF's address.
20133
20134 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20135
20136 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
20137 filling from using prefix when filling a single-line docstring.
20138
20139 * progmodes/flymake.el: Remove useless eval-when-compile.
20140
20141 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
20142
20143 2005-07-04 Richard M. Stallman <rms@gnu.org>
20144
20145 * textmodes/org.el (org-file-apps-defaults-gnu):
20146 Rename from org-file-apps-defaults-linux.
20147 (org-default-apps): Don't test system-type for `linux'.
20148 (org-file-apps): Doc fix.
20149
20150 2005-07-04 David Ponce <david@dponce.com>
20151
20152 * tree-widget.el: Improve header Commentary section.
20153 (tree-widget) [defgroup]
20154 (tree-widget-image-enable, tree-widget-themes-directory)
20155 (tree-widget-theme, tree-widget-image-properties-emacs)
20156 (tree-widget-image-properties-xemacs, tree-widget-create-image)
20157 (tree-widget-image-formats, tree-widget-control)
20158 (tree-widget-empty-control, tree-widget-leaf-control
20159 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
20160 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
20161 (tree-widget-keep, tree-widget-after-toggle-functions)
20162 (tree-widget-open-node, tree-widget-close-node): Doc fix.
20163 (tree-widget-open-control, tree-widget-close-control): Fix doc and
20164 :help-echo message.
20165 (tree-widget-set-theme): Doc fix. Use `string-equal'.
20166 (tree-widget-image-properties): Doc fix. Clearer implementation.
20167 (tree-widget--cursors): New constant.
20168 (tree-widget-lookup-image): New function split from
20169 `tree-widget-find-image'. Clearer implementation.
20170 (tree-widget-find-image): Use it.
20171 (tree-widget-button-keymap): Use `set-keymap-parent'.
20172 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
20173 Define the sub-widgets here.
20174 (tree-widget-node): Check that :node is not a tree-widget.
20175 (tree-widget-get-super, tree-widget-open-control)
20176 (tree-widget-close-control, tree-widget-empty-control)
20177 (tree-widget-leaf-control, tree-widget-guide)
20178 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
20179 (tree-widget-no-handle, tree-widget-value-delete)
20180 (tree-widget-map): Remove.
20181 (tree-widget-children-value-save): Doc fix. Simplified.
20182 (tree-widget-value-create): Update according to previous changes.
20183
20184 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
20185
20186 * textmodes/org.el: Leading space replaced by TABS.
20187 (org-recalc-marks, org-table-rotate-recalc-marks)
20188 (org-table-get-specials): Treat "^" and "_" marks.
20189 (org-table-justify-field-maybe): Optional argument NEW.
20190 (org-table-eval-formula): Parsing of the format simplified.
20191 New modes C,I. Honor the %= parameter in the current table.
20192 Avoid unnecessary re-align by using the NEW argument to
20193 `org-table-justify-field-maybe'.
20194 (org-calc-default-modes): Default for date-format mimicks org-mode.
20195 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
20196
20197 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
20198
20199 * cus-face.el (custom-theme-set-faces): Make it handle face
20200 aliases whose alias declarations are pre- or autoloaded.
20201
20202 2005-07-04 Juri Linkov <juri@jurta.org>
20203
20204 * faces.el (read-face-name): Put the code for getting a face name
20205 from the buffer before adding the faces from the `face' property.
20206 Use `completing-read-multiple' instead of `completing-read'.
20207 Require `crm'. Add default value and post-process the returned
20208 list of faces.
20209
20210 * emacs-lisp/crm.el (crm-find-current-element)
20211 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
20212
20213 * emacs-lisp/lisp-mode.el (eval-defun-1):
20214 * emacs-lisp/edebug.el (edebug-eval-defun):
20215 Remove unnecessary quotes.
20216
20217 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
20218
20219 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
20220 (prolog-indent-level): Fix typo in docstring.
20221
20222 * info.el (Info-history, Info-history-forward)
20223 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
20224
20225 * add-log.el (add-change-log-entry):
20226 * comint.el (comint-dynamic-list-input-ring)
20227 (comint-dynamic-list-completions):
20228 * dabbrev.el (dabbrev-expand):
20229 * delim-col.el (delimit-columns-rectangle-line):
20230 * diff-mode.el (diff-context->unified, diff-reverse-direction)
20231 (diff-unified->context):
20232 * ediff-init.el (ediff-abbrev-jobname):
20233 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
20234 (ediff-replace-session-activity-marker-in-meta-buffer):
20235 * info.el (Info-summary):
20236 * lpr.el (printify-region):
20237 * printing.el (pr-create-interface):
20238 * ps-print.el (ps-print-quote):
20239 * ses.el (ses-column-widths, ses-print-cell)
20240 (ses-adjust-print-width, ses-center):
20241 * shell.el (shell-file-name-quote-list):
20242 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
20243 (strokes-fill-current-buffer-with-whitespace)
20244 (strokes-xpm-for-stroke, strokes-list-strokes)
20245 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
20246 * term.el (term-dynamic-list-input-ring)
20247 (term-dynamic-list-completions):
20248 * calc/calc.el (math-format-stack-value):
20249 * emacs-lisp/edebug.el (edebug-display-freq-count):
20250 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
20251 (delphi-new-comment-line):
20252 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
20253 * progmodes/executable.el (executable-set-magic):
20254 * progmodes/python.el (inferior-python-mode):
20255 * progmodes/scheme.el (scheme-mode-syntax-table):
20256 * progmodes/sh-script.el (sh-maybe-here-document):
20257 * progmodes/sql.el (sql-copy-column):
20258 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
20259 * textmodes/bibtex.el (bibtex-mode):
20260 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
20261 (sgml-auto-attributes):
20262 * textmodes/table.el (table-insert, table-shorten-cell)
20263 (table--generate-source-scan-lines, table-delete-row)
20264 (*table--cell-delete-char, table--spacify-frame)
20265 (table--horizontally-shift-above-and-below)
20266 (table--cell-insert-char, table--cell-blank-str)
20267 (table--fill-region-strictly):
20268 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
20269 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
20270
20271 * add-log.el (change-log):
20272 * apropos.el (apropos):
20273 * comint.el (comint-completion, comint-source):
20274 * dabbrev.el (dabbrev):
20275 * delim-col.el (columns):
20276 * diff-mode.el (diff-mode):
20277 * ediff.el (ediff):
20278 * ediff-diff.el (ediff-diff):
20279 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
20280 * ediff-mult.el (ediff-mult):
20281 * ediff-ptch.el (ediff-ptch):
20282 * ediff-wind.el (ediff-window):
20283 * facemenu.el (facemenu):
20284 * indent.el (indent):
20285 * info.el (info):
20286 * jka-cmpr-hook.el (compression, jka-compr):
20287 * lpr.el (lpr):
20288 * outline.el (outlines):
20289 * pcmpl-cvs.el (pcmpl-cvs):
20290 * pcmpl-rpm.el (pcmpl-rpm):
20291 * printing.el (printing):
20292 * ps-print.el (postscript, ps-print, ps-print-horizontal)
20293 (ps-print-vertical, ps-print-headers, ps-print-font)
20294 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
20295 (ps-print-background, ps-print-printer, ps-print-page)
20296 (ps-print-miscellany):
20297 * ses.el (ses):
20298 * shell.el (shell, shell-directories, shell-faces):
20299 * startup.el (initialization):
20300 * strokes.el (strokes):
20301 * term.el (term):
20302 * uniquify.el (uniquify):
20303 * w32-vars.el (w32):
20304 * calc/calc.el (calc):
20305 * emacs-lisp/bytecomp.el (bytecomp):
20306 * emacs-lisp/cl-indent.el (lisp-indent):
20307 * emacs-lisp/edebug.el (edebug):
20308 * emacs-lisp/elp.el (elp):
20309 * emacs-lisp/testcover.el (testcover):
20310 * emacs-lisp/trace.el (trace):
20311 * emulation/viper-ex.el (viper-ex):
20312 * emulation/viper-mous.el (viper-mouse):
20313 * mail/mailalias.el (mailalias):
20314 * mail/supercite.el (supercite, supercite-frames)
20315 (supercite-attr, supercite-cite, supercite-hooks):
20316 * net/rcompile.el (remote-compile):
20317 * net/rlogin.el (rlogin):
20318 * obsolete/ooutline.el (outlines):
20319 * progmodes/delphi.el (delphi):
20320 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
20321 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
20322 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
20323 (ebnf-optimization):
20324 * progmodes/etags.el (etags):
20325 * progmodes/executable.el (executable):
20326 * progmodes/idlwave.el (idlwave):
20327 * progmodes/pascal.el (pascal):
20328 * progmodes/prolog.el (prolog):
20329 * progmodes/python.el (python):
20330 * progmodes/scheme.el (scheme):
20331 * progmodes/sh-script.el (sh, sh-script):
20332 * progmodes/sql.el (SQL):
20333 * progmodes/tcl.el (tcl):
20334 * textmodes/bibtex.el (bibtex, bibtex-autokey):
20335 * textmodes/enriched.el (enriched):
20336 * textmodes/makeinfo.el (makeinfo):
20337 * textmodes/sgml-mode.el (sgml):
20338 * textmodes/table.el (table-hooks):
20339 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
20340 * textmodes/texinfo.el (texinfo):
20341 * textmodes/two-column.el (two-column):
20342 Finish `defgroup' description with period.
20343
20344 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
20345 * eshell/esh-var.el (eshell-var):
20346 * progmodes/vhdl-mode.el (vhdl-testbench):
20347 * textmodes/org.el (org): Fix typos in docstrings.
20348
20349 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
20350 consistency.
20351
20352 * progmodes/flymake.el (flymake-find-file): Remove.
20353 (flymake-float-time): Use `with-no-warnings'.
20354 (flymake-check-start-time, flymake-check-was-interrupted)
20355 (flymake-err-info, flymake-is-running, flymake-last-change-time)
20356 (flymake-new-err-info): `defvar' at compile time.
20357
20358 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
20359
20360 * replace.el (occur-hook): Doc fix.
20361 (occur-1): Don't call `occur-hook' if there are no matches.
20362
20363 2005-07-03 Richard M. Stallman <rms@gnu.org>
20364
20365 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
20366 global-map, save the same map.
20367 (global-map): Don't alter it at top level.
20368 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
20369 Then alter it here instead.
20370 (tpu-edt-off): Set global-map to the saved one.
20371
20372 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
20373 All references simplified.
20374 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
20375 (zmacs-regions): Add defvar.
20376 (repeat-complex-command-map): Everything about that deleted.
20377
20378 * textmodes/artist.el (artist-key-is-drawing)
20379 (artist-key-endpoint1, artist-key-poly-point-list)
20380 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
20381 (artist-key-compl-table, artist-rb-save-data)
20382 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
20383 Don't put them in eval-when-compile.
20384 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
20385
20386 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
20387 Use with-no-warnings.
20388
20389 * net/browse-url.el (dos-windows-version): Add defvar.
20390
20391 * mail/supercite.el (filladapt-prefix-table): Add defvar.
20392
20393 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
20394 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
20395 (rmail-new-summary-line-count): Rename from new-summary-line-count.
20396 Add defvar.
20397 (rmail-summary-beginning-of-message): Use with-no-warnings.
20398 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
20399
20400 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
20401 Use with-no-warnings.
20402
20403 * emulation/vi.el (vi-mark-region): Use c-mark-function.
20404 (c-mark-function): Add point-moving-unit property.
20405 (vi-goto-line): Use with-no-warnings.
20406
20407 * emulation/edt.el (edt-last-copied-word): Add defvar.
20408 (zmacs-region-stays): Likewise.
20409 (edt-mark-section-wisely): Use c-mark-function for C.
20410 Use makr-defun for Fortran.
20411 (time-string): defvar deleted.
20412 (edt-display-the-time): Don't set time-string.
20413
20414 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
20415
20416 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
20417 Don't warn when name is not constant
20418 or for defining the group `emacs'.
20419
20420 * tooltip.el (gud-tooltip-mode): Add defvar.
20421
20422 * startup.el (default-frame-background-mode): Add defvar.
20423
20424 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
20425
20426 * info.el (tool-bar-map): Add defvar.
20427
20428 * dired.el (dnd-protocol-alist): Add defvar.
20429
20430 * dired-aux.el (dired-query): Display question with answer, when
20431 the user answers.
20432
20433 * custom.el (custom-add-option): Doc fix.
20434
20435 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
20436
20437 2005-07-03 Eli Zaretskii <eliz@gnu.org>
20438
20439 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
20440 bogus name from the last change.
20441
20442 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
20443
20444 * custom.el (custom-declare-variable): Fix typos in comment.
20445 (custom-known-themes): Doc fix.
20446 (custom-theme-directory): New defcustom.
20447 (require-theme): Make it check `custom-theme-directory'.
20448
20449 * cus-theme.el (custom-new-theme-mode): New function.
20450 (custom-theme-name, custom-theme-variables, custom-theme-faces)
20451 (custom-theme-description): Add compiler defvars.
20452 (customize-create-theme): Add doc to the "*New Custom Theme*"
20453 buffer. Use `custom-new-theme-mode'.
20454 (custom-theme-write): Put the created buffer in emacs-lisp-mode
20455 and save it to the `custom-theme-directory'. Make this the
20456 default directory of the buffer.
20457
20458 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
20459
20460 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
20461 Fix unbalanced parentheses.
20462
20463 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
20464
20465 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
20466 into flymake-mode and delegate to flymake-mode.
20467
20468 * find-file.el (ff-which-function-are-we-in): Clean up.
20469
20470 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
20471
20472 * replace.el (occur-rename-buffer): Fix docstring.
20473
20474 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
20475 (edt-last-copied-word, edt-learn-macro-count)
20476 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
20477 (edt-rect-start-point, edt-user-global-map, rect-start-point)
20478 (time-string, zmacs-region-stays):
20479 * emulation/edt-mapper.el (edt-save-function-key-map)
20480 (EDT-key-name): `defvar' to silence the byte-compiler.
20481
20482 2005-07-02 Martin Rudalics <rudalics@gmx.at>
20483
20484 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
20485 font-lock-regexp-backslash. Doc fix.
20486 (font-lock-regexp-backslash-grouping-construct): Rename from
20487 font-lock-regexp-backslash-construct. Doc fix.
20488 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
20489 grouping constructs.
20490
20491 2005-07-02 Eli Zaretskii <eliz@gnu.org>
20492
20493 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
20494 updating all the prerequisites.
20495
20496 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
20497
20498 * textmodes/org.el (org-agenda-start-on-weekday)
20499 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
20500 (org-agenda-use-time-grid, org-archive-location)
20501 (org-allow-space-in-links, org-usenet-links-prefer-google)
20502 (org-enable-table-editor, org-export-default-language)
20503 (org-export-html-show-new-buffer, org-fill-paragraph)
20504 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
20505 (org-goto-quit, org-occur, org-eval-in-calendar)
20506 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
20507 (org-agenda-diary-entry, org-remember-help)
20508 (org-table-convert-region, org-at-table-p)
20509 (org-table-move-row-down, org-table-move-row-up)
20510 (org-table-copy-region, org-table-toggle-vline-visibility)
20511 (org-table-get-stored-formulas, org-table-get-specials)
20512 (org-recalc-commands, org-table-eval-formula)
20513 (org-table-formula-substitute-names, orgtbl-make-binding)
20514 (org-format-org-table-html, org-format-table-table-html)
20515 (org-format-table-table-html-using-table-generate-source)
20516 (org-customize): Fix typos in docstrings.
20517 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
20518 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
20519 (org-back-to-heading): Doc fixes.
20520 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
20521 (org-agenda-change-all-lines, org-get-header):
20522 Improve argument/docstring consistency.
20523 (orgtbl-error): Fix error message.
20524
20525 * progmodes/flymake.el (flymake-find-possible-master-files)
20526 (flymake-master-file-compare, flymake-get-line-err-count)
20527 (flymake-highlight-line, flymake-gui-warnings-enabled):
20528 Fix typos in docstrings.
20529 (flymake-parse-line, flymake-get-project-include-dirs-function)
20530 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
20531 Doc fixes.
20532 (flymake-get-project-include-dirs-function)
20533 (flymake-make-err-menu-data):
20534 Improve argument/docstring consistency.
20535
20536 2005-07-01 Lute Kamstra <lute@gnu.org>
20537
20538 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
20539 Catch errors with ignore-errors. Use temporary buffer.
20540 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
20541
20542 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
20543 background color faces.
20544 (facemenu-set-foreground, facemenu-set-background):
20545 Use facemenu-set-face-from-menu.
20546 (facemenu-set-face-from-menu): Treat face names that start with
20547 "fg:" or "bg:" as special.
20548 (facemenu-add-new-color): Don't create faces. Simplify.
20549
20550 2005-06-30 Richard M. Stallman <rms@gnu.org>
20551
20552 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
20553 (crm-find-current-element): Likewise.
20554
20555 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
20556
20557 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
20558
20559 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
20560
20561 * arc-mode.el (archive-extract): Make it work as a mouse binding.
20562 (archive-mouse-extract): Make it an obsolete alias.
20563 (archive-mode-map): Don't use archive-mouse-extract any more.
20564 (archive-mode, archive-extract): write-contents-hooks ->
20565 write-contents-functions.
20566 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
20567 first arg.
20568 (archive-rename-entry): Update the call.
20569 (archive-zip-summarize): Remove unused var `method'.
20570 (archive-lzh-summarize): Remove unused var `creator'.
20571
20572 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
20573 dedicated frame upon exit.
20574
20575 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
20576 (archive-zip-extract, archive-zip-expunge)
20577 (archive-zip-update, archive-zip-update-case): Use executable-find.
20578 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
20579 Use restore-buffer-modified-p.
20580 (archive-extract, archive-add-new-member, archive-write-file-member):
20581 Use with-current-buffer.
20582 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
20583
20584 2005-06-30 Andreas Schwab <schwab@suse.de>
20585
20586 * progmodes/gud.el (gud-filter): Remove unneeded progn.
20587
20588 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
20589
20590 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
20591
20592 2005-06-30 Juri Linkov <juri@jurta.org>
20593
20594 * faces.el (vertical-border): Inherit from mode-line-inactive
20595 only on tty.
20596
20597 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
20598
20599 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
20600 example, -NLINES in the `occur' docstring).
20601
20602 * replace.el (occur-1): When no matches are found, do not set the
20603 `buffer-read-only' and modified flags for the occur buffer,
20604 because it is deleted.
20605
20606 * emulation/cua-base.el (cua-check-pending-input)
20607 (cua-repeat-replace-region, cua-mode, cua-debug)
20608 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
20609 Fix typos in docstrings.
20610
20611 * emulation/cua-gmrk.el (cua-toggle-global-mark)
20612 (cua-cut-region-to-global-mark)
20613 (cua--cut-rectangle-to-global-mark):
20614 Remove period from end of messages.
20615
20616 * emulation/cua-rect.el (cua-do-rectangle-padding):
20617 Remove period from end of messages.
20618 (cua--rectangle-seq-format): Fix typo in docstring.
20619 (cua-sequence-rectangle, cua-fill-char-rectangle):
20620 Improve argument/docstring consistency.
20621
20622 2005-06-29 Juri Linkov <juri@jurta.org>
20623
20624 * faces.el (default-frame-background-mode): New internal variable.
20625 (frame-set-background-mode): Use it.
20626
20627 * startup.el (normal-top-level): Set default-frame-background-mode
20628 instead of frame-background-mode. Before setting it, test for its
20629 nil value. Remove tests for frame-background-mode and frame
20630 parameter `reverse'. Add test for "unspecified-fg".
20631
20632 * term/xterm.el (xterm-rxvt-set-background-mode):
20633 * term/rxvt.el (rxvt-set-background-mode):
20634 Set default-frame-background-mode instead of frame-background-mode.
20635
20636 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
20637
20638 * simple.el (set-variable): Warn about obsolete user variables.
20639
20640 * imenu.el (imenu--completion-buffer):
20641 * mouse.el (mouse-buffer-menu-alist):
20642 * msb.el (msb-invisible-buffer-p):
20643 * calendar/diary-lib.el (diary-header-line-format):
20644 * emacs-lisp/pp.el (pp-buffer):
20645 * progmodes/cperl-mode.el (cperl-do-auto-fill):
20646 * textmodes/picture.el (picture-replace-match):
20647 Change space constants followed by a sexp to "?\s ".
20648
20649 * play/decipher.el (decipher-loop-with-breaks):
20650 * textmodes/texinfo.el (texinfo-insert-@item): Change space
20651 constants "protected" from end of line by a comment to "?\s".
20652
20653 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
20654
20655 * font-lock.el (save-buffer-state): Use `declare'.
20656
20657 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
20658 reset the syntax-table to cperl-mode-syntax-table.
20659 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
20660 "foo_print_bar" is not matched as a reserved keyword.
20661
20662 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
20663
20664 * textmodes/org.el (orgtbl-setup): New function, for delayed
20665 setup for the orgtbl commands.
20666 (org-calc-default-modes): New option.
20667 (orgtbl-make-binding): Use `defun' to get better help display.
20668 (org-diary): Call `org-compile-prefix-format'.
20669 (org-table-formula-substitute-names): New function.
20670 (org-agenda-day-view, org-agenda-week-view): New commands.
20671 (org-agenda-toggle-week-view): Command removed.
20672 (org-tbl-menu): Split off from org-org-menu.
20673 (org-mode): Move removal of outline-mode menus to here.
20674 (org-table-formula-debug): New option.
20675 (org-table-insert-row): Keep first field if just "#" or "*".
20676 (org-mode): Paragraph regexps fixed.
20677 (org-table-recalculate-regexp): New constant.
20678 (org-table-justify-field-maybe): Avoid replace if not necessary.
20679 (org-copy-special, org-cut-special): Use `call-interactively'.
20680 (org-table-copy-region): Take region from `interactive' call.
20681 (org-trim): Return string even if no match.
20682 (org-formula): New face.
20683 (org-set-font-lock-defaults): No longer highlight "FIXME".
20684 But highlight formula-related fields in table.
20685 (org-table-p): Use regexp, not fontification.
20686 (org-table-align): Handle white space at end of line.
20687 (org-table-formula-evaluate-inline): New option.
20688 (org-mode): Auto-wrapping in comment lines turned off.
20689 (org-table-copy-down): Evaluate only in copied field, not in
20690 destination.
20691 (org-table-current-formula): Variable removed.
20692 (org-table-store-formulas, org-table-get-stored-formulas)
20693 (org-table-modify-formulas, org-table-replace-in-formulas)
20694 (org-table-maybe-eval-formula): New functions.
20695 (org-table-get-formula): Modify to use stored formulas.
20696 (org-table-insert-column, org-table-delete-column)
20697 (org-table-move-column): Call `org-table-modify-formulas'.
20698 (org-complete): Add completion for keyword formulas.
20699 (orgtbl-mode): Pull orgtbl-mode-map to start of
20700 minor-mode-map-alist.
20701
20702 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
20703
20704 * progmodes/python.el (python-check): Require `compile' before
20705 modifying its variables.
20706
20707 * newcomment.el (comment-indent-default): Don't get fooled by an early
20708 end of buffer.
20709
20710 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20711
20712 * ps-print.el (ps-print-version): Fix version number.
20713
20714 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
20715
20716 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
20717
20718 2005-06-28 Richard M. Stallman <rms@gnu.org>
20719
20720 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
20721 (flyspell-local-mouse-map): Declaration deleted.
20722 (flyspell-mouse-map): Bind only mouse-2.
20723 (flyspell-mode-map): Don't test flyspell-use-local-map.
20724 (flyspell-overlay-keymap-property-name): Var deleted.
20725 (flyspell-mode-on): Don't make local bindings for
20726 flyspell-mouse-map and flyspell-mode-map.
20727 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
20728
20729 * textmodes/ispell.el (ispell-word): Do not ignore short words.
20730
20731 * progmodes/compile.el (compilation-next-error-function):
20732 Don't switch buffers; operate on the current buffer.
20733
20734 * progmodes/compile.el (compilation-error-file-name)
20735 (compilation-warning-file-name, compilation-info-file-name)
20736 (compilation-line-number, compilation-column-number): New faces.
20737 (compilation-error-face, compilation-warning-face)
20738 (compilation-info-face, compilation-line-face)
20739 (compilation-column-face): Use them.
20740
20741 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
20742
20743 * comint.el (comint-password-prompt-regexp): Accept ", try again".
20744
20745 * bindings.el (global-map): Bind insertchar and its variants.
20746
20747 2005-06-27 Richard M. Stallman <rms@gnu.org>
20748
20749 * textmodes/artist.el (artist-text-overwrite)
20750 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
20751
20752 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20753
20754 * ps-print.el: It was not working the page selection for printing.
20755 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
20756 (ps-print-version): New version 6.6.7.
20757 (ps-end-sheet): New fun.
20758 (ps-header-sheet, ps-end-job): Call it.
20759
20760 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
20761
20762 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
20763
20764 2005-06-27 Lute Kamstra <lute@gnu.org>
20765
20766 * facemenu.el (facemenu-unlisted-faces): Add foreground and
20767 background color faces.
20768 (facemenu-get-face): Delete function.
20769 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
20770 (facemenu-add-new-color): Make second argument mandatory.
20771 Create the appropriate face and return it. Simplify.
20772 (facemenu-set-foreground, facemenu-set-background): Don't check if
20773 color is defined. Use return value of facemenu-add-new-color.
20774
20775 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
20776
20777 * progmodes/gud.el (gud-filter): Add missing argument to
20778 with-selected-window.
20779
20780 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
20781
20782 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
20783 a :require to the defcustom.
20784
20785 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
20786 defcustoms corresponding to minor modes.
20787
20788 2005-06-26 David Ponce <david@dponce.com>
20789
20790 * recentf.el: Require tree-widget instead of wid-edit.
20791 (recentf-filename-handler): Fix widget :type.
20792 (recentf-cancel-dialog, recentf-open-more-files)
20793 (recentf-open-files-action): Doc fix.
20794 (recentf-dialog-goto-first): New function.
20795 (recentf-dialog-mode-map): Set parent keymap first.
20796 (recentf-dialog-mode): Define with define-derived-mode.
20797 Don't display continuation lines in dialogs.
20798 (recentf-edit-list): Rename from recentf-edit-selected-items.
20799 (recentf-edit-list-select): Rename from recentf-edit-list-action.
20800 Simplify.
20801 (recentf-edit-list-validate): New function.
20802 (recentf-edit-list): Update accordingly.
20803 (recentf-open-files-item-shift): Remove.
20804 (recentf-open-files-item): Convert menu elements into tree and
20805 link widgets. Don't create the widgets.
20806 (recentf-open-files): Update accordingly.
20807 (recentf-save-list): Untabify.
20808
20809 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
20810
20811 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
20812 (keep-lines): Add INTERACTIVE arg. Never delete lines only
20813 partially contained in the active region. Do not take active
20814 region into account when called from Lisp, unless INTERACTIVE arg
20815 is non-nil. Use `forward-line' instead of `beginning-of-line' to
20816 avoid trouble with fields. Make marker point nowhere when no
20817 longer used. Always return nil. Doc fix.
20818 (flush-lines): Add INTERACTIVE arg. Do not take active region
20819 into account when called from Lisp, unless INTERACTIVE arg is
20820 non-nil. Use `forward-line' instead of `beginning-of-line' to
20821 avoid trouble with fields. Make marker point nowhere when no
20822 longer used. Always return nil. Doc fix.
20823 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
20824 interchangeable. Do not take active region into account when
20825 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
20826 message in echo area when called from Lisp, unless INTERACTIVE arg
20827 is non-nil. Avoid saying "1 occurrences". Do not use markers.
20828 Return the number of matches. Doc fix.
20829 (occur): Doc fix.
20830 (perform-replace): Make comment follow double space convention for
20831 the sake of `outline-minor-mode'.
20832
20833 * faces.el (facep): Doc fix.
20834
20835 2005-06-25 Richard M. Stallman <rms@gnu.org>
20836
20837 * facemenu.el (facemenu-enable-faces-p): New function.
20838 (facemenu-background-menu, facemenu-foreground-menu)
20839 (facemenu-face-menu): Add menu-enable property.
20840
20841 * jka-compr.el (jka-compr-insert-file-contents):
20842 Special handling if cannot find the uncompression program.
20843
20844 * cus-face.el (custom-face-attributes): Add autoload.
20845
20846 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20847 Bind comment-indent-function locally.
20848
20849 * window.el (save-selected-window): Use save-current-buffer.
20850
20851 * subr.el (with-selected-window): Use save-current-buffer.
20852
20853 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
20854 and with-current-buffer.
20855
20856 2005-06-24 Richard M. Stallman <rms@gnu.org>
20857
20858 * simple.el (line-move-1): Fix previous change.
20859
20860 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
20861
20862 * replace.el (occur-1): Set `buffer-read-only' and the
20863 buffer-modified flag before running `occur-hook' to protect
20864 against unintentional buffer switches that can lead to data loss.
20865
20866 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
20867
20868 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
20869 (gud-gdb-marker-filter): Use font-lock-warning-face for any
20870 initial error.
20871
20872 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
20873 after fresh input.
20874 (gdb-var-create-handler): Put name of expression in quotes.
20875
20876 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
20877
20878 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
20879 elements of RING in order, and without bogus nil elements.
20880
20881 2005-06-23 Richard M. Stallman <rms@gnu.org>
20882
20883 * simple.el (set-variable): Args renamed; doc fix.
20884 (line-move-1): When there are overlays around, use vertical-motion.
20885
20886 * faces.el (escape-glyph): Use brown against light background.
20887 (nobreak-space): Rename from no-break-space.
20888 Fix previous change.
20889
20890 * dired-aux.el (dired-do-copy): Fix arg prompt.
20891
20892 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
20893
20894 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
20895
20896 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
20897 rather than "Distributor".
20898
20899 2005-06-23 Lute Kamstra <lute@gnu.org>
20900
20901 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
20902 (debug-on-entry): Use it. New interactive declaration that uses
20903 function-called-at-point.
20904
20905 2005-06-23 Kim F. Storm <storm@cua.dk>
20906
20907 * subr.el (save-match-data): Add comment about using evaporate arg
20908 to set-match-data.
20909
20910 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
20911
20912 * cus-edit.el (customize-face)
20913 (customize-face-other-window): Handle face aliases.
20914
20915 * faces.el (face-documentation, set-face-attribute)
20916 (face-spec-set): Handle face aliases.
20917
20918 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
20919
20920 * help-mode.el (help-make-xrefs): If a symbol representing a face
20921 name is not followed by the word "face", it could still be a
20922 function or variable name, so don't bypass other checks.
20923
20924 2005-06-22 Juri Linkov <juri@jurta.org>
20925
20926 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
20927 Replace aliased functions with calls where second arg `inherit' is t.
20928
20929 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
20930
20931 * progmodes/gdb-ui.el (gdb-error): New variable.
20932 (gdb-error): New function.
20933 (gdb-annotation-rules): Act on error-begin and error annotations.
20934 (gdb-concat-output): Use font-lock-warning-face for errors.
20935
20936 2005-06-22 Miles Bader <miles@gnu.org>
20937
20938 * bindings.el (propertized-buffer-identification): Use renamed
20939 `Buffer-menu-buffer' face.
20940
20941 * faces.el (vertical-border): Rename from `vertical-divider'.
20942 (escape-glyph): Change dark-background color back to `cyan'.
20943
20944 2005-06-21 Juri Linkov <juri@jurta.org>
20945
20946 * faces.el (face-user-default-spec): Try getting `customized-face'
20947 prior to `saved-face'.
20948 (frame-background-mode): Refill docstring.
20949
20950 * emacs-lisp/lisp-mode.el (eval-defun-1):
20951 * emacs-lisp/edebug.el (edebug-eval-defun):
20952 Set `saved-face' temporarily to nil before calling form.
20953 Set `customized-face' to the new spec after that.
20954
20955 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
20956
20957 * subr.el (1value, lambda, key-substitution-in-progress):
20958 Doc fixes.
20959
20960 * autoinsert.el (auto-insert-alist):
20961 * ses.el (ses-call-printer):
20962 * subr.el (noreturn):
20963 * emacs-lisp/lisp.el (check-parens):
20964 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
20965 * net/browse-url.el (browse-url-mosaic):
20966 * progmodes/cc-defs.el (c-safe-scan-lists):
20967 * progmodes/ebnf-abn.el (ebnf-abn-lex):
20968 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
20969 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
20970 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
20971 * progmodes/ebnf-iso.el (ebnf-iso-lex):
20972 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
20973
20974 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
20975
20976 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
20977
20978 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
20979
20980 * calendar/appt.el (appt-make-list): Activate the package, if
20981 not already active (for backwards compatibility).
20982
20983 2005-06-20 Kim F. Storm <storm@cua.dk>
20984
20985 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
20986
20987 2005-06-20 Miles Bader <miles@gnu.org>
20988
20989 * faces.el (vertical-divider): New face.
20990
20991 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
20992
20993 * simple.el (kill-whole-line): Doc fix.
20994 (next-error-buffer-p, next-error-find-buffer)
20995 (clone-indirect-buffer): Fix typos in docstrings.
20996 (comment-line-break-function): Doc fix: don't say variable
20997 is automatically buffer-local (it isn't).
20998
20999 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
21000
21001 * net/tramp-ftp.el (top):
21002 * net/tramp-smb.el (top):
21003 * net/tramp-util.el (top):
21004 * net/tramp-uu.el (top):
21005 * net/tramp-vc.el (top):
21006 * net/tramp.el (top): Revert copyright years back to original
21007 ones. Tramp has a life outside GNU Emacs.
21008
21009 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
21010
21011 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
21012
21013 2005-06-18 Juri Linkov <juri@jurta.org>
21014
21015 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
21016 end of first regexp to limit the match to the position between
21017 line number and source line with same separator character as used
21018 between file name and line number. In the second regexp limit
21019 mouse-face area to file name and line number by adding new group
21020 for them and referring it in HYPERLINK arg.
21021 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
21022 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
21023 previous line where grep markers may be already removed.
21024
21025 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
21026
21027 * progmodes/ps-mode.el: Update version and maintainer's email address.
21028
21029 2005-06-18 Steve Youngs <steve@xemacs.org>
21030
21031 * net/browse-url.el (browse-url-browser-function)
21032 (browse-url-default-browser): Add firefox.
21033 (browse-url-firefox-program, browse-url-firefox-arguments)
21034 (browse-url-firefox-startup-arguments)
21035 (browse-url-firefox-new-window-is-tab): New defcustoms.
21036 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
21037
21038 2005-06-17 Richard M. Stallman <rms@gnu.org>
21039
21040 * startup.el (command-line): Warn if specified user name has
21041 no home directory.
21042
21043 * term.el (term-get-old-input, term-input-filter, term-input-sender)
21044 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
21045
21046 * longlines.el (longlines-mode, longlines-show-hard-newlines):
21047 Doc fixes.
21048
21049 * faces.el (underline): Try bold if terminal doesn't support underline.
21050
21051 * mail/sendmail.el (mail-setup-with-from): New variable.
21052 (mail-insert-from-field): New function.
21053 (sendmail-send-it): Call it.
21054 (mail-setup): Optionally call it here.
21055
21056 * term/linux.el: Call tty-no-underline.
21057
21058 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
21059
21060 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
21061
21062 2005-06-17 Miles Bader <miles@gnu.org>
21063
21064 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
21065 (ediff-current-diff-C, ediff-current-diff-Ancestor)
21066 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
21067 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
21068 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
21069 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
21070 Remove "-face" suffix from face names.
21071 (ediff-current-diff-face-A, ediff-current-diff-face-B)
21072 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
21073 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
21074 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
21075 (ediff-even-diff-face-A, ediff-even-diff-face-B)
21076 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
21077 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
21078 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
21079 New backward-compatibility aliases for renamed faces.
21080 (ediff-current-diff-face-A, ediff-current-diff-face-B)
21081 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
21082 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
21083 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
21084 (ediff-even-diff-face-A, ediff-even-diff-face-B)
21085 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
21086 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
21087 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
21088 Use renamed ediff faces.
21089
21090 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
21091 Remove "-face" suffix from face names.
21092 (eshell-test-ok-face, eshell-test-failed-face):
21093 New backward-compatibility aliases for renamed faces.
21094 (eshell-run-test): Use renamed eshell-test faces.
21095
21096 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
21097 face name.
21098 (eshell-prompt-face): New backward-compatibility alias for renamed
21099 face.
21100 (eshell-emit-prompt): Use renamed eshell-prompt face.
21101
21102 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
21103 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
21104 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
21105 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
21106 Remove "-face" suffix from face names.
21107 (eshell-ls-directory-face, eshell-ls-symlink-face)
21108 (eshell-ls-executable-face, eshell-ls-readonly-face)
21109 (eshell-ls-unreadable-face, eshell-ls-special-face)
21110 (eshell-ls-missing-face, eshell-ls-archive-face)
21111 (eshell-ls-backup-face, eshell-ls-product-face)
21112 (eshell-ls-clutter-face):
21113 New backward-compatibility aliases for renamed faces.
21114 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
21115
21116 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
21117 Remove "-face" suffix from face name.
21118 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
21119 instead of literal face.
21120
21121 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
21122
21123 * emacs-lisp/warnings.el (display-warning, lwarn)
21124 (warning-minimum-log-level): Doc fixes.
21125 (warning-minimum-level, warning-minimum-log-level):
21126 Add :debug to :type choices.
21127
21128 * progmodes/ada-mode.el (ada-format-paramlist)
21129 (ada-get-indent-case, ada-check-matching-start)
21130 (ada-check-defun-name, ada-goto-matching-decl-start)
21131 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
21132 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
21133 (ada-make-subprogram-body): Follow error conventions.
21134 (ada-case-exception-file, ada-indent-comment-as-code)
21135 (ada-indent-handle-comment-special, ada-indent-renames)
21136 (ada-indent-return, ada-search-directories-internal)
21137 (ada-tab-policy, ada-case-exception-substring)
21138 (ada-other-file-alist, ada-matching-start-re)
21139 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
21140 (ada-imenu-generic-expression, ada-compile-goto-error)
21141 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
21142 (ada-popup-menu, ada-add-extensions, ada-mode)
21143 (ada-region-selected, ada-create-case-exception)
21144 (ada-create-case-exception-substring, ada-after-keyword-p)
21145 (ada-activate-keys-for-case, ada-adjust-case-region)
21146 (ada-adjust-case-buffer, ada-format-paramlist)
21147 (ada-scan-paramlist, ada-insert-paramlist)
21148 (ada-indent-newline-indent)
21149 (ada-indent-newline-indent-conditional)
21150 (ada-justified-indent-current, ada-goto-previous-word)
21151 (ada-indent-current, ada-get-indent-open-paren)
21152 (ada-get-indent-paramlist, ada-get-indent-end)
21153 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
21154 (ada-get-indent-block-start, ada-get-indent-subprog)
21155 (ada-get-indent-noindent, ada-get-indent-label)
21156 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
21157 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
21158 (ada-goto-stmt-end, ada-goto-next-word)
21159 (ada-check-matching-start, ada-check-defun-name)
21160 (ada-goto-matching-decl-start, ada-goto-matching-start)
21161 (ada-goto-matching-end, ada-search-ignore-string-comment)
21162 (ada-in-decl-p, ada-looking-at-semi-or)
21163 (ada-looking-at-semi-private, ada-in-paramlist-p)
21164 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
21165 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
21166 (ada-next-procedure, ada-previous-procedure, ada-next-package)
21167 (ada-previous-package, ada-create-menu)
21168 (ada-fill-comment-paragraph-justify)
21169 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
21170 (ada-other-file-name, ada-last-which-function-line)
21171 (ada-last-which-function-subprog, ada-which-function)
21172 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
21173 (ada-gen-treat-proc, ada-check-emacs-version)
21174 (ada-continuation-indent, ada-align-region-separate):
21175 Fix typos in docstrings.
21176 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
21177
21178 2005-06-16 Lute Kamstra <lute@gnu.org>
21179
21180 * simple.el (fundamental-mode): Run after-change-major-mode-hook
21181 conditionally.
21182
21183 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
21184
21185 * comint.el (comint-replace-by-expanded-filename)
21186 (comint-prompt-regexp, comint-delimiter-argument-list)
21187 (comint-preinput-scroll-to-bottom):
21188 * info.el (Info-hide-cookies-node):
21189 * ls-lisp.el (ls-lisp-classify):
21190 * find-file.el (ff-search-directories, ff-special-constructs)
21191 (ff-find-other-file):
21192 * font-lock.el (font-lock-keywords):
21193 * shell.el (shell-prompt-pattern)
21194 (shell-dynamic-complete-functions, shell-mode)
21195 (shell-delimiter-argument-list):
21196 * term.el (term-replace-by-expanded-filename)
21197 (term-prompt-regexp, term-delimiter-argument-list):
21198 * woman.el (woman-ignore, woman0-if):
21199 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
21200 * emacs-lisp/elint.el (elint-init-env):
21201 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
21202 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
21203 * language/ethio-util.el (ethio-tilde-escape)
21204 (ethio-use-three-dot-question):
21205 * net/zone-mode.el (zone-mode-load-time-setup):
21206 * progmodes/cc-align.el (c-lineup-argcont):
21207 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
21208 * progmodes/cperl-mode.el (cperl-set-style-back):
21209 * progmodes/inf-lisp.el (inferior-lisp-prompt):
21210 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
21211 Fix spellings in docstrings.
21212
21213 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
21214 * progmodes/modula2.el (m2-for): Fix spellings.
21215
21216 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
21217
21218 * simple.el (undo-more): Don't use `format' on `error' arguments.
21219 Improve argument/docstring consistency.
21220 (pending-undo-list): Doc fix.
21221
21222 * smerge-mode.el (smerge-ensure-match):
21223 * emulation/vip.el (vip-ex):
21224 * net/zone-mode.el (zone-mode-update-serial):
21225 * progmodes/idlwave.el (idlwave-complete):
21226 * progmodes/vhdl-mode.el (vhdl-visit-file)
21227 (vhdl-compose-wire-components):
21228 Don't use `format' on `error' arguments.
21229
21230 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
21231 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
21232 (tooltip-help-tips): Fix typos in docstrings.
21233
21234 2005-06-16 David Ponce <david@dponce.com>
21235
21236 * tree-widget.el (tree-widget-value-create): Simplify last change.
21237
21238 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
21239
21240 * ido.el (ido-incomplete-regexp): New variable.
21241 (ido-set-matches-1): Handle invalid-regexp error and set
21242 ido-incomplete-regexp.
21243 (ido-incomplete-regexp): New face.
21244 (ido-completions): Use it.
21245 (ido-complete, ido-exit-minibuffer, ido-completions):
21246 Handle incomplete regexps.
21247 (ido-completions): Add check for complete match when entering a regexp.
21248
21249 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21250
21251 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
21252
21253 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
21254
21255 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
21256 by field delimiters.
21257
21258 2005-06-15 David Ponce <david@dponce.com>
21259
21260 * tree-widget.el: eval-and-compile inlined functions so they will
21261 be available at run-time too.
21262 (tree-widget-super-format-handler)
21263 (tree-widget-format-handler): Remove.
21264 (tree-widget-value-create): Handle the :indent property.
21265
21266 2005-06-15 Miles Bader <miles@gnu.org>
21267
21268 * progmodes/which-func.el (which-func): Only inherit
21269 `font-lock-function-name-face' when that makes sense against the
21270 default mode-line face, otherwise set the face color explicitly.
21271
21272 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
21273 faces instead of (non-existent) variables.
21274
21275 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
21276
21277 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
21278 (iswitchb-get-matched-buffers): Likewise. Simplify.
21279
21280 2005-06-14 Miles Bader <miles@gnu.org>
21281
21282 * progmodes/ld-script.el (ld-script-location-counter):
21283 Remove "-face" suffix from face name.
21284 (ld-script-location-counter-face):
21285 New backward-compatibility alias for renamed face.
21286 (ld-script-location-counter-face): Use renamed face.
21287
21288 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
21289 (cperl-hash): Remove "-face" suffix from face names.
21290 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
21291 New backward-compatibility aliases for renamed faces.
21292 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
21293 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
21294
21295 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
21296 name.
21297 (which-func-face): New backward-compatibility alias for renamed face.
21298 (which-func-format): Use renamed which-func face.
21299
21300 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
21301 (vhdl-function, vhdl-directive, vhdl-reserved-word)
21302 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
21303 names.
21304 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
21305 (vhdl-speedbar-configuration, vhdl-speedbar-package)
21306 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
21307 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
21308 (vhdl-speedbar-architecture-selected)
21309 (vhdl-speedbar-configuration-selected)
21310 (vhdl-speedbar-package-selected)
21311 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
21312 names.
21313 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
21314 Use renamed faces.
21315 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
21316 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
21317 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
21318 Use renamed faces.
21319 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
21320 names.
21321 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
21322 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
21323 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
21324 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
21325 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
21326 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
21327
21328 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
21329 face name.
21330 (sh-heredoc-face): New backward-compatibility alias for renamed face.
21331 (sh-heredoc-face): Use renamed sh-heredoc face.
21332
21333 * progmodes/idlw-help.el (idlwave-help-link):
21334 Remove "-face" suffix from face name.
21335 (idlwave-help-link-face):
21336 New backward-compatibility alias for renamed face.
21337 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
21338
21339 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
21340 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
21341 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
21342 New backward-compatibility aliases for renamed faces.
21343 (idlwave-shell-disabled-breakpoint-face)
21344 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
21345
21346 * progmodes/flymake.el (flymake-errline, flymake-warnline):
21347 Remove "-face" suffix from face names.
21348 (flymake-errline-face, flymake-warnline-face):
21349 New backward-compatibility aliases for renamed faces.
21350 (flymake-highlight-line): Use renamed flymake faces.
21351
21352 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
21353 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
21354 (ebrowse-member-class, ebrowse-progress):
21355 Remove "-face" suffix from face names.
21356 (ebrowse-tree-mark-face, ebrowse-root-class-face)
21357 (ebrowse-file-name-face, ebrowse-default-face)
21358 (ebrowse-member-attribute-face, ebrowse-member-class-face)
21359 (ebrowse-progress-face):
21360 New backward-compatibility aliases for renamed faces.
21361 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
21362 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
21363 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
21364 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
21365
21366 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
21367 antlr-syntax)
21368 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
21369 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
21370 names.
21371 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
21372 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
21373 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
21374 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
21375 backward-compatibility aliases for renamed faces.
21376 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
21377 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
21378 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
21379 remove "font-lock-". Use renamed antlr-mode faces.
21380 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
21381 literal face-names with face variable references.
21382
21383 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
21384 face name.
21385 (Buffer-menu-buffer-face): New backward-compatibility alias for
21386 renamed face.
21387 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
21388
21389 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
21390
21391 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
21392 Eliminate "-face" suffix.
21393 (makefile-targets): Inherit from font-lock-function-name-face and
21394 eliminate "-face" suffix.
21395 (makefile-shell): Remove attributes and eliminate "-face" suffix.
21396 (makefile-*-font-lock-keywords): Append makefile-targets in rule
21397 actions, instead of prepending, to make it less visible.
21398 (makefile-previous-dependency, makefile-match-dependency):
21399 Don't match a target on a continuation line.
21400
21401 * files.el (auto-mode-alist): Put Makefile in gmake mode.
21402
21403 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
21404
21405 * progmodes/gdb-ui.el (menu): Re-order menu items.
21406 (gdb-tooltip-print): Respect tooltip-use-echo-area.
21407
21408 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
21409 Define in tooltip.el.
21410 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
21411 (gud-tooltip-tips): Respect tooltip-use-echo-area and
21412 gud-tooltip-echo-area.
21413
21414 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
21415 backward compatibility and make obsolete.
21416 (tooltip-help-tips): Use tooltip-use-echo-area.
21417 (tooltip-show-help-function): Rename to...
21418 (tooltip-show-help): ...this, because it is a function.
21419 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
21420
21421 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
21422
21423 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
21424 (edebug-print-length, edebug-print-level, edebug-print-circle)
21425 (edebug-modify-breakpoint, edebug-eval-last-sexp)
21426 (edebug-eval-print-last-sexp): Doc fixes.
21427
21428 2005-06-14 Kim F. Storm <storm@cua.dk>
21429
21430 * ido.el (ido-mode): Make a new keymap every time we enable ido,
21431 as the coverage buffer/file/both may change.
21432
21433 2005-06-14 Lute Kamstra <lute@gnu.org>
21434
21435 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
21436 and run-mode-hooks. Simplify.
21437
21438 * mail/rmailedit.el (rmail-edit-mode):
21439 * progmodes/octave-inf.el (inferior-octave-mode):
21440 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
21441
21442 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
21443 and run-mode-hooks.
21444 (recentf-edit-list, recentf-open-files): Don't call
21445 kill-all-local-variables directly.
21446
21447 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
21448
21449 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
21450
21451 * emacs-lisp/byte-run.el (make-obsolete)
21452 (define-obsolete-function-alias): Rename arguments FUNCTION and
21453 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
21454 (make-obsolete-variable, define-obsolete-variable-alias):
21455 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
21456 respectively.
21457
21458 * isearchb.el (isearchb-activate):
21459 * pcvs.el (cvs-mode):
21460 * ses.el (ses-load):
21461 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
21462 * net/tramp.el (tramp-find-file-exists-command)
21463 (tramp-find-shell):
21464 * progmodes/ada-mode.el (ada-create-case-exception)
21465 (ada-create-case-exception-substring, ada-make-subprogram-body):
21466 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
21467 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
21468 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
21469 * textmodes/org.el (org-promote, org-evaluate-time-range)
21470 (org-agenda-next-date-line, org-agenda-previous-date-line)
21471 (org-agenda-error, org-open-at-point, org-table-move-row)
21472 (org-format-table-table-html-using-table-generate-source)
21473 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
21474 * textmodes/reftex.el (reftex-access-scan-info):
21475 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
21476 (reftex-toc-promote-prepare): Follow error conventions.
21477
21478 * diff-mode.el (diff-mode): Fix typo in docstring.
21479
21480 * forms.el (forms--intuit-from-file): Fix reference to
21481 `forms-number-of-fields' in error message.
21482 (forms-print): Fix quoting in error message.
21483
21484 * forms.el (forms-mode):
21485 * emulation/vi.el (vi-goto-insert-state):
21486 * progmodes/flymake.el (flymake-new-err-info)
21487 (flymake-start-syntax-check-for-current-buffer)
21488 (flymake-simple-cleanup):
21489 * eshell/esh-var.el (eshell/export):
21490 * progmodes/gud.el (xdb):
21491 * textmodes/flyspell.el (flyspell-incorrect-hook)
21492 (flyspell-maybe-correct-transposition)
21493 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
21494
21495 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
21496
21497 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
21498 minibuffer prompt.
21499
21500 2005-06-13 Kim F. Storm <storm@cua.dk>
21501
21502 * subr.el (add-to-ordered-list): New defun.
21503
21504 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
21505 add cua--keymap-alist to emulation-mode-map-alists.
21506
21507 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
21508
21509 * subr.el (complete-in-turn): New macro.
21510 (dynamic-completion-table, lazy-completion-table): Add debug info.
21511
21512 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
21513 in preference to face aliases.
21514
21515 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
21516 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
21517 Remove unused vars `start' and `firstline'.
21518 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
21519 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
21520
21521 2005-06-13 Eli Zaretskii <eliz@gnu.org>
21522
21523 * cus-start.el (all): Don't complain about missing GTK-related
21524 variables, unless either `gtk' is boundp or this isn't a
21525 `windows-nt' build.
21526
21527 2005-06-13 Lute Kamstra <lute@gnu.org>
21528
21529 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
21530 run-mode-hooks.
21531
21532 * ediff-mult.el (ediff-meta-mode):
21533 * ediff-util.el (ediff-mode): Use run-mode-hooks.
21534
21535 * ledit.el (ledit-mode): Use delay-mode-hooks.
21536
21537 * woman.el (woman-mode-line-format): Delete constant.
21538 (woman-mode-map): Initialize it properly.
21539 (woman-mode): Set mode-class property to special.
21540 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
21541 Set major-mode and mode-name. Don't set mode-line-format directly.
21542 (Man-getpage-in-background): Don't reference woman-mode-line-format.
21543
21544 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
21545 string argument obsolete.
21546
21547 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
21548
21549 * textmodes/org.el (org-CUA-compatible): New option.
21550 (org-disputed-keys): New variable.
21551 (org-key): New function.
21552 (orgtbl-make-binding): Add docstring to the created function.
21553 (org-mode): Set paragraph start/separate regexps.
21554 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
21555 (org-archive-location, org-archive-mark-done)
21556 (org-archive-stamp-time): New options.
21557 (org-archive-subtree): New command.
21558 (org-fill-paragraph): New function.
21559 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
21560 (org-fake-empty-table-line): Function removed.
21561 (org-format-org-table-html): Do not create empty table lines at
21562 separator lines. Improved table header treatment.
21563 (org-link-format): New option.
21564 (org-make-link): New function.
21565 (org-insert-link, org-store-link): Use org-make-link.
21566 (org-open-file): Quote file name for shell command, to allow
21567 spaces in file names.
21568 (org-link-regexp): Fix bug with mailto link.
21569 (org-link-maybe-angles-regexp, org-protected-link-regexp):
21570 New constants.
21571 (org-export-as-html): Deal with the optional angles around a link.
21572 Better treatment of file: links.
21573 (org-open-at-point): Replace @{ and @} with < and >.
21574 (org-run-mode-hooks): Function removed.
21575 (org-agenda-mode): No longer use `org-run-mode-hooks'.
21576
21577 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
21578
21579 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
21580 MI command -data-list-register-values.
21581 (gdb-post-prompt): Indent properly.
21582
21583 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
21584
21585 * hilit-chg.el (highlight-changes-colors): Rename from
21586 `highlight-changes-colours'.
21587 (highlight-changes-colours): Keep as obsolete alias.
21588 (highlight-changes-face-list): Doc fix.
21589 (hilit-chg-make-list): Use `highlight-changes-colors'.
21590
21591 2005-06-12 Mark A. Hershberger <mah@everybody.org>
21592
21593 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
21594 defun-prompt-regexp.
21595
21596 2005-06-12 Eli Zaretskii <eliz@gnu.org>
21597
21598 * loadup.el: Don't say we are dumping under 2 names on windows-nt
21599 and cygwin.
21600
21601 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
21602 Don't use an old loaddefs.el, as in Makefile.in.
21603
21604 2005-06-12 Lute Kamstra <lute@gnu.org>
21605
21606 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
21607
21608 * man.el (Man-mode-map): Initialize it properly.
21609 (Man-mode): Set mode-class property to special.
21610
21611 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
21612
21613 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
21614
21615 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
21616 A newline is needed in the docstring there.
21617
21618 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
21619 Doc fixes.
21620
21621 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21622
21623 * printing.el: Doc fix. The menubar is no more changed when printing
21624 is loaded, it only changes when pr-menu-bind or pr-update-menus is
21625 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
21626 (pr-version): New version number (6.8.4).
21627 (pr-menu-bind): New command.
21628 (pr-update-menus): Docstring and code fix.
21629 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
21630 Docstring fix.
21631 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
21632 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
21633
21634 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
21635
21636 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
21637 "Returns" to "return", document useful return values, etc.
21638
21639 2005-06-11 Alan Mackenzie <acm@muc.de>
21640
21641 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
21642 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
21643 (adaptive-file-function): Minor amendment to doc-string.
21644
21645 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
21646
21647 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
21648 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
21649 Fix :type--it is `integer', not `string'.
21650
21651 * faces.el (modeline-highlight): Rename from (the erroneous)
21652 `modeline-higilight'.
21653
21654 2005-06-11 Lute Kamstra <lute@gnu.org>
21655
21656 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
21657 lisp-interaction-mode-map but make it the parent.
21658 (edebug-eval-mode): Use define-derived-mode.
21659
21660 2005-06-11 Andreas Schwab <schwab@suse.de>
21661
21662 * bindings.el: Add binding of `ESC functionkey' for every
21663 `M-functionkey'.
21664 * hexl.el (hexl-mode-map): Likewise.
21665
21666 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
21667
21668 * progmodes/compile.el (compilation-error-regexp-alist-alist)
21669 [msft]: update regexp for newer msft compilers.
21670
21671 2005-06-10 Mark A. Hershberger <mah@everybody.org>
21672
21673 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
21674 ATTLIST portions of included DTDs.
21675 (xml-parse-dtd): Eliminate use of inefficient match-data.
21676
21677 2005-06-10 Miles Bader <miles@gnu.org>
21678
21679 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
21680 (mpuz-text): Remove "-face" suffix from face names.
21681 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
21682 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
21683 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
21684
21685 * play/gomoku.el (gomoku-O, gomoku-X):
21686 Remove "-face" suffix from face names.
21687 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
21688 New backward-compatibility aliases for renamed faces.
21689 (gomoku-font-lock-keywords): Use renamed gomoku faces.
21690
21691 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
21692
21693 * thumbs.el: Fixes for changes of 2005-06-09.
21694 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
21695 as a directory.
21696 (thumbs-thumbname): Remove directory separator from format string;
21697 `thumbs-thumbsdir' now returns a valid directory name.
21698 (thumbs-temp-dir): New defsubst.
21699 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
21700 Use it.
21701
21702 * cus-edit.el (minibuffer):
21703 * files.el (make-backup-file-name-function):
21704 * filesets.el (filesets-external-viewers):
21705 * hilit-chg.el (highlight-changes-colours)
21706 (highlight-changes-face-list, highlight-changes-rotate-faces):
21707 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
21708 * kmacro.el (kmacro-call-macro):
21709 * log-edit.el (log-edit-changelog-full-paragraphs):
21710 * mouse.el (mouse-1-click-follows-link):
21711 * skeleton.el (skeleton-autowrap):
21712 * subr.el (insert-for-yank-1):
21713 * tempo.el (tempo-insert-region):
21714 * terminal.el (terminal-emulator):
21715 * time.el (display-time-mail-face):
21716 * vc.el (vc-annotate):
21717 * vcursor.el (vcursor-copy-line):
21718 * woman.el (woman-bold-headings, woman-ignore)
21719 (woman-default-faces, woman-monochrome-faces):
21720 * calendar/todo-mode.el (todo-insert-threshold):
21721 * emulation/pc-select.el (pc-select-selection-keys-only)
21722 (pc-selection-mode):
21723 * emulation/vip.el (vip-find-char-forward):
21724 * emulation/viper-cmd.el (viper-find-char-forward):
21725 * international/mule-cmds.el
21726 (select-safe-coding-system-accept-default-p)
21727 (input-method-exit-on-invalid-key):
21728 * international/mule-diag.el (describe-coding-system):
21729 * international/ucs-tables.el (unify-8859-on-encoding-mode):
21730 * net/browse-url.el (browse-url-xterm-program):
21731 * obsolete/lazy-lock.el (lazy-lock-mode):
21732 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
21733 (cperl-mode):
21734 * progmodes/cpp.el (cpp-face-light-name-list)
21735 (cpp-face-dark-name-list):
21736 * progmodes/delphi.el (delphi-newline-always-indents):
21737 Fix spellings in docstrings.
21738
21739 * ido.el (ido-mode, ido-file-extensions-order)
21740 (ido-default-file-method, ido-default-buffer-method)
21741 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
21742 (ido-decorations, ido-read-file-name-as-directory-commands)
21743 (ido-read-file-name-non-ido, ido-work-directory-list)
21744 (ido-ignore-item-temp-list, ido-current-directory)
21745 (ido-magic-forward-char, ido-enter-find-file)
21746 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
21747 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
21748
21749 2005-06-10 Lute Kamstra <lute@gnu.org>
21750
21751 * play/dunnet.el (dun-mode): Use define-derived-mode.
21752 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
21753 obsolete alias.
21754
21755 * play/doctor.el (doctor-mode-map): Remove defvar.
21756 (doctor-mode): Use define-derived-mode.
21757
21758 * mail/mspools.el (mspools-mode):
21759 * net/eudc-hotlist.el (eudc-hotlist-mode):
21760 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
21761
21762 2005-06-10 Miles Bader <miles@gnu.org>
21763
21764 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
21765 Remove "-face" suffix from face names.
21766 (flyspell-incorrect-face, flyspell-duplicate-face):
21767 New backward-compatibility aliases for renamed faces.
21768 (flyspell-mode-on, make-flyspell-overlay)
21769 (flyspell-highlight-incorrect-region)
21770 (flyspell-highlight-duplicate-region)
21771 (flyspell-display-next-corrections)
21772 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
21773
21774 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
21775 from face name.
21776 (texinfo-heading-face): New backward-compatibility alias for
21777 renamed face.
21778 (texinfo-heading-face): Use renamed texinfo-heading face.
21779
21780 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
21781 suffix from face names.
21782 (tex-math-face, tex-verbatim-face):
21783 New backward-compatibility aliases for renamed faces.
21784 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
21785 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
21786 literal face name.
21787
21788 * textmodes/table.el (table-cell): Remove "-face" suffix from face
21789 name.
21790 (table-cell-face): New backward-compatibility alias for renamed face.
21791 (table--put-cell-face-property, table--update-cell-face):
21792 Use renamed table-cell face.
21793
21794 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
21795 from face name.
21796 (sgml-namespace-face): New backward-compatibility alias for
21797 renamed face.
21798 (sgml-namespace-face): Use renamed sgml-namespace face.
21799
21800 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
21801 (org-level-4, org-level-5, org-level-6, org-level-7)
21802 (org-level-8, org-warning, org-headline-done)
21803 (org-deadline-announce, org-scheduled-today)
21804 (org-scheduled-previously, org-link, org-done, org-table)
21805 (org-time-grid): Remove "-face" suffix from face names.
21806 (org-level-1-face, org-level-2-face, org-level-3-face)
21807 (org-level-4-face, org-level-5-face, org-level-6-face)
21808 (org-level-7-face, org-level-8-face, org-warning-face)
21809 (org-headline-done-face, org-deadline-announce-face)
21810 (org-scheduled-today-face, org-scheduled-previously-face)
21811 (org-link-face, org-done-face, org-table-face)
21812 (org-time-grid-face):
21813 New backward-compatibility aliases for renamed faces.
21814 (org-level-faces, org-set-font-lock-defaults, org-timeline)
21815 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
21816 (org-agenda-get-timestamps, org-agenda-get-scheduled)
21817 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
21818
21819 * emulation/viper-init.el (viper-search, viper-replace-overlay)
21820 (viper-minibuffer-emacs, viper-minibuffer-insert)
21821 (viper-minibuffer-vi): Remove "-face" suffix from face names.
21822 (viper-search-face, viper-replace-overlay-face)
21823 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
21824 (viper-minibuffer-vi-face):
21825 New backward-compatibility aliases for renamed faces.
21826 (viper-search-face, viper-replace-overlay-face)
21827 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
21828 (viper-minibuffer-vi-face): Use renamed viper faces.
21829
21830 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
21831 Remove "-face" suffix from face names.
21832 (testcover-nohits-face, testcover-1value-face):
21833 New backward-compatibility aliases for renamed faces.
21834 (testcover-mark): Use renamed testcover faces.
21835
21836 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
21837 face name.
21838 (diary-button-face): New backward-compatibility alias for renamed face.
21839 (diary-entry): Use renamed diary-button face.
21840
21841 * calendar/calendar.el (diary, calendar-today, holiday)
21842 (mark-visible-calendar-date): Remove "-face" suffix from face names.
21843 (diary-face, calendar-today-face, holiday-face):
21844 New backward-compatibility aliases for renamed faces.
21845 (eval-after-load "facemenu", diary-entry-marker)
21846 (calendar-today-marker, calendar-holiday-marker, diary-face):
21847 Use renamed calendar faces.
21848
21849 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
21850 (compare-windows-face): New backward-compatibility alias for
21851 renamed face.
21852 (compare-windows-highlight): Use renamed compare-windows face.
21853
21854 * strokes.el (strokes-char): Remove "-face" suffix from face name.
21855 (strokes-char-face): New backward-compatibility alias for renamed face.
21856 (strokes-encode-buffer): Use renamed strokes-char face.
21857
21858 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
21859 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
21860 Remove "-face" suffix from face names.
21861 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
21862 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
21863 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
21864 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
21865 Use renamed pcvs faces.
21866 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
21867 * pcvs-defs.el (cvs-mode-map): Likewise.
21868 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
21869
21870 * info.el (info-title-1, info-title-2, info-title-3)
21871 (info-title-4): Remove "-face" suffix from and downcase face names.
21872 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
21873 (Info-title-4-face):
21874 New backward-compatibility aliases for renamed faces.
21875 (Info-fontify-node): Use renamed info faces.
21876
21877 * hilit-chg.el (highlight-changes, highlight-changes-delete):
21878 Remove "-face" suffix from face names.
21879 (highlight-changes-face, highlight-changes-delete-face):
21880 New backward-compatibility aliases for renamed faces.
21881 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
21882 (hilit-chg-make-list): Use renamed highlight-changes faces.
21883
21884 * generic-x.el (show-tabs-tab, show-tabs-space):
21885 Remove "-face" suffix from face names.
21886 (show-tabs-tab-face, show-tabs-space-face):
21887 New backward-compatibility aliases for renamed faces.
21888 (show-tabs-generic-mode-font-lock-defaults-1)
21889 (show-tabs-generic-mode-font-lock-defaults-2):
21890 Use renamed show-tabs faces.
21891
21892 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
21893 (smerge-markers): Remove "-face" suffix from face names.
21894 (smerge-mine-face, smerge-other-face, smerge-base-face)
21895 (smerge-markers-face):
21896 New backward-compatibility aliases for renamed faces.
21897 (smerge-mine-face, smerge-other-face, smerge-base-face)
21898 (smerge-markers-face): Use renamed smerge faces.
21899
21900 * log-view.el (log-view-file, log-view-message): Remove "-face"
21901 suffix from face names.
21902 (log-view-file-face, log-view-message-face):
21903 New backward-compatibility aliases for renamed faces.
21904 (log-view-file-face, log-view-message-face): Use renamed log-view
21905 faces.
21906
21907 * paren.el (show-paren-match, show-paren-mismatch):
21908 Remove "-face" suffix from face names.
21909 (show-paren-match-face, show-paren-mismatch-face):
21910 New backward-compatibility aliases for renamed faces.
21911 (show-paren-function): Use renamed show-paren faces.
21912
21913 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
21914 (ruler-mode-margins, ruler-mode-fringes)
21915 (ruler-mode-column-number, ruler-mode-fill-column)
21916 (ruler-mode-comment-column, ruler-mode-goal-column)
21917 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
21918 suffix from face names.
21919 (ruler-mode-default-face, ruler-mode-pad-face)
21920 (ruler-mode-margins-face, ruler-mode-fringes-face)
21921 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
21922 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
21923 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
21924 New backward-compatibility aliases for renamed faces.
21925 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
21926 (ruler-mode-column-number, ruler-mode-fill-column)
21927 (ruler-mode-comment-column, ruler-mode-goal-column)
21928 (ruler-mode-tab-stop, ruler-mode-current-column)
21929 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
21930 faces.
21931
21932 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
21933 face name.
21934 (whitespace-highlight-the-space): Use renamed face.
21935 (whitespace-highlight-face): New backward-compatibility alias for
21936 renamed face.
21937
21938 * woman.el (woman-italic, woman-bold, woman-unknown)
21939 (woman-addition, woman-symbol-face):
21940 Remove "-face" suffix from face names.
21941 (woman-italic-face, woman-bold-face, woman-unknown-face)
21942 (woman-addition-face):
21943 New backward-compatibility aliases for renamed faces.
21944 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
21945 (woman-decode-region, woman-replace-match)
21946 (woman-display-extended-fonts, woman-special-characters)
21947 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
21948 Use renamed woman faces.
21949
21950 * longlines.el (longlines-visible-face): Face removed.
21951
21952 * diff-mode.el (diff-header, diff-file-header, diff-index)
21953 (diff-hunk-header, diff-removed, diff-added, diff-changed)
21954 (diff-function, diff-context, diff-nonexistent): Remove "-face"
21955 suffix from face names.
21956 (diff-header-face, diff-file-header-face, diff-index-face)
21957 (diff-hunk-header-face, diff-removed-face, diff-added-face)
21958 (diff-changed-face, diff-function-face, diff-context-face)
21959 (diff-nonexistent-face): New backward-compatibility aliases for
21960 renamed faces.
21961 (diff-header-face, diff-file-header-face)
21962 (diff-index, diff-index-face, diff-hunk-header)
21963 (diff-hunk-header-face, diff-removed, diff-removed-face)
21964 (diff-added, diff-added-face, diff-changed-face, diff-function)
21965 (diff-function-face, diff-context-face, diff-nonexistent)
21966 (diff-nonexistent-face): Use renamed diff-mode faces.
21967
21968 * progmodes/compile.el (compilation-warning-face)
21969 (compilation-info-face): Remove "-face" suffix from face names.
21970 (compilation-warning-face, compilation-info-face):
21971 New backward-compatibility aliases for renamed faces.
21972 (compilation-warning-face, compilation-info-face):
21973 Use renamed compilation faces.
21974
21975 * add-log.el (change-log-date, change-log-name)
21976 (change-log-email, change-log-file, change-log-list)
21977 (change-log-conditionals, change-log-function)
21978 (change-log-acknowledgement): Remove "-face" suffix from face names.
21979 (change-log-date-face, change-log-name-face)
21980 (change-log-email-face, change-log-file-face)
21981 (change-log-list-face, change-log-conditionals-face)
21982 (change-log-function-face, change-log-acknowledgement-face):
21983 New backward-compatibility aliases for renamed faces.
21984 (change-log-font-lock-keywords): Use renamed change-log faces.
21985
21986 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
21987 (custom-set, custom-changed, custom-saved, custom-button)
21988 (custom-button-pressed, custom-documentation, custom-state)
21989 (custom-comment, custom-comment-tag, custom-variable-tag)
21990 (custom-variable-button, custom-face-tag, custom-group-tag-1)
21991 (custom-group-tag): Remove "-face" suffix from face names.
21992 (custom-magic-alist, custom-magic-value-create)
21993 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
21994 (custom-invalid-face, custom-rogue-face, custom-modified-face)
21995 (custom-set-face, custom-changed-face, custom-saved-face)
21996 (custom-button-face, custom-button-pressed-face)
21997 (custom-documentation-face, custom-state-face)
21998 (custom-comment-face, custom-comment-tag-face)
21999 (custom-variable-tag-face, custom-variable-button-face)
22000 (custom-face-tag-face, custom-group-tag-face-1)
22001 (custom-group-tag-face):
22002 New backward-compatibility aliases for renamed faces.
22003
22004 * wid-edit.el (widget-documentation, widget-button)
22005 (widget-field, widget-single-line-field, widget-inactive)
22006 (widget-button-pressed): "-face" suffix removed from face names.
22007 (widget-documentation-face, widget-button-face)
22008 (widget-field-face, widget-single-line-field-face)
22009 (widget-inactive-face, widget-button-pressed-face):
22010 New backward-compatibility aliases for renamed faces.
22011 (widget-documentation-face, widget-button-face)
22012 (widget-button-pressed-face, widget-specify-field)
22013 (widget-specify-inactive): Use renamed widget faces.
22014
22015 2005-06-10 Kenichi Handa <handa@m17n.org>
22016
22017 * term/x-win.el (x-clipboard-yank): Remove condition-case
22018 wrapping.
22019
22020 2005-06-11 Kenichi Handa <handa@m17n.org>
22021
22022 * add-log.el (change-log-font-lock-keywords): Make the regexp for
22023 date lines stricter.
22024
22025 2005-06-10 Zhang Wei <id.brep@gmail.com>
22026
22027 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
22028 of x-get-selection.
22029
22030 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
22031
22032 * comint.el (comint-mode, comint-snapshot-last-prompt):
22033 * frame.el (frame-current-scroll-bars):
22034 * term.el (term-mode, term-check-proc, term-input-sender)
22035 (term-simple-send, term-extract-string, term-word)
22036 (term-match-partial-filename):
22037 * window.el (window-current-scroll-bars):
22038 * emulation/cua-base.el (cua-normal-cursor-color)
22039 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
22040 (cua-global-mark-cursor-color):
22041 * mail/undigest.el (rmail-forward-separator-regex):
22042 Fix typos in docstrings.
22043
22044 * comint.el (comint-check-proc, make-comint-in-buffer)
22045 (comint-source-default): Doc fixes.
22046
22047 * term.el (term-send-string): Improve argument/docstring consistency.
22048
22049 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
22050
22051 * comint.el (comint-send-input): Bind `inhibit-read-only' around
22052 call to `delete-region'.
22053 (comint-mode-hook): Do not enable Font Lock by default.
22054
22055 2005-06-09 Lute Kamstra <lute@gnu.org>
22056
22057 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
22058 could be void.
22059
22060 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
22061
22062 * emacs-lisp/debug.el (debugger-will-be-back): New var.
22063 (debug): Use it.
22064 (debugger-step-through, debugger-continue, debugger-jump)
22065 (debugger-return-value): Set it when needed.
22066 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
22067 Use inhibit-read-only.
22068
22069 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
22070
22071 * window.el (shrink-window-if-larger-than-buffer)
22072 (window-size-fixed): Fix typo in docstring.
22073
22074 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
22075 thumbnails directory on loading.
22076 (thumbs-conversion-program): Use `eq' to check the system type,
22077 not `equal'.
22078 (thumbs-temp-dir): Initialize to `temporary-file-directory',
22079 not "/tmp". Fix docstring.
22080 (thumbs-thumbsdir): New function to return the thumbnails
22081 directory, creating it if needed.
22082 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
22083 (thumbs-temp-file): Delete variable and make it into a function.
22084 (thumbs-resize-image, thumbs-modify-image): Use it.
22085 (thumbs-kill-buffer): Simplify.
22086 (thumbs-gensym): Defalias or duplicate CL `gensym'.
22087 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
22088 docstrings.
22089
22090 2005-06-09 Kim F. Storm <storm@cua.dk>
22091
22092 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
22093 set-match-data to free markers in match-data.
22094
22095 * replace.el (replace-match-data): Pass RESEAT arg `t' to
22096 match-data to unchain markers in match-data.
22097
22098 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
22099
22100 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
22101 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
22102 unnecessary now.
22103
22104 2005-06-08 Richard M. Stallman <rms@gnu.org>
22105
22106 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
22107 give the variable a doc string that doesn't say don't set it directly.
22108
22109 * textmodes/ispell.el (ispell-check-version):
22110 Use match-string-no-properties.
22111 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
22112 (ispell-buffer-local-words): Likewise.
22113
22114 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
22115 except on terminals with enough colors to really display it.
22116 (makefile-dependency-regex): Delete spurious `bb'.
22117
22118 * faces.el (escape-glyph): Use blue once again in last case.
22119 (no-break-space): Redefine so that it isn't invisible on a tty.
22120
22121 2005-06-08 Kim F. Storm <storm@cua.dk>
22122
22123 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
22124 also when reading directory name.
22125
22126 2005-06-08 Lute Kamstra <lute@gnu.org>
22127
22128 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
22129 (flyspell-mode-line-string): Remove autoload cookie.
22130 (flyspell-mode): Remove defvar.
22131
22132 2005-06-07 Lute Kamstra <lute@gnu.org>
22133
22134 * textmodes/org.el (org-run-mode-hooks): New function.
22135 (org-agenda-mode): Use it.
22136
22137 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
22138
22139 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
22140
22141 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
22142
22143 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
22144
22145 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
22146
22147 * font-lock.el (font-lock-add-keywords): Doc fix.
22148
22149 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
22150
22151 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
22152 (tex-compile-default): In the absence of any history, use the order in
22153 tex-compile-alist to choose the preferred command.
22154 (tex-compile-commands): Reorder a bit.
22155
22156 * textmodes/flyspell.el (flyspell-auto-correct-binding)
22157 (flyspell-incorrect-face, flyspell-duplicate-face):
22158 Use (X)Emacs-agnostic code.
22159 (flyspell-mode-map): Don't overwrite at each load. Remove code
22160 redundant with the subsequent add-minor-mode. Merge Emacs and
22161 XEmacs code.
22162 (flyspell-word): Minor simplification.
22163 (flyspell-math-tex-command-p): Quieten the byte-compiler.
22164 (flyspell-external-point-words): Remove unused vars `size' and `start'.
22165 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
22166 Merge the corresponding Emacs code.
22167 (flyspell-correct-word, flyspell-xemacs-popup):
22168 Use flyspell-do-correct.
22169
22170 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
22171 a dedicated window.
22172
22173 * international/latexenc.el (latexenc-find-file-coding-system):
22174 Undo part of last patch, to turn off a compiler warning.
22175
22176 2005-06-06 Juri Linkov <juri@jurta.org>
22177
22178 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
22179 Rename `tmm-inactive-face' to `tmm-inactive'.
22180
22181 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
22182
22183 * iswitchb.el: Rename faces.
22184
22185 2005-06-06 Kim F. Storm <storm@cua.dk>
22186
22187 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
22188 (cua-global-mark): Remove -face suffix from face names.
22189
22190 * emulation/cua-gmrk.el (cua--init-global-mark):
22191 Remove cua-global-mark face setup.
22192
22193 2005-06-06 Richard M. Stallman <rms@gnu.org>
22194
22195 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
22196 just like other allowed characters.
22197 (makefile-match-dependency): Exclude leading and training whitespace
22198 from the range of regexp subexp 1.
22199 (makefile-macroassign-regex): Don't try to match the body,
22200 just the name of the macro being defined.
22201
22202 * info.el (Info-read-node-name-2): New function.
22203 (Info-read-node-name-1): Use that.
22204 Add a completion-base-size-function property.
22205
22206 * simple.el (completion-setup-function): Look for
22207 completion-base-size-function property of minibuffer-completion-table.
22208
22209 * files.el (locate-file-completion): Doc fix.
22210
22211 * printing.el: Don't call pr-update-menus; user must do that.
22212
22213 * emacs-lisp/debug.el (debugger-window): New variable.
22214 (debug): Use debugger-window if it is set and still alive.
22215 Record debugger-window for next entry.
22216
22217 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
22218
22219 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
22220
22221 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
22222 (hack-one-local-variable, hack-local-variables)
22223 (hack-local-variables-prop-line): Pass that arg.
22224
22225 2005-06-06 Kim F. Storm <storm@cua.dk>
22226
22227 * ido.el (ido-first-match, ido-only-match, ido-subdir)
22228 (ido-indicator): Remove -face suffix from face names.
22229
22230 2005-06-06 Juri Linkov <juri@jurta.org>
22231
22232 * font-lock.el (font-lock-regexp-backslash)
22233 (font-lock-regexp-backslash-construct): New faces.
22234 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
22235 after `('. Add `while-no-input' to control structures.
22236
22237 * faces.el (no-break-space, shadow): New faces.
22238 (escape-glyph): Use less loud colors pink2 and red4.
22239
22240 * diff-mode.el (diff-context-face)
22241 * dired.el (dired-ignored)
22242 * rfn-eshadow.el (file-name-shadow)
22243 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
22244
22245 * info.el (Info-title-1-face): Use green instead of yellow because
22246 bold yellow is not readable on light backgrounds.
22247
22248 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
22249 before selecting the desired mode to not spend time fontifying
22250 old contents.
22251
22252 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
22253
22254 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
22255 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
22256
22257 * ps-print.el (ps-default-fg, ps-default-bg):
22258 Fix typos in docstrings.
22259
22260 * isearchb.el (isearchb): Don't pass a spurious second argument to
22261 `iswitchb-completions'.
22262
22263 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
22264
22265 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
22266 to preserve point.
22267 (gdb-find-file-hook): Add doc string.
22268
22269 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
22270 C dereferenced pointer expression.
22271 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
22272
22273 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
22274
22275 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
22276 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
22277 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
22278 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
22279 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
22280 Make background transparent.
22281
22282 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
22283
22284 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
22285 (font-lock-remove-keywords): Doc fix.
22286 (font-lock-mode-major-mode): Compiler defvar.
22287 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
22288
22289 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
22290 (font-lock-mode): Update `font-lock-mode-major-mode'.
22291 (font-lock-set-defaults): Compiler defvar.
22292 (font-lock-default-function): Take `font-lock-mode-major-mode'
22293 into account.
22294
22295 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
22296 keep track of which major mode it enabled the minor mode for.
22297 Use find-file-hook again. Update docstring.
22298
22299 * simple.el (eval-expression-print-level)
22300 (eval-expression-print-length, eval-expression-debug-on-error):
22301 Doc fixes.
22302
22303 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
22304
22305 * iswitchb.el (iswitchb-single-match-face)
22306 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
22307 (iswitchb-invalid-regexp-face): New faces.
22308 (iswitchb-completions): Use them.
22309 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
22310 now marked as an obsolete alias.
22311 (iswitchb-read-buffer): Remove check for bound font variables.
22312 (iswitchb-invalid-regexp): New free variable.
22313 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
22314 set iswitchb-invalid-regexp.
22315 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
22316 invalid regexps.
22317 (iswitchb-completions): Add check for complete match when entering
22318 a regexp.
22319 (iswitchb-completions): Remove require-match argument.
22320 (iswitchb-exhibit): Fix caller.
22321 (iswitchb-common-match-inserted): New variable.
22322 (iswitchb-complete, iswitchb-completion-help): Use it.
22323
22324 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
22325
22326 * url-http.el (url-http-chunked-encoding-after-change-function):
22327 Use `url-http-debug' instead of `message'.
22328
22329 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
22330
22331 * url-http.el (url-http-parse-headers): Pass redirected URL as a
22332 callback argument.
22333
22334 2005-06-04 Kim F. Storm <storm@cua.dk>
22335
22336 * simple.el (line-move): Only call sit-for when moving backwards.
22337
22338 * ido.el (ido-make-merged-file-list-1): New defun split from
22339 ido-make-merged-file-list.
22340 (ido-make-merged-file-list): Bind throw-on-input around call to
22341 ido-make-merged-file-list-1. Return input-pending-p if
22342 interrupted by more input available.
22343 (ido-read-internal): Handle input-pending-p return value from
22344 ido-make-merged-file-list.
22345
22346 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
22347
22348 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
22349 compatibility code.
22350
22351 * international/latexenc.el (latexenc-find-file-coding-system):
22352 Don't inherit the EOL part of the coding-system from the
22353 tex-main buffer. Fit within 80 columns.
22354
22355 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
22356
22357 * tmm.el (tmm-inactive-face): New face.
22358 (tmm-remove-inactive-mouse-face): New function.
22359 (tmm-prompt, tmm-add-one-shortcut)
22360 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
22361 but not selectable.
22362
22363 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
22364
22365 * faces.el (face-equal): Improve argument/docstring consistency.
22366
22367 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
22368
22369 * progmodes/make-mode.el (makefile-targets-face)
22370 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
22371 (makefile-bsdmake-dependency-regex)
22372 (makefile-makepp-rule-action-regex)
22373 (makefile-bsdmake-rule-action-regex): New constants.
22374 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
22375
22376 * progmodes/compile.el (compilation-error-regexp-alist-alist):
22377 Allow (...) within `...' for makepp messages.
22378
22379 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
22380
22381 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
22382
22383 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
22384 "." files are deleted from all file lists before comparison.
22385
22386 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
22387 (viper-ESC-key): Made them customizable.
22388
22389 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
22390
22391 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
22392
22393 * autorevert.el (auto-revert-buffers): Use save-match-data.
22394
22395 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22396
22397 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
22398 menu items with a nil command binding.
22399
22400 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
22401
22402 * emacs-lisp/cl-macs.el (defsetf):
22403 Improve argument/docstring consistency.
22404
22405 * faces.el (list-faces-display): Improve the formatting by
22406 computing the maximum length required for any face-name (reworked
22407 patch of 1999-01-11, accidentally deleted on 1999-07-21).
22408 (internal-find-face): Remove redundant info in docstring.
22409
22410 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
22411
22412 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
22413 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
22414 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
22415 (gdb-assembler-custom): Improve regexps.
22416 (def-gdb-auto-update-handler): Use window point to preserve point.
22417
22418 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22419
22420 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
22421
22422 2005-05-31 Jay Belanger <belanger@truman.edu>
22423
22424 * calc/calc-embed.el (calc-embedded-word): Change argument passed
22425 to calc-embedded.
22426 (calc-embedded-make-info): Have plain prefix argument select
22427 entire line.
22428
22429 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
22430
22431 * faces.el (list-faces-display): Signal error if passed a regexp
22432 that matches no face name.
22433
22434 * simple.el (filter-buffer-substring): Fix typo in docstring.
22435
22436 2005-05-31 Richard M. Stallman <rms@gnu.org>
22437
22438 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
22439 (vhdl-emacs-21): Doc fix.
22440 (vhdl-mode): Unconditionally set comment-padding.
22441 (vhdl-fixup-whitespace-region): Insert spaces only where
22442 there are none.
22443 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
22444
22445 2005-05-30 John Wiegley <johnw@newartisans.com>
22446
22447 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
22448 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
22449 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
22450 `directory-sep-char' to ?/, and all uses of `string-to-int' to
22451 `string-to-number'.
22452
22453 2005-05-30 Jay Belanger <belanger@truman.edu>
22454
22455 * calc/calc.el (calc-bug-address): Fix docstring.
22456 (calc-window-hook, calc-trail-window-hook): New variables.
22457 (calc-trail-display): Restore use of calc-trail-window-hook.
22458 (calc): Restore use of calc-window-hook.
22459
22460 2005-05-31 Masatake YAMATO <jet@gyve.org>
22461
22462 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
22463
22464 * help-fns.el (help-C-file-name): Add autoload mark for
22465 `find-function-noselect'.
22466
22467 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
22468
22469 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
22470 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
22471
22472 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
22473
22474 * calendar/diary-lib.el (mark-included-diary-files): Only kill
22475 included diary buffer if it was not already being visited.
22476 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
22477
22478 * calendar/icalendar.el (top-level): Do not require appt.
22479
22480 * mail/supercite.el (sc-select-attribution): Only use a list
22481 element from sc-attrib-selection-list if it returns a string.
22482 Reported by Davide G. M. Salvetti <salve@debian.org>.
22483
22484 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
22485
22486 * thumbs.el (thumbs-thumbname): The resulting thumbname now
22487 includes a hash value to improve its uniqueness, and has a ".jpg"
22488 extension. Also, it is now a valid filename on all systems.
22489 (thumbs-make-thumb): Use `let', not `let*'.
22490 (thumbs-show-thumbs-list): Check for JPEG availability.
22491
22492 2005-05-30 Richard M. Stallman <rms@gnu.org>
22493
22494 * filesets.el (filesets-menu-ensure-use-cached):
22495 Prevent warning when emacs-version>= is undefined.
22496
22497 * printing.el (pr-interactive-n-up): Use string-to-number.
22498
22499 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
22500
22501 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
22502 Warn only when name to be defined is quoted.
22503
22504 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
22505
22506 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
22507 Make regexp more robust.
22508 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
22509 Force regeneration of disassembly.
22510
22511 2005-05-29 Jay Belanger <belanger@truman.edu>
22512
22513 * calc/calc.el (calc-user-invocation): Check if
22514 calc-invocation-macro is non-nil.
22515
22516 2005-05-29 Juri Linkov <juri@jurta.org>
22517
22518 * add-log.el (change-log-font-lock-keywords):
22519 Add `+' to e-mail regexp to accept mail address with keywords.
22520
22521 * man.el (Man-name-regexp): Add `:' to accept qualified names.
22522
22523 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
22524
22525 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
22526
22527 * ielm.el (inferior-emacs-lisp-mode): Ditto.
22528
22529 2005-05-29 Richard M. Stallman <rms@gnu.org>
22530
22531 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
22532 Undo the change that moves to end of the current word.
22533
22534 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
22535
22536 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
22537 Throw error when count <= 0 to ensure input is a number.
22538 (gdb-read-memory-custom): Pick up address from buffer.
22539 (gdb-memory-mode): Allow user to increment and decrement
22540 memory address from header line.
22541
22542 2005-05-29 Richard M. Stallman <rms@gnu.org>
22543
22544 * flyspell.el (flyspell-version): Function deleted.
22545 (flyspell-auto-correct-previous-hook): Doc fix.
22546
22547 * jit-lock.el (jit-lock-function, jit-lock-after-change):
22548 Do nothing if memory is full.
22549
22550 * font-lock.el (font-lock-fontify-syntactically-region):
22551 Pass t for GREEDY to looking-back.
22552
22553 * saveplace.el (save-place-alist-to-file): Write the file
22554 using write-region.
22555
22556 * subr.el (looking-back): New argument GREEDY.
22557
22558 * progmodes/compile.el (compilation-start): Set the mode
22559 before inserting the initial text.
22560
22561 * progmodes/which-func.el (which-func-update-1): Turn the mode
22562 off in case of error by setting which-func-mode.
22563
22564 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
22565
22566 * flyspell.el (flyspell-auto-correct-previous-word):
22567 Narrow down to what's on the screen, and recenter overlays
22568 at the end of the next word.
22569
22570 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
22571
22572 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
22573 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
22574 (flyspell-abbrev-p): Default to nil.
22575 (flyspell-use-global-abbrev-table-p): Doc fix.
22576 (flyspell-large-region): Allow nil as value.
22577 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
22578
22579 (mail-mode-flyspell-verify): More robust handling
22580 of `mail-header-separator'. More efficient signature detection.
22581 Allow for regexp metacharacters in message-header-separator.
22582 Adding `To' not to be checked in mail-mode-flyspell-verify.
22583
22584 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
22585 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
22586 Bind flyspell-auto-correct-binding.
22587 Bind C-. and C-, .
22588 (flyspell-mode-map): Likewise.
22589 (flyspell-mode): Doc fix.
22590 (flyspell-accept-buffer-local-defs): Preserve current buffer.
22591 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
22592 (flyspell-word-cache-result): New var, always local.
22593 (flyspell-check-pre-word-p): Doc fix.
22594 (flyspell-check-changed-word-p): Handle spc like newline.
22595 (flyspell-post-command-hook): Set flyspell-word-cache-result.
22596 (flyspell-word-search-backward, flyspell-word-search-forward):
22597 New functions.
22598 (flyspell-word): Return t if nothing to check.
22599 When parsing TeX code, check for after } or \.
22600 Use flyspell-word-search-backward to find previous word.
22601 Return nil if duplicated word.
22602 For word already checked, return same value as last time.
22603 Set flyspell-word-cache-result after checking.
22604 Don't clobber the return value.
22605 (flyspell-get-word): Major rewrite.
22606 (flyspell-external-point-words): New locals pword, pcount.
22607 Fix size used in progress message.
22608 Find the proper corresponding word in flyspell-large-region-buffer.
22609 (flyspell-region): Check for flyspell-large-region = nil.
22610 (flyspell-highlight-incorrect-region): Clean up overlays in region.
22611 (flyspell-auto-correct-word): Check that WORD is a cons.
22612 (flyspell-correct-word): Likewise.
22613
22614 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
22615
22616 * progmodes/make-mode.el (makefile-rule-action-regex)
22617 (makefile-macroassign-regex, makefile-makepp-mode)
22618 (makefile-bsdmake-mode): Continuation lines may be empty.
22619 Reported by Joshua Varner.
22620 (makefile-makepp-font-lock-keywords): Add $(stem).
22621
22622 2005-05-28 Karl Berry <karl@gnu.org>
22623
22624 * textmodes/tex-mode.el: Now that tex-send-command calls
22625 shell-quote-argument (2005-03-31 change), remove all calls to
22626 shell-quote-argument; they all end up invoking tex-send-command.
22627 The double quoting loses on filenames with non-safe characters,
22628 such as "@". Reported by Frederik Fouvry.
22629
22630 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
22631
22632 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
22633 about preserving point.
22634
22635 2005-05-27 Jay Belanger <belanger@truman.edu>
22636
22637 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
22638 Info-goto-node.
22639
22640 * calc/calc-embed.el (calc-embed-arg): New variable.
22641 (calc-do-embedded-activate, calc-embedded-activate-formula)
22642 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
22643 variable by new variable.
22644 (calc-embedded-make-info): Replace undeclared variable by new
22645 variable. When selecting region with positive prefix
22646 argument, use end of previous line instead of beginning of line.
22647
22648 * calc/calc-aent.el (calc-arg-values): Declare it.
22649
22650 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
22651 Declare them.
22652
22653 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
22654
22655 * calc/calc.el (calc-alg-map): Declare it.
22656
22657 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
22658
22659 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
22660
22661 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
22662 (gdb-registers-buffer, toggle-gdb-all-registers):
22663 Toggle display of floating point registers.
22664 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
22665
22666 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
22667 (toggle-gud-tooltip-dereference):
22668 Rename from gud-toggle-tooltip-dereference.
22669
22670 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
22671
22672 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
22673
22674 2005-05-27 Jay Belanger <belanger@truman.edu>
22675
22676 * calc/calc-prog.el (calc-kbd-report): Remove.
22677 (calc-kbd-query): Rewrite.
22678
22679 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
22680
22681 * image.el (image-library-alist): Move to image.c.
22682 (image-type-available-p): Doc fix.
22683
22684 2005-05-27 Lute Kamstra <lute@gnu.org>
22685
22686 * calc/calc.el (calc):
22687 * outline.el (outline-1, outline-2, outline-3, outline-4)
22688 (outline-5, outline-6, outline-7, outline-8):
22689 * textmodes/dns-mode.el (dns-mode):
22690 * textmodes/sgml-mode.el (sgml-namespace-face):
22691 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
22692 (tex-verbatim-face, tex-use-reftex):
22693 * textmodes/texinfo.el (texinfo-heading-face):
22694 Specify customization group.
22695
22696 * longlines.el: Don't require easy-mmode.
22697 (longlines-visible-face): Specify customization group.
22698
22699 2005-05-27 Kenichi Handa <handa@m17n.org>
22700
22701 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
22702 encoding table of windows-1251.
22703
22704 * international/ucs-tables.el (ucs-set-table-for-input):
22705 If translation-table-for-input of a coding system is a symbol, get
22706 its translation-table property.
22707
22708 * international/code-pages.el: Don't register a coding system into
22709 non-iso-charset-alist more than once.
22710 (cp-make-coding-system): Likewise.
22711
22712 2005-05-26 John Wiegley <johnw@newartisans.com>
22713
22714 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
22715 `eshell-resume-eval' is wrapped in a list, it indicates that the
22716 command was run asynchronously. In that case, unwrap the value
22717 before checking the delimiter value.
22718
22719 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
22720 character before a space at the end of a line is \, assume the space
22721 is part of the last argument rather than a final argument separator.
22722
22723 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
22724 is in use, and the target is `t' or `nil' (which are the most common
22725 values), don't assume that the symbol target is a buffer.
22726
22727 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
22728
22729 * calendar/calendar.el (calendar-mode-line-format):
22730 Use mode-line-highlight as mouse-face.
22731
22732 * time.el (display-time-string-forms, display-time-update):
22733 Use mode-line-highlight as mouse-face.
22734
22735 2005-05-26 Jay Belanger <belanger@truman.edu>
22736
22737 * calc/calc.el (calc-language-alist): Remove extra defvar.
22738
22739 2005-05-26 Lute Kamstra <lute@gnu.org>
22740
22741 * arc-mode.el (archive-mode):
22742 * bookmark.el (bookmark-read-annotation-mode)
22743 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
22744 * bs.el (bs-mode):
22745 * calc/calc-yank.el (calc-edit-mode):
22746 * calc/calc.el (calc-mode, calc-trail-mode):
22747 * calculator.el (calculator-mode):
22748 * chistory.el (command-history-mode):
22749 * comint.el:
22750 * cus-edit.el (custom-mode):
22751 * descr-text.el (describe-text-mode):
22752 * ebuff-menu.el (Electric-buffer-menu-mode):
22753 * ediff-util.el (ediff-mode):
22754 * emacs-lisp/re-builder.el (reb-mode):
22755 * emulation/vi.el (vi-mode-setup):
22756 * emulation/ws-mode.el (wordstar-mode):
22757 * eshell/esh-mode.el (eshell-mode):
22758 * forms.el (forms-mode):
22759 * help-mode.el (help-mode):
22760 * hexl.el (hexl-mode):
22761 * ibuffer.el (ibuffer-mode):
22762 * ielm.el (inferior-emacs-lisp-mode):
22763 * info.el (Info-mode, Info-edit-mode):
22764 * international/swedish.el:
22765 * ledit.el (ledit-from-lisp-mode):
22766 * locate.el (locate-mode):
22767 * mail/rmail.el (rmail-mode):
22768 * mail/rmailedit.el (rmail-edit-mode):
22769 * mail/rmailsum.el (rmail-summary-mode):
22770 * mail/supercite.el (sc-electric-mode):
22771 * net/eudc.el (eudc-mode):
22772 * net/quickurl.el (quickurl-list-mode):
22773 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
22774 * obsolete/ooutline.el (outline-mode):
22775 * obsolete/options.el (Edit-options-mode):
22776 * obsolete/rnews.el (news-mode):
22777 * obsolete/rnewspost.el (news-reply-mode):
22778 * play/5x5.el (5x5-mode):
22779 * play/decipher.el (decipher-mode, decipher-stats-mode):
22780 * play/gomoku.el (gomoku-mode):
22781 * play/snake.el (snake-mode):
22782 * play/solitaire.el (solitaire-mode):
22783 * play/tetris.el (tetris-mode):
22784 * progmodes/ada-mode.el (ada-mode):
22785 * progmodes/antlr-mode.el (antlr-mode):
22786 * progmodes/autoconf.el (autoconf-mode):
22787 * progmodes/dcl-mode.el (dcl-mode):
22788 * progmodes/delphi.el (delphi-mode):
22789 * progmodes/ebrowse.el (ebrowse-tree-mode)
22790 (ebrowse-electric-list-mode, ebrowse-member-mode)
22791 (ebrowse-electric-position-mode):
22792 * progmodes/f90.el (f90-mode):
22793 * progmodes/fortran.el (fortran-mode):
22794 * progmodes/icon.el (icon-mode):
22795 * progmodes/idlw-help.el (idlwave-help-mode):
22796 * progmodes/idlw-shell.el (idlwave-shell-mode):
22797 * progmodes/idlwave.el (idlwave-mode):
22798 * progmodes/inf-lisp.el (inferior-lisp-mode):
22799 * progmodes/m4-mode.el (m4-mode):
22800 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
22801 * progmodes/modula2.el (modula-2-mode):
22802 * progmodes/octave-inf.el (inferior-octave-mode):
22803 * progmodes/octave-mod.el (octave-mode):
22804 * progmodes/pascal.el (pascal-mode):
22805 * progmodes/sh-script.el (sh-mode):
22806 * progmodes/sql.el (sql-mode, sql-interactive-mode):
22807 * progmodes/vhdl-mode.el (vhdl-mode):
22808 * progmodes/xscheme.el (scheme-interaction-mode):
22809 * replace.el (occur-mode):
22810 * ses.el (ses-mode):
22811 * simple.el (completion-list-mode):
22812 * skeleton.el:
22813 * speedbar.el (speedbar-mode):
22814 * term.el (term-mode):
22815 * terminal.el (terminal-edit-mode):
22816 * textmodes/reftex-index.el (reftex-index-mode)
22817 (reftex-index-phrases-mode):
22818 * textmodes/reftex-sel.el (reftex-select-label-mode)
22819 (reftex-select-bib-mode):
22820 * textmodes/reftex-toc.el (reftex-toc-mode):
22821 * wdired.el (wdired-change-to-wdired-mode):
22822 * wid-browse.el (widget-browse-mode):
22823 Use run-mode-hooks.
22824
22825 * array.el (array-mode):
22826 * calendar/todo-mode.el (todo-mode):
22827 * man.el (Man-mode):
22828 * play/landmark.el (lm-mode):
22829 * play/mpuz.el (mpuz-mode):
22830 Use kill-all-local-variables and run-mode-hooks.
22831
22832 * subr.el (delay-mode-hooks): Specify indentation.
22833
22834 2005-05-26 Mark A. Hershberger <mah@everybody.org>
22835
22836 * xml.el (xml-substitute-special): Don't die for undefined xml
22837 entities.
22838
22839 2005-05-26 Jay Belanger <belanger@truman.edu>
22840
22841 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
22842 of nil.
22843
22844 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
22845
22846 * progmodes/gdb-ui.el (gdb-frame-address):
22847 Rename from gdb-current-address.
22848 (gdb-previous-frame-address): Rename from gdb-previous-address.
22849 (gdb-selected-frame): Rename from gdb-current-frame.
22850 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
22851 (gdb-frame-number): Rename from gdb-current-stack-level.
22852 (gdb-ann3): Match new mode-name for disassembly buffer.
22853 Extend initialization of variables.
22854 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
22855 (gdb-memory-mode): Use mouse-face in header line.
22856 (gdb-assembler-buffer-name): Call it disassembly and give frame
22857 in mode line.
22858 (gdb-source-spec-regexp, gdb-assembler-custom)
22859 (gdb-invalidate-assembler, gdb-frame-handler):
22860 Make robust to leading zeroes in address format.
22861
22862 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
22863
22864 * textmodes/org.el (org-mode): Use `define-derived-mode' to
22865 define `org-mode'.
22866 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
22867
22868 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
22869
22870 * log-edit.el (log-edit-changelog-entries): Distinguish between
22871 filenames like xfns.c and fns.c.
22872
22873 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
22874
22875 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
22876 point after reverting.
22877 (Buffer-menu-make-sort-button): Handle the case where
22878 `Buffer-menu-use-header-line' is nil.
22879
22880 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
22881
22882 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
22883 New funcs. In minibuffer-local-completion-map bind `]', `/'
22884 and `:' to them.
22885
22886 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
22887
22888 * startup.el (normal-top-level): Allow modification of load-path while
22889 we're iterating over it.
22890
22891 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
22892
22893 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
22894 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
22895 (thumbs-resize-interactive, thumbs-insert-image)
22896 (thumbs-insert-thumb, thumbs-dired-show-marked)
22897 (thumbs-find-image-at-point, thumbs-delete-images)
22898 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
22899 (thumbs-increment-image-size, thumbs-decrement-image-size):
22900 Fix typos in docstrings.
22901
22902 2005-05-24 Andre Spiegel <spiegel@gnu.org>
22903
22904 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
22905 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
22906 (cperl-mode): Use them.
22907
22908 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
22909
22910 * window.el (quit-window, shrink-window-if-larger-than-buffer):
22911 Doc fixes.
22912
22913 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
22914
22915 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
22916 Bind C-d to gdb-inferior-io-eof.
22917
22918 * dired.el (dired-dnd-popup-notice): Use message-box.
22919
22920 2005-05-23 Masatake YAMATO <jet@gyve.org>
22921
22922 * bindings.el (mode-line-major-mode-keymap):
22923 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
22924
22925 * faces.el (mode-line-highlight): New face.
22926
22927 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
22928 as mouse-face.
22929
22930 * bindings.el (top-level, help-echo, mode-line-modified)
22931 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
22932 as mouse-face.
22933
22934 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
22935
22936 * progmodes/cc-engine.el (c-guess-basic-syntax):
22937 Remove spurious call to `zerop'.
22938
22939 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
22940
22941 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
22942
22943 CC Mode update to 5.30.10:
22944
22945 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
22946 could go past the limit in decoration level 2, thereby causing
22947 errors during interactive fontification.
22948
22949 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
22950 the file is evaluated interactively.
22951
22952 * cc-engine.el (c-guess-basic-syntax): Handle operator
22953 declarations somewhat better in C++.
22954
22955 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
22956 make use of `run-mode-hooks' which has been added in Emacs 21.1.
22957 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
22958 (awk-mode): Use it.
22959 (make-local-hook): Suppress warning about obsoleteness.
22960
22961 * cc-engine.el, cc-align.el, cc-cmds.el
22962 (c-append-backslashes-forward, c-delete-backslashes-forward)
22963 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
22964 Compensate for return value from `forward-line' when it has moved
22965 but not to a different line due to eob.
22966
22967 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
22968 `objc-method-intro' and `objc-method-args-cont'.
22969
22970 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
22971
22972 CC Mode update to 5.30.10:
22973
22974 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
22975 in the copyright statement. Incidentally, change "along with GNU
22976 Emacs" to "along with this program" where it occurs.
22977
22978 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
22979 so that it is interactive, hence can be found by M-x awk-mode
22980 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
22981 <gmorris+emacs@ast.cam.ac.uk>.
22982
22983 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
22984 Mode's regexps.
22985
22986 2005-05-23 Kevin Ryde <user42@zip.com.au>
22987
22988 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
22989 c-parse-state, to avoid a lisp error (on bad code).
22990
22991 2005-05-23 Lute Kamstra <lute@gnu.org>
22992
22993 * subr.el (font-lock-defaults): Remove defvar as it's already
22994 defined in font-core.el.
22995
22996 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
22997
22998 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
22999
23000 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
23001 more general and work when GDB variable "print pretty" is on,
23002 as with Emacs, for example.
23003
23004 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
23005
23006 * font-core.el: Update comment.
23007
23008 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
23009 Use `after-change-major-mode-hook' instead of `find-file-hook'.
23010
23011 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
23012
23013 2005-05-22 Eli Zaretskii <eliz@gnu.org>
23014
23015 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
23016 and `yank-handler' in the doc strings.
23017
23018 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
23019
23020 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
23021
23022 2005-05-22 Richard M. Stallman <rms@gnu.org>
23023
23024 * help.el (describe-key): Move print-help-return-message call
23025 out of conditional.
23026
23027 * progmodes/etags.el (list-tags): Use with-no-warnings.
23028
23029 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
23030 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
23031 (starttls-extra-args, starttls-extra-arguments): Add defvars.
23032
23033 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
23034
23035 * language/viet-util.el (viet-viscii-nonascii-translation-table):
23036 Add defvar.
23037
23038 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
23039 Use defvar, not defconst.
23040
23041 * hexl.el (hexl-follow-line): Use with-no-warnings.
23042
23043 * emulation/tpu-extras.el: Use write-file-functions instead of
23044 write-file-hooks.
23045
23046 * dired.el (dired-font-lock-keywords): Fontify files with junk
23047 extensions even if marked by -F.
23048
23049 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
23050
23051 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
23052 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
23053 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
23054 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
23055 (concatenate, list-length, get*, getf, cl-remprop):
23056 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
23057 (etypecase, progv, lexical-let, lexical-let*)
23058 (multiple-value-bind, multiple-value-setq, shiftf):
23059 Improve argument/docstring consistency.
23060
23061 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
23062
23063 2005-05-22 Andre Spiegel <spiegel@gnu.org>
23064
23065 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
23066 doesn't exist.
23067
23068 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
23069 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
23070
23071 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
23072
23073 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
23074 already deleted variables: auto-fill-hook, blink-paren-hook,
23075 lisp-indent-hook, inhibit-local-variables, unread-command-event,
23076 suspend-hooks, comment-indent-hook, meta-flag,
23077 before-change-function, after-change-function,
23078 font-lock-doc-string-face.
23079
23080 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
23081
23082 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
23083
23084 2005-05-21 Eli Zaretskii <eliz@gnu.org>
23085
23086 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
23087 rmail-dont-reply-to.
23088
23089 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
23090
23091 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
23092 literal blank when splitting new-header-values.
23093
23094 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
23095
23096 * calendar/cal-menu.el (cal-menu-update): Add separator as a
23097 string so that tmm doesn't create a completion entry for it.
23098
23099 * textmodes/table.el (table-disable-menu): Ditto.
23100
23101 2005-05-21 Richard M. Stallman <rms@gnu.org>
23102
23103 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
23104
23105 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
23106
23107 * net/rcompile.el (remote-compile): Use compilation-start.
23108
23109 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
23110
23111 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
23112
23113 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
23114 Default to makefile-bsdmake-mode on BSD systems.
23115
23116 * imenu.el (imenu-generic-expression, imenu--generic-function'):
23117 REGEXP may also be a search function now. The part of doc-string
23118 for describing the structure was 95% identical to that of
23119 `imenu--generic-function'. Unify it there.
23120
23121 * progmodes/make-mode.el (makefile-imenu-generic-expression):
23122 Use function to find dependencies, because regexp alone is so complex,
23123 it easily goes into an endless loop.
23124 (makefile-makepp-mode): Also add submenu for Perl functions
23125 defined in the makefile.
23126 (makefile-bsdmake-mode): Special imenu-generic-expression no
23127 longer needed, due to function call.
23128 (makefile-match-dependency): Take BOUND into account when checking
23129 if we're through.
23130
23131 2005-05-20 Jay Belanger <belanger@truman.edu>
23132
23133 * calc/calc-units.el (calc-invalidate-units-table):
23134 Use inhibit-read-only.
23135 (math-build-units-table-buffer): Use view-mode.
23136
23137 2005-05-20 David Kastrup <dak@gnu.org>
23138
23139 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
23140 easy-menu-add is not a nop on Emacs; and clarify when to call it.
23141
23142 2005-05-20 Lute Kamstra <lute@gnu.org>
23143
23144 * diff-mode.el (diff-header-face, diff-file-header-face)
23145 (diff-index-face, diff-hunk-header-face, diff-removed-face)
23146 (diff-added-face, diff-changed-face, diff-function-face)
23147 (diff-context-face, diff-nonexistent-face): Put them in the
23148 diff-mode customization group.
23149
23150 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
23151
23152 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
23153
23154 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
23155
23156 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
23157 Minor regexp-optimization.
23158
23159 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
23160
23161 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
23162 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
23163 (org-agenda-add-time-grid-maybe): New function.
23164 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
23165 (org-table-create): `dotimes' instead of `mapcar'.
23166 (org-xor): Simplify implementation.
23167 (org-agenda): `inhibit-redisplay' turned on.
23168 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
23169 a consistent line after a state change.
23170 (org-agenda-remove-times-when-in-prefix): New option.
23171 (org-prefix-has-time): New variable.
23172 (org-parse-time-string): Optional argument NODEFAULT.
23173 (org-format-agenda-item): Parse items for time-of-day
23174 specifications and move these into the prefix if possible.
23175 (org-agenda-priority): Get current heading, not previous heading
23176 during agenda remote editing.
23177
23178 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
23179
23180 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
23181 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
23182 (remove-duplicates, delete-duplicates, substitute)
23183 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
23184 (nsubstitute-if-not, find, find-if, find-if-not, position)
23185 (position-if, position-if-not, count, count-if, count-if-not)
23186 (mismatch, search, sort*, stable-sort, merge, member*)
23187 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
23188 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
23189 (intersection, nintersection, set-difference, nset-difference)
23190 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
23191 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
23192 (nsublis, tree-equal): Improve argument/docstring consistency.
23193
23194 * subr.el (send-string, send-region): Remove obsolescence declaration.
23195 (window-dot, set-window-dot, read-input, show-buffer)
23196 (eval-current-buffer, string-to-int):
23197 Add release number to obsolescence declarations.
23198
23199 2005-05-19 Kim F. Storm <storm@cua.dk>
23200
23201 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
23202 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
23203
23204 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
23205
23206 * faces.el (list-faces-display): Make back button respect optional
23207 regexp arg.
23208
23209 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
23210
23211 * calculator.el (calculator-radix-grouping-mode)
23212 (calculator-radix-grouping-digits, calculator-displayer)
23213 (calculator-radix-grouping-separator, calculator-copy-displayer):
23214 * dabbrev.el (dabbrev-search-these-buffers-only):
23215 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
23216 (diff-advance-after-apply-hunk, diff-mode-hook)
23217 (diff-minor-mode-prefix):
23218 * imenu.el (imenu-use-popup-menu):
23219 * jit-lock.el (jit-lock-context-time):
23220 * newcomment.el (comment-fill-column, comment-column)
23221 (comment-style, comment-padding, comment-multi-line)
23222 (comment-empty-lines, comment-auto-fill-only-comments):
23223 * reveal.el (reveal-around-mark):
23224 * uniquify.el (uniquify-buffer-name-style)
23225 (uniquify-after-kill-buffer-p)
23226 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
23227 (uniquify-min-dir-content, uniquify-separator)
23228 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
23229 * w32-vars.el (w32-fixed-font-alist):
23230 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
23231 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
23232 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
23233 * progmodes/perl-mode.el (perl-indent-level)
23234 (perl-continued-statement-offset, perl-continued-brace-offset)
23235 (perl-brace-offset, perl-brace-imaginary-offset)
23236 (perl-label-offset, perl-indent-continued-arguments)
23237 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
23238 * progmodes/tcl.el (tcl-indent-level)
23239 (tcl-continued-indent-level, tcl-auto-newline)
23240 (tcl-tab-always-indent, tcl-electric-hash-style)
23241 (tcl-help-directory-list, tcl-use-smart-word-finder)
23242 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
23243 (inferior-tcl-source-command):
23244 * textmodes/fill.el (enable-kinsoku):
23245 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
23246 * textmodes/table.el (table-yank-handler):
23247 Specify missing group (and type, if simple) in defcustom.
23248
23249 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
23250
23251 * progmodes/compile.el (compilation-finish-function): Fix defvar.
23252
23253 2005-05-19 Richard M. Stallman <rms@gnu.org>
23254
23255 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
23256
23257 * subr.el (event-basic-type): Don't get an error.
23258 (left-fringe-p): Function deleted.
23259
23260 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
23261 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
23262
23263 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
23264 in recursive copy.
23265
23266 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
23267
23268 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
23269
23270 * emacs-lisp/bytecomp.el
23271 (byte-compile-file-form-custom-declare-variable):
23272 Call byte-compile-nogroup-warn if appropriate.
23273
23274 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
23275 (compilation-set-window): Don't call left-fringe-p; do it directly.
23276
23277 2005-05-19 Jay Belanger <belanger@truman.edu>
23278
23279 * calc/calc-graph.el (calc-graph-format-data): Make sure
23280 var-PlotRejects is bound before trying to check its value.
23281
23282 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
23283
23284 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
23285 definition of this variable from reftex-global.el to reftex.el,
23286 because it is needed in the menu.
23287
23288 2005-05-19 Lute Kamstra <lute@gnu.org>
23289
23290 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
23291 years are fixed. Don't insert a space after a dash.
23292
23293 2005-05-19 Kim F. Storm <storm@cua.dk>
23294
23295 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
23296
23297 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
23298
23299 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
23300 strings, because (eq ... ?\\) is fairly frequent.
23301
23302 * progmodes/make-mode.el (makefile-add-this-line-targets):
23303 Simplify and integrate into `makefile-pickup-targets'.
23304 (makefile-add-this-line-macro): Simplify and integrate into
23305 `makefile-pickup-macros.
23306 (makefile-pickup-filenames-as-targets): Simplify.
23307 (makefile-previous-dependency, makefile-match-dependency):
23308 Don't stumble over `::'.
23309
23310 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
23311
23312 * subr.el (post-command-idle-hook, post-command-idle-delay):
23313 Remove obsoletion of post-command-idle-hook and
23314 post-command-idle-delay.
23315
23316 * faces.el (list-faces-display): Provide button when describe-face
23317 is called to take user back to the list of faces.
23318
23319 * help-fns.el (describe-variable): Remove hyperlinks in a
23320 variable's value as these are quite frequently inappropriate.
23321
23322 * follow.el (follow-submit-feedback, follow-mode):
23323 Remove references to post-command-idle-hook.
23324
23325 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
23326
23327 * progmodes/make-mode.el (makefile-previous-dependency)
23328 (makefile-match-dependency): Check for := (and in bsd mode also
23329 !=) to give a better result, even when font-lock is not on.
23330
23331 2005-05-18 Jay Belanger <belanger@truman.edu>
23332
23333 * calc/calc-help.el (calc-s-prefix-help):
23334 Add `calc-copy-special-constant' to help string.
23335
23336 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
23337
23338 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
23339
23340 2005-05-18 Jay Belanger <belanger@truman.edu>
23341
23342 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
23343 in linear factors are in proper order.
23344
23345 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
23346
23347 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
23348 Support for jurabib.
23349
23350 * textmodes/reftex.el (featurep): Define aliases for overlay
23351 commands, for XEmacs compatibility, and use these aliases in
23352 overlay initializations.
23353 (reftex-highlight): Use `reftex-move-overlay'.
23354 (reftex-unhighlight): Use `reftex-delete-overlay'.
23355 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
23356 (reftex-access-search-path): Use `reftex-uniquify' instead of
23357 `reftex-uniq'
23358
23359 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
23360 `before-string' property modification enables for Emacs as well.
23361 (reftex-select-item): Use `reftex-delete-overlay'.
23362 (reftex-select-mark): Use `reftex-make-overlay' and
23363 `reftex-overlay-put'.
23364 (reftex-select-unmark): Use `reftex-delete-overlay' and
23365 `reftex-overlay-put'.
23366
23367 2005-05-18 Lute Kamstra <lute@gnu.org>
23368
23369 * emacs-lisp/lisp.el (check-parens): Fix docstring.
23370
23371 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
23372
23373 * add-log.el (add-change-log-entry):
23374 * array.el (array-make-template, array-reconfigure-rows)
23375 (array-init-max-row, array-init-max-column)
23376 (array-init-columns-per-line, array-init-field-width):
23377 * replace.el (replace-match-maybe-edit, perform-replace):
23378 * textmodes/spell.el (spell-region):
23379 Replace `read-input' by `read-string'.
23380
23381 * forms.el (forms-mode):
23382 * finder.el (finder-compile-keywords):
23383 * shadowfile.el (shadow-read-files):
23384 Replace `eval-current-buffer' by `eval-buffer'.
23385
23386 * terminal.el (te-pass-through):
23387 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
23388 (ange-ftp-raw-send-cmd):
23389 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
23390 (send-process-next-char, telnet-initial-filter, telnet):
23391 Replace `send-string' by `process-send-string'.
23392
23393 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
23394 (prolog-consult-region): Replace `send-string' by
23395 `process-send-string'; replace `send-region' by `process-send-region'.
23396
23397 * progmodes/delphi.el (delphi-log-msg):
23398 Replace `set-window-dot' by `set-window-point'.
23399
23400 * subr.el (window-dot, set-window-dot, read-input, send-string)
23401 (send-region, show-buffer, eval-current-buffer):
23402 Make really obsolete, as the comment says.
23403
23404 2005-05-17 Kim F. Storm <storm@cua.dk>
23405
23406 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
23407 (cua--init-keymaps): Bind C-return instead of S-return to set
23408 rectangle mark.
23409
23410 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
23411 instead of S-return to toggle/clear rectangle mark.
23412
23413 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
23414
23415 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
23416 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
23417 Also fontify plain strings assigned to variables, mostly so that a
23418 colon has a face and is thus not taken as a dependency separator.
23419 (makefile-previous-dependency): Inline the new matcher, because it
23420 is too complex to work in both directions.
23421 (makefile-match-dependency): Eliminate `backward' arg (see above).
23422 Completely reimplemented so as to not sometimes go into an endless
23423 loop. It should also be more efficient, because first it only
23424 searches for `:', instead of applying the very complex regexp.
23425 (makefile-mode): Cancel `font-lock-support-mode', because blocks
23426 to be fontified in one piece can be too long for JIT.
23427 Makefiles are never *that* big.
23428
23429 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
23430
23431 * dired.el (dired-mode): Simplify.
23432
23433 2005-05-17 Lute Kamstra <lute@gnu.org>
23434
23435 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
23436 defcustom for the mode hook variable.
23437
23438 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
23439 Emacs Lisp Reference Manual.
23440
23441 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
23442
23443 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
23444 (evenp, list*):
23445 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
23446 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
23447
23448 * net/tramp-smb.el (tramp-smb-open-connection):
23449 Pass `tramp-chunksize' as fifth (required) argument.
23450
23451 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
23452
23453 * font-lock.el (lisp-font-lock-keywords-1):
23454 Set `font-lock-negation-char-face' for [^...] char group.
23455 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
23456
23457 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
23458 a var, and refine it to mask one more level of nested vars.
23459 (makefile-rule-action-regex): Turn it into a var, and refine it so
23460 it recognizes backslashed continuation lines as belonging to the
23461 same command.
23462 (makefile-macroassign-regex): Refine it so it recognizes
23463 backslashed continuation lines as belonging to the same command.
23464 (makefile-var-use-regex): Don't look at the next char, because it
23465 might be the same one to be skipped by the initial [^$], leading
23466 to an overlooked variable use.
23467 (makefile-make-font-lock-keywords): Remove two parameters, which
23468 are now variables that some of the modes set locally.
23469 Handle dependency and rule action matching through functions, because
23470 regexps alone match too often. Dependency matching now comes
23471 last, so it can check, whether a colon already matched something else.
23472 (makefile-mode): Inform that font-lock improves makefile parsing
23473 capabilities.
23474 (makefile-match-dependency, makefile-match-action): New functions.
23475
23476 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
23477
23478 * emacs-lisp/cl-extra.el (equalp): Doc fix.
23479
23480 * align.el (align-regexp):
23481 * ansi-color.el (ansi-color-get-face):
23482 * array.el (array-reconfigure-rows, array-init-max-row)
23483 (array-init-max-column, array-init-columns-per-line)
23484 (array-init-field-width):
23485 * dired-aux.el (dired-trample-file-versions):
23486 * dired-x.el (dired-mark-sexp):
23487 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
23488 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
23489 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
23490 * faces.el (face-read-integer):
23491 * files.el (backup-extract-version, insert-directory):
23492 * hexl.el (hexl-insert-decimal-char):
23493 * server.el (server-process-filter):
23494 * shell.el (shell-extract-num):
23495 * startup.el (command-line-1):
23496 * term.el (term-command-hook):
23497 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
23498 (time-stamp-do-number):
23499 * time.el (display-time-update):
23500 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
23501 (timezone-fix-time):
23502 * vms-patch.el (vms-suspend-resume-hook):
23503 * calendar/appt.el (appt-convert-time):
23504 * calendar/cal-bahai.el (mark-bahai-diary-entries):
23505 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
23506 * calendar/cal-islam.el (mark-islamic-diary-entries):
23507 * calendar/calendar.el (calendar-cursor-to-date)
23508 (calendar-star-date):
23509 * calendar/diary-lib.el (diary-attrtype-convert)
23510 (mark-diary-entries, diary-entry-time):
23511 * calendar/solar.el (solar-get-number):
23512 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
23513 * emacs-lisp/re-builder.el (reb-display-subexp):
23514 * emulation/edt.el (edt-set-scroll-margins):
23515 * emulation/tpu-extras.el (tpu-set-scroll-margins):
23516 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
23517 (vip-get-ex-count):
23518 * emulation/viper-ex.el (viper-get-ex-token)
23519 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
23520 * international/fontset.el (fontset-plain-name):
23521 * mail/feedmail.el (feedmail-look-at-queue-directory):
23522 * mail/mailalias.el (mail-get-names):
23523 * mail/rmail.el (rmail-convert-to-babyl-format):
23524 * mail/rmailsum.el (rmail-make-basic-summary-line)
23525 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
23526 (rmail-summary-goto-msg):
23527 * mail/smtpmail.el (smtpmail-read-response):
23528 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
23529 (ange-ftp-vms-add-file-entry):
23530 * play/gametree.el (gametree-looking-at-ply)
23531 (gametree-current-branch-score):
23532 * progmodes/ada-xref.el (ada-prj-find-prj-file)
23533 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
23534 * progmodes/cperl-mode.el (condition-case):
23535 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
23536 (ebrowse-set-member-buffer-column-width)
23537 (ebrowse-select-1st-to-9nth):
23538 * progmodes/etags.el (etags-snarf-tag):
23539 * progmodes/flymake.el (flymake-parse-line):
23540 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
23541 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
23542 (idlwave-shell-menu-def):
23543 * progmodes/ps-mode.el (ps-run-goto-error):
23544 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
23545 (vhdl-speedbar-contract-level):
23546 * term/mac-win.el (x-handle-numeric-switch):
23547 * term/sun-mouse.el (sun-get-frame-data):
23548 * term/w32-win.el (x-handle-numeric-switch):
23549 * term/x-win.el (x-handle-numeric-switch):
23550 * textmodes/ispell.el (ispell-parse-output):
23551 * textmodes/nroff-mode.el (nroff-outline-level):
23552 * textmodes/reftex-cite.el (reftex-bib-sort-year)
23553 (reftex-bib-sort-year-reverse, reftex-format-citation):
23554 * textmodes/reftex-parse.el (reftex-init-section-numbers)
23555 (reftex-section-number):
23556 * textmodes/texinfmt.el (texinfo-paragraphindent):
23557 Replace `string-to-int' by `string-to-number'.
23558
23559 * international/latexenc.el: Add page marker to force the "Local
23560 Variables:" string out of the last page.
23561
23562 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
23563
23564 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
23565 tooltip-change-major-mode.
23566 (gud-tooltip-print-command): Remove case where gud-minor-mode
23567 is gdb ("--fullname").
23568 (gud-tooltip-tips): Turn GUD tooltips off for this case and
23569 explain to user.
23570
23571 2005-05-16 Jay Belanger <belanger@truman.edu>
23572
23573 * calc/calc-store.el (calc-copy-special-constant): New function.
23574
23575 * calc/calc-ext.el (calc-init-extensions): Add binding for
23576 `calc-copy-special-constant'.
23577
23578 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
23579 for the `calc-copy-special-constant' command.
23580
23581 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
23582
23583 * subr.el (left-fringe-p): New function.
23584
23585 * progmodes/compile.el (compilation-setup): Set local value of
23586 overlay-arrow-string to "" always.
23587 (compilation-set-window): Left fringe then don't scroll.
23588 No left fringe then no arrow and scroll message to top.
23589 (compilation-context-lines): Adjust doc string accordingly.
23590
23591 2005-05-16 Kim F. Storm <storm@cua.dk>
23592
23593 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
23594 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
23595 (ido-wide-find-dir-or-delete-dir): New command for M-d.
23596 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
23597 (ido-read-file-name): Handle commands with ido property value
23598 equal to find-file as reading a file name, to allow C-d to enter dired.
23599 (ibuffer-find-file): Add ido property with value find-file.
23600
23601 2005-05-15 Kim F. Storm <storm@cua.dk>
23602
23603 * subr.el (open-network-stream-nowait): Remove.
23604 (open-network-stream-server): Remove.
23605
23606 2005-05-15 Richard M. Stallman <rms@gnu.org>
23607
23608 * faces.el (describe-face): Output a definition link button.
23609
23610 * help-mode.el (help-face-def): New button type.
23611
23612 * emacs-lisp/copyright.el (copyright-fix-years):
23613 Match properly if the first year is 2-digit.
23614 Don't mess up the whitespace after the years by filling.
23615
23616 * dired-aux.el (dired-mark-confirm):
23617 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
23618
23619 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
23620 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
23621 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
23622
23623 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
23624 Set font-lock-comment-start-skip.
23625
23626 * font-lock.el (font-lock-comment-start-skip): New variable.
23627 (font-lock-comment-end-skip): New variable.
23628 (font-lock-fontify-syntactically-region): Use them if non-nil.
23629
23630 2005-05-15 Jay Belanger <belanger@truman.edu>
23631
23632 * calc/calc-store.el (calc-store-value): Return a string rather
23633 than display it as a message.
23634 Use calc-var-name for variable name.
23635 (calc-store-into): Add the result of calc-store-value to message.
23636 (calc-copy-variable): Add a message.
23637 (calc-store-exchange): Improve error messages.
23638 (calc-store-binary, calc-store-map): Don't reset the values of
23639 special constants.
23640
23641 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
23642
23643 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
23644 manual to docstring.
23645
23646 * files.el (hack-local-variables-confirm): Add STRING argument.
23647 Make the function handle non file visiting buffers correctly.
23648 (hack-local-variables-prop-line, hack-local-variables)
23649 (hack-one-local-variable): Use STRING arg of
23650 `hack-local-variables-confirm'.
23651
23652 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
23653
23654 Sync with Tramp 2.0.49.
23655
23656 * net/tramp.el (tramp-handle-dired-call-process)
23657 (tramp-handle-insert-directory):`insert-buffer' cannot be used
23658 because the contents of the Tramp buffer is changed before
23659 insertion (`expand-file' and alike).
23660 (tramp-handle-insert-directory): If `localname' has an empty
23661 nondirectory name, it must not be quoted.
23662 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
23663 variable `tramp-chunksize'. Change callees.
23664 (tramp-open-connection-setup-interactive-shell): Check remote host
23665 for buggy `send-process-string' implementation.
23666 Set `tramp-chunksize' if found. Reported by Michael Kifer
23667 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
23668 (tramp-handle-shell-command): `insert-buffer' cannot be used
23669 because the contents of the Tramp buffer is changed before
23670 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
23671 <frederic.bothamy@free.fr>.
23672 (tramp-set-auto-save): Actions should be done for Tramp file name
23673 handler only. Ange-FTP has its own auto-save mechanism.
23674 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
23675 (tramp-set-auto-save-file-modes): Set file modes of
23676 `buffer-auto-save-file-name' to ?\600 as fallback solution.
23677 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
23678 (tramp-bug): Remove obsolete variable.
23679 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
23680 for presence of `mml-mode'. Make it running for older Emacsen as well.
23681
23682 2005-05-14 John Paul Wallington <jpw@pobox.com>
23683
23684 * ibuf-ext.el (define-ibuffer-filter filename):
23685 If `dired-directory' is a list, use its car.
23686
23687 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
23688
23689 * ibuffer.el (define-ibuffer-column filename):
23690 If `dired-directory' is a list, use its car.
23691
23692 2005-05-14 Richard M. Stallman <rms@gnu.org>
23693
23694 * subr.el (symbol-file): Doc fix.
23695
23696 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
23697 (byte-compile-form): Call byte-compile-nogroup-warn.
23698 (byte-compile-warning-types): Doc fix.
23699
23700 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
23701
23702 * progmodes/cc-engine.el (c-literal-faces):
23703 Add font-lock-comment-delimiter-face.
23704
23705 * net/net-utils.el (dig): Use with-no-warnings.
23706
23707 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
23708 (sc-recite-frame-alist, sc-default-cite-frame)
23709 (sc-default-uncite-frame, sc-default-recite-frame)
23710 (sc-attrib-selection-list, sc-rewrite-header-list):
23711 Mark as risky-local-variable.
23712
23713 * international/ogonek.el (ogonek-jak, ogonek-how):
23714 Don't use beginning-of-buffer.
23715
23716 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
23717
23718 * calendar/solar.el (solar-data-list): Move definition up.
23719
23720 * dnd.el (dnd-protocol-alist): Add autoload.
23721
23722 * progmodes/sh-script.el: Many doc usage fixes.
23723 (sh-indent-after-do): Change default to match common styles.
23724
23725 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
23726
23727 * files.el (interpreter-mode-alist)
23728 (auto-mode-interpreter-regexp): Doc fixes.
23729
23730 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
23731
23732 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
23733
23734 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
23735
23736 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23737
23738 * dired.el (dired-mode): make-variable-buffer-local =>
23739 make-local-variable.
23740
23741 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23742
23743 * term/mac-win.el (mac-select-convert-to-string): Try coding
23744 systems in mac-script-code-coding-systems if specified one cannot
23745 encode string for `com.apple.traditional-mac-plain-text'.
23746
23747 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
23748
23749 * progmodes/make-mode.el (makefile-targets-face)
23750 (makefile-shell-face, makefile-makepp-perl-face): New faces.
23751 (makefile-dependency-regex): Fix it to not make the colon in
23752 $(var:a=b) special.
23753 (makefile-rule-action-regex): New regexp for highlighting embedded
23754 Shell strings.
23755 (makefile-macroassign-regex): Handle != for highlighting as
23756 embedded Shell strings.
23757 (makefile-var-use-regex): New const.
23758 (makefile-statements, makefile-automake-statements)
23759 (makefile-gmake-statements, makefile-makepp-statements)
23760 (makefile-bsdmake-statements): New consts.
23761 (makefile-make-font-lock-keywords): New function.
23762 (makefile-automake-font-lock-keywords)
23763 (makefile-gmake-font-lock-keywords)
23764 (makefile-makepp-font-lock-keywords)
23765 (makefile-bsdmake-font-lock-keywords): New consts.
23766 (makefile-mode-map): Add switchers between the various submodes.
23767 (makefile-mode): Document the availability of the variants.
23768 (makefile-automake-mode, makefile-gmake-mode)
23769 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
23770
23771 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
23772 new variants of makefile-mode.
23773
23774 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23775
23776 * font-lock.el (font-lock-comment-delimiter-face): Fix up
23777 the inheritance.
23778
23779 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
23780
23781 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
23782 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
23783
23784 * files.el (normal-mode): Extend the scope of the
23785 `enable-local-variables' binding to include the `set-auto-mode' call.
23786 (magic-mode-alist): Doc fix.
23787
23788 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23789
23790 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
23791 font-lock-comment-face rather than copying its setting.
23792
23793 2005-05-12 Andreas Schwab <schwab@suse.de>
23794
23795 * eshell/esh-mode.el (eshell-send-input): Doc fix.
23796
23797 2005-05-12 Lute Kamstra <lute@gnu.org>
23798
23799 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
23800 defcustom for the mode hook variable. Delete the last argument.
23801 * generic-x.el: Fix callers of define-generic-mode.
23802 (generic-x-modes): Delete group.
23803 (show-tabs-tab-face, show-tabs-space-face): Put them in the
23804 generic-x customization group.
23805
23806 2005-05-12 Kim F. Storm <storm@cua.dk>
23807
23808 * font-lock.el (font-lock-negation-char-face): Default to "off".
23809
23810 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
23811 font-lock-negation-char-face to ! in !=.
23812
23813 2005-05-12 Masatake YAMATO <jet@gyve.org>
23814
23815 * add-log.el (find-change-log): Fix typos in the docstring
23816 of function.
23817
23818 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
23819
23820 * international/latexenc.el (latexenc-find-file-coding-system):
23821 Avoid `re-search-forward' when looking for input encoding because
23822 of speed and safety. Better regular expressions for recognizing
23823 input encoding. Limit a search for TeX-master/tex-main-file to
23824 the local variable section.
23825
23826 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
23827
23828 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
23829 syntax of $ to "'" (quote).
23830
23831 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
23832
23833 * dnd.el (dnd-protocol-alist): Improve custom type.
23834
23835 * dired.el (dired-dnd-protocol-alist): New variable.
23836 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
23837 `dired-mode-hook' to the end.
23838
23839 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
23840
23841 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
23842 comment-end if comment-start-skip is not set.
23843 Obey the font-lock-comment-delimiter-face variables.
23844
23845 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
23846
23847 * files.el (executable-find): Move from executable.el. Use
23848 locate-file.
23849 * progmodes/executable.el (executable-find): Move to files.el.
23850
23851 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
23852 when trying to ensure forward progress.
23853
23854 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
23855
23856 * mouse-sel.el (mouse-sel-follow-link-p): New function.
23857 (mouse-select, mouse-select-internal, mouse-extend-internal):
23858 Use it to implement mouse-1-click-follows-link functionality.
23859
23860 2005-05-11 Richard M. Stallman <rms@gnu.org>
23861
23862 * font-lock.el (font-lock-fontify-syntactically-region):
23863 Use font-lock-comment-delimiter-face for comment delimiters.
23864
23865 2005-05-10 Jay Belanger <belanger@truman.edu>
23866
23867 * calc/calc-help.el (calc-m-prefix-help): Add mention of
23868 preserving embedded modes.
23869
23870 2005-05-10 Richard M. Stallman <rms@gnu.org>
23871
23872 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
23873
23874 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
23875 Move from ada-stmt.el.
23876 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
23877
23878 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
23879 Move to ada-mode.el.
23880 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
23881
23882 * cus-edit.el (custom-file): Call file-chase-links.
23883
23884 * files.el (read-directory-name): Fix previous change.
23885 (hack-local-variables-confirm): New function.
23886 (hack-local-variables-prop-line, hack-local-variables)
23887 (hack-one-local-variable): Use it.
23888
23889 2005-05-10 Lute Kamstra <lute@gnu.org>
23890
23891 * font-lock.el (font-lock-keywords-alist)
23892 (font-lock-removed-keywords-alist): Clarify docstrings.
23893
23894 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
23895
23896 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
23897 (gdb-source-info): Check for preprocessor info.
23898 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
23899 a macro for a function.
23900 (gdb-info-breakpoints-custom): Try to find file again if not already
23901 found (user might have used GDB dir command).
23902 (gdb-get-location): Update gdb-location-alist correctly for change
23903 to gdb-info-breakpoints-custom.
23904
23905 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
23906 (gud-tooltip-print-command): Add gdbmi case.
23907 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
23908 preprocessor info.
23909
23910 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
23911
23912 * startup.el (fancy-splash-insert): Fix typo in doc string.
23913
23914 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
23915
23916 * obsolete/float.el (string-to-float):
23917 * obsolete/hilit19.el (hilit-add-pattern):
23918 * obsolete/rnews.el (news-parse-range, news-select-message)
23919 (news-get-pruned-list-of-files): Replace `string-to-int' by
23920 `string-to-number'.
23921
23922 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
23923 `find-file-not-found-hooks'; use `add-hook'.
23924 (uncompress-while-visiting): Set `write-file-functions', not
23925 `write-file-hooks'; use `add-hook'.
23926
23927 2005-05-09 Kim F. Storm <storm@cua.dk>
23928
23929 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
23930 (cua-paste): Handle clipboard action.
23931 (cua--init-keymaps): Remap clipboard-kill-region and
23932 clipboard-kill-ring-save.
23933
23934 2005-05-08 Eli Zaretskii <eliz@gnu.org>
23935
23936 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
23937 Improve commentary.
23938
23939 * simple.el (next-error-overlay-arrow-position): Revert the change
23940 made on 2005-04-30.
23941
23942 2005-05-07 Jay Belanger <belanger@truman.edu>
23943
23944 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
23945 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
23946 `calc-sel-reselect'.
23947
23948 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
23949 Calc is in embedded mode.
23950
23951 2005-05-07 Eli Zaretskii <eliz@gnu.org>
23952
23953 * progmodes/compile.el (compilation-setup):
23954 Set overlay-arrow-string to an empty string on text terminals.
23955
23956 * textmodes/ispell.el (ispell-program-name): Try looking for
23957 "aspell" along exec-path, and if found, use it as the default
23958 speller program.
23959
23960 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
23961
23962 * international/mule.el (sgml-xml-auto-coding-function):
23963 Recognize encoding='FOO' in single quotes as well as in double quotes.
23964
23965 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
23966
23967 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
23968 as well as `interactive', so that defmacro* would recognize
23969 `declare' forms.
23970
23971 2005-05-07 Eli Zaretskii <eliz@gnu.org>
23972
23973 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
23974 Explain more about the LIGHTER arg's usage in the doc string.
23975 Add commentary to clarify what the code does. Fix the regexp that
23976 strips whitespace from LIGHTER. Quote LIGHTER before using it,
23977 since it could have characters special to regular expressions.
23978
23979 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23980
23981 * replace.el (occur-1): Bind inhibit-read-only so that
23982 erase-buffer doesn't barf on read-only text properties (likewise
23983 for add-text-properties in occur-engine). Mark buffer as unmodified.
23984 (occur-engine): Don't set buffer-read-only here.
23985
23986 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23987
23988 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
23989 list-buffers-directory. This caused the *cvs-commit* buffer to be
23990 sometimes mistakenly reused as a *cvs* buffer.
23991
23992 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
23993
23994 * tooltip.el: Move code for GUD tooltips into gud.el.
23995 (require): CL no longer needed to compile case.
23996 (tooltip-mode): Do not toggle functions for GUD tooltips.
23997 (tooltip-gud-tips-p): Remove. Replace with minor mode
23998 gud-tooltip-mode in gud.el.
23999 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
24000 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
24001 tooltip-gud prefix with gud-tooltip and obsolete.
24002 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
24003 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
24004 (tooltip-mouse-motion): Mouse movement functions/variable.
24005 Rename in gud.el by adding gud prefix.
24006 (tooltip-gud-original-filter, tooltip-gud-dereference)
24007 (tooltip-gud-event, tooltip-toggle-gud-tips)
24008 (tooltip-gud-process-output, tooltip-gud-print-command)
24009 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
24010 gud.el by replacing tooltip-gud prefix with gud-tooltip.
24011 (gdb-tooltip-print): Move to gdb-ui.el.
24012
24013 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
24014 (require): CL needed to compile case.
24015 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
24016 tooltip-gud-tips-p. Make it a minor-mode.
24017 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
24018 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
24019 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
24020 (gud-tooltip-change-major-mode)
24021 (gud-tooltip-activate-mouse-motions-if-enabled)
24022 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
24023 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
24024 (gud-tooltip-original-filter, gud-tooltip-dereference)
24025 (gud-tooltip-event, tooltip-toggle-gud-tips)
24026 (gud-tooltip-process-output, gud-tooltip-print-command)
24027 (gud-tooltip-tips): Move from tooltip.el.
24028
24029 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
24030 (gdb-cpp-define-alist-flags): Doc fix.
24031 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
24032 gud-tooltip-mode is t.
24033
24034 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
24035
24036 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
24037 evaporate if their text is deleted.
24038 (goto-address-at-point): Make it work as a mouse binding as well.
24039 (goto-address-at-mouse): Obsolete it. Update users.
24040
24041 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
24042
24043 * calendar/appt.el (top-level): No longer activate on load.
24044
24045 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
24046
24047 * calendar/cal-bahai.el (mark-bahai-diary-entries):
24048 * net/webjump.el (webjump):
24049 * progmodes/idlw-help.el (idlwave-do-context-help1)
24050 (idlwave-highlight-linked-completions):
24051 * textmodes/po.el (po-find-file-coding-system-guts):
24052 Replace `assoc-ignore-case' by `assoc-string'.
24053
24054 2005-05-06 Eli Zaretskii <eliz@gnu.org>
24055
24056 * files.el (locate-file): Doc fix.
24057
24058 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
24059 Remove the redundant test for ms-dos.
24060
24061 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
24062 look for the preprocessor with exec-suffixes. If not found in
24063 standard places, look in exec-path. Remove most of the tests that
24064 used system-type.
24065
24066 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
24067
24068 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
24069
24070 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
24071 file-name clash with jka-compr.el on 8+3 filesystems.
24072
24073 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24074
24075 * term/mac-win.el: Don't define or bind scroll bar functions if
24076 x-toolkit-scroll-bars is t.
24077 (x-select-text, x-get-selection-value): Clear
24078 x-last-selected-text-clipboard if x-select-enable-clipboard is
24079 nil.
24080 (PRIMARY): Put mac-scrap-name property.
24081 (mac-select-convert-to-file-url): New function.
24082 (public.file-url): New selection target type. Add to
24083 selection-converter-alist.
24084 (x-get-selection, x-selection-value): Handle it.
24085 (x-cut-buffer-or-selection-value): New alias.
24086
24087 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
24088
24089 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
24090 entry to avoid calling bibtex-find-entry with arg global
24091 being t. Remove arg key.
24092 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
24093 (bibtex-copy-summary-as-kill): Change accordingly.
24094
24095 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
24096
24097 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
24098 (org-agenda-date-later): Use with-current-buffer.
24099
24100 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
24101
24102 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
24103 (define-obsolete-variable-alias): Doc Fixes.
24104
24105 2005-05-06 Kim F. Storm <storm@cua.dk>
24106
24107 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
24108 vertical-motion when selective-display is active.
24109
24110 * ido.el (ido-setup-hook): New hook.
24111 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
24112 (ido-input-stack): New var.
24113 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
24114 ido-next-work-file binding to M-O.
24115 Bind M-f to ido-wide-find-file-or-pop-dir.
24116 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
24117 (ido-read-internal): Run ido-setup-hook.
24118 Catch quit in read-file-name and read-string to cancel edit.
24119 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
24120 Automatically pop-all when completing a directory name (RET).
24121 (ido-file-internal): Add with-no-warnings around ffap and dired code.
24122 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
24123 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
24124 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
24125 New functions for M-b/M-f to move among the directory components.
24126 (ido-make-merged-file-list): Catch quit to cancel merge.
24127 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
24128 (ido-completion-help): No warnings for ido-completion-buffer-full.
24129
24130 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
24131
24132 * font-lock.el (font-lock-negation-char-face): New face and variable.
24133 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
24134 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
24135 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
24136 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
24137
24138 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
24139
24140 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
24141 Fix typo in docstring.
24142
24143 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
24144 (ebrowse-print-statistics-line)
24145 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
24146
24147 * term/w32-win.el (image-library-alist): Add additional name for
24148 Xpm library.
24149
24150 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
24151
24152 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
24153 use gcc instead of cpp.
24154
24155 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
24156 (gdb-create-define-alist): Use it.
24157 (gdb-cpp-define-alist-program): Update for MS-DOS.
24158
24159 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
24160
24161 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
24162
24163 2005-05-04 Richard M. Stallman <rms@gnu.org>
24164
24165 * help.el (describe-key): No error when UNTRANSLATED is nil.
24166
24167 * simple.el (line-move-1): Fix previous change to signal errors
24168 appropriately.
24169
24170 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
24171
24172 * calendar/icalendar.el (icalendar-version): Now at 0.12.
24173 (icalendar-duration-correction): Remove.
24174 (icalendar--get-event-properties): Split result at commas.
24175 (icalendar--decode-isoduration): New optional argument
24176 DURATION-CORRECTION.
24177 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
24178 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
24179 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
24180 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
24181 (icalendar--convert-anniversary-to-ical): New functions, extracted
24182 from icalendar-export-region, with bug fixes.
24183 (icalendar-export-region): Use the above functions.
24184 (icalendar-import-buffer): Check before saving diary file.
24185 (icalendar--convert-recurring-to-diary)
24186 (icalendar--convert-non-recurring-all-day-to-diary)
24187 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
24188 extracted from icalendar--convert-ical-to-diary, with bug fixes.
24189 (icalendar--convert-ical-to-diary): Use the above functions.
24190
24191 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
24192
24193 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
24194 Remove these recent additions.
24195 (c-mode): Restore to before 2005-04-28.
24196
24197 * progmodes/cc-vars.el (cc-define-list-program): Remove this
24198 recent addition.
24199
24200 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
24201 (gdb-define-alist): New variables.
24202 (gdb-create-define-alist): New function.
24203 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
24204 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
24205 with string-to-number.
24206 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
24207
24208 * progmodes/gud.el: Replace string-to-int with string-to-number.
24209 (gud-find-file): Handle gdb-define-alist.
24210
24211 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
24212
24213 2005-05-02 Jay Belanger <belanger@truman.edu>
24214
24215 * calc/calc-aent.el (math-read-token):
24216 * calc/calc-bin.el (calc-word-size):
24217 * calc/calc-ext.el (calc-read-number-fancy):
24218 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
24219 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
24220 * calc/calc-frac.el (calc-over-notation):
24221 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
24222 (calc-graph-num-points, calc-graph-init):
24223 * calc/calc-prog.el (calc-read-parse-table-part)
24224 (calc-edit-macro-repeats):
24225 * calc/calc-yank.el (calc-do-grab-rectangle):
24226 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
24227 Replace `string-to-int' by `string-to-number'.
24228
24229 2005-05-02 Kim F. Storm <storm@cua.dk>
24230
24231 * kmacro.el: Use executing-kbd-macro-index variable.
24232
24233 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
24234
24235 * net/rlogin.el (rlogin-parse-words): Delete func.
24236 (rlogin): Use split-string, not rlogin-parse-words.
24237 Also, if there are option-like elements in the parsed args,
24238 take the host to be the first arg immediately following them.
24239 Suggested by Michael Mauger.
24240
24241 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
24242
24243 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
24244
24245 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
24246
24247 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
24248 (cc-mode-cpp-program): Rename to cc-define-list-program and
24249 move to cc-vars.el.
24250
24251 * progmodes/cc-vars.el (cc-define-list-program):
24252 Change to "gcc -E -dM -". Make customizable.
24253
24254 2005-05-02 Kim F. Storm <storm@cua.dk>
24255
24256 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
24257
24258 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
24259
24260 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
24261
24262 * international/mule-util.el (truncate-string): Remove alias and
24263 obsolete declaration.
24264
24265 * international/mule-cmds.el (update-iso-coding-systems):
24266 Remove alias and obsolete declaration.
24267
24268 * international/mule.el (coding-system-parent): Remove alias and
24269 obsolete declaration.
24270
24271 * subr.el (define-function, sref): Remove aliases and obsolete
24272 declarations.
24273 (chars-in-region): Remove obsolete declaration.
24274
24275 2005-05-01 Richard M. Stallman <rms@gnu.org>
24276
24277 * info.el (Info-mode): Set widen-automatically to nil, locally.
24278
24279 * simple.el (widen-automatically): New variable.
24280 (pop-global-mark): Obey widen-automatically.
24281
24282 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
24283
24284 * term/xterm.el (function-key-map): Call substitute-key-definition
24285 before the keymap size is increased by a lot of define-key calls.
24286
24287 2005-05-01 Richard M. Stallman <rms@gnu.org>
24288
24289 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
24290 Rename ARG to ELEMENT. Doc fix.
24291
24292 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
24293
24294 * allout.el (allout-exposure): Remove macro and obsolete declaration.
24295 Remove references to allout-exposure/change to allout-new-exposure.
24296
24297 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
24298 bytecode symbols.
24299
24300 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
24301 (compiled-function-p, focus-frame, unfocus-frame):
24302 Remove aliases and obsolete declarations.
24303 Back out inadvertent changes from previous commit.
24304
24305 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
24306
24307 * files.el (require-final-newline): Make Custom tags consistent
24308 with mode-require-final-newline.
24309 (mode-require-final-newline): Doc fix.
24310
24311 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
24312
24313 * international/latexenc.el (latexenc-find-file-coding-system):
24314 Fix regular expressions.
24315
24316 2005-05-01 David Kastrup <dak@gnu.org>
24317
24318 * international/latexenc.el (latexenc-find-file-coding-system):
24319 Fix regular expressions.
24320
24321 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
24322
24323 * subr.el (string-to-int): Make obsolete.
24324
24325 2005-04-30 Richard M. Stallman <rms@gnu.org>
24326
24327 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
24328
24329 * loadup.el: load jka-comp-hook.
24330
24331 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
24332 (jka-compr-handler): Add autoload. `put' calls moved
24333 to jka-comp-hook.el.
24334 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
24335 (jka-compr-inhibit): Autoload.
24336
24337 * jka-comp-hook.el: New file.
24338 Enable the mode by default.
24339
24340 * files.el (backup-buffer-copy): Use copy-file instead
24341 of write-region, and put back the 'excl.
24342
24343 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
24344
24345 * progmodes/flymake.el (flymake-split-string)
24346 (flymake-split-string, flymake-log, flymake-pid-to-names)
24347 (flymake-reg-names, flymake-get-source-buffer-name)
24348 (flymake-unreg-names, flymake-add-line-err-info)
24349 (flymake-add-err-info): Clarify docstrings.
24350 (flymake-popup-menu, flymake-make-emacs-menu)
24351 (flymake-make-xemacs-menu): Add docstrings.
24352 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
24353 Set variables directly throughout.
24354
24355 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
24356
24357 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
24358 exists. Initialize cc-define-alist.
24359 (c-mode): Add cc-create-define-alist locally to after-save-hook.
24360 If there is no file (Macroexpansion) don't create an alist.
24361
24362 2005-04-29 Sam Steingold <sds@gnu.org>
24363
24364 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
24365 (cc-create-define-alist): Use it instead of the hard-coded string.
24366
24367 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
24368
24369 * international/mule-conf.el (file-coding-system-alist): Fix regexp
24370 for latexenc.
24371
24372 2005-04-29 Lute Kamstra <lute@gnu.org>
24373
24374 * emacs-lisp/generic.el: Improve commentary section.
24375 (define-generic-mode): Improve docstring.
24376
24377 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
24378
24379 * textmodes/org.el (many places): Change to quiet the byte compiler.
24380 (org-prefix-format-compiled): New variable.
24381 (org-compile-prefix-format): New function.
24382 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
24383 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
24384 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
24385 (org-get-entries-from-diary): Use `org-get-time-of-day' for
24386 consistency with entries from `org-mode' files.
24387 (org-get-time-of-day): Fix bug with partial matches early in a line.
24388 (org-non-link-chars): New constant.
24389 (org-link-regexp): Respect `org-non-link-chars'.
24390 (org-agenda-day-view): Remove command.
24391 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
24392 (org-follow-bbdb-link, org-store-link): Search also company field.
24393 (org-highlight-overlay): New variable.
24394 (org-highlight, org-unhighlight): New functions.
24395 (org-agenda-mode): Add pre-command-hook to remove highlight.
24396 (org-evaluate-time-range): Behavior depends upon whether time stamp
24397 contains a time or not.
24398 (org-show-subtree, org-show-entry): New functions.
24399 (org-agenda-cleanup-fancy-diary): Remove empty lines.
24400
24401 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
24402
24403 * comint.el (comint-output-filter-functions): Add autoload cookie.
24404
24405 2005-04-28 Kim F. Storm <storm@cua.dk>
24406
24407 * ido.el (ido-everywhere): Fix last change.
24408
24409 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
24410
24411 * international/latexenc.el: New file.
24412 * international/mule-conf.el (file-coding-system-alist): For .tex,
24413 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
24414
24415 2005-04-28 Lute Kamstra <lute@gnu.org>
24416
24417 * font-lock.el (font-lock-add-keywords)
24418 (font-lock-remove-keywords): Clarify docstring.
24419 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
24420 Don't start docstrings with a `*'.
24421 (font-lock-update-removed-keyword-alist): Give it a docstring.
24422
24423 * generic-x.el: Update commentary section.
24424 Only require font-lock when compiling.
24425 Define all modes conditionally.
24426 Place all generic modes in the generic-x-modes customization group.
24427 (generic-x-modes): New customization group.
24428 (generic-default-modes, generic-mswindows-modes)
24429 (generic-unix-modes, generic-other-modes): New constants.
24430 (generic-define-mswindows-modes, generic-define-unix-modes):
24431 Update docstrings. Make them obsolete.
24432 (generic-extras-enable-list): New default value. Update docstring.
24433 Improve :type. Change :set function.
24434 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
24435 Fix docstring.
24436
24437 * emacs-lisp/generic.el (generic-mode-internal):
24438 Simplify font-lock-defaults.
24439 (define-generic-mode): Fix docstring.
24440
24441 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
24442
24443 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
24444 font-lock-face property to highlight matches.
24445
24446 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
24447
24448 * progmodes/cc-mode.el (cc-create-define-alist): New function.
24449 (cc-define-alist): New variable.
24450 (c-mode): Make it local and initialize it.
24451
24452 * progmodes/gdb-ui.el (gdb-active-process): New variable.
24453 (gdb-exited): New function.
24454 (gdb-annotation-rules): Use it.
24455 (gdb-starting): Set gdb-active-process to t.
24456 (gdb-stopping): Amend doc string.
24457 (gdb-reset): Set gdb-active-process to nil.
24458
24459 * tooltip.el (tooltip-gud-tips): Show the associated #define
24460 directives when a C program under GDB is not executing.
24461
24462 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
24463
24464 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
24465 font-lock-fontify-syntactic-keywords.
24466
24467 * font-lock.el (font-lock-default-fontify-region): Don't force
24468 parse-sexp-lookup-properties to nil.
24469
24470 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
24471
24472 * man.el (man-mode-syntax-table): Set up `:' to have
24473 word-constituent syntax.
24474
24475 2005-04-27 Lute Kamstra <lute@gnu.org>
24476
24477 * novice.el (disable-command): Don't add spurious newlines to the
24478 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
24479
24480 2005-04-26 Jay Belanger <belanger@truman.edu>
24481
24482 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
24483 than one window before deleting window.
24484
24485 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
24486
24487 * shell.el (shell-prompt-pattern): Doc fix.
24488 (shell-mode): Set paragraph-separate buffer locally to "\\'".
24489
24490 * comint.el (comint-prompt-regexp, comint-get-old-input)
24491 (comint-use-prompt-regexp)
24492 (comint-use-prompt-regexp-instead-of-fields)
24493 (comint-replace-by-expanded-history, comint-send-input)
24494 (comint-output-filter, comint-get-old-input-default)
24495 (comint-line-beginning-position, comint-bol, comint-show-output)
24496 (comint-backward-matching-input, comint-forward-matching-input)
24497 (comint-next-prompt, comint-previous-prompt):
24498 Rename `comint-use-prompt-regexp-instead-of-fields' to
24499 `comint-use-prompt-regexp'. Keep old name as alias and declare
24500 obsolete.
24501 (comint-use-prompt-regexp): Shorten first line of doc string.
24502
24503 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
24504 Set paragraph-separate buffer locally to "\\'".
24505
24506 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
24507 Adapt to above name change.
24508
24509 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
24510 (smbclient-prompt-regexp): Ditto.
24511
24512 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
24513
24514 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
24515
24516 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
24517 gdb-location-list.
24518 Break lines that are over 80 characters wide.
24519
24520 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
24521
24522 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
24523 New fun and var, to preserve compatibility.
24524
24525 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
24526
24527 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
24528
24529 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
24530 name to file-newer-than-file-p.
24531
24532 2005-04-26 Richard M. Stallman <rms@gnu.org>
24533
24534 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
24535
24536 * progmodes/python.el (python-mode):
24537 Use new name eldoc-documentation-function.
24538
24539 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
24540
24541 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
24542 (eldoc-documentation-function):
24543 Rename from eldoc-print-current-symbol-info-function. Calls changed.
24544
24545 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
24546
24547 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
24548
24549 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
24550
24551 * term/xterm.el (function-key-map): Fix strings for
24552 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
24553 {C,S,A,C-S}-{f1-f12}.
24554
24555 2005-04-26 Kenichi Handa <handa@m17n.org>
24556
24557 * international/mule-cmds.el (select-safe-coding-system):
24558 Fix previous change.
24559
24560 2005-04-26 Lute Kamstra <lute@gnu.org>
24561
24562 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
24563
24564 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
24565 (font-lock-comment-delimiter-face): Ditto.
24566
24567 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
24568
24569 2005-04-25 Jay Belanger <belanger@truman.edu>
24570
24571 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
24572 to t while inserting information; use help-mode.
24573
24574 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
24575
24576 * term.el (ansi-term-color-vector): Use the xterm colors.
24577 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
24578
24579 2005-04-25 Lute Kamstra <lute@gnu.org>
24580
24581 * font-core.el (font-lock-defaults): Fix docstring.
24582
24583 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
24584
24585 2005-04-25 Kenichi Handa <handa@m17n.org>
24586
24587 * international/mule-cmds.el (select-safe-coding-system):
24588 Don't check consistency with coding: spec, etc if raw-text or
24589 no-conversion was found to be safe.
24590
24591 2005-04-24 Richard M. Stallman <rms@gnu.org>
24592
24593 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
24594 citation markers at start of each line.
24595
24596 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
24597 citation markers at start of each line.
24598
24599 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
24600
24601 * files.el (mode-require-final-newline): Fix previous change.
24602 (require-final-newline): Fix type label.
24603
24604 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
24605
24606 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
24607 statement in buffer (broken by 2004-11-24 change).
24608
24609 2005-04-24 Kim F. Storm <storm@cua.dk>
24610
24611 * ido.el (ido-everywhere): Save and restore old read-buffer-function
24612 and read-file-name-function values. Don't overwrite existing
24613 non-nil values if ido-mode is enabled without ido-everywhere.
24614
24615 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
24616
24617 * files.el (mode-require-final-newline): Minor doc fix.
24618
24619 2005-04-24 Eli Zaretskii <eliz@gnu.org>
24620
24621 * subr.el (syntax-after): Doc fix.
24622 (syntax-class): If argument is nil, return nil. Mask off upper 16
24623 bits, not 8 bits.
24624
24625 * files.el (mode-require-final-newline): Doc fix.
24626 (backup-buffer-copy): Fix last change.
24627
24628 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24629
24630 * term/mac-win.el: Require select. Set selection-coding-system to
24631 mac-system-coding-system. Call menu-bar-enable-clipboard.
24632 (x-last-selected-text-clipboard, x-last-selected-text-primary)
24633 (x-select-enable-clipboard): New variables.
24634 (x-select-text, x-get-selection, x-selection-value)
24635 (x-get-selection-value, mac-select-convert-to-string)
24636 (mac-services-open-file, mac-services-open-selection)
24637 (mac-services-insert-text): New functions.
24638 (CLIPBOARD, FIND): Put mac-scrap-name property.
24639 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
24640 (public.tiff): Put mac-ostype property.
24641 (selection-converter-alist): Add entries for them.
24642 (mac-application-menu-map): New keymap.
24643 (interprogram-cut-function, interprogram-paste-function): Set to
24644 x-select-text and x-get-selection-value, respectively.
24645 (split-window-keep-point): Set to t.
24646
24647 2005-04-23 Richard M. Stallman <rms@gnu.org>
24648
24649 * files.el (read-directory-name): Always pass non-nil
24650 DEFAULT-FILENAME arg to read-file-name.
24651 (backup-buffer-copy, basic-save-buffer-2): Take care against
24652 writing thru an unexpected existing symlink.
24653 (revert-buffer): In indirect buffer, revert the base buffer.
24654 (magic-mode-alist): Doc fix.
24655 (buffer-stale-function): Doc fix.
24656 (minibuffer-with-setup-hook): Avoid warning.
24657 (mode-require-final-newline): Doc and custom fix.
24658
24659 * follow.el (follow-end-of-buffer): Use with-no-warnings.
24660
24661 * font-lock.el (font-lock-comment-face): On terminals with few colors,
24662 use the default appearance.
24663 (font-lock-comment-delimiter-face): New face, new variable.
24664
24665 * imenu.el (imenu--generic-function): The official position of a
24666 definition is the start of the line that BEG is in.
24667
24668 * midnight.el (midnight-timer): Move defvar up.
24669
24670 * mouse.el (mouse-drag-region-1): Delete some debugging code.
24671
24672 * saveplace.el (save-place-to-alist): Use with-no-warnings.
24673
24674 * startup.el (command-line): Use with-no-warnings.
24675
24676 * window.el (window-size-fixed): New defvar.
24677
24678 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
24679
24680 * mail/rmail.el (rmail-font-lock-keywords):
24681 Use font-lock-comment-delimiter-face.
24682
24683 * mail/sendmail.el (mail-font-lock-keywords):
24684 Use font-lock-comment-delimiter-face.
24685
24686 * progmodes/compile.el (next-error-highlight-timer): New defvar.
24687
24688 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
24689
24690 * progmodes/compile.el (compilation-mode-font-lock-keywords):
24691 Specify t for LAXMATCH when matching directories.
24692 Save match data around compilation-compat-error-properties form.
24693
24694 2005-04-23 David Kastrup <dak@gnu.org>
24695
24696 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
24697 Mention that the autoloaded aliases should be kept for AUCTeX.
24698
24699 2005-04-23 Andreas Schwab <schwab@suse.de>
24700
24701 * isearch.el (isearch-forward): Doc fix.
24702
24703 2005-04-23 Eli Zaretskii <eliz@gnu.org>
24704
24705 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
24706 (jit-lock-stealth-nice): Change default value to 0.5.
24707
24708 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
24709
24710 * abbrev.el (write-abbrev-file): Write table entries in
24711 alphabetical order by table name.
24712
24713 2005-04-22 Kim F. Storm <storm@cua.dk>
24714
24715 * ido.el (ido-read-internal): Fix `list' completion.
24716
24717 2005-04-22 Kenichi Handa <handa@m17n.org>
24718
24719 * recentf.el (recentf-save-file-coding-system): New variable.
24720 (recentf-save-list): Encode the file by
24721 recentf-save-file-coding-system and add coding: tag.
24722
24723 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
24724
24725 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
24726
24727 2005-04-21 Lute Kamstra <lute@gnu.org>
24728
24729 * loadhist.el (unload-feature): Don't remove a function from hooks
24730 if it is about to be restored to an autoload . Remove functions
24731 that will become unbound from auto-mode-alist. Simplify the code.
24732
24733 * subr.el (assq-delete-all): New implementation that is linear,
24734 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
24735 (rassq-delete-all): New function.
24736
24737 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
24738 Add size-indication-mode.
24739
24740 2005-04-21 Kenichi Handa <handa@m17n.org>
24741
24742 * international/mule-cmds.el: Add autoload for widget-value in
24743 eval-when-compile.
24744
24745 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
24746
24747 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
24748 Add tooltip-mode.
24749
24750 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
24751
24752 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
24753
24754 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
24755 (inferior-lisp-filter-regexp, inferior-lisp-program)
24756 (inferior-lisp-load-command, inferior-lisp-prompt)
24757 (inferior-lisp-mode-hook, lisp-source-modes)
24758 (inferior-lisp-load-hook): defvar->defcustom.
24759 (inferior-lisp-program, inferior-lisp-prompt)
24760 (inferior-lisp-load-hook): Doc fixes.
24761 (inferior-lisp-install-letter-bindings): Small change in
24762 introductory comment.
24763
24764 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
24765
24766 * vc.el (vc-annotate-color-map): Change some colors so that text
24767 using them as foreground is readable on both white and black
24768 backgrounds.
24769
24770 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24771
24772 * international/mule-conf.el (translation-table-for-input):
24773 Remove redundant declaration.
24774
24775 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
24776
24777 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
24778
24779 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
24780 (tooltip-toggle-gud-tips): New function.
24781
24782 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24783
24784 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
24785 right angle brackets.
24786
24787 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
24788
24789 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
24790
24791 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24792
24793 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
24794 Remove. Update callers to use expand-file-name instead.
24795
24796 * subr.el (syntax-class): New function.
24797
24798 * simple.el (blink-matching-open): Use it.
24799
24800 * paren.el (show-paren-function): Use it to recognize parens that are
24801 also used in 2-char comment markers.
24802
24803 2005-04-19 Lute Kamstra <lute@gnu.org>
24804
24805 * loadhist.el (unload-feature): Update for new format of
24806 load-history. Simplify the code.
24807
24808 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24809
24810 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
24811 (mac-add-charset-info): New function. Initialize variable
24812 mac-charset-info-alist using it.
24813 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
24814 for translation.
24815 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
24816 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
24817 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
24818 New CCL programs.
24819
24820 2005-04-19 Kim F. Storm <storm@cua.dk>
24821
24822 * simple.el (next-buffer, prev-buffer, next-error)
24823 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
24824 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
24825
24826 * bindings.el (next-buffer, prev-buffer, next-error)
24827 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
24828 (clone-indirect-buffer-other-window): Move bindings from simple.el.
24829 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
24830 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
24831
24832 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
24833
24834 * isearch.el (isearch-edit-string): Make the search-ring available for
24835 minibuffer history commands.
24836 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
24837 the default history commands now work just as well.
24838 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
24839
24840 2005-04-18 Kim F. Storm <storm@cua.dk>
24841
24842 * emulation/cua-base.el (cua--pre-command-handler): Add more
24843 elaborate check for shift modifier on non-window systems.
24844
24845 2005-04-18 Lars Hansen <larsh@math.ku.dk>
24846
24847 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
24848
24849 2005-04-18 Kim F. Storm <storm@cua.dk>
24850
24851 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
24852 and make it optional. Don't test tooltip-gud-echo-area here.
24853 (tooltip-gud-process-output, gdb-tooltip-print):
24854 Pass tooltip-gud-echo-area to tooltip-show.
24855 (tooltip-help-tips): Remove second optional arg to tooltip-show.
24856
24857 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24858
24859 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
24860 `display-graphic-p' may not be bound yet.
24861
24862 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
24863
24864 * startup.el (command-line): No longer enable Xterm Mouse mode by
24865 default in terminals compatible with xterm.
24866
24867 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
24868
24869 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
24870
24871 * tooltip.el (tooltip-gud-echo-area): Rename from
24872 tooltip-use-echo-area.
24873 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
24874 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
24875 area independently of where help tooltips are displayed.
24876
24877 2005-04-17 David Kastrup <dak@gnu.org>
24878
24879 * cus-theme.el (custom-theme-write-variables): Quote variables
24880 where necessary.
24881
24882 2005-04-17 Richard M. Stallman <rms@gnu.org>
24883
24884 * simple.el (yank-excluded-properties): Add follow-link to value.
24885
24886 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
24887
24888 * startup.el (fancy-splash-max-time): Just 30 seconds.
24889 (fancy-splash-delay): Just 7.
24890 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
24891
24892 * loadhist.el (unload-feature): Update for new format of load-history.
24893 Simplify the code.
24894
24895 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
24896 (rmail-font-lock-keywords): Don't fontify the text of a citation.
24897
24898 * mail/sendmail.el (mail-font-lock-keywords):
24899 Don't fontify subject text.
24900 Don't fontify the text of a citation.
24901
24902 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
24903
24904 * comint.el (comint-output-filter): Run comint-output-filter-functions
24905 with point where the user had it.
24906
24907 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
24908
24909 * international/ucs-tables.el (ucs-set-table-for-input):
24910 Disable when using unify-on-decoding.
24911
24912 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
24913
24914 * emulation/cua-base.el (cua-global-mark-face): Add special case
24915 for displays supporting a high number of colors.
24916
24917 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
24918
24919 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
24920
24921 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
24922
24923 * filesets.el (filesets-add-buffer): If user supplies a name of a
24924 non-existing fileset, create a new fileset.
24925
24926 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
24927
24928 * textmodes/org.el (org-up-heading-all): Fix bug with
24929 `outline-up-heading-all'.
24930
24931 2005-04-16 Andreas Schwab <schwab@suse.de>
24932
24933 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
24934 /etc/permissions.d/* and /etc/aliases.d/*.
24935
24936 2005-04-16 Kenichi Handa <handa@m17n.org>
24937
24938 * international/code-pages.el (cp-make-coding-system):
24939 Set `translation-table-for-input' property value to the symbol
24940 ucs-mule-to-mule-unicode, not to that value.
24941 (pt154): Escape guillemet by `\'.
24942
24943 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
24944
24945 * loadup.el: Load tooltip if x-show-tip is fboundp.
24946
24947 * startup.el (command-line): Add comment.
24948
24949 * tooltip.el (tooltip-mode): Specify correct standard value for
24950 Custom in init-value.
24951
24952 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
24953
24954 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
24955 possible.
24956
24957 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
24958
24959 * textmodes/org.el (org-agenda-date-prompt): Rename from
24960 `org-agenda-date-today'.
24961 (org-evaluate-time-range): Insert at point instead of directly
24962 after time range.
24963 (org-first-headline-recenter, org-subtree-end-visible-p)
24964 (org-optimize-window-after-visibility-change): New functions
24965 (org-agenda-post-command-hook): Don't allow point at end of line,
24966 to make sure it always hits the text properties.
24967 (org-agenda-next-date-line, org-agenda-previous-date-line):
24968 New commands.
24969 (org-set-regexps-and-options): Category may contain white space.
24970 (org-agenda-get-deadlines, org-agenda-get-scheduled):
24971 Improve marker positions.
24972 (org-agenda-new-marker): Argument POS made optional.
24973 (org-agenda-get-timestamps): Deadlines which are done are listed
24974 in org-done-face now.
24975 (org-agenda-get-todos, org-agenda-get-timestamps)
24976 (org-agenda-get-deadlines, org-agenda-get-scheduled):
24977 Set `undone-face' and `done-face' properties.
24978 (org-last-todo-state-is-todo): New variable.
24979 (org-todo): Set `org-last-todo-state-is-todo'.
24980 (org-agenda-todo): Change face according to
24981 `org-last-todo-state-is-todo'. And change other lines referring to
24982 the same entry.
24983 (org-calendar-goto-agenda): New command.
24984 (org-calendar-to-agenda-key): New option.
24985 (org-startup-folded): New allowed value `content'.
24986 (org-set-regexps-and-options): Accept new value `content' for
24987 `org-startup-folded'.
24988 (org-get-current-options): Handle new value `content' for
24989 `org-startup-folded'.
24990 (org-insert-todo-heading): New command.
24991 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
24992 interactively in empty file and option
24993 `org-insert-mode-line-in-empty-file' has been set.
24994 (org-agenda-todo, org-agenda-priority): Modify to use
24995 `org-agenda-change-all-lines'.
24996 (org-warning-face): Change color on dark background
24997
24998 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24999
25000 * international/mule-cmds.el (set-locale-environment): On Mac OS,
25001 use preferences AppleLocale and AppleLanguages, and variable
25002 mac-system-locale for default locale. On Mac OS Classic, use
25003 mac-system-coding-system for default coding systems.
25004
25005 * term/mac-win.el: Don't set file-name-coding-system.
25006 Decode variables system-name, emacs-build-system, user-login-name, and
25007 user-full-name by mac-system-coding-system on Mac OS Classic.
25008 (mac-system-coding-system): New variable.
25009
25010 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
25011
25012 * startup.el (command-line): Handle `xterm-mouse-mode' before
25013 reading init file.
25014
25015 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
25016
25017 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
25018
25019 * progmodes/sh-script.el (sh-here-document-word): Make it a
25020 defcustom. Doc fix.
25021 (sh-add): Bash uses $(( )) for arithmetic.
25022 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
25023 (sh-maybe-here-document): Remove quotes and leading whitespace
25024 from heredoc word when closing. Indent heredoc with tabs if word
25025 starts with "-".
25026
25027 2005-04-13 Richard M. Stallman <rms@gnu.org>
25028
25029 * simple.el (undo): Fix previous change.
25030
25031 * custom.el (defface): Doc fix.
25032
25033 2005-04-13 Lute Kamstra <lute@gnu.org>
25034
25035 * Makefile.in (DONTCOMPILE): Remove list.
25036 (compile, compile-always): Don't use DONTCOMPILE.
25037 (update-authors): Load the library in which batch-update-authors
25038 is defined.
25039 * makefile.w32-in (DONTCOMPILE): Remove list.
25040 (compile, compile-always): Fix comments.
25041 (update-authors): Load the library in which batch-update-authors
25042 is defined.
25043
25044 * generic-x.el (generic-mode-ini-file-find-file-hook):
25045 Rename to ini-generic-mode-find-file-hook.
25046 Keep generic-mode-ini-file-find-file-hook as an alias.
25047 (ini-generic-mode-find-file-hook): Rename from
25048 generic-mode-ini-file-find-file-hook. Fix docstring.
25049 (ini-generic-mode): Docstring change.
25050 (bat-generic-mode-run-as-comint): Silence the byte compiler.
25051
25052 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
25053 called from lisp.
25054
25055 * generic.el: Move to the emacs-lisp subdir.
25056
25057 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
25058
25059 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
25060 and C-S- function and cursor motion keys.
25061
25062 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
25063
25064 * startup.el (command-line): Enable Xterm Mouse mode by default.
25065 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
25066 for Custom. No longer show "Mouse" in mode line when enabled.
25067 Doc fix.
25068
25069 2005-04-12 Kim F. Storm <storm@cua.dk>
25070
25071 * emulation/cua-base.el (cua-rectangle-face)
25072 (cua-rectangle-noselect-face): Define face attributes here.
25073
25074 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
25075
25076 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25077
25078 * startup.el (command-line): Turn off blinking cursor if
25079 cursorBlink in resources is off or false.
25080
25081 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25082
25083 * term/mac-win.el (dnd): Require dnd.
25084 (mac-drag-n-drop): Call dnd-handle-one-url.
25085 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
25086 (kTextEncodingISOLatin2): Remove constants.
25087 (mac-script-code-coding-systems): New constant.
25088 (mac-handle-language-change): New function.
25089 (special-event-map): Bind it to `language-change' event.
25090 (mac-centraleurroman, mac-cyrillic): New coding systems.
25091 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
25092 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
25093 and mac-cyrillic-encoder to encode-mac-centraleurroman and
25094 encode-mac-cyrillic, respectively.
25095
25096 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
25097
25098 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
25099 Don't set overlay-arrow-string to "=>" as this is done
25100 globally in C now.
25101
25102 2005-04-12 Lute Kamstra <lute@gnu.org>
25103
25104 * generic-x.el (rc-generic-mode, rul-generic-mode):
25105 Fix auto-mode-alist entries.
25106 (etc-fstab-generic-mode): Tweak fontification.
25107
25108 * generic.el (generic-make-keywords-list): Fix docstring.
25109 (generic-mode-internal): Simplify generic-font-lock-keywords.
25110
25111 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
25112
25113 * whitespace.el (whitespace-buffer-leading)
25114 (whitespace-buffer-trailing): Revert the incorrect test inversion.
25115 However, fix the highlight area for the leading and
25116 trailing whitespaces to show space.
25117
25118 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
25119
25120 * whitespace.el (whitespace-version): Bump to 3.5
25121
25122 (whitespace-buffer-leading, whitespace-buffer-trailing):
25123 Invert sense of the test to highlight the whitespace.
25124
25125 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
25126
25127 * progmodes/gud.el (gud-display-line): GUD uses its own
25128 overlay arrow now so don't set overlay-arrow-string.
25129 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
25130
25131 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
25132
25133 * term.el (term-ansi-current-bold, term-ansi-current-underline)
25134 (term-ansi-current-reverse, term-ansi-current-invisible)
25135 (term-ansi-face-already-done): Change to boolean.
25136 (term-reset-terminal, term-handle-colors-array): Handle the above
25137 vars accordingly.
25138 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
25139 (term-emulate-terminal): Use the new name.
25140
25141 * faces.el (secondary-selection): Use yellow1, not yellow.
25142 (trailing-whitespace): Use red1, not red.
25143
25144 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25145
25146 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
25147 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
25148 (dired-dnd-handle-file): Call dnd-get-local-file-uri
25149
25150 * cus-edit.el (dnd): New group.
25151
25152 * term/w32-win.el (dnd): Require dnd
25153 (w32-drag-n-drop): Call dnd-handle-one-url.
25154
25155 * x-dnd.el: Require dnd.
25156 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
25157 Call dnd-handle-one-url.
25158 (x-dnd-types-alist, x-dnd-insert-utf8-text)
25159 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
25160 to dnd-insert-text.
25161 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
25162 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
25163 (x-dnd-get-local-file-name, x-dnd-open-local-file)
25164 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
25165
25166 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
25167
25168 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
25169
25170 * wdired.el: Doc fixes.
25171 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
25172 (wdired-use-dired-vertical-movement): Rename from
25173 wdired-always-move-to-filename-beginning.
25174 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
25175 (wdired-change-to-wdired-mode): Change mode name.
25176 (wdired-newline): Delete.
25177
25178 2005-04-11 Richard M. Stallman <rms@gnu.org>
25179
25180 * whitespace.el (whitespace-highlight-the-space):
25181 Don't call whitespace-unhighlight-the-space here.
25182
25183 * simple.el (undo): Record t in undo-equiv-table
25184 for the redo record made by an undo-in-region.
25185
25186 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
25187
25188 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
25189 (gdb-frame-inferior-io-buffer): New Functions to control
25190 display of separate IO buffer.
25191 (menu): Add them to menu-bar.
25192 (gdb-display-buffer): Check for buffer another frame.
25193 Protect GUD buffer.
25194 (gdb-setup-windows): Create IO buffer if not already there.
25195 (gdb-memory-mode): Remove purecopy noops.
25196
25197 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25198
25199 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
25200 and pass to self-insert-command.
25201
25202 2005-04-11 Lute Kamstra <lute@gnu.org>
25203
25204 * generic.el: Commentary section cleanup.
25205 (generic): Delete.
25206 (generic-use-find-file-hook, generic-lines-to-scan)
25207 (generic-find-file-regexp, generic-ignore-files-regexp)
25208 (default-generic-mode, generic-mode-find-file-hook)
25209 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
25210 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
25211 (generic-use-find-file-hook, generic-lines-to-scan)
25212 (generic-find-file-regexp, generic-ignore-files-regexp)
25213 (default-generic-mode, generic-mode-find-file-hook)
25214 (generic-mode-ini-file-find-file-hook): Move from generic.el.
25215
25216 2005-04-10 Karl Fogel <kfogel@red-bean.com>
25217
25218 * bookmark.el (bookmark-write-file): Catch errors writing file.
25219 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
25220
25221 2005-04-10 Richard M. Stallman <rms@gnu.org>
25222
25223 * startup.el (fancy-splash-tail): Update copyright year.
25224 (command-line): Split part of -Q into -D.
25225 (emacs-basic-display): New defvar.
25226 (fancy-splash-text): Correct name of menu item.
25227
25228 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
25229
25230 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
25231 lines in one node.
25232
25233 * comint.el (comint-send-input): New arg ARTIFICIAL.
25234 Callers in this file changed.
25235
25236 * abbrev.el (define-abbrevs): Read system abbrevs properly.
25237
25238 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
25239
25240 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
25241
25242 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
25243 `ldap-search-internal'.
25244
25245 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
25246
25247 * files.el (set-auto-mode-1): Use line-end-position.
25248
25249 * international/latin-1.el:
25250 * international/latin-2.el:
25251 * international/latin-3.el:
25252 * international/latin-4.el:
25253 * international/latin-5.el:
25254 * international/latin-8.el:
25255 * international/latin-9.el: Give punctuation syntax to NBSP.
25256
25257 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
25258 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
25259 Use char-classes to accept non-ascii letters, accepted in some recent
25260 bibtex implementations.
25261
25262 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
25263
25264 * custom.el (custom-set-minor-mode): Any non-nil value for the
25265 variable should enable the mode when set through Custom.
25266
25267 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
25268
25269 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
25270 TAB binding so tab-always-indent is obeyed.
25271 (vhdl-minibuffer-local-map): Move initialization into declaration.
25272 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
25273 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
25274 (vhdl-hooked-abbrev): Avoid test for XEmacs.
25275 (vhdl-current-line): Use line-beginning-position.
25276 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
25277 with-output-to-temp-buffer, so the current position can be recorded.
25278
25279 2005-04-10 Masatake YAMATO <jet@gyve.org>
25280
25281 * progmodes/compile.el (compilation-error-regexp-alist-alist):
25282 Add regexp for gcov.
25283
25284 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
25285
25286 * calendar/time-date.el (time-to-seconds, seconds-to-time)
25287 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
25288 syntax which Emacs 20 doesn't support.
25289
25290 2005-04-09 Richard M. Stallman <rms@gnu.org>
25291
25292 * help.el (describe-key-briefly, describe-key):
25293 Replace strings as event types with "(any string)".
25294
25295 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
25296
25297 * arc-mode.el (archive-mode-map): Move initialization into
25298 the declaration. Override *all* bindings of `undo'.
25299 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
25300
25301 2005-04-09 Jay Belanger <belanger@truman.edu>
25302
25303 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
25304
25305 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
25306
25307 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
25308 (xterm-register-default-colors): Update color values computation
25309 to match xterm-200.
25310
25311 2005-04-09 Kenichi Handa <handa@m17n.org>
25312
25313 * international/code-pages.el (iso-latin-7): Fix the map.
25314
25315 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
25316
25317 * emacs-lisp/lisp.el (defun-prompt-regexp)
25318 (parens-require-spaces, buffer-end, end-of-defun)
25319 (insert-parentheses): Doc fixes.
25320
25321 2005-04-08 Kim F. Storm <storm@cua.dk>
25322
25323 * comint.el (comint-highlight-prompt): Fix face spec.
25324 * hi-lock.el (hi-green): Likewise.
25325
25326 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
25327
25328 * cus-edit.el (custom-modified-face):
25329 * comint.el (comint-highlight-input): Fix previous changes.
25330 * term.el (term-handle-ansi-escape): Add a comment.
25331
25332 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
25333
25334 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
25335 in the buffer and in whitespace-highlighted-space.
25336 (whitespace-unhighlight-the-space): Simplify.
25337 (whitespace-buffer): Simplify.
25338
25339 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
25340
25341 * textmodes/table.el (table-cell-face): Add special case for
25342 displays supporting a high number of colors.
25343 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
25344 (vhdl-font-lock-reserved-words-face)
25345 (vhdl-speedbar-architecture-face)
25346 (vhdl-speedbar-instantiation-face)
25347 (vhdl-speedbar-architecture-selected-face)
25348 (vhdl-speedbar-instantiation-selected-face): Likewise.
25349 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
25350 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
25351 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
25352 (ebrowse-root-class-face, ebrowse-member-attribute-face)
25353 (ebrowse-progress-face): Likewise.
25354 * progmodes/compile.el (compilation-info-face): Likewise.
25355 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
25356 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
25357 * calendar/calendar.el (diary-face): Likewise.
25358 * woman.el (woman-italic-face, woman-bold-face)
25359 (woman-unknown-face): Likewise.
25360 * wid-edit.el (widget-button-pressed-face): Likewise.
25361 * whitespace.el (whitespace-highlight-face): Likewise.
25362 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
25363 * pcvs-info.el (cvs-marked-face): Likewise.
25364 * info.el (info-xref): Likewise.
25365 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
25366 * hilit-chg.el (highlight-changes-face)
25367 (highlight-changes-delete-face): Likewise.
25368 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
25369 (hi-red-b): Likewise.
25370 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
25371 * font-lock.el (font-lock-keyword-face)
25372 (font-lock-function-name-face, font-lock-warning-face): Likewise.
25373 * cus-edit.el (custom-invalid-face, custom-modified-face)
25374 (custom-set-face, custom-changed-face, custom-variable-tag-face)
25375 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
25376 * comint.el (comint-highlight-prompt): Likewise.
25377
25378 2005-04-08 Lute Kamstra <lute@gnu.org>
25379
25380 * font-lock.el (font-lock-keywords): Docstring fixes.
25381
25382 2005-04-08 Kenichi Handa <handa@m17n.org>
25383
25384 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
25385 chars are more than a limit, print " and more..." at the tail.
25386
25387 2005-04-08 Kim F. Storm <storm@cua.dk>
25388
25389 * emacs-lisp/authors.el (authors-aliases): Update list.
25390 (authors-ignored-files): New list.
25391 (authors-fixed-entries): Fix typo.
25392 (authors-renamed-files-alist): Update list.
25393 (authors-add): Check authors-ignored-files.
25394
25395 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
25396
25397 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
25398 optional, to ensure backward compatibility.
25399
25400 2005-04-08 Stephen Eglen <stephen@gnu.org>
25401
25402 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
25403
25404 2005-04-08 Kim F. Storm <storm@cua.dk>
25405
25406 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
25407
25408 * mouse.el (mouse-on-link-p): Doc fix.
25409
25410 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
25411
25412 * ielm.el (ielm-prompt-read-only): Doc fix.
25413
25414 * comint.el (comint-prompt-read-only): Doc fix.
25415
25416 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
25417
25418 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
25419 ensure dired always handles wildcards passed to ffap.
25420 (find-file-at-point): Use it.
25421 (ffap-dired-wildcards): Doc fix.
25422
25423 2005-04-07 Juri Linkov <juri@jurta.org>
25424
25425 * simple.el (next-error-overlay-arrow-position): New defvar.
25426 Put "=>" on its property `overlay-arrow-string'. Add it to
25427 `overlay-arrow-variable-list'.
25428
25429 * progmodes/compile.el (compilation-setup):
25430 Set `next-error-overlay-arrow-position' to nil. Also set it to
25431 nil in the local hook `kill-buffer-hook'. Make local variable
25432 `overlay-arrow-string' and set it to "=>".
25433 (compilation-goto-locus): Set BOL position to
25434 `next-error-overlay-arrow-position' instead of
25435 `overlay-arrow-position'.
25436
25437 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
25438 locally instead of adding it to the global hook.
25439 (Info-kill-buffer): Move up.
25440
25441 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
25442
25443 * term/xterm.el (xterm-standard-colors): Update color values from
25444 xterm-200.
25445
25446 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
25447
25448 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
25449
25450 * fast-lock.el:
25451 * lazy-lock.el: Move them to the obsolete subdir.
25452
25453 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
25454
25455 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
25456 (wdired-add-replace-advice): Remove.
25457 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
25458
25459 2005-04-06 Kim F. Storm <storm@cua.dk>
25460
25461 * startup.el (command-line): Add --bare-bones alias for -Q.
25462
25463 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25464
25465 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
25466 create the startup fontset if a font specification ends with
25467 `mac-roman'.
25468
25469 2005-04-06 Lute Kamstra <lute@gnu.org>
25470
25471 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
25472 change.
25473
25474 * emacs-lisp/copyright.el (copyright-update-year): Replace the
25475 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
25476
25477 2005-04-05 Lute Kamstra <lute@gnu.org>
25478
25479 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
25480 (define-generic-mode): Ditto. Fix debug declaration.
25481
25482 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
25483 Put them in the generic-x group.
25484
25485 * calendar/timeclock.el (timeclock): Doc fix.
25486
25487 * generic.el (define-generic-mode): Don't use custom-current-group.
25488 Document default :group value.
25489 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
25490 (define-global-minor-mode): Don't use custom-current-group.
25491
25492 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
25493
25494 * startup.el (command-line-1): Display startup-echo-area-message
25495 when fancy splash screen is in use.
25496
25497 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
25498 (sh-escaped-newline): New face.
25499 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
25500 newline, and use sh-escaped-newline face.
25501
25502 * progmodes/tcl.el (tcl-escaped-newline): New face.
25503 (tcl-builtin-list): New variable.
25504 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
25505 newlines. Fix keywords subexpression number.
25506
25507 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
25508
25509 * textmodes/org.el (org-diary-default-entry): Fix call to
25510 `add-to-diary-entry'.
25511
25512 2005-04-05 Kim F. Storm <storm@cua.dk>
25513
25514 * ediff-init.el: Use (featurep 'xemacs).
25515
25516 2005-04-05 David Ponce <david@dponce.com>
25517
25518 * cus-edit.el (face): Derive from symbol widget. Display sample
25519 of the current face on the fly.
25520 (widget-face-sample-face-get, widget-face-notify): New functions.
25521 (widget-face-value-create): Remove.
25522
25523 * wid-edit.el (widget-field-end): Temporarily remove field
25524 narrowing before to call `get-char-property'.
25525
25526 2005-04-04 Jay Belanger <belanger@truman.edu>
25527
25528 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
25529 (math-read-subscripts): New variable.
25530 (math-read-preprocess-string): Process subscripts.
25531
25532 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
25533
25534 * comint.el (comint-prompt-read-only): Doc fix.
25535
25536 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
25537 `-1'. Doc fix.
25538
25539 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
25540
25541 * textmodes/org.el (org-insert-mode-line-in-empty-file):
25542 Change default value to nil.
25543
25544 2005-04-04 Lute Kamstra <lute@gnu.org>
25545
25546 * autorevert.el (auto-revert-mode): Specify :group.
25547 * battery.el (display-battery-mode): Specify :group.
25548 * diff-mode.el (diff-minor-mode): Specify :group.
25549 * font-core.el (font-lock-mode): Specify :group.
25550 * hl-line.el (hl-line-mode): Specify :group.
25551 * iimage.el (iimage): New customization group.
25552 (iimage-mode): Specify :group.
25553 * longlines.el (longlines-mode): Specify :group.
25554 * master.el: Don't require easy-mmode.
25555 (master): New customization group.
25556 (master-mode): Specify :group.
25557 * msb.el (msb-mode): Specify :group.
25558 * reveal.el (reveal-mode): Specify :group.
25559 * simple.el (next-error-follow-minor-mode): Specify :group.
25560 * smerge-mode.el (smerge-mode): Specify :group.
25561 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
25562 * emulation/cua-base.el (cua-mode): Specify :group.
25563 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
25564 * language/thai-util.el (thai-auto-composition-mode)
25565 (thai-word-mode): Specify :group.
25566 * mail/supercite.el (sc-minor-mode): Specify :group.
25567 * progmodes/cwarn.el (cwarn-mode): Specify :group.
25568 * progmodes/flymake.el (flymake-mode): Specify :group.
25569 * progmodes/glasses.el (glasses-mode): Specify :group.
25570 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
25571 * textmodes/enriched.el (enriched-mode): Specify :group.
25572 * textmodes/refill.el (refill-mode): Specify :group.
25573
25574 * add-log.el (change-log-font-lock-keywords): Names in
25575 parenthesized lists can contain spaces.
25576
25577 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
25578
25579 * startup.el (fancy-splash-text): Shorten default text of
25580 "Emacs Tutorial" line. Also, if the current language env
25581 indicates an available tutorial file other than TUTORIAL,
25582 extract its title and append it to the line in parentheses.
25583 (fancy-splash-insert): If arg is a thunk, funcall it.
25584
25585 2005-04-04 Jay Belanger <belanger@truman.edu>
25586
25587 * calc.el (calc-language-alist): Add tags to customization type.
25588
25589 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
25590
25591 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
25592 Doc fix.
25593
25594 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
25595
25596 * add-log.el (change-log-font-lock-keywords): The manual
25597 describing a Change Log entry, says: (...) "Aside from these
25598 header lines, every line in the change log starts with a space or
25599 a tab.". The font-lock was not highlighting lines started with
25600 spaces, added support for it.
25601
25602 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
25603
25604 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
25605 (bibtex-generate-url-list): Update docstring accordingly. Put the
25606 complex example in the docstring.
25607 (bibtex-font-lock-url): Use pop.
25608
25609 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
25610
25611 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
25612
25613 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
25614
25615 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
25616
25617 * filesets.el (filesets-set-default): Doc fix.
25618
25619 2005-04-03 Lute Kamstra <lute@gnu.org>
25620
25621 * generic.el (define-generic-mode): Add argument to specify
25622 keywords for defcustom.
25623 (default-generic-mode): Specify :group.
25624
25625 * generic-x.el: Specify :group for all generic modes.
25626
25627 * desktop.el (desktop-no-desktop-file-hook)
25628 (desktop-after-read-hook): Doc fix.
25629
25630 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
25631
25632 * simple.el (visible-mode): Use explicit :group keyword.
25633 This changes the group of `visible-mode-hook' from paren-blinking
25634 to editing-basics.
25635
25636 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
25637
25638 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
25639 mailbox specifications as well as URLs.
25640 (rmail-insert-inbox-text): Remove unused conditional branches.
25641
25642 2005-04-01 Jay Belanger <belanger@truman.edu>
25643
25644 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
25645 (calc-gnuplot-print-command): Move definitions to calc.el.
25646
25647 * calc/calc-embed.el (calc-embedded-announce-formula)
25648 (calc-embedded-open-formula, calc-embedded-close-formula)
25649 (calc-embedded-open-word, calc-embedded-close-word)
25650 (calc-embedded-open-plain, calc-embedded-close-plain)
25651 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
25652 (calc-embedded-open-mode, calc-embedded-close-mode):
25653 Move definitions to calc.el.
25654
25655 * calc/calc.el (calc-settings-file, calc-language-alist):
25656 Make customizable.
25657 (calc-embedded-announce-formula, calc-embedded-open-formula)
25658 (calc-embedded-close-formula, calc-embedded-open-word)
25659 (calc-embedded-close-word, calc-embedded-open-plain)
25660 (calc-embedded-close-plain, calc-embedded-open-new-formula)
25661 (calc-embedded-close-new-formula, calc-embedded-open-mode)
25662 (calc-embedded-close-mode, calc-gnuplot-name)
25663 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
25664 from other files and make customizable.
25665
25666 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
25667
25668 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
25669 Use buffer-live-p.
25670 (cvs-mode-run): Don't call cvs-update-header here.
25671 (cvs-run-process): Call cvs-update-header.
25672 Use process properties for cvs-postprocess and cvs-buffer so that
25673 the sentinel can behave better if the temp buffer is killed.
25674 Use a pipe rather than a tty, to better handle unexpected prompts.
25675 (cvs-sentinel): Rewrite. Call cvs-update-header.
25676
25677 2005-04-01 Andre Spiegel <spiegel@gnu.org>
25678
25679 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
25680 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
25681
25682 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25683
25684 * generic.el (define-generic-mode): Add indentation rule.
25685
25686 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
25687
25688 * files.el (mode-require-final-newline): Make Custom correctly
25689 report a nil value and allow to set it to nil via Custom.
25690 Doc fix.
25691
25692 2005-04-01 Kenichi Handa <handa@m17n.org>
25693
25694 * international/characters.el: Enable the correct case setting for
25695 dotless-i and dotted-I.
25696
25697 2005-04-01 Kim F. Storm <storm@cua.dk>
25698
25699 * ido.el (ido-file-internal): Fall back to non-ido command if
25700 initial directory is on slow ftp (or tramp) host.
25701
25702 2005-03-31 Richard M. Stallman <rms@gnu.org>
25703
25704 * emacs-lisp/autoload.el (make-autoload):
25705 Handle define-global-minor-mode.
25706
25707 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
25708 Rename from easy-mmode-define-global-mode.
25709 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
25710
25711 * progmodes/scheme.el (scheme-mode-syntax-table):
25712 Update syntax of | and # for two-character comment syntax.
25713
25714 2005-03-31 Lute Kamstra <lute@gnu.org>
25715
25716 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
25717 (define-minor-mode): Call custom-current-group at load-time.
25718
25719 * generic.el (define-generic-mode): Add debug declaration.
25720 Add defcustom for the mode hook.
25721 (generic-mode-internal): Use run-mode-hooks.
25722
25723 2005-03-31 Kim F. Storm <storm@cua.dk>
25724
25725 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
25726 (mouse-fixup-help-message): New defun called by show_help_echo
25727 to fixup mouse-2 prefix in help messages when applicable.
25728
25729 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
25730
25731 2005-03-31 Kenichi Handa <handa@m17n.org>
25732
25733 * language/thai-word.el (thai-find-word-ends): Pay attention to
25734 the case that we reach the end of buffer.
25735
25736 * textmodes/fill.el (fill-text-properties-at): New function.
25737 (fill-newline): Use fill-text-properties-at instead of
25738 text-properties-at.
25739
25740 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
25741
25742 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
25743 not comint-quote-filename.
25744
25745 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
25746
25747 * help-fns.el (help-with-tutorial): Revert last change.
25748
25749 2005-03-31 Kim F. Storm <storm@cua.dk>
25750
25751 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
25752
25753 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
25754
25755 * calendar/cal-china.el: Update reference to "Calendrical
25756 Calculations" book; there's a new edition.
25757 * calendar/cal-coptic.el: Likewise.
25758 * calendar/cal-french.el: Likewise.
25759 * calendar/cal-hebrew.el: Likewise.
25760 * calendar/cal-islam.el: Likewise.
25761 * calendar/cal-iso.el: Likewise.
25762 * calendar/cal-julian.el: Likewise.
25763 * calendar/cal-mayan.el: Likewise.
25764 * calendar/cal-persia.el: Likewise.
25765 * calendar/calendar.el: Likewise.
25766 * calendar/holidays.el: Likewise.
25767 * calendar/lunar.el: Likewise.
25768 * calendar/solar.el: Likewise.
25769
25770 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
25771 white space from doc string.
25772
25773 2005-03-30 Jay Belanger <belanger@truman.edu>
25774
25775 * calc/calc-help.el (calc-full-help): Remove email address.
25776
25777 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
25778
25779 * help-fns.el (help-with-tutorial): Delete title line.
25780
25781 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
25782
25783 * calendar/cal-x.el (calendar-one-frame-setup)
25784 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
25785 rather than `symbol' for set-window-dedicated-p.
25786
25787 * calendar/appt.el (appt-buffer-name): Make it a constant.
25788 (appt-add): Doc fix.
25789
25790 * filesets.el (filesets-menu-path, filesets-menu-before)
25791 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
25792 (filesets-menu-cache-file): Use directory ~/.emacs.d.
25793 (filesets-add-submenu): Delete and use add-submenu instead.
25794
25795 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
25796
25797 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
25798 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
25799 (org-diary-default-entry): New function.
25800 (org-get-entries-from-diary): Better parsing of diary entries.
25801 (org-agenda-check-no-diary): New function.
25802 ("diary-lib"): Advice to function `add-to-diary-list', to allow
25803 linking to diary entries.
25804 (org-agenda-execute-calendar-command): New function.
25805 (org-agenda): Improve visible section in window.
25806 Use `org-fit-agenda-window'.
25807 (org-fit-agenda-window): New option.
25808 (org-move-subtree-down): Better handling of empty lines
25809 at end of subtree.
25810 (org-cycle): Numeric prefix is interpreted now as show-subtree N
25811 levels up.
25812 (org-fontify-done-headline): New option.
25813 (org-headline-done-face): New face.
25814 (org-set-font-lock-defaults): Use `org-headline-done-face'.
25815 (org-table-copy-down): Rename from `org-table-copy-from-above'.
25816 When current field is non-empty, it is copied to next row.
25817 (org-table-copy-from-above): Fix bug which made it
25818 impossible to copy fields containing only a single non-white character.
25819
25820 2005-03-30 Kim F. Storm <storm@cua.dk>
25821
25822 * kmacro.el (kmacro-end-macro): Isearch may store this command
25823 into the macro -- so ignore it when executing keyboard macro.
25824
25825 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
25826
25827 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
25828
25829 2005-03-29 Kenichi Handa <handa@m17n.org>
25830
25831 * language/thai.el ("Thai"): Set setup-function and exit-function
25832 for Thai language environment.
25833
25834 * language/thai-util.el: Require thai-word.
25835 (thai-word-mode-map): New variable.
25836 (thai-word-mode): New minor mode.
25837 (setup-thai-language-environment-internal): New function.
25838 (exit-thai-language-environment-internal): New function.
25839
25840 * language/thai-word.el (thai-word-table): Declare it by defvar,
25841 use dolist to initialize it.
25842 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
25843 (thai-fill-find-break-point): New functions.
25844
25845 2005-03-29 Richard M. Stallman <rms@gnu.org>
25846
25847 * simple.el (idle-update-delay): Move definition up.
25848 (set-mark): Doc fix.
25849
25850 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
25851
25852 * longlines.el: New file.
25853
25854 * simple.el (buffer-substring-filters): New variable.
25855 (filter-buffer-substring): New function.
25856 (kill-region, copy-region-as-kill): Use it.
25857
25858 * register.el (copy-to-register, append-to-register)
25859 (prepend-to-register): Use filter-buffer-substring.
25860
25861 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
25862
25863 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
25864 (gud-filter-pending-text): Move in front of gdb.
25865 (gud-overlay-arrow-position): New variable.
25866 (gud-sentinel, gud-display-line): Use it in place of
25867 overlay-arrow-position.
25868
25869 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
25870
25871 * progmodes/fortran.el (fortran-if-indent): Doc fix.
25872 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
25873 (fortran-font-lock-keywords-4): New variable.
25874 (fortran-blocks-re, fortran-end-block-re)
25875 (fortran-start-block-re): New constants, for hideshow.
25876 (hs-special-modes-alist): Add a Fortran entry.
25877 (fortran-mode-map): Bind fortran-end-of-block,
25878 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
25879 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
25880 (fortran-looking-at-if-then, fortran-end-of-block)
25881 (fortran-beginning-of-block): New functions, for hideshow.
25882
25883 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
25884 Doc fix. Tweak regexp.
25885 (f90-beginning-of-block): Push mark first.
25886
25887 2005-03-29 Jay Belanger <belanger@truman.edu>
25888
25889 * calc/calc.el: Update copyright date.
25890 (calc-version): Increase to 2.1.
25891 (calc-version-date): Remove.
25892
25893 * calc/calc-help.el: Update copyright date.
25894 (calc-full-help): Remove reference to calc-version-date.
25895 Update copyright date.
25896
25897 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
25898
25899 * vc.el (vc-do-command): Use a pipe for async processes, so password
25900 prompts don't show up at places where the user can't reply.
25901
25902 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
25903
25904 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
25905 on the file name we pass to the inferior shell.
25906
25907 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25908
25909 * progmodes/which-func.el (which-function): Be robust in the face of an
25910 imenu--make-index-alist failure.
25911
25912 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
25913
25914 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
25915
25916 * progmodes/python.el (python-preoutput-filter): Fix last change.
25917
25918 2005-03-29 Lute Kamstra <lute@gnu.org>
25919
25920 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
25921 functions and compiled macros.
25922 (debug-convert-byte-code): Handle macros too.
25923 (debug-on-entry-1): Don't signal an error when trying to clear a
25924 function that is not set to debug on entry.
25925
25926 2005-03-29 Jay Belanger <belanger@truman.edu>
25927
25928 * calc/calc-lang.el: Add functions to math-function-table
25929 properties of tex and math.
25930
25931 2005-03-29 Kenichi Handa <handa@m17n.org>
25932
25933 * ps-mule.el (ps-mule-plot-string): Translate characters by
25934 ps-print-translation-table.
25935 (ps-mule-begin-job): Call find-charset-region/string with
25936 ps-print-translation-table.
25937 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
25938
25939 * ps-print.el (ps-print-translation-table): New variable.
25940 (ps-plot-region): Translate characters by ps-print-translation-table.
25941
25942 2005-03-29 Juri Linkov <juri@jurta.org>
25943
25944 * simple.el (next-error-highlight-timer): New variable.
25945
25946 * progmodes/compile.el (compilation-goto-locus):
25947 Use `next-error-highlight-timer' instead of `sit-for'.
25948
25949 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
25950
25951 * mail/supercite.el (sc-mail-field): Use assoc-string.
25952 (sc-get-address): Simplify regexps.
25953
25954 * files.el (minibuffer-with-setup-hook): New macro.
25955 (find-file-read-args): Use it to avoid let-binding
25956 minibuffer-with-setup-hook (which breaks turning on/off
25957 file-name-shadow-mode while in the prompt).
25958
25959 * complete.el (PC-read-include-file-name-internal):
25960 Use test-completion.
25961
25962 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
25963
25964 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
25965
25966 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
25967
25968 * window.el (window-buffer-height): Use count-screen-lines.
25969
25970 * progmodes/python.el (python-preoutput-leftover): New var.
25971 (python-preoutput-filter): Use it.
25972 (python-send-receive): Loop until all the result has been received.
25973
25974 2005-03-28 Juri Linkov <juri@jurta.org>
25975
25976 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
25977
25978 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
25979 "Recover Crashed Session".
25980 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
25981 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
25982 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
25983 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
25984 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
25985 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
25986 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
25987 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
25988
25989 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
25990 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
25991 Ediff Sessions", "Toggle use of separate control buffer frame",
25992 "Use separate frame for Ediff control buffer".
25993
25994 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
25995 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
25996 "Rename Bookmark", "Delete Bookmark".
25997
25998 * info.el (Info-mode-menu): Remove ellipsis from "Index".
25999 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
26000 Add `:active Info-index-alternatives' to "Next Matching Item".
26001
26002 * wdired.el (wdired-change-to-wdired-mode):
26003 Mention `wdired-abort-changes' key in the initial message.
26004
26005 * international/mule.el (auto-coding-alist): Associate non-ascii
26006 image filename extensions with `no-conversion'.
26007
26008 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
26009
26010 * international/iso-acc.el:
26011 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
26012
26013 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
26014
26015 * textmodes/sgml-mode.el (html-mode): Doc update.
26016
26017 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
26018
26019 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
26020
26021 * term.el (term-move-columns): Fix face after extending a line.
26022 (term-insert-spaces): Likewise.
26023 (term-reset-terminal): Fix off by one error.
26024
26025 2005-03-26 Eli Zaretskii <eliz@gnu.org>
26026
26027 * international/mule.el (auto-coding-alist): Add .xpi files.
26028
26029 * files.el (auto-mode-alist): Add .xpi files.
26030
26031 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
26032
26033 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
26034
26035 2005-03-26 Eli Zaretskii <eliz@gnu.org>
26036
26037 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
26038
26039 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
26040
26041 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
26042 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
26043
26044 * calendar/cal-move.el (calendar-beginning-of-year): Move the
26045 cursor to Jan 1 when needed.
26046 (calendar-end-of-year): Fix -/+ typo.
26047 Reported by Chong Yidong <cyd@stupidchicken.com>.
26048
26049 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
26050
26051 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
26052
26053 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
26054 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
26055
26056 2005-03-25 Richard M. Stallman <rms@gnu.org>
26057
26058 * filesets.el (filesets-init): Add autoload.
26059
26060 * mail/mailalias.el (mail-directory): Doc fix.
26061
26062 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
26063
26064 * mail/mailalias.el (mail-directory-process): Do nothing if
26065 mail-directory-process is an atom.
26066 (mail-get-names): Ignore mail-directory-names if it is an atom.
26067 (mail-directory-process defvar): Doc fix.
26068 (mail-names): Doc fix.
26069
26070 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
26071
26072 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
26073
26074 2005-03-26 Kenichi Handa <handa@m17n.org>
26075
26076 * international/mule-util.el (detect-coding-with-priority):
26077 Call update-coding-systems-internal before detect-coding-region.
26078
26079 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
26080
26081 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
26082 (gdb-frames-mode-map): Add follow-link property.
26083
26084 2005-03-25 Jay Belanger <belanger@truman.edu>
26085
26086 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
26087 for variables.
26088
26089 2005-03-25 Juri Linkov <juri@jurta.org>
26090
26091 * image-mode.el: Optimize image filename extension regexps in
26092 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
26093 in `auto-mode-alist'.
26094 (image-mode): Add `image-toggle-display-text' to local hook
26095 `change-major-mode-hook'. Display the image as an image by
26096 default. Set `cursor-type' and `truncate-lines' if the image
26097 is already displayed. Take into account the current mode (image
26098 or text) in message.
26099 (image-minor-mode): New minor mode.
26100 (image-mode-maybe, image-toggle-display-text): New functions.
26101 (image-toggle-display): Use called-interactively-p.
26102 Let-bind `inhibit-read-only' to t.
26103
26104 * image-mode.el (image-minor-mode): Set `cursor-type' and
26105 `truncate-lines' if the image is already displayed. Add turning
26106 image-minor-mode off to `change-major-mode-hook'. Add message.
26107 Call `image-toggle-display-text' after turning image-minor-mode off.
26108
26109 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
26110
26111 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
26112 Terminal.app, use utf-8.
26113 (set-display-table-and-terminal-coding-system): Add coding-system arg.
26114 (set-locale-environment): Use it.
26115
26116 * term/xterm.el: Undo last change, better done in mule-cmds.el.
26117
26118 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
26119
26120 * progmodes/python.el (python-close-block-statement-p)
26121 (python-outdent-p, python-current-defun): Use symbol-end.
26122
26123 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
26124
26125 * files.el (save-some-buffers): Doc fix.
26126
26127 2005-03-25 Werner Lemberg <wl@gnu.org>
26128
26129 * complete.el, thumbs.el: Replace `legal' with `valid'.
26130 * calendar/calendar.el: Replace `legal' with `valid'.
26131 * emacs-lisp/advice.el: Replace `legal' with `valid'.
26132 * mail/supercite.el: Replace `legal' with `valid'.
26133 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
26134 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
26135 Replace `legal' with `valid'.
26136 * textmodes/reftex-vars.el, textmodes/reftex.el:
26137 Replace `legal' with `valid'.
26138
26139 2005-03-25 Werner Lemberg <wl@gnu.org>
26140
26141 * calc/calc-forms.el, calc/calc-sel.el
26142 * midnight.el, vc-cvs.el
26143 * emacs-lisp/cl-macs.el
26144 * emulation/vip.el
26145 * eshell/esh-io.el, eshell/esh-var.el
26146 * mail/supercite.el
26147 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
26148 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
26149 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
26150 * progmodes/sh-script.el, progmodes/xscheme.el
26151 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
26152 * textmodes/reftex-index.el, textmodes/reftex-parse.el
26153 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
26154 * textmodes/reftex.el, textmodes/org.el:
26155 Replace `illegal' with `invalid'.
26156
26157 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
26158
26159 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
26160 (flymake-find-buildfile, flymake-find-possible-master-files)
26161 (flymake-check-include, flymake-parse-line): Replace loops over the
26162 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
26163
26164 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
26165 Substitute file-name-as-directory in the rest of the file.
26166 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
26167 (flymake-replace-region): Remove unused arg `buffer'.
26168 (flymake-check-patch-master-file-buffer): Update calls to it.
26169 (flymake-add-err-info): Remove unused var `count'.
26170 (flymake-mode): Use define-minor-mode.
26171
26172 * progmodes/flymake.el: Use with-current-buffer.
26173 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
26174 flymake-replace-regexp-in-string, flymake-line-beginning-position)
26175 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
26176 Avoid testing for `xemacs'.
26177 (flymake-nop): Move.
26178 (flymake-region-has-flymake-overlays): Return the computed value.
26179 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
26180 Remove unused var `endline'.
26181 (flymake-get-line-count): Remove unused function.
26182 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
26183
26184 * emulation/vi.el:
26185 * generic.el:
26186 * hilit-chg.el (global-highlight-changes):
26187 * hi-lock.el (hi-lock-mode):
26188 * follow.el: find-file-hooks -> find-file-hook.
26189
26190 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
26191
26192 2005-03-24 Juri Linkov <juri@jurta.org>
26193
26194 * dired.el (dired-mode-map): Add menu item "Compare directories"
26195 for dired-compare-directories.
26196
26197 * dired-aux.el (dired-compare-directories): Add autoload cookie.
26198 Doc fix. Replace `read-file-name' with `read-directory-name'.
26199
26200 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
26201
26202 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
26203
26204 2005-03-24 Jay Belanger <belanger@truman.edu>
26205
26206 * calc/calc-embed.el (calc-embedded-mode-change): Save all
26207 relevant mode settings in calc-embedded-original-modes when modes
26208 are permanently changed.
26209
26210 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
26211
26212 * autoinsert.el: find-file-hooks -> find-file-hook.
26213
26214 2005-03-24 Lute Kamstra <lute@gnu.org>
26215
26216 * generic.el (generic-font-lock-defaults): Make it obsolete.
26217 (generic-font-lock-keywords): New variable to replace
26218 generic-font-lock-defaults.
26219 (generic-mode-set-font-lock): Delete it.
26220 (generic-mode-internal): Don't call generic-mode-set-font-lock.
26221 (generic-bracket-support): Add docstring.
26222
26223 * generic-x.el: Rename generic-font-lock-defaults to
26224 generic-font-lock-keywords throughout.
26225 (mailagent-rules-setup-function): Delete it.
26226 (mailagent-rules-generic-mode): Use anonymous function instead.
26227 (show-tabs-generic-mode-font-lock-defaults-1)
26228 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
26229 Quote faces.
26230 (show-tabs-tab-face, show-tabs-space-face): Specify background,
26231 not foreground.
26232
26233 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
26234 Recognize define-generic-mode.
26235
26236 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
26237
26238 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
26239 if there's no completion table.
26240
26241 2005-03-23 Miles Bader <miles@gnu.org>
26242
26243 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
26244 Remove tty-specific variants, as they're no longer needed.
26245
26246 2005-03-23 Lute Kamstra <lute@gnu.org>
26247
26248 * generic-x.el: Code cleanup: make args constant whenever possible.
26249 (installshield-statement-keyword-list)
26250 (installshield-system-functions-list)
26251 (installshield-system-variables-list, installshield-types-list)
26252 (installshield-funarg-constants-list): Make them constants.
26253
26254 * generic.el (generic-make-keywords-list): Add autoload cookie.
26255
26256 * calendar/time-date.el: Add comment on time value formats.
26257 Don't require parse-time.
26258 (with-decoded-time-value): New macro.
26259 (encode-time-value): New function.
26260 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
26261 (days-to-time): Return a valid time value when arg is huge.
26262 (time-since): Use time-subtract.
26263 (time-to-number-of-days): Use time-to-seconds.
26264
26265 2005-03-23 David Ponce <david@dponce.com>
26266
26267 * recentf.el (recentf-keep): New option.
26268 (recentf-menu-action): Default to `find-file'.
26269 (recentf-keep-non-readable-files-flag)
26270 (recentf-keep-non-readable-files-p)
26271 (recentf-file-readable-p, recentf-find-file)
26272 (recentf-cleanup-remote): Remove.
26273 (recentf-include-p): More robust.
26274 (recentf-keep-p): New function.
26275 (recentf-remove-if-non-kept): Rename from
26276 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
26277 All callers updated.
26278 (recentf-menu-items-for-commands): Fix help string.
26279 (recentf-track-closed-file): Update. Doc fix.
26280 (recentf-cleanup): Update. Count removed files. Doc fix.
26281
26282 2005-03-23 Kim F. Storm <storm@cua.dk>
26283
26284 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
26285 Don't inherit from fringe face (now happens automatically).
26286
26287 2005-03-22 Kim F. Storm <storm@cua.dk>
26288
26289 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
26290 position values.
26291
26292 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
26293
26294 * menu-bar.el (showhide-date-time): Remove.
26295 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
26296 (menu-bar-make-mm-toggle): Simplify.
26297
26298 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
26299
26300 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
26301 Accept qualified variable and function names.
26302
26303 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
26304
26305 * bindings.el (completion-ignored-extensions):
26306 Remove ".lis" for `vax-vms'.
26307
26308 2005-03-22 Andreas Schwab <schwab@suse.de>
26309
26310 * generic-x.el: Revert last change.
26311 * ldefs-boot.el: Update.
26312
26313 2005-03-22 Jay Belanger <belanger@truman.edu>
26314
26315 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
26316 (calc-embedded-save-original-modes)
26317 (calc-embedded-restore-original-modes): New functions.
26318 (calc-do-embedded): Save original modes when entering embedded mode
26319 and restore when leaving embedded mode.
26320 (calc-embedded-modes-change): Change the value of
26321 calc-embedded-original-modes to reflect permanent changes.
26322
26323 2005-03-22 Lute Kamstra <lute@gnu.org>
26324
26325 * generic-x.el: Require generic again.
26326
26327 2005-03-22 Miles Bader <miles@gnu.org>
26328
26329 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
26330 Tweak details to look good on both ttys and bitmap displays, light
26331 or dark background, etc.
26332
26333 2005-03-21 Kim F. Storm <storm@cua.dk>
26334
26335 * tooltip.el (tooltip-show-help-function): Check car and cdr of
26336 mouse position.
26337
26338 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
26339
26340 * icomplete.el: Don't forcibly turn on the mode upon load.
26341 (icomplete-mode): Use define-minor-mode.
26342 (icomplete-eoinput): Default to nil.
26343 (icomplete-minibuffer-setup): Remove autoload.
26344 (icomplete-tidy): Simplify.
26345 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
26346 in the initial state or if the user has modified the field.
26347 Fix handling of icomplete-max-delay-chars.
26348 Remove code that handles the oddball case where
26349 minibuffer-completion-table is an integer.
26350 Wrap icomplete-completions in while-no-input in case building
26351 completions takes more time than expected.
26352 (icomplete-completions): Simplify.
26353
26354 2005-03-21 Richard M. Stallman <rms@gnu.org>
26355
26356 * jka-compr.el (jka-compr-really-do-compress):
26357 Make variable buffer-local.
26358
26359 * image-mode.el: Handle .xpm files too.
26360 (image-toggle-display): Preserve modification flag.
26361
26362 * help.el (where-is): Don't mention aliases with no key bindings.
26363
26364 2005-03-21 Lute Kamstra <lute@gnu.org>
26365
26366 * generic.el: Fix commentary section. Don't require cl for
26367 compilation.
26368 (generic-mode-list): Add autoload cookie.
26369 (generic-use-find-file-hook, generic-lines-to-scan)
26370 (generic-find-file-regexp, generic-ignore-files-regexp)
26371 (generic-mode, generic-mode-find-file-hook)
26372 (generic-mode-ini-file-find-file-hook): Fix docstrings.
26373 (define-generic-mode): Make it a defmacro. Fix docstring.
26374 (generic-mode-internal): Code cleanup. Add autoload cookie.
26375 (generic-mode-set-comments): Code cleanup.
26376 * generic-x.el: Don't prevent compilation. Don't require generic.
26377 Follow coding conventions. Minor code cleanup.
26378 (etc-fstab-generic-mode): Add some keywords.
26379 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
26380 define-generic-mode like a function declaration.
26381
26382 2005-03-21 Jay Belanger <belanger@truman.edu>
26383
26384 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
26385 changing modes.
26386
26387 2005-03-21 Sam Steingold <sds@gnu.org>
26388
26389 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
26390
26391 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
26392
26393 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
26394 Add underscore to "f$ lexicals" regexp.
26395
26396 2005-03-20 Juri Linkov <juri@jurta.org>
26397
26398 * subr.el (progress-reporter-do-update): When `min-value' is equal
26399 to `max-value', set `percentage' to 0 and prevent division by zero.
26400
26401 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
26402
26403 Sync with Tramp 2.0.48.
26404
26405 * net/tramp.el (all): Change all addresses to .gnu.org.
26406 (tramp-append-tramp-buffers): New defun.
26407 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
26408 Catch `dont-send' signal.
26409 (tramp-set-auto-save-file-modes): Set always permissions, because
26410 there might be an old auto-saved file belonging to another
26411 original file. This could be a security threat. Reported by
26412 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
26413 Check for Emacs 21.3.50 removed.
26414
26415 * net/tramp-smb.el (all): Remove debug construct for
26416 `with-parsed-tramp-file-name'.
26417 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
26418 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
26419 No error message if DIRECTORY or FILENAME doesn't exist.
26420 (tramp-smb-open-connection): Check existence of
26421 `tramp-smb-program'.
26422
26423 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
26424
26425 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
26426 Properly handle the case where the `m' or `s' command's argument is not
26427 yet terminated.
26428 (perl-indent-new-calculate): New function.
26429 (perl-indent-line): Use it.
26430
26431 2005-03-20 Miles Bader <miles@gnu.org>
26432
26433 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
26434 in text-mode too. Change to new face names.
26435 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
26436 Add `:weight bold' attribute.
26437 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
26438
26439 2005-03-19 Juri Linkov <juri@jurta.org>
26440
26441 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
26442
26443 * international/mule.el (auto-coding-alist): Sync with
26444 `auto-mode-alist' by adding upper case archive file extensions
26445 and adding ear/war to jar extension.
26446
26447 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
26448
26449 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
26450 running, restart it.
26451
26452 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
26453
26454 * finder.el (finder-current-item): Throw an error on an empty line.
26455
26456 * man.el (Man-follow-manual-reference): If current-word returns
26457 nil, use "".
26458
26459 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
26460
26461 * simple.el (goto-line): Doc fix.
26462
26463 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
26464
26465 * files.el (save-buffer): Doc fix.
26466
26467 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
26468
26469 * recentf.el (recentf-cleanup-remote): New variable.
26470 (recentf-cleanup): Use it to conditionally check availability of
26471 remote files.
26472
26473 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
26474
26475 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
26476 function names.
26477
26478 2005-03-19 Eli Zaretskii <eliz@gnu.org>
26479
26480 * language/thai-word.el: New file.
26481
26482 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
26483
26484 * files.el (backup-buffer): If the file's directory is not
26485 writable, use copy instead of move to backup the file.
26486
26487 2005-03-19 Eli Zaretskii <eliz@gnu.org>
26488
26489 * obsolete/keyswap.el: Moved to obsolete/ from term/.
26490
26491 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
26492
26493 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
26494 Use functionp instead of symbolp and fboundp. Reported by Drkm
26495 <darkman_spam@yahoo.fr>.
26496 (ps-print-version): New version 6.6.6.
26497
26498 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
26499
26500 * textmodes/table.el (table--line-column-position): New idiom.
26501 (table--row-column-insertion-point-p): New function to test
26502 validity of row and column insertion operation at a location.
26503 (table-global-menu, table-cell-menu): Use above functions for
26504 deterministic test operation.
26505 (table--editable-cell-p): Behave in deterministic fashion.
26506
26507 2005-03-18 Juri Linkov <juri@jurta.org>
26508
26509 * isearch.el (isearch-lazy-highlight-new-loop):
26510 Make arguments beg and end optional.
26511 (isearch-update): Remove optional arguments nil from
26512 isearch-lazy-highlight-new-loop.
26513 (isearch-lazy-highlight-search): Let-bind case-fold-search to
26514 isearch-lazy-highlight-case-fold-search instead of
26515 isearch-case-fold-search, and let-bind isearch-regexp to
26516 isearch-lazy-highlight-regexp.
26517 Use isearch-lazy-highlight-last-string instead of isearch-string.
26518
26519 * replace.el (perform-replace): Remove bindings of global
26520 variables isearch-string, isearch-regexp, isearch-case-fold-search.
26521 Add three new arguments to `replace-highlight'.
26522 (replace-highlight): Add arguments string, regexp, case-fold.
26523 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
26524 to allow isearch-lazy-highlight-new-loop to use these values
26525 to set corresponding isearch-lazy-highlight-* internal
26526 variables whose values lazy highlighting will use regardless of
26527 changes to global variables isearch-string, isearch-regexp,
26528 isearch-case-fold-search during lazy highlighting loop.
26529 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
26530 to `lazy-highlight-cleanup'.
26531
26532 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
26533 (ispell-highlight-face): Set default face to `isearch' when
26534 lazy highlighting is enabled.
26535 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
26536 priority to 1. Add lazy highlighting.
26537 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
26538 from `isearch-dehighlight'.
26539
26540 2005-03-18 David Ponce <david@dponce.com>
26541
26542 * files.el (hack-local-variables): Do a case-insensitive search
26543 for End.
26544
26545 2005-03-18 Juri Linkov <juri@jurta.org>
26546
26547 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
26548 `isearch-lazy-highlight-cleanup', add alias to old name and
26549 declare obsolete. Add release numbers to other obsolete vars.
26550 (isearch-done, isearch-lazy-highlight-new-loop):
26551 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
26552 (lazy-highlight-cleanup) <variable>: Doc fix.
26553 (isearch-lazy-highlight-update): Rename obsolete
26554 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
26555
26556 2005-03-18 Kenichi Handa <handa@m17n.org>
26557
26558 * language/thai-util.el: Fix categorization of Thai characters in
26559 thai-category-table.
26560 (thai-composition-pattern): Adjust it for the above change.
26561 (thai-self-insert-command, thai-compose-syllable): New functions.
26562 (thai-compose-region): Use thai-compose-syllable.
26563 (thai-compose-string): Likewise.
26564 (thai-composition-function): Likewise.
26565 (thai-auto-composition): New function.
26566 (thai-auto-composition-mode): New minor mode.
26567
26568 * language/thai.el: Fix patterns to be registered in
26569 composition-function-table.
26570
26571 * international/quail.el (quail-input-method): Locally bind
26572 inhibit-modification-hooks to t.
26573
26574 2005-03-17 Richard M. Stallman <rms@gnu.org>
26575
26576 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
26577 (perl-mode): Use run-mode-hooks.
26578
26579 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
26580 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
26581 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
26582
26583 * mail/sendmail.el (sendmail-send-it): Reenable the code
26584 to compute resend-to-address and use it.
26585
26586 * tar-mode.el (tar-mode): Turn off undo unconditionally.
26587
26588 * image-mode.el: New file.
26589
26590 * image.el (insert-sliced-image): Add autoload cookie.
26591
26592 * font-lock.el (font-lock-lines-before): New user option.
26593 (font-lock-after-change-function): Obey it.
26594
26595 * bindings.el (esc-map): Make M-g a prefix.
26596 Bind M-g g and M-g M-g to goto-line.
26597
26598 * faces.el (face-id): Doc fix.
26599
26600 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
26601
26602 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
26603 (rmail-show-message): Use rmail-unknown-mail-followup-to.
26604 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
26605
26606 * mail/sendmail.el (mail-yank-ignored-headers)
26607 (mail-font-lock-keywords, mail-mode-fill-paragraph):
26608 Add Mail-Followup-To and Mail-Reply-To headers.
26609 (mail-citation-hook): Add autoload cookie.
26610 (mail-mode): Doc fix.
26611 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
26612 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
26613 (mail-mode-fill-paragraph): Handle those headers.
26614 (mail-mailing-lists): New variable.
26615 (mail-mail-reply-to, mail-mail-followup-to): New functions.
26616
26617 2005-03-17 Juri Linkov <juri@jurta.org>
26618
26619 * isearch.el (isearch-fallback): Check for `(car previous)'
26620 before calling `isearch-other-end-state'.
26621
26622 2005-03-17 Kim F. Storm <storm@cua.dk>
26623
26624 * simple.el (move-beginning-of-line): Move to beginning of buffer
26625 line, as well as beginning of screen line.
26626
26627 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
26628
26629 * calendar/diary-lib.el (mark-diary-entries): Use new optional
26630 argument REDRAW rather than calendar-redrawing variable.
26631 * calendar/calendar.el (calendar-redrawing): Delete.
26632 (redraw-calendar): Do not bind calendar-redrawing.
26633
26634 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
26635
26636 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
26637 diary-file buffer.
26638
26639 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
26640
26641 * help.el (describe-mode): Allow a :minor-mode-function property to
26642 specify a different minor mode toggle function than the variable.
26643 * simple.el (auto-fill-function):
26644 * subr.el (add-minor-mode): Use it.
26645
26646 2005-03-16 Kenichi Handa <handa@m17n.org>
26647
26648 * language/ethio-util.el (sera-being-called-by-w3): New variable.
26649 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
26650 (ethio-fidel-to-sera-buffer): Likewise.
26651
26652 2005-03-16 Juri Linkov <juri@jurta.org>
26653
26654 * emacs-lisp/find-func.el (find-function-regexp):
26655 Add defun-emitting macro `menu-bar-make-toggle'.
26656
26657 * isearch.el: Put `isearch-scroll' property to
26658 `split-window-horizontally'.
26659
26660 * info.el: Update error messages for `debug-ignored-errors'.
26661 (Info-isearch-search): Doc fix.
26662 (Info-find-node): Move up code to go into info buffer before
26663 recording the node to the history.
26664 (Info-fontify-node): Fontify titles only if the next line
26665 has two or more `*', `=', `-', `.'.
26666 Display "go to this node" for empty (match-string 3).
26667
26668 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26669
26670 * term/mac-win.el: Add mouse pointer shape constants.
26671
26672 2005-03-15 Kim F. Storm <storm@cua.dk>
26673
26674 * simple.el (move-beginning-of-line): Use vertical-motion.
26675
26676 2005-03-15 Juri Linkov <juri@jurta.org>
26677
26678 * isearch.el (isearch-error): New variable.
26679 (isearch-invalid-regexp, isearch-within-brackets): Remove.
26680 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
26681 (isearch-within-brackets-state): Remove.
26682 (isearch-case-fold-search-state, isearch-pop-fun-state):
26683 Decrease frame index.
26684 (isearch-mode, isearch-top-state, isearch-push-state)
26685 (isearch-edit-string, isearch-abort, isearch-search-and-update)
26686 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
26687 (isearch-search, isearch-lazy-highlight-new-loop):
26688 Replace `isearch-invalid-regexp' with `isearch-error'.
26689 Remove `isearch-within-brackets'.
26690 (isearch-search): Add `search-failed' handler to `condition-case'.
26691 (isearch-lazy-highlight-search): Add `condition-case' to catch
26692 errors and allow `isearch-lazy-highlight-update' to try
26693 highlighting from the beginning of the window.
26694 (isearch-repeat): Move up code to set isearch-wrapped to t
26695 before calling isearch-wrap-function.
26696
26697 * info.el (Info-isearch-initial-node): New internal variable.
26698 (Info-search): Signal an error in isearch mode when search leaves
26699 the initial node. Signal an error when `bound' is non-nil and
26700 nothing was found in the current subfile.
26701 (Info-isearch-search): Remove `condition-case'.
26702 (Info-isearch-wrap): Don't wrap when search failed during leaving
26703 the initial node. If `Info-isearch-search' is nil, wrap around
26704 the current node.
26705 (Info-isearch-start): New fun.
26706 (Info-mode): Add buffer-local hook `Info-isearch-start' to
26707 `isearch-mode-hook'.
26708
26709 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26710
26711 * simple.el (normal-erase-is-backspace): Set default to t if
26712 running on Mac.
26713
26714 * term/mac-win.el (function-key-map): Sync with x-win.el.
26715
26716 2005-03-15 Kenichi Handa <handa@m17n.org>
26717
26718 * international/mule-cmds.el (locale-language-names): Modify the
26719 format of elements and add more entries.
26720 (locale-preferred-coding-systems): Add more entries.
26721 (set-locale-environment): Adjust for the change of
26722 locale-language-names.
26723
26724 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
26725
26726 * pcvs.el (smerge-ediff): Remove bogus autoload.
26727
26728 2005-03-14 Lute Kamstra <lute@gnu.org>
26729
26730 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
26731 Ignore a `*' at the beginning of a line.
26732
26733 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
26734 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
26735 subr.el.
26736 (dont-compile, eval-when-compile, eval-and-compile): Use declare
26737 to specify indentation.
26738
26739 * generic.el (define-generic-mode): Let generic-mode-list be a
26740 list of strings; test membership with equal.
26741
26742 2005-03-14 Kim F. Storm <storm@cua.dk>
26743
26744 * simple.el (next-line, previous-line): Add optional try-vscroll
26745 arg to recognize interactive use. Pass it on to line-move.
26746 (line-move): Don't perform auto-window-vscroll when defining or
26747 executing keyboard macro to ensure consistent behavior.
26748
26749 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
26750
26751 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
26752
26753 2005-03-13 Lute Kamstra <lute@gnu.org>
26754
26755 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
26756 debugger-setup-buffer so that backtrace marks the frames set to
26757 debug-on-exit and we don't have to do it manually. Set an extra
26758 debug-on-exit for macro's.
26759 (debugger-setup-buffer): Don't mark the top frame manually.
26760
26761 2005-03-12 Lute Kamstra <lute@gnu.org>
26762
26763 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
26764 lisp-indent-function throughout.
26765 (with-no-warnings): Set lisp-indent-function property.
26766
26767 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
26768
26769 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
26770 Add entry for backslash.
26771
26772 2005-03-12 Juri Linkov <juri@jurta.org>
26773
26774 * info.el (Info-search): Four fixes for backward search.
26775
26776 2005-03-11 Jay Belanger <belanger@truman.edu>
26777
26778 * calc/calc.el (calc-language-alist): New variable.
26779 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
26780 (calc-embedded-find-modes): Use calc-language-alist instead of
26781 calc-embedded-language-alist.
26782
26783 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
26784
26785 * calendar/calendar.el (calendar-redrawing): New internal
26786 variable.
26787 (redraw-calendar): Remove bogus save-excursion from previous
26788 change. Bind calendar-redrawing to t for mark-diary-entries.
26789 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
26790 calendar if that is why we were called.
26791
26792 2005-03-11 Kenichi Handa <handa@m17n.org>
26793
26794 * international/mule.el (make-coding-system): Set property
26795 coding-system-define-form to nil.
26796 (define-coding-system-alias): Likewise.
26797
26798 2005-03-11 Kenichi Handa <handa@m17n.org>
26799
26800 These changes are suggested by Dave Love <fx@gnu.org>.
26801
26802 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
26803 coding: tag.
26804 (adaptive-fill-regexp): Add more bullets.
26805 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
26806 regexps.
26807
26808 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
26809
26810 * help.el (describe-mode): Properly handle non-trivial lighters.
26811 Don't ignore minor modes that are not listed in minor-mode-list.
26812
26813 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
26814 feature ON when the user requests to turn it OFF.
26815
26816 2005-03-10 Lute Kamstra <lute@gnu.org>
26817
26818 * emacs-lisp/debug.el (debug-entry-code): Delete it.
26819 (implement-debug-on-entry): New function to replace debug-entry-code.
26820 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
26821 second argument as the 2005-03-07 change makes it obsolete.
26822 (debug-on-entry, cancel-debug-on-entry): Update call to
26823 debug-on-entry-1.
26824 (debug, debugger-setup-buffer): Comment update.
26825 (debugger-frame-number): Update to work with implement-debug-on-entry.
26826
26827 2005-03-10 Jay Belanger <belanger@truman.edu>
26828
26829 * calc/calc-embed.el (math-ms-args): Declare it.
26830 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
26831 math-ms-args.
26832 (calc-embedded-subst): Use math-multi-subst-rec to substitute
26833 variables.
26834
26835 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
26836
26837 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
26838 Use message-box.
26839
26840 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
26841 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
26842 (tooltip-gud-tips): Simplify.
26843 (tooltip-gud-tips-p): Remove superfluous :set.
26844 (tooltip-gud-modes): Add fortran-mode.
26845 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
26846
26847 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
26848
26849 2005-03-09 Kim F. Storm <storm@cua.dk>
26850
26851 * play/animate.el (animate-place-char): Use forward-line instead
26852 of next-line to improve performance.
26853
26854 2005-03-09 Simon Josefsson <jas@extundo.com>
26855
26856 * net/browse-url.el (browse-url-default-browser): Doc fix.
26857
26858 2005-03-09 Miles Bader <miles@gnu.org>
26859
26860 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
26861 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
26862
26863 2005-03-09 Kenichi Handa <handa@m17n.org>
26864
26865 * international/latin-1.el: Set case and syntax for 255 only if
26866 set-case-syntax-set-multibyte is nil.
26867
26868 * textmodes/ispell.el (ispell-insert-word): New function.
26869 (ispell-word): Use ispell-insert-word to insert a new word.
26870 (ispell-process-line): Likewise.
26871 (ispell-complete-word): Likewise.
26872
26873 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
26874
26875 * calendar/calendar.el (redraw-calendar): Preserve point.
26876 Reported by Matt Hodges <MPHodges@member.fsf.org>.
26877 (calendar-week-start-day): Move after definition of
26878 redraw-calendar. Delete buffer test, since redraw-calendar has
26879 that now.
26880
26881 * calendar/diary-lib.el (mark-diary-entries): Only call
26882 redraw-calendar in the first of any recursive calls.
26883 Reported by Alan Shutko <ats@acm.org>.
26884
26885 2005-03-08 Juri Linkov <juri@jurta.org>
26886
26887 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
26888 (html-horizontal-rule, html-line, html-image, html-checkboxes)
26889 (html-radio-buttons): Add a space before the trailing `/>' where
26890 sgml-xml-mode is non-nil.
26891 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
26892 the subsequent tag of the empty XML tag.
26893 (html-href-anchor): Don't set initial input to "http:".
26894 (html-image): Ask for the image URL and set point inside alt="".
26895 (html-name-anchor): Duplicate the name in the `id' attribute when
26896 sgml-xml-mode is non-nil.
26897 (html-paragraph): Remove \n before <p>.
26898 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
26899 instead of `checked' when sgml-xml-mode is non-nil.
26900
26901 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
26902 Remove 1 space before #RRGGBB to not truncate it on terminal
26903 windows w/o fringes. Remove 1 space between bg and fg examples
26904 to get more space.
26905 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
26906 avoid byte-compile warnings.
26907
26908 * image-file.el (image-file-handler): Put `safe-magic' property to
26909 `image-file-handler'.
26910
26911 * info.el (Info-isearch-search): Emulate word search in
26912 isearching through multiple Info nodes with Info-search.
26913 (Info-isearch-wrap): Allow isearch-word.
26914
26915 2005-03-08 Lute Kamstra <lute@gnu.org>
26916
26917 * emacs-lisp/debug.el (debugger-step-through): Make sure that
26918 stepping into the debugger's code is not possible.
26919 (debugger-jumping-flag): Docstring update.
26920
26921 2005-03-08 Jay Belanger <belanger@truman.edu>
26922
26923 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
26924 embedded mode begins.
26925 (calc-embedded-language-alist): New variable.
26926 (calc-embedded-find-modes): Use calc-embedded-language-alist to
26927 set default language mode.
26928
26929 2005-03-08 Kenichi Handa <handa@m17n.org>
26930
26931 * international/ccl.el (define-ccl-program): Fix docstring about
26932 extra 256 bytes assured for the output buffer.
26933
26934 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
26935 Fix BUFFER_MAGNIFICATION to 2.
26936 (ccl-encode-mule-utf-16be-with-signature): Likewise.
26937
26938 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
26939
26940 * align.el (align-rules-list): Added an alignment rule for CSS
26941 declarations (applies to css-mode and html-mode buffers).
26942
26943 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
26944
26945 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
26946
26947 2005-03-07 Kim F. Storm <storm@cua.dk>
26948
26949 * simple.el (move-beginning-of-line): New command.
26950
26951 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
26952
26953 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
26954
26955 * emulation/cua-base.el: Put CUA move property on move-end-of-line
26956 and move-beginning-of-line.
26957
26958 * apropos.el (apropos-print): Omit command from M-x ... RET.
26959
26960 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
26961
26962 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
26963 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
26964
26965 2005-03-06 Richard M. Stallman <rms@gnu.org>
26966
26967 * bindings.el (esc-map): Bind M-g to goto-line.
26968
26969 * facemenu.el (global-map): Bind M-o, not M-g.
26970
26971 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26972
26973 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
26974 "Open Directory" as for "Open File".
26975
26976 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
26977
26978 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
26979 (push-mark-command): Run activate-mark-hook.
26980
26981 2005-03-06 Richard M. Stallman <rms@gnu.org>
26982
26983 * help-mode.el (help-mode-finish): Don't alter the element
26984 in view-return-to-alist if there already is one.
26985
26986 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
26987 make sure the current buffer is the expected one.
26988
26989 * novice.el (disabled-command-function): Output in *Disabled Command*.
26990 Explicitly ignore non-keyboard events, and explicitly handle C-g.
26991
26992 * textmodes/flyspell.el (flyspell-large-region):
26993 Pass args differently for aspell.
26994
26995 * files.el (mode-require-final-newline): Doc fix.
26996
26997 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
26998
26999 * progmodes/which-func.el (which-function):
27000 Specify NOERROR when calling imenu--make-index-alist.
27001
27002 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
27003
27004 * simple.el (normal-erase-is-backspace): Define default value.
27005
27006 * custom.el (custom-theme-set-variables): Remove unused var
27007 `immediate'.
27008 (custom-reevaluate-setting): Simple function to handle variables
27009 that are defined before their default value can really be
27010 computed.
27011
27012 * startup.el (command-line): Use it for temporary-file-directory,
27013 small-emporary-file-directory, auto-save-file-name-transforms,
27014 blink-cursor-mode, and normal-erase-is-backspace.
27015
27016 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
27017 progress, even with buggy anchored keywords.
27018
27019 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
27020
27021 * simple.el (goto-line): Remove unbalanced final parenthesis.
27022
27023 2005-03-05 Richard M. Stallman <rms@gnu.org>
27024
27025 * simple.el (goto-line): Use a number at point as the default.
27026 With C-u as arg, switch buffers.
27027
27028 2005-03-05 Juri Linkov <juri@jurta.org>
27029
27030 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
27031 with `no-blinking-cursor'.
27032
27033 * startup.el (no-blinking-cursor): New defvar.
27034 (command-line): Add `--no-blinking-cursor' to longopts.
27035 Set `no-blinking-cursor' to t for command line arguments
27036 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
27037 with `no-blinking-cursor' in the condition for calling
27038 `blink-cursor-mode'.
27039
27040 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
27041
27042 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
27043 (menu-bar-options-save): Add blink-cursor-mode.
27044 (menu-bar-options-menu): Add blink-cursor-mode.
27045
27046 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
27047
27048 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
27049 (icalendar-export-file, icalendar-export-region)
27050 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
27051 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
27052
27053 2005-03-04 Lute Kamstra <lute@gnu.org>
27054
27055 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
27056 (debug-function-list): Ditto.
27057
27058 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
27059
27060 * textmodes/texinfmt.el (texinfo-append-refill):
27061 Redefine the types of line to which @refill
27062 is not appended by replacing a search for `@refill\\|@bye' with
27063 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
27064 itemize@refill' bug and the unfilled long lines bug.
27065 (texinfmt-version): Update number and date.
27066
27067 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
27068
27069 * international/code-pages.el (windows-1250, windows-125[2-8])
27070 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
27071
27072 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
27073
27074 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
27075 bound yet.
27076
27077 2005-03-02 Romain Francoise <romain@orebokech.com>
27078
27079 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
27080 buffer after removing limits.
27081 (ibuffer-pop-filter): Ditto.
27082 Update copyright.
27083
27084 2005-03-02 Miles Bader <miles@gnu.org>
27085
27086 * button.el (make-text-button): If the user doesn't specify a
27087 type, use the default. Rewrite to use `add-text-properties' and
27088 plist functions.
27089
27090 2005-03-01 Lute Kamstra <lute@gnu.org>
27091
27092 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
27093 (debugger-jumping-flag): New var.
27094 (debug-entry-code): Use it.
27095 (debugger-jump): Use debugger-jumping-flag and add
27096 debugger-reenable to post-command-hook.
27097 (debugger-reenable): Use debugger-jumping-flag and remove itself
27098 from post-command-hook.
27099 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
27100 debugger-reenable.
27101
27102 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
27103
27104 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
27105 inclusion of "itemize\\|", which may be unnecessary, is certainly
27106 inelegant, and stops refilling in itemize lists when formatting
27107 Japanese Texinfo files to Info.
27108 Update copyright to 2005.
27109
27110 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
27111
27112 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
27113 of an error if GDB can't find the source file.
27114
27115 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
27116
27117 * calendar/calendar.el (redraw-calendar): Work from any buffer,
27118 not just the calendar.
27119
27120 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
27121 first.
27122 (diary-redraw-calendar): New function.
27123 (make-diary-entry): Add diary-redraw-calendar to local
27124 write-contents-functions. Turn off selective display before
27125 inserting in diary.
27126
27127 2005-03-01 Kim F. Storm <storm@cua.dk>
27128
27129 * emacs-lisp/copyright.el (copyright-fix-years): New command.
27130
27131 2005-03-01 Lute Kamstra <lute@gnu.org>
27132
27133 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
27134 that debug-entry-code can be safely removed from a function while
27135 this code is being evaluated. Revert the 2005-02-27 change as the
27136 new implementation no longer requires it. Make sure that a
27137 function body containing just a string is not mistaken for a docstring.
27138 (debug): Skip one more frame in case of debug on entry.
27139 (debugger-setup-buffer): Delete one more frame line in case of
27140 debug on entry.
27141 (debugger-frame-number): Update to use the new text introduced by
27142 the 1999-11-03 change. Skip one more frame in case of debug on entry.
27143
27144 2005-02-28 Kim F. Storm <storm@cua.dk>
27145
27146 * double.el (double-translate-key): Call force-window-update after
27147 read-event to avoid crash in redisplay.
27148
27149 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
27150
27151 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
27152 (debug): Use it. Move the inhibit-trace earlier.
27153 (debug-entry-code): New const.
27154 (debug-on-entry-1): Use it.
27155
27156 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
27157
27158 * international/utf-16.el (ccl-encode-mule-utf-16le):
27159 Fix BUFFER_MAGNIFICATION to 2.
27160 (ccl-encode-mule-utf-16be): Likewise.
27161
27162 2005-02-28 Kenichi Handa <handa@m17n.org>
27163
27164 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
27165 Fix BUFFER_MAGNIFICATION to 4.
27166 (ccl-encode-mule-utf-16be-with-signature): Likewise.
27167
27168 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
27169
27170 * speedbar.el (speedbar-update-flag): Doc fix.
27171 (speedbar-show-info-under-mouse): Give set-mouse-position the right
27172 argument.
27173
27174 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
27175
27176 * reveal.el (reveal-post-command): Don't try to reveal overlays which
27177 have a non-nil `invisible' property but are actually visible.
27178
27179 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
27180 for perldoc sections.
27181 (perl-outline-regexp, perl-outline-level): New var and function.
27182 (perl-mode): Use them.
27183
27184 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
27185
27186 * calendar/diary-lib.el (diary-remind): Discard any mark portion
27187 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
27188
27189 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
27190
27191 * cus-edit.el: Comment change.
27192 (custom-buffer-create-internal): Slightly reword text at top of
27193 Custom buffers. Mention there that saving an option edits the
27194 init file. Add link to Emacs manual node on `custom-file'.
27195 (custom-magic-alist): Rewrite individual State messages to use
27196 capitalized keywords. Doc fix.
27197
27198 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
27199
27200 * calendar/calendar.el (calendar-buffer): Move above
27201 calendar-week-start-day.
27202 (calendar-week-start-day): Doc fix. Add :set function.
27203 (calendar-minimum-window-height): New variable.
27204 (generate-calendar-window): Only resize window if selected-window
27205 is displaying the calendar buffer. Use new variable
27206 calendar-minimum-window-height.
27207 (generate-calendar): Reword error message.
27208 (calendar-mode-map): Bind DEL to scroll-other-window-down.
27209
27210 2005-02-27 Andreas Schwab <schwab@suse.de>
27211
27212 * vc.el (vc-do-command): Don't run command asynchronously when
27213 operating in a remote directory.
27214
27215 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
27216 change from sync with Tramp 2.0.47.
27217
27218 2005-02-27 Richard M. Stallman <rms@gnu.org>
27219
27220 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
27221
27222 * textmodes/flyspell.el (flyspell-mode-on):
27223 Call ispell-change-dictionary only if necessary.
27224
27225 * emacs-lisp/re-builder.el (regexp-builder): New function.
27226
27227 * register.el (describe-register-1): Explicitly handle
27228 yank-excluded-properties = t.
27229
27230 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
27231 (custom-magic-alist): Change the status descriptions again.
27232 (face widget-type): Total rewrite based on `restricted-sexp'
27233 to eliminate the confusing double hiding levels.
27234
27235 * emacs-lisp/debug.el (debug-on-entry-1):
27236 If function body is empty, add nil as body form.
27237
27238 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
27239
27240 * emacs-lisp/trace.el (inhibit-trace): New var.
27241 (trace-make-advice): Use it.
27242
27243 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
27244
27245 2005-02-26 Kim F. Storm <storm@cua.dk>
27246
27247 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
27248 (mouse-on-link-p, mouse-drag-region-1): Use it.
27249
27250 2005-02-25 Lute Kamstra <lute@gnu.org>
27251
27252 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
27253
27254 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
27255
27256 * frame.el (blink-cursor-mode): Add :group keyword.
27257
27258 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
27259
27260 * calendar/icalendar.el (icalendar--decode-isodatetime):
27261 New optional argument DAY-SHIFT.
27262 (icalendar-export-region): Fix coding-system-for-write.
27263 (icalendar--convert-ical-to-diary): Shift end-day of all-day
27264 events by one.
27265
27266 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
27267
27268 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
27269
27270 2005-02-24 Kim F. Storm <storm@cua.dk>
27271
27272 * international/iso-acc.el (iso-accents-compose): Fix crash
27273 during redisplay. Call force-window-update after read-event
27274 and delete-region to signal that window is not accurate.
27275
27276 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
27277
27278 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
27279 Remove unused and inexistent var `inhibit-trace'.
27280 (debugger-mode): Use run-mode-hooks.
27281 (debugger-list-functions): Add buttons; setup xref stack.
27282
27283 2005-02-23 Richard M. Stallman <rms@gnu.org>
27284
27285 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
27286 appointment says it was explicitly made.
27287 (appt-add): Set the 3rd element.
27288 (appt-make-list): Preserve explicit appointments.
27289
27290 * subr.el (find-tag-default): Catch errors in forward-sexp.
27291
27292 2005-02-23 Juri Linkov <juri@jurta.org>
27293
27294 * info.el (Info-isearch-search): New defcustom.
27295 (Info-isearch-search): Call the default isearch function
27296 when Info-isearch-search is nil.
27297 (Info-isearch-wrap): Use variable Info-isearch-search.
27298
27299 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
27300
27301 * cus-edit.el: Comment change.
27302
27303 2005-02-22 Kim F. Storm <storm@cua.dk>
27304
27305 * progmodes/hideif.el (hide-ifdef-use-define-alist):
27306 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
27307
27308 2005-02-22 Simon Josefsson <jas@extundo.com>
27309
27310 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
27311 New variable.
27312 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
27313 Oskarsson" <myrkraverk@users.sourceforget.net>.
27314
27315 2005-02-22 Kim F. Storm <storm@cua.dk>
27316
27317 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
27318 check that window of that event is the selected window.
27319 (mouse-drag-region-1): Compare mouse event window to selected
27320 window before setting point.
27321
27322 * tooltip.el (tooltip-show-help-function): Pass event to
27323 mouse-on-link-p so it can check selected window.
27324
27325 2005-02-22 Kenichi Handa <handa@m17n.org>
27326
27327 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
27328 (ps-mule-show-warning): New function.
27329 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
27330 characters are found.
27331
27332 * ps-print.el (ps-header-footer-string): Return a list of header
27333 and footer strings.
27334
27335 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
27336
27337 * pcvs.el (cvs-retrieve-revision): Fix thinko.
27338
27339 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
27340
27341 * frame.el (blink-cursor-mode): Use define-minor-mode.
27342
27343 * term/mac-win.el (function-key-map): Use char-names more consistently.
27344 (file-name-coding-system): Only set it for MacOS-9. The other case is
27345 already handled in mule-cmds.el (where it also works when mac-win.el
27346 is not used).
27347
27348 2005-02-21 Kenichi Handa <handa@m17n.org>
27349
27350 * international/mule.el (ctext-pre-write-conversion): Always use
27351 " *code-converting-work*" buffer for work.
27352
27353 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
27354
27355 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
27356
27357 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
27358
27359 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
27360
27361 * ses.el (undo-more): Restore defadvice, but only the part that
27362 allows changes outside the restricted area of the buffer.
27363
27364 2005-02-20 Kim F. Storm <storm@cua.dk>
27365
27366 * simple.el (line-move): Add fourth optional arg try-vscroll which
27367 must be set to perform auto-window-vscroll.
27368 When moving backwards and doing auto-window-vscroll, automatically
27369 vscroll to the last part of lines which are taller than the window.
27370 (next-line, previous-line): Set try-vscroll arg on line-move.
27371
27372 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
27373
27374 * replace.el (query-replace, query-replace-regexp)
27375 (replace-string, replace-regexp): When operating on region, make
27376 the minibuffer prompt say so.
27377
27378 * isearch.el (isearch-forward): Document isearch-query-replace and
27379 isearch-query-replace-regexp keybindings.
27380
27381 2005-02-19 Jay Belanger <belanger@truman.edu>
27382
27383 * calc/calc-aent.el (math-read-token): Add local variable.
27384
27385 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
27386 (calc-edit-top): Move declaration to earlier in file.
27387 (calc-edit-macro-repeats): Add local variables.
27388
27389 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
27390 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
27391 calcFunc-tanh.
27392 Adjust integration rule for calcFunc-tan.
27393
27394 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
27395
27396 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
27397 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
27398 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
27399 (viper-skip-separators): Bug fix.
27400 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
27401 particular major mode.
27402 (viper-del-backward-char-in-replace): Don't put deleted char on the
27403 kill ring.
27404
27405 * viper-ex.el (viper-color-display-p): New function.
27406 (viper-has-face-support-p): Use viper-color-display-p.
27407
27408 * viper-keym.el (viper-gnus-modifier-map): New keymap.
27409
27410 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
27411
27412 * viper-util.el (viper-glob-unix-files): Fix shell status check.
27413 (viper-file-remote-p): Make equivalent to file-remote-p.
27414
27415 * viper.el (viper-major-mode-modifier-list):
27416 Use viper-gnus-modifier-map.
27417
27418 2005-02-19 David Kastrup <dak@gnu.org>
27419
27420 * subr.el (subregexp-context-p): Fix garbled doc string by adding
27421 quoting.
27422
27423 2005-02-19 Jay Belanger <belanger@truman.edu>
27424
27425 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
27426 Remove extra definitions.
27427 (calc-coth): New function.
27428 (calcFunc-cot): Fix `let'.
27429
27430 2005-02-19 Eli Zaretskii <eliz@gnu.org>
27431
27432 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
27433 the reasons we use "type pc" in these faces.
27434
27435 * button.el (button): Ditto.
27436
27437 2005-02-19 Michael Mauger <mmaug@yahoo.com>
27438
27439 * replace.el (query-replace-read-from): Set the value of
27440 query-replace-from-history-variable to handle the case of an empty
27441 string entered to accept the suggested default.
27442
27443 * net/tramp.el (tramp-file-name-for-operation):
27444 Use dired-call-process instead of dired-call-process-command.
27445
27446 2005-02-19 Jay Belanger <belanger@truman.edu>
27447
27448 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
27449 (math-div-non-trig): New variables.
27450 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
27451 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
27452 (math-combine-prod, math-div-symb-fancy): Add simplifications for
27453 trig expressions.
27454
27455 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
27456
27457 * progmodes/gdb-ui.el (gdb-var-update-handler)
27458 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
27459 for watch expressions,
27460 (gdb-var-create-handler): Don't set speedbar-update-flag.
27461 (gdb-post-prompt): Simplify test for speedbar.
27462
27463 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
27464
27465 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
27466 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
27467 we use the syntax table of the correct buffer.
27468 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
27469 Felix Gatzemeier.
27470
27471 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
27472 (ediff-file-remote-p): Make synonymous with file-remote-p.
27473 In all deffaces ediff-*-face-*, use min-colors.
27474
27475 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
27476 ediff-recurse-to-subdirectories.
27477 (ediff-mark-if-equal): Check that the arguments are strings, use
27478 ediff-same-contents (after to Felix Gatzemeier).
27479
27480 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
27481 nil.
27482
27483 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
27484
27485 * log-view.el (log-view-message-re): Fix up Subversion regexp.
27486
27487 2005-02-18 David Kastrup <dak@gnu.org>
27488
27489 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
27490 use `mark-active' when defined.
27491
27492 2005-02-18 Kenichi Handa <handa@m17n.org>
27493
27494 * ps-print.el (ps-font-info-database): New entry
27495 ZapfChancery-MediumItalic with correct font name. Fix font name
27496 of the entry Zapf-Chancery-MediumItalic.
27497
27498 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
27499
27500 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
27501
27502 2005-02-16 Kim F. Storm <storm@cua.dk>
27503
27504 * ido.el (ido-fallback-command): Pass user input to fallback command.
27505
27506 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
27507
27508 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
27509 (gdb-find-file-hook): Add server prefix.
27510
27511 2005-02-16 Richard M. Stallman <rms@gnu.org>
27512
27513 * replace.el (perform-replace): Pass new args to replace-highlight.
27514 (replace-highlight): Take region args,
27515 and pass them to isearch-lazy-highlight-new-loop.
27516
27517 * novice.el (disabled-command-hook): Autoload the defalias
27518 and the make-obsolete-variable call.
27519
27520 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
27521
27522 * isearch.el (isearch-lazy-highlight-start-limit)
27523 (isearch-lazy-highlight-end-limit): New variables limit
27524 the region for highlighting.
27525 (isearch-lazy-highlight-new-loop): New args BEG and END.
27526 (isearch-lazy-highlight-search): Use the new vars.
27527 (isearch-lazy-highlight-update): Likewise.
27528
27529 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
27530
27531 * cus-start.el (all): Use default-boundp.
27532
27533 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
27534
27535 * menu-bar.el (menu-bar-select-frame): Handle current frame.
27536
27537 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
27538
27539 * autorevert.el (auto-revert-stop-on-user-input)
27540 (auto-revert-verbose): Doc fixes.
27541
27542 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
27543
27544 * international/mule-cmds.el (set-locale-environment): Remove call
27545 to set-selection-coding-system on Windows.
27546
27547 2005-02-15 Jay Belanger <belanger@truman.edu>
27548
27549 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
27550 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
27551 calcFunc-coth.
27552 (math-simplify-sqrt): Add simplifications.
27553
27554 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
27555 to list.
27556
27557 * calc/calc-ext.el: Add functions to autoloads.
27558
27559 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
27560 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
27561 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
27562 (math-csc-raw, math-cot-raw): New functions.
27563
27564 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
27565
27566 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
27567 the variable name in a message.
27568
27569 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
27570 calcFunc-csc, calcFunc-cot.
27571
27572 * calc/calcalg2.el: Add derivative and integration rules for
27573 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
27574 calcFunc-csch, calcFunc-coth.
27575 (math-do-integral-methods): Add to checks for when to use
27576 substitutions.
27577
27578 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
27579
27580 2005-02-15 Lute Kamstra <lute@gnu.org>
27581
27582 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
27583 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
27584 <monnier@iro.umontreal.ca>.
27585 (lisp-outline-level): Improve efficiency. Suggested by David
27586 Kastrup <dak@gnu.org>.
27587
27588 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
27589
27590 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
27591 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
27592 (gdb-set-gud-minor-mode-existing-buffers): New functions.
27593 (gdb-find-file-hook): New hook. Add it to find-file-hook.
27594 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
27595
27596 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
27597
27598 * cus-start.el (all): Comment change.
27599
27600 2005-02-14 Lute Kamstra <lute@gnu.org>
27601
27602 * cus-start.el (all): Check if symbol is void.
27603
27604 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
27605
27606 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
27607 optional argument to \cite.
27608
27609 2005-02-14 Richard M. Stallman <rms@gnu.org>
27610
27611 * cus-edit.el (custom-buffer-create-internal): Update help message.
27612 (custom-magic-alist): Update help messages.
27613
27614 * cus-start.el (all): Allow a var to specify a standard value.
27615
27616 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
27617
27618 * custom.el (custom-theme-set-variables): Handle variable aliases.
27619
27620 * frame.el (blink-cursor-timer): Doc fix.
27621 (blink-cursor): Make it an alias for `blink-cursor-mode' and
27622 declare obsolete.
27623 (blink-cursor-mode): Define with defcustom and use correct
27624 standard expression in that defcustom.
27625 * startup.el (command-line): Adapt to above changes in frame.el.
27626
27627 2005-02-11 Lute Kamstra <lute@gnu.org>
27628
27629 * apropos.el (apropos-score-doc): Prevent division by zero.
27630
27631 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
27632
27633 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
27634 (icalendar--get-event-property-attributes)
27635 (icalendar--get-event-properties)
27636 (icalendar--datetime-to-diary-date): New functions.
27637 (icalendar--split-value): Doc fix.
27638 (icalendar--datetime-to-noneuropean-date)
27639 (icalendar--datetime-to-european-date): New optional argument
27640 SEPARATOR. Return result as a string instead of a list.
27641 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
27642 (icalendar--convert-string-for-export): Rename arg S to STRING.
27643 (icalendar-export-region): Doc fix. Change name of error buffer.
27644 Save output buffer.
27645 (icalendar-import-file): Add blank at end of prompt.
27646 (icalendar-import-buffer): Doc fix. Do not switch to error
27647 buffer. Indicate status in return value.
27648 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
27649 buffer. Save output buffer. Handle exception from recurrence
27650 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
27651 events. Fix problems with weekly all-day events.
27652
27653 2005-02-10 Richard M. Stallman <rms@gnu.org>
27654
27655 * simple.el (eval-expression-print-format):
27656 Avoid warning about edebug-active.
27657
27658 * help.el (help-for-help-internal): Rename from help-for-help.
27659 (help-for-help): Define with defalias.
27660
27661 * font-core.el (font-lock-default-function): Use with-no-warnings.
27662
27663 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
27664
27665 * custom.el (defface): Doc fix.
27666
27667 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
27668
27669 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
27670 width 0" to prevent word wrapping problems.
27671
27672 2005-02-09 Kim F. Storm <storm@cua.dk>
27673
27674 * ido.el (ido-file-extensions-order): New defcustom.
27675 (ido-file-extension-lessp, ido-file-extension-aux)
27676 (ido-file-extension-order): New advanced file ordering.
27677 (ido-file-lessp): New simple file ordering.
27678 (ido-sort-list): Remove.
27679 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
27680 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
27681
27682 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
27683
27684 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
27685 that some versions of grep produce.
27686 (grep-mode-font-lock-keywords): Likewise.
27687
27688 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
27689
27690 * progmodes/gdb-ui.el (gdb-location-list): New variable.
27691 (gdb-cdir): Delete.
27692 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
27693 (gdb-source-info): Treat case when source file is in another
27694 directory properly.
27695 (gdb-get-location): New function.
27696
27697 2005-02-07 Jay Belanger <belanger@truman.edu>
27698
27699 * calc/calc-prog.el (calc-write-parse-table-part)
27700 (calc-fix-token-name): Fix a check for language type.
27701
27702 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
27703
27704 2005-02-07 Andre Spiegel <spiegel@gnu.org>
27705
27706 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
27707 as directory not writable.
27708
27709 2005-02-07 Kim F. Storm <storm@cua.dk>
27710
27711 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
27712 (cua--standard-movement-commands): Remove list.
27713 Instead, set CUA property value to move for movement commands.
27714 (cua-movement-commands): Remove. Users must set CUA prop instead.
27715 (cua--pre-command-handler): Check CUA property.
27716 (cua--init-keymaps): Don't remap undo commands.
27717 (cua-mode): Don't call cua--rectangle-on-off.
27718
27719 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
27720 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
27721 (cua--rect-undo-set-point): New var.
27722 (cua--rectangle-undo-boundary): Setup undo apply entry.
27723 (cua--rect-undo-handler): New function for rectangle undo.
27724 (cua--rect-start-position, cua--rect-end-position): Add.
27725 (cua--rectangle-post-command): Call cua--rectangle-set-corners
27726 for restored rectangle. Set point if cua--rect-undo-set-point.
27727
27728 2005-02-06 Jay Belanger <belanger@truman.edu>
27729
27730 * calc/calc-lang.el (calc-tex-language): Display more information
27731 in messages.
27732
27733 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
27734 in TeX mode.
27735
27736 2005-02-06 Richard M. Stallman <rms@gnu.org>
27737
27738 * emacs-lisp/lisp.el (buffer-end): Doc fix.
27739
27740 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
27741
27742 * net/ldap.el (ldap-search-internal): Support attributes with
27743 optional descriptions separated by a semi-colon, as in
27744 "userCertificate;binary".
27745
27746 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
27747
27748 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
27749 isn't a cons (i.e. the version is 0).
27750
27751 2005-02-05 Eli Zaretskii <eliz@gnu.org>
27752
27753 * help.el (help-for-help): Doc fix.
27754
27755 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
27756
27757 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
27758 GDB-Windows on the menu-bar as this works better.
27759
27760 2005-02-04 Jay Belanger <belanger@truman.edu>
27761
27762 * calc/calc-embed.el (calc-embedded-update): Don't put in
27763 unnecessary newlines. Adjust the end of formula marker.
27764
27765 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
27766 (math-latex-parse-two-args): New function.
27767
27768 2005-02-03 Lute Kamstra <lute@gnu.org>
27769
27770 * help-fns.el (help-with-tutorial): Make sure that users cannot
27771 remove the entire text of the tutorial by means of `undo'.
27772
27773 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
27774
27775 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
27776 in recent changes, where the ispell process was repeatedly
27777 killed & restarted.
27778
27779 * international/mule-cmds.el (set-locale-environment): Set file-name
27780 coding system to utf-8 on Darwin systems.
27781 (set-default-coding-systems): Don't set default-file-name-coding-system
27782 on Darwin systems.
27783
27784 2005-02-03 Richard M. Stallman <rms@gnu.org>
27785
27786 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
27787
27788 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
27789
27790 * faces.el (list-faces-display): Add optional argument.
27791
27792 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
27793
27794 * font-core.el (font-lock-default-function): Handle the rare case where
27795 only font-lock-keywords is set.
27796
27797 2005-02-02 Kenichi Handa <handa@m17n.org>
27798
27799 * international/characters.el: Cancel previous change for
27800 I-WITH-DOT-ABOVE and DOTLESS-i.
27801
27802 * international/latin-5.el: Cancel previous change.
27803
27804 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
27805
27806 * progmodes/gud.el: Correction to syntax in gud-menu-map.
27807
27808 2005-02-02 Kenichi Handa <handa@m17n.org>
27809
27810 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
27811 DOTLESS-i.
27812
27813 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
27814 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
27815
27816 * case-table.el (get-upcase-table): New function.
27817 (copy-case-table): Copy upcaes table too if non-nil.
27818 (set-case-syntax-delims): Maintain upcase table too.
27819 (set-case-syntax-pair): Likewise.
27820 (set-upcase-syntax, set-downcase-syntax): New functions.
27821 (set-case-syntax): Maintain upcase table too.
27822
27823 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
27824
27825 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
27826
27827 * progmodes/gud.el (gud-goto-info): New function.
27828 (gud-tool-bar-map): Use correct icon.
27829
27830 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
27831
27832 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
27833 When delegating, order args in the funcall correctly.
27834
27835 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
27836
27837 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
27838
27839 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
27840
27841 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
27842 buffer not visiting a file.
27843
27844 2005-01-31 Jay Belanger <belanger@truman.edu>
27845
27846 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
27847 bound on the line with the formula.
27848
27849 2005-01-31 Kim F. Storm <storm@cua.dk>
27850
27851 * ses.el (ses-create-cell-variable-range)
27852 (ses-destroy-cell-variable-range, ses-reset-header-string)
27853 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
27854 (ses-insert-row): Fix format of apply undo entries.
27855
27856 2005-01-31 Jay Belanger <belanger@truman.edu>
27857
27858 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
27859 parts.
27860
27861 * calc/calc-embed.el (calc-embedded-open-formula)
27862 (calc-embedded-close-formula): Ignore matrix environments.
27863
27864 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
27865 TeX mode.
27866
27867 * calc/calc-lang.el (math-function-table, math-oper-table)
27868 (math-variable-table): Adjust the LaTeX portions.
27869
27870 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
27871 (math-latex-ignore-words): New constant.
27872
27873 2005-01-31 Richard M. Stallman <rms@gnu.org>
27874
27875 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
27876 (ispell-local-dictionary): Doc fix.
27877 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
27878 Don't reinitialize at run time. Don't defcustom.
27879 All uses changed to append ispell-local-dictionary-alist,
27880 or check it first.
27881 (ispell-current-dictionary): New variable for dictionary in use.
27882 (ispell-dictionary): Now used only for global default.
27883 (ispell-start-process): Set ispell-current-dictionary,
27884 not ispell-dictionary.
27885 (ispell-change-dictionary): Use this only for setting
27886 user preferences.
27887 (ispell-internal-change-dictionary): New function
27888 to change the current dictionary in use.
27889 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
27890 Use ispell-current-dictionary.
27891 Handle ispell-local-dictionary-overridden.
27892 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
27893
27894 2005-01-31 Jay Belanger <belanger@truman.edu>
27895
27896 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
27897
27898 * calc/calc-ext.el: Add calc-latex-language to autoloads.
27899 (calc-mode-map): Add calc-latex-language.
27900
27901 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
27902 (math-latex-print-frac): New functions.
27903 (math-oper-table, math-function-table, math-variable-table)
27904 (math-complex-format, math-input-filter): Add latex properties.
27905 (calc-set-language): Set math-expr-special-function-mapping.
27906
27907 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
27908 (calc-write-parse-table-part): Add LaTeX support.
27909
27910 * calc/calc.el (calc-language): Adjust docstring.
27911 (calc-set-mode-line): Add LaTeX support.
27912 (math-expr-special-function-mapping): New variable.
27913 (math-tex-ignore-words): Add to list.
27914
27915 * calc/calccomp.el (math-compose-expr, math-compose-rows):
27916 Add LaTeX support.
27917 (math-compose-expr): Add support for special functions.
27918
27919 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
27920
27921 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
27922
27923 * progmodes/gdb-ui.el (gdb-memory-address)
27924 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
27925 (gdb-memory-mode-map, gdb-memory-format-keymap)
27926 (gdb-memory-format-menu, gdb-memory-unit-keymap)
27927 (gdb-memory-unit-menu): New variables for a buffer
27928 that lets the user examine program memory.
27929 (gdb-memory-set-address, gdb-memory-set-repeat-count)
27930 (gdb-memory-format-binary, gdb-memory-format-octal)
27931 (gdb-memory-format-unsigned, gdb-memory-format-signed)
27932 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
27933 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
27934 (gdb-memory-unit-word, gdb-memory-unit-halfword)
27935 (gdb-memory-unit-byte, gdb-memory-unit-menu)
27936 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
27937 (gdb-memory-mode, gdb-memory-buffer-name)
27938 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
27939 New functions for above buffer.
27940
27941 2005-01-30 Richard M. Stallman <rms@gnu.org>
27942
27943 * cus-edit.el (custom-bury-buffer): Function deleted.
27944 (custom-buffer-done-function): Option deleted.
27945 (custom-buffer-done-kill): New replacement option.
27946 (Custom-buffer-done): Call quit-window.
27947 (custom-buffer-create-internal): Update for above changes.
27948
27949 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
27950
27951 * simple.el (undo-ask-before-discard): New var.
27952 (undo-outer-limit-truncate): Implement it.
27953 (undo-extra-outer-limit): Doc update.
27954
27955 2005-01-29 Richard M. Stallman <rms@gnu.org>
27956
27957 * ses.el (undo-more): Delete defadvice.
27958 (ses-begin-change): Doc fix.
27959
27960 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
27961 instead of rebinding C-x u and C-_.
27962
27963 * files.el (normal-backup-enable-predicate): Return nil for files
27964 in /tmp, regardless of temporary-file-directory.
27965
27966 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
27967
27968 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
27969 (open-rectangle, delete-whitespace-rectangle-line)
27970 (clear-rectangle-line): If FILL, pass t instead of FILL
27971 for move-to-column's 2nd arg.
27972
27973 * simple.el (undo): Fix the test for continuing a series of undos.
27974 (undo-more): Set pending-undo-list to t when we reach end.
27975 (pending-undo-list): Move up defvar.
27976
27977 * wid-edit.el (widget-button-click):
27978 Shorten the range of the track-mouse binding.
27979
27980 * comint.el (comint-insert-input): Undo previous changes;
27981 use last-input-event in interactive spec.
27982
27983 2005-01-29 Eli Zaretskii <eliz@gnu.org>
27984
27985 * progmodes/compile.el (compilation-start): Bind buffer-read-only
27986 to nil before invoking call-process. Reset buffer's modified flag
27987 after fontifying it in the no-async branch.
27988
27989 * wid-edit.el (widget-specify-button): If mouse pointer shape
27990 cannot be changed, use mouse face instead.
27991
27992 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
27993
27994 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
27995 (gdb-goto-breakpoint): Make breakpoint handling work on template
27996 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>.
27997 (gdb-assembler-custom): Update to recognize breakpoint information
27998 added on 2005-01-19.
27999
28000 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28001
28002 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
28003 (dsssl-mode): Use define-derived-mode.
28004 (scheme-mode-initialize): Remove.
28005 (scheme-mode): Use run-mode-hooks.
28006
28007 * cus-edit.el (customize-group-other-window)
28008 (custom-buffer-create-other-window): Don't override special-display-*.
28009 (custom-mode-map): Make it dense.
28010
28011 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
28012 sets the default value.
28013
28014 2005-01-28 Eli Zaretskii <eliz@gnu.org>
28015
28016 * descr-text.el: Add more keywords.
28017
28018 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
28019
28020 * speedbar.el: Avoid unnecessary use of locate-library.
28021
28022 * international/mule-cmds.el (standard-display-european-internal):
28023 Don't fiddle with latin-1 non-break space any more since it's now
28024 special cased in the C code.
28025 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
28026
28027 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
28028
28029 * cus-start.el (all): Add `undo-outer-limit'.
28030
28031 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
28032
28033 * textmodes/bibtex.el (bibtex-format-entry):
28034 Use `bibtex-empty-field-re' only on the text of fields, not on entire
28035 field lines.
28036 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
28037 not on part of a buffer.
28038
28039 2005-01-25 Lute Kamstra <lute@gnu.org>
28040
28041 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
28042 nonempty field text strings like "{letters\\macro{}more letters}".
28043 Clarify docstring.
28044 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
28045 (bibtex-entry-offset, bibtex-parse-association)
28046 (bibtex-parse-field-name): Fix typos in docstrings.
28047 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
28048
28049 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
28050
28051 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
28052 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
28053 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
28054 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
28055
28056 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
28057 isearch minor mode.
28058
28059 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
28060
28061 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
28062
28063 2005-01-24 Lute Kamstra <lute@gnu.org>
28064
28065 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
28066 CASECHARS and NOT-CASECHARS regular expressions of the
28067 "nederlands" and "nederlands8" dictionaries to prevent a "Range
28068 striding over charsets" error.
28069
28070 2005-01-24 Jay Belanger <belanger@truman.edu>
28071
28072 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
28073 display variable name.
28074
28075 2005-01-24 Kenichi Handa <handa@m17n.org>
28076
28077 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
28078 Fix setting of the element of encoded-kbd-iso2022-invocations.
28079
28080 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
28081
28082 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
28083 (gdb-threads-select): Change to also accept mouse events.
28084 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
28085 (gdb-threads-mouse-select): Delete.
28086
28087 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
28088
28089 * files.el (insert-directory): Take care of empty directory,
28090 listed without -a switch.
28091
28092 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
28093
28094 * textmodes/refill.el (refill-post-command-function):
28095 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
28096 to the list of functions that we should be careful not to undo.
28097 (refill-late-fill-paragraph-function): Remove.
28098 (refill-saved-state): New var.
28099 (refill-mode): Use it to save fill-paragraph-function.
28100 Save also the value of auto-fill-function.
28101
28102 * term/w32-win.el: Simplify code.
28103
28104 2005-01-23 Kim F. Storm <storm@cua.dk>
28105
28106 * simple.el (line-move): Adapt to new return value from
28107 pos-visible-in-window-p.
28108
28109 * simple.el (line-move): Fix last change. Check partial
28110 visibility at point rather than at window-start.
28111
28112 2005-01-22 Jason Rumney <jasonr@gnu.org>
28113
28114 * term/w32-win.el (xw-defined-colors): Remove debug-message.
28115
28116 2005-01-22 David Kastrup <dak@gnu.org>
28117
28118 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
28119
28120 2005-01-22 Eli Zaretskii <eliz@gnu.org>
28121
28122 * type-break.el (type-break-mode): Add a test for
28123 type-break-file-name being non-nil.
28124
28125 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
28126
28127 * net/eudc.el (top level): Call (message "") via progn, so that
28128 eudc-options-file is loaded.
28129
28130 2005-01-22 Kim F. Storm <storm@cua.dk>
28131
28132 * simple.el (line-move-1): Rename from line-move.
28133 (line-move): New function that adjusts vscroll for partially
28134 visible rows, and calls line-move-1 otherwise.
28135
28136 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
28137
28138 * pcomplete.el: Define pcomplete-read-event instead of read-event,
28139 since it's not a complete read-event implementation
28140
28141 2005-01-20 Jay Belanger <belanger@truman.edu>
28142
28143 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
28144 for called function.
28145
28146 2005-01-20 Steven Tamm <steventamm@mac.com>
28147
28148 * term/mac-win.el (process-connection-type): Remove.
28149 Controlled now by s/darwin.h:PTY_ITERATION.
28150
28151 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
28152
28153 * window.el (handle-select-window): Don't switch window when we're
28154 in the minibuffer.
28155
28156 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
28157
28158 * subr.el (dotimes-with-progress-reporter): New macro.
28159
28160 * ses.el (ses-dotimes-msg): Remove macro.
28161 Use `dotimes-with-progress-reporter' instead.
28162
28163 2005-01-19 Steven Tamm <steventamm@mac.com>
28164
28165 * term/mac-win.el (process-connection-type): Use new
28166 operating-system-release variable to use ptys on Darwin 7 (OS X
28167 10.3) when using carbon build.
28168
28169 2005-01-19 Jay Belanger <belanger@truman.edu>
28170
28171 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
28172 flags if the last command was a tab or M-tab.
28173
28174 * calc/calc-prog.el (calc-user-define-edit): Put original formula
28175 in formula editing buffer.
28176
28177 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
28178
28179 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
28180 breakpoint image symbol in margin.
28181
28182 2005-01-19 Jay Belanger <belanger@truman.edu>
28183
28184 * calc/calc-prog.el (calc-execute-kbd-macro):
28185 Ignore calc-keep-arg-flag.
28186
28187 2005-01-19 Kenichi Handa <handa@m17n.org>
28188
28189 * textmodes/ispell.el (ispell-looking-at): New function.
28190 (ispell-process-line): Use ispell-looking-at to compare the ispell
28191 output and the buffer contents.
28192
28193 2005-01-18 Jay Belanger <belanger@truman.edu>
28194
28195 * calc/calc.el (calc-display-raw): Fix docstring.
28196
28197 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
28198
28199 * simple.el (blink-matching-open): Strip extra info from syntax.
28200
28201 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
28202 funny chars in the end-of-here-doc marker.
28203
28204 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
28205
28206 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
28207 that enable/disabled state of breakpoints is shown correctly in
28208 fringe and on ttys.
28209 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
28210 Add breakpoint information as text properties.
28211 (gdb-mouse-toggle-breakpoint):
28212 Rename to gdb-mouse-set-clear-breakpoint.
28213 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
28214 breakpoints in the margin.
28215 (gdb-remove-strings): Simplify.
28216
28217 2005-01-17 Jay Belanger <belanger@truman.edu>
28218
28219 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
28220 erasing buffer.
28221
28222 2005-01-17 Richard M. Stallman <rms@gnu.org>
28223
28224 * progmodes/grep.el (grep-find): Copy from `grep' the condition
28225 for calling grep-compute-defaults.
28226
28227 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
28228 if buffer is empty.
28229
28230 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
28231
28232 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
28233
28234 * hilit-chg.el (highlight-changes-mode): Don't autoload.
28235
28236 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
28237 non-preloaded variables.
28238
28239 2005-01-17 Steven Tamm <steventamm@mac.com>
28240
28241 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
28242 tex-shell cause to force interactivity when using pipes.
28243
28244 2005-01-17 Kim F. Storm <storm@cua.dk>
28245
28246 * simple.el (just-one-space): Make arg optional.
28247
28248 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
28249
28250 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
28251 posn-at-x-y to t to access left-margin.
28252
28253 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
28254
28255 Sync with Tramp 2.0.47.
28256
28257 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
28258 catching keep-date problems in cp/scp operations.
28259 (tramp-handle-copy-file): Don't call `set-file-modes'
28260 unconditionally. Specialized functions should know better what is
28261 necessary. This improves performance a little bit, and the
28262 functions could catch errors with `cp -p' and `scp -p'.
28263 (tramp-do-copy-or-rename-file-via-buffer)
28264 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
28265 when appropriate.
28266 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
28267 Call `set-file-modes' when appropriate.
28268 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
28269 Johnsson <isak@hypergene.com>.
28270 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
28271 of both Tramp buffer and debug buffer. Reported by Joakim Verona
28272 <joakim@verona.se>.
28273 (tramp-file-name-for-operation): Mark `shell-command' as magic for
28274 Emacs only.
28275
28276 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
28277 `find-file-hooks' and `dired-mode-hook'.
28278 (tramp-minor-mode-map): Respective map. Add remapping for
28279 `compile' and `recompile'.
28280 (tramp-remap-command, tramp-recompile): New defuns.
28281 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
28282 in buffer "*Compilation*". Call the commands asynchronously.
28283
28284 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
28285 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
28286 `shell-command', because it isn't magic in XEmacs. Reported by
28287 Adrian Aichner <adrian@xemacs.org>.
28288
28289 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
28290 `substitute-in-file-name.
28291 (tramp-smb-handle-substitute-in-file-name): New defun.
28292 (tramp-smb-advice-PC-do-completion): Delete advice.
28293
28294 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
28295
28296 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
28297 Fix error in deleting region.
28298
28299 2005-01-15 Richard M. Stallman <rms@gnu.org>
28300
28301 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
28302 In non-temp buffer, switch syntax table temporarily.
28303
28304 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
28305
28306 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
28307
28308 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
28309
28310 * imenu.el (imenu--split-menu): Copy menulist before sorting.
28311 (imenu--generic-function): Use START, not BEG, as pos of definition.
28312
28313 * simple.el (just-one-space): Argument specifies number of spaces.
28314
28315 * simple.el (eval-expression-print-format): Avoid warning
28316 about edebug-active.
28317
28318 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (tiny change)
28319
28320 * progmodes/sh-script.el: Code copied from make-mode.el
28321 with small changes,
28322 (sh-mode-map): Bind C-c C-\.
28323 (sh-backslash-column, sh-backslash-align): New variables.
28324 (sh-backslash-region, sh-append-backslash): New functions.
28325
28326 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
28327
28328 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
28329 (rmail-pop-password, rmail-pop-password-required): Move to
28330 rmail-obsolete group.
28331 (rmail-set-pop-password): Rename to rmail-set-remote-password.
28332 All callers updated.
28333 (rmail-get-pop-password): Rename to rmail-get-remote-password.
28334 Take an argument specifying whether it is POP or IMAP mailbox we
28335 are using. All callers updated.
28336 (rmail-pop-password-error): Rename to
28337 rmail-remote-password-error. Added mailutils-specific error message.
28338 (rmail-movemail-search-path)
28339 (rmail-movemail-variant-in-use): New variables.
28340 (rmail-remote-password, rmail-remote-password-required):
28341 New customization variables.
28342 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
28343 (rmail-parse-url): New function.
28344 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
28345 with GNU mailutils movemail.
28346
28347 2005-01-15 Kevin Ryde <user42@zip.com.au>
28348
28349 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
28350 suffix to space, $ or '$, to correctly position point when going
28351 to @table style constants like DBL_MAX.
28352
28353 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
28354
28355 * type-break.el (type-break-mode, type-break-file-time)
28356 (type-break-file-keystroke-count, type-break-choose-file):
28357 Don't store data in or load data from the file if type-break-file-name
28358 is nil.
28359 (type-break-file-name): Doc update as per the above.
28360
28361 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
28362
28363 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
28364 lookup-key might return nil; handle that.
28365
28366 2005-01-15 Alan Mackenzie <acm@muc.de>
28367
28368 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
28369 rather than the element found, thus enabling the tree to be setcar'd.
28370
28371 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
28372
28373 * textmodes/org.el (org-show-following-heading): New option.
28374 (org-show-hierarchy-above): Use `org-show-following-heading'.
28375 (org-cycle): Documentation fix.
28376
28377 * textmodes/org.el (orgtbl-optimized): New option
28378 (orgtbl-mode): New command, a minor mode.
28379 (orgtbl-mode-map): New variable.
28380 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
28381 (orgtbl-error, orgtbl-self-insert-command)
28382 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
28383
28384 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
28385 a local variable in each org-mode buffer.
28386
28387 * textmodes/org.el (org-set-regexps-and-options): Rename from
28388 `org-set-regexps'. Added checking for STARTUP keyword.
28389 (org-get-current-options): Add STARTUP options.
28390 (org-table-insert-row): Make mode intelligent about when
28391 realignment is needed.
28392 (org-self-insert-command, org-delete-backward-char, org-delete-char):
28393 New commands.
28394 (org-enable-table-editor): New default value `optimized'.
28395 (org-table-blank-field): Support blanking regions if active.
28396
28397 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
28398
28399 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
28400 if the year is not given.
28401
28402 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
28403 Add new escapes %m and %M, fixed bug with %F by adding
28404 save-match-data.
28405 (reftex-reference): Remove ?. from list of spaces.
28406 (reftex-label-info): Add automatic label prefix recognition.
28407
28408 * textmodes/reftex-index.el (reftex-index-next-phrase):
28409 Add slave parameter to call of `reftex-index-this-phrase'.
28410 (reftex-index-this-phrase): New optional argument.
28411 (reftex-index-region-phrases): Add slave parameter to call of
28412 `reftex-index-this-phrase'.
28413 (reftex-display-index): New argument redo.
28414 (reftex-index-rescan): Add `redo' to arguments of
28415 `reftex-display-index'.
28416 (reftex-index-Rescan, reftex-index-revert)
28417 (reftex-index-switch-index-tag): Add `redo' to arguments of
28418 `reftex-display-index'.
28419 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
28420 indexing. Fix bug with matching is there is a quote before or
28421 after the word.
28422
28423 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
28424 Fix bug when collecting citation keys in lines with comments.
28425 (reftex-citation): Prefix argument no longer rescans the document,
28426 but forces prompting for optional arguments of cite macros.
28427 (reftex-do-citation): Prompting for optional arguments implemented.
28428
28429 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
28430 Add optional arguments to most cite commands.
28431 (reftex-cite-cleanup-optional-args): New option
28432 (reftex-cite-prompt-optional-args): New option.
28433 (reftex-trust-label-prefix): New option.
28434
28435 * textmodes/reftex-toc.el (reftex-toc-find-section):
28436 Add push-mark before changing the position in the buffer.
28437
28438 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
28439 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
28440
28441 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
28442
28443 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
28444 more carefully.
28445
28446 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
28447
28448 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
28449 (sgml-mode): Use it.
28450 (sgml-get-context): Better keep track of implicitly closed tags.
28451
28452 2005-01-13 Kenichi Handa <handa@m17n.org>
28453
28454 * textmodes/ispell.el: These changes are to fix misalignment error
28455 caused by equivalent characters of different Emacs charsets.
28456 (ispell-unified-chars-table): New variable.
28457 (ispell-get-decoded-string): New function.
28458 (ispell-get-casechars, ispell-get-not-casechars)
28459 (ispell-get-otherchars): Call ispell-get-decoded-string.
28460
28461 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
28462
28463 * custom.el (custom-declare-variable): Just put symbol instead
28464 of (defvar . symbol) in `current-load-list'.
28465
28466 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
28467
28468 * emacs-lisp/elint.el: Fixed typo in Commentary section.
28469
28470 2005-01-12 Jay Belanger <belanger@truman.edu>
28471
28472 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
28473 to create a Calc summary.
28474
28475 2005-01-12 Kim F. Storm <storm@cua.dk>
28476
28477 * mouse.el (mouse-on-link-p): Change functionality and doc
28478 string to comply with latest description in lisp ref.
28479
28480 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
28481
28482 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
28483 Enable mouse clicks on mode-line, header-line and margin.
28484 (event-type): Give mouse event symbols an `event-kind' property
28485 with value `mouse-click'.
28486
28487 2005-01-12 Juri Linkov <juri@jurta.org>
28488
28489 * facemenu.el (list-colors-display): Add new arg buffer-name.
28490 Use it. Fix docstring. Replace code for identifying duplicate
28491 colors by the name with call to `list-colors-duplicates' which
28492 identifies duplicate colors by the value unless the color
28493 is one of special Windows colors. Set truncate-lines to t.
28494 Print sorted duplicate color names on each line. Indent to 22
28495 \(the longest color name in rgb.txt) instead of 20. Optimize.
28496 (list-colors-duplicates): New function.
28497 (facemenu-color-name-equal): Delete function.
28498
28499 * facemenu.el (list-colors-print): New function created from code
28500 in list-colors-display. Print #RRGGBB at the window right edge.
28501 (list-colors-display): When temp-buffer-show-function is not
28502 defined, call list-colors-print from temp-buffer-show-hook
28503 to get the right value of window-width in list-colors-print
28504 after the buffer is displayed.
28505
28506 * simple.el (pop-mark): Move deactivate-mark out of conditional
28507 part to deactivate the active mark regardless of the state of the
28508 mark ring.
28509
28510 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
28511 variables line in desktop files.
28512
28513 2005-01-12 Juri Linkov <juri@jurta.org>
28514
28515 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
28516 Bring together isearch highlight related options.
28517 (lazy-highlight): Replace group `replace' by `matching'.
28518 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
28519 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
28520 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
28521 and declare them obsolete.
28522 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
28523 (isearch-faces): Remove defgroup.
28524 (isearch-overlay, isearch-highlight, isearch-dehighlight):
28525 Move isearch highlighting code closer to lazy highlighting code.
28526
28527 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
28528 (query-replace-highlight, query-replace-lazy-highlight)
28529 (query-replace): Move definitions to the beginning of the file.
28530
28531 2005-01-11 Juri Linkov <juri@jurta.org>
28532
28533 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
28534 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
28535 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
28536
28537 * info.el (Info-history-forward): New variable.
28538 (Info-select-node): Reset Info-history-forward to nil.
28539 (Info-last): Turn into defalias.
28540 (Info-history-back): Rename from Info-last.
28541 Add current node to Info-history-forward.
28542 (Info-history-forward): New fun.
28543 (Info-mode-map): Replace Info-last by Info-history-back.
28544 Bind Info-history-forward to "r".
28545 (Info-mode-menu): Replace Info-last by Info-history-back.
28546 Fix menu item text. Add menu item for Info-history-forward.
28547 (info-tool-bar-map): Replace Info-last by Info-history-back.
28548 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
28549 for Info-history-forward.
28550 (Info-mode): Replace Info-last by Info-history-back in docstring.
28551 Add local variable Info-history-forward.
28552 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
28553
28554 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
28555
28556 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
28557 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
28558 Ignore select-window events rather than fiddle with
28559 mouse-autoselect-window.
28560
28561 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
28562
28563 * type-break.el (type-break-mode): Fix previous change.
28564
28565 2005-01-10 Jay Belanger <belanger@truman.edu>
28566
28567 * calc/calc-ext.el (calc-reset): Reset when inside embedded
28568 calculator; only reset when point is inside a calculator.
28569 Don't adjust the window height if the window takes up the whole height
28570 of the frame.
28571
28572 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
28573
28574 * ebuff-menu.el (Electric-buffer-menu-mode):
28575 Preserve value of buffer-local var header-line-format.
28576
28577 2005-01-09 Jay Belanger <belanger@truman.edu>
28578
28579 * calc/calc.el (calc-mode-var-list-restore-saved-values):
28580 Make sure settings file exists before accessing it.
28581
28582 * calc/calc-embed.el (calc-embedded-subst):
28583 Replace math-multi-subst-rec, which is only supposed to be called
28584 by math-multi-subst, by math-multi-subst.
28585
28586 2005-01-09 Andre Spiegel <spiegel@gnu.org>
28587
28588 * vc.el (vc-allow-async-revert): New user option.
28589 (vc-disable-async-diff): New internal variable.
28590 (vc-revert-buffer): Use them to disable asynchronous diff.
28591
28592 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
28593 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
28594 asynchronously if vc-disable-async-diff is t.
28595
28596 2005-01-09 Jay Belanger <belanger@truman.edu>
28597
28598 * calc/calc.el (defcalcmodevar): New macro.
28599 (calc-mode-var-list-restore-default-values)
28600 (calc-mode-var-list-restore-saved-values): New functions.
28601 (calc-mode-var-list): Use defcalcmodevar to define it.
28602 (calc-always-load-extensions, calc-line-numbering)
28603 (calc-line-breaking, calc-display-just, calc-display-origin)
28604 (calc-number-radix, calc-leading-zeros, calc-group-digits)
28605 (calc-group-char, calc-point-char, calc-frac-format)
28606 (calc-prefer-frac, calc-hms-format, calc-date-format)
28607 (calc-float-format, calc-full-float-format, calc-complex-format)
28608 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
28609 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
28610 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
28611 (calc-matrix-brackets, calc-language, calc-language-option)
28612 (calc-left-label, calc-right-label, calc-word-size)
28613 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
28614 (calc-display-raw, calc-internal-prec, calc-angle-mode)
28615 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
28616 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
28617 (calc-window-height, calc-display-trail, calc-show-selections)
28618 (calc-use-selections, calc-assoc-selections)
28619 (calc-display-working-message, calc-auto-why, calc-timing)
28620 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
28621 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
28622 (calc-gnuplot-default-device, calc-gnuplot-default-output)
28623 (calc-gnuplot-print-device, calc-gnuplot-print-output)
28624 (calc-gnuplot-geometry, calc-graph-default-resolution)
28625 (calc-graph-default-resolution-3d, calc-invocation-macro)
28626 (calc-show-banner): Use defcalcmodevar to declare them and set
28627 their default values.
28628
28629 * calc/calc-ext.el (calc-reset): Restore saved values of variables
28630 instead of default values (but restore default values if there is
28631 an argument of 0).
28632
28633 2005-01-09 David Kastrup <dak@gnu.org>
28634
28635 * desktop.el (desktop-restore-eager): Fix typo in type.
28636
28637 2005-01-08 Richard M. Stallman <rms@gnu.org>
28638
28639 * cus-edit.el (customize): Delete :link.
28640
28641 2005-01-08 Jay Belanger <belanger@truman.edu>
28642
28643 * calc/calc.el (calc-mode): Remove the extension from the
28644 `calc-settings-file' file name when loading it.
28645
28646 2005-01-08 Kim F. Storm <storm@cua.dk>
28647
28648 * info.el (Info-mode-map, Info-next-link-keymap)
28649 (Info-prev-link-keymap, Info-up-link-keymap):
28650 Map follow-link to mouse-face.
28651 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
28652
28653 2005-01-08 Jay Belanger <belanger@truman.edu>
28654
28655 * calc/calc.el (calc-settings-file): Change default value.
28656 Suggested by cgw in a comment in calc-mode.el.
28657
28658 * calc/calc-mode.el (calc-settings-file-name):
28659 Compare calc-settings-file to user-init-file instead of ~/.emacs.
28660 Replace ~/.emacs in a prompt by calc-settings-file.
28661
28662 2005-01-07 Lars Hansen <larsh@math.ku.dk>
28663
28664 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
28665 (desktop-lazy-idle-delay): New customizable variables.
28666 (desktop-buffer-args-list): New variable.
28667 (desktop-append-buffer-args): New function.
28668 (desktop-save): Call desktop-append-buffer-args for some buffers.
28669 (desktop-lazy-create-buffer): New function.
28670 (desktop-idle-create-buffers): New function.
28671 (desktop-read): Add message about buffers to restore lazily.
28672 (desktop-lazy-abort): New command.
28673 (desktop-clear): Call desktop-lazy-abort.
28674 (desktop-lazy-complete): New command.
28675
28676 2005-01-06 Richard M. Stallman <rms@gnu.org>
28677
28678 * emacs-lisp/find-func.el (find-face-definition):
28679 Rename from find-face.
28680
28681 2005-01-06 Kim F. Storm <storm@cua.dk>
28682
28683 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
28684
28685 * man.el (Man-xref-man-page, Man-xref-header-file)
28686 (Man-xref-normal-file): Add follow-link property.
28687
28688 2005-01-06 Jay Belanger <belanger@truman.edu>
28689
28690 * calc/calc-units.el: Make sure the proper macro definitions are
28691 available when compiling.
28692
28693 2005-01-06 Juri Linkov <juri@jurta.org>
28694
28695 * isearch.el (isearch-lazy-highlight-update):
28696 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
28697
28698 2005-01-06 Miles Bader <miles@gnu.org>
28699
28700 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
28701 (isearch-lazy-highlight-face): Use new name.
28702
28703 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
28704
28705 * uniquify.el (uniquify-rationalize-file-buffer-names):
28706 Re-add an interactive spec.
28707 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
28708 to the same name.
28709
28710 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
28711 (isearch-update, isearch-done): Adjust calls accordingly.
28712
28713 2005-01-05 Richard M. Stallman <rms@gnu.org>
28714
28715 * custom.el (custom-set-variables, custom-theme-set-variables):
28716 Clarify documentation.
28717
28718 * emacs-lisp/find-func.el (find-variable)
28719 (find-variable-other-window, find-variable-other-frame):
28720 Fix the TYPE args to find-function-read and find-function-do-it.
28721 (find-function): Doc fix.
28722 (find-function-at-point): Replace function-at-point alias.
28723
28724 2005-01-04 Richard M. Stallman <rms@gnu.org>
28725
28726 * cus-face.el (custom-declare-face):
28727 Record defface in current-load-list.
28728
28729 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
28730
28731 * emacs-lisp/find-func.el: Doc fixes.
28732 (find-face-regexp): New variable.
28733 (find-function-regexp-alist): New variable.
28734 (find-function-C-source): Third arg is now TYPE.
28735 (find-function-search-for-symbol): Handle general TYPE.
28736 (find-function-read, find-function-do-it): Handle general TYPE.
28737 (find-definition-noselect, find-face): New functions.
28738 (function-at-point): Alias deleted.
28739
28740 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
28741
28742 * battery.el (display-battery-mode): Rename from display-battery.
28743 Handle the case where it gets turned off.
28744
28745 2005-01-04 Richard M. Stallman <rms@gnu.org>
28746
28747 * cus-edit.el (customize): Make :link point to user doc.
28748
28749 * man.el (Man-fontify-manpage): Turn off undo generation.
28750
28751 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
28752
28753 2005-01-04 Andreas Schwab <schwab@suse.de>
28754
28755 * files.el (insert-directory): Only look for error lines in
28756 inserted text. Don't move too far after processing --dired markers.
28757
28758 2005-01-04 Richard M. Stallman <rms@gnu.org>
28759
28760 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
28761 Don't expand if the character is @, period, dash, etc.
28762 (define-mail-abbrev): Quote names that contain problem characters.
28763
28764 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
28765
28766 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
28767
28768 2005-01-03 Richard M. Stallman <rms@gnu.org>
28769
28770 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
28771 (query-replace-highlight, query-replace-lazy-highlight)
28772 (query-replace): Definitions moved up. Doc fix.
28773
28774 2005-01-03 Richard M. Stallman <rms@gnu.org>
28775
28776 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
28777 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
28778 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
28779 (lazy-highlight-face): Rename from isearch-lazy-...
28780 Change all references to them.
28781
28782 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
28783
28784 * cus-edit.el (custom-file): Doc fix for defcustom.
28785 (custom-file): The function no longer sets the variable
28786 `custom-file' to its return value.
28787
28788 * startup.el (command-line): No longer load `custom-file'.
28789
28790 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28791
28792 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
28793
28794 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
28795 Don't confuse module-prefixed identifiers for labels.
28796 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
28797
28798 2005-01-02 Richard M. Stallman <rms@gnu.org>
28799
28800 * files.el (basic-save-buffer-1): Fix previous change.
28801
28802 * loadhist.el (file-loadhist-lookup): New function.
28803 (file-provides, file-requires): Use it.
28804
28805 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
28806 instead of calculating the right size.
28807
28808 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
28809
28810 * vc-svn.el (vc-svn-diff): Stay local if possible.
28811
28812 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
28813
28814 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
28815
28816 * files.el (hack-local-variables): Fix last change.
28817
28818 2005-01-02 Jay Belanger <belanger@truman.edu>
28819
28820 * calc/calc-yank.el (calc-edit-top): New variable.
28821 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
28822 object. Change header properties.
28823 (calc-edit-finish, calc-edit-finish-stack-object)
28824 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
28825 edited object.
28826 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
28827 for the beginning of the edited object.
28828 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
28829 for the beginning of the edited object.
28830 * calc/calc-prog.el (calc-edit-macro-finish-edit)
28831 (calc-finish-formula-edit, calc-macro-repeats)
28832 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
28833 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
28834 beginning of the edited object.
28835 (calc-user-define-edit): Change the header for editing macros.
28836 Remove unnecessary variable.
28837
28838 2005-01-01 Jay Belanger <belanger@truman.edu>
28839
28840 * calc/calc-yank.el (calc-edit-mode): Change default header.
28841 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
28842 * calc/calc-store.el (calc-edit-variable): Change title to match new
28843 header.
28844 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
28845 mode to match new header.
28846 (calc-user-define-edit): Change titles to include names of commands.
28847 (calc-finish-formula-edit): Adjust to handle new header.
28848 (calc-finish-macro-edit): Remove.
28849 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
28850 (calc-edit-macro-command, calc-edit-macro-command-type)
28851 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
28852 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
28853 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
28854 (calc-edit-macro-finish-edit): New functions.
28855 (calc-user-define-edit): Use new functions to edit named calc macros.
28856
28857 2005-01-01 Stefan <monnier@iro.umontreal.ca>
28858
28859 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
28860
28861 * ses.el (copy-region-as-kill): Deactivate mark.
28862
28863 2005-01-01 Richard M. Stallman <rms@gnu.org>
28864
28865 * replace.el (occur-1): If the output buffer is also an input,
28866 don't kill it, rename it.
28867
28868 * faces.el (set-face-background, set-face-foreground): Doc fix.
28869
28870 * cus-face.el (custom-face-attributes): Fix :help-echo strings
28871 for :foreground and :background.
28872
28873 * dired.el (dired-view-command-alist): Variable deleted.
28874 (dired-view-file, dired-mouse-find-file-other-window):
28875 Delete the code to use it.
28876
28877 2005-01-01 Kim F. Storm <storm@cua.dk>
28878
28879 * image.el (insert-sliced-image): Use t for line-height property.
28880
28881 See ChangeLog.11 for earlier changes.
28882
28883 ;; Local Variables:
28884 ;; coding: iso-2022-7bit
28885 ;; add-log-time-zone-rule: t
28886 ;; End:
28887
28888 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
28889 Copying and distribution of this file, with or without modification,
28890 are permitted provided the copyright notice and this notice are preserved.
28891
28892 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1