]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog
1 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
2
3 * textmodes/org.el: (org-combined-agenda-icalendar-file)
4 (org-icalendar-include-todo, org-icalendar-combined-name): New
5 options.
6 (org-export-icalendar-this-file)
7 (org-export-icalendar-all-agenda-files)
8 (org-export-icalendar-combine-agenda-files): New commands.
9 (org-export-icalendar, org-print-icalendar-entries)
10 (org-start-icalendar-file, org-finish-icalendar-file)
11 (org-ical-ts-to-string): New functions.
12 (org-read-date, org-goto-calendar)
13 (org-agenda-goto-calendar): Inhibit displaying diary entries by
14 call to `calendar'.
15 (orgtbl-setup): Removed the :keys arguments from the menu
16 description.
17 (org-after-save-iCalendar-file-hook): New variable.
18
19 2005-10-21 Kenichi Handa <handa@m17n.org>
20
21 * language/vietnamese.el (tcvn-5712): Make it an alias of
22 vietnamese-tcvn coding-system.
23
24 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
25
26 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
27 group id is given.
28
29 2005-10-20 Romain Francoise <romain@orebokech.com>
30
31 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
32
33 * replace.el (occur-engine): Add follow-link property.
34
35 * font-core.el (font-lock-mode): Doc fix.
36
37 2005-10-20 Richard M. Stallman <rms@gnu.org>
38
39 * net/rcirc.el: New file.
40
41 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
42
43 * term.el (term-term-name): Initialize to "eterm-color".
44
45 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
46
47 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
48 for encryption functionality.
49 Move allout customization subgroup from `editing' to `outlines' group.
50 Fix commentary 'keywords' to legitimate ones.
51 Update author info (using my current email address, obscurified).
52 (allout-encrypt-string, allout-encryption-produce-work-buffer)
53 (allout-encrypted-topic-p, allout-encrypted-text-type)
54 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
55 (allout-situate-encryption-key-verifier)
56 (allout-get-encryption-key-verifier, allout-verify-key)
57 (allout-next-topic-pending-encryption)
58 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
59 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
60 (outline-key-verifier-handling, outline-key-hint-handling)
61 (outline-encrypt-unencrypted-on-saves): New defcustoms.
62 (allout-file-key-verifier-string, allout-encryption-scheme)
63 (allout-key-verifier-string, allout-key-hint-string)
64 (allout-after-save-decrypt): New variables.
65 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
66 (allout-after-saves-handler): New hook functions.
67 (allout-post-command-business): Do allout-after-save-decrypt.
68 (allout-enable-file-variable-adjustment): Custom var to enable
69 mechanism for adding and adjusting settings of Emacs file variables.
70 (allout-adjust-file-variable, allout-file-vars-section-data):
71 New functions, implement the mechanism.
72 (outlineify-sticky): Use the file vars mechanism.
73 (allout-inhibit-protection, allout-during-write-cue)
74 (allout-override-protect, allout-before-change-protect): Remove.
75 (allout-flag-region, allout-open-topic): Adjust read-only text.
76 (allout-open-line-not-read-only): Add to facilitate read-only
77 text based protection.
78 (allout-kill-line): Revise to adjust read-only text, clue the
79 user about the inhibition.
80 (allout-unprotected): Use unwind-protect.
81 (allout-shift-in, allout-shift-out): Disallow manually shifting a
82 topic deeper than the offspring depth of the previous topic -
83 avoiding confusing "containment discontinuities".
84 (allout-reindent-bodies): Fix retention of body relative hanging
85 indent during promotion of collapsed bodies.
86 (allout-open-topic): Make it easy to open new topic with same
87 bullet as current topic - topic creation functions provided with
88 any universal argument provokes now prompt for bullet, defaulting
89 to the bullet of the previous topic.
90 (allout-plain-bullets-string, allout-distinctive-bullets-string):
91 Plain bullet alternates '.' period and ',' comma only. All other
92 bullets are relegated to special status (but customizable).
93 (allout-end-of-entry): Rename from 'allout-end-of-current-entry
94 since it actually operates w.r.t. most immediately containing
95 entry, visible or not.
96 (allout-hide-current-entry, allout-show-current-entry): Use the
97 revised version.
98 (allout-old-expose-topic): Solidify deprecation.
99 (allout-end-of-subtree): Add so we can span concealed as well
100 as visible topics.
101 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
102 (allout-end-of-current-heading): Tweak to just respect the first line.
103 (allout-get-body-text): Add.
104 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
105 when invoked interactively.
106 (allout-up-current-level): Use `interactive-p'.
107 (allout-mode, allout-init): Miscellaneous docstring and
108 operational refinements, as well as hookups of new encryption stuff.
109 (allout-beginning-of-current-entry): Now works as advertised.
110 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
111 (allout-isearch-rectification): Refine condition for isearching.
112 (allout-isearch-abort, allout-enwrap-isearch)
113 (allout-flag-region, my-region-active-p): Relocate some macros.
114 (allout-title): Fallback title is '(buffer-name)', not
115 non-existing '(current-buffer-name)'.
116 (subst-char-in-string): Define if absent (for some XEmacs versions).
117
118 2005-10-20 Jari Aalto <jari.aalto@cante.net>
119
120 * mail/sendmail.el (mail-setup-hook, mail-aliases)
121 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
122 (mail-citation-prefix-regexp, mail-signature-file)
123 (mail-default-headers, mail-bury-selects-summary)
124 (mail-send-nonascii): Add autoload cookies.
125
126 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
127
128 * frame.el (blink-cursor-mode): Add `mac' to the list of
129 window-system's that support blinking cursor.
130
131 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
132
133 * textmodes/org.el (org-level-color-stars-only): Fix typo in doc
134 string.
135
136 2005-10-20 Eli Zaretskii <eliz@gnu.org>
137
138 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Bind
139 find-file-suppress-same-file-warnings to t, to avoid warnings due
140 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
141
142 2005-10-20 Kim F. Storm <storm@cua.dk>
143
144 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
145 (ido-set-current-directory): Don't add / after final @.
146 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
147 Explicitly handle ange-ftp completion oddities.
148 (ido-make-file-list): Don't rotate list at tramp root to avoid
149 triggering tramp file handler for expand-file-name via get-file-buffer.
150
151 2005-10-19 Jay Belanger <belanger@truman.edu>
152
153 * calc/calc-units.el (math-standard-units): Add units, adjust
154 symbols and update values.
155 (math-unit-prefixes): Add more prefixes.
156
157 2005-10-19 Romain Francoise <romain@orebokech.com>
158
159 * bookmark.el (bookmark-menu-heading): New face.
160 (bookmark-bmenu-list): Use it.
161 Don't fiddle with `baud-rate' at top-level.
162
163 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
164
165 * image.el (create-image, find-image): Mention max-image-size in
166 docstring.
167
168 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
169
170 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
171 Various docstring and line-width fixups.
172 (conf-mode): Use cond.
173 Set font-lock-defaults. Don't set comment-use-syntax.
174
175 2005-10-18 David Ponce <david@dponce.com>
176
177 * tree-widget.el (tree-widget-button-click): New function.
178 (tree-widget-button-keymap): Use it.
179
180 2005-10-18 Romain Francoise <romain@orebokech.com>
181
182 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
183 (bookmark-bmenu-hide-filenames): Add follow-link property.
184 Improve help-echo text.
185
186 * ffap.el (find-file-at-point): Doc fix.
187
188 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
189
190 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
191
192 2005-10-18 Masatake YAMATO <jet@gyve.org>
193
194 Install to the CVS repository what I forgot to install in my
195 2005-10-16 changes.
196
197 * progmodes/python.el (python-complete-symbol): Pass the common
198 prefix substring of completion to `display-completion-list'.
199
200 * textmodes/org.el (org-complete): Ditto.
201
202 2005-10-18 Masatake YAMATO <jet@gyve.org>
203
204 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
205
206 * woman.el (WoMan-xref-man-page): New button type derived
207 from `Man-abstract-xref-man-page'.
208 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
209
210 * man.el (Man-abstract-xref-man-page): New button type.
211 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
212 (Man-highlight-references): Add new optional argument `xref-man-type'.
213
214 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
215
216 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
217
218 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
219
220 * cus-edit.el (Custom-move-and-invoke): Delete.
221 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
222
223 * wid-edit.el (widget-move-and-invoke): New function, from
224 Custom-move-and-invoke.
225
226 2005-10-17 Bill Wohler <wohler@newt.com>
227
228 Move all remaining images from lisp/toolbar to etc/images, move
229 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
230 the low resolution images in their own directory (low-color).
231
232 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
233 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
234 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
235 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
236 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
237 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
238 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
239
240 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
241 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
242 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
243 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
244 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
245 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
246 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
247 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
248 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
249 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
250 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
251 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
252 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
253 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
254 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
255
256 To conform with convention, replace the underscore (_) in the
257 following image names with dash (-) or (/) as appropriate.
258
259 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
260 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
261 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
262 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
263 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
264 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
265 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
266 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
267 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
268 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
269 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
270 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
271 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
272 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
273 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
274
275 * info.el (info-tool-bar-map): Replace underscores in image names
276 with dashes.
277
278 * makefile.w32-in (WINS): Remove toolbar.
279
280 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
281
282 * tool-bar.el: Move to lisp from toolbar. Now that
283 toolbar is empty, it should be deleted when folks run "cvs up -P".
284
285 2005-10-18 Jay Belanger <belanger@truman.edu>
286
287 * calc/calc-store.el (calc-store-into): Get the proper variable name
288 to display in message.
289
290 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
291
292 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
293 expressions display in speedbar for all buffers when debugging.
294 (gdb-speedbar-expand-node): Ensure node contraction is always
295 updated.
296
297 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
298 (speedbar-insert-button, speedbar-make-button):
299 Use add-text-properties.
300 (speedbar-update-localized-contents)
301 (speedbar-update-directory-contents)
302 (speedbar-update-special-contents): Use dolist.
303 (speedbar-buffer-easymenu-definition): Add a menu separator.
304
305 2005-10-17 Jason Rumney <jasonr@gnu.org>
306
307 * makefile.w32-in: Use $(lisp) consistently.
308 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
309 for shell specific generation of mh-autoloads.
310
311 2005-10-17 Richard M. Stallman <rms@gnu.org>
312
313 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
314
315 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
316
317 * jit-lock.el (jit-lock-fontify-now):
318 Move jit-lock-context-unfontify-pos to avoid wasted work.
319
320 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
321
322 * net/tramp.el (tramp-completion-mode): New defvar. Used in
323 `tramp-completion-mode' for checking if we are in completion mode.
324 (tramp-completion-handle-file-name-all-completions): Reorder code
325 in order to complete for file names only in case there are no
326 method/user/host completions. This is necessary for cooperation
327 with ido. Reported by Kim F. Storm <storm@cua.dk>.
328
329 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
330
331 * longlines.el (longlines-search-forward)
332 (longlines-search-backward): Match any number of spaces.
333
334 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
335
336 * diff-mode.el (diff-mode): Doc fix.
337
338 2005-10-16 David Reitter <david.reitter@gmail.com>
339
340 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
341 as default on darwin and windows systems.
342
343 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
344
345 * arc-mode.el (archive-zip-extract): Doc fix.
346
347 2005-10-16 Romain Francoise <romain@orebokech.com>
348
349 * mouse.el (mouse-1-click-follows-link): Doc fix.
350
351 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
352
353 * savehist.el: Don't require CL at runtime.
354 (savehist-xemacs): Remove.
355 (savehist-coding-system): Use utf-8 if present, regardless of religion.
356 (savehist-no-conversion): Use (featurep 'xemacs).
357 (savehist-load): Check existence of start-itimer rather than XEmacs.
358 Use an idle timer.
359 (savehist-process-for-saving): Replace use of CL funs `subseq' and
360 `delete-if-not'.
361
362 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
363
364 * savehist.el: Newer version.
365 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
366 (savehist-last-checksum, savehist-no-conversion): New vars.
367 (savehist-autosave, savehist-process-for-saving, savehist-printable):
368 New functions.
369 (savehist-load, savehist-save): Use them.
370 (savehist-delimit): Remove.
371
372 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 * progmodes/compile.el (compilation-goto-locus): Display the
375 compilation buffer first and the source buffer second, in case they're
376 in overlapping frames. Don't raise the compilation frame if it was the
377 selected window upon entry. Pass the `other-window' arg to
378 pop-to-buffer.
379
380 * info.el (Info-fontify-node): Use dolist.
381 Change add-text-properties to put-text-property.
382
383 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
384
385 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
386 bound of search.
387
388 2005-10-16 Masatake YAMATO <jet@gyve.org>
389
390 * dabbrev.el (dabbrev-completion): Pass the common
391 prefix substring of completion to `display-completion-list'.
392
393 * filecache.el (file-cache-minibuffer-complete)
394 (file-cache-complete): Ditto.
395
396 * tempo.el (tempo-display-completions): Ditto.
397
398 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
399
400 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
401
402 * eshell/em-hist.el (eshell-list-history): Ditto.
403
404 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
405
406 * mail/mailalias.el (mail-complete): Ditto.
407
408 * progmodes/etags.el (complete-tag): Ditto.
409
410 * progmodes/make-mode.el (makefile-complete): Ditto.
411
412 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
413
414 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
415
416 * progmodes/pascal.el (pascal-complete-word)
417 (pascal-show-completions): Ditto.
418
419
420 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
421
422 * simple.el (completion-common-substring): New variable.
423 (completion-setup-function): Use `completion-common-substring'
424 to put faces.
425
426 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
427
428 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
429 (x-get-selection, mac-select-convert-to-string): Convert from/to
430 UTF-16 clipboard data as in native byte order, no BOM.
431
432 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
433
434 * progmodes/gud.el (gud-tool-bar-map): Rename the images
435 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
436 (gud-sentinel): Use speedbar-frame to check for speedbar.
437
438 2005-10-15 Richard M. Stallman <rms@gnu.org>
439
440 * savehist.el: New file.
441
442 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
443
444 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
445 Fix bug in \bf fontification.
446
447 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * pcvs.el (cvs-edit-log-files): New var.
450 (cvs-mode-edit-log): New arg `file'.
451 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
452 Instead force the use of the original file and nothing else.
453 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
454 the cvs-minor-wrap-function is set.
455 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
456
457 2005-10-14 Bill Wohler <wohler@newt.com>
458
459 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
460 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
461 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
462 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
463 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
464 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
465 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
466 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
467 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
468 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
469 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
470 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
471 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
472 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
473 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
474
475 * progmodes/gud.el (gud-tool-bar-map): Rename the images
476 appropriately (for example, gud-break to gud/break).
477
478 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
479
480 * longlines.el (longlinges-search-function)
481 (longlines-search-forward, longlines-search-backward): New functions.
482 (longlines-mode): Set isearch-search-fun-function to
483 longlinges-search-function.
484
485 * mouse.el (mouse-drag-region-1): Handle the case where a
486 double-click event is bound to an arbitrary function.
487
488 2005-10-14 David Ponce <david@dponce.com>
489
490 * recentf.el (recentf-track-opened-file)
491 (recentf-track-closed-file, recentf-update-menu)
492 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
493 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
494 mouse-1-click-follows-link.
495
496 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
497
498 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
499 Gnome file-manager.png. Suggested by
500 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
501
502 * toolbar/README: Add diropen.xpm.
503
504 2005-10-13 Bill Wohler <wohler@newt.com>
505
506 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
507 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
508
509 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
510
511 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
512 Don't waste the byte-compiler's time on constant data.
513
514 2005-10-13 Kenichi Handa <handa@m17n.org>
515
516 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
517 byte with `escape-glyph' face.
518
519 * international/fontset.el (ccl-encode-unicode-font):
520 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
521 Handle the case that ucs-mule-to-mule-unicode translates a character to
522 ASCII (usually for IPA characters).
523
524 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
525
526 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
527 Don't hide the underline of titles if font-lock-mode is disabled.
528
529 2005-10-12 Bill Wohler <wohler@newt.com>
530
531 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
532 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
533 files in MH-E-SRC have been updated.
534 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
535
536 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
537
538 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
539 (mixal-mode-syntax-table): Add \n as end-comment.
540 (mixal-operation-codes-alist): Immediately initialize to full value.
541 (mixal-add-operation-code): Remove.
542 (mixal-describe-operation-code): Make the arg non-optional.
543 Use the interactive spec instead.
544 Use mixal-operation-codes-alist rather than mixal-operation-codes.
545 (mixal-font-lock-keywords): Don't highlight comments here any more.
546 (mixal-font-lock-syntactic-keywords): New var.
547 (mixal-mode): Use it. Fix comment-start-skip.
548
549 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
550
551 * startup.el (command-line-x-option-alist): -nb => -nbi
552
553 2005-10-12 Kim F. Storm <storm@cua.dk>
554
555 * startup.el (fancy-splash-default-action): Discard mouse click in
556 the spash screen window, as it has no sensible meaning in the
557 next window to be selected. Fixes error reported by Jan D.
558
559 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
560
561 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
562
563 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
564
565 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
566 Try to fix up minor layout issues like indentation, line break, etc...
567 (mixal-mode-syntax-table): Don't try to specify comment syntax,
568 because it doesn't work.
569 (mixal-operation-codes): Add some more codes.
570 (mixal-font-lock-keywords): Process comments here.
571 (mixal-mode): mixasm no longer needs -g option.
572
573 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
574
575 * progmodes/sh-script.el (sh-tmp-file):
576 Use mktemp -t. Finish support for es and rc shells.
577
578 2005-10-11 Jay Belanger <belanger@truman.edu>
579
580 * calc/calcalg2.el (calc-integral): With an argument, compute the
581 definite integral.
582
583 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
584
585 * mouse.el (mouse-drag-region-1): Don't try to catch a
586 double-click when doing follow-link (it's overridden anyway).
587
588 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
589
590 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
591 (autoload-print-form-outbuf): Add docstring.
592
593 2005-10-11 Juri Linkov <juri@jurta.org>
594
595 * info.el (Info-mode-menu): Delete menu item "Edit".
596 (Info-mode): Delete description of Info-edit from docstring,
597 and rearrange descriptions of Info commands in the order
598 they are documented in the Info manual.
599
600 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
601
602 * calendar/appt.el (appt-check): Use diary-selective-display var.
603
604 2005-10-10 Richard M. Stallman <rms@gnu.org>
605
606 * net/newsticker.el (newsticker-start, newsticker-show-news):
607 Add autoload cookies.
608
609 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
610
611 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
612
613 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
614
615 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
616
617 2005-10-10 Jay Belanger <belanger@truman.edu>
618
619 * calc/calc-arith.el (math-check-known-scalarp)
620 (math-check-known-matrixp): Check the values of arguments that are
621 variables.
622 (math-check-known-square-matrixp): New function.
623 (math-known-square-matrixp): Use math-check-known-square-matrixp.
624 (math-super-types): Add sqmatrix type.
625
626 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
627 mode name `square' to 'sqmatrix'.
628
629 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
630 mode name `square' to 'sqmatrix'.
631
632 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
633
634 * progmodes/etags.el (select-tags-table-mode): Don't use
635 selective-display.
636 (tags-select-tags-table): Pass `button' to the action function.
637 (select-tags-table): Place the side-info on button properties rather
638 than in hidden text. Abbreviate file names.
639 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
640 (select-tags-table-select): Add `button' argument.
641 Get side-info from the button property rather than from hidden text.
642
643 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
644
645 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
646 (gud-speedbar-buttons): Preserve point if possible.
647 (gud-sentinel): Restore previous speedbar display type.
648
649 * progmodes/gdb-ui.el (gdba): Improve diagram.
650 (def-gdb-auto-update-handler, gdb-info-locals-handler)
651 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
652 Call get-buffer-window once.
653
654 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
655
656 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
657 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
658 (pascal-indent-command): Remove unused var `ind'.
659 (pascal-indent-case): Remove unused var `oldpos'.
660 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
661 since it's now used as a proper minor mode map.
662 (pascal-outline): Rename to pascal-outline-mode.
663 (pascal-outline-mode): Use define-minor-mode.
664 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
665 selective-display.
666
667 2005-10-10 Andreas Schwab <schwab@suse.de>
668
669 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
670 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
671
672 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
673 outside source directory.
674
675 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
676
677 * textmodes/org.el: (org-mode-map): Explicit definition of `C-c
678 C-x' as a prefix.
679 (orgtbl-mode-map): Full keymap instead of sparse, because all
680 `self-insert-command' keys are redefined in this map.
681 (org-export-as-html): Specify charset for HTML file, by taking it
682 from the coding system.
683
684 2005-10-10 Kenichi Handa <handa@m17n.org>
685
686 * textmodes/flyspell.el (flyspell-check-word-p):
687 If unread-command-events is non-empty, don't call sit-for.
688
689 2005-10-09 Richard M. Stallman <rms@gnu.org>
690
691 * font-lock.el (font-lock-syntactic-keywords)
692 (font-lock-keywords): Doc fixes.
693
694 * textmodes/flyspell.el (flyspell-external-point-words):
695 Simplify logic, and don't try to check for consecutive appearances
696 of one incorrect word.
697
698 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
699
700 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
701 separator.
702
703 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
704 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
705 (gud-expansion-speedbar-buttons): New function.
706 (gud-speedbar-buttons): Check for gud-comint-buffer.
707
708 2005-10-09 Bill Wohler <wohler@newt.com>
709
710 * Makefile.in (updates): Add mh-loaddefs dependency.
711
712 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
713
714 * speedbar.el (speedbar-file-key-map): Fix typo.
715
716 2005-10-09 Daniel Brockman <daniel@brockman.se>
717
718 * cus-start.el (line-spacing): Add custom spec.
719
720 2005-10-09 Romain Francoise <romain@orebokech.com>
721
722 * textmodes/ispell.el (ispell-check-version): Fix last change.
723
724 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
725
726 * term/x-win.el: Remove -i, --icon-type from comment.
727
728 * startup.el (command-line-x-option-alist): Remove options -i,
729 -itype, --icon-type, added -nb, --no-bitmap-icon
730
731 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
732
733 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
734 instead of :active.
735
736 2005-10-08 Eric Hanchrow <offby1@blarg.net>
737
738 * textmodes/ispell.el (ispell-check-version):
739 Ignore hyphen, and all that follows, in aspell's version text.
740
741 2005-10-08 Jay Belanger <belanger@truman.edu>
742
743 * calc/calc-arith.el (math-known-square-matrixp): New function.
744 (math-pow-fancy): Check for matrices before distributing exponent
745 across products.
746
747 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
748 fullscreen keypad. Suggested by Luc Teirlinck.
749 (calc-keypad-show-input): Add space for formatting.
750
751 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
752 Add square matrix option.
753
754 * calc/calc-poly.el (math-expand-term): Check for matrices instead
755 of checking calc-matrix-mode when deciding how to expand.
756
757 * calc/calc.el (calc-set-mode-line): Add square matrix option.
758
759 2005-10-08 Lars Hansen <larsh@soem.dk>
760
761 * net/tramp.el (tramp-perl-directory-files-and-attributes):
762 Add error handling.
763 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
764
765 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
766
767 Sync with Tramp 2.0.51.
768
769 * net/tramp.el (tramp-handle-set-visited-file-modtime)
770 (tramp-handle-insert-file-contents, tramp-handle-write-region):
771 Insert special handling for `last-coding-system-used', again
772 it still seems to be necessary (unlike stated before).
773 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
774 (tramp-password-prompt-regexp): There might be other words before
775 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
776 (tramp-chunksize): Improve docstring.
777 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
778 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
779 Christian Joergensen <bugs@razor.dk>.
780
781 2005-10-07 Glenn Morris <rgm@gnu.org>
782
783 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
784 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
785 precision'.
786
787 2005-10-07 Romain Francoise <romain@orebokech.com>
788
789 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
790 (ibuffer-do-shell-command-pipe-replace)
791 (ibuffer-do-shell-command-file, ibuffer-do-eval)
792 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
793 (ibuffer-do-revert, ibuffer-do-replace-regexp)
794 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
795 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
796 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
797 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
798 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
799 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
800 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
801 Autoload file sans suffix.
802
803 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
804
805 2005-10-07 David Ponce <david@dponce.com>
806
807 * recentf.el (recentf-menu-open-all-flag): New option.
808 (recentf-digit-shortcut-command-name): New function.
809 (recentf--shortcuts-keymap): New variable.
810 (recentf-menu-shortcuts): New variable.
811 (recentf-make-menu-items): Initialize it. Replace the "More..."
812 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
813 (recentf-menu-value-shortcut): New function.
814 (recentf-make-menu-item): Use it. No more in-lined.
815 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
816 (recentf-open-most-recent-file): Rename from
817 `recentf-open-file-with-key'. Don't depend on key binding.
818 (recentf-mode-map): New variable.
819 (recentf-mode): Use it.
820
821 2005-10-06 Bill Wohler <wohler@newt.com>
822
823 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
824
825 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
826 (MH-E-SRC): New. Used by mh-autoloads.
827 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
828 files in MH-E-SRC have been updated.
829 (compile, recompile, bootstrap): Depend on mh-autoloads.
830
831 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
832
833 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
834 gud-break and gud-remove icons when the fringe is not available.
835
836 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
837 Typo.
838
839 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
840
841 * play/zone.el (zone): Wrap body with save-window-excursion.
842
843 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
844
845 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
846 Use the new `list-only' arg to diary-list-entries.
847
848 * calendar/diary-lib.el: Use overlays rather than selective-display.
849 (diary-selective-display): New var.
850 (diary-header-line-format): Use it.
851 (diary-list-entries): Add argument `list-only'.
852 Put the buffer in diary-mode. Don't add \^M at beg and end.
853 Replace \^M by invisible overlays.
854 (diary-unhide-everything): Replace \^M by invisible overlays.
855 (print-diary-entries): Look for overlays rather than \^M.
856 Add a space to the temp buffer name.
857 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
858 Put the buffer in diary-mode.
859 (list-sexp-diary-entries): Replace \^M by invisible overlays.
860 (diary-anniversary): Make the year arg optional.
861 (diary-time-regexp): New const.
862 (diary-font-lock-keywords): Use it to accept a few more time formats.
863
864 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
865
866 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
867
868 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
869 Fix bug introduced 2005-07-03: Use (car (last ...))
870 to faithfully reproduce replaced artist-last.
871 (artist-set-arrow-points-for-poly): Likewise.
872 Suggested by Johan Bockg\e,Ae\e(Brd.
873
874 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
875
876 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
877 * wid-edit.el (widget):
878 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
879 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
880
881 2005-10-06 Kenichi Handa <handa@m17n.org>
882
883 * international/mule-cmds.el (set-language-environment):
884 Fix setting up of case-table for unibyte mode.
885
886 * simple.el (what-cursor-position): If the character is displayed
887 by some `display' text property, show that. Don't use
888 single-key-description for eight-bit characters in multibyte mode.
889
890 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
891
892 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
893 (gdb-ann3): Set it.
894 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
895 (gdb-info-frames-custom): Use inverse-video for first five
896 characters of selected frame only.
897 (gdb-get-frame-number): Select frame even when point is on frame
898 number.
899
900 2005-10-06 Masatake YAMATO <jet@gyve.org>
901
902 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
903 Put `font-lock-function-name-face'.
904 (gdb-info-frames-custom): Put `font-lock-function-name-face'
905 and `font-lock-variable-name-face'
906 (gdb-registers-font-lock-keywords): New font lock keywords definition.
907 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
908 (gdb-memory-font-lock-keywords): New font lock keywords definition.
909 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
910 (gdb-local-font-lock-keywords): New font lock keywords definition.
911 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
912 (gdb-threads-font-lock-keywords): New font lock keywords definition.
913 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
914
915 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
916
917 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
918 (ediff-merge-region-is-non-clash-to-skip): Previously called
919 ediff-merge-region-is-non-clash.
920
921 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
922 Use insert-buffer-substring.
923
924 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
925 selecting files to patch. Also bug fixes.
926
927 * ediff-util.el (ediff-setup): Bug fix.
928 (ediff-next-difference): Never skip clashes that differ in white
929 space only.
930
931 * ediff-wind.el (ediff-setup-control-frame)
932 (ediff-destroy-control-frame): Check the menubar feature.
933
934 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
935 (viper-refresh-mode-line): Use make-local-variable to localize
936 some vars instead of make-variable-buffer-local. Suggested by
937 Stefan Monnier.
938
939 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
940 (viper-restore-cursor-type, viper-set-insert-cursor-type):
941 Use make-local-variable instead of make-variable-buffer-local.
942 Suggested by Stefan Monnier.
943
944 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
945 (viper-comint-mode-hook): Use make-local-variable on
946 require-final-newline.
947 (viper-non-hook-settings): Don't use make-variable-buffer-local.
948
949 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
950
951 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
952 also the second char of a comment-start sequence.
953 (scheme-sexp-comment-syntax-table): New var.
954 (lambda, define): Set their scheme-doc-string-elt property.
955 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
956 Use lisp-font-lock-syntactic-face-function now that it properly
957 handles |...| symbols.
958 (scheme-mode-variables): Set lisp-doc-string-elt-property,
959 parse-sexp-lookup-properties and font-lock-extra-managed-props.
960
961 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
962 bit from # to |.
963 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
964
965 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
966 (lisp-doc-string-elt-property): New var.
967 (lisp-font-lock-syntactic-face-function): Use it.
968 Rewrite to recognize docstrings even for forms not at toplevel.
969
970 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
971 annotation on the | part of #| rather than on the # part.
972 (scheme-font-lock-syntactic-face-function): New function, to
973 distinguish strings from |...| symbols.
974 (scheme-mode-variables): Use it. Also fix up the font-lock-time
975 syntax-table so that #|...|# is properly highlighted.
976
977 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
978 Don't mark as docstring the 3rd elem of an unknown toplevel form.
979
980 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
981
982 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
983 and C-e.
984
985 * emacs-lisp/eldoc.el: Move comments into docstrings.
986 (eldoc-message-commands): Initialize in its declaration.
987 Add move-beginning-of-line and move-end-of-line.
988 (eldoc-add-command, eldoc-add-command-completions)
989 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
990
991 * outline.el (outline-mark-subtree): Activate the mark.
992
993 * calendar/appt.el (appt-time-regexp): New var.
994 (appt-add, appt-make-list): Use it.
995 (appt-convert-time): Clean up.
996
997 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
998 Don't set any syntax-table property here.
999 (tex-font-lock-verb): New function. Do it here.
1000 (tex-font-lock-syntactic-keywords): Use it.
1001
1002 2005-10-04 Richard M. Stallman <rms@gnu.org>
1003
1004 * wid-edit.el (widget-file-complete): Get the widget start point
1005 the right way. Default directory to `/' if file has none.
1006
1007 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
1008
1009 * textmodes/flyspell.el (flyspell-mode-on):
1010 Call ispell-maybe-find-aspell-dictionaries.
1011
1012 * textmodes/ispell.el (ispell-word, ispell-region):
1013 Call ispell-maybe-find-aspell-dictionaries.
1014 (ispell-accept-buffer-local-defs):
1015 Don't call ispell-maybe-find-aspell-dictionaries
1016
1017 2005-10-04 Richard M. Stallman <rms@gnu.org>
1018
1019 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
1020
1021 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
1022
1023 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
1024 instead of `fboundp' in order to allow for anonymous functions.
1025
1026 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
1027
1028 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
1029 case the user clicks on the link while another window is selected.
1030 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
1031
1032 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
1033 functionality.
1034 (dframe-help-echo): Save point in case mouse tracking is off.
1035
1036 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
1037
1038 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
1039
1040 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1041
1042 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
1043 not change the global value of those vars.
1044
1045 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
1046 make-local-variable which we do not need any more.
1047
1048 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
1049
1050 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
1051 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
1052 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
1053 (speedbar-path-line): Define obsolete aliases.
1054 (speedbar-line-directory): Doc fix.
1055
1056 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
1057 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
1058 instead of speedbar-line-path.
1059
1060 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1061
1062 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
1063 to nil if dropping on a window. Handle dropping on a minibuffer window
1064 like dropping on a non-window part of Emacs.
1065
1066 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1067
1068 * net/ange-ftp.el: Use with-current-buffer.
1069 (ange-ftp-insert-directory): Do not follow symlinks any more.
1070
1071 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1072 Remove interactive spec.
1073
1074 2005-10-03 Kim F. Storm <storm@cua.dk>
1075
1076 * ido.el (ido-mode): Use custom-initialize-set.
1077
1078 2005-10-02 Richard M. Stallman <rms@gnu.org>
1079
1080 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
1081 Use insert-buffer-substring.
1082
1083 * net/tramp.el: Pacify byte compiler warnings in pacification code.
1084 (tramp-handle-file-local-copy): Use insert-buffer-substring.
1085
1086 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1087
1088 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
1089 in last change.
1090 (ange-ftp-insert-directory): Fix up the search for the case where
1091 `file' is absolute.
1092
1093 2005-10-02 Romain Francoise <romain@orebokech.com>
1094
1095 * progmodes/compile.el (compile-goto-error): Delete extra paren.
1096
1097 2005-10-02 Andreas Schwab <schwab@suse.de>
1098
1099 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
1100 directory component in the session info.
1101
1102 2005-10-01 Richard M. Stallman <rms@gnu.org>
1103
1104 * comint.el (comint-redirect-subvert-readonly): Doc fix.
1105
1106 * simple.el (next-error-internal): New function.
1107
1108 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
1109 (compilation-start): Pass new arg to compilation-buffer-name.
1110 (compile-goto-error): Use next-error-internal.
1111
1112 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
1113
1114 * speedbar.el: Remove RCS tag.
1115 (speedbar-check-read-only): Handle non-existent files.
1116
1117 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
1118
1119 * info.el (Info-speedbar-hierarchy-buttons)
1120 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
1121
1122 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1123
1124 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
1125 Do not match newline.
1126 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
1127 (bibtex-summary): Remove unnecessary save-excursion.
1128 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
1129
1130 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1131
1132 * term/mac-win.el: Add charset info for "iso10646-1".
1133 Modify default fontset to use ATSUI-compatible fonts for some charsets
1134 if available.
1135
1136 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
1137
1138 * speedbar.el: Re-apply arch tag.
1139 (speedbar-version): Rename to version 1.0. Suggested by Eric
1140 M. Ludlam.
1141 Reapply two changes from Emacs CVS' version of speedbar lost
1142 during the merge:
1143 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
1144 (speedbar-frame-parameters): Improve customize type.
1145
1146 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
1147
1148 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
1149 (ange-ftp-file-directory-p): Fix the symlink case.
1150 (ange-ftp-insert-directory): When listing a single file, get a list of
1151 the parent buffer and extract the relevant line. Inspired from a patch
1152 by Katsumi Yamaoka <yamaoka@jpl.org>.
1153 (ange-ftp-file-name-sans-versions): Simplify.
1154
1155 2005-09-30 Bill Wohler <wohler@newt.com>
1156
1157 Move MH-E image files from toolbar and mail directories into
1158 etc/images.
1159
1160 * mail/reply2.*: Move to etc/images/mail/reply*.
1161
1162 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
1163 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
1164 etc/images.
1165
1166 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
1167 * toolbar/reply*: Move to etc/images/mail.
1168
1169 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
1170
1171 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
1172
1173 * speedbar.el: New version 1.0pre3.
1174
1175 Frame management code (including timer, and mouse click specifics)
1176 moved to dframe.el:
1177 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
1178 (speedbar-timer): Removed. Use dframe-timer.
1179 (speedbar-close-frame): Removed. Use dframe-close-frame.
1180 (speedbar-activity-change-focus-flag): Removed. Use
1181 dframe-activity-change-focus-flag.
1182 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
1183 dframe-update-speed.
1184
1185 (speedbar-current-frame): New macro. Use this instead of the
1186 variable speedbar-frame.
1187
1188 (speedbar-use-images, speedbar-expand-image-button-alist)
1189 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
1190
1191 (speedbar-find-image-on-load-path): Removed. Replaced by
1192 defezimage in ezimage.el.
1193 (speedbar-expand-image-button-alist): Removed. Replaced by
1194 ezimage-expand-image-button-alist in ezimage.el.
1195
1196 (speedbar-ignored-directory-regexp)
1197 (speedbar-add-ignored-directory-regexp)
1198 (speedbar-ignored-directory-expressions)
1199 (speedbar-line-directory, speedbar-buffers-line-directory)
1200 (speedbar-directory-line, speedbar-buffers-line-directory):
1201 Renamed, replacing `path' with `directory'.
1202
1203 (speedbar-create-directory, speedbar-expand-line-descendants)
1204 (speedbar-toggle-line-expansion)
1205 (speedbar-contract-line-descendants): New commands.
1206
1207 (speedbar-query-confirmation-method, speedbar-select-frame-method)
1208 (speedbar-use-tool-tips-flag): New options.
1209
1210 (speedbar-check-read-only, speedbar-require-version)
1211 (speedbar-insert-separator, speedbar-buffers-tail-notes)
1212 (speedbar-handle-delete-frame, speedbar-try-completion)
1213 (speedbar-update-localized-contents): New functions.
1214
1215 (speedbar-incompatible-version, speedbar-ro-to-do-point)
1216 (speedbar-object-read-only-indicator): New variables.
1217
1218 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
1219 New hooks.
1220
1221 (speedbar-separator-face): New face.
1222
1223 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
1224 (speedbar-ignored-modes): Add fundamental-mode.
1225 (speedbar-directory-unshown-regexp): Add . directories.
1226
1227 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
1228 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
1229 `]' for full expand/close.
1230 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
1231
1232 (speedbar-check-vc): Support hidden files.
1233 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
1234 (speedbar-this-file-in-vc): Use vc-state if available. If VC
1235 state is nil, it is not checked out.
1236
1237 (speedbar-line-text, speedbar-line-token): Support expand buttons
1238 with no text.
1239 (speedbar-refresh): Universal argument acts as power-click.
1240 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
1241 that buffer to get variable values.
1242
1243 And many other bugfixes.
1244
1245 * dframe.el, ezimage.el, sb-image.el: New files.
1246
1247 * sb-*.xpm: Remove files. New image files installed into
1248 etc/images/ezimage.
1249
1250 2005-09-30 Kenichi Handa <handa@m17n.org>
1251
1252 * ps-mule.el (ps-mule-show-warning): If a character is in
1253 ps-print-translation-table, don't treat it as non-printable.
1254
1255 2005-09-30 David Ponce <david@dponce.com>
1256
1257 * tree-widget.el (tree-widget-themes-load-path): New variable.
1258 (tree-widget-themes-directory): Doc fix.
1259 (tree-widget-image-formats) [Emacs]: Doc fix.
1260 (tree-widget--locate-sub-directory): New function.
1261 (tree-widget-themes-directory): Use it.
1262
1263 * recentf.el (recentf-filename-handlers): Rename from
1264 `recentf-filename-handler'. Allow a list of functions.
1265 (recentf-menu-items-for-commands): Fix :help strings.
1266 (recentf-apply-filename-handlers): New function.
1267 (recentf-expand-file-name): Use it.
1268 (recentf-cleanup): Remove duplicates too.
1269
1270 2005-09-29 Juri Linkov <juri@jurta.org>
1271
1272 * faces.el: Rearrange face definitions to be in the same order as
1273 their face descriptions in "(emacs)Standard Faces".
1274
1275 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
1276
1277 * tooltip.el (tooltip): Add group `basic-faces'.
1278
1279 * buff-menu.el (Buffer-menu-buffer): Remove group
1280 `font-lock-highlighting-faces'.
1281
1282 * progmodes/compile.el (compilation-error, compilation-warning)
1283 (compilation-info, compilation-line-number, compilation-column-number):
1284 Change group from `font-lock-highlighting-faces' to `compilation'.
1285
1286 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
1287 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
1288 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
1289 (vhdl-font-lock-reserved-words-face)
1290 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
1291 `font-lock-highlighting-faces'.
1292
1293 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
1294
1295 2005-09-28 Kim F. Storm <storm@cua.dk>
1296
1297 * emulation/cua-base.el: Set CUA move property on additional commands:
1298 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
1299 forward-sexp, backward-sexp, forward-list, backward-list.
1300
1301 2005-09-28 Romain Francoise <romain@orebokech.com>
1302
1303 * comint.el (comint-show-output): Really set point at the
1304 beginning of the output when not using `comint-use-prompt-regexp'.
1305
1306 2005-09-27 Jay Belanger <belanger@truman.edu>
1307
1308 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
1309 in TeX mode.
1310
1311 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
1312
1313 * textmodes/org.el (org-table-sum): Fix format string.
1314
1315 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
1316 Quote face names.
1317
1318 2005-09-26 Romain Francoise <romain@orebokech.com>
1319
1320 * isearch.el (isearch-forward-regexp): Close doc string.
1321
1322 2005-09-25 Richard M. Stallman <rms@gnu.org>
1323
1324 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
1325
1326 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
1327
1328 * progmodes/compile.el (compilation-error-properties):
1329 When getting the file from the previous error message,
1330 correctly decode the new data format.
1331
1332 * progmodes/cc-cmds.el (c-electric-paren):
1333 Call old-blink-paren only for close-paren.
1334
1335 2005-09-24 Andreas Schwab <schwab@suse.de>
1336
1337 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
1338 condition.
1339
1340 2005-09-25 Romain Francoise <romain@orebokech.com>
1341
1342 * dired-aux.el (dired-copy-file-recursive):
1343 * dired.el (dired-delete-file):
1344 * ediff-mult.el (ediff-dir-diff-copy-file):
1345 * ediff-util.el (ediff-test-save-region):
1346 * forms.el (forms-mode):
1347 * ido.el (ido-file-internal, ido-delete-file-at-head):
1348 * log-edit.el (log-edit-done):
1349 * ses.el (ses-yank-resize):
1350 * play/gomoku.el (gomoku-human-plays, gomoku)
1351 (gomoku-human-resigns, gomoku-prompt-for-other-game)
1352 (gomoku-offer-a-draw):
1353 * play/landmark.el (lm-human-resigns, lm):
1354 * net/eudcb-ldap.el (eudc-ldap-check-base):
1355 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
1356 * progmodes/ebrowse.el (ebrowse-find-pattern):
1357 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
1358 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
1359 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
1360
1361 * vc.el (vc-delete-file):
1362 * play/gomoku.el (gomoku-terminate-game, gomoku)
1363 (gomoku-prompt-for-move, gomoku-human-takes-back):
1364 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
1365 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
1366
1367 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
1368
1369 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
1370 color rxvt terminals by using the code xterm.el used to use before
1371 2005-04-09 in order to match the colors used by rxvt.
1372
1373 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1374
1375 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
1376 colors rxvt-unicode terminals by using the same code as xterm.el.
1377
1378 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
1379
1380 * textmodes/tex-mode.el (tex-font-lock-append-prop)
1381 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
1382 new symbol used for the tex-verbatim face.
1383
1384 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
1385
1386 * woman.el (woman-file-name):
1387 * wid-edit.el (widget-file-prompt-value)
1388 (widget-coding-system-prompt-value):
1389 * w32-fns.el (set-w32-system-coding-system):
1390 * vc.el (vc-version-diff, vc-annotate):
1391 * textmodes/reftex-auc.el (reftex-arg-cite)
1392 (reftex-arg-index-tag):
1393 * textmodes/refer.el (refer-get-bib-files):
1394 * textmodes/artist.el (artist-figlet-choose-font):
1395 * terminal.el (terminal-emulator):
1396 * replace.el (occur-read-primary-args):
1397 * rect.el (string-rectangle, string-insert-rectangle):
1398 * ps-print.el (ps-print-preprint):
1399 * progmodes/pascal.el (pascal-goto-defun):
1400 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
1401 * progmodes/compile.el (compilation-find-file):
1402 * printing.el (pr-interactive-n-up):
1403 * play/animate.el (animate-birthday-present):
1404 * net/rcompile.el (remote-compile):
1405 * man.el (man, Man-goto-section, Man-follow-manual-reference):
1406 * mail/rmailsum.el (rmail-summary-search-backward)
1407 (rmail-summary-search):
1408 * mail/rmailout.el (rmail-output-read-rmail-file-name)
1409 (rmail-output-read-file-name):
1410 * mail/rmail.el (rmail-search, rmail-search-backwards):
1411 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
1412 * locate.el (locate):
1413 * international/quail.el (quail-show-keyboard-layout):
1414 * international/mule.el (set-buffer-file-coding-system)
1415 (revert-buffer-with-coding-system, set-file-name-coding-system)
1416 (set-terminal-coding-system, set-keyboard-coding-system)
1417 (set-next-selection-coding-system):
1418 * international/mule-diag.el (describe-coding-system)
1419 (describe-font, describe-fontset):
1420 * international/mule-cmds.el (universal-coding-system-argument)
1421 (search-unencodable-char, describe-input-method)
1422 (set-language-environment, describe-language-environment):
1423 * international/codepage.el (codepage-setup):
1424 * international/code-pages.el (codepage-setup):
1425 * info.el (Info-search, Info-follow-reference)
1426 (Info-search-backward):
1427 * emacs-lisp/advice.el (ad-read-advised-function)
1428 (ad-read-advice-class, ad-clear-cache, ad-activate)
1429 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
1430 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
1431 (ad-read-regexp):
1432 * ediff-util.el (ediff-toggle-regexp-match):
1433 * ediff-ptch.el (ediff-prompt-for-patch-file):
1434 * dired-aux.el (dired-diff):
1435 * diff.el (diff):
1436 * cus-edit.el (custom-variable-prompt):
1437 * calendar/timeclock.el (timeclock-ask-for-project):
1438 * calc/calcalg3.el (calc-get-fit-variables):
1439 * calc/calc-store.el (calc-edit-variable)
1440 (calc-permanent-variable):
1441 * vc-mcvs.el (vc-mcvs-register):
1442 * shadowfile.el (shadow-define-literal-group):
1443 * woman.el (woman-file-name):
1444 * vc.el (vc-version-diff, vc-merge):
1445 * textmodes/reftex-index.el (reftex-index-complete-tag):
1446 * format.el (format-decode-buffer, format-decode-region):
1447 * emulation/viper-cmd.el (viper-read-string-with-history):
1448 * emacs-lisp/debug.el (cancel-debug-on-entry):
1449 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
1450 * ediff.el (ediff-merge-revisions)
1451 (ediff-merge-revisions-with-ancestor, ediff-revision):
1452 * completion.el (interactive-completion-string-reader):
1453 * calc/calc-prog.el (calc-user-define-formula):
1454 Follow convention for reading with the minibuffer.
1455
1456 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
1457
1458 * progmodes/python.el (python-describe-symbol): Add globals() and
1459 locals() to the arguments of emacs.ehelp.
1460
1461 2005-09-24 Magnus Henoch <mange@freemail.hu>
1462
1463 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
1464 New function, code extracted from ispell-valid-dictionary-list.
1465 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
1466 Call it.
1467
1468 2005-09-24 Eli Zaretskii <eliz@gnu.org>
1469
1470 * subr.el (version-regexp-alist): Extend valid syntax for version
1471 strings: allow any of the characters -,_,+ to separate the
1472 alpha/beta/rc part from the version part. Doc fix.
1473 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
1474
1475 2005-09-23 David Reitter <david.reitter@gmail.com>
1476
1477 * mail/mailclient.el: New file.
1478
1479 2005-09-23 Richard M. Stallman <rms@gnu.org>
1480
1481 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
1482 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
1483 Doc fixes.
1484
1485 * progmodes/cc-mode.el (c-font-lock-init):
1486 Specify font-lock-lines-before.
1487
1488 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1489
1490 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
1491 whole conflict.
1492
1493 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
1494
1495 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
1496 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
1497 of `remap' feature when available. Additional key bindings for
1498 better tty support.
1499 (org-mode-restart, org-force-self-insert): New commands.
1500 (org-time-stamp-inactive): New command.
1501 (org-remap): New function.
1502 (org-table-auto-blank-field, org-level-color-stars-only): New options.
1503 (org-enable-fixed-width-editor): Move to `org-structure'
1504 customization group.
1505 (org-self-insert-command, orgtbl-self-insert-command): Modify to
1506 blank field after field motion commands.
1507
1508 2005-09-23 Kenichi Handa <handa@m17n.org>
1509
1510 * international/mule-cmds.el (set-language-environment):
1511 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
1512 have to call utf-translate-cjk-load-tables.
1513
1514 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
1515
1516 * mouse.el (mouse-move-drag-overlay): Fix last change.
1517
1518 2005-09-22 David Ponce <david@dponce.com>
1519
1520 * tree-widget.el (tree-widget-value-create): Fix previous change.
1521
1522 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
1523
1524 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
1525
1526 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 * mouse.el (mouse-move-drag-overlay): New function.
1529 (mouse-drag-region-1): Use it.
1530 Try to simplify a bit the state handling. Handle clicks on links
1531 inside intangible areas.
1532 (mouse-save-then-kill): Minor simplification.
1533 (mouse-secondary-overlay): Make it always non-nil instead of
1534 recreating it each time.
1535 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
1536 (mouse-kill-secondary, mouse-secondary-save-then-kill):
1537 Simplify accordingly.
1538
1539 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
1540
1541 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
1542
1543 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
1544
1545 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
1546 (ediff-file-name-sans-prefix): Treat nil as an empty string.
1547 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
1548 to patch.
1549
1550 * ediff-util.el: Use insert-buffer-substring.
1551
1552 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
1553
1554 * emulation/viper-cmd.el (viper-change-state): Don't move over the
1555 field boundaries in the minibuffer.
1556 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
1557 (viper-minibuffer-post-command-hook): New hook.
1558 (viper-line): Don't move cursor at bolp.
1559
1560 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
1561
1562 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
1563 avoid compiler warnings.
1564
1565 * emulation/viper-macs.el (ex-map): Better messages.
1566
1567 * emulation/viper-utils.el (viper-beginning-of-field): New function.
1568
1569 * emulation/viper.el: Replace make-variable-buffer-local with
1570 viper-make-variable-buffer-local everywhere, to avoid warnings.
1571
1572 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
1575 Delete unused var `old-selected-window'.
1576 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
1577 (mouse-drag-secondary): Delete unused var `start-frame'.
1578
1579 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1580
1581 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
1582
1583 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1584
1585 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
1586 Re-indent within 80 columns. Use inhibit-read-only.
1587
1588 2005-09-19 Romain Francoise <romain@orebokech.com>
1589
1590 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
1591
1592 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1593
1594 * font-lock.el (font-lock-default-fontify-region): Don't add a line
1595 unconditionally, since the after-change-function already did it.
1596
1597 2005-09-19 Miles Bader <miles@gnu.org>
1598
1599 * net/newsticker.el: Get rid of CVS keyword.
1600
1601 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
1602
1603 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
1604 The prompt is formatted later.
1605
1606 2005-09-19 David Ponce <david@dponce.com>
1607
1608 * tree-widget.el (tree-widget-value-create): Save the converted
1609 tree :node widget.
1610
1611 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
1612
1613 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
1614 variable `message'.
1615
1616 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
1617
1618 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
1619 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
1620 <slawomir.nowaczyk.847@student.lu.se>.
1621
1622 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
1623
1624 * image.el (image-load-path): Use symbol `data-directory' instead
1625 of its value, for backward compatibility with packages that bind
1626 it during `find-image'. Suggested by Katsumi Yamaoka.
1627 (image-search-load-path): Handle symbols whose values are strings.
1628
1629 2005-09-18 Romain Francoise <romain@orebokech.com>
1630
1631 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
1632 with-current-buffer form in save-excursion.
1633
1634 2005-09-18 D Goel <deego@gnufans.org>
1635
1636 * apropos.el (apropos-command): Fix `message' call: first arg
1637 should be a format spec. In this and all other cases that appear
1638 below and elsewhere in the source code, I made a change only when
1639 two conditions were satisfied: [1] I can think of a possibility
1640 that the arguments would cause an error, for example, the code in
1641 question relies on external variables such as filenames. [2] I
1642 was sure that the arg to `message' could not have been nil in the code.
1643
1644 * textmodes/tildify.el (tildify-region): Ditto.
1645
1646 * textmodes/reftex-index.el (reftex-index-change-entry)
1647 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
1648 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
1649 * textmodes/org.el (org-complete, org-deadline, org-schedule)
1650 (org-priority, org-table-sum):
1651 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
1652 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
1653 (flyspell-word, flyspell-display-next-corrections):
1654 * textmodes/bibtex.el (bibtex-print-help-message):
1655 * textmodes/artist.el (artist-key-set-point-poly):
1656 * term/mac-win.el (mac-services-insert-text):
1657 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
1658 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
1659 (vhdl-port-paste-testbench, vhdl-compose-new-component)
1660 (vhdl-compose-configuration):
1661 * progmodes/sh-script.el (sh-blink, sh-show-indent)
1662 (sh-set-indent, sh-learn-line-indent):
1663 * progmodes/ps-mode.el (ps-mode-target-column):
1664 * progmodes/idlwave.el (idlwave-make-tags)
1665 (idlwave-scan-library-catalogs):
1666 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
1667 * progmodes/gud.el (gud-jdb-analyze-source):
1668 * progmodes/flymake.el (flymake-log):
1669 * progmodes/ebnf2ps.el (ebnf-generate-region):
1670 * progmodes/cmacexp.el (c-macro-expansion):
1671 * progmodes/ada-xref.el (ada-treat-cmd-string):
1672 * progmodes/ada-mode.el (ada-create-case-exception-substring)
1673 (ada-justified-indent-current, ada-batch-reformat):
1674 * play/zone.el (zone):
1675 * play/landmark.el (lm-move):
1676 * play/decipher.el (decipher-show-alphabet):
1677 * net/newsticker.el (newsticker--display-jump)
1678 (newsticker--display-scroll):
1679 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
1680 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
1681 * mail/feedmail.el (feedmail-dump-message-to-queue):
1682 * eshell/esh-proc.el (eshell-remove-process-entry):
1683 * emulation/ws-mode.el (ws-last-error):
1684 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
1685 (viper-record-kbd-macro):
1686 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
1687 * emacs-lisp/lisp-mnt.el (lm-report-bug):
1688 * emacs-lisp/find-func.el (find-function-noselect):
1689 * calendar/timeclock.el (timeclock-status-string)
1690 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
1691 (timeclock-when-to-leave-string):
1692 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
1693 * calc/calc-units.el (calc-enter-units-table):
1694 * calc/calc-mode.el (calc-mode-record-mode):
1695 * woman.el (woman-mini-help):
1696 * wdired.el (wdired-change-to-wdired-mode):
1697 * vc.el (vc-retrieve-snapshot):
1698 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
1699 * startup.el (display-startup-echo-area-message):
1700 * simple.el (set-goal-column):
1701 * ses.el (ses-command-hook, ses-recalculate-cell):
1702 * server.el (server-process-filter):
1703 * printing.el (pr-interface-txt-print, pr-interface-printify)
1704 (pr-interface-ps):
1705 * pcvs.el (cvs-help):
1706 * log-edit.el (log-edit, log-edit-mode-help):
1707 * iswitchb.el (iswitchb-possible-new-buffer):
1708 * isearch.el (isearch-edit-string):
1709 * image-mode.el (image-mode, image-minor-mode):
1710 * ibuf-macs.el (define-ibuffer-filter):
1711 * hi-lock.el (hi-lock-find-patterns):
1712 * files.el (toggle-read-only):
1713 * ediff-util.el (ediff-copy-diff)
1714 (ediff-write-merge-buffer-and-maybe-kill):
1715 * echistory.el (Electric-history-undefined):
1716 * dnd.el (dnd-insert-text):
1717 * dired-aux.el (dired-query):
1718 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
1719 * bookmark.el (bookmark-bmenu-locate):
1720 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
1721 Fix `message' calls to ensure first arg is a format string.
1722 The change was made only when these two conditions were satisfied:
1723 [1] when there is a possibility that the arguments would cause an error
1724 for example, if the code in question relies on external variables
1725 such as filenames, and
1726 [2] if the arg to `message' could not have been nil in the code.
1727
1728 * pcomplete.el (pcomplete--help): Fix `message' format spec.
1729 Not having a %s would be weird, though not technically wrong.
1730
1731 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1732
1733 * term/mac-win.el (mac-add-charset-info): Doc fix.
1734
1735 2005-09-17 Romain Francoise <romain@orebokech.com>
1736
1737 * shell.el (shell-resync-dirs): Handle echoing processes more
1738 reliably. Don't insert resync command if `comint-process-echoes'
1739 is non-nil.
1740
1741 2005-09-17 Magnus Henoch <mange@freemail.hu>
1742
1743 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
1744 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
1745 aspell versions >= 0.60.
1746 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
1747 only if ispell-aspell-supports-utf8 is non-nil.
1748
1749 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1750
1751 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
1752 buffer-local value to lisp-indent-function.
1753
1754 2005-09-17 Milan Zamazal <pdm@zamazal.org>
1755
1756 * progmodes/glasses.el (glasses-make-readable): If
1757 glasses-separator differs from underscore, put appropriate
1758 overlays over underscore characters.
1759 (glasses-convert-to-unreadable): If glasses-separator differs from
1760 underscore, try to convert glasses-separator characters to
1761 underscores.
1762
1763 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1764
1765 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
1766 Use with-syntax-table and dolist.
1767
1768 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
1769
1770 * textmodes/reftex-auc.el:
1771 * textmodes/reftex-cite.el:
1772 * textmodes/reftex-dcr.el:
1773 * textmodes/reftex-global.el:
1774 * textmodes/reftex-parse.el:
1775 * textmodes/reftex-ref.el:
1776 * textmodes/reftex-sel.el:
1777 * textmodes/reftex-toc.el:
1778 * textmodes/reftex-vars.el:
1779 * textmodes/reftex.el: Small changes to remove compiler warnings.
1780
1781 * textmodes/reftex-index.el: Likewise.
1782 (reftex-query-index-phrase): More efficient use of markers.
1783
1784 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
1785
1786 * image.el (image-load-path): New variable.
1787 (image-search-load-path): New function.
1788 (find-image): Search for images in `image-load-path'.
1789
1790 2005-09-15 Richard M. Stallman <rms@gnu.org>
1791
1792 * follow.el: Change Maintainer field.
1793
1794 2005-09-15 David Ponce <david@dponce.com>
1795
1796 * recentf.el (recentf-save-file-modes): New option.
1797 (recentf-save-list): Use it.
1798
1799 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
1800
1801 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
1802 (mode-line-mule-info, mode-line-modified): Move bindings from
1803 mouse-3 to mouse-1.
1804
1805 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
1806
1807 * simple.el (sendmail-user-agent-compose): Revert last change.
1808
1809 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1810
1811 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
1812 Use with-current-buffer.
1813 (ange-ftp-gwp-start): Remove unused var `gw-user'.
1814 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
1815 (ange-ftp-insert-directory): Remove unused var `short'.
1816 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
1817
1818 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
1819 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
1820
1821 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
1822 (check-calendar-holidays, diary-list-entries): Autoload.
1823 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
1824 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
1825
1826 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
1827 which mistakenly removed a call to display-buffer.
1828
1829 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
1830
1831 * obsolete/iso-insert.el: Move to obsolete/ from international/.
1832
1833 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
1834
1835 * progmodes/hideshow.el
1836 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
1837 (hs-allow-nesting): New user var.
1838 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
1839 (hs-hide-block-at-point): When nesting allowed,
1840 if there is already an overlay in place, delete it.
1841 (hs-safety-is-job-n): Delete func; remove call sites.
1842 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
1843 (hs-overlay-at): New func.
1844 (hs-already-hidden-p, hs-show-block): Use it.
1845 (hs-hide-all): Don't pre-clean if nesting allowed.
1846 (hs-show-all): Temporarily disallow
1847 nesting around call to `hs-discard-overlays'.
1848
1849 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
1850
1851 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
1852 Delete unused local var.
1853
1854 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
1855
1856 * help-fns.el (describe-categories): "?\ " -> "?\s".
1857 (help-do-arg-highlight): Recognize also ARG-n, as in
1858 `move-to-left-margin' (ARG+n is already recognized). Simplify.
1859
1860 * international/codepage.el (dos-unsupported-char-glyph):
1861 * net/newsticker.el (tool-bar-map, w3-mode-map)
1862 (w3m-minor-mode-map):
1863 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
1864 (ent-alist):
1865 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
1866
1867 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
1868
1869 * custom.el (custom-push-theme): Handle the case where a symbol is
1870 bound but face properties have not yet been assigned.
1871
1872 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
1873 Fix behavior if noerase is `t' and there is no mail buffer.
1874
1875 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
1876 if `continue' is nil, rather than signal an error.
1877
1878 2005-09-12 Richard M. Stallman <rms@gnu.org>
1879
1880 * font-lock.el (font-lock-keywords): Add autoload.
1881
1882 * help-fns.el (describe-variable): Rearrange to put source link
1883 in a predictable place.
1884
1885 * net/newsticker.el: New file.
1886
1887 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1888
1889 * calendar/calendar.el (calendar-for-loop): Add edebug info.
1890 (calendar-basic-setup): Use the new nil arg.
1891 (number-of-diary-entries): Move to diary-lib.el.
1892
1893 * calendar/diary-lib.el: Use with-current-buffer, match-string.
1894 (diary-list-entries): Use with-syntax-table and dolist.
1895 Rename from list-diary-entries.
1896 Use number-of-diary-entries if `number' is nil.
1897 (diary, diary-view-entries): Use this new name and new nil arg value.
1898 (number-of-diary-entries): Move from calendar.el.
1899 (diary-unhide-everything): New function.
1900 (include-other-diary-files, fancy-diary-display)
1901 (diary-show-all-entries, make-diary-entry): Use it.
1902 (diary-mail-entries): Use buffer-string.
1903 (mark-diary-entries): Fix long standing paren typo.
1904 (diary-sexp-entry): Use count-lines.
1905 (make-diary-entry): Avoid `previous-line'.
1906 (diary-mode-map): New var.
1907 (diary-mode): Redraw cal after saving. Setup header-line.
1908 (fancy-diary-display-mode): Use local-set-key.
1909
1910 * startup.el (command-line): Try calling various terminal-init-foo-bar
1911 functions by stripping hyphenated suffixes from $TERM.
1912
1913 * files.el (normal-mode): Check boundness of font-lock-keywords.
1914
1915 2005-09-12 Richard M. Stallman <rms@gnu.org>
1916
1917 * progmodes/compile.el: Don't decide a file's directory
1918 until the user actually tries to go there.
1919 (compilation-next-error-function):
1920 Pass compilation-find-file the directory from the file-struct.
1921 (compilation-internal-error-properties): Separate local FILE-STRUCT
1922 from FILE. Doc the args better. Rename arg FMT to FMTS.
1923 (compilation-find-file): Arg DIR renamed to DIRECTORY.
1924 Expand it, and if nil, use default-directory.
1925 (compilation-get-file-structure): Don't mix specified directory
1926 with default directory. Put specified directory into
1927 file-struct. Don't make the file name absolute.
1928
1929 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
1930 (compile-command): Add autoload.
1931 (compilation-disable-input): Add autoload.
1932
1933 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
1934
1935 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
1936 strings of the variables it can override.
1937 (time-stamp): New (as yet undocumented) time-stamp-format escapes
1938 %Q and %q, for fully-qualified domain name and unqualified host name.
1939
1940 2005-09-11 Kim F. Storm <storm@cua.dk>
1941
1942 * emacs-lisp/authors.el (authors-aliases): Update list.
1943 (authors-fixed-entries): Update mldrag.el entry.
1944
1945 2005-09-10 Alan Mackenzie <acm@muc.de>
1946
1947 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
1948 from the region narrowed to.
1949
1950 2005-09-10 Magnus Henoch <mange@freemail.hu>
1951
1952 * textmodes/ispell.el (ispell-check-version): Signal an error if
1953 aspell version is less than 0.60.
1954
1955 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
1956
1957 * progmodes/octave-inf.el (inferior-octave-startup):
1958 Resync current dir at the end.
1959
1960 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
1961
1962 * woman.el (woman-topic-at-point-default):
1963 Rename to woman-use-topic-at-point-default.
1964 (woman-topic-at-point): Rename to woman-use-topic-at-point.
1965 (woman-file-name): Reflect renames above. Automatically use the
1966 word at point as topic if woman-use-topic-at-point is non-nil.
1967 Otherwise offer it as default but don't insert it in the
1968 minibuffer. Also use `test-completion' instead of `assoc' as
1969 suggested by Stefan Monnier.
1970
1971 2005-09-10 Andre Spiegel <spiegel@gnu.org>
1972
1973 * vc.el (vc-directory, vc-update-change-log): Throw an error on
1974 the attempt to do it over Tramp. This is not yet supported.
1975
1976 2005-09-10 Eli Zaretskii <eliz@gnu.org>
1977
1978 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
1979 (menu-bar-non-minibuffer-window-p): New functions.
1980 ("Split Window", "Save As..."): Use them.
1981 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
1982 ("Print Buffer", "Truncate Long Lines in this Buffer"):
1983 Use menu-bar-menu-frame-live-and-visible-p.
1984 ("Save Buffer", "Insert File", "Open Directory...")
1985 ("Open File...", "Visit New File..."):
1986 Use menu-bar-non-minibuffer-window-p.
1987 (kill-this-buffer-enabled-p, dired <menu-enable>):
1988 Use menu-bar-non-minibuffer-window-p.
1989
1990 2005-09-09 Eli Zaretskii <eliz@gnu.org>
1991
1992 * cus-start.el (all): Don't complain about fringe-related
1993 built-ins if fringes are not supported. Ditto about
1994 selection-related built-ins. Fix the test for GTK-related built-ins.
1995
1996 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
1997 ("Postscript Print Buffer", "Print Region", "Save As...")
1998 ("Save", "Insert File...", "Open Directory...")
1999 ("Open File...", "Visit New File..."")
2000 ("Truncate Long Lines in this Buffer"): Don't look at
2001 menu-updating-frame if this display does not support multiple frames.
2002
2003 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
2004
2005 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
2006
2007 2005-09-09 Emilio Lopes <eclig@gmx.net>
2008
2009 * woman.el: Format- and whitespace-related changes.
2010
2011 2005-09-09 Eli Zaretskii <eliz@gnu.org>
2012
2013 * woman.el: Fix my email address.
2014
2015 2005-09-08 Richard M. Stallman <rms@gnu.org>
2016
2017 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
2018 (sh-mode): Locally set skeleton-pair-default-alist.
2019
2020 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
2021
2022 * progmodes/flymake.el: Require `compile' unconditionally.
2023
2024 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
2025
2026 * woman.el (woman-file-name): Provide a default, not initial input.
2027
2028 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
2029
2030 * font-lock.el (font-lock-support-mode): Doc fix.
2031
2032 * descr-text.el (describe-property-list): Handle non-symbol prop names.
2033
2034 2005-09-08 Richard M. Stallman <rms@gnu.org>
2035
2036 * simple.el (blink-matching-open): Get rid of text props from
2037 the string shown in echo area. Don't permanently set point.
2038 Some rearrangements.
2039
2040 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
2041
2042 * recentf.el (recentf-filename-handler): Add custom choice
2043 `abbreviate-file-name'.
2044
2045 * msb.el (msb--very-many-menus): Fix typo.
2046
2047 * disp-table.el (standard-display-european): Don't set
2048 enable-multibyte-characters to nil.
2049
2050 2005-09-08 David Ponce <david@dponce.com>
2051
2052 * recentf.el (recentf-show-file-shortcuts-flag): New option.
2053 (recentf-expand-file-name): Doc fix.
2054 (recentf-dialog-mode-map): Define digit shortcuts.
2055 (recentf--files-with-key): New variable.
2056 (recentf-show-digit-shortcut-filter): New function.
2057 (recentf-open-files-items): New function.
2058 (recentf-open-files): Use it.
2059 (recentf-open-file-with-key): New command.
2060
2061 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
2062
2063 * buff-menu.el (Buffer-menu-sort-by-column): New function.
2064 Suggested by Kim F. Storm.
2065 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
2066 (Buffer-menu-make-sort-button): Use global keymap.
2067
2068 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
2069
2070 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
2071 (Man-getpage-in-background-advice): Remove defadvice; it isn't
2072 necessary any longer with the remapped command.
2073 (Man-bgproc-sentinel-advice): Remove defadvice which counts
2074 formatting time only.
2075
2076 * net/tramp.el (tramp-action-password)
2077 (tramp-multi-action-password): Compile the password prompt from
2078 `method', `user' and `host'. Sometimes it isn't obvious which
2079 password to enter, for example with remote files offered by
2080 recentf.el, or with multiple steps. Suggested by Robert Marshall
2081 <robert@chezmarshall.freeserve.co.uk>.
2082
2083 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2084
2085 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
2086 Fix regexp for when "s///" is at the beginning of line.
2087
2088 2005-09-07 Jay Belanger <belanger@truman.edu>
2089
2090 * calc/calc-poly.el (math-expand-term): Multiply out any powers
2091 when in matrix mode.
2092
2093 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2094
2095 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
2096 non-anonymous functions.
2097
2098 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
2099
2100 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
2101 when using a header line. Otherwise, use mouse-1-click-follows-link.
2102
2103 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
2104 can't be moved; don't signal an error.
2105
2106 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
2107
2108 * cus-theme.el (custom-theme-write-faces): Save the current face
2109 spec, not the defface spec.
2110
2111 * custom.el (custom-known-themes): Clarify meaning of "standard".
2112 (custom-push-theme): Save old values in the standard theme.
2113 (disable-theme): Correct typo.
2114 (custom-face-theme-value) Deleted unused function.
2115 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
2116
2117 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2118
2119 * progmodes/compile.el (compilation-goto-locus): Take into account
2120 iconified frames when determining whether the buffer is
2121 already visible.
2122 Don't reset window height if the window already existed.
2123
2124 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
2125
2126 * custom.el (load-theme): Rename from require-theme.
2127 Add interactive spec.
2128 (enable-theme): Rename from custom-enable-theme.
2129 Add interactive spec.
2130 (disable-theme): Rename from custom-disable-theme.
2131 Add interactive spec.
2132 (custom-make-theme-feature): Doc fix.
2133 (custom-theme-directory): Doc fix.
2134 (provide-theme): Call enable-theme.
2135
2136 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2137
2138 * obsolete/lazy-lock.el (lazy-lock-mode):
2139 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
2140 font-lock-mode if it's off. Print a warning instead.
2141
2142 * progmodes/compile.el (compilation-start): Ignore errors if the
2143 process died before we get to send-eof.
2144
2145 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
2146 Undo last change. Enclosing the result in quotes broke things on Unix
2147 since tex-send-command passes it through shell-quote-argument.
2148 (tex-send-command): Pass `file' through convert-standard-filename
2149 when possible.
2150 (tex-uptodate-p): Handle the case where TeX hasn't put additional
2151 info in a transcript.
2152
2153 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
2154
2155 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
2156 fix compilation warning. Reorder the key definitions to group
2157 together keys emitted by the current version of xterm.
2158
2159 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
2160 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
2161 Reorder predicates to correct min-color usage.
2162
2163 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
2164
2165 * longlines.el (longlines-mode): Inhibit read-only when encoding.
2166 Kill local variables when longlines-mode is turned off.
2167
2168 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2169
2170 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
2171
2172 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
2173
2174 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
2175
2176 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
2177 (font-lock-lines-before): Change default to being inactive.
2178 (font-lock-default-fontify-region): Obey font-lock-lines-before.
2179 (font-lock-after-change-function): Don't handle f-l-lines-before here.
2180
2181 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
2182
2183 * net/tramp.el (tramp-handle-make-auto-save-file-name):
2184 Deactivate temporarily advice if active (not needed for Emacs 22,
2185 but for backwards compatibility).
2186 (tramp-exists-file-name-handler): Rewrite. First implementation
2187 was too simple.
2188 (tramp-advice-make-auto-save-file-name):
2189 Call `tramp-handle-make-auto-save-file-name' (again, just for
2190 backwards compatibility).
2191
2192 2005-08-31 Reto Zimmermann <reto@gnu.org>
2193
2194 * progmodes/vhdl-mode.el
2195 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
2196 (vhdl-end-p): Fix indentation bug "else" after "-- when".
2197 (vhdl-set-default-project): New function (easier setting of default).
2198 (vhdl-port-copy): Handle extended identifiers for generics.
2199 (vhdl-compiler-alist): Better description for error message regexp.
2200 (vhdl-make): Query for target, use previous as default.
2201 (vhdl-port-copy): Fix port copy for port names starting with "signal".
2202 (vhdl-font-lock-keywords-2): Fix fontification for record
2203 el. assign.
2204 (vhdl-speedbar-make-subpack-line): Add package body link.
2205 (vhdl-generate-makefile-1): Not include itself as dependency.
2206 (vhdl-font-lock-init): Highlight c-preprocessor directives.
2207 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
2208 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
2209 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
2210 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
2211 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
2212 (vhdl-import-project): Add string argument for `error'.
2213 (vhdl-compose-configuration)
2214 (vhdl-compose-configuration-architecture): Add configuration
2215 declaration generation.
2216 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
2217 (vhdl-trailer-re): Add "record" keyword (better indentation).
2218 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
2219 "[^ \t-\"]+".
2220 (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'.
2221 (vhdl-testbench-entity-file-name)
2222 (vhdl-testbench-architecture-file-name): Allow separate
2223 customization of testbench file names.
2224 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
2225 (vhdl-get-visible-signals): Allow newline within alias declaration.
2226 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
2227 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
2228 (member-ignore-case): Alias for missing function in XEmacs.
2229 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
2230 (vhdl-update-sensitivity-list): Ignore case on read signals.
2231 (vhdl-replace-string): Adjust case only for file names.
2232 (vhdl-update-sensitivity-list): Fix search for read signals.
2233 (vhdl-update-sensitivity-list): Exclude formal parameters.
2234 (vhdl-get-visible-signals): Include aliases of signals.
2235 (vhdl-get-visible-signals): Fix signal name searching.
2236 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
2237 (vhdl-fixup-whitespace-region): Fix for character
2238 literals (e.g. ':').
2239
2240 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
2241
2242 * ansi-color.el (comint-last-output-start):
2243 * bs.el (font-lock-verbose):
2244 * diff-mode.el (add-log-buffer-file-name-function):
2245 * dired-x.el (vm-folder-directory):
2246 * faces.el (help-xref-stack-item):
2247 * files.el (font-lock-keywords):
2248 * find-lisp.el (dired-buffers, dired-subdir-alist):
2249 * ido.el (cua-inhibit-cua-keys):
2250 * log-view.el (cvs-minor-wrap-function):
2251 * outline.el (font-lock-warning-face):
2252 * simple.el (compilation-current-error):
2253 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
2254 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
2255 * tooltip.el (comint-prompt-regexp):
2256 * w32-fns.el (explicit-shell-file-name):
2257 * term/mac-win.el (mac-charset-info-alist)
2258 (mac-services-selection, mac-system-script-code):
2259 * term/tty-colors.el (msdos-color-values):
2260 * term/w32-win.el (xlfd-regexp-registry-subnum):
2261 * term/x-win.el (x-keysym-table, x-selection-timeout)
2262 (x-session-id, x-session-previous-id):
2263 * textmodes/ispell.el (mail-yank-prefix):
2264 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
2265 * textmodes/org.el (calc-embedded-close-formula)
2266 (calc-embedded-open-formula)
2267 (font-lock-unfontify-region-function):
2268 * textmodes/reftex-global.el (isearch-next-buffer-function)
2269 (TeX-master):
2270 * textmodes/reftex.el (font-lock-keywords):
2271 * textmodes/tex-mode.el (font-lock-comment-face)
2272 (font-lock-doc-face):
2273 * textmodes/texinfo.el (outline-heading-alist):
2274 Add defvars.
2275
2276 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
2277 (artist-spray-chars, artist-mode-init, artist-replace-string)
2278 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
2279 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
2280 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
2281
2282 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
2283 (conf-align-assignments): "?\ " -> "?\s".
2284
2285 * textmodes/reftex-index.el (TeX-master): Add defvar.
2286 (reftex-index-phrases-marker): Move up defvar.
2287
2288 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
2289 (reftex-toc-include-labels-indicator)
2290 (reftex-toc-include-index-indicator)
2291 (reftex-toc-max-level-indicator): Move up declarations.
2292
2293 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
2294 of args to `tramp-run-real-handler', even if it's empty in this case.
2295
2296 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2297
2298 * dired.el (dired-move-to-filename-regexp): Add date format for
2299 Mac OS X 10.3 in East Asian locales.
2300
2301 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
2302
2303 * files.el (make-auto-save-file-name): Add file name handler call
2304 if applicable.
2305
2306 * net/tramp.el (tramp-file-name-handler-alist)
2307 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
2308 (tramp-handle-make-auto-save-file-name): Rename from
2309 `tramp-make-auto-save-file-name'.
2310 (tramp-exists-file-name-handler): New defun.
2311 (tramp-advice-make-auto-save-file-name): Make defadvice only when
2312 `make-auto-save-file-name' is not a magic file name operation.
2313
2314 2005-08-30 Richard M. Stallman <rms@gnu.org>
2315
2316 * files.el (risky-local-variable-p):
2317 Match `-predicates' and `-commands.
2318
2319 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
2320 (custom-save-all): Visit the file if necessary;
2321 kill the buffer if we created it.
2322 (custom-save-delete): Don't visit file or kill buffer here.
2323
2324 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
2325
2326 * textmodes/org.el (org-special-keyword): New face.
2327 (org-table-copy-down, org-table-eval-formula)
2328 (org-table-recalculate, org-init-section-numbers):
2329 Use `string-to-number' instead of `string-to-int'.
2330 (org-get-location): Use `insert-buffer-substring' instead of
2331 `insert-buffer'.
2332 (org-modify-diary-entry-string): New function.
2333 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
2334 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
2335 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
2336 active region.
2337 (org-export-as-html): Handle QUOTE keyword.
2338 (org-quote-string): New option.
2339 (org-bookmark-jump-unhide): New function, used for
2340 `bookmark-after-jump-hook'.
2341 (org-diary-default-entry): Apply only when not called through
2342 `org-agenda'.
2343
2344 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
2345
2346 * net/eudc.el (mode-popup-menu):
2347 * play/handwrite.el (ps-printer-name, ps-lpr-command):
2348 * progmodes/ada-mode.el (compile-auto-highlight)
2349 (skeleton-further-elements):
2350 * progmodes/autoconf.el (font-lock-syntactic-keywords):
2351 * progmodes/cmacexp.el (msdos-shells):
2352 * progmodes/compile.el (font-lock-extra-managed-props)
2353 (font-lock-keywords, font-lock-maximum-size)
2354 (font-lock-support-mode):
2355 * progmodes/grep.el (font-lock-lines-before):
2356 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
2357 * progmodes/mixal-mode.el (compile-command):
2358 * progmodes/perl-mode.el (font-lock-comment-face)
2359 (font-lock-doc-face, font-lock-string-face):
2360 * progmodes/prolog.el (comint-prompt-regexp):
2361 * progmodes/sh-script.el (font-lock-comment-face)
2362 (font-lock-set-defaults, font-lock-string-face):
2363 * progmodes/sql.el (font-lock-keyword-face)
2364 (font-lock-set-defaults, font-lock-string-face):
2365 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
2366 (itimer-version, lazy-lock-defer-contextually)
2367 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
2368 Add defvars.
2369
2370 * progmodes/cperl-mode.el (cperl-electric-lbrace)
2371 (cperl-electric-keyword, cperl-electric-pod)
2372 (cperl-electric-backspace, cperl-forward-re)
2373 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
2374 (vc-rcs-header, vc-sccs-header): Add defvars.
2375
2376 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
2377 (font-lock-syntactic-keywords, gud-find-expr-function):
2378 Add defvars.
2379
2380 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
2381 (gdb-frame-parameters): Declare before use.
2382
2383 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
2384 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
2385 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
2386 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
2387
2388 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
2389 (idlwave-help-with-source): Use `insert-buffer-substring', not
2390 `insert-buffer'.
2391
2392 2005-08-29 Juri Linkov <juri@jurta.org>
2393
2394 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
2395 Put outline-back-to-heading function call inside save-excursion.
2396
2397 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
2398
2399 * man.el (Man-init-defvars, Man-translate-references)
2400 (Man-support-local-filenames, Man-highlight-references):
2401 * progmodes/sql.el (sql-interactive-mode):
2402 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
2403
2404 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
2405 (compilation-mode-font-lock-keywords): Add defvars.
2406 (checkdoc-interactive-loop): "?\ " -> "?\s".
2407
2408 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
2409 (font-lock-doc-face, font-lock-string-face)
2410 (font-lock-keywords-case-fold-search): Add defvars.
2411 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
2412
2413 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
2414 Don't pass X and Y (they are ignored anyway).
2415 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
2416 (mouse-delete-window): Make arguments optional.
2417
2418 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
2419 (caesar-translate-table, minor-modes, news-buffer-save)
2420 (news-group-name, news-minor-modes): Add defvars.
2421
2422 * emacs-lisp/lselect.el (mouse-highlight-priority)
2423 (x-lost-selection-functions, zmacs-regions):
2424 * emacs-lisp/pp.el (font-lock-verbose):
2425 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
2426 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
2427 (ses-mode-map):
2428 * emacs-lisp/tcover-unsafep.el (safe-functions):
2429 * international/mule-cmds.el (mac-system-coding-system)
2430 (mac-system-locale):
2431 * language/ethio-util.el (rmail-current-message)
2432 (rmail-message-vector):
2433 * language/thai-util.el (thai-auto-composition-mode):
2434 * mail/metamail.el (rmail-current-message, rmail-message-vector):
2435 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
2436 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
2437 (vm-primary-inbox, vm-spool-files):
2438 * mail/rmail.el (deleted-head, font-lock-fontified)
2439 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
2440 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
2441 (total-messages):
2442 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
2443 (rmail-summary-mode-map):
2444 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
2445 (rmail-last-label, rmail-last-multi-labels)
2446 (rmail-summary-vector, rmail-total-messages):
2447 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
2448 * mail/rmailsum.el (msgnum):
2449 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
2450 (rmail-current-message):
2451 * obsolete/fast-lock.el (font-lock-face-list):
2452 * obsolete/rnewspost.el (mail-reply-buffer):
2453 * obsolete/scribe.el (compile-command):
2454 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
2455
2456 2005-08-28 John Paul Wallington <jpw@gnu.org>
2457
2458 * ibuf-ext.el (ibuffer-auto-update-changed):
2459 Use `frame-or-buffer-changed-p' to check whether we need to update.
2460 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
2461 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
2462 as a `frame-or-buffer-changed-p' state vector instead.
2463
2464 2005-08-27 Romain Francoise <romain@orebokech.com>
2465
2466 * textmodes/makeinfo.el (makeinfo-compile):
2467 Use `compilation-start'. Set `next-error-function' according to
2468 `disable-errors'.
2469 (makeinfo-next-error): New function.
2470 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
2471 (makeinfo-buffer): Likewise.
2472
2473 * progmodes/compile.el (compilation-start): Add autoload cookie.
2474
2475 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
2476 * textmodes/sgml-mode.el: Likewise.
2477 * progmodes/python.el: Likewise.
2478
2479 2005-08-27 Eli Zaretskii <eliz@gnu.org>
2480
2481 * simple.el (blink-matching-paren-distance): Document the meaning
2482 of nil value, and allow to customize to nil.
2483
2484 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
2485 command.com, not command.exe.
2486
2487 2005-08-26 John Wiegley <johnw@newartisans.com>
2488
2489 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
2490 code around a bit so that an extraneous nil argument is not added
2491 to a command when no args are given.
2492
2493 * eshell/esh-arg.el (eshell-parse-double-quote): If a
2494 double-quoted argument resolves to nil, return it as an empty
2495 string rather than as nil. This made it impossible to pass "" to
2496 a shell script as a null string argument.
2497
2498 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
2499
2500 * outline.el (outline-invent-heading): New fun.
2501 (outline-promote, outline-demote): Use it.
2502 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
2503 (outline-end-of-subtree): Remove unused var `opoint'.
2504
2505 2005-08-26 David Reitter <david.reitter@gmail.com>
2506
2507 * menu-bar.el (truncate-lines, write-file, print-buffer)
2508 (ps-print-buffer-faces, ps-print-buffer, split-window):
2509 Disable menu items when the frame they refer to is invisible, or when
2510 they refer to a buffer and the minibuffer is selected.
2511
2512 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
2513
2514 * progmodes/flymake.el (flymake-highlight-err-lines):
2515 Use save-excursion around flymake-highlight-line to preserve point.
2516
2517 2005-08-26 Eli Zaretskii <eliz@gnu.org>
2518
2519 * progmodes/octave-mod.el: Change Author and Maintainer address.
2520 (octave-maintainer-address): Change Kurt's email address.
2521 * progmodes/octave-inf.el: Change Author and Maintainer address.
2522 * progmodes/octave-hlp.el: Change Author and Maintainer address.
2523
2524 2005-08-26 Kim F. Storm <storm@cua.dk>
2525
2526 * subr.el (version-list-<, version-list-<=, version-list-=):
2527 Renamed from integer-list-*.
2528 (version-list-not-zero): Likewise. Fix while loop.
2529 (version=): Use version-list-= instead of string-equal.
2530
2531 2005-08-26 Richard M. Stallman <rms@gnu.org>
2532
2533 * outline.el (outline-promote): Try shortening the heading.
2534 As last resort, read the heading to use.
2535 (outline-demote): As last resort, read the heading to use.
2536
2537 2005-08-26 Romain Francoise <romain@orebokech.com>
2538
2539 * progmodes/compile.el (compilation-start): Doc fix.
2540
2541 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
2542 (antlr-font-lock-additional-keywords): Fix reference to
2543 `antlr-font-lock-literal-regexp' erroneously changed during the
2544 mass face rename.
2545 (antlr-run-tool): Use `compilation-start'.
2546
2547 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
2548 instead of the obsolete `compile-internal'.
2549
2550 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
2551
2552 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
2553 (number, original-date):
2554 * calendar/cal-china.el (date):
2555 * calendar/cal-coptic.el (date):
2556 * calendar/cal-french.el (date):
2557 * calendar/cal-hebrew.el (date, entry, number, original-date):
2558 * calendar/cal-islam.el (date, number, original-date):
2559 * calendar/cal-iso.el (date):
2560 * calendar/cal-julian.el (date):
2561 * calendar/cal-mayan.el (date):
2562 * calendar/cal-menu.el (date, event):
2563 * calendar/cal-persia.el (date):
2564 * calendar/lunar.el (date):
2565 * calendar/solar.el (date): Add defvars.
2566
2567 * emerge.el:
2568 * ibuffer.el:
2569 * info-xref.el:
2570 * obsolete/bg-mouse.el:
2571 * obsolete/sun-curs.el:
2572 * obsolete/swedish.el: Move the `defvar's to the top level.
2573
2574 * smerge-mode.el (smerge-refined-change): Add :group.
2575
2576 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
2577
2578 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
2579 (smerge-keep-n): Remove props.
2580 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
2581 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
2582 now that it's done in smerge-keep-n.
2583 (smerge-refined-change): New face.
2584 (smerge-refine-chopup-region, smerge-refine-highlight-change)
2585 (smerge-refine): New funs.
2586 (smerge-basic-map): Bind smerge-refine.
2587
2588 2005-08-25 Juri Linkov <juri@jurta.org>
2589
2590 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
2591 compilation-process-setup-function and compilation-disable-input
2592 in grep-mode instead of let-bindings in grep.
2593
2594 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
2595 Delete "Automatic File De/compression" (auto-compression-mode).
2596
2597 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
2598
2599 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
2600 Silence warning about non-existent variable.
2601
2602 2005-08-25 Richard M. Stallman <rms@gnu.org>
2603
2604 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
2605 Rename "Describe Key" to "Describe Key or Mouse Operation".
2606
2607 * mail/mailalias.el (build-mail-aliases): Delete comments
2608 from the contents before processing them.
2609
2610 * isearch.el (isearch-edit-string): Erase the Search prompt
2611 if user enters an empty string and there is no default.
2612
2613 * comint.el (comint-file-name-prefix): Add autoload.
2614
2615 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
2616
2617 * subr.el (play-sound): Rearrange to avoid warning.
2618
2619 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
2620
2621 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
2622 New hook.
2623 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
2624
2625 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
2628
2629 * custom.el (custom-theme-set-variables): Sort minor modes last.
2630
2631 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2632
2633 * subr.el (version-separator, version-regexp-alist): New vars used by
2634 version comparison funs.
2635 (integer-list-<, integer-list-=, integer-list-<=)
2636 (integer-list-not-zero): New funs for integer list comparison.
2637 (version-to-list, version=, version<, version<=): New funs for version
2638 comparison.
2639
2640 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
2641
2642 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
2643 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
2644 time to silence the byte-compiler.
2645
2646 * ibuffer.el (ibuffer-compile-make-eliding-form)
2647 (ibuffer-check-formats): Use `with-no-warnings' to hide references
2648 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
2649 so it's silly to get warnings for it).
2650 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
2651 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
2652 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
2653 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
2654 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
2655 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
2656 Defvar at compile time.
2657 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
2658 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
2659 Declare them before use.
2660
2661 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
2662 (info-xref-good, info-xref-bad): Defvar at compile time.
2663
2664 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
2665 Use `let*' instead of `let'.
2666
2667 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
2668 (*mouse-y*, menu, char): Defvar at compile time.
2669 (sc::menu): Declare it before use.
2670 (sc::pack-one-line): Use `let', not `let*'.
2671
2672 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
2673 (mail-send-hook): Defvar at compile time.
2674
2675 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
2676 Defvar at compile time.
2677
2678 * term/sun-mouse.el (current-global-mousemap)
2679 (current-local-mousemap): Declare them before use.
2680
2681 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
2682
2683 * bookmark.el (bookmark-after-jump-hook): New hook.
2684 (bookmark-jump): Run `bookmark-after-jump-hook'.
2685
2686 2005-08-23 Juri Linkov <juri@jurta.org>
2687
2688 * faces.el (minibuffer-prompt): Doc fix.
2689
2690 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
2691
2692 * progmodes/xscheme.el: Trivial changes to silence warnings.
2693 (xscheme-previous-mode, xscheme-previous-process-state):
2694 Add defvars.
2695 (xscheme-last-input-end, xscheme-process-command-line)
2696 (xscheme-process-name, xscheme-buffer-name)
2697 (xscheme-expressions-ring-max, xscheme-expressions-ring)
2698 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
2699 (xscheme-control-g-synchronization-p)
2700 (xscheme-control-g-disabled-p, xscheme-string-receiver)
2701 (default-xscheme-runlight, xscheme-runlight)
2702 (xscheme-runlight-string, xscheme-process-filter-state)
2703 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
2704 Move to beginning of file.
2705 (scheme-interaction-mode-commands-alist)
2706 (scheme-interaction-mode-map, scheme-debugger-mode-map):
2707 Declare them before use. Note: the initialization code for the variables
2708 has not been moved because it uses functions that reference the variables.
2709 (xscheme-control-g-message-string, xscheme-process-filter-alist)
2710 (xscheme-prompt-for-expression-map): Declare them before use.
2711 (scheme-debugger-mode-commands): "?\ " -> "?\s".
2712
2713 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
2714
2715 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
2716
2717 2005-08-22 Juri Linkov <juri@jurta.org>
2718
2719 * faces.el (set-face-underline): Delete this duplicate function
2720 and make an obsolete alias to set-face-underline-p.
2721 (set-face-underline-p): Use docstring of set-face-underline.
2722 (describe-face): Create hyperlink to parent face.
2723
2724 * info.el (Info-insert-dir): Use save-excursion around
2725 insert-buffer-substring.
2726 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
2727 (Info-escape-percent): Delete function.
2728 (Info-fontify-node): Replace Info-escape-percent by
2729 replace-regexp-in-string with REP arg set to lambda that
2730 duplicates `%' and preserves text properties.
2731
2732 * progmodes/compile.el (compilation-disable-input): Doc fix.
2733 (define-compilation-mode): Doc fix and refill.
2734 (kill-compilation): Use `mode-name' in the error message.
2735 (compilation-find-file): Use `compilation-error' in the
2736 read-file-name's prompt.
2737
2738 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2739
2740 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
2741 (smerge-auto-leave): Make undo re-enable the mode.
2742 (debug-ignored-errors): Add the user-error of impossible resolution.
2743 (smerge-resolve): Move things around a bit, in preparation for later.
2744 (smerge-diff): Don't fail if the buffer has no associated file.
2745 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
2746 (smerge-conflict-overlay): New function.
2747 (smerge-match-conflict): Don't add text properties here.
2748 (smerge-find-conflict): Instead, add an overlay here.
2749 Also check for the case where we're inside a conflict already, so as to
2750 obviate the need for font-lock-multiline, which is unbearably slow with
2751 large conflicts and ciomplex font-lock patterns.
2752 (smerge-remove-props): Remove overlay rather than text-properties.
2753 (smerge-mode): Don't set font-lock-multiline.
2754 Remove overlays when turned off.
2755
2756 2005-08-21 Kim F. Storm <storm@cua.dk>
2757
2758 * ido.el (ido-ignore-item-p): Use save-match-data.
2759 Bind case-fold-search to ido-case-fold locally.
2760
2761 2005-08-20 Richard M. Stallman <rms@gnu.org>
2762
2763 * files.el (normal-mode): If font lock is on, turn it off and on.
2764
2765 * subr.el (replace-regexp-in-string): Doc fix.
2766
2767 * startup.el (command-line-1): Don't suppress startup screen
2768 due to existing processes.
2769
2770 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
2771
2772 * progmodes/compile.el (compilation-disable-input): Default to nil.
2773
2774 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
2775
2776 * progmodes/compile.el (compilation-disable-input): New defcustom.
2777 (compilation-start): If compilation-disable-input is non-nil, send
2778 EOF to the compilation process.
2779
2780 2005-08-20 Eli Zaretskii <eliz@gnu.org>
2781
2782 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
2783 Run the argument of tex-shell-cd-command through
2784 convert-standard-filename, to get the correct style of slashes on
2785 Windows, and enclose the result in quotes, in case the file name
2786 includes whitespace or other special characters.
2787
2788 2005-08-19 Andreas Schwab <schwab@suse.de>
2789
2790 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
2791 process.
2792
2793 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
2794
2795 * cus-start.el (minibuffer-prompt-properties): Correct typo.
2796
2797 2005-08-18 Kim F. Storm <storm@cua.dk>
2798
2799 * scroll-lock.el: Fix errors due to incorrect line wrapping.
2800
2801 2005-08-18 Richard M. Stallman <rms@gnu.org>
2802
2803 * scroll-lock.el: New file.
2804
2805 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
2806
2807 * dired.el (dired-move-to-end-of-filename):
2808 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
2809
2810 2005-08-18 Kim F. Storm <storm@cua.dk>
2811
2812 * ido.el (ido-everywhere): Fix defcustom :set function to disable
2813 rather than toggle mode when custom value is nil.
2814 (ido-everywhere): Fix defun doc string.
2815
2816 2005-08-17 Richard M. Stallman <rms@gnu.org>
2817
2818 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
2819 as tag instead of "Inviolable".
2820
2821 2005-08-17 Kim F. Storm <storm@cua.dk>
2822
2823 * windmove.el (windmove-coordinates-of-position): Remove.
2824 (windmove-coordinates-of-window-position): Remove.
2825 (windmove-reference-loc): Use posn-at-point instead.
2826
2827 * subr.el (insert-for-yank-1): Doc fix.
2828
2829 * ido.el (ido-enter-matching-directory): Rename from
2830 ido-enter-single-matching-directory. Change 'slash choice to
2831 'only. Add 'first choice.
2832 (ido-exhibit): Adapt to above changes.
2833
2834 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
2835
2836 * Makefile.in: Expand comment about building loaddefs.el.
2837
2838 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
2839
2840 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
2841 Comment use of defadvice.
2842
2843 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
2844
2845 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
2846
2847 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
2848 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
2849 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
2850 * progmodes/idlw-shell.el, progmodes/ld-script.el,
2851 * progmodes/which-func.el, ruler-mode.el, strokes.el,
2852 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
2853 for backward compatibility for faces that did not appear in the
2854 previous Emacs release.
2855
2856 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
2857
2858 2005-08-15 Kim F. Storm <storm@cua.dk>
2859
2860 * emulation/cua-base.el (cua-delete-region): Return t if
2861 deleted region was non-empty.
2862 (cua-replace-region): Inhibit overwrite-mode for
2863 self-insert-command if replaced region was non-empty.
2864 (cua--explicit-region-start, cua--status-string): Make them
2865 buffer-local at top-level...
2866 (cua-mode): ...rather than when mode is enabled.
2867
2868 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
2869
2870 * progmodes/vhdl-mode.el (vhdl-emacs-21):
2871 Set t for Emacs 21, 22, and so on.
2872
2873 2005-08-15 David Ponce <david@dponce.com>
2874
2875 * tree-widget.el: Update Commentary header.
2876 (tree-widget-theme): Doc fix.
2877 (tree-widget-space-width): New option.
2878 (tree-widget-image-properties): Look up in the default theme too.
2879 (tree-widget--cursors): Only for images with arrow pointer shape.
2880 (tree-widget-lookup-image): Pointer shape is hand by default.
2881 (tree-widget-icon): Rename generic icon widget from
2882 `tree-widget-control'.
2883 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
2884 derive from `tree-widget-icon'.
2885 (tree-widget-handle): Improve default look and feel of the text
2886 representation.
2887 (tree-widget): Rename :*-control properties to :*-icon properties.
2888 Add :action and :help-echo properties.
2889 (tree-widget-after-toggle-functions): Move.
2890 (tree-widget-close-node, tree-widget-open-node): Remove.
2891 (tree-widget-before-create-icon-functions): New hook.
2892 (tree-widget-value-create): Update to allow customization of icons
2893 and nodes at run-time via that new hook.
2894 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
2895 (tree-widget-icon-action, tree-widget-icon-help-echo)
2896 (tree-widget-action, tree-widget-help-echo): New functions.
2897
2898 2005-08-15 Kim F. Storm <storm@cua.dk>
2899
2900 * ido.el (ido-buffer-internal): Use with-no-warnings.
2901 (ido-make-merged-file-list): Use while-no-input.
2902
2903 2005-08-15 Richard M. Stallman <rms@gnu.org>
2904
2905 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
2906 (flyspell-large-region): Fix doc and custom type.
2907
2908 2005-08-14 Richard M. Stallman <rms@gnu.org>
2909
2910 * files.el (interpreter-mode-alist): Doc fix.
2911
2912 * mail/rmail.el (rmail-nonignored-headers): New variable.
2913 (rmail-clear-headers): Use it.
2914 (rmail-reply): Better handling of mail-followup-to header.
2915
2916 * progmodes/sh-script.el (sh-font-lock-keywords-var):
2917 Rename variable from sh-font-lock-keywords. In the `shell' entry,
2918 don't try to refer to executable-font-lock-keywords.
2919 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
2920 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
2921 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
2922 (sh-mode): Set comment-start-skip, local-abbrev-table,
2923 imenu-case-fold-search.
2924 (sh-set-shell): Don't set them here.
2925 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
2926 Don't cache the results in the original alist; don't ever modify
2927 that alist.
2928
2929 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
2930
2931 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
2932 empty.
2933
2934 2005-08-15 Andreas Schwab <schwab@suse.de>
2935
2936 * desktop.el: Put autoload cookie at risky-local-variable declarations.
2937
2938 * dired.el, info.el, mail/rmail.el: Revert last change.
2939
2940 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
2941
2942 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
2943 modification in `eval-after-load' form.
2944 * info.el: Likewise.
2945 * mail/rmail.el: Likewise.
2946
2947 2005-08-14 Juri Linkov <juri@jurta.org>
2948
2949 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2950 Remove highlighting of "Compilation started". Highlight only
2951 the word "finished" in "Compilation finished". Add highlighting
2952 of "interrupt", "killed", "terminated" and the exit code.
2953 (compilation-start): Add newline after header. Use exactly the
2954 same time stamp format as the finishing message.
2955 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
2956
2957 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
2958 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
2959 Add highlighting of "interrupt", "killed", "terminated".
2960
2961 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
2962 enabled and the current command is self-insert-command, call it
2963 explicitly with overwrite-mode bound to nil, to not allow it
2964 to delete the character after the selected region.
2965
2966 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
2967
2968 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
2969 move-end-of-line, end-of-line, and beginning-of-line to the list
2970 of commands after which the echo area is updated.
2971
2972 2005-08-12 Eli Zaretskii <eliz@gnu.org>
2973
2974 * cus-edit.el (custom-save-all, custom-save-delete):
2975 Bind recentf-exclude to exclude custom-file.
2976
2977 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
2978
2979 * mail/rmailsum.el (rmail-summary-end-of-message): New command
2980 to go to the bottom of the mail message. Added to
2981 `rmail-summary-mode-map' with key "/".
2982 (rmail-summary-show-message): New (internal) function for use by
2983 both `rmail-summary-beginning/end-of-message'.
2984 (rmail-summary-beginning-of-message): Change to use
2985 rmail-summary-show-message.
2986
2987 * mail/rmail.el (rmail-end-of-message): New command to go to the
2988 end of the current message. Added to `rmail-mode-map' with key "/".
2989 (rmail-beginning-of-message): Fix to work as documented.
2990 (rmail-mode): Change documentation.
2991
2992 * progmodes/compile.el (compilation-start): Add the line
2993 "Compilation started" with compilation start time.
2994 (compilation-mode-font-lock-keywords): Add `started' to keywords.
2995
2996 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
2997
2998 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
2999 of menu items.
3000
3001 2005-08-11 Richard M. Stallman <rms@gnu.org>
3002
3003 * simple.el (pop-global-mark): Reverse test of widen-automatically.
3004
3005 * battery.el (battery-status-function): Don't use ignore-errors.
3006
3007 2005-08-11 Lute Kamstra <lute@gnu.org>
3008
3009 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
3010 define-obsolete-variable-alias.
3011
3012 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
3013
3014 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
3015 (ange-ftp-send-cmd): Revert last change, and expand
3016 the comment explaining the problem.
3017
3018 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
3019
3020 * ldefs-boot.el: Update.
3021
3022 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
3023 item to "Time, Load and Mail". Change help echo text.
3024
3025 * time.el (display-time-use-mail-icon, display-time-format)
3026 (display-time-string-forms): Shorten first line of docstrings.
3027
3028 2005-08-10 Lars Hansen <larsh@soem.dk>
3029
3030 * desktop.el (desktop-buffer-mode-handlers):
3031 Make non-customizable. Add autoload cookie. Change initial value to
3032 nil; add elements in respective modules instead. Fix doc string.
3033 (desktop-load-file): New function.
3034 (desktop-minor-mode-handlers): New autoloaded variable.
3035 (desktop-create-buffer): Call minor mode handlers.
3036 Use desktop-load-file to load major and minor mode modules prior to
3037 checking for a handler.
3038 (desktop-save): Don't add nil to desktop-minor-modes for minor
3039 modes with nil function in desktop-minor-mode-table. Don't delete
3040 desktop file before rewriting it.
3041 (desktop-locals-to-save): Add autoload cookie. Don't make
3042 automatically buffer-local. Add variables column-number-mode,
3043 size-indication-mode, indent-tabs-mode,
3044 indicate-buffer-boundaries, indicate-empty-lines and
3045 show-trailing-whitespace.
3046 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
3047 regexps. Don't use desktop-clear-preserve-buffers-regexp.
3048 (desktop-clear-preserve-buffers-regexp): Delete.
3049 (desktop-clear-preserve-buffers): Update initial value and docstring.
3050 (desktop-save-buffer): Fix doc string.
3051
3052 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
3053 (hilit-chg-desktop-restore): New function.
3054 (highlight-changes-mode): Add highlight-changes-mode to
3055 desktop-locals-to-save.
3056
3057 * dired.el: Add handler to desktop-buffer-mode-handlers.
3058 (dired-restore-desktop-buffer): Remove autoload cookie.
3059 (dired-mode): Add autoload cookie.
3060
3061 * info.el: Add handler to desktop-buffer-mode-handlers.
3062 (Info-restore-desktop-buffer): Remove autoload cookie.
3063 (Info-mode): Add autoload cookie.
3064
3065 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
3066 (mh-restore-desktop-buffer): Remove autoload cookie.
3067 (mh-folder-mode): Add autoload cookie.
3068
3069 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
3070 (rmail-restore-desktop-buffer): Remove autoload cookie.
3071
3072 2005-08-11 Masatake YAMATO <jet@gyve.org>
3073
3074 * hexl.el (hexl-address-region):
3075 (hexl-ascii-region, hexl-font-lock-keywords):
3076 (hexl-highlight-line-range): Use the term "region"
3077 instead of "area" for consistency with the other symbols
3078 defined in hexl.el.
3079
3080 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
3081
3082 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
3083 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
3084 out by Juri Linkov). Add `display-battery-mode'.
3085
3086 2005-08-09 Juri Linkov <juri@jurta.org>
3087
3088 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3089 Remove `-text' from face variable names.
3090 (compilation-error-file-name, compilation-warning-file-name)
3091 (compilation-info-file-name): Delete faces.
3092 (compilation-line-number, compilation-column-number):
3093 Remove face underlining.
3094 (compilation-message-face): Set to `underline' value by default.
3095 (compilation-error-face, compilation-warning-face)
3096 (compilation-info-face): Remove `-file-name' from face names.
3097 (compilation-error-text-face, compilation-warning-text-face)
3098 (compilation-info-text-face): Delete face variables.
3099 (compilation-text-face): Delete function.
3100
3101 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
3102 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
3103 (grep-error-face): Set to `compilation-error' instead of
3104 `compilation-error-face' (which is redefined to `grep-hit-face' in
3105 grep buffers).
3106 (grep-mode-font-lock-keywords): Remove `-text' from face variable
3107 names. Use `grep-error-face' instead of `compilation-error-text-face'.
3108
3109 * dired-aux.el (dired-do-query-replace-regexp):
3110 Use `query-replace-read-args'.
3111
3112 * replace.el (query-replace-read-from, query-replace-read-to)
3113 (query-replace-read-args): Rename arg `string' to `prompt'.
3114
3115 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
3116
3117 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
3118
3119 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
3120 uploading files.
3121 (ange-ftp-canonize-filename): Handle file names beginning with ~
3122 correctly.
3123
3124 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
3125
3126 * textmodes/fill.el (canonically-space-region)
3127 (fill-context-prefix, fill-french-nobreak-p)
3128 (fill-delete-newlines, fill-comment-paragraph)
3129 (justify-current-line): "?\ " -> "?\s".
3130
3131 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
3132
3133 * textmodes/fill.el (fill-nonuniform-paragraphs):
3134 Improve argument/docstring consistency.
3135
3136 2005-08-09 Richard M. Stallman <rms@gnu.org>
3137
3138 * textmodes/ispell.el (ispell-word): More fboundp checks.
3139
3140 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
3141 (find-file-noselect-1): Call it here, only if RAWFILE.
3142 (normal-mode): Always set some major mode.
3143 (save-some-buffers-action-alist): Change some explanation strings.
3144 (file-name-non-special): In the `quote' method, use unwind-protect.
3145
3146 2005-08-09 Magnus Henoch <mange@freemail.hu>
3147
3148 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
3149 (ispell-have-aspell-dictionaries): New variable.
3150 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
3151 (ispell-get-aspell-config-value): New function.
3152 (ispell-aspell-find-dictionary): New function.
3153 (ispell-aspell-add-aliases): New function.
3154 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
3155 appropriate. Don't look for ispell dictionaries if we use aspell.
3156 (ispell-menu-map): Don't build a submenu of dictionaries.
3157
3158 2005-08-09 Richard M. Stallman <rms@gnu.org>
3159
3160 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
3161 (sql-read-passwd): Use read-passwd.
3162
3163 * progmodes/idlw-toolbar.el (idlwave-toolbar)
3164 (idlwave-toolbar-is-possible): Add defvars.
3165
3166 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
3167 Avoid warnings.
3168
3169 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
3170 (idlwave-system-class-info, idlwave-executive-commands-alist):
3171 Use defvar.
3172
3173 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
3174
3175 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
3176 Avoid warnings.
3177
3178 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
3179 and content-type: headers.
3180
3181 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
3182
3183 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
3184 and rename some of them to be more self-explanatory.
3185
3186 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
3187
3188 * startup.el (command-line-1): Implement -scriptload.
3189
3190 * replace.el (occur-engine): Initial *Occur* output not undoable.
3191
3192 * menu-bar.el (menu-bar-file-menu): Rename some menu items
3193 and improve help strings.
3194
3195 * isearch.el (isearch-repeat): When changing direction,
3196 mark search successful.
3197
3198 * ediff-init.el: Use (featurep 'xemacs).
3199
3200 * comint.el (send-invisible): Identify buffer, if not selected.
3201
3202 * align.el: Delete autoload for c-guess-basic-syntax.
3203
3204 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
3205
3206 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
3207 Improve argument/docstring consistency. Doc fixes.
3208 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
3209 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
3210 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
3211 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
3212 (r2bv-organization, r2bv-pages, r2bv-primary-author)
3213 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
3214 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
3215 Defvar at compile time.
3216
3217 2005-08-09 Juri Linkov <juri@jurta.org>
3218
3219 * info.el: Replace `info' with upper-case `Info' where appropriate.
3220 (info-title-1, info-title-2, info-title-3, info-title-4)
3221 (info-menu-header): Move up face definitions.
3222 (info-menu-star): Rename from `info-menu-5'.
3223 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
3224 (Info-fontify-visited-nodes): Fix docstring.
3225 (Info-hide-note-references): Fix docstring.
3226 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
3227 menu items in the same way as on cross-references.
3228 (info-apropos): Fix sorting order and formatting to be like in the
3229 stand-alone Info browser. Display error messages for 1 sec.
3230 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
3231 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
3232 from the menu bar.
3233 (Info-insert-dir): Restore point after calling
3234 `insert-buffer-substring'.
3235
3236 2005-08-08 Richard M. Stallman <rms@gnu.org>
3237
3238 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
3239 (recompute-lucid-menubar): Add defvars.
3240
3241 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
3242
3243 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
3244
3245 * net/net-utils.el (run-dig): Rename from `dig'.
3246
3247 * play/gametree.el (gametree-mode): Use make-local-variable,
3248 not make-variable-buffer-local.
3249
3250 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
3251
3252 * ansi-color.el (ansi-color-make-extent)
3253 (ansi-color-set-extent-face): Use fboundp, not functionp.
3254
3255 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
3256 not make-variable-buffer-local.
3257
3258 * bookmark.el (Info-current-file): Add defvar.
3259 (bookmark-jump-noselect): Use with-no-warnings.
3260
3261 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
3262
3263 * ebuff-menu.el (Helper-return-blurb): Add defvar.
3264
3265 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
3266
3267 * find-file.el (ada-procedure-start-regexp)
3268 (ada-package-start-regexp): Add defvars.
3269
3270 * info.el (Info-insert-dir): Use insert-buffer-substring.
3271
3272 * xml.el (xml-att-def-re): Add defvar.
3273
3274 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
3275 calling convention.
3276
3277 * subr.el (while-no-input): Return t if there is input.
3278
3279 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
3280
3281 * cus-start.el (all): Add `overflow-newline-into-fringe'.
3282
3283 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
3284
3285 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
3286 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
3287
3288 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
3289
3290 * cmuscheme.el (scheme-start-file): Replace reference to
3291 `user-emacs-directory' by "~/.emacs.d/".
3292
3293 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
3294
3295 * info.el (Info-dir-remove-duplicates): Avoid case folding
3296 in loop; instead, keep downcased strings for comparison.
3297 Suggested by Helmut Eller.
3298
3299 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
3300
3301 Sync with Tramp 2.0.50.
3302
3303 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
3304 XEmacs case; not necessary anymore.
3305 (tramp-user-regexp): Allow "@" as part of user name.
3306 (tramp-handle-set-visited-file-modtime)
3307 (tramp-handle-insert-file-contents)
3308 (tramp-handle-write-region): No special handling for
3309 `last-coding-system-used, because this is done in
3310 `tramp-accept-process-output' now.
3311 (tramp-accept-process-output): New defun.
3312 (tramp-process-one-action, tramp-process-one-multi-action)
3313 (tramp-wait-for-regexp, tramp-wait-for-output)
3314 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
3315 Howells <dhowells@redhat.com>.
3316 (clear-visited-file-modtime): Defadvice removed. The check for
3317 unset buffer's modtime does not need to be based on
3318 `tramp-buffer-file-attributes'. Suggested by RMS.
3319 (tramp-message): Insert "\n" if not being at beginning of line.
3320 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
3321 sequence with same logic.
3322 (tramp-completion-handle-expand-file-name): Discard call of
3323 `tramp-drop-volume-letter'. It is not necessary, and there have
3324 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
3325 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
3326 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
3327 should always be visible.
3328 (tramp-handle-insert-directory, tramp-setup-complete)
3329 (tramp-set-process-query-on-exit-flag)
3330 (tramp-append-tramp-buffers): Pacify byte-compiler.
3331 (tramp-bug): Delete non-existing variables from list.
3332 Apply `tramp-load-report-modules' as pre-hook.
3333 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
3334 `shell-prompt-pattern' because of non-7bit characters.
3335 Reported by Sebastian Luque <sluque@mun.ca>.
3336 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
3337 (tramp-match-string-list): Remove function.
3338 (tramp-wait-for-regexp): Remove call of that function.
3339 Suggested by Kim F. Storm <storm@cua.dk>.
3340 (tramp-set-auto-save-file-modes): Use octal integer code #o600
3341 instead of octal character code ?\600. The latter resulted in a
3342 syntax error with XEmacs.
3343
3344 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
3345 XEmacs case; not necessary anymore.
3346 (tramp-smb-handle-write-region): No special handling for
3347 `last-coding-system-used, because this is done in
3348 `tramp-accept-process-output' now.
3349 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
3350
3351 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
3352
3353 * wid-edit.el (widget-choice-value-create):
3354 Unconditionally respect user choice. Set :explicit-choice back to nil
3355 when no longer needed.
3356 (widget-choice-action): Unconditionally respect user choice.
3357 Eliminate :explicit-choice-value.
3358
3359 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
3360
3361 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
3362 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
3363 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
3364 running new function `toggle-indicate-empty-lines'.
3365 Rename "Customize" item to "Customize fringe".
3366 Rename "Indicators" item to "Buffer boundaries" and change help echo.
3367 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
3368 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
3369 Delete "Empty lines only" item.
3370 (menu-bar-showhide-fringe-ind-customize): New function.
3371 (menu-bar-showhide-fringe-ind-mixed)
3372 (menu-bar-showhide-fringe-ind-box)
3373 (menu-bar-showhide-fringe-ind-right)
3374 (menu-bar-showhide-fringe-ind-left)
3375 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
3376 instead of `fringe-indicators'.
3377
3378 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
3379
3380 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
3381 Change the date of last update.
3382
3383 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
3384
3385 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
3386 (viper-exec-yank, viper-put-back): Don't display modification msg
3387 if in the minibuffer.
3388
3389 * viper-init.el (viper-replace-overlay-cursor-color)
3390 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
3391 Make variables frame local.
3392
3393 * viper-util.el (viper-append-filter-alist): Use append instead of
3394 nconc.
3395
3396 * viper.el (viper-vi-state-mode-list)
3397 (viper-emacs-state-mode-list): Move help-mode and
3398 completion-list-mode from the first list to the second.
3399 (viper-mode): Docstring.
3400 (viper-go-away, viper-non-hook-settings): Don't localize
3401 minor-mode-alist in newer Emacsen. Add advice to
3402 set-cursor-color. Don't bind "\C-c\\".
3403
3404 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
3405
3406 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
3407 (scheme-macro-expand-command): New user options.
3408 (scheme-trace-procedure, scheme-expand-current-form): New commands.
3409 (scheme-form-at-point, scheme-start-file)
3410 (scheme-interactively-start-process): New functions.
3411 (scheme-get-process): New function, extracted from `scheme-proc'.
3412 (run-scheme): Call `scheme-start-file' to get start file, and pass
3413 it to `make-comint'.
3414 (switch-to-scheme, scheme-proc):
3415 Call `scheme-interactively-start-process' if no Scheme buffer/process
3416 is available.
3417
3418 2005-08-06 Juri Linkov <juri@jurta.org>
3419
3420 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3421 Use `compilation-text-face', `compilation-info-text-face' and
3422 `compilation-error-text-face' instead of `font-lock-keyword-face'.
3423 (compilation-error): New face.
3424 (compilation-error-file-name): Inherit from
3425 `compilation-error' instead of `font-lock-warning-face'.
3426 (compilation-warning-file-name): Inherit from
3427 `compilation-warning' instead of `font-lock-warning-face'.
3428 (compilation-info, compilation-error-file-name)
3429 (compilation-warning-file-name, compilation-info-file-name)
3430 (compilation-line-number, compilation-column-number): Doc fix.
3431 (compilation-error-text-face, compilation-warning-text-face)
3432 (compilation-info-text-face): New face variables.
3433 (compilation-line-face, compilation-column-face)
3434 (compilation-enter-directory-face)
3435 (compilation-leave-directory-face): Doc fix.
3436 (compilation-text-face): New function.
3437
3438 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
3439 instead of 1 to display binary file names as info file links.
3440 (grep-error-face): Use `compilation-error-face' instead of
3441 `font-lock-keyword-face'.
3442 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
3443 and `compilation-warning-text-face' instead of
3444 `font-lock-keyword-face'. Use `compilation-error-text-face'
3445 instead of `grep-error-face'.
3446
3447 2005-08-05 Kenichi Handa <handa@m17n.org>
3448
3449 * international/code-pages.el: Add autoload cookies for all coding
3450 systems.
3451
3452 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
3453
3454 * cus-start.el (all): Put undo.c where it alphabetically belongs.
3455
3456 2005-08-04 Juri Linkov <juri@jurta.org>
3457
3458 * progmodes/compile.el (compilation-mode-map):
3459 * progmodes/grep.el (grep-mode-map):
3460 Bind TAB to `compilation-next-error' and [backtab] to
3461 `compilation-previous-error'.
3462
3463 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
3464 matching line numbers, column numbers and their ranges with regexp
3465 matching only line numbers.
3466 (grep-context-face): New face variable.
3467 (grep-mode-font-lock-keywords): Use it.
3468
3469 * faces.el (read-face-name): Delete duplicate faces.
3470
3471 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
3472
3473 * thumbs.el (thumbs-find-image): Don't make variables
3474 automatically buffer local.
3475 (thumbs-current-tmp-filename, thumbs-current-image-filename)
3476 (thumbs-image-num): Make automatically buffer local.
3477 (thumbs-show-thumbs-list): Use `make-local-variable', not
3478 `make-variable-buffer-local'.
3479 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
3480
3481 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
3482 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
3483 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
3484 (bother, bye, canyou, chatlst, continue, deathlst, describe)
3485 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
3486 (feelings-about, foullst, found, hello, history, howareyoulst)
3487 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
3488 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
3489 (neglst, obj, object, owner, please, problems, qlist)
3490 (random-adjective, relation, remlst, repetitive-shortness)
3491 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
3492 (shortlst, something, sportslst, stallmanlst, states, subj)
3493 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
3494 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
3495 Defvar at compile time.
3496
3497 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
3498 not `make-variable-buffer-local'.
3499
3500 2005-08-02 Kim F. Storm <storm@cua.dk>
3501
3502 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
3503 rectangle overlay in selected window.
3504
3505 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
3506
3507 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
3508 instead of display group. Make `indicate-buffer-boundaries'
3509 customizable through Custom.
3510
3511 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
3512
3513 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
3514 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
3515 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
3516 (gdb-put-string): Fix typos in docstrings.
3517
3518 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
3519
3520 Update copyright notices of files in progmodes directory for
3521 release of Emacs 22.1.
3522
3523 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
3524
3525 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
3526 Don't barf if the GUD buffer has been killed.
3527
3528 2005-08-01 Kim F. Storm <storm@cua.dk>
3529
3530 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
3531
3532 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
3533
3534 * simple.el (next-error-follow-minor-mode):
3535 make-variable-buffer-local -> make-local-variable.
3536
3537 * emacs-lisp/cl-extra.el: Require CL also when compiling.
3538
3539 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
3540 (byte-compile-form-make-variable-buffer-local): New functions to warn
3541 about misuses of make-variable-buffer-local where make-local-variable
3542 was meant.
3543
3544 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
3545
3546 * bs.el (bs-attributes-list): Doc fix.
3547 (bs): Update url-link.
3548
3549 * desktop.el (desktop-save-buffer): Fix typos in docstring.
3550 (desktop-load-default): Simplify.
3551
3552 * ibuffer.el (ibuffer-columnize-and-insert-list)
3553 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
3554 (ibuffer-unmark-all, ibuffer-toggle-marks)
3555 (ibuffer-unmark-forward, ibuffer-unmark-backward)
3556 (ibuffer-compile-make-format-form, ibuffer-format-column)
3557 (ibuffer-current-buffers-with-marks)
3558 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
3559 (ibuffer): Doc fix.
3560 (ibuffer-mode): Fix typo in docstring.
3561 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
3562 with `define-obsolete-variable-alias'.
3563 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
3564
3565 2005-07-29 Kenichi Handa <handa@m17n.org>
3566
3567 * international/mule-cmds.el (select-message-coding-system):
3568 Be sure to use LF for end-of-line. If no coding system is decided,
3569 return iso-8859-1-unix.
3570
3571 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
3572
3573 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
3574 (ange-ftp-pending-error-line): New vars.
3575 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
3576 to handle the non-fatal no-route-to-host messages.
3577 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
3578
3579 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
3580
3581 * isearch.el (isearch-mode-map, isearch-other-meta-char)
3582 (isearch-quote-char, isearch-printing-char)
3583 (isearch-text-char-description): "?\ " -> "?\s".
3584 (isearch-lazy-highlight-cleanup)
3585 (isearch-lazy-highlight-initial-delay)
3586 (isearch-lazy-highlight-interval)
3587 (isearch-lazy-highlight-max-at-a-time)
3588 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
3589 Declare with define-obsolete-*-alias macros.
3590 (isearch-forward): Fix typo in docstring.
3591 (search-invisible, search-ring-yank-pointer)
3592 (regexp-search-ring-yank-pointer): Doc fixes.
3593
3594 * recentf.el (recentf-menu-append-commands-p): Declare with
3595 `define-obsolete-variable-alias'.
3596 (recentf-max-saved-items, recentf-menu-filter)
3597 (recentf-arrange-by-rule-subfilter): Doc fixes.
3598 (recentf-menu-append-commands-flag)
3599 (recentf-initialize-file-name-history, recentf-expand-file-name)
3600 (recentf-clear-data): Fix typos in docstrings.
3601
3602 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
3603
3604 * progmodes/gdb-ui.el: Smarten comments.
3605 (gdb-info-breakpoints-custom): Use nowarn when finding file.
3606
3607 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3608
3609 * term/apollo.el (terminal-init-apollo): New function containing
3610 all former top level forms in the file.
3611 * term/bobcat.el (terminal-init-bobcat):
3612 * term/cygwin.el (terminal-init-cygwin):
3613 * term/iris-ansi.el (terminal-init-iris-ansi):
3614 * term/linux.el (terminal-init-linux):
3615 * term/news.el (terminal-init-news):
3616 * term/rxvt.el (terminal-init-rxvt):
3617 * term/sun.el (terminal-init-sun):
3618 * term/tvi970.el (terminal-init-tvi970):
3619 * term/vt100.el (terminal-init-vt100):
3620 * term/vt102.el (terminal-init-vt102):
3621 * term/vt125.el (terminal-init-vt125):
3622 * term/vt200.el (terminal-init-vt200):
3623 * term/vt201.el (terminal-init-vt201):
3624 * term/vt220.el (terminal-init-vt220):
3625 * term/vt240.el (terminal-init-vt240):
3626 * term/vt300.el (terminal-init-vt300):
3627 * term/vt320.el (terminal-init-vt320):
3628 * term/vt400.el (terminal-init-vt400):
3629 * term/vt420.el (terminal-init-vt420):
3630 * term/wyse50.el (terminal-init-wyse50):
3631 * term/xterm.el (terminal-init-xterm): Likewise.
3632
3633 * term/README: Describe the terminal-init-* functionality.
3634
3635 * startup.el (command-line): After loading the terminal initialization
3636 file call the corresponding terminal initialization function.
3637
3638 2005-07-27 Kenichi Handa <handa@m17n.org>
3639
3640 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
3641 negative.
3642
3643 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
3644 (ps-mule-composition-prologue): Fix for the case that
3645 RelativeCompose is false.
3646
3647 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3648
3649 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
3650
3651 * descr-text.el (describe-char): Handle the case where the list of
3652 chars is displayed in a separate frame.
3653 Be a bit more discriminating when looking for the char.
3654
3655 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
3656
3657 * bookmark.el (bookmark-automatically-show-annotations)
3658 (bookmark-read-annotation-text-func): Doc fixes.
3659 (bookmark-save): Improve argument/docstring consistency.
3660 (bookmark-get-bookmark, bookmark-get-bookmark-record)
3661 (bookmark-alist-from-buffer)
3662 (bookmark-upgrade-file-format-from-0)
3663 (bookmark-grok-file-format-version)
3664 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
3665 (bookmark-read-annotation-mode)
3666 (bookmark-insert-current-bookmark, bookmark-jump)
3667 (bookmark-exit-hook): Fix typos in docstrings.
3668 (bookmark-exit-hooks): Define as obsolete alias.
3669 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
3670 not `bookmark-exit-hooks'. Fix docstring.
3671 (bookmark-bmenu-select): "?\ " -> "?\s".
3672
3673 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
3674
3675 * startup.el (command-line): Fix typo.
3676
3677 2005-07-24 Richard M. Stallman <rms@gnu.org>
3678
3679 * tooltip.el (tooltip-mode): Test emacs-basic-display,
3680 not emacs-quick-startup.
3681
3682 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
3683
3684 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
3685 (reb-next-match, reb-show-subexp): Use `with-selected-window'
3686 instead of `reb-with-current-window'.
3687 (reb-prev-match): Likewise. Also, don't move left if the search
3688 was unsuccessful.
3689 (reb-initialize-buffer): New function.
3690 (re-builder, reb-change-syntax): Use it.
3691
3692 * man.el (Man-goto-page): Make second argument NOERROR optional.
3693
3694 2005-07-23 Richard M. Stallman <rms@gnu.org>
3695
3696 * man.el (Man-bgproc-sentinel): Check here for failure to find
3697 any man page in the output, and report the error here.
3698 (Man-arguments): Make it permanent local.
3699 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
3700 (Man-mode): Pass t for NOERROR.
3701
3702 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
3703 (grep-mode-font-lock-keywords):
3704 Don't use compilation-...-face for messages that are not file names.
3705
3706 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3707 Don't use compilation-...-face for messages that are not file names.
3708
3709 2005-07-22 Juri Linkov <juri@jurta.org>
3710
3711 * startup.el (normal-splash-screen): Update menu name.
3712
3713 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
3714
3715 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
3716
3717 * term/xterm.el: Load term/rxvt if the terminal is actually an
3718 rxvt terminal.
3719 (xterm-rxvt-set-background-mode): Remove, not used anymore.
3720
3721 * term/rxvt.el (function-key-map): Use substitute-key-definition
3722 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
3723
3724 * term/cygwin.el: New file.
3725
3726 2005-07-22 Kim F. Storm <storm@cua.dk>
3727
3728 * image-file.el (insert-image-file, image-file-yank-handler):
3729 Fix last change to maintain a (unique) yank-handler on yanked images.
3730
3731 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
3732
3733 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
3734 of the file size (as in "177B" for 177 bytes). This happens with
3735 "ls -lh" on FreeBSD.
3736
3737 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
3738
3739 * hilit-chg.el (highlight-changes-global-initial-state)
3740 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
3741 (hilit-chg-fixup, highlight-changes-mode):
3742 Fix typos in docstrings.
3743 (highlight-changes-global-modes, highlight-changes-rotate-faces):
3744 Doc fixes.
3745
3746 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
3747
3748 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
3749 mode function using `eval-after-load'.
3750
3751 2005-07-21 Kim F. Storm <storm@cua.dk>
3752
3753 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
3754 included when reporting an emacs crash, and tell about the DEBUG file.
3755
3756 * image-file.el (insert-image-file): Add yank-handler.
3757 (image-file-yank-handler): Yank handler to make unique copies of
3758 images when they are yanked into a buffer next to each other.
3759
3760 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
3761
3762 * comint.el (comint-use-prompt-regexp, comint-send-input)
3763 (comint-source-default, comint-extract-string)
3764 (comint-get-source, comint-word, comint-completion)
3765 (comint-source, comint-prompt-read-only, comint-update-fence):
3766 Fix typos in docstrings.
3767 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
3768 Declare with define-obsolete-*-alias macros.
3769 (comint-previous-matching-input-from-input)
3770 (comint-next-matching-input-from-input)
3771 (comint-previous-matching-input, comint-next-matching-input)
3772 (comint-forward-matching-input):
3773 Improve argument/docstring consistency.
3774
3775 * desktop.el (desktop-clear-preserve-buffers-regexp):
3776 Also preserve the *server* buffer.
3777
3778 * simple.el (clone-indirect-buffer): Doc fix.
3779 (fixup-whitespace, just-one-space)
3780 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
3781 (next-error, next-error-highlight)
3782 (next-error-highlight-no-select, next-error-last-buffer)
3783 (next-error-buffer-p, next-error-find-buffer, next-error)
3784 (previous-error, next-error-no-select, previous-error-no-select)
3785 (open-line, split-line, minibuffer-prompt-width, kill-new)
3786 (binary-overwrite-mode): Fix typos in docstrings.
3787 (set-fill-column): Fix typo in message.
3788
3789 * skeleton.el (skeleton-proxy-new): Doc fix.
3790
3791 * strokes.el (strokes-load-hook): Doc fix.
3792 (strokes-grid-resolution, strokes-get-grid-position)
3793 (strokes-renormalize-to-grid, strokes-read-stroke)
3794 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
3795 (strokes-global-map): Fix typos in docstrings.
3796 (strokes-help): Doc fix. Fix help message and pass it through
3797 `substitute-command-keys'.
3798
3799 * tempo.el (tempo-insert-prompt, tempo-interactive)
3800 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
3801 (tempo-insert-string-functions, tempo-local-tags)
3802 (tempo-define-template, tempo-insert-template)
3803 (tempo-insert-prompt-compat, tempo-is-user-element)
3804 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
3805 Fix typos in docstrings.
3806
3807 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
3808 (vcursor-key-bindings, vcursor-use-vcursor-map)
3809 (vcursor-find-window, vcursor-scroll-down)
3810 (vcursor-disable, vcursor-beginning-of-buffer)
3811 (vcursor-end-of-buffer): Fix typos in docstrings.
3812 (vcursor-relative-move, vcursor-get-char-count):
3813 Improve argument/docstring consistency.
3814
3815 * version.el: "?\ " -> "?\s".
3816
3817 * wid-edit.el (widget-default-create, widget-after-change)
3818 (widget-default-format-handler, widget-checklist-add-item)
3819 (widget-radio-add-item, widget-choose, widget-specify-secret)
3820 (widget-field-value-create, widget-field-value-get)
3821 (widget-editable-list-format-handler)
3822 (widget-editable-list-entry-create, widget-group-value-create)
3823 (widget-documentation-link-add)
3824 (widget-documentation-string-value-create): "?\ " -> "?\s".
3825 (widget-convert-text): Doc fix.
3826 (widget-narrow-to-field, widget-field-find)
3827 (widget-url-link-action, widget-emacs-library-link-action)
3828 (widget-color-notify): Fix typos in docstrings.
3829
3830 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
3831 (x-select-text, set-w32-system-coding-system)
3832 (w32-add-charset-info): Fix typos in docstrings.
3833
3834 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
3835 (cua-enable-cua-keys, cua-use-hyper-key)
3836 (cua-virtual-rectangle-edges): Fix typos in docstrings.
3837 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
3838
3839 * net/tramp.el (tramp-handle-load): Fix typo in error message.
3840
3841 * emacs-lisp/re-builder.el (regexp-builder): Declare with
3842 `defalias' instead of faking it.
3843
3844 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
3845 (eshell-ls-missing, eshell-ls-dired-initial-args)
3846 (eshell-ls-use-in-dired): Fix typos in docstrings.
3847
3848 2005-07-20 Kim F. Storm <storm@cua.dk>
3849
3850 * emulation/cua-base.el (cua-mode): Improve doc string.
3851
3852 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
3853
3854 * abbrev.el (expand-region-abbrevs): Doc fix.
3855 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
3856 Improve argument/docstring consistency.
3857
3858 * arc-mode.el (archive-get-descr, archive-alternate-display):
3859 Doc fixes.
3860 (archive-l-e): Improve argument/docstring consistency.
3861 (archive-tmpdir, archive-unixdate, archive-unixtime)
3862 (archive-chmod-entry): Fix typos in docstrings.
3863 (archive-unflag, archive-unflag-backwards)
3864 (archive-unmark-all-files): "?\ " -> "?\s".
3865
3866 * buff-menu.el (Buffer-menu-unmark): Doc fix.
3867 (Buffer-menu-not-modified, Buffer-menu-execute)
3868 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
3869 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
3870
3871 * composite.el (compose-string, encode-composition-rule)
3872 (compose-last-chars): Fix typos in docstrings.
3873
3874 * desktop.el (desktop-enable, desktop-basefilename):
3875 Declare with `define-obsolete-variable-alias'.
3876 (desktop-internal-v2s): Don't quote keywords.
3877 (desktop-clear): "?\ " -> "?\s".
3878
3879 * dired.el (dired-align-file, dired-flag-backup-files)
3880 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
3881 (dired-listing-switches, dired-ls-F-marks-symlinks)
3882 (dired-dwim-target, dired-load-hook, dired-mode-hook)
3883 (dired-directory, dired-faces, dired, dired-revert)
3884 (dired-mode, dired-summary, dired-view-file)
3885 (dired-copy-filename-as-kill, dired-delete-file)
3886 (dired-no-confirm, dired-unmark-all-marks)
3887 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
3888 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
3889 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
3890 Fix typos in message strings.
3891
3892 * dired-x.el (virtual-dired): Declare with `defalias'.
3893 (dired-mark-unmarked-files, dired-local-variables-file)
3894 (dired-omit-here-always): Doc fix.
3895 (dired-omit-mode, dired-find-subdir)
3896 (dired-enable-local-variables, dired-clean-up-buffers-too)
3897 (dired-extra-startup, dired-mark-extension, dired-jump)
3898 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
3899 (dired-smart-shell-command, dired-guess-shell-alist-user)
3900 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
3901 (dired-x-bind-find-file, dired-x-submit-report):
3902 Fix typos in docstrings.
3903 (dired-mark-unmarked-files): "?\ " -> "?\s".
3904
3905 * dirtrack.el (dirtrack-list): Fix typos in docstring.
3906
3907 * faces.el (describe-face): "?\ " -> "?\s".
3908 (read-all-face-attributes, read-face-font, modify-face)
3909 (face-attr-construct, italic): Fix typos in docstrings.
3910 (frame-update-face-colors): Declare with
3911 `define-obsolete-function-alias'.
3912
3913 * files.el (find-file-noselect, recode-file-name): Doc fixes.
3914 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
3915 (magic-mode-alist, buffer-file-numbers-unique)
3916 (write-file-functions, get-free-disk-space):
3917 Fix typos in docstrings.
3918 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
3919 (write-contents-hooks, write-file-hooks):
3920 Declare with `define-obsolete-variable-alias'.
3921
3922 * forms-d2.el (arch-rj): Fix typo in docstrings.
3923 (arch-tocol): Likewise. "?\ " -> "?\s".
3924
3925 * frame.el (set-frame-font, cursor-in-non-selected-windows):
3926 Fix typo in docstring.
3927 (set-screen-width, set-screen-height): Delete redundant info in
3928 doctrings.
3929 (new-frame, screen-height, screen-width): Declare with
3930 `define-obsolete-function-alias'.
3931 (delete-frame-hook, blink-cursor): Declare with
3932 `define-obsolete-variable-alias'.
3933
3934 * paths.el (prune-directory-list): Fix typos in docstring.
3935
3936 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
3937 (cvs-prefix-get): Fix typos in docstrings.
3938
3939 * ps-print.el (ps-extend-face-list, ps-extend-face)
3940 (ps-print-background-image): Fix typos in docstrings.
3941 (ps-default-fg, ps-default-bg): Doc fixes.
3942
3943 * s-region.el (s-region-bind): Doc fix.
3944 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
3945
3946 * textmodes/org.el (org-table-formula-substitute-names)
3947 (org-table-get-vertical-vector): Doc fixes.
3948 (org-table-recalculate): Remove unused argument to `message'.
3949
3950 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
3951
3952 * textmodes/org.el (org-table-column-names)
3953 (org-table-column-name-regexp)
3954 (org-table-named-field-locations): New variables.
3955 (org-archive-subtree): Protect `this-command' when calling
3956 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
3957 the kill buffer.
3958 (org-complete): Remove fixed-formula completion.
3959 (org-edit-formulas-map): New variable.
3960 (org-table-edit-formulas): New command.
3961 (org-finish-edit-formulas, org-abort-edit-formulas)
3962 (org-show-variable, org-table-get-vertical-vector): New functions.
3963 (org-table-maybe-eval-formula): Handle `:=' fields.
3964 (org-table-get-stored-formulas, org-table-store-formulas)
3965 (org-table-get-formula, org-table-modify-formulas)
3966 (org-table-replace-in-formulas): Handle named field formulas.
3967 (org-table-get-specials): Store locations of named fields.
3968
3969 2005-07-19 Juri Linkov <juri@jurta.org>
3970
3971 * progmodes/grep.el (grep-regexp-alist)
3972 (grep-mode-font-lock-keywords, grep-process-setup):
3973 Use default GNU grep match color "01;31m" instead of "01;41m".
3974 (grep-regexp-alist, grep-mode-font-lock-keywords):
3975 Use `\\[[0-9]*m' instead of `\\[00m'.
3976 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
3977 sgr_start where its handling is more important. Use the real
3978 length of sgr_start instead of constant 8.
3979 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
3980 specially. Delete all remaining escape sequences.
3981 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
3982 (grep-regexp-alist): Make hyperlink only for binary file name
3983 instead of the whole line.
3984 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
3985 (grep-mode): Add autoload.
3986
3987 * emacs-lisp/find-func.el (find-function-regexp):
3988 Add `define-compilation-mode'.
3989
3990 2005-07-19 Juri Linkov <juri@jurta.org>
3991
3992 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
3993 (compare-windows-sync-string-size, compare-windows-recenter)
3994 (compare-windows-highlight, compare-windows): Add version 22.1.
3995 (compare-windows) <defface>: Inherit from lazy-highlight instead
3996 of duplicating its default value.
3997
3998 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
3999 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
4000
4001 * descr-text.el (describe-char): Create link buttons for `charset'
4002 and `code point'. Add the current input method name with a link
4003 button to `to input' field. Print face names of display table
4004 characters in `The display table entry is displayed by' section
4005 instead of printing face-id in the `display' field.
4006 Guess hardcoded faces and create a link button for them.
4007 Skip empty fields when calculating max-width.
4008 Treat `widget-create' specially while inserting strings from the
4009 collected field list.
4010 (describe-char-after): Made obsolete in version 22.1, not 21.5.
4011
4012 * diff-mode.el (diff-file-header): Change foreground color from
4013 yellow to green on light backgrounds.
4014 (diff-context): Inherit from `shadow' only for color/grayscale
4015 with more than 88 colors.
4016 (diff-indicator-removed, diff-indicator-added)
4017 (diff-indicator-changed): New faces.
4018 (diff-font-lock-keywords): Use new faces. Regroup rules.
4019 Add "^---$" for `normal' diff format. Fontify `#' lines with
4020 font-lock-comment-delimiter-face and font-lock-comment-face.
4021 Add `#' to ^[^...] in the rule for `diff-context-face'.
4022
4023 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
4024 a button-like box. Inherit from `highlight' on low colors.
4025 (shadow): Use shades of gray only for color/grayscale with
4026 more than 88 colors. Use green for light backgrounds with
4027 8 colors, and yellow for dark backgrounds with 8 colors.
4028
4029 * font-lock.el (font-lock-regexp-grouping-backslash):
4030 Don't inherit from escape-glyph (use bold for all cases).
4031
4032 * info.el (info-xref-visited): Use light foreground color `violet'
4033 for dark backgrounds instead of dark color `magenta3'.
4034 (info-title-1): Use `yellow' color for dark backgrounds.
4035
4036 * isearch.el (isearch): Use not-too-dark magenta3 instead of
4037 too-light magenta2.
4038
4039 * replace.el (match): Use slightly more light RoyalBlue3 instead
4040 of dark RoyalBlue4.
4041
4042 * wid-edit.el (widget-inactive): Inherit from `shadow'.
4043
4044 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
4045
4046 * novice.el (disabled-command-hook): Declare it with
4047 `define-obsolete-variable-alias'.
4048
4049 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
4050 (desktop-buffer-misc-functions, desktop-buffer-handlers)
4051 (desktop-load-default): Add release to obsolescence info.
4052 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
4053 (desktop-append-buffer-args, desktop-read):
4054 Fix typos in docstrings.
4055 (desktop-kill): Fix typo in message.
4056 (desktop-save): Doc fix.
4057
4058 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
4059
4060 * viper-cmd.el (viper-escape-to-state): Bug fix.
4061 (viper-envelop-ESC-key): Change the definition of fast
4062 keysequence so it'll work with keyboard macros.
4063
4064 * ediff.el (ediff-patch-buffer): Change the docstring.
4065
4066 2005-07-19 Kenichi Handa <handa@m17n.org>
4067
4068 * international/mule-cmds.el (select-safe-coding-system): Try to
4069 use an auto-coding (if any) before anything else. If the found
4070 auto-coding is invalid, show a warning message.
4071
4072 * international/mule.el (find-auto-coding): New function created
4073 by modifying the body of set-auto-coding.
4074 (set-auto-coding): Use find-auto-coding to find a coding.
4075
4076 2005-07-18 Richard M. Stallman <rms@gnu.org>
4077
4078 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
4079 not isearch-mode-end-hook-error.
4080 (allout-before-change-protect): Fix error message.
4081
4082 2005-07-18 Juri Linkov <juri@jurta.org>
4083
4084 * allout.el (allout-mode):
4085 * calculator.el (calculator-copy):
4086 * custom.el (custom-known-themes):
4087 * dired.el (dired-desktop-buffer-misc-data)
4088 (dired-restore-desktop-buffer):
4089 * dired-x.el (dired-omit-marker-char):
4090 * files.el (basic-save-buffer):
4091 * font-core.el (font-lock-mode):
4092 * calendar/calendar.el (calendar-goto-hebrew-date)
4093 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
4094 (calendar-goto-persian-date):
4095 * language/ethio-util.el (ethio-sera-to-fidel-region):
4096 * textmodes/picture.el (picture-mode):
4097 Delete duplicate duplicate words.
4098
4099 2005-07-18 Juri Linkov <juri@jurta.org>
4100
4101 * isearch.el (isearch-mode-map): Remove key bindings for regexp
4102 chars * ? } |.
4103 (isearch-fallback): Don't call `isearch-process-search-char'.
4104 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
4105 (isearch-process-search-char): Call `isearch-fallback' for regexp
4106 chars * ? } |.
4107 (isearch-return-char): Make obsolete with `make-obsolete' instead
4108 of simply documenting it as obsolete in the docstring.
4109 (isearch-fallback): Refill docstring.
4110
4111 * international/isearch-x.el
4112 (isearch-process-search-multibyte-characters): Remove unneeded
4113 `concat'. Add intermediate values to `junk-hist' instead of
4114 `minibuffer-history'. Test the length of `str'.
4115
4116 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
4117
4118 * allout.el (allout-resolve-xref): Fix typos in error strings.
4119 (allout-before-change-protect): Remove unneeded `concat'.
4120
4121 * array.el (array-mode, array-reconfigure-rows)
4122 (untabify-backward): Fix typos in docstrings.
4123 (array-reconfigure-rows): Use `insert-buffer-substring', not
4124 `insert-buffer'.
4125
4126 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
4127 * progmodes/ada-mode.el (ada-make-body):
4128 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
4129
4130 * dired.el (dired-log):
4131 * tar-mode.el (tar-subfile-save-buffer):
4132 * play/zone.el (zone-pgm-stress-destress):
4133 Use `insert-buffer-substring', not `insert-buffer'.
4134
4135 2005-07-17 Simon Josefsson <jas@extundo.com>
4136
4137 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
4138
4139 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
4140
4141 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
4142 Add plain auth method.
4143 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
4144
4145 2005-07-17 Kim F. Storm <storm@cua.dk>
4146
4147 * ido.el (dired-other-window): Add ido property.
4148
4149 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
4150
4151 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
4152 Fix typo in docstring.
4153 (byte-compile-interactive-only-functions): Add `insert-buffer' and
4154 `insert-file-literally'.
4155
4156 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
4157 info and delete redundant message. Doc fix.
4158 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
4159 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
4160
4161 2005-07-16 Richard M. Stallman <rms@gnu.org>
4162
4163 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
4164 (byte-compile-and): Use byte-compile-and-recursion.
4165 (byte-compile-or-recursion): New function.
4166 (byte-compile-or): Use that.
4167 (byte-compile-if): Guard the else-clause too.
4168 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
4169
4170 * isearch.el (isearch-mode-end-hook-quit): New variable.
4171 (isearch-done): Bind it.
4172 (isearch-mode-end-hook): Doc fix.
4173
4174 * allout.el (allout-isearch-did-quit): Variable deleted.
4175 (allout-real-isearch-abort): Function name no longer used.
4176 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
4177 (allout-isearch-rectification): isearch-mode always exists.
4178 Don't set allout-isearch-did-quit.
4179 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
4180 allout-isearch-did-quit.
4181 (allout-enwrap-isearch): Just add the hook.
4182 (allout-isearch-abort): Function deleted.
4183 (allout-pre-command-business): Avoid warning.
4184
4185 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
4186 Correctly avoid warnings.
4187 (pascal-outline): Likewise.
4188
4189 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
4190
4191 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
4192
4193 * play/tetris.el (tetris-mode): Avoid warning.
4194
4195 * play/snake.el (snake-mode): Avoid warning.
4196
4197 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
4198 (gamegrid-set-display-table): Avoid warning.
4199 (gamegrid-set-timer): Likewise.
4200 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
4201 (gamegrid-add-score-with-update-game-score-1): Take FILE
4202 as argument.
4203 (gamegrid-add-score-with-update-game-score): Pass that argument.
4204 Rename have-shared-game-dir to gamegrid-shared-game-dir.
4205
4206 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
4207
4208 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
4209 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
4210
4211 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
4212 and insert-file.
4213
4214 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
4215 (sc-ask): Avoid warnings.
4216
4217 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
4218 (eshell-hist-initialize): Use that var the natural way.
4219
4220 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
4221
4222 * emacs-lisp/re-builder.el (reb-cook-regexp):
4223 Avoid warning calling lre-compile-string.
4224 (reb-color-display-p): Avoid warning.
4225
4226 * calculator.el (calculator-last-input): Guard uses
4227 of event-key and key-press-event-p.
4228 (event-key, key-press-event-p): Delete definitions.
4229
4230 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
4231 (find-gc-source-directory, find-gc-subrs-callers)
4232 (find-gc-noreturn-list, find-gc-source-files)
4233 (find-gc-subrs-called): Vars renamed and defvar'd.
4234
4235 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
4236 (checkdoc-overlay-put, checkdoc-delete-overlay)
4237 (checkdoc-overlay-start, checkdoc-overlay-end)
4238 (checkdoc-mode-line-update, checkdoc-char=):
4239 Define such that compiler knows they are defined.
4240 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
4241 (checkdoc-read-event): Delete. Use read-event directly.
4242
4243 * whitespace.el (whitespace-make-overlay)
4244 (whitespace-overlay-put, whitespace-delete-overlay)
4245 (whitespace-overlay-start, whitespace-overlay-end):
4246 Define such that compiler knows they are defined.
4247 (whitespace): Move conditional inside.
4248
4249 * tempo.el (tempo-insert-template): Suppress warning.
4250
4251 * ediff-diff.el (longlines-mode): Add defvar.
4252
4253 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
4254
4255 * server.el: Bind "C-x #" in a way that works even if C-x is
4256 redefined to a command key, not a prefix key.
4257
4258 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
4259
4260 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
4261 cl-make-type-test till execution time.
4262
4263 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
4264
4265 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
4266 arg ARG and use it.
4267
4268 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
4269
4270 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
4271
4272 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
4273
4274 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
4275 a defcustom with two :set or :type keywords.
4276
4277 2005-07-15 Richard M. Stallman <rms@gnu.org>
4278
4279 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4280 Don't give ^M comment-end syntax.
4281
4282 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
4283
4284 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
4285 Don't consider gdbmi (gdb-mi.el has its own update functions).
4286 (gdb-var-delete): Make it work for gdbmi as well.
4287 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
4288
4289 * progmodes/gud.el (etags, sdb): Only require etags when needed.
4290 (gud-speedbar-menu-items): Correct logic for enabling items.
4291
4292 2005-07-15 Kim F. Storm <storm@cua.dk>
4293
4294 * ido.el: Fix commentary.
4295 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
4296 Use with-no-warnings around ffap-guesser.
4297 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
4298 Let bind minibuffer-completing-file-name to t.
4299
4300 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
4301
4302 * startup.el (site-run-file, keyboard-type): Doc fixes.
4303 (command-line): Check for "--basic-display" argument; also for
4304 "--quick", not "--bare-bones" (which was renamed).
4305 (fancy-splash-text): Add missing item "Getting New Versions".
4306 (normal-splash-screen): Fix typos and improve consistency with
4307 `fancy-splash-text'. Update copyright year.
4308
4309 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
4310 valid binding for `help-char'.
4311
4312 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
4313
4314 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
4315
4316 * term.el (term-mode): Disable cua-mode for term buffers.
4317
4318 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
4319
4320 * add-log.el (add-log-mailing-address, change-log-merge):
4321 Doc fixes.
4322 (change-log-get-method-definition): Fix typo in docstring.
4323
4324 2005-07-14 Kim F. Storm <storm@cua.dk>
4325
4326 * emulation/cua-base.el:
4327 (cua--pre-command-handler-1, cua--pre-command-handler)
4328 (cua--post-command-handler-1, cua--post-command-handler):
4329 Split in two. Check (buffer local) value of cua-mode.
4330 (cua-selection-mode): New command.
4331
4332 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
4333
4334 * custom.el (custom-initialize-safe-set)
4335 (custom-initialize-safe-default): Doc fixes.
4336
4337 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
4338 and simplify :init-value again.
4339
4340 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
4341 and simplify :init-value again. Delete autoload.
4342
4343 * startup.el (command-line): Use `custom-reevaluate-setting' again
4344 for tooltip-mode.
4345
4346 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
4347 a defcustom with two :initialize keywords.
4348
4349 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
4350
4351 * allout.el (my-mark-marker, allout-isearch-prior-pos)
4352 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
4353 (allout-post-command-business, allout-flag-region)
4354 (isearch-reenable-font-lock, allout-yank)
4355 (allout-insert-latex-header, allout-insert-latex-trailer)
4356 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
4357 (allout-latex-verb-quote): Fix typos in docstrings.
4358 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
4359 (allout-unprotected, allout-prefix-data):
4360 Improve argument/docstring consistency.
4361 (allout-chart-subtree): Fix argument spec.
4362 (allout-open-topic): Rename `use_sib_bullet' argument to
4363 `use-sib-bullet'. Doc fix.
4364
4365 * whitespace.el (whitespace-check-buffer-leading)
4366 (whitespace-check-buffer-trailing)
4367 (whitespace-check-buffer-indent)
4368 (whitespace-check-buffer-spacetab)
4369 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
4370 (whitespace-check-leading-whitespace)
4371 (whitespace-check-trailing-whitespace)
4372 (whitespace-check-spacetab-whitespace)
4373 (whitespace-check-indent-whitespace)
4374 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
4375 (whitespace-modes): Fix typos in docstrings.
4376 (defgroup, defcustom): Doc fixes.
4377
4378 * winner.el (winner-mode, winner-boring-buffers)
4379 (winner-pending-undo-ring): Doc fixes.
4380 (winner-ring): Remove unneeded `progn'.
4381 (winner-equal): `defsubst' it.
4382 (winner-redo): Fix message.
4383
4384 2005-07-13 Kim F. Storm <storm@cua.dk>
4385
4386 * simple.el (line-move-1): Always use vertical-motion to
4387 do the last (or only) line move to ensure some movement.
4388 Undo 2005-06-23 change--don't check for overlays.
4389
4390 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4391
4392 * term/mac-win.el (ccl-encode-mac-roman-font)
4393 (ccl-encode-mac-centraleurroman-font)
4394 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
4395 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
4396 Change charset-id boundary of dimension to ?\xef.
4397 (mac-char-fontspec-list): New constant.
4398 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
4399 argument. Nil uses itself as family in font-spec. Previous
4400 behavior for nil is now provided by non-nil non-string argument.
4401 All callers changed. Add font-specs for Mac fonts to
4402 "fontset-default" unless iso8859-1 fonts are installed.
4403
4404 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
4405
4406 * progmodes/sh-script.el (sh-get-indent-info): Only indent
4407 a continuation line if the \ is preceded by SPC or TAB.
4408 (sh-get-indent-info): Simplify.
4409 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
4410 Use with-current-buffer.
4411
4412 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
4413 when the matched text is empty.
4414
4415 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
4416
4417 * startup.el (command-line): Revert to previous handling of
4418 tooltip-mode. Explain in comment why the complexity is needed.
4419
4420 * tooltip.el (tooltip-mode): Revert to previous implementation of
4421 its defcustom.
4422
4423 * frame.el (blink-cursor-mode): Revert to previous implementation
4424 of its defcustom. Update comment.
4425
4426 2005-07-12 Lars Hansen <larsh@soem.dk>
4427
4428 * desktop.el: Update e-mail address.
4429
4430 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4431
4432 * term/mac-win.el (mac-services-mail-selection)
4433 (mac-services-mail-to): New functions.
4434 (mac-application-menu-map): Bind them.
4435
4436 2005-07-12 wulei <milton@wulei.net> (tiny change)
4437
4438 * progmodes/gdb-ui.el: Add note about buffering with Windows.
4439
4440 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
4441
4442 * custom.el (custom-reevaluate-setting): Doc fix.
4443
4444 2005-07-11 Jay Belanger <belanger@truman.edu>
4445
4446 * calc/calc.el (calc-embedded-announce-formula-alist)
4447 (calc-embedded-open-close-plain-alist)
4448 (calc-embedded-open-close-mode-alist): Add checks for additional
4449 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
4450
4451 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
4452
4453 * custom.el (custom-enable-theme): Don't add theme to
4454 `custom-enabled-themes' with `push' because there is no
4455 setf-method for `delq'.
4456
4457 2005-07-11 Richard M. Stallman <rms@gnu.org>
4458
4459 * custom.el (custom-declare-variable): Doc fix.
4460
4461 * dired-aux.el (dired-compare-directories): Remove "." and ".."
4462 from the alists.
4463
4464 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
4465 Do nothing if edebug-active.
4466
4467 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
4468 (edebug-display): Do it here instead.
4469
4470 2005-07-10 Richard M. Stallman <rms@gnu.org>
4471
4472 * cus-face.el (custom-theme-set-faces): Make it work.
4473 (custom-reset-faces): Doc fix.
4474 (custom-theme-reset-internal-face, custom-theme-face-value):
4475 Functions deleted.
4476
4477 * custom.el (custom-push-theme): Maintain list of the settings
4478 of a given theme in its theme-settings property.
4479 Maintain position of old settings in the theme-value
4480 or theme-face property.
4481 (custom-enabled-themes): New variable.
4482 (custom-theme-enabled-p): New function.
4483 (provide-theme): Update custom-enabled-themes.
4484 Disable and reenable the `user' theme.
4485 (require-theme): Doc fix.
4486 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
4487 (custom-theme-value, custom-theme-variable-value): Likewise.
4488 (custom-theme-reset-internal): Likewise.
4489 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
4490 (custom-enable-theme, custom-disable-theme): New functions.
4491 (custom-variable-theme-value, custom-face-theme-value): Likewise.
4492 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
4493 (custom-theme-reset-variables): Simplify.
4494 (deftheme, custom-declare-theme, custom-make-theme-feature):
4495 Definitions moved.
4496
4497 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
4498
4499 * longlines.el (longlines-show-region)
4500 (longlines-unshow-hard-newlines): Recognize hard newlines by
4501 non-nil hard property, instead of t.
4502
4503 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
4504
4505 * viper-cmd.el (viper--key-maps): New variable.
4506 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
4507 emulation-mode-map-alists.
4508 (viper-envelop-ESC-key): Use viper-subseq.
4509 (viper-search-forward/backward/next): Disable debug-on-error.
4510
4511 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
4512 (viper-ESC-key): New defcustoms.
4513
4514 * viper-macs.el (ex-map-read-args): Use viper-subseq.
4515
4516 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
4517 (viper-subseq): Copy of subseq from cl.el.
4518
4519 * viper.el (viper-go-away, viper-set-hooks): Use
4520 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
4521
4522 * viper-mous.el (viper-current-frame-saved): Use defvar.
4523
4524 * viper-init.el: Get rid of -face in face names.
4525
4526 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
4527 Make it work with longlines mode
4528
4529 * ediff-mult.el (ediff-meta-mode-hook): New variable.
4530
4531 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
4532
4533 * ediff-init.el: Get rid of -face in face names.
4534
4535 2005-07-10 Richard M. Stallman <rms@gnu.org>
4536
4537 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
4538 and with-timeout-unsuspend.
4539
4540 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
4541 and with-timeout-unsuspend.
4542
4543 * emacs-lisp/timer.el (with-timeout-timers): New variable.
4544 (with-timeout): Bind that variable to record timers.
4545 (with-timeout-suspend, with-timeout-unsuspend): New functions.
4546
4547 * emacs-lisp/debug.el (debug-help-follow): New function.
4548 (debugger-mode-map): Use that instead of help-follow.
4549 (debugger-setup-buffer): Use eval-buffer-list
4550 to handle eval-buffer frames.
4551
4552 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
4553
4554 * timezone.el (timezone-parse-date): Change first regexp
4555 so it will not mistakenly match dates with no time zone.
4556
4557 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
4558
4559 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
4560
4561 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
4562
4563 * custom.el (custom-initialize-safe-set)
4564 (custom-initialize-safe-default): New functions.
4565
4566 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
4567 and simplify :init-value.
4568
4569 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
4570 and simplify :init-value. Delete obsolete comment.
4571
4572 * startup.el (command-line): Use `custom-reevaluate-setting' to
4573 handle `tooltip-mode'. Delete obsolete comment.
4574
4575 * files.el (set-visited-file-name): Avoid calling
4576 `file-name-nondirectory' with a nil argument.
4577
4578 2005-07-09 Richard M. Stallman <rms@gnu.org>
4579
4580 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
4581 was called with nil for the buffer, handle the read position right.
4582 Handle read position for eval-region, too.
4583
4584 2005-07-09 Juri Linkov <juri@jurta.org>
4585
4586 * fringe.el (fringe-mode): Add period in docstring.
4587 (fringe-query-style): Build prompt depending on `all-frames' arg.
4588
4589 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
4590 to not create links to unrelated functions in the Help buffer.
4591
4592 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
4593 Doc fix.
4594
4595 * simple.el (next-error-hook): New variable.
4596 (next-error): Use it. Doc fix.
4597
4598 * textmodes/ispell.el (ispell-command-loop): Add current
4599 dictionary name and program name to mode-line-format.
4600 (ispell-region, ispell-process-line): Add current dictionary name
4601 and program name to messages.
4602
4603 2005-07-08 Jay Belanger <belanger@truman.edu>
4604
4605 * calc/calc.el (calc-embedded-announce-formula-alist)
4606 (calc-embedded-open-close-formula-alist)
4607 (calc-embedded-open-close-word-alist)
4608 (calc-embedded-open-close-plain-alist)
4609 (calc-embedded-open-close-new-formula-alist)
4610 (calc-embedded-open-close-mode-alist)
4611 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
4612 (calc-embedded-mode-hook): New variables.
4613
4614 * calc/calc-embed.el (calc-embedded-firsttime)
4615 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
4616 New variables.
4617 (calc-do-embedded): Use calc-embedded-firsttime,
4618 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
4619 determine whether or not to run hooks.
4620 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
4621 calc-embedded-firsttime-formula appropriately.
4622 Set calc-embedded delimiter variables according to mode.
4623
4624 2005-07-08 Richard M. Stallman <rms@gnu.org>
4625
4626 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
4627 Check for "emacs", etc., as entire symbol, not just as word.
4628 (checkdoc-file-comments-engine): Use regexp-quote on FN.
4629
4630 * files.el (set-visited-file-name): Report the error
4631 for "empty filename" earlier.
4632 (kill-some-buffers): Ignore buffers already dead.
4633
4634 * fringe.el (fringe-mode): Doc fix.
4635
4636 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
4637 Check for (featurep 'xemacs) and turn off warnings in what it guards.
4638 Use unwind-protect to ensure byte-compile-unresolved-functions
4639 is updated.
4640
4641 * whitespace.el (whitespace-buffer-leading-cleanup):
4642 Simplify w/ skip-chars-forward.
4643 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
4644
4645 * mail/rmail.el (rmail-only-expunge): Fix paren error.
4646 Unconditionally try to leave point at the same old place.
4647
4648 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
4649
4650 * comint.el (comint-postoutput-scroll-to-bottom)
4651 (comint-show-maximum-output): Take scroll-margin into consideration.
4652
4653 2005-07-08 Kim F. Storm <storm@cua.dk>
4654
4655 * ido.el (ido-use-filename-at-point): New choice `guess'.
4656 (ido-file-internal): Try ffap-guesser if selected.
4657
4658 * ido.el (ido-before-fallback-functions): New hook.
4659 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
4660 (ido-read-file-name): Run it.
4661
4662 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4663
4664 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
4665 strings rather than a list of symbols to the completion function.
4666
4667 2005-07-07 Jay Belanger <belanger@truman.edu>
4668
4669 * calc/calc-units.el (math-apply-units): Change the places in
4670 which units are simplified.
4671
4672 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
4673
4674 * cus-edit.el (customize-option, customize-option-other-window):
4675 Make them handle aliases.
4676
4677 * custom.el (custom-variable-p): Make it recursively follow
4678 aliases. Mention that in the docstring.
4679
4680 2005-07-07 Richard M. Stallman <rms@gnu.org>
4681
4682 * cus-start.el (exec-path): Use `directory' instead of `file'.
4683 Fix tag for nil.
4684
4685 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
4686
4687 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
4688 when called non-interactively. Doc fix.
4689
4690 2005-07-07 Lute Kamstra <lute@gnu.org>
4691
4692 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
4693 new address as well.
4694
4695 2005-07-07 Kenichi Handa <handa@m17n.org>
4696
4697 * international/mule.el (make-coding-system):
4698 Describe `ascii-incompatible' property in the docstring.
4699 (set-file-name-coding-system): Signal an error if coding-system is
4700 ascii-incompatible.
4701 (set-keyboard-coding-system): Likewise.
4702
4703 * international/mule-cmds.el (set-default-coding-systems):
4704 Don't set default-file-name-coding-system and
4705 default-keyboard-coding-system if coding-system is ASCII-incompatible.
4706
4707 * international/utf-16.el: Declare that all UTF-16-based coding
4708 systems are ASCII-incompatible.
4709
4710 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
4711
4712 * progmodes/gud.el: Require font-lock for displaying errors.
4713 Used by gdb-ui.el.
4714
4715 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
4716
4717 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
4718 values for the pattern lists which are `read'able but not
4719 `append'able (like symbols).
4720
4721 2005-07-06 Richard M. Stallman <rms@gnu.org>
4722
4723 * progmodes/flymake.el (flymake-float-time): Instead of
4724 with-no-warnings, test for xemacs.
4725 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
4726 to avoid warning.
4727
4728 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
4729
4730 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
4731
4732 2005-07-05 Lute Kamstra <lute@gnu.org>
4733
4734 * battery.el: Add support for Darwin (with much debugging help
4735 from Samuel Lauber <sam124@operamail.com>).
4736 (battery-status-function, battery-echo-area-format)
4737 (battery-mode-line-format): Add support for pmset on Darwin.
4738 (battery-load-low, battery-load-critical): New user options.
4739 (battery-pmset): New function.
4740
4741 2005-07-05 Lute Kamstra <lute@gnu.org>
4742
4743 Update FSF's address in GPL notices.
4744
4745 * textmodes/page-ext.el: Update FSF's address.
4746
4747 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4748
4749 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
4750 filling from using prefix when filling a single-line docstring.
4751
4752 * progmodes/flymake.el: Remove useless eval-when-compile.
4753
4754 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
4755
4756 2005-07-04 Richard M. Stallman <rms@gnu.org>
4757
4758 * textmodes/org.el (org-file-apps-defaults-gnu):
4759 Rename from org-file-apps-defaults-linux.
4760 (org-default-apps): Don't test system-type for `linux'.
4761 (org-file-apps): Doc fix.
4762
4763 2005-07-04 David Ponce <david@dponce.com>
4764
4765 * tree-widget.el: Improve header Commentary section.
4766 (tree-widget) [defgroup]
4767 (tree-widget-image-enable, tree-widget-themes-directory)
4768 (tree-widget-theme, tree-widget-image-properties-emacs)
4769 (tree-widget-image-properties-xemacs, tree-widget-create-image)
4770 (tree-widget-image-formats, tree-widget-control)
4771 (tree-widget-empty-control, tree-widget-leaf-control
4772 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
4773 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
4774 (tree-widget-keep, tree-widget-after-toggle-functions)
4775 (tree-widget-open-node, tree-widget-close-node): Doc fix.
4776 (tree-widget-open-control, tree-widget-close-control): Fix doc and
4777 :help-echo message.
4778 (tree-widget-set-theme): Doc fix. Use `string-equal'.
4779 (tree-widget-image-properties): Doc fix. Clearer implementation.
4780 (tree-widget--cursors): New constant.
4781 (tree-widget-lookup-image): New function split from
4782 `tree-widget-find-image'. Clearer implementation.
4783 (tree-widget-find-image): Use it.
4784 (tree-widget-button-keymap): Use `set-keymap-parent'.
4785 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
4786 Define the sub-widgets here.
4787 (tree-widget-node): Check that :node is not a tree-widget.
4788 (tree-widget-get-super, tree-widget-open-control)
4789 (tree-widget-close-control, tree-widget-empty-control)
4790 (tree-widget-leaf-control, tree-widget-guide)
4791 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
4792 (tree-widget-no-handle, tree-widget-value-delete)
4793 (tree-widget-map): Remove.
4794 (tree-widget-children-value-save): Doc fix. Simplified.
4795 (tree-widget-value-create): Update according to previous changes.
4796
4797 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
4798
4799 * textmodes/org.el: Leading space replaced by TABS.
4800 (org-recalc-marks, org-table-rotate-recalc-marks)
4801 (org-table-get-specials): Treat "^" and "_" marks.
4802 (org-table-justify-field-maybe): Optional argument NEW.
4803 (org-table-eval-formula): Parsing of the format simplified.
4804 New modes C,I. Honor the %= parameter in the current table.
4805 Avoid unnecessary re-align by using the NEW argument to
4806 `org-table-justify-field-maybe'.
4807 (org-calc-default-modes): Default for date-format mimicks org-mode.
4808 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
4809
4810 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
4811
4812 * cus-face.el (custom-theme-set-faces): Make it handle face
4813 aliases whose alias declarations are pre- or autoloaded.
4814
4815 2005-07-04 Juri Linkov <juri@jurta.org>
4816
4817 * faces.el (read-face-name): Put the code for getting a face name
4818 from the buffer before adding the faces from the `face' property.
4819 Use `completing-read-multiple' instead of `completing-read'.
4820 Require `crm'. Add default value and post-process the returned
4821 list of faces.
4822
4823 * emacs-lisp/crm.el (crm-find-current-element)
4824 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
4825
4826 * emacs-lisp/lisp-mode.el (eval-defun-1):
4827 * emacs-lisp/edebug.el (edebug-eval-defun):
4828 Remove unnecessary quotes.
4829
4830 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
4831
4832 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
4833 (prolog-indent-level): Fix typo in docstring.
4834
4835 * info.el (Info-history, Info-history-forward)
4836 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
4837
4838 * add-log.el (add-change-log-entry):
4839 * comint.el (comint-dynamic-list-input-ring)
4840 (comint-dynamic-list-completions):
4841 * dabbrev.el (dabbrev-expand):
4842 * delim-col.el (delimit-columns-rectangle-line):
4843 * diff-mode.el (diff-context->unified, diff-reverse-direction)
4844 (diff-unified->context):
4845 * ediff-init.el (ediff-abbrev-jobname):
4846 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
4847 (ediff-replace-session-activity-marker-in-meta-buffer):
4848 * info.el (Info-summary):
4849 * lpr.el (printify-region):
4850 * printing.el (pr-create-interface):
4851 * ps-print.el (ps-print-quote):
4852 * ses.el (ses-column-widths, ses-print-cell)
4853 (ses-adjust-print-width, ses-center):
4854 * shell.el (shell-file-name-quote-list):
4855 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
4856 (strokes-fill-current-buffer-with-whitespace)
4857 (strokes-xpm-for-stroke, strokes-list-strokes)
4858 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
4859 * term.el (term-dynamic-list-input-ring)
4860 (term-dynamic-list-completions):
4861 * calc/calc.el (math-format-stack-value):
4862 * emacs-lisp/edebug.el (edebug-display-freq-count):
4863 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
4864 (delphi-new-comment-line):
4865 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
4866 * progmodes/executable.el (executable-set-magic):
4867 * progmodes/python.el (inferior-python-mode):
4868 * progmodes/scheme.el (scheme-mode-syntax-table):
4869 * progmodes/sh-script.el (sh-maybe-here-document):
4870 * progmodes/sql.el (sql-copy-column):
4871 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
4872 * textmodes/bibtex.el (bibtex-mode):
4873 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
4874 (sgml-auto-attributes):
4875 * textmodes/table.el (table-insert, table-shorten-cell)
4876 (table--generate-source-scan-lines, table-delete-row)
4877 (*table--cell-delete-char, table--spacify-frame)
4878 (table--horizontally-shift-above-and-below)
4879 (table--cell-insert-char, table--cell-blank-str)
4880 (table--fill-region-strictly):
4881 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
4882 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
4883
4884 * add-log.el (change-log):
4885 * apropos.el (apropos):
4886 * comint.el (comint-completion, comint-source):
4887 * dabbrev.el (dabbrev):
4888 * delim-col.el (columns):
4889 * diff-mode.el (diff-mode):
4890 * ediff.el (ediff):
4891 * ediff-diff.el (ediff-diff):
4892 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
4893 * ediff-mult.el (ediff-mult):
4894 * ediff-ptch.el (ediff-ptch):
4895 * ediff-wind.el (ediff-window):
4896 * facemenu.el (facemenu):
4897 * indent.el (indent):
4898 * info.el (info):
4899 * jka-cmpr-hook.el (compression, jka-compr):
4900 * lpr.el (lpr):
4901 * outline.el (outlines):
4902 * pcmpl-cvs.el (pcmpl-cvs):
4903 * pcmpl-rpm.el (pcmpl-rpm):
4904 * printing.el (printing):
4905 * ps-print.el (postscript, ps-print, ps-print-horizontal)
4906 (ps-print-vertical, ps-print-headers, ps-print-font)
4907 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
4908 (ps-print-background, ps-print-printer, ps-print-page)
4909 (ps-print-miscellany):
4910 * ses.el (ses):
4911 * shell.el (shell, shell-directories, shell-faces):
4912 * startup.el (initialization):
4913 * strokes.el (strokes):
4914 * term.el (term):
4915 * uniquify.el (uniquify):
4916 * w32-vars.el (w32):
4917 * calc/calc.el (calc):
4918 * emacs-lisp/bytecomp.el (bytecomp):
4919 * emacs-lisp/cl-indent.el (lisp-indent):
4920 * emacs-lisp/edebug.el (edebug):
4921 * emacs-lisp/elp.el (elp):
4922 * emacs-lisp/testcover.el (testcover):
4923 * emacs-lisp/trace.el (trace):
4924 * emulation/viper-ex.el (viper-ex):
4925 * emulation/viper-mous.el (viper-mouse):
4926 * mail/mailalias.el (mailalias):
4927 * mail/supercite.el (supercite, supercite-frames)
4928 (supercite-attr, supercite-cite, supercite-hooks):
4929 * net/rcompile.el (remote-compile):
4930 * net/rlogin.el (rlogin):
4931 * obsolete/ooutline.el (outlines):
4932 * progmodes/delphi.el (delphi):
4933 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
4934 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
4935 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
4936 (ebnf-optimization):
4937 * progmodes/etags.el (etags):
4938 * progmodes/executable.el (executable):
4939 * progmodes/idlwave.el (idlwave):
4940 * progmodes/pascal.el (pascal):
4941 * progmodes/prolog.el (prolog):
4942 * progmodes/python.el (python):
4943 * progmodes/scheme.el (scheme):
4944 * progmodes/sh-script.el (sh, sh-script):
4945 * progmodes/sql.el (SQL):
4946 * progmodes/tcl.el (tcl):
4947 * textmodes/bibtex.el (bibtex, bibtex-autokey):
4948 * textmodes/enriched.el (enriched):
4949 * textmodes/makeinfo.el (makeinfo):
4950 * textmodes/sgml-mode.el (sgml):
4951 * textmodes/table.el (table-hooks):
4952 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
4953 * textmodes/texinfo.el (texinfo):
4954 * textmodes/two-column.el (two-column):
4955 Finish `defgroup' description with period.
4956
4957 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
4958 * eshell/esh-var.el (eshell-var):
4959 * progmodes/vhdl-mode.el (vhdl-testbench):
4960 * textmodes/org.el (org): Fix typos in docstrings.
4961
4962 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
4963 consistency.
4964
4965 * progmodes/flymake.el (flymake-find-file): Remove.
4966 (flymake-float-time): Use `with-no-warnings'.
4967 (flymake-check-start-time, flymake-check-was-interrupted)
4968 (flymake-err-info, flymake-is-running, flymake-last-change-time)
4969 (flymake-new-err-info): `defvar' at compile time.
4970
4971 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
4972
4973 * replace.el (occur-hook): Doc fix.
4974 (occur-1): Don't call `occur-hook' if there are no matches.
4975
4976 2005-07-03 Richard M. Stallman <rms@gnu.org>
4977
4978 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
4979 global-map, save the same map.
4980 (global-map): Don't alter it at top level.
4981 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
4982 Then alter it here instead.
4983 (tpu-edt-off): Set global-map to the saved one.
4984
4985 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
4986 All references simplified.
4987 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
4988 (zmacs-regions): Add defvar.
4989 (repeat-complex-command-map): Everything about that deleted.
4990
4991 * textmodes/artist.el (artist-key-is-drawing)
4992 (artist-key-endpoint1, artist-key-poly-point-list)
4993 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
4994 (artist-key-compl-table, artist-rb-save-data)
4995 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
4996 Don't put them in eval-when-compile.
4997 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
4998
4999 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
5000 Use with-no-warnings.
5001
5002 * net/browse-url.el (dos-windows-version): Add defvar.
5003
5004 * mail/supercite.el (filladapt-prefix-table): Add defvar.
5005
5006 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
5007 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
5008 (rmail-new-summary-line-count): Rename from new-summary-line-count.
5009 Add defvar.
5010 (rmail-summary-beginning-of-message): Use with-no-warnings.
5011 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
5012
5013 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
5014 Use with-no-warnings.
5015
5016 * emulation/vi.el (vi-mark-region): Use c-mark-function.
5017 (c-mark-function): Add point-moving-unit property.
5018 (vi-goto-line): Use with-no-warnings.
5019
5020 * emulation/edt.el (edt-last-copied-word): Add defvar.
5021 (zmacs-region-stays): Likewise.
5022 (edt-mark-section-wisely): Use c-mark-function for C.
5023 Use makr-defun for Fortran.
5024 (time-string): defvar deleted.
5025 (edt-display-the-time): Don't set time-string.
5026
5027 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
5028
5029 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
5030 Don't warn when name is not constant
5031 or for defining the group `emacs'.
5032
5033 * tooltip.el (gud-tooltip-mode): Add defvar.
5034
5035 * startup.el (default-frame-background-mode): Add defvar.
5036
5037 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
5038
5039 * info.el (tool-bar-map): Add defvar.
5040
5041 * dired.el (dnd-protocol-alist): Add defvar.
5042
5043 * dired-aux.el (dired-query): Display question with answer, when
5044 the user answers.
5045
5046 * custom.el (custom-add-option): Doc fix.
5047
5048 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
5049
5050 2005-07-03 Eli Zaretskii <eliz@gnu.org>
5051
5052 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
5053 bogus name from the last change.
5054
5055 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
5056
5057 * custom.el (custom-declare-variable): Fix typos in comment.
5058 (custom-known-themes): Doc fix.
5059 (custom-theme-directory): New defcustom.
5060 (require-theme): Make it check `custom-theme-directory'.
5061
5062 * cus-theme.el (custom-new-theme-mode): New function.
5063 (custom-theme-name, custom-theme-variables, custom-theme-faces)
5064 (custom-theme-description): Add compiler defvars.
5065 (customize-create-theme): Add doc to the "*New Custom Theme*"
5066 buffer. Use `custom-new-theme-mode'.
5067 (custom-theme-write): Put the created buffer in emacs-lisp-mode
5068 and save it to the `custom-theme-directory'. Make this the
5069 default directory of the buffer.
5070
5071 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
5072
5073 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
5074 Fix unbalanced parentheses.
5075
5076 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5077
5078 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
5079 into flymake-mode and delegate to flymake-mode.
5080
5081 * find-file.el (ff-which-function-are-we-in): Clean up.
5082
5083 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
5084
5085 * replace.el (occur-rename-buffer): Fix docstring.
5086
5087 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
5088 (edt-last-copied-word, edt-learn-macro-count)
5089 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
5090 (edt-rect-start-point, edt-user-global-map, rect-start-point)
5091 (time-string, zmacs-region-stays):
5092 * emulation/edt-mapper.el (edt-save-function-key-map)
5093 (EDT-key-name): `defvar' to silence the byte-compiler.
5094
5095 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
5096
5097 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
5098 font-lock-regexp-backslash. Doc fix.
5099 (font-lock-regexp-backslash-grouping-construct): Rename from
5100 font-lock-regexp-backslash-construct. Doc fix.
5101 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
5102 grouping constructs.
5103
5104 2005-07-02 Eli Zaretskii <eliz@gnu.org>
5105
5106 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
5107 updating all the prerequisites.
5108
5109 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
5110
5111 * textmodes/org.el (org-agenda-start-on-weekday)
5112 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
5113 (org-agenda-use-time-grid, org-archive-location)
5114 (org-allow-space-in-links, org-usenet-links-prefer-google)
5115 (org-enable-table-editor, org-export-default-language)
5116 (org-export-html-show-new-buffer, org-fill-paragraph)
5117 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
5118 (org-goto-quit, org-occur, org-eval-in-calendar)
5119 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
5120 (org-agenda-diary-entry, org-remember-help)
5121 (org-table-convert-region, org-at-table-p)
5122 (org-table-move-row-down, org-table-move-row-up)
5123 (org-table-copy-region, org-table-toggle-vline-visibility)
5124 (org-table-get-stored-formulas, org-table-get-specials)
5125 (org-recalc-commands, org-table-eval-formula)
5126 (org-table-formula-substitute-names, orgtbl-make-binding)
5127 (org-format-org-table-html, org-format-table-table-html)
5128 (org-format-table-table-html-using-table-generate-source)
5129 (org-customize): Fix typos in docstrings.
5130 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
5131 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
5132 (org-back-to-heading): Doc fixes.
5133 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
5134 (org-agenda-change-all-lines, org-get-header):
5135 Improve argument/docstring consistency.
5136 (orgtbl-error): Fix error message.
5137
5138 * progmodes/flymake.el (flymake-find-possible-master-files)
5139 (flymake-master-file-compare, flymake-get-line-err-count)
5140 (flymake-highlight-line, flymake-gui-warnings-enabled):
5141 Fix typos in docstrings.
5142 (flymake-parse-line, flymake-get-project-include-dirs-function)
5143 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
5144 Doc fixes.
5145 (flymake-get-project-include-dirs-function)
5146 (flymake-make-err-menu-data):
5147 Improve argument/docstring consistency.
5148
5149 2005-07-01 Lute Kamstra <lute@gnu.org>
5150
5151 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
5152 Catch errors with ignore-errors. Use temporary buffer.
5153 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
5154
5155 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
5156 background color faces.
5157 (facemenu-set-foreground, facemenu-set-background):
5158 Use facemenu-set-face-from-menu.
5159 (facemenu-set-face-from-menu): Treat face names that start with
5160 "fg:" or "bg:" as special.
5161 (facemenu-add-new-color): Don't create faces. Simplify.
5162
5163 2005-06-30 Richard M. Stallman <rms@gnu.org>
5164
5165 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
5166 (crm-find-current-element): Likewise.
5167
5168 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
5169
5170 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
5171
5172 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5173
5174 * arc-mode.el (archive-extract): Make it work as a mouse binding.
5175 (archive-mouse-extract): Make it an obsolete alias.
5176 (archive-mode-map): Don't use archive-mouse-extract any more.
5177 (archive-mode, archive-extract): write-contents-hooks ->
5178 write-contents-functions.
5179 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
5180 first arg.
5181 (archive-rename-entry): Update the call.
5182 (archive-zip-summarize): Remove unused var `method'.
5183 (archive-lzh-summarize): Remove unused var `creator'.
5184
5185 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
5186 dedicated frame upon exit.
5187
5188 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
5189 (archive-zip-extract, archive-zip-expunge)
5190 (archive-zip-update, archive-zip-update-case): Use executable-find.
5191 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
5192 Use restore-buffer-modified-p.
5193 (archive-extract, archive-add-new-member, archive-write-file-member):
5194 Use with-current-buffer.
5195 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
5196
5197 2005-06-30 Andreas Schwab <schwab@suse.de>
5198
5199 * progmodes/gud.el (gud-filter): Remove unneeded progn.
5200
5201 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
5202
5203 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
5204
5205 2005-06-30 Juri Linkov <juri@jurta.org>
5206
5207 * faces.el (vertical-border): Inherit from mode-line-inactive
5208 only on tty.
5209
5210 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
5211
5212 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
5213 example, -NLINES in the `occur' docstring).
5214
5215 * replace.el (occur-1): When no matches are found, do not set the
5216 `buffer-read-only' and modified flags for the occur buffer,
5217 because it is deleted.
5218
5219 * emulation/cua-base.el (cua-check-pending-input)
5220 (cua-repeat-replace-region, cua-mode, cua-debug)
5221 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
5222 Fix typos in docstrings.
5223
5224 * emulation/cua-gmrk.el (cua-toggle-global-mark)
5225 (cua-cut-region-to-global-mark)
5226 (cua--cut-rectangle-to-global-mark):
5227 Remove period from end of messages.
5228
5229 * emulation/cua-rect.el (cua-do-rectangle-padding):
5230 Remove period from end of messages.
5231 (cua--rectangle-seq-format): Fix typo in docstring.
5232 (cua-sequence-rectangle, cua-fill-char-rectangle):
5233 Improve argument/docstring consistency.
5234
5235 2005-06-29 Juri Linkov <juri@jurta.org>
5236
5237 * faces.el (default-frame-background-mode): New internal variable.
5238 (frame-set-background-mode): Use it.
5239
5240 * startup.el (normal-top-level): Set default-frame-background-mode
5241 instead of frame-background-mode. Before setting it, test for its
5242 nil value. Remove tests for frame-background-mode and frame
5243 parameter `reverse'. Add test for "unspecified-fg".
5244
5245 * term/xterm.el (xterm-rxvt-set-background-mode):
5246 * term/rxvt.el (rxvt-set-background-mode):
5247 Set default-frame-background-mode instead of frame-background-mode.
5248
5249 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
5250
5251 * simple.el (set-variable): Warn about obsolete user variables.
5252
5253 * imenu.el (imenu--completion-buffer):
5254 * mouse.el (mouse-buffer-menu-alist):
5255 * msb.el (msb-invisible-buffer-p):
5256 * calendar/diary-lib.el (diary-header-line-format):
5257 * emacs-lisp/pp.el (pp-buffer):
5258 * progmodes/cperl-mode.el (cperl-do-auto-fill):
5259 * textmodes/picture.el (picture-replace-match):
5260 Change space constants followed by a sexp to "?\s ".
5261
5262 * play/decipher.el (decipher-loop-with-breaks):
5263 * textmodes/texinfo.el (texinfo-insert-@item): Change space
5264 constants "protected" from end of line by a comment to "?\s".
5265
5266 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5267
5268 * font-lock.el (save-buffer-state): Use `declare'.
5269
5270 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
5271 reset the syntax-table to cperl-mode-syntax-table.
5272 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
5273 "foo_print_bar" is not matched as a reserved keyword.
5274
5275 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
5276
5277 * textmodes/org.el (orgtbl-setup): New function, for delayed
5278 setup for the orgtbl commands.
5279 (org-calc-default-modes): New option.
5280 (orgtbl-make-binding): Use `defun' to get better help display.
5281 (org-diary): Call `org-compile-prefix-format'.
5282 (org-table-formula-substitute-names): New function.
5283 (org-agenda-day-view, org-agenda-week-view): New commands.
5284 (org-agenda-toggle-week-view): Command removed.
5285 (org-tbl-menu): Split off from org-org-menu.
5286 (org-mode): Move removal of outline-mode menus to here.
5287 (org-table-formula-debug): New option.
5288 (org-table-insert-row): Keep first field if just "#" or "*".
5289 (org-mode): Paragraph regexps fixed.
5290 (org-table-recalculate-regexp): New constant.
5291 (org-table-justify-field-maybe): Avoid replace if not necessary.
5292 (org-copy-special, org-cut-special): Use `call-interactively'.
5293 (org-table-copy-region): Take region from `interactive' call.
5294 (org-trim): Return string even if no match.
5295 (org-formula): New face.
5296 (org-set-font-lock-defaults): No longer highlight "FIXME".
5297 But highlight formula-related fields in table.
5298 (org-table-p): Use regexp, not fontification.
5299 (org-table-align): Handle white space at end of line.
5300 (org-table-formula-evaluate-inline): New option.
5301 (org-mode): Auto-wrapping in comment lines turned off.
5302 (org-table-copy-down): Evaluate only in copied field, not in
5303 destination.
5304 (org-table-current-formula): Variable removed.
5305 (org-table-store-formulas, org-table-get-stored-formulas)
5306 (org-table-modify-formulas, org-table-replace-in-formulas)
5307 (org-table-maybe-eval-formula): New functions.
5308 (org-table-get-formula): Modify to use stored formulas.
5309 (org-table-insert-column, org-table-delete-column)
5310 (org-table-move-column): Call `org-table-modify-formulas'.
5311 (org-complete): Add completion for keyword formulas.
5312 (orgtbl-mode): Pull orgtbl-mode-map to start of
5313 minor-mode-map-alist.
5314
5315 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5316
5317 * progmodes/python.el (python-check): Require `compile' before
5318 modifying its variables.
5319
5320 * newcomment.el (comment-indent-default): Don't get fooled by an early
5321 end of buffer.
5322
5323 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5324
5325 * ps-print.el (ps-print-version): Fix version number.
5326
5327 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
5328
5329 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
5330
5331 2005-06-28 Richard M. Stallman <rms@gnu.org>
5332
5333 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
5334 (flyspell-local-mouse-map): Declaration deleted.
5335 (flyspell-mouse-map): Bind only mouse-2.
5336 (flyspell-mode-map): Don't test flyspell-use-local-map.
5337 (flyspell-overlay-keymap-property-name): Var deleted.
5338 (flyspell-mode-on): Don't make local bindings for
5339 flyspell-mouse-map and flyspell-mode-map.
5340 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
5341
5342 * textmodes/ispell.el (ispell-word): Do not ignore short words.
5343
5344 * progmodes/compile.el (compilation-next-error-function):
5345 Don't switch buffers; operate on the current buffer.
5346
5347 * progmodes/compile.el (compilation-error-file-name)
5348 (compilation-warning-file-name, compilation-info-file-name)
5349 (compilation-line-number, compilation-column-number): New faces.
5350 (compilation-error-face, compilation-warning-face)
5351 (compilation-info-face, compilation-line-face)
5352 (compilation-column-face): Use them.
5353
5354 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
5355
5356 * comint.el (comint-password-prompt-regexp): Accept ", try again".
5357
5358 * bindings.el (global-map): Bind insertchar and its variants.
5359
5360 2005-06-27 Richard M. Stallman <rms@gnu.org>
5361
5362 * textmodes/artist.el (artist-text-overwrite)
5363 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
5364
5365 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5366
5367 * ps-print.el: It was not working the page selection for printing.
5368 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
5369 (ps-print-version): New version 6.6.7.
5370 (ps-end-sheet): New fun.
5371 (ps-header-sheet, ps-end-job): Call it.
5372
5373 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
5374
5375 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
5376
5377 2005-06-27 Lute Kamstra <lute@gnu.org>
5378
5379 * facemenu.el (facemenu-unlisted-faces): Add foreground and
5380 background color faces.
5381 (facemenu-get-face): Delete function.
5382 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
5383 (facemenu-add-new-color): Make second argument mandatory.
5384 Create the appropriate face and return it. Simplify.
5385 (facemenu-set-foreground, facemenu-set-background): Don't check if
5386 color is defined. Use return value of facemenu-add-new-color.
5387
5388 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
5389
5390 * progmodes/gud.el (gud-filter): Add missing argument to
5391 with-selected-window.
5392
5393 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5394
5395 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
5396 a :require to the defcustom.
5397
5398 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
5399 defcustoms corresponding to minor modes.
5400
5401 2005-06-26 David Ponce <david@dponce.com>
5402
5403 * recentf.el: Require tree-widget instead of wid-edit.
5404 (recentf-filename-handler): Fix widget :type.
5405 (recentf-cancel-dialog, recentf-open-more-files)
5406 (recentf-open-files-action): Doc fix.
5407 (recentf-dialog-goto-first): New function.
5408 (recentf-dialog-mode-map): Set parent keymap first.
5409 (recentf-dialog-mode): Define with define-derived-mode.
5410 Don't display continuation lines in dialogs.
5411 (recentf-edit-list): Rename from recentf-edit-selected-items.
5412 (recentf-edit-list-select): Rename from recentf-edit-list-action.
5413 Simplify.
5414 (recentf-edit-list-validate): New function.
5415 (recentf-edit-list): Update accordingly.
5416 (recentf-open-files-item-shift): Remove.
5417 (recentf-open-files-item): Convert menu elements into tree and
5418 link widgets. Don't create the widgets.
5419 (recentf-open-files): Update accordingly.
5420 (recentf-save-list): Untabify.
5421
5422 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
5423
5424 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
5425 (keep-lines): Add INTERACTIVE arg. Never delete lines only
5426 partially contained in the active region. Do not take active
5427 region into account when called from Lisp, unless INTERACTIVE arg
5428 is non-nil. Use `forward-line' instead of `beginning-of-line' to
5429 avoid trouble with fields. Make marker point nowhere when no
5430 longer used. Always return nil. Doc fix.
5431 (flush-lines): Add INTERACTIVE arg. Do not take active region
5432 into account when called from Lisp, unless INTERACTIVE arg is
5433 non-nil. Use `forward-line' instead of `beginning-of-line' to
5434 avoid trouble with fields. Make marker point nowhere when no
5435 longer used. Always return nil. Doc fix.
5436 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
5437 interchangeable. Do not take active region into account when
5438 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
5439 message in echo area when called from Lisp, unless INTERACTIVE arg
5440 is non-nil. Avoid saying "1 occurrences". Do not use markers.
5441 Return the number of matches. Doc fix.
5442 (occur): Doc fix.
5443 (perform-replace): Make comment follow double space convention for
5444 the sake of `outline-minor-mode'.
5445
5446 * faces.el (facep): Doc fix.
5447
5448 2005-06-25 Richard M. Stallman <rms@gnu.org>
5449
5450 * facemenu.el (facemenu-enable-faces-p): New function.
5451 (facemenu-background-menu, facemenu-foreground-menu)
5452 (facemenu-face-menu): Add menu-enable property.
5453
5454 * jka-compr.el (jka-compr-insert-file-contents):
5455 Special handling if cannot find the uncompression program.
5456
5457 * cus-face.el (custom-face-attributes): Add autoload.
5458
5459 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5460 Bind comment-indent-function locally.
5461
5462 * window.el (save-selected-window): Use save-current-buffer.
5463
5464 * subr.el (with-selected-window): Use save-current-buffer.
5465
5466 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
5467 and with-current-buffer.
5468
5469 2005-06-24 Richard M. Stallman <rms@gnu.org>
5470
5471 * simple.el (line-move-1): Fix previous change.
5472
5473 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
5474
5475 * replace.el (occur-1): Set `buffer-read-only' and the
5476 buffer-modified flag before running `occur-hook' to protect
5477 against unintentional buffer switches that can lead to data loss.
5478
5479 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
5480
5481 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
5482 (gud-gdb-marker-filter): Use font-lock-warning-face for any
5483 initial error.
5484
5485 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
5486 after fresh input.
5487 (gdb-var-create-handler): Put name of expression in quotes.
5488
5489 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
5490
5491 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
5492 elements of RING in order, and without bogus nil elements.
5493
5494 2005-06-23 Richard M. Stallman <rms@gnu.org>
5495
5496 * simple.el (set-variable): Args renamed; doc fix.
5497 (line-move-1): When there are overlays around, use vertical-motion.
5498
5499 * faces.el (escape-glyph): Use brown against light background.
5500 (nobreak-space): Rename from no-break-space.
5501 Fix previous change.
5502
5503 * dired-aux.el (dired-do-copy): Fix arg prompt.
5504
5505 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
5506
5507 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5508
5509 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
5510 rather than "Distributor".
5511
5512 2005-06-23 Lute Kamstra <lute@gnu.org>
5513
5514 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
5515 (debug-on-entry): Use it. New interactive declaration that uses
5516 function-called-at-point.
5517
5518 2005-06-23 Kim F. Storm <storm@cua.dk>
5519
5520 * subr.el (save-match-data): Add comment about using evaporate arg
5521 to set-match-data.
5522
5523 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
5524
5525 * cus-edit.el (customize-face)
5526 (customize-face-other-window): Handle face aliases.
5527
5528 * faces.el (face-documentation, set-face-attribute)
5529 (face-spec-set): Handle face aliases.
5530
5531 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
5532
5533 * help-mode.el (help-make-xrefs): If a symbol representing a face
5534 name is not followed by the word "face", it could still be a
5535 function or variable name, so don't bypass other checks.
5536
5537 2005-06-22 Juri Linkov <juri@jurta.org>
5538
5539 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
5540 Replace aliased functions with calls where second arg `inherit' is t.
5541
5542 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
5543
5544 * progmodes/gdb-ui.el (gdb-error): New variable.
5545 (gdb-error): New function.
5546 (gdb-annotation-rules): Act on error-begin and error annotations.
5547 (gdb-concat-output): Use font-lock-warning-face for errors.
5548
5549 2005-06-22 Miles Bader <miles@gnu.org>
5550
5551 * bindings.el (propertized-buffer-identification): Use renamed
5552 `Buffer-menu-buffer' face.
5553
5554 * faces.el (vertical-border): Rename from `vertical-divider'.
5555 (escape-glyph): Change dark-background color back to `cyan'.
5556
5557 2005-06-21 Juri Linkov <juri@jurta.org>
5558
5559 * faces.el (face-user-default-spec): Try getting `customized-face'
5560 prior to `saved-face'.
5561 (frame-background-mode): Refill docstring.
5562
5563 * emacs-lisp/lisp-mode.el (eval-defun-1):
5564 * emacs-lisp/edebug.el (edebug-eval-defun):
5565 Set `saved-face' temporarily to nil before calling form.
5566 Set `customized-face' to the new spec after that.
5567
5568 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
5569
5570 * subr.el (1value, lambda, key-substitution-in-progress):
5571 Doc fixes.
5572
5573 * autoinsert.el (auto-insert-alist):
5574 * ses.el (ses-call-printer):
5575 * subr.el (noreturn):
5576 * emacs-lisp/lisp.el (check-parens):
5577 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
5578 * net/browse-url.el (browse-url-mosaic):
5579 * progmodes/cc-defs.el (c-safe-scan-lists):
5580 * progmodes/ebnf-abn.el (ebnf-abn-lex):
5581 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
5582 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
5583 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
5584 * progmodes/ebnf-iso.el (ebnf-iso-lex):
5585 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
5586
5587 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
5588
5589 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
5590
5591 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
5592
5593 * calendar/appt.el (appt-make-list): Activate the package, if
5594 not already active (for backwards compatibility).
5595
5596 2005-06-20 Kim F. Storm <storm@cua.dk>
5597
5598 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
5599
5600 2005-06-20 Miles Bader <miles@gnu.org>
5601
5602 * faces.el (vertical-divider): New face.
5603
5604 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
5605
5606 * simple.el (kill-whole-line): Doc fix.
5607 (next-error-buffer-p, next-error-find-buffer)
5608 (clone-indirect-buffer): Fix typos in docstrings.
5609 (comment-line-break-function): Doc fix: don't say variable
5610 is automatically buffer-local (it isn't).
5611
5612 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
5613
5614 * net/tramp-ftp.el (top):
5615 * net/tramp-smb.el (top):
5616 * net/tramp-util.el (top):
5617 * net/tramp-uu.el (top):
5618 * net/tramp-vc.el (top):
5619 * net/tramp.el (top): Revert copyright years back to original
5620 ones. Tramp has a life outside GNU Emacs.
5621
5622 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
5623
5624 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
5625
5626 2005-06-18 Juri Linkov <juri@jurta.org>
5627
5628 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
5629 end of first regexp to limit the match to the position between
5630 line number and source line with same separator character as used
5631 between file name and line number. In the second regexp limit
5632 mouse-face area to file name and line number by adding new group
5633 for them and referring it in HYPERLINK arg.
5634 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
5635 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
5636 previous line where grep markers may be already removed.
5637
5638 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
5639
5640 * progmodes/ps-mode.el: Update version and maintainer's email address.
5641
5642 2005-06-18 Steve Youngs <steve@xemacs.org>
5643
5644 * net/browse-url.el (browse-url-browser-function)
5645 (browse-url-default-browser): Add firefox.
5646 (browse-url-firefox-program, browse-url-firefox-arguments)
5647 (browse-url-firefox-startup-arguments)
5648 (browse-url-firefox-new-window-is-tab): New defcustoms.
5649 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
5650
5651 2005-06-17 Richard M. Stallman <rms@gnu.org>
5652
5653 * startup.el (command-line): Warn if specified user name has
5654 no home directory.
5655
5656 * term.el (term-get-old-input, term-input-filter, term-input-sender)
5657 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
5658
5659 * longlines.el (longlines-mode, longlines-show-hard-newlines):
5660 Doc fixes.
5661
5662 * faces.el (underline): Try bold if terminal doesn't support underline.
5663
5664 * mail/sendmail.el (mail-setup-with-from): New variable.
5665 (mail-insert-from-field): New function.
5666 (sendmail-send-it): Call it.
5667 (mail-setup): Optionally call it here.
5668
5669 * term/linux.el: Call tty-no-underline.
5670
5671 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
5672
5673 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
5674
5675 2005-06-17 Miles Bader <miles@gnu.org>
5676
5677 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
5678 (ediff-current-diff-C, ediff-current-diff-Ancestor)
5679 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
5680 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
5681 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
5682 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
5683 Remove "-face" suffix from face names.
5684 (ediff-current-diff-face-A, ediff-current-diff-face-B)
5685 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
5686 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
5687 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
5688 (ediff-even-diff-face-A, ediff-even-diff-face-B)
5689 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
5690 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
5691 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
5692 New backward-compatibility aliases for renamed faces.
5693 (ediff-current-diff-face-A, ediff-current-diff-face-B)
5694 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
5695 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
5696 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
5697 (ediff-even-diff-face-A, ediff-even-diff-face-B)
5698 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
5699 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
5700 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
5701 Use renamed ediff faces.
5702
5703 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
5704 Remove "-face" suffix from face names.
5705 (eshell-test-ok-face, eshell-test-failed-face):
5706 New backward-compatibility aliases for renamed faces.
5707 (eshell-run-test): Use renamed eshell-test faces.
5708
5709 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
5710 face name.
5711 (eshell-prompt-face): New backward-compatibility alias for renamed
5712 face.
5713 (eshell-emit-prompt): Use renamed eshell-prompt face.
5714
5715 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
5716 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
5717 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
5718 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
5719 Remove "-face" suffix from face names.
5720 (eshell-ls-directory-face, eshell-ls-symlink-face)
5721 (eshell-ls-executable-face, eshell-ls-readonly-face)
5722 (eshell-ls-unreadable-face, eshell-ls-special-face)
5723 (eshell-ls-missing-face, eshell-ls-archive-face)
5724 (eshell-ls-backup-face, eshell-ls-product-face)
5725 (eshell-ls-clutter-face):
5726 New backward-compatibility aliases for renamed faces.
5727 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
5728
5729 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
5730 Remove "-face" suffix from face name.
5731 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
5732 instead of literal face.
5733
5734 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
5735
5736 * emacs-lisp/warnings.el (display-warning, lwarn)
5737 (warning-minimum-log-level): Doc fixes.
5738 (warning-minimum-level, warning-minimum-log-level):
5739 Add :debug to :type choices.
5740
5741 * progmodes/ada-mode.el (ada-format-paramlist)
5742 (ada-get-indent-case, ada-check-matching-start)
5743 (ada-check-defun-name, ada-goto-matching-decl-start)
5744 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
5745 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
5746 (ada-make-subprogram-body): Follow error conventions.
5747 (ada-case-exception-file, ada-indent-comment-as-code)
5748 (ada-indent-handle-comment-special, ada-indent-renames)
5749 (ada-indent-return, ada-search-directories-internal)
5750 (ada-tab-policy, ada-case-exception-substring)
5751 (ada-other-file-alist, ada-matching-start-re)
5752 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
5753 (ada-imenu-generic-expression, ada-compile-goto-error)
5754 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
5755 (ada-popup-menu, ada-add-extensions, ada-mode)
5756 (ada-region-selected, ada-create-case-exception)
5757 (ada-create-case-exception-substring, ada-after-keyword-p)
5758 (ada-activate-keys-for-case, ada-adjust-case-region)
5759 (ada-adjust-case-buffer, ada-format-paramlist)
5760 (ada-scan-paramlist, ada-insert-paramlist)
5761 (ada-indent-newline-indent)
5762 (ada-indent-newline-indent-conditional)
5763 (ada-justified-indent-current, ada-goto-previous-word)
5764 (ada-indent-current, ada-get-indent-open-paren)
5765 (ada-get-indent-paramlist, ada-get-indent-end)
5766 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
5767 (ada-get-indent-block-start, ada-get-indent-subprog)
5768 (ada-get-indent-noindent, ada-get-indent-label)
5769 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
5770 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
5771 (ada-goto-stmt-end, ada-goto-next-word)
5772 (ada-check-matching-start, ada-check-defun-name)
5773 (ada-goto-matching-decl-start, ada-goto-matching-start)
5774 (ada-goto-matching-end, ada-search-ignore-string-comment)
5775 (ada-in-decl-p, ada-looking-at-semi-or)
5776 (ada-looking-at-semi-private, ada-in-paramlist-p)
5777 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
5778 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
5779 (ada-next-procedure, ada-previous-procedure, ada-next-package)
5780 (ada-previous-package, ada-create-menu)
5781 (ada-fill-comment-paragraph-justify)
5782 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
5783 (ada-other-file-name, ada-last-which-function-line)
5784 (ada-last-which-function-subprog, ada-which-function)
5785 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
5786 (ada-gen-treat-proc, ada-check-emacs-version)
5787 (ada-continuation-indent, ada-align-region-separate):
5788 Fix typos in docstrings.
5789 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
5790
5791 2005-06-16 Lute Kamstra <lute@gnu.org>
5792
5793 * simple.el (fundamental-mode): Run after-change-major-mode-hook
5794 conditionally.
5795
5796 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
5797
5798 * comint.el (comint-replace-by-expanded-filename)
5799 (comint-prompt-regexp, comint-delimiter-argument-list)
5800 (comint-preinput-scroll-to-bottom):
5801 * info.el (Info-hide-cookies-node):
5802 * ls-lisp.el (ls-lisp-classify):
5803 * find-file.el (ff-search-directories, ff-special-constructs)
5804 (ff-find-other-file):
5805 * font-lock.el (font-lock-keywords):
5806 * shell.el (shell-prompt-pattern)
5807 (shell-dynamic-complete-functions, shell-mode)
5808 (shell-delimiter-argument-list):
5809 * term.el (term-replace-by-expanded-filename)
5810 (term-prompt-regexp, term-delimiter-argument-list):
5811 * woman.el (woman-ignore, woman0-if):
5812 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
5813 * emacs-lisp/elint.el (elint-init-env):
5814 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
5815 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
5816 * language/ethio-util.el (ethio-tilde-escape)
5817 (ethio-use-three-dot-question):
5818 * net/zone-mode.el (zone-mode-load-time-setup):
5819 * progmodes/cc-align.el (c-lineup-argcont):
5820 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
5821 * progmodes/cperl-mode.el (cperl-set-style-back):
5822 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5823 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
5824 Fix spellings in docstrings.
5825
5826 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
5827 * progmodes/modula2.el (m2-for): Fix spellings.
5828
5829 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
5830
5831 * simple.el (undo-more): Don't use `format' on `error' arguments.
5832 Improve argument/docstring consistency.
5833 (pending-undo-list): Doc fix.
5834
5835 * smerge-mode.el (smerge-ensure-match):
5836 * emulation/vip.el (vip-ex):
5837 * net/zone-mode.el (zone-mode-update-serial):
5838 * progmodes/idlwave.el (idlwave-complete):
5839 * progmodes/vhdl-mode.el (vhdl-visit-file)
5840 (vhdl-compose-wire-components):
5841 Don't use `format' on `error' arguments.
5842
5843 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
5844 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
5845 (tooltip-help-tips): Fix typos in docstrings.
5846
5847 2005-06-16 David Ponce <david@dponce.com>
5848
5849 * tree-widget.el (tree-widget-value-create): Simplify last change.
5850
5851 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
5852
5853 * ido.el (ido-incomplete-regexp): New variable.
5854 (ido-set-matches-1): Handle invalid-regexp error and set
5855 ido-incomplete-regexp.
5856 (ido-incomplete-regexp): New face.
5857 (ido-completions): Use it.
5858 (ido-complete, ido-exit-minibuffer, ido-completions):
5859 Handle incomplete regexps.
5860 (ido-completions): Add check for complete match when entering a regexp.
5861
5862 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5863
5864 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
5865
5866 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5867
5868 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
5869 by field delimiters.
5870
5871 2005-06-15 David Ponce <david@dponce.com>
5872
5873 * tree-widget.el: eval-and-compile inlined functions so they will
5874 be available at run-time too.
5875 (tree-widget-super-format-handler)
5876 (tree-widget-format-handler): Remove.
5877 (tree-widget-value-create): Handle the :indent property.
5878
5879 2005-06-15 Miles Bader <miles@gnu.org>
5880
5881 * progmodes/which-func.el (which-func): Only inherit
5882 `font-lock-function-name-face' when that makes sense against the
5883 default mode-line face, otherwise set the face color explicitly.
5884
5885 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
5886 faces instead of (non-existent) variables.
5887
5888 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5889
5890 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
5891 (iswitchb-get-matched-buffers): Likewise. Simplify.
5892
5893 2005-06-14 Miles Bader <miles@gnu.org>
5894
5895 * progmodes/ld-script.el (ld-script-location-counter):
5896 Remove "-face" suffix from face name.
5897 (ld-script-location-counter-face):
5898 New backward-compatibility alias for renamed face.
5899 (ld-script-location-counter-face): Use renamed face.
5900
5901 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
5902 (cperl-hash): Remove "-face" suffix from face names.
5903 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
5904 New backward-compatibility aliases for renamed faces.
5905 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
5906 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
5907
5908 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
5909 name.
5910 (which-func-face): New backward-compatibility alias for renamed face.
5911 (which-func-format): Use renamed which-func face.
5912
5913 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
5914 (vhdl-function, vhdl-directive, vhdl-reserved-word)
5915 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
5916 names.
5917 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
5918 (vhdl-speedbar-configuration, vhdl-speedbar-package)
5919 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
5920 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
5921 (vhdl-speedbar-architecture-selected)
5922 (vhdl-speedbar-configuration-selected)
5923 (vhdl-speedbar-package-selected)
5924 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
5925 names.
5926 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
5927 Use renamed faces.
5928 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
5929 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
5930 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
5931 Use renamed faces.
5932 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
5933 names.
5934 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
5935 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
5936 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
5937 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
5938 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
5939 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
5940
5941 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
5942 face name.
5943 (sh-heredoc-face): New backward-compatibility alias for renamed face.
5944 (sh-heredoc-face): Use renamed sh-heredoc face.
5945
5946 * progmodes/idlw-help.el (idlwave-help-link):
5947 Remove "-face" suffix from face name.
5948 (idlwave-help-link-face):
5949 New backward-compatibility alias for renamed face.
5950 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
5951
5952 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
5953 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
5954 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
5955 New backward-compatibility aliases for renamed faces.
5956 (idlwave-shell-disabled-breakpoint-face)
5957 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
5958
5959 * progmodes/flymake.el (flymake-errline, flymake-warnline):
5960 Remove "-face" suffix from face names.
5961 (flymake-errline-face, flymake-warnline-face):
5962 New backward-compatibility aliases for renamed faces.
5963 (flymake-highlight-line): Use renamed flymake faces.
5964
5965 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
5966 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
5967 (ebrowse-member-class, ebrowse-progress):
5968 Remove "-face" suffix from face names.
5969 (ebrowse-tree-mark-face, ebrowse-root-class-face)
5970 (ebrowse-file-name-face, ebrowse-default-face)
5971 (ebrowse-member-attribute-face, ebrowse-member-class-face)
5972 (ebrowse-progress-face):
5973 New backward-compatibility aliases for renamed faces.
5974 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
5975 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
5976 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
5977 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
5978
5979 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
5980 antlr-syntax)
5981 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
5982 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
5983 names.
5984 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
5985 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
5986 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
5987 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
5988 backward-compatibility aliases for renamed faces.
5989 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
5990 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
5991 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
5992 remove "font-lock-". Use renamed antlr-mode faces.
5993 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
5994 literal face-names with face variable references.
5995
5996 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
5997 face name.
5998 (Buffer-menu-buffer-face): New backward-compatibility alias for
5999 renamed face.
6000 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
6001
6002 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
6003
6004 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
6005 Eliminate "-face" suffix.
6006 (makefile-targets): Inherit from font-lock-function-name-face and
6007 eliminate "-face" suffix.
6008 (makefile-shell): Remove attributes and eliminate "-face" suffix.
6009 (makefile-*-font-lock-keywords): Append makefile-targets in rule
6010 actions, instead of prepending, to make it less visible.
6011 (makefile-previous-dependency, makefile-match-dependency):
6012 Don't match a target on a continuation line.
6013
6014 * files.el (auto-mode-alist): Put Makefile in gmake mode.
6015
6016 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
6017
6018 * progmodes/gdb-ui.el (menu): Re-order menu items.
6019 (gdb-tooltip-print): Respect tooltip-use-echo-area.
6020
6021 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
6022 Define in tooltip.el.
6023 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
6024 (gud-tooltip-tips): Respect tooltip-use-echo-area and
6025 gud-tooltip-echo-area.
6026
6027 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
6028 backward compatibility and make obsolete.
6029 (tooltip-help-tips): Use tooltip-use-echo-area.
6030 (tooltip-show-help-function): Rename to...
6031 (tooltip-show-help): ...this, because it is a function.
6032 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
6033
6034 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
6035
6036 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
6037 (edebug-print-length, edebug-print-level, edebug-print-circle)
6038 (edebug-modify-breakpoint, edebug-eval-last-sexp)
6039 (edebug-eval-print-last-sexp): Doc fixes.
6040
6041 2005-06-14 Kim F. Storm <storm@cua.dk>
6042
6043 * ido.el (ido-mode): Make a new keymap every time we enable ido,
6044 as the coverage buffer/file/both may change.
6045
6046 2005-06-14 Lute Kamstra <lute@gnu.org>
6047
6048 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
6049 and run-mode-hooks. Simplify.
6050
6051 * mail/rmailedit.el (rmail-edit-mode):
6052 * progmodes/octave-inf.el (inferior-octave-mode):
6053 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
6054
6055 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
6056 and run-mode-hooks.
6057 (recentf-edit-list, recentf-open-files): Don't call
6058 kill-all-local-variables directly.
6059
6060 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
6061
6062 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
6063
6064 * emacs-lisp/byte-run.el (make-obsolete)
6065 (define-obsolete-function-alias): Rename arguments FUNCTION and
6066 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
6067 (make-obsolete-variable, define-obsolete-variable-alias):
6068 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
6069 respectively.
6070
6071 * isearchb.el (isearchb-activate):
6072 * pcvs.el (cvs-mode):
6073 * ses.el (ses-load):
6074 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
6075 * net/tramp.el (tramp-find-file-exists-command)
6076 (tramp-find-shell):
6077 * progmodes/ada-mode.el (ada-create-case-exception)
6078 (ada-create-case-exception-substring, ada-make-subprogram-body):
6079 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
6080 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
6081 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
6082 * textmodes/org.el (org-promote, org-evaluate-time-range)
6083 (org-agenda-next-date-line, org-agenda-previous-date-line)
6084 (org-agenda-error, org-open-at-point, org-table-move-row)
6085 (org-format-table-table-html-using-table-generate-source)
6086 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
6087 * textmodes/reftex.el (reftex-access-scan-info):
6088 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
6089 (reftex-toc-promote-prepare): Follow error conventions.
6090
6091 * diff-mode.el (diff-mode): Fix typo in docstring.
6092
6093 * forms.el (forms--intuit-from-file): Fix reference to
6094 `forms-number-of-fields' in error message.
6095 (forms-print): Fix quoting in error message.
6096
6097 * forms.el (forms-mode):
6098 * emulation/vi.el (vi-goto-insert-state):
6099 * progmodes/flymake.el (flymake-new-err-info)
6100 (flymake-start-syntax-check-for-current-buffer)
6101 (flymake-simple-cleanup):
6102 * eshell/esh-var.el (eshell/export):
6103 * progmodes/gud.el (xdb):
6104 * textmodes/flyspell.el (flyspell-incorrect-hook)
6105 (flyspell-maybe-correct-transposition)
6106 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
6107
6108 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
6109
6110 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
6111 minibuffer prompt.
6112
6113 2005-06-13 Kim F. Storm <storm@cua.dk>
6114
6115 * subr.el (add-to-ordered-list): New defun.
6116
6117 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
6118 add cua--keymap-alist to emulation-mode-map-alists.
6119
6120 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6121
6122 * subr.el (complete-in-turn): New macro.
6123 (dynamic-completion-table, lazy-completion-table): Add debug info.
6124
6125 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
6126 in preference to face aliases.
6127
6128 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
6129 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
6130 Remove unused vars `start' and `firstline'.
6131 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
6132 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
6133
6134 2005-06-13 Eli Zaretskii <eliz@gnu.org>
6135
6136 * cus-start.el (all): Don't complain about missing GTK-related
6137 variables, unless either `gtk' is boundp or this isn't a
6138 `windows-nt' build.
6139
6140 2005-06-13 Lute Kamstra <lute@gnu.org>
6141
6142 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
6143 run-mode-hooks.
6144
6145 * ediff-mult.el (ediff-meta-mode):
6146 * ediff-util.el (ediff-mode): Use run-mode-hooks.
6147
6148 * ledit.el (ledit-mode): Use delay-mode-hooks.
6149
6150 * woman.el (woman-mode-line-format): Delete constant.
6151 (woman-mode-map): Initialize it properly.
6152 (woman-mode): Set mode-class property to special.
6153 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
6154 Set major-mode and mode-name. Don't set mode-line-format directly.
6155 (Man-getpage-in-background): Don't reference woman-mode-line-format.
6156
6157 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
6158 string argument obsolete.
6159
6160 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
6161
6162 * textmodes/org.el (org-CUA-compatible): New option.
6163 (org-disputed-keys): New variable.
6164 (org-key): New function.
6165 (orgtbl-make-binding): Add docstring to the created function.
6166 (org-mode): Set paragraph start/separate regexps.
6167 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
6168 (org-archive-location, org-archive-mark-done)
6169 (org-archive-stamp-time): New options.
6170 (org-archive-subtree): New command.
6171 (org-fill-paragraph): New function.
6172 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
6173 (org-fake-empty-table-line): Function removed.
6174 (org-format-org-table-html): Do not create empty table lines at
6175 separator lines. Improved table header treatment.
6176 (org-link-format): New option.
6177 (org-make-link): New function.
6178 (org-insert-link, org-store-link): Use org-make-link.
6179 (org-open-file): Quote file name for shell command, to allow
6180 spaces in file names.
6181 (org-link-regexp): Fix bug with mailto link.
6182 (org-link-maybe-angles-regexp, org-protected-link-regexp):
6183 New constants.
6184 (org-export-as-html): Deal with the optional angles around a link.
6185 Better treatment of file: links.
6186 (org-open-at-point): Replace @{ and @} with < and >.
6187 (org-run-mode-hooks): Function removed.
6188 (org-agenda-mode): No longer use `org-run-mode-hooks'.
6189
6190 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
6191
6192 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
6193 MI command -data-list-register-values.
6194 (gdb-post-prompt): Indent properly.
6195
6196 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
6197
6198 * hilit-chg.el (highlight-changes-colors): Rename from
6199 `highlight-changes-colours'.
6200 (highlight-changes-colours): Keep as obsolete alias.
6201 (highlight-changes-face-list): Doc fix.
6202 (hilit-chg-make-list): Use `highlight-changes-colors'.
6203
6204 2005-06-12 Mark A. Hershberger <mah@everybody.org>
6205
6206 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
6207 defun-prompt-regexp.
6208
6209 2005-06-12 Eli Zaretskii <eliz@gnu.org>
6210
6211 * loadup.el: Don't say we are dumping under 2 names on windows-nt
6212 and cygwin.
6213
6214 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
6215 Don't use an old loaddefs.el, as in Makefile.in.
6216
6217 2005-06-12 Lute Kamstra <lute@gnu.org>
6218
6219 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
6220
6221 * man.el (Man-mode-map): Initialize it properly.
6222 (Man-mode): Set mode-class property to special.
6223
6224 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
6225
6226 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
6227
6228 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
6229 A newline is needed in the docstring there.
6230
6231 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
6232 Doc fixes.
6233
6234 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6235
6236 * printing.el: Doc fix. The menubar is no more changed when printing
6237 is loaded, it only changes when pr-menu-bind or pr-update-menus is
6238 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
6239 (pr-version): New version number (6.8.4).
6240 (pr-menu-bind): New command.
6241 (pr-update-menus): Docstring and code fix.
6242 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
6243 Docstring fix.
6244 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
6245 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
6246
6247 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
6248
6249 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
6250 "Returns" to "return", document useful return values, etc.
6251
6252 2005-06-11 Alan Mackenzie <acm@muc.de>
6253
6254 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
6255 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
6256 (adaptive-file-function): Minor amendment to doc-string.
6257
6258 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
6259
6260 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
6261 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
6262 Fix :type--it is `integer', not `string'.
6263
6264 * faces.el (modeline-highlight): Rename from (the erroneous)
6265 `modeline-higilight'.
6266
6267 2005-06-11 Lute Kamstra <lute@gnu.org>
6268
6269 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
6270 lisp-interaction-mode-map but make it the parent.
6271 (edebug-eval-mode): Use define-derived-mode.
6272
6273 2005-06-11 Andreas Schwab <schwab@suse.de>
6274
6275 * bindings.el: Add binding of `ESC functionkey' for every
6276 `M-functionkey'.
6277 * hexl.el (hexl-mode-map): Likewise.
6278
6279 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
6280
6281 * progmodes/compile.el (compilation-error-regexp-alist-alist)
6282 [msft]: update regexp for newer msft compilers.
6283
6284 2005-06-10 Mark A. Hershberger <mah@everybody.org>
6285
6286 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
6287 ATTLIST portions of included DTDs.
6288 (xml-parse-dtd): Eliminate use of inefficient match-data.
6289
6290 2005-06-10 Miles Bader <miles@gnu.org>
6291
6292 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6293 (mpuz-text): Remove "-face" suffix from face names.
6294 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
6295 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
6296 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
6297
6298 * play/gomoku.el (gomoku-O, gomoku-X):
6299 Remove "-face" suffix from face names.
6300 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
6301 New backward-compatibility aliases for renamed faces.
6302 (gomoku-font-lock-keywords): Use renamed gomoku faces.
6303
6304 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
6305
6306 * thumbs.el: Fixes for changes of 2005-06-09.
6307 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
6308 as a directory.
6309 (thumbs-thumbname): Remove directory separator from format string;
6310 `thumbs-thumbsdir' now returns a valid directory name.
6311 (thumbs-temp-dir): New defsubst.
6312 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
6313 Use it.
6314
6315 * cus-edit.el (minibuffer):
6316 * files.el (make-backup-file-name-function):
6317 * filesets.el (filesets-external-viewers):
6318 * hilit-chg.el (highlight-changes-colours)
6319 (highlight-changes-face-list, highlight-changes-rotate-faces):
6320 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
6321 * kmacro.el (kmacro-call-macro):
6322 * log-edit.el (log-edit-changelog-full-paragraphs):
6323 * mouse.el (mouse-1-click-follows-link):
6324 * skeleton.el (skeleton-autowrap):
6325 * subr.el (insert-for-yank-1):
6326 * tempo.el (tempo-insert-region):
6327 * terminal.el (terminal-emulator):
6328 * time.el (display-time-mail-face):
6329 * vc.el (vc-annotate):
6330 * vcursor.el (vcursor-copy-line):
6331 * woman.el (woman-bold-headings, woman-ignore)
6332 (woman-default-faces, woman-monochrome-faces):
6333 * calendar/todo-mode.el (todo-insert-threshold):
6334 * emulation/pc-select.el (pc-select-selection-keys-only)
6335 (pc-selection-mode):
6336 * emulation/vip.el (vip-find-char-forward):
6337 * emulation/viper-cmd.el (viper-find-char-forward):
6338 * international/mule-cmds.el
6339 (select-safe-coding-system-accept-default-p)
6340 (input-method-exit-on-invalid-key):
6341 * international/mule-diag.el (describe-coding-system):
6342 * international/ucs-tables.el (unify-8859-on-encoding-mode):
6343 * net/browse-url.el (browse-url-xterm-program):
6344 * obsolete/lazy-lock.el (lazy-lock-mode):
6345 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
6346 (cperl-mode):
6347 * progmodes/cpp.el (cpp-face-light-name-list)
6348 (cpp-face-dark-name-list):
6349 * progmodes/delphi.el (delphi-newline-always-indents):
6350 Fix spellings in docstrings.
6351
6352 * ido.el (ido-mode, ido-file-extensions-order)
6353 (ido-default-file-method, ido-default-buffer-method)
6354 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
6355 (ido-decorations, ido-read-file-name-as-directory-commands)
6356 (ido-read-file-name-non-ido, ido-work-directory-list)
6357 (ido-ignore-item-temp-list, ido-current-directory)
6358 (ido-magic-forward-char, ido-enter-find-file)
6359 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
6360 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
6361
6362 2005-06-10 Lute Kamstra <lute@gnu.org>
6363
6364 * play/dunnet.el (dun-mode): Use define-derived-mode.
6365 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
6366 obsolete alias.
6367
6368 * play/doctor.el (doctor-mode-map): Remove defvar.
6369 (doctor-mode): Use define-derived-mode.
6370
6371 * mail/mspools.el (mspools-mode):
6372 * net/eudc-hotlist.el (eudc-hotlist-mode):
6373 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
6374
6375 2005-06-10 Miles Bader <miles@gnu.org>
6376
6377 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6378 Remove "-face" suffix from face names.
6379 (flyspell-incorrect-face, flyspell-duplicate-face):
6380 New backward-compatibility aliases for renamed faces.
6381 (flyspell-mode-on, make-flyspell-overlay)
6382 (flyspell-highlight-incorrect-region)
6383 (flyspell-highlight-duplicate-region)
6384 (flyspell-display-next-corrections)
6385 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
6386
6387 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
6388 from face name.
6389 (texinfo-heading-face): New backward-compatibility alias for
6390 renamed face.
6391 (texinfo-heading-face): Use renamed texinfo-heading face.
6392
6393 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
6394 suffix from face names.
6395 (tex-math-face, tex-verbatim-face):
6396 New backward-compatibility aliases for renamed faces.
6397 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
6398 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
6399 literal face name.
6400
6401 * textmodes/table.el (table-cell): Remove "-face" suffix from face
6402 name.
6403 (table-cell-face): New backward-compatibility alias for renamed face.
6404 (table--put-cell-face-property, table--update-cell-face):
6405 Use renamed table-cell face.
6406
6407 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
6408 from face name.
6409 (sgml-namespace-face): New backward-compatibility alias for
6410 renamed face.
6411 (sgml-namespace-face): Use renamed sgml-namespace face.
6412
6413 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
6414 (org-level-4, org-level-5, org-level-6, org-level-7)
6415 (org-level-8, org-warning, org-headline-done)
6416 (org-deadline-announce, org-scheduled-today)
6417 (org-scheduled-previously, org-link, org-done, org-table)
6418 (org-time-grid): Remove "-face" suffix from face names.
6419 (org-level-1-face, org-level-2-face, org-level-3-face)
6420 (org-level-4-face, org-level-5-face, org-level-6-face)
6421 (org-level-7-face, org-level-8-face, org-warning-face)
6422 (org-headline-done-face, org-deadline-announce-face)
6423 (org-scheduled-today-face, org-scheduled-previously-face)
6424 (org-link-face, org-done-face, org-table-face)
6425 (org-time-grid-face):
6426 New backward-compatibility aliases for renamed faces.
6427 (org-level-faces, org-set-font-lock-defaults, org-timeline)
6428 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
6429 (org-agenda-get-timestamps, org-agenda-get-scheduled)
6430 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
6431
6432 * emulation/viper-init.el (viper-search, viper-replace-overlay)
6433 (viper-minibuffer-emacs, viper-minibuffer-insert)
6434 (viper-minibuffer-vi): Remove "-face" suffix from face names.
6435 (viper-search-face, viper-replace-overlay-face)
6436 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
6437 (viper-minibuffer-vi-face):
6438 New backward-compatibility aliases for renamed faces.
6439 (viper-search-face, viper-replace-overlay-face)
6440 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
6441 (viper-minibuffer-vi-face): Use renamed viper faces.
6442
6443 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
6444 Remove "-face" suffix from face names.
6445 (testcover-nohits-face, testcover-1value-face):
6446 New backward-compatibility aliases for renamed faces.
6447 (testcover-mark): Use renamed testcover faces.
6448
6449 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
6450 face name.
6451 (diary-button-face): New backward-compatibility alias for renamed face.
6452 (diary-entry): Use renamed diary-button face.
6453
6454 * calendar/calendar.el (diary, calendar-today, holiday)
6455 (mark-visible-calendar-date): Remove "-face" suffix from face names.
6456 (diary-face, calendar-today-face, holiday-face):
6457 New backward-compatibility aliases for renamed faces.
6458 (eval-after-load "facemenu", diary-entry-marker)
6459 (calendar-today-marker, calendar-holiday-marker, diary-face):
6460 Use renamed calendar faces.
6461
6462 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
6463 (compare-windows-face): New backward-compatibility alias for
6464 renamed face.
6465 (compare-windows-highlight): Use renamed compare-windows face.
6466
6467 * strokes.el (strokes-char): Remove "-face" suffix from face name.
6468 (strokes-char-face): New backward-compatibility alias for renamed face.
6469 (strokes-encode-buffer): Use renamed strokes-char face.
6470
6471 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
6472 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
6473 Remove "-face" suffix from face names.
6474 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
6475 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
6476 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
6477 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
6478 Use renamed pcvs faces.
6479 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
6480 * pcvs-defs.el (cvs-mode-map): Likewise.
6481 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
6482
6483 * info.el (info-title-1, info-title-2, info-title-3)
6484 (info-title-4): Remove "-face" suffix from and downcase face names.
6485 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
6486 (Info-title-4-face):
6487 New backward-compatibility aliases for renamed faces.
6488 (Info-fontify-node): Use renamed info faces.
6489
6490 * hilit-chg.el (highlight-changes, highlight-changes-delete):
6491 Remove "-face" suffix from face names.
6492 (highlight-changes-face, highlight-changes-delete-face):
6493 New backward-compatibility aliases for renamed faces.
6494 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
6495 (hilit-chg-make-list): Use renamed highlight-changes faces.
6496
6497 * generic-x.el (show-tabs-tab, show-tabs-space):
6498 Remove "-face" suffix from face names.
6499 (show-tabs-tab-face, show-tabs-space-face):
6500 New backward-compatibility aliases for renamed faces.
6501 (show-tabs-generic-mode-font-lock-defaults-1)
6502 (show-tabs-generic-mode-font-lock-defaults-2):
6503 Use renamed show-tabs faces.
6504
6505 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
6506 (smerge-markers): Remove "-face" suffix from face names.
6507 (smerge-mine-face, smerge-other-face, smerge-base-face)
6508 (smerge-markers-face):
6509 New backward-compatibility aliases for renamed faces.
6510 (smerge-mine-face, smerge-other-face, smerge-base-face)
6511 (smerge-markers-face): Use renamed smerge faces.
6512
6513 * log-view.el (log-view-file, log-view-message): Remove "-face"
6514 suffix from face names.
6515 (log-view-file-face, log-view-message-face):
6516 New backward-compatibility aliases for renamed faces.
6517 (log-view-file-face, log-view-message-face): Use renamed log-view
6518 faces.
6519
6520 * paren.el (show-paren-match, show-paren-mismatch):
6521 Remove "-face" suffix from face names.
6522 (show-paren-match-face, show-paren-mismatch-face):
6523 New backward-compatibility aliases for renamed faces.
6524 (show-paren-function): Use renamed show-paren faces.
6525
6526 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
6527 (ruler-mode-margins, ruler-mode-fringes)
6528 (ruler-mode-column-number, ruler-mode-fill-column)
6529 (ruler-mode-comment-column, ruler-mode-goal-column)
6530 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
6531 suffix from face names.
6532 (ruler-mode-default-face, ruler-mode-pad-face)
6533 (ruler-mode-margins-face, ruler-mode-fringes-face)
6534 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
6535 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
6536 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
6537 New backward-compatibility aliases for renamed faces.
6538 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
6539 (ruler-mode-column-number, ruler-mode-fill-column)
6540 (ruler-mode-comment-column, ruler-mode-goal-column)
6541 (ruler-mode-tab-stop, ruler-mode-current-column)
6542 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
6543 faces.
6544
6545 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
6546 face name.
6547 (whitespace-highlight-the-space): Use renamed face.
6548 (whitespace-highlight-face): New backward-compatibility alias for
6549 renamed face.
6550
6551 * woman.el (woman-italic, woman-bold, woman-unknown)
6552 (woman-addition, woman-symbol-face):
6553 Remove "-face" suffix from face names.
6554 (woman-italic-face, woman-bold-face, woman-unknown-face)
6555 (woman-addition-face):
6556 New backward-compatibility aliases for renamed faces.
6557 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
6558 (woman-decode-region, woman-replace-match)
6559 (woman-display-extended-fonts, woman-special-characters)
6560 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
6561 Use renamed woman faces.
6562
6563 * longlines.el (longlines-visible-face): Face removed.
6564
6565 * diff-mode.el (diff-header, diff-file-header, diff-index)
6566 (diff-hunk-header, diff-removed, diff-added, diff-changed)
6567 (diff-function, diff-context, diff-nonexistent): Remove "-face"
6568 suffix from face names.
6569 (diff-header-face, diff-file-header-face, diff-index-face)
6570 (diff-hunk-header-face, diff-removed-face, diff-added-face)
6571 (diff-changed-face, diff-function-face, diff-context-face)
6572 (diff-nonexistent-face): New backward-compatibility aliases for
6573 renamed faces.
6574 (diff-header-face, diff-file-header-face)
6575 (diff-index, diff-index-face, diff-hunk-header)
6576 (diff-hunk-header-face, diff-removed, diff-removed-face)
6577 (diff-added, diff-added-face, diff-changed-face, diff-function)
6578 (diff-function-face, diff-context-face, diff-nonexistent)
6579 (diff-nonexistent-face): Use renamed diff-mode faces.
6580
6581 * progmodes/compile.el (compilation-warning-face)
6582 (compilation-info-face): Remove "-face" suffix from face names.
6583 (compilation-warning-face, compilation-info-face):
6584 New backward-compatibility aliases for renamed faces.
6585 (compilation-warning-face, compilation-info-face):
6586 Use renamed compilation faces.
6587
6588 * add-log.el (change-log-date, change-log-name)
6589 (change-log-email, change-log-file, change-log-list)
6590 (change-log-conditionals, change-log-function)
6591 (change-log-acknowledgement): Remove "-face" suffix from face names.
6592 (change-log-date-face, change-log-name-face)
6593 (change-log-email-face, change-log-file-face)
6594 (change-log-list-face, change-log-conditionals-face)
6595 (change-log-function-face, change-log-acknowledgement-face):
6596 New backward-compatibility aliases for renamed faces.
6597 (change-log-font-lock-keywords): Use renamed change-log faces.
6598
6599 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
6600 (custom-set, custom-changed, custom-saved, custom-button)
6601 (custom-button-pressed, custom-documentation, custom-state)
6602 (custom-comment, custom-comment-tag, custom-variable-tag)
6603 (custom-variable-button, custom-face-tag, custom-group-tag-1)
6604 (custom-group-tag): Remove "-face" suffix from face names.
6605 (custom-magic-alist, custom-magic-value-create)
6606 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
6607 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6608 (custom-set-face, custom-changed-face, custom-saved-face)
6609 (custom-button-face, custom-button-pressed-face)
6610 (custom-documentation-face, custom-state-face)
6611 (custom-comment-face, custom-comment-tag-face)
6612 (custom-variable-tag-face, custom-variable-button-face)
6613 (custom-face-tag-face, custom-group-tag-face-1)
6614 (custom-group-tag-face):
6615 New backward-compatibility aliases for renamed faces.
6616
6617 * wid-edit.el (widget-documentation, widget-button)
6618 (widget-field, widget-single-line-field, widget-inactive)
6619 (widget-button-pressed): "-face" suffix removed from face names.
6620 (widget-documentation-face, widget-button-face)
6621 (widget-field-face, widget-single-line-field-face)
6622 (widget-inactive-face, widget-button-pressed-face):
6623 New backward-compatibility aliases for renamed faces.
6624 (widget-documentation-face, widget-button-face)
6625 (widget-button-pressed-face, widget-specify-field)
6626 (widget-specify-inactive): Use renamed widget faces.
6627
6628 2005-06-10 Kenichi Handa <handa@m17n.org>
6629
6630 * term/x-win.el (x-clipboard-yank): Remove condition-case
6631 wrapping.
6632
6633 2005-06-11 Kenichi Handa <handa@m17n.org>
6634
6635 * add-log.el (change-log-font-lock-keywords): Make the regexp for
6636 date lines stricter.
6637
6638 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
6639
6640 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
6641 of x-get-selection.
6642
6643 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
6644
6645 * comint.el (comint-mode, comint-snapshot-last-prompt):
6646 * frame.el (frame-current-scroll-bars):
6647 * term.el (term-mode, term-check-proc, term-input-sender)
6648 (term-simple-send, term-extract-string, term-word)
6649 (term-match-partial-filename):
6650 * window.el (window-current-scroll-bars):
6651 * emulation/cua-base.el (cua-normal-cursor-color)
6652 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
6653 (cua-global-mark-cursor-color):
6654 * mail/undigest.el (rmail-forward-separator-regex):
6655 Fix typos in docstrings.
6656
6657 * comint.el (comint-check-proc, make-comint-in-buffer)
6658 (comint-source-default): Doc fixes.
6659
6660 * term.el (term-send-string): Improve argument/docstring consistency.
6661
6662 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
6663
6664 * comint.el (comint-send-input): Bind `inhibit-read-only' around
6665 call to `delete-region'.
6666 (comint-mode-hook): Do not enable Font Lock by default.
6667
6668 2005-06-09 Lute Kamstra <lute@gnu.org>
6669
6670 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
6671 could be void.
6672
6673 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6674
6675 * emacs-lisp/debug.el (debugger-will-be-back): New var.
6676 (debug): Use it.
6677 (debugger-step-through, debugger-continue, debugger-jump)
6678 (debugger-return-value): Set it when needed.
6679 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
6680 Use inhibit-read-only.
6681
6682 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
6683
6684 * window.el (shrink-window-if-larger-than-buffer)
6685 (window-size-fixed): Fix typo in docstring.
6686
6687 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
6688 thumbnails directory on loading.
6689 (thumbs-conversion-program): Use `eq' to check the system type,
6690 not `equal'.
6691 (thumbs-temp-dir): Initialize to `temporary-file-directory',
6692 not "/tmp". Fix docstring.
6693 (thumbs-thumbsdir): New function to return the thumbnails
6694 directory, creating it if needed.
6695 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
6696 (thumbs-temp-file): Delete variable and make it into a function.
6697 (thumbs-resize-image, thumbs-modify-image): Use it.
6698 (thumbs-kill-buffer): Simplify.
6699 (thumbs-gensym): Defalias or duplicate CL `gensym'.
6700 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
6701 docstrings.
6702
6703 2005-06-09 Kim F. Storm <storm@cua.dk>
6704
6705 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
6706 set-match-data to free markers in match-data.
6707
6708 * replace.el (replace-match-data): Pass RESEAT arg `t' to
6709 match-data to unchain markers in match-data.
6710
6711 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6712
6713 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
6714 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
6715 unnecessary now.
6716
6717 2005-06-08 Richard M. Stallman <rms@gnu.org>
6718
6719 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
6720 give the variable a doc string that doesn't say don't set it directly.
6721
6722 * textmodes/ispell.el (ispell-check-version):
6723 Use match-string-no-properties.
6724 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
6725 (ispell-buffer-local-words): Likewise.
6726
6727 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
6728 except on terminals with enough colors to really display it.
6729 (makefile-dependency-regex): Delete spurious `bb'.
6730
6731 * faces.el (escape-glyph): Use blue once again in last case.
6732 (no-break-space): Redefine so that it isn't invisible on a tty.
6733
6734 2005-06-08 Kim F. Storm <storm@cua.dk>
6735
6736 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
6737 also when reading directory name.
6738
6739 2005-06-08 Lute Kamstra <lute@gnu.org>
6740
6741 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
6742 (flyspell-mode-line-string): Remove autoload cookie.
6743 (flyspell-mode): Remove defvar.
6744
6745 2005-06-07 Lute Kamstra <lute@gnu.org>
6746
6747 * textmodes/org.el (org-run-mode-hooks): New function.
6748 (org-agenda-mode): Use it.
6749
6750 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
6751
6752 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
6753
6754 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6755
6756 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
6757
6758 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
6759
6760 * font-lock.el (font-lock-add-keywords): Doc fix.
6761
6762 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6763
6764 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
6765 (tex-compile-default): In the absence of any history, use the order in
6766 tex-compile-alist to choose the preferred command.
6767 (tex-compile-commands): Reorder a bit.
6768
6769 * textmodes/flyspell.el (flyspell-auto-correct-binding)
6770 (flyspell-incorrect-face, flyspell-duplicate-face):
6771 Use (X)Emacs-agnostic code.
6772 (flyspell-mode-map): Don't overwrite at each load. Remove code
6773 redundant with the subsequent add-minor-mode. Merge Emacs and
6774 XEmacs code.
6775 (flyspell-word): Minor simplification.
6776 (flyspell-math-tex-command-p): Quieten the byte-compiler.
6777 (flyspell-external-point-words): Remove unused vars `size' and `start'.
6778 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
6779 Merge the corresponding Emacs code.
6780 (flyspell-correct-word, flyspell-xemacs-popup):
6781 Use flyspell-do-correct.
6782
6783 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
6784 a dedicated window.
6785
6786 * international/latexenc.el (latexenc-find-file-coding-system):
6787 Undo part of last patch, to turn off a compiler warning.
6788
6789 2005-06-06 Juri Linkov <juri@jurta.org>
6790
6791 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
6792 Rename `tmm-inactive-face' to `tmm-inactive'.
6793
6794 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
6795
6796 * iswitchb.el: Rename faces.
6797
6798 2005-06-06 Kim F. Storm <storm@cua.dk>
6799
6800 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
6801 (cua-global-mark): Remove -face suffix from face names.
6802
6803 * emulation/cua-gmrk.el (cua--init-global-mark):
6804 Remove cua-global-mark face setup.
6805
6806 2005-06-06 Richard M. Stallman <rms@gnu.org>
6807
6808 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
6809 just like other allowed characters.
6810 (makefile-match-dependency): Exclude leading and training whitespace
6811 from the range of regexp subexp 1.
6812 (makefile-macroassign-regex): Don't try to match the body,
6813 just the name of the macro being defined.
6814
6815 * info.el (Info-read-node-name-2): New function.
6816 (Info-read-node-name-1): Use that.
6817 Add a completion-base-size-function property.
6818
6819 * simple.el (completion-setup-function): Look for
6820 completion-base-size-function property of minibuffer-completion-table.
6821
6822 * files.el (locate-file-completion): Doc fix.
6823
6824 * printing.el: Don't call pr-update-menus; user must do that.
6825
6826 * emacs-lisp/debug.el (debugger-window): New variable.
6827 (debug): Use debugger-window if it is set and still alive.
6828 Record debugger-window for next entry.
6829
6830 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
6831
6832 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
6833
6834 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
6835 (hack-one-local-variable, hack-local-variables)
6836 (hack-local-variables-prop-line): Pass that arg.
6837
6838 2005-06-06 Kim F. Storm <storm@cua.dk>
6839
6840 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6841 (ido-indicator): Remove -face suffix from face names.
6842
6843 2005-06-06 Juri Linkov <juri@jurta.org>
6844
6845 * font-lock.el (font-lock-regexp-backslash)
6846 (font-lock-regexp-backslash-construct): New faces.
6847 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
6848 after `('. Add `while-no-input' to control structures.
6849
6850 * faces.el (no-break-space, shadow): New faces.
6851 (escape-glyph): Use less loud colors pink2 and red4.
6852
6853 * diff-mode.el (diff-context-face)
6854 * dired.el (dired-ignored)
6855 * rfn-eshadow.el (file-name-shadow)
6856 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
6857
6858 * info.el (Info-title-1-face): Use green instead of yellow because
6859 bold yellow is not readable on light backgrounds.
6860
6861 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
6862 before selecting the desired mode to not spend time fontifying
6863 old contents.
6864
6865 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
6866
6867 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
6868 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
6869
6870 * ps-print.el (ps-default-fg, ps-default-bg):
6871 Fix typos in docstrings.
6872
6873 * isearchb.el (isearchb): Don't pass a spurious second argument to
6874 `iswitchb-completions'.
6875
6876 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
6877
6878 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
6879 to preserve point.
6880 (gdb-find-file-hook): Add doc string.
6881
6882 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
6883 C dereferenced pointer expression.
6884 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
6885
6886 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
6887
6888 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
6889 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
6890 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
6891 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
6892 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
6893 Make background transparent.
6894
6895 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
6896
6897 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
6898 (font-lock-remove-keywords): Doc fix.
6899 (font-lock-mode-major-mode): Compiler defvar.
6900 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
6901
6902 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
6903 (font-lock-mode): Update `font-lock-mode-major-mode'.
6904 (font-lock-set-defaults): Compiler defvar.
6905 (font-lock-default-function): Take `font-lock-mode-major-mode'
6906 into account.
6907
6908 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
6909 keep track of which major mode it enabled the minor mode for.
6910 Use find-file-hook again. Update docstring.
6911
6912 * simple.el (eval-expression-print-level)
6913 (eval-expression-print-length, eval-expression-debug-on-error):
6914 Doc fixes.
6915
6916 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
6917
6918 * iswitchb.el (iswitchb-single-match-face)
6919 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
6920 (iswitchb-invalid-regexp-face): New faces.
6921 (iswitchb-completions): Use them.
6922 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
6923 now marked as an obsolete alias.
6924 (iswitchb-read-buffer): Remove check for bound font variables.
6925 (iswitchb-invalid-regexp): New free variable.
6926 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
6927 set iswitchb-invalid-regexp.
6928 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
6929 invalid regexps.
6930 (iswitchb-completions): Add check for complete match when entering
6931 a regexp.
6932 (iswitchb-completions): Remove require-match argument.
6933 (iswitchb-exhibit): Fix caller.
6934 (iswitchb-common-match-inserted): New variable.
6935 (iswitchb-complete, iswitchb-completion-help): Use it.
6936
6937 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
6938
6939 * url-http.el (url-http-chunked-encoding-after-change-function):
6940 Use `url-http-debug' instead of `message'.
6941
6942 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
6943
6944 * url-http.el (url-http-parse-headers): Pass redirected URL as a
6945 callback argument.
6946
6947 2005-06-04 Kim F. Storm <storm@cua.dk>
6948
6949 * simple.el (line-move): Only call sit-for when moving backwards.
6950
6951 * ido.el (ido-make-merged-file-list-1): New defun split from
6952 ido-make-merged-file-list.
6953 (ido-make-merged-file-list): Bind throw-on-input around call to
6954 ido-make-merged-file-list-1. Return input-pending-p if
6955 interrupted by more input available.
6956 (ido-read-internal): Handle input-pending-p return value from
6957 ido-make-merged-file-list.
6958
6959 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6960
6961 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
6962 compatibility code.
6963
6964 * international/latexenc.el (latexenc-find-file-coding-system):
6965 Don't inherit the EOL part of the coding-system from the
6966 tex-main buffer. Fit within 80 columns.
6967
6968 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
6969
6970 * tmm.el (tmm-inactive-face): New face.
6971 (tmm-remove-inactive-mouse-face): New function.
6972 (tmm-prompt, tmm-add-one-shortcut)
6973 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
6974 but not selectable.
6975
6976 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
6977
6978 * faces.el (face-equal): Improve argument/docstring consistency.
6979
6980 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
6981
6982 * progmodes/make-mode.el (makefile-targets-face)
6983 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
6984 (makefile-bsdmake-dependency-regex)
6985 (makefile-makepp-rule-action-regex)
6986 (makefile-bsdmake-rule-action-regex): New constants.
6987 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
6988
6989 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6990 Allow (...) within `...' for makepp messages.
6991
6992 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
6993
6994 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
6995
6996 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
6997 "." files are deleted from all file lists before comparison.
6998
6999 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
7000 (viper-ESC-key): Made them customizable.
7001
7002 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
7003
7004 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
7005
7006 * autorevert.el (auto-revert-buffers): Use save-match-data.
7007
7008 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7009
7010 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
7011 menu items with a nil command binding.
7012
7013 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
7014
7015 * emacs-lisp/cl-macs.el (defsetf):
7016 Improve argument/docstring consistency.
7017
7018 * faces.el (list-faces-display): Improve the formatting by
7019 computing the maximum length required for any face-name (reworked
7020 patch of 1999-01-11, accidentally deleted on 1999-07-21).
7021 (internal-find-face): Remove redundant info in docstring.
7022
7023 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
7024
7025 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
7026 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
7027 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
7028 (gdb-assembler-custom): Improve regexps.
7029 (def-gdb-auto-update-handler): Use window point to preserve point.
7030
7031 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7032
7033 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
7034
7035 2005-05-31 Jay Belanger <belanger@truman.edu>
7036
7037 * calc/calc-embed.el (calc-embedded-word): Change argument passed
7038 to calc-embedded.
7039 (calc-embedded-make-info): Have plain prefix argument select
7040 entire line.
7041
7042 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
7043
7044 * faces.el (list-faces-display): Signal error if passed a regexp
7045 that matches no face name.
7046
7047 * simple.el (filter-buffer-substring): Fix typo in docstring.
7048
7049 2005-05-31 Richard M. Stallman <rms@gnu.org>
7050
7051 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
7052 (vhdl-emacs-21): Doc fix.
7053 (vhdl-mode): Unconditionally set comment-padding.
7054 (vhdl-fixup-whitespace-region): Insert spaces only where
7055 there are none.
7056 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
7057
7058 2005-05-30 John Wiegley <johnw@newartisans.com>
7059
7060 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
7061 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
7062 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
7063 `directory-sep-char' to ?/, and all uses of `string-to-int' to
7064 `string-to-number'.
7065
7066 2005-05-30 Jay Belanger <belanger@truman.edu>
7067
7068 * calc/calc.el (calc-bug-address): Fix docstring.
7069 (calc-window-hook, calc-trail-window-hook): New variables.
7070 (calc-trail-display): Restore use of calc-trail-window-hook.
7071 (calc): Restore use of calc-window-hook.
7072
7073 2005-05-31 Masatake YAMATO <jet@gyve.org>
7074
7075 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
7076
7077 * help-fns.el (help-C-file-name): Add autoload mark for
7078 `find-function-noselect'.
7079
7080 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7081
7082 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
7083 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
7084
7085 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
7086
7087 * calendar/diary-lib.el (mark-included-diary-files): Only kill
7088 included diary buffer if it was not already being visited.
7089 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
7090
7091 * calendar/icalendar.el (top-level): Do not require 'appt.
7092
7093 * mail/supercite.el (sc-select-attribution): Only use a list
7094 element from sc-attrib-selection-list if it returns a string.
7095 Reported by Davide G. M. Salvetti <salve@debian.org>.
7096
7097 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
7098
7099 * thumbs.el (thumbs-thumbname): The resulting thumbname now
7100 includes a hash value to improve its uniqueness, and has a ".jpg"
7101 extension. Also, it is now a valid filename on all systems.
7102 (thumbs-make-thumb): Use `let', not `let*'.
7103 (thumbs-show-thumbs-list): Check for JPEG availability.
7104
7105 2005-05-30 Richard M. Stallman <rms@gnu.org>
7106
7107 * filesets.el (filesets-menu-ensure-use-cached):
7108 Prevent warning when emacs-version>= is undefined.
7109
7110 * printing.el (pr-interactive-n-up): Use string-to-number.
7111
7112 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
7113
7114 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
7115 Warn only when name to be defined is quoted.
7116
7117 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
7118
7119 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
7120 Make regexp more robust.
7121 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
7122 Force regeneration of disassembly.
7123
7124 2005-05-29 Jay Belanger <belanger@truman.edu>
7125
7126 * calc/calc.el (calc-user-invocation): Check if
7127 calc-invocation-macro is non-nil.
7128
7129 2005-05-29 Juri Linkov <juri@jurta.org>
7130
7131 * add-log.el (change-log-font-lock-keywords):
7132 Add `+' to e-mail regexp to accept mail address with keywords.
7133
7134 * man.el (Man-name-regexp): Add `:' to accept qualified names.
7135
7136 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
7137
7138 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
7139
7140 * ielm.el (inferior-emacs-lisp-mode): Ditto.
7141
7142 2005-05-29 Richard M. Stallman <rms@gnu.org>
7143
7144 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
7145 Undo the change that moves to end of the current word.
7146
7147 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
7148
7149 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
7150 Throw error when count <= 0 to ensure input is a number.
7151 (gdb-read-memory-custom): Pick up address from buffer.
7152 (gdb-memory-mode): Allow user to increment and decrement
7153 memory address from header line.
7154
7155 2005-05-29 Richard M. Stallman <rms@gnu.org>
7156
7157 * flyspell.el (flyspell-version): Function deleted.
7158 (flyspell-auto-correct-previous-hook): Doc fix.
7159
7160 * jit-lock.el (jit-lock-function, jit-lock-after-change):
7161 Do nothing if memory is full.
7162
7163 * font-lock.el (font-lock-fontify-syntactically-region):
7164 Pass t for GREEDY to looking-back.
7165
7166 * saveplace.el (save-place-alist-to-file): Write the file
7167 using write-region.
7168
7169 * subr.el (looking-back): New argument GREEDY.
7170
7171 * progmodes/compile.el (compilation-start): Set the mode
7172 before inserting the initial text.
7173
7174 * progmodes/which-func.el (which-func-update-1): Turn the mode
7175 off in case of error by setting which-func-mode.
7176
7177 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
7178
7179 * flyspell.el (flyspell-auto-correct-previous-word):
7180 Narrow down to what's on the screen, and recenter overlays
7181 at the end of the next word.
7182
7183 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
7184
7185 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
7186 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
7187 (flyspell-abbrev-p): Default to nil.
7188 (flyspell-use-global-abbrev-table-p): Doc fix.
7189 (flyspell-large-region): Allow nil as value.
7190 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
7191
7192 (mail-mode-flyspell-verify): More robust handling
7193 of `mail-header-separator'. More efficient signature detection.
7194 Allow for regexp metacharacters in message-header-separator.
7195 Adding `To' not to be checked in mail-mode-flyspell-verify.
7196
7197 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
7198 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
7199 Bind flyspell-auto-correct-binding.
7200 Bind C-. and C-, .
7201 (flyspell-mode-map): Likewise.
7202 (flyspell-mode): Doc fix.
7203 (flyspell-accept-buffer-local-defs): Preserve current buffer.
7204 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
7205 (flyspell-word-cache-result): New var, always local.
7206 (flyspell-check-pre-word-p): Doc fix.
7207 (flyspell-check-changed-word-p): Handle spc like newline.
7208 (flyspell-post-command-hook): Set flyspell-word-cache-result.
7209 (flyspell-word-search-backward, flyspell-word-search-forward):
7210 New functions.
7211 (flyspell-word): Return t if nothing to check.
7212 When parsing TeX code, check for after } or \.
7213 Use flyspell-word-search-backward to find previous word.
7214 Return nil if duplicated word.
7215 For word already checked, return same value as last time.
7216 Set flyspell-word-cache-result after checking.
7217 Don't clobber the return value.
7218 (flyspell-get-word): Major rewrite.
7219 (flyspell-external-point-words): New locals pword, pcount.
7220 Fix size used in progress message.
7221 Find the proper corresponding word in flyspell-large-region-buffer.
7222 (flyspell-region): Check for flyspell-large-region = nil.
7223 (flyspell-highlight-incorrect-region): Clean up overlays in region.
7224 (flyspell-auto-correct-word): Check that WORD is a cons.
7225 (flyspell-correct-word): Likewise.
7226
7227 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
7228
7229 * progmodes/make-mode.el (makefile-rule-action-regex)
7230 (makefile-macroassign-regex, makefile-makepp-mode)
7231 (makefile-bsdmake-mode): Continuation lines may be empty.
7232 Reported by Joshua Varner.
7233 (makefile-makepp-font-lock-keywords): Add $(stem).
7234
7235 2005-05-28 Karl Berry <karl@gnu.org>
7236
7237 * textmodes/tex-mode.el: Now that tex-send-command calls
7238 shell-quote-argument (2005-03-31 change), remove all calls to
7239 shell-quote-argument; they all end up invoking tex-send-command.
7240 The double quoting loses on filenames with non-safe characters,
7241 such as "@". Reported by Frederik Fouvry.
7242
7243 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
7244
7245 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
7246 about preserving point.
7247
7248 2005-05-27 Jay Belanger <belanger@truman.edu>
7249
7250 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
7251 Info-goto-node.
7252
7253 * calc/calc-embed.el (calc-embed-arg): New variable.
7254 (calc-do-embedded-activate, calc-embedded-activate-formula)
7255 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
7256 variable by new variable.
7257 (calc-embedded-make-info): Replace undeclared variable by new
7258 variable. When selecting region with positive prefix
7259 argument, use end of previous line instead of beginning of line.
7260
7261 * calc/calc-aent.el (calc-arg-values): Declare it.
7262
7263 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
7264 Declare them.
7265
7266 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
7267
7268 * calc/calc.el (calc-alg-map): Declare it.
7269
7270 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
7271
7272 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
7273
7274 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
7275 (gdb-registers-buffer, toggle-gdb-all-registers):
7276 Toggle display of floating point registers.
7277 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
7278
7279 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
7280 (toggle-gud-tooltip-dereference):
7281 Rename from gud-toggle-tooltip-dereference.
7282
7283 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7284
7285 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
7286
7287 2005-05-27 Jay Belanger <belanger@truman.edu>
7288
7289 * calc/calc-prog.el (calc-kbd-report): Remove.
7290 (calc-kbd-query): Rewrite.
7291
7292 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
7293
7294 * image.el (image-library-alist): Move to image.c.
7295 (image-type-available-p): Doc fix.
7296
7297 2005-05-27 Lute Kamstra <lute@gnu.org>
7298
7299 * calc/calc.el (calc):
7300 * outline.el (outline-1, outline-2, outline-3, outline-4)
7301 (outline-5, outline-6, outline-7, outline-8):
7302 * textmodes/dns-mode.el (dns-mode):
7303 * textmodes/sgml-mode.el (sgml-namespace-face):
7304 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
7305 (tex-verbatim-face, tex-use-reftex):
7306 * textmodes/texinfo.el (texinfo-heading-face):
7307 Specify customization group.
7308
7309 * longlines.el: Don't require easy-mmode.
7310 (longlines-visible-face): Specify customization group.
7311
7312 2005-05-27 Kenichi Handa <handa@m17n.org>
7313
7314 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
7315 encoding table of windows-1251.
7316
7317 * international/ucs-tables.el (ucs-set-table-for-input):
7318 If translation-table-for-input of a coding system is a symbol, get
7319 its translation-table property.
7320
7321 * international/code-pages.el: Don't register a coding system into
7322 non-iso-charset-alist more than once.
7323 (cp-make-coding-system): Likewise.
7324
7325 2005-05-26 John Wiegley <johnw@newartisans.com>
7326
7327 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
7328 `eshell-resume-eval' is wrapped in a list, it indicates that the
7329 command was run asynchronously. In that case, unwrap the value
7330 before checking the delimiter value.
7331
7332 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
7333 character before a space at the end of a line is \, assume the space
7334 is part of the last argument rather than a final argument separator.
7335
7336 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
7337 is in use, and the target is `t' or `nil' (which are the most common
7338 values), don't assume that the symbol target is a buffer.
7339
7340 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
7341
7342 * calendar/calendar.el (calendar-mode-line-format):
7343 Use mode-line-highlight as mouse-face.
7344
7345 * time.el (display-time-string-forms, display-time-update):
7346 Use mode-line-highlight as mouse-face.
7347
7348 2005-05-26 Jay Belanger <belanger@truman.edu>
7349
7350 * calc/calc.el (calc-language-alist): Remove extra defvar.
7351
7352 2005-05-26 Lute Kamstra <lute@gnu.org>
7353
7354 * arc-mode.el (archive-mode):
7355 * bookmark.el (bookmark-read-annotation-mode)
7356 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
7357 * bs.el (bs-mode):
7358 * calc/calc-yank.el (calc-edit-mode):
7359 * calc/calc.el (calc-mode, calc-trail-mode):
7360 * calculator.el (calculator-mode):
7361 * chistory.el (command-history-mode):
7362 * comint.el:
7363 * cus-edit.el (custom-mode):
7364 * descr-text.el (describe-text-mode):
7365 * ebuff-menu.el (Electric-buffer-menu-mode):
7366 * ediff-util.el (ediff-mode):
7367 * emacs-lisp/re-builder.el (reb-mode):
7368 * emulation/vi.el (vi-mode-setup):
7369 * emulation/ws-mode.el (wordstar-mode):
7370 * eshell/esh-mode.el (eshell-mode):
7371 * forms.el (forms-mode):
7372 * help-mode.el (help-mode):
7373 * hexl.el (hexl-mode):
7374 * ibuffer.el (ibuffer-mode):
7375 * ielm.el (inferior-emacs-lisp-mode):
7376 * info.el (Info-mode, Info-edit-mode):
7377 * international/swedish.el:
7378 * ledit.el (ledit-from-lisp-mode):
7379 * locate.el (locate-mode):
7380 * mail/rmail.el (rmail-mode):
7381 * mail/rmailedit.el (rmail-edit-mode):
7382 * mail/rmailsum.el (rmail-summary-mode):
7383 * mail/supercite.el (sc-electric-mode):
7384 * net/eudc.el (eudc-mode):
7385 * net/quickurl.el (quickurl-list-mode):
7386 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
7387 * obsolete/ooutline.el (outline-mode):
7388 * obsolete/options.el (Edit-options-mode):
7389 * obsolete/rnews.el (news-mode):
7390 * obsolete/rnewspost.el (news-reply-mode):
7391 * play/5x5.el (5x5-mode):
7392 * play/decipher.el (decipher-mode, decipher-stats-mode):
7393 * play/gomoku.el (gomoku-mode):
7394 * play/snake.el (snake-mode):
7395 * play/solitaire.el (solitaire-mode):
7396 * play/tetris.el (tetris-mode):
7397 * progmodes/ada-mode.el (ada-mode):
7398 * progmodes/antlr-mode.el (antlr-mode):
7399 * progmodes/autoconf.el (autoconf-mode):
7400 * progmodes/dcl-mode.el (dcl-mode):
7401 * progmodes/delphi.el (delphi-mode):
7402 * progmodes/ebrowse.el (ebrowse-tree-mode)
7403 (ebrowse-electric-list-mode, ebrowse-member-mode)
7404 (ebrowse-electric-position-mode):
7405 * progmodes/f90.el (f90-mode):
7406 * progmodes/fortran.el (fortran-mode):
7407 * progmodes/icon.el (icon-mode):
7408 * progmodes/idlw-help.el (idlwave-help-mode):
7409 * progmodes/idlw-shell.el (idlwave-shell-mode):
7410 * progmodes/idlwave.el (idlwave-mode):
7411 * progmodes/inf-lisp.el (inferior-lisp-mode):
7412 * progmodes/m4-mode.el (m4-mode):
7413 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
7414 * progmodes/modula2.el (modula-2-mode):
7415 * progmodes/octave-inf.el (inferior-octave-mode):
7416 * progmodes/octave-mod.el (octave-mode):
7417 * progmodes/pascal.el (pascal-mode):
7418 * progmodes/sh-script.el (sh-mode):
7419 * progmodes/sql.el (sql-mode, sql-interactive-mode):
7420 * progmodes/vhdl-mode.el (vhdl-mode):
7421 * progmodes/xscheme.el (scheme-interaction-mode):
7422 * replace.el (occur-mode):
7423 * ses.el (ses-mode):
7424 * simple.el (completion-list-mode):
7425 * skeleton.el:
7426 * speedbar.el (speedbar-mode):
7427 * term.el (term-mode):
7428 * terminal.el (terminal-edit-mode):
7429 * textmodes/reftex-index.el (reftex-index-mode)
7430 (reftex-index-phrases-mode):
7431 * textmodes/reftex-sel.el (reftex-select-label-mode)
7432 (reftex-select-bib-mode):
7433 * textmodes/reftex-toc.el (reftex-toc-mode):
7434 * wdired.el (wdired-change-to-wdired-mode):
7435 * wid-browse.el (widget-browse-mode):
7436 Use run-mode-hooks.
7437
7438 * array.el (array-mode):
7439 * calendar/todo-mode.el (todo-mode):
7440 * man.el (Man-mode):
7441 * play/landmark.el (lm-mode):
7442 * play/mpuz.el (mpuz-mode):
7443 Use kill-all-local-variables and run-mode-hooks.
7444
7445 * subr.el (delay-mode-hooks): Specify indentation.
7446
7447 2005-05-26 Mark A. Hershberger <mah@everybody.org>
7448
7449 * xml.el (xml-substitute-special): Don't die for undefined xml
7450 entities.
7451
7452 2005-05-26 Jay Belanger <belanger@truman.edu>
7453
7454 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
7455 of nil.
7456
7457 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
7458
7459 * progmodes/gdb-ui.el (gdb-frame-address):
7460 Rename from gdb-current-address.
7461 (gdb-previous-frame-address): Rename from gdb-previous-address.
7462 (gdb-selected-frame): Rename from gdb-current-frame.
7463 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
7464 (gdb-frame-number): Rename from gdb-current-stack-level.
7465 (gdb-ann3): Match new mode-name for disassembly buffer.
7466 Extend initialization of variables.
7467 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
7468 (gdb-memory-mode): Use mouse-face in header line.
7469 (gdb-assembler-buffer-name): Call it disassembly and give frame
7470 in mode line.
7471 (gdb-source-spec-regexp, gdb-assembler-custom)
7472 (gdb-invalidate-assembler, gdb-frame-handler):
7473 Make robust to leading zeroes in address format.
7474
7475 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
7476
7477 * textmodes/org.el (org-mode): Use `define-derived-mode' to
7478 define `org-mode'.
7479 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
7480
7481 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7482
7483 * log-edit.el (log-edit-changelog-entries): Distinguish between
7484 filenames like xfns.c and fns.c.
7485
7486 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
7487
7488 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
7489 point after reverting.
7490 (Buffer-menu-make-sort-button): Handle the case where
7491 `Buffer-menu-use-header-line' is nil.
7492
7493 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
7494
7495 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
7496 New funcs. In minibuffer-local-completion-map bind `]', `/'
7497 and `:' to them.
7498
7499 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7500
7501 * startup.el (normal-top-level): Allow modification of load-path while
7502 we're iterating over it.
7503
7504 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
7505
7506 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
7507 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
7508 (thumbs-resize-interactive, thumbs-insert-image)
7509 (thumbs-insert-thumb, thumbs-dired-show-marked)
7510 (thumbs-find-image-at-point, thumbs-delete-images)
7511 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
7512 (thumbs-increment-image-size, thumbs-decrement-image-size):
7513 Fix typos in docstrings.
7514
7515 2005-05-24 Andre Spiegel <spiegel@gnu.org>
7516
7517 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
7518 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
7519 (cperl-mode): Use them.
7520
7521 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
7522
7523 * window.el (quit-window, shrink-window-if-larger-than-buffer):
7524 Doc fixes.
7525
7526 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
7527
7528 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
7529 Bind C-d to gdb-inferior-io-eof.
7530
7531 * dired.el (dired-dnd-popup-notice): Use message-box.
7532
7533 2005-05-23 Masatake YAMATO <jet@gyve.org>
7534
7535 * bindings.el (mode-line-major-mode-keymap):
7536 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
7537
7538 * faces.el (mode-line-highlight): New face.
7539
7540 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
7541 as mouse-face.
7542
7543 * bindings.el (top-level, help-echo, mode-line-modified)
7544 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
7545 as mouse-face.
7546
7547 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
7548
7549 * progmodes/cc-engine.el (c-guess-basic-syntax):
7550 Remove spurious call to `zerop'.
7551
7552 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
7553
7554 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
7555
7556 CC Mode update to 5.30.10:
7557
7558 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
7559 could go past the limit in decoration level 2, thereby causing
7560 errors during interactive fontification.
7561
7562 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
7563 the file is evaluated interactively.
7564
7565 * cc-engine.el (c-guess-basic-syntax): Handle operator
7566 declarations somewhat better in C++.
7567
7568 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
7569 make use of `run-mode-hooks' which has been added in Emacs 21.1.
7570 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
7571 (awk-mode): Use it.
7572 (make-local-hook): Suppress warning about obsoleteness.
7573
7574 * cc-engine.el, cc-align.el, cc-cmds.el
7575 (c-append-backslashes-forward, c-delete-backslashes-forward)
7576 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
7577 Compensate for return value from `forward-line' when it has moved
7578 but not to a different line due to eob.
7579
7580 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
7581 `objc-method-intro' and `objc-method-args-cont'.
7582
7583 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
7584
7585 CC Mode update to 5.30.10:
7586
7587 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
7588 in the copyright statement. Incidentally, change "along with GNU
7589 Emacs" to "along with this program" where it occurs.
7590
7591 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
7592 so that it is interactive, hence can be found by M-x awk-mode
7593 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
7594 <gmorris+emacs@ast.cam.ac.uk>.
7595
7596 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
7597 Mode's regexps.
7598
7599 2005-05-23 Kevin Ryde <user42@zip.com.au>
7600
7601 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
7602 c-parse-state, to avoid a lisp error (on bad code).
7603
7604 2005-05-23 Lute Kamstra <lute@gnu.org>
7605
7606 * subr.el (font-lock-defaults): Remove defvar as it's already
7607 defined in font-core.el.
7608
7609 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
7610
7611 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
7612
7613 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
7614 more general and work when GDB variable "print pretty" is on,
7615 as with Emacs, for example.
7616
7617 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
7618
7619 * font-core.el: Update comment.
7620
7621 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
7622 Use `after-change-major-mode-hook' instead of `find-file-hook'.
7623
7624 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
7625
7626 2005-05-22 Eli Zaretskii <eliz@gnu.org>
7627
7628 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
7629 and `yank-handler' in the doc strings.
7630
7631 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
7632
7633 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
7634
7635 2005-05-22 Richard M. Stallman <rms@gnu.org>
7636
7637 * help.el (describe-key): Move print-help-return-message call
7638 out of conditional.
7639
7640 * progmodes/etags.el (list-tags): Use with-no-warnings.
7641
7642 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
7643 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
7644 (starttls-extra-args, starttls-extra-arguments): Add defvars.
7645
7646 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
7647
7648 * language/viet-util.el (viet-viscii-nonascii-translation-table):
7649 Add defvar.
7650
7651 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
7652 Use defvar, not defconst.
7653
7654 * hexl.el (hexl-follow-line): Use with-no-warnings.
7655
7656 * emulation/tpu-extras.el: Use write-file-functions instead of
7657 write-file-hooks.
7658
7659 * dired.el (dired-font-lock-keywords): Fontify files with junk
7660 extensions even if marked by -F.
7661
7662 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
7663
7664 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
7665 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
7666 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
7667 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
7668 (concatenate, list-length, get*, getf, cl-remprop):
7669 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
7670 (etypecase, progv, lexical-let, lexical-let*)
7671 (multiple-value-bind, multiple-value-setq, shiftf):
7672 Improve argument/docstring consistency.
7673
7674 * subr.el (focus-frame, unfocus-frame):
7675 Revert deletion on 2005-05-01.
7676
7677 2005-05-22 Andre Spiegel <spiegel@gnu.org>
7678
7679 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
7680 doesn't exist.
7681
7682 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
7683 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
7684
7685 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
7686
7687 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
7688 already deleted variables: auto-fill-hook, blink-paren-hook,
7689 lisp-indent-hook, inhibit-local-variables, unread-command-event,
7690 suspend-hooks, comment-indent-hook, meta-flag,
7691 before-change-function, after-change-function,
7692 font-lock-doc-string-face.
7693
7694 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
7695
7696 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
7697
7698 2005-05-21 Eli Zaretskii <eliz@gnu.org>
7699
7700 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
7701 rmail-dont-reply-to.
7702
7703 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
7704
7705 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
7706 literal blank when splitting new-header-values.
7707
7708 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
7709
7710 * calendar/cal-menu.el (cal-menu-update): Add separator as a
7711 string so that tmm doesn't create a completion entry for it.
7712
7713 * textmodes/table.el (table-disable-menu): Ditto.
7714
7715 2005-05-21 Richard M. Stallman <rms@gnu.org>
7716
7717 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
7718
7719 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
7720
7721 * net/rcompile.el (remote-compile): Use compilation-start.
7722
7723 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
7724
7725 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
7726
7727 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
7728 Default to makefile-bsdmake-mode on BSD systems.
7729
7730 * imenu.el (imenu-generic-expression, imenu--generic-function'):
7731 REGEXP may also be a search function now. The part of doc-string
7732 for describing the structure was 95% identical to that of
7733 `imenu--generic-function'. Unify it there.
7734
7735 * progmodes/make-mode.el (makefile-imenu-generic-expression):
7736 Use function to find dependencies, because regexp alone is so complex,
7737 it easily goes into an endless loop.
7738 (makefile-makepp-mode): Also add submenu for Perl functions
7739 defined in the makefile.
7740 (makefile-bsdmake-mode): Special imenu-generic-expression no
7741 longer needed, due to function call.
7742 (makefile-match-dependency): Take BOUND into account when checking
7743 if we're through.
7744
7745 2005-05-20 Jay Belanger <belanger@truman.edu>
7746
7747 * calc/calc-units.el (calc-invalidate-units-table):
7748 Use inhibit-read-only.
7749 (math-build-units-table-buffer): Use view-mode.
7750
7751 2005-05-20 David Kastrup <dak@gnu.org>
7752
7753 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
7754 easy-menu-add is not a nop on Emacs; and clarify when to call it.
7755
7756 2005-05-20 Lute Kamstra <lute@gnu.org>
7757
7758 * diff-mode.el (diff-header-face, diff-file-header-face)
7759 (diff-index-face, diff-hunk-header-face, diff-removed-face)
7760 (diff-added-face, diff-changed-face, diff-function-face)
7761 (diff-context-face, diff-nonexistent-face): Put them in the
7762 diff-mode customization group.
7763
7764 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
7765
7766 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
7767
7768 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
7769
7770 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
7771 Minor regexp-optimization.
7772
7773 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
7774
7775 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
7776 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
7777 (org-agenda-add-time-grid-maybe): New function.
7778 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
7779 (org-table-create): `dotimes' instead of `mapcar'.
7780 (org-xor): Simplify implementation.
7781 (org-agenda): `inhibit-redisplay' turned on.
7782 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
7783 a consistent line after a state change.
7784 (org-agenda-remove-times-when-in-prefix): New option.
7785 (org-prefix-has-time): New variable.
7786 (org-parse-time-string): Optional argument NODEFAULT.
7787 (org-format-agenda-item): Parse items for time-of-day
7788 specifications and move these into the prefix if possible.
7789 (org-agenda-priority): Get current heading, not previous heading
7790 during agenda remote editing.
7791
7792 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
7793
7794 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
7795 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
7796 (remove-duplicates, delete-duplicates, substitute)
7797 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
7798 (nsubstitute-if-not, find, find-if, find-if-not, position)
7799 (position-if, position-if-not, count, count-if, count-if-not)
7800 (mismatch, search, sort*, stable-sort, merge, member*)
7801 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
7802 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
7803 (intersection, nintersection, set-difference, nset-difference)
7804 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
7805 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
7806 (nsublis, tree-equal): Improve argument/docstring consistency.
7807
7808 * subr.el (send-string, send-region):
7809 Remove obsolescence declaration.
7810 (window-dot, set-window-dot, read-input, show-buffer)
7811 (eval-current-buffer, string-to-int):
7812 Add release number to obsolescence declarations.
7813
7814 2005-05-19 Kim F. Storm <storm@cua.dk>
7815
7816 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
7817 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
7818
7819 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
7820
7821 * faces.el (list-faces-display): Make back button respect optional
7822 regexp arg.
7823
7824 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
7825
7826 * calculator.el (calculator-radix-grouping-mode)
7827 (calculator-radix-grouping-digits, calculator-displayer)
7828 (calculator-radix-grouping-separator, calculator-copy-displayer):
7829 * dabbrev.el (dabbrev-search-these-buffers-only):
7830 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
7831 (diff-advance-after-apply-hunk, diff-mode-hook)
7832 (diff-minor-mode-prefix):
7833 * imenu.el (imenu-use-popup-menu):
7834 * jit-lock.el (jit-lock-context-time):
7835 * newcomment.el (comment-fill-column, comment-column)
7836 (comment-style, comment-padding, comment-multi-line)
7837 (comment-empty-lines, comment-auto-fill-only-comments):
7838 * reveal.el (reveal-around-mark):
7839 * uniquify.el (uniquify-buffer-name-style)
7840 (uniquify-after-kill-buffer-p)
7841 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
7842 (uniquify-min-dir-content, uniquify-separator)
7843 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
7844 * w32-vars.el (w32-fixed-font-alist):
7845 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
7846 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
7847 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
7848 * progmodes/perl-mode.el (perl-indent-level)
7849 (perl-continued-statement-offset, perl-continued-brace-offset)
7850 (perl-brace-offset, perl-brace-imaginary-offset)
7851 (perl-label-offset, perl-indent-continued-arguments)
7852 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
7853 * progmodes/tcl.el (tcl-indent-level)
7854 (tcl-continued-indent-level, tcl-auto-newline)
7855 (tcl-tab-always-indent, tcl-electric-hash-style)
7856 (tcl-help-directory-list, tcl-use-smart-word-finder)
7857 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
7858 (inferior-tcl-source-command):
7859 * textmodes/fill.el (enable-kinsoku):
7860 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
7861 * textmodes/table.el (table-yank-handler):
7862 Specify missing group (and type, if simple) in defcustom.
7863
7864 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
7865
7866 * progmodes/compile.el (compilation-finish-function): Fix defvar.
7867
7868 2005-05-19 Richard M. Stallman <rms@gnu.org>
7869
7870 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
7871
7872 * subr.el (event-basic-type): Don't get an error.
7873 (left-fringe-p): Function deleted.
7874
7875 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
7876 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
7877
7878 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
7879 in recursive copy.
7880
7881 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
7882
7883 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
7884
7885 * emacs-lisp/bytecomp.el
7886 (byte-compile-file-form-custom-declare-variable): Call
7887 byte-compile-nogroup-warn if appropriate.
7888
7889 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
7890 (compilation-set-window): Don't call left-fringe-p; do it directly.
7891
7892 2005-05-19 Jay Belanger <belanger@truman.edu>
7893
7894 * calc/calc-graph.el (calc-graph-format-data): Make sure
7895 var-PlotRejects is bound before trying to check its value.
7896
7897 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
7898
7899 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
7900 definition of this variable from reftex-global.el to reftex.el,
7901 because it is needed in the menu.
7902
7903 2005-05-19 Lute Kamstra <lute@gnu.org>
7904
7905 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
7906 years are fixed. Don't insert a space after a dash.
7907
7908 2005-05-19 Kim F. Storm <storm@cua.dk>
7909
7910 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
7911
7912 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
7913
7914 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
7915 strings, because (eq ... ?\\) is fairly frequent.
7916
7917 * progmodes/make-mode.el (makefile-add-this-line-targets):
7918 Simplify and integrate into `makefile-pickup-targets'.
7919 (makefile-add-this-line-macro): Simplify and integrate into
7920 `makefile-pickup-macros.
7921 (makefile-pickup-filenames-as-targets): Simplify.
7922 (makefile-previous-dependency, makefile-match-dependency):
7923 Don't stumble over `::'.
7924
7925 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
7926
7927 * subr.el (post-command-idle-hook, post-command-idle-delay):
7928 Remove obsoletion of post-command-idle-hook and
7929 post-command-idle-delay.
7930
7931 * faces.el (list-faces-display): Provide button when describe-face
7932 is called to take user back to the list of faces.
7933
7934 * help-fns.el (describe-variable): Remove hyperlinks in a
7935 variable's value as these are quite frequently inappropriate.
7936
7937 * follow.el (follow-submit-feedback, follow-mode):
7938 Remove references to post-command-idle-hook.
7939
7940 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
7941
7942 * progmodes/make-mode.el (makefile-previous-dependency)
7943 (makefile-match-dependency): Check for := (and in bsd mode also
7944 !=) to give a better result, even when font-lock is not on.
7945
7946 2005-05-18 Jay Belanger <belanger@truman.edu>
7947
7948 * calc/calc-help.el (calc-s-prefix-help):
7949 Add `calc-copy-special-constant' to help string.
7950
7951 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
7952
7953 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
7954
7955 2005-05-18 Jay Belanger <belanger@truman.edu>
7956
7957 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
7958 in linear factors are in proper order.
7959
7960 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
7961
7962 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
7963 Support for jurabib.
7964
7965 * textmodes/reftex.el (featurep): Define aliases for overlay
7966 commands, for XEmacs compatibility, and use these aliases in
7967 overlay initializations.
7968 (reftex-highlight): Use `reftex-move-overlay'.
7969 (reftex-unhighlight): Use `reftex-delete-overlay'.
7970 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
7971 (reftex-access-search-path): Use `reftex-uniquify' instead of
7972 `reftex-uniq'
7973
7974 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
7975 `before-string' property modification enables for Emacs as well.
7976 (reftex-select-item): Use `reftex-delete-overlay'.
7977 (reftex-select-mark): Use `reftex-make-overlay' and
7978 `reftex-overlay-put'.
7979 (reftex-select-unmark): Use `reftex-delete-overlay' and
7980 `reftex-overlay-put'.
7981
7982 2005-05-18 Lute Kamstra <lute@gnu.org>
7983
7984 * emacs-lisp/lisp.el (check-parens): Fix docstring.
7985
7986 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
7987
7988 * add-log.el (add-change-log-entry):
7989 * array.el (array-make-template, array-reconfigure-rows)
7990 (array-init-max-row, array-init-max-column)
7991 (array-init-columns-per-line, array-init-field-width):
7992 * replace.el (replace-match-maybe-edit, perform-replace):
7993 * textmodes/spell.el (spell-region):
7994 Replace `read-input' by `read-string'.
7995
7996 * forms.el (forms-mode):
7997 * finder.el (finder-compile-keywords):
7998 * shadowfile.el (shadow-read-files):
7999 Replace `eval-current-buffer' by `eval-buffer'.
8000
8001 * terminal.el (te-pass-through):
8002 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
8003 (ange-ftp-raw-send-cmd):
8004 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
8005 (send-process-next-char, telnet-initial-filter, telnet):
8006 Replace `send-string' by `process-send-string'.
8007
8008 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
8009 (prolog-consult-region): Replace `send-string' by
8010 `process-send-string'; replace `send-region' by `process-send-region'.
8011
8012 * progmodes/delphi.el (delphi-log-msg):
8013 Replace `set-window-dot' by `set-window-point'.
8014
8015 * subr.el (window-dot, set-window-dot, read-input, send-string)
8016 (send-region, show-buffer, eval-current-buffer):
8017 Make really obsolete, as the comment says.
8018
8019 2005-05-17 Kim F. Storm <storm@cua.dk>
8020
8021 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
8022 (cua--init-keymaps): Bind C-return instead of S-return to set
8023 rectangle mark.
8024
8025 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
8026 instead of S-return to toggle/clear rectangle mark.
8027
8028 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
8029
8030 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
8031 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
8032 Also fontify plain strings assigned to variables, mostly so that a
8033 colon has a face and is thus not taken as a dependency separator.
8034 (makefile-previous-dependency): Inline the new matcher, because it
8035 is too complex to work in both directions.
8036 (makefile-match-dependency): Eliminate `backward' arg (see above).
8037 Completely reimplemented so as to not sometimes go into an endless
8038 loop. It should also be more efficient, because first it only
8039 searches for `:', instead of applying the very complex regexp.
8040 (makefile-mode): Cancel `font-lock-support-mode', because blocks
8041 to be fontified in one piece can be too long for JIT.
8042 Makefiles are never *that* big.
8043
8044 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
8045
8046 * dired.el (dired-mode): Simplify.
8047
8048 2005-05-17 Lute Kamstra <lute@gnu.org>
8049
8050 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
8051 defcustom for the mode hook variable.
8052
8053 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
8054 Emacs Lisp Reference Manual.
8055
8056 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
8057
8058 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
8059 (evenp, list*):
8060 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
8061 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
8062
8063 * net/tramp-smb.el (tramp-smb-open-connection):
8064 Pass `tramp-chunksize' as fifth (required) argument.
8065
8066 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
8067
8068 * font-lock.el (lisp-font-lock-keywords-1):
8069 Set `font-lock-negation-char-face' for [^...] char group.
8070 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
8071
8072 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
8073 a var, and refine it to mask one more level of nested vars.
8074 (makefile-rule-action-regex): Turn it into a var, and refine it so
8075 it recognizes backslashed continuation lines as belonging to the
8076 same command.
8077 (makefile-macroassign-regex): Refine it so it recognizes
8078 backslashed continuation lines as belonging to the same command.
8079 (makefile-var-use-regex): Don't look at the next char, because it
8080 might be the same one to be skipped by the initial [^$], leading
8081 to an overlooked variable use.
8082 (makefile-make-font-lock-keywords): Remove two parameters, which
8083 are now variables that some of the modes set locally.
8084 Handle dependency and rule action matching through functions, because
8085 regexps alone match too often. Dependency matching now comes
8086 last, so it can check, whether a colon already matched something else.
8087 (makefile-mode): Inform that font-lock improves makefile parsing
8088 capabilities.
8089 (makefile-match-dependency, makefile-match-action): New functions.
8090
8091 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
8092
8093 * emacs-lisp/cl-extra.el (equalp): Doc fix.
8094
8095 * align.el (align-regexp):
8096 * ansi-color.el (ansi-color-get-face):
8097 * array.el (array-reconfigure-rows, array-init-max-row)
8098 (array-init-max-column, array-init-columns-per-line)
8099 (array-init-field-width):
8100 * dired-aux.el (dired-trample-file-versions):
8101 * dired-x.el (dired-mark-sexp):
8102 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
8103 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
8104 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
8105 * faces.el (face-read-integer):
8106 * files.el (backup-extract-version, insert-directory):
8107 * hexl.el (hexl-insert-decimal-char):
8108 * server.el (server-process-filter):
8109 * shell.el (shell-extract-num):
8110 * startup.el (command-line-1):
8111 * term.el (term-command-hook):
8112 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
8113 (time-stamp-do-number):
8114 * time.el (display-time-update):
8115 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
8116 (timezone-fix-time):
8117 * vms-patch.el (vms-suspend-resume-hook):
8118 * calendar/appt.el (appt-convert-time):
8119 * calendar/cal-bahai.el (mark-bahai-diary-entries):
8120 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
8121 * calendar/cal-islam.el (mark-islamic-diary-entries):
8122 * calendar/calendar.el (calendar-cursor-to-date)
8123 (calendar-star-date):
8124 * calendar/diary-lib.el (diary-attrtype-convert)
8125 (mark-diary-entries, diary-entry-time):
8126 * calendar/solar.el (solar-get-number):
8127 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
8128 * emacs-lisp/re-builder.el (reb-display-subexp):
8129 * emulation/edt.el (edt-set-scroll-margins):
8130 * emulation/tpu-extras.el (tpu-set-scroll-margins):
8131 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
8132 (vip-get-ex-count):
8133 * emulation/viper-ex.el (viper-get-ex-token)
8134 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
8135 * international/fontset.el (fontset-plain-name):
8136 * mail/feedmail.el (feedmail-look-at-queue-directory):
8137 * mail/mailalias.el (mail-get-names):
8138 * mail/rmail.el (rmail-convert-to-babyl-format):
8139 * mail/rmailsum.el (rmail-make-basic-summary-line)
8140 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
8141 (rmail-summary-goto-msg):
8142 * mail/smtpmail.el (smtpmail-read-response):
8143 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
8144 (ange-ftp-vms-add-file-entry):
8145 * play/gametree.el (gametree-looking-at-ply)
8146 (gametree-current-branch-score):
8147 * progmodes/ada-xref.el (ada-prj-find-prj-file)
8148 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
8149 * progmodes/cperl-mode.el (condition-case):
8150 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
8151 (ebrowse-set-member-buffer-column-width)
8152 (ebrowse-select-1st-to-9nth):
8153 * progmodes/etags.el (etags-snarf-tag):
8154 * progmodes/flymake.el (flymake-parse-line):
8155 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
8156 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
8157 (idlwave-shell-menu-def):
8158 * progmodes/ps-mode.el (ps-run-goto-error):
8159 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
8160 (vhdl-speedbar-contract-level):
8161 * term/mac-win.el (x-handle-numeric-switch):
8162 * term/sun-mouse.el (sun-get-frame-data):
8163 * term/w32-win.el (x-handle-numeric-switch):
8164 * term/x-win.el (x-handle-numeric-switch):
8165 * textmodes/ispell.el (ispell-parse-output):
8166 * textmodes/nroff-mode.el (nroff-outline-level):
8167 * textmodes/reftex-cite.el (reftex-bib-sort-year)
8168 (reftex-bib-sort-year-reverse, reftex-format-citation):
8169 * textmodes/reftex-parse.el (reftex-init-section-numbers)
8170 (reftex-section-number):
8171 * textmodes/texinfmt.el (texinfo-paragraphindent):
8172 Replace `string-to-int' by `string-to-number'.
8173
8174 * international/latexenc.el: Add page marker to force the "Local
8175 Variables:" string out of the last page.
8176
8177 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
8178
8179 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
8180 tooltip-change-major-mode.
8181 (gud-tooltip-print-command): Remove case where gud-minor-mode
8182 is gdb ("--fullname").
8183 (gud-tooltip-tips): Turn GUD tooltips off for this case and
8184 explain to user.
8185
8186 2005-05-16 Jay Belanger <belanger@truman.edu>
8187
8188 * calc/calc-store.el (calc-copy-special-constant): New function.
8189
8190 * calc/calc-ext.el (calc-init-extensions): Add binding for
8191 `calc-copy-special-constant'.
8192
8193 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
8194 for the `calc-copy-special-constant' command.
8195
8196 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
8197
8198 * subr.el (left-fringe-p): New function.
8199
8200 * progmodes/compile.el (compilation-setup): Set local value of
8201 overlay-arrow-string to "" always.
8202 (compilation-set-window): Left fringe then don't scroll.
8203 No left fringe then no arrow and scroll message to top.
8204 (compilation-context-lines): Adjust doc string accordingly.
8205
8206 2005-05-16 Kim F. Storm <storm@cua.dk>
8207
8208 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
8209 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
8210 (ido-wide-find-dir-or-delete-dir): New command for M-d.
8211 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
8212 (ido-read-file-name): Handle commands with ido property value
8213 equal to find-file as reading a file name, to allow C-d to enter dired.
8214 (ibuffer-find-file): Add ido property with value find-file.
8215
8216 2005-05-15 Kim F. Storm <storm@cua.dk>
8217
8218 * subr.el (open-network-stream-nowait): Remove.
8219 (open-network-stream-server): Remove.
8220
8221 2005-05-15 Richard M. Stallman <rms@gnu.org>
8222
8223 * faces.el (describe-face): Output a definition link button.
8224
8225 * help-mode.el (help-face-def): New button type.
8226
8227 * emacs-lisp/copyright.el (copyright-fix-years):
8228 Match properly if the first year is 2-digit.
8229 Don't mess up the whitespace after the years by filling.
8230
8231 * dired-aux.el (dired-mark-confirm):
8232 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
8233
8234 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
8235 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
8236 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
8237
8238 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8239 Set font-lock-comment-start-skip.
8240
8241 * font-lock.el (font-lock-comment-start-skip): New variable.
8242 (font-lock-comment-end-skip): New variable.
8243 (font-lock-fontify-syntactically-region): Use them if non-nil.
8244
8245 2005-05-15 Jay Belanger <belanger@truman.edu>
8246
8247 * calc/calc-store.el (calc-store-value): Return a string rather
8248 than display it as a message.
8249 Use calc-var-name for variable name.
8250 (calc-store-into): Add the result of calc-store-value to message.
8251 (calc-copy-variable): Add a message.
8252 (calc-store-exchange): Improve error messages.
8253 (calc-store-binary, calc-store-map): Don't reset the values of
8254 special constants.
8255
8256 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
8257
8258 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
8259 manual to docstring.
8260
8261 * files.el (hack-local-variables-confirm): Add STRING argument.
8262 Make the function handle non file visiting buffers correctly.
8263 (hack-local-variables-prop-line, hack-local-variables)
8264 (hack-one-local-variable): Use STRING arg of
8265 `hack-local-variables-confirm'.
8266
8267 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
8268
8269 Sync with Tramp 2.0.49.
8270
8271 * net/tramp.el (tramp-handle-dired-call-process)
8272 (tramp-handle-insert-directory):`insert-buffer' cannot be used
8273 because the contents of the Tramp buffer is changed before
8274 insertion (`expand-file' and alike).
8275 (tramp-handle-insert-directory): If `localname' has an empty
8276 nondirectory name, it must not be quoted.
8277 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
8278 variable `tramp-chunksize'. Change callees.
8279 (tramp-open-connection-setup-interactive-shell): Check remote host
8280 for buggy `send-process-string' implementation.
8281 Set `tramp-chunksize' if found. Reported by Michael Kifer
8282 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
8283 (tramp-handle-shell-command): `insert-buffer' cannot be used
8284 because the contents of the Tramp buffer is changed before
8285 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
8286 <frederic.bothamy@free.fr>.
8287 (tramp-set-auto-save): Actions should be done for Tramp file name
8288 handler only. Ange-FTP has its own auto-save mechanism.
8289 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
8290 (tramp-set-auto-save-file-modes): Set file modes of
8291 `buffer-auto-save-file-name' to ?\600 as fallback solution.
8292 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
8293 (tramp-bug): Remove obsolete variable.
8294 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
8295 for presence of `mml-mode'. Make it running for older Emacsen as well.
8296
8297 2005-05-14 John Paul Wallington <jpw@pobox.com>
8298
8299 * ibuf-ext.el (define-ibuffer-filter filename):
8300 If `dired-directory' is a list, use its car.
8301
8302 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
8303
8304 * ibuffer.el (define-ibuffer-column filename):
8305 If `dired-directory' is a list, use its car.
8306
8307 2005-05-14 Richard M. Stallman <rms@gnu.org>
8308
8309 * subr.el (symbol-file): Doc fix.
8310
8311 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
8312 (byte-compile-form): Call byte-compile-nogroup-warn.
8313 (byte-compile-warning-types): Doc fix.
8314
8315 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
8316
8317 * progmodes/cc-engine.el (c-literal-faces):
8318 Add font-lock-comment-delimiter-face.
8319
8320 * net/net-utils.el (dig): Use with-no-warnings.
8321
8322 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
8323 (sc-recite-frame-alist, sc-default-cite-frame)
8324 (sc-default-uncite-frame, sc-default-recite-frame)
8325 (sc-attrib-selection-list, sc-rewrite-header-list):
8326 Mark as risky-local-variable.
8327
8328 * international/ogonek.el (ogonek-jak, ogonek-how):
8329 Don't use beginning-of-buffer.
8330
8331 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
8332
8333 * calendar/solar.el (solar-data-list): Move definition up.
8334
8335 * dnd.el (dnd-protocol-alist): Add autoload.
8336
8337 * progmodes/sh-script.el: Many doc usage fixes.
8338 (sh-indent-after-do): Change default to match common styles.
8339
8340 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
8341
8342 * files.el (interpreter-mode-alist)
8343 (auto-mode-interpreter-regexp): Doc fixes.
8344
8345 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
8346
8347 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
8348
8349 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
8350
8351 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8352
8353 * dired.el (dired-mode): make-variable-buffer-local =>
8354 make-local-variable.
8355
8356 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8357
8358 * term/mac-win.el (mac-select-convert-to-string): Try coding
8359 systems in mac-script-code-coding-systems if specified one cannot
8360 encode string for `com.apple.traditional-mac-plain-text'.
8361
8362 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
8363
8364 * progmodes/make-mode.el (makefile-targets-face)
8365 (makefile-shell-face, makefile-makepp-perl-face): New faces.
8366 (makefile-dependency-regex): Fix it to not make the colon in
8367 $(var:a=b) special.
8368 (makefile-rule-action-regex): New regexp for highlighting embedded
8369 Shell strings.
8370 (makefile-macroassign-regex): Handle != for highlighting as
8371 embedded Shell strings.
8372 (makefile-var-use-regex): New const.
8373 (makefile-statements, makefile-automake-statements)
8374 (makefile-gmake-statements, makefile-makepp-statements)
8375 (makefile-bsdmake-statements): New consts.
8376 (makefile-make-font-lock-keywords): New function.
8377 (makefile-automake-font-lock-keywords)
8378 (makefile-gmake-font-lock-keywords)
8379 (makefile-makepp-font-lock-keywords)
8380 (makefile-bsdmake-font-lock-keywords): New consts.
8381 (makefile-mode-map): Add switchers between the various submodes.
8382 (makefile-mode): Document the availability of the variants.
8383 (makefile-automake-mode, makefile-gmake-mode)
8384 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
8385
8386 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
8387 new variants of makefile-mode.
8388
8389 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
8390
8391 * font-lock.el (font-lock-comment-delimiter-face): Fix up
8392 the inheritance.
8393
8394 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
8395
8396 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
8397 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
8398
8399 * files.el (normal-mode): Extend the scope of the
8400 `enable-local-variables' binding to include the `set-auto-mode' call.
8401 (magic-mode-alist): Doc fix.
8402
8403 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
8404
8405 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
8406 font-lock-comment-face rather than copying its setting.
8407
8408 2005-05-12 Andreas Schwab <schwab@suse.de>
8409
8410 * eshell/esh-mode.el (eshell-send-input): Doc fix.
8411
8412 2005-05-12 Lute Kamstra <lute@gnu.org>
8413
8414 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
8415 defcustom for the mode hook variable. Delete the last argument.
8416 * generic-x.el: Fix callers of define-generic-mode.
8417 (generic-x-modes): Delete group.
8418 (show-tabs-tab-face, show-tabs-space-face): Put them in the
8419 generic-x customization group.
8420
8421 2005-05-12 Kim F. Storm <storm@cua.dk>
8422
8423 * font-lock.el (font-lock-negation-char-face): Default to "off".
8424
8425 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
8426 font-lock-negation-char-face to ! in !=.
8427
8428 2005-05-12 Masatake YAMATO <jet@gyve.org>
8429
8430 * add-log.el (find-change-log): Fix typos in the docstring
8431 of function.
8432
8433 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
8434
8435 * international/latexenc.el (latexenc-find-file-coding-system):
8436 Avoid `re-search-forward' when looking for input encoding because
8437 of speed and safety. Better regular expressions for recognizing
8438 input encoding. Limit a search for TeX-master/tex-main-file to
8439 the local variable section.
8440
8441 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
8442
8443 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
8444 syntax of $ to "'" (quote).
8445
8446 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
8447
8448 * dnd.el (dnd-protocol-alist): Improve custom type.
8449
8450 * dired.el (dired-dnd-protocol-alist): New variable.
8451 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
8452 `dired-mode-hook' to the end.
8453
8454 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
8455
8456 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
8457 comment-end if comment-start-skip is not set.
8458 Obey the font-lock-comment-delimiter-face variables.
8459
8460 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
8461
8462 * files.el (executable-find): Move from executable.el. Use
8463 locate-file.
8464 * progmodes/executable.el (executable-find): Move to files.el.
8465
8466 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
8467 when trying to ensure forward progress.
8468
8469 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
8470
8471 * mouse-sel.el (mouse-sel-follow-link-p): New function.
8472 (mouse-select, mouse-select-internal, mouse-extend-internal):
8473 Use it to implement mouse-1-click-follows-link functionality.
8474
8475 2005-05-11 Richard M. Stallman <rms@gnu.org>
8476
8477 * font-lock.el (font-lock-fontify-syntactically-region):
8478 Use font-lock-comment-delimiter-face for comment delimiters.
8479
8480 2005-05-10 Jay Belanger <belanger@truman.edu>
8481
8482 * calc/calc-help.el (calc-m-prefix-help): Add mention of
8483 preserving embedded modes.
8484
8485 2005-05-10 Richard M. Stallman <rms@gnu.org>
8486
8487 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
8488
8489 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
8490 Move from ada-stmt.el.
8491 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
8492
8493 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
8494 Move to ada-mode.el.
8495 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
8496
8497 * cus-edit.el (custom-file): Call file-chase-links.
8498
8499 * files.el (read-directory-name): Fix previous change.
8500 (hack-local-variables-confirm): New function.
8501 (hack-local-variables-prop-line, hack-local-variables)
8502 (hack-one-local-variable): Use it.
8503
8504 2005-05-10 Lute Kamstra <lute@gnu.org>
8505
8506 * font-lock.el (font-lock-keywords-alist)
8507 (font-lock-removed-keywords-alist): Clarify docstrings.
8508
8509 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
8510
8511 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
8512 (gdb-source-info): Check for preprocessor info.
8513 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
8514 a macro for a function.
8515 (gdb-info-breakpoints-custom): Try to find file again if not already
8516 found (user might have used GDB dir command).
8517 (gdb-get-location): Update gdb-location-alist correctly for change
8518 to gdb-info-breakpoints-custom.
8519
8520 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
8521 (gud-tooltip-print-command): Add gdbmi case.
8522 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
8523 preprocessor info.
8524
8525 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
8526
8527 * startup.el (fancy-splash-insert): Fix typo in doc string.
8528
8529 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
8530
8531 * obsolete/float.el (string-to-float):
8532 * obsolete/hilit19.el (hilit-add-pattern):
8533 * obsolete/rnews.el (news-parse-range, news-select-message)
8534 (news-get-pruned-list-of-files): Replace `string-to-int' by
8535 `string-to-number'.
8536
8537 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
8538 `find-file-not-found-hooks'; use `add-hook'.
8539 (uncompress-while-visiting): Set `write-file-functions', not
8540 `write-file-hooks'; use `add-hook'.
8541
8542 2005-05-09 Kim F. Storm <storm@cua.dk>
8543
8544 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
8545 (cua-paste): Handle clipboard action.
8546 (cua--init-keymaps): Remap clipboard-kill-region and
8547 clipboard-kill-ring-save.
8548
8549 2005-05-08 Eli Zaretskii <eliz@gnu.org>
8550
8551 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8552 Improve commentary.
8553
8554 * simple.el (next-error-overlay-arrow-position): Revert the change
8555 made on 2005-04-30.
8556
8557 2005-05-07 Jay Belanger <belanger@truman.edu>
8558
8559 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
8560 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
8561 `calc-sel-reselect'.
8562
8563 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
8564 Calc is in embedded mode.
8565
8566 2005-05-07 Eli Zaretskii <eliz@gnu.org>
8567
8568 * progmodes/compile.el (compilation-setup):
8569 Set overlay-arrow-string to an empty string on text terminals.
8570
8571 * textmodes/ispell.el (ispell-program-name): Try looking for
8572 "aspell" along exec-path, and if found, use it as the default
8573 speller program.
8574
8575 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
8576
8577 * international/mule.el (sgml-xml-auto-coding-function):
8578 Recognize encoding='FOO' in single quotes as well as in double quotes.
8579
8580 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
8581
8582 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
8583 as well as `interactive', so that defmacro* would recognize
8584 `declare' forms.
8585
8586 2005-05-07 Eli Zaretskii <eliz@gnu.org>
8587
8588 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8589 Explain more about the LIGHTER arg's usage in the doc string.
8590 Add commentary to clarify what the code does. Fix the regexp that
8591 strips whitespace from LIGHTER. Quote LIGHTER before using it,
8592 since it could have characters special to regular expressions.
8593
8594 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
8595
8596 * replace.el (occur-1): Bind inhibit-read-only so that
8597 erase-buffer doesn't barf on read-only text properties (likewise
8598 for add-text-properties in occur-engine). Mark buffer as unmodified.
8599 (occur-engine): Don't set buffer-read-only here.
8600
8601 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8602
8603 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
8604 list-buffers-directory. This caused the *cvs-commit* buffer to be
8605 sometimes mistakenly reused as a *cvs* buffer.
8606
8607 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
8608
8609 * tooltip.el: Move code for GUD tooltips into gud.el.
8610 (require): CL no longer needed to compile case.
8611 (tooltip-mode): Do not toggle functions for GUD tooltips.
8612 (tooltip-gud-tips-p): Remove. Replace with minor mode
8613 gud-tooltip-mode in gud.el.
8614 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
8615 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
8616 tooltip-gud prefix with gud-tooltip and obsolete.
8617 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
8618 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
8619 (tooltip-mouse-motion): Mouse movement functions/variable.
8620 Rename in gud.el by adding gud prefix.
8621 (tooltip-gud-original-filter, tooltip-gud-dereference)
8622 (tooltip-gud-event, tooltip-toggle-gud-tips)
8623 (tooltip-gud-process-output, tooltip-gud-print-command)
8624 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
8625 gud.el by replacing tooltip-gud prefix with gud-tooltip.
8626 (gdb-tooltip-print): Move to gdb-ui.el.
8627
8628 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
8629 (require): CL needed to compile case.
8630 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
8631 tooltip-gud-tips-p. Make it a minor-mode.
8632 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
8633 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
8634 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
8635 (gud-tooltip-change-major-mode)
8636 (gud-tooltip-activate-mouse-motions-if-enabled)
8637 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
8638 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
8639 (gud-tooltip-original-filter, gud-tooltip-dereference)
8640 (gud-tooltip-event, tooltip-toggle-gud-tips)
8641 (gud-tooltip-process-output, gud-tooltip-print-command)
8642 (gud-tooltip-tips): Move from tooltip.el.
8643
8644 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
8645 (gdb-cpp-define-alist-flags): Doc fix.
8646 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
8647 gud-tooltip-mode is t.
8648
8649 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8650
8651 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
8652 evaporate if their text is deleted.
8653 (goto-address-at-point): Make it work as a mouse binding as well.
8654 (goto-address-at-mouse): Obsolete it. Update users.
8655
8656 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8657
8658 * calendar/appt.el (top-level): No longer activate on load.
8659
8660 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
8661
8662 * calendar/cal-bahai.el (mark-bahai-diary-entries):
8663 * net/webjump.el (webjump):
8664 * progmodes/idlw-help.el (idlwave-do-context-help1)
8665 (idlwave-highlight-linked-completions):
8666 * textmodes/po.el (po-find-file-coding-system-guts):
8667 Replace `assoc-ignore-case' by `assoc-string'.
8668
8669 2005-05-06 Eli Zaretskii <eliz@gnu.org>
8670
8671 * files.el (locate-file): Doc fix.
8672
8673 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
8674 Remove the redundant test for ms-dos.
8675
8676 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
8677 look for the preprocessor with exec-suffixes. If not found in
8678 standard places, look in exec-path. Remove most of the tests that
8679 used system-type.
8680
8681 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
8682
8683 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
8684
8685 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
8686 file-name clash with jka-compr.el on 8+3 filesystems.
8687
8688 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8689
8690 * term/mac-win.el: Don't define or bind scroll bar functions if
8691 x-toolkit-scroll-bars is t.
8692 (x-select-text, x-get-selection-value): Clear
8693 x-last-selected-text-clipboard if x-select-enable-clipboard is
8694 nil.
8695 (PRIMARY): Put mac-scrap-name property.
8696 (mac-select-convert-to-file-url): New function.
8697 (public.file-url): New selection target type. Add to
8698 selection-converter-alist.
8699 (x-get-selection, x-selection-value): Handle it.
8700 (x-cut-buffer-or-selection-value): New alias.
8701
8702 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8703
8704 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
8705 entry to avoid calling bibtex-find-entry with arg global
8706 being t. Remove arg key.
8707 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
8708 (bibtex-copy-summary-as-kill): Change accordingly.
8709
8710 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8711
8712 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
8713 (org-agenda-date-later): Use with-current-buffer.
8714
8715 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
8716
8717 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
8718 (define-obsolete-variable-alias): Doc Fixes.
8719
8720 2005-05-06 Kim F. Storm <storm@cua.dk>
8721
8722 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
8723 vertical-motion when selective-display is active.
8724
8725 * ido.el (ido-setup-hook): New hook.
8726 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
8727 (ido-input-stack): New var.
8728 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
8729 ido-next-work-file binding to M-O.
8730 Bind M-f to ido-wide-find-file-or-pop-dir.
8731 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
8732 (ido-read-internal): Run ido-setup-hook.
8733 Catch quit in read-file-name and read-string to cancel edit.
8734 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
8735 Automatically pop-all when completing a directory name (RET).
8736 (ido-file-internal): Add with-no-warnings around ffap and dired code.
8737 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
8738 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
8739 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
8740 New functions for M-b/M-f to move among the directory components.
8741 (ido-make-merged-file-list): Catch quit to cancel merge.
8742 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
8743 (ido-completion-help): No warnings for ido-completion-buffer-full.
8744
8745 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
8746
8747 * font-lock.el (font-lock-negation-char-face): New face and variable.
8748 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
8749 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
8750 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
8751 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
8752
8753 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
8754
8755 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
8756 Fix typo in docstring.
8757
8758 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
8759 (ebrowse-print-statistics-line)
8760 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
8761
8762 * term/w32-win.el (image-library-alist): Add additional name for
8763 Xpm library.
8764
8765 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
8766
8767 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
8768 use gcc instead of cpp.
8769
8770 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
8771 (gdb-create-define-alist): Use it.
8772 (gdb-cpp-define-alist-program): Update for MS-DOS.
8773
8774 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
8775
8776 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
8777
8778 2005-05-04 Richard M. Stallman <rms@gnu.org>
8779
8780 * help.el (describe-key): No error when UNTRANSLATED is nil.
8781
8782 * simple.el (line-move-1): Fix previous change to signal errors
8783 appropriately.
8784
8785 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
8786
8787 * calendar/icalendar.el (icalendar-version): Now at 0.12.
8788 (icalendar-duration-correction): Remove.
8789 (icalendar--get-event-properties): Split result at commas.
8790 (icalendar--decode-isoduration): New optional argument
8791 DURATION-CORRECTION.
8792 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
8793 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
8794 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
8795 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
8796 (icalendar--convert-anniversary-to-ical): New functions, extracted
8797 from icalendar-export-region, with bug fixes.
8798 (icalendar-export-region): Use the above functions.
8799 (icalendar-import-buffer): Check before saving diary file.
8800 (icalendar--convert-recurring-to-diary)
8801 (icalendar--convert-non-recurring-all-day-to-diary)
8802 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
8803 extracted from icalendar--convert-ical-to-diary, with bug fixes.
8804 (icalendar--convert-ical-to-diary): Use the above functions.
8805
8806 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
8807
8808 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
8809 Remove these recent additions.
8810 (c-mode): Restore to before 2005-04-28.
8811
8812 * progmodes/cc-vars.el (cc-define-list-program): Remove this
8813 recent addition.
8814
8815 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
8816 (gdb-define-alist): New variables.
8817 (gdb-create-define-alist): New function.
8818 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
8819 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
8820 with string-to-number.
8821 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
8822
8823 * progmodes/gud.el: Replace string-to-int with string-to-number.
8824 (gud-find-file): Handle gdb-define-alist.
8825
8826 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
8827
8828 2005-05-02 Jay Belanger <belanger@truman.edu>
8829
8830 * calc/calc-aent.el (math-read-token):
8831 * calc/calc-bin.el (calc-word-size):
8832 * calc/calc-ext.el (calc-read-number-fancy):
8833 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
8834 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
8835 * calc/calc-frac.el (calc-over-notation):
8836 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
8837 (calc-graph-num-points, calc-graph-init):
8838 * calc/calc-prog.el (calc-read-parse-table-part)
8839 (calc-edit-macro-repeats):
8840 * calc/calc-yank.el (calc-do-grab-rectangle):
8841 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
8842 Replace `string-to-int' by `string-to-number'.
8843
8844 2005-05-02 Kim F. Storm <storm@cua.dk>
8845
8846 * kmacro.el: Use executing-kbd-macro-index variable.
8847
8848 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
8849
8850 * net/rlogin.el (rlogin-parse-words): Delete func.
8851 (rlogin): Use split-string, not rlogin-parse-words.
8852 Also, if there are option-like elements in the parsed args,
8853 take the host to be the first arg immediately following them.
8854 Suggested by Michael Mauger.
8855
8856 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
8857
8858 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
8859
8860 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
8861
8862 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
8863 (cc-mode-cpp-program): Rename to cc-define-list-program and
8864 move to cc-vars.el.
8865
8866 * progmodes/cc-vars.el (cc-define-list-program):
8867 Change to "gcc -E -dM -". Make customizable.
8868
8869 2005-05-02 Kim F. Storm <storm@cua.dk>
8870
8871 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
8872
8873 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
8874
8875 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
8876
8877 * international/mule-util.el (truncate-string): Remove alias and
8878 obsolete declaration.
8879
8880 * international/mule-cmds.el (update-iso-coding-systems):
8881 Remove alias and obsolete declaration.
8882
8883 * international/mule.el (coding-system-parent): Remove alias and
8884 obsolete declaration.
8885
8886 * subr.el (define-function, sref): Remove aliases and obsolete
8887 declarations.
8888 (chars-in-region): Remove obsolete declaration.
8889
8890 2005-05-01 Richard M. Stallman <rms@gnu.org>
8891
8892 * info.el (Info-mode): Set widen-automatically to nil, locally.
8893
8894 * simple.el (widen-automatically): New variable.
8895 (pop-global-mark): Obey widen-automatically.
8896
8897 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
8898
8899 * term/xterm.el (function-key-map): Call substitute-key-definition
8900 before the keymap size is increased by a lot of define-key calls.
8901
8902 2005-05-01 Richard M. Stallman <rms@gnu.org>
8903
8904 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
8905 Rename ARG to ELEMENT. Doc fix.
8906
8907 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
8908
8909 * allout.el (allout-exposure): Remove macro and obsolete declaration.
8910 Remove references to allout-exposure/change to allout-new-exposure.
8911
8912 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
8913 bytecode symbols.
8914
8915 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
8916 (compiled-function-p, focus-frame, unfocus-frame):
8917 Remove aliases and obsolete declarations.
8918 Back out inadvertent changes from previous commit.
8919
8920 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
8921
8922 * files.el (require-final-newline): Make Custom tags consistent
8923 with mode-require-final-newline.
8924 (mode-require-final-newline): Doc fix.
8925
8926 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8927
8928 * international/latexenc.el (latexenc-find-file-coding-system):
8929 Fix regular expressions.
8930
8931 2005-05-01 David Kastrup <dak@gnu.org>
8932
8933 * international/latexenc.el (latexenc-find-file-coding-system):
8934 Fix regular expressions.
8935
8936 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
8937
8938 * subr.el (string-to-int): Make obsolete.
8939
8940 2005-04-30 Richard M. Stallman <rms@gnu.org>
8941
8942 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
8943
8944 * loadup.el: load jka-comp-hook.
8945
8946 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
8947 (jka-compr-handler): Add autoload. `put' calls moved
8948 to jka-comp-hook.el.
8949 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
8950 (jka-compr-inhibit): Autoload.
8951
8952 * jka-comp-hook.el: New file.
8953 Enable the mode by default.
8954
8955 * files.el (backup-buffer-copy): Use copy-file instead
8956 of write-region, and put back the 'excl.
8957
8958 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
8959
8960 * progmodes/flymake.el (flymake-split-string)
8961 (flymake-split-string, flymake-log, flymake-pid-to-names)
8962 (flymake-reg-names, flymake-get-source-buffer-name)
8963 (flymake-unreg-names, flymake-add-line-err-info)
8964 (flymake-add-err-info): Clarify docstrings.
8965 (flymake-popup-menu, flymake-make-emacs-menu)
8966 (flymake-make-xemacs-menu): Add docstrings.
8967 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
8968 Set variables directly throughout.
8969
8970 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
8971
8972 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
8973 exists. Initialize cc-define-alist.
8974 (c-mode): Add cc-create-define-alist locally to after-save-hook.
8975 If there is no file (Macroexpansion) don't create an alist.
8976
8977 2005-04-29 Sam Steingold <sds@gnu.org>
8978
8979 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
8980 (cc-create-define-alist): Use it instead of the hard-coded string.
8981
8982 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8983
8984 * international/mule-conf.el (file-coding-system-alist): Fix regexp
8985 for latexenc.
8986
8987 2005-04-29 Lute Kamstra <lute@gnu.org>
8988
8989 * emacs-lisp/generic.el: Improve commentary section.
8990 (define-generic-mode): Improve docstring.
8991
8992 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
8993
8994 * textmodes/org.el (many places): Change to quiet the byte compiler.
8995 (org-prefix-format-compiled): New variable.
8996 (org-compile-prefix-format): New function.
8997 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
8998 (org-agenda-prefix-format,org-timeline-prefix-format): New options.
8999 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
9000 (org-get-entries-from-diary): Use `org-get-time-of-day' for
9001 consistency with entries from `org-mode' files.
9002 (org-get-time-of-day): Fix bug with partial matches early in a line.
9003 (org-non-link-chars): New constant.
9004 (org-link-regexp): Respect `org-non-link-chars'.
9005 (org-agenda-day-view): Remove command.
9006 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
9007 (org-follow-bbdb-link, org-store-link): Search also company field.
9008 (org-highlight-overlay): New variable.
9009 (org-highlight, org-unhighlight): New functions.
9010 (org-agenda-mode): Add pre-command-hook to remove highlight.
9011 (org-evaluate-time-range): Behavior depends upon whether time stamp
9012 contains a time or not.
9013 (org-show-subtree, org-show-entry): New functions.
9014 (org-agenda-cleanup-fancy-diary): Remove empty lines.
9015
9016 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
9017
9018 * comint.el (comint-output-filter-functions): Add autoload cookie.
9019
9020 2005-04-28 Kim F. Storm <storm@cua.dk>
9021
9022 * ido.el (ido-everywhere): Fix last change.
9023
9024 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
9025
9026 * international/latexenc.el: New file.
9027 * international/mule-conf.el (file-coding-system-alist): For .tex,
9028 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
9029
9030 2005-04-28 Lute Kamstra <lute@gnu.org>
9031
9032 * font-lock.el (font-lock-add-keywords)
9033 (font-lock-remove-keywords): Clarify docstring.
9034 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
9035 Don't start docstrings with a `*'.
9036 (font-lock-update-removed-keyword-alist): Give it a docstring.
9037
9038 * generic-x.el: Update commentary section.
9039 Only require font-lock when compiling.
9040 Define all modes conditionally.
9041 Place all generic modes in the generic-x-modes customization group.
9042 (generic-x-modes): New customization group.
9043 (generic-default-modes, generic-mswindows-modes)
9044 (generic-unix-modes, generic-other-modes): New constants.
9045 (generic-define-mswindows-modes, generic-define-unix-modes):
9046 Update docstrings. Make them obsolete.
9047 (generic-extras-enable-list): New default value. Update docstring.
9048 Improve :type. Change :set function.
9049 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
9050 Fix docstring.
9051
9052 * emacs-lisp/generic.el (generic-mode-internal):
9053 Simplify font-lock-defaults.
9054 (define-generic-mode): Fix docstring.
9055
9056 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
9057
9058 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
9059 font-lock-face property to highlight matches.
9060
9061 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
9062
9063 * progmodes/cc-mode.el (cc-create-define-alist): New function.
9064 (cc-define-alist): New variable.
9065 (c-mode): Make it local and initialize it.
9066
9067 * progmodes/gdb-ui.el (gdb-active-process): New variable.
9068 (gdb-exited): New function.
9069 (gdb-annotation-rules): Use it.
9070 (gdb-starting): Set gdb-active-process to t.
9071 (gdb-stopping): Amend doc string.
9072 (gdb-reset): Set gdb-active-process to nil.
9073
9074 * tooltip.el (tooltip-gud-tips): Show the associated #define
9075 directives when a C program under GDB is not executing.
9076
9077 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
9078
9079 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
9080 font-lock-fontify-syntactic-keywords.
9081
9082 * font-lock.el (font-lock-default-fontify-region): Don't force
9083 parse-sexp-lookup-properties to nil.
9084
9085 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
9086
9087 * man.el (man-mode-syntax-table): Set up `:' to have
9088 word-constituent syntax.
9089
9090 2005-04-27 Lute Kamstra <lute@gnu.org>
9091
9092 * novice.el (disable-command): Don't add spurious newlines to the
9093 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
9094
9095 2005-04-26 Jay Belanger <belanger@truman.edu>
9096
9097 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
9098 than one window before deleting window.
9099
9100 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
9101
9102 * shell.el (shell-prompt-pattern): Doc fix.
9103 (shell-mode): Set paragraph-separate buffer locally to "\\'".
9104
9105 * comint.el (comint-prompt-regexp, comint-get-old-input)
9106 (comint-use-prompt-regexp)
9107 (comint-use-prompt-regexp-instead-of-fields)
9108 (comint-replace-by-expanded-history, comint-send-input)
9109 (comint-output-filter, comint-get-old-input-default)
9110 (comint-line-beginning-position, comint-bol, comint-show-output)
9111 (comint-backward-matching-input, comint-forward-matching-input)
9112 (comint-next-prompt, comint-previous-prompt):
9113 Rename `comint-use-prompt-regexp-instead-of-fields' to
9114 `comint-use-prompt-regexp'. Keep old name as alias and declare
9115 obsolete.
9116 (comint-use-prompt-regexp): Shorten first line of doc string.
9117
9118 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
9119 Set paragraph-separate buffer locally to "\\'".
9120
9121 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
9122 Adapt to above name change.
9123
9124 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
9125 (smbclient-prompt-regexp): Ditto.
9126
9127 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
9128
9129 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
9130
9131 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
9132 gdb-location-list.
9133 Break lines that are over 80 characters wide.
9134
9135 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
9136
9137 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
9138 New fun and var, to preserve compatibility.
9139
9140 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
9141
9142 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
9143
9144 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
9145 name to file-newer-than-file-p.
9146
9147 2005-04-26 Richard M. Stallman <rms@gnu.org>
9148
9149 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
9150
9151 * progmodes/python.el (python-mode):
9152 Use new name eldoc-documentation-function.
9153
9154 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
9155
9156 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
9157 (eldoc-documentation-function):
9158 Rename from eldoc-print-current-symbol-info-function. Calls changed.
9159
9160 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
9161
9162 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
9163
9164 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9165
9166 * term/xterm.el (function-key-map): Fix strings for
9167 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
9168 {C,S,A,C-S}-{f1-f12}.
9169
9170 2005-04-26 Kenichi Handa <handa@m17n.org>
9171
9172 * international/mule-cmds.el (select-safe-coding-system):
9173 Fix previous change.
9174
9175 2005-04-26 Lute Kamstra <lute@gnu.org>
9176
9177 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
9178
9179 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
9180 (font-lock-comment-delimiter-face): Ditto.
9181
9182 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
9183
9184 2005-04-25 Jay Belanger <belanger@truman.edu>
9185
9186 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
9187 to t while inserting information; use help-mode.
9188
9189 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9190
9191 * term.el (ansi-term-color-vector): Use the xterm colors.
9192 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
9193
9194 2005-04-25 Lute Kamstra <lute@gnu.org>
9195
9196 * font-core.el (font-lock-defaults): Fix docstring.
9197
9198 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
9199
9200 2005-04-25 Kenichi Handa <handa@m17n.org>
9201
9202 * international/mule-cmds.el (select-safe-coding-system):
9203 Don't check consistency with coding: spec, etc if raw-text or
9204 no-conversion was found to be safe.
9205
9206 2005-04-24 Richard M. Stallman <rms@gnu.org>
9207
9208 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
9209 citation markers at start of each line.
9210
9211 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
9212 citation markers at start of each line.
9213
9214 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
9215
9216 * files.el (mode-require-final-newline): Fix previous change.
9217 (require-final-newline): Fix type label.
9218
9219 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
9220
9221 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
9222 statement in buffer (broken by 2004-11-24 change).
9223
9224 2005-04-24 Kim F. Storm <storm@cua.dk>
9225
9226 * ido.el (ido-everywhere): Save and restore old read-buffer-function
9227 and read-file-name-function values. Don't overwrite existing
9228 non-nil values if ido-mode is enabled without ido-everywhere.
9229
9230 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
9231
9232 * files.el (mode-require-final-newline): Minor doc fix.
9233
9234 2005-04-24 Eli Zaretskii <eliz@gnu.org>
9235
9236 * subr.el (syntax-after): Doc fix.
9237 (syntax-class): If argument is nil, return nil. Mask off upper 16
9238 bits, not 8 bits.
9239
9240 * files.el (mode-require-final-newline): Doc fix.
9241 (backup-buffer-copy): Fix last change.
9242
9243 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9244
9245 * term/mac-win.el: Require select. Set selection-coding-system to
9246 mac-system-coding-system. Call menu-bar-enable-clipboard.
9247 (x-last-selected-text-clipboard, x-last-selected-text-primary)
9248 (x-select-enable-clipboard): New variables.
9249 (x-select-text, x-get-selection, x-selection-value)
9250 (x-get-selection-value, mac-select-convert-to-string)
9251 (mac-services-open-file, mac-services-open-selection)
9252 (mac-services-insert-text): New functions.
9253 (CLIPBOARD, FIND): Put mac-scrap-name property.
9254 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
9255 (public.tiff): Put mac-ostype property.
9256 (selection-converter-alist): Add entries for them.
9257 (mac-application-menu-map): New keymap.
9258 (interprogram-cut-function, interprogram-paste-function): Set to
9259 x-select-text and x-get-selection-value, respectively.
9260 (split-window-keep-point): Set to t.
9261
9262 2005-04-23 Richard M. Stallman <rms@gnu.org>
9263
9264 * files.el (read-directory-name): Always pass non-nil
9265 DEFAULT-FILENAME arg to read-file-name.
9266 (backup-buffer-copy, basic-save-buffer-2): Take care against
9267 writing thru an unexpected existing symlink.
9268 (revert-buffer): In indirect buffer, revert the base buffer.
9269 (magic-mode-alist): Doc fix.
9270 (buffer-stale-function): Doc fix.
9271 (minibuffer-with-setup-hook): Avoid warning.
9272 (mode-require-final-newline): Doc and custom fix.
9273
9274 * follow.el (follow-end-of-buffer): Use with-no-warnings.
9275
9276 * font-lock.el (font-lock-comment-face): On terminals with few colors,
9277 use the default appearance.
9278 (font-lock-comment-delimiter-face): New face, new variable.
9279
9280 * imenu.el (imenu--generic-function): The official position of a
9281 definition is the start of the line that BEG is in.
9282
9283 * midnight.el (midnight-timer): Move defvar up.
9284
9285 * mouse.el (mouse-drag-region-1): Delete some debugging code.
9286
9287 * saveplace.el (save-place-to-alist): Use with-no-warnings.
9288
9289 * startup.el (command-line): Use with-no-warnings.
9290
9291 * window.el (window-size-fixed): New defvar.
9292
9293 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
9294
9295 * mail/rmail.el (rmail-font-lock-keywords):
9296 Use font-lock-comment-delimiter-face.
9297
9298 * mail/sendmail.el (mail-font-lock-keywords):
9299 Use font-lock-comment-delimiter-face.
9300
9301 * progmodes/compile.el (next-error-highlight-timer): New defvar.
9302
9303 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
9304
9305 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9306 Specify t for LAXMATCH when matching directories.
9307 Save match data around compilation-compat-error-properties form.
9308
9309 2005-04-23 David Kastrup <dak@gnu.org>
9310
9311 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
9312 Mention that the autoloaded aliases should be kept for AUCTeX.
9313
9314 2005-04-23 Andreas Schwab <schwab@suse.de>
9315
9316 * isearch.el (isearch-forward): Doc fix.
9317
9318 2005-04-23 Eli Zaretskii <eliz@gnu.org>
9319
9320 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
9321 (jit-lock-stealth-nice): Change default value to 0.5.
9322
9323 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
9324
9325 * abbrev.el (write-abbrev-file): Write table entries in
9326 alphabetical order by table name.
9327
9328 2005-04-22 Kim F. Storm <storm@cua.dk>
9329
9330 * ido.el (ido-read-internal): Fix `list' completion.
9331
9332 2005-04-22 Kenichi Handa <handa@m17n.org>
9333
9334 * recentf.el (recentf-save-file-coding-system): New variable.
9335 (recentf-save-list): Encode the file by
9336 recentf-save-file-coding-system and add coding: tag.
9337
9338 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
9339
9340 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
9341
9342 2005-04-21 Lute Kamstra <lute@gnu.org>
9343
9344 * loadhist.el (unload-feature): Don't remove a function from hooks
9345 if it is about to be restored to an autoload . Remove functions
9346 that will become unbound from auto-mode-alist. Simplify the code.
9347
9348 * subr.el (assq-delete-all): New implementation that is linear,
9349 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
9350 (rassq-delete-all): New function.
9351
9352 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
9353 Add size-indication-mode.
9354
9355 2005-04-21 Kenichi Handa <handa@m17n.org>
9356
9357 * international/mule-cmds.el: Add autoload for widget-value in
9358 eval-when-compile.
9359
9360 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
9361
9362 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
9363 Add tooltip-mode.
9364
9365 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
9366
9367 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
9368
9369 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
9370 (inferior-lisp-filter-regexp, inferior-lisp-program)
9371 (inferior-lisp-load-command, inferior-lisp-prompt)
9372 (inferior-lisp-mode-hook, lisp-source-modes)
9373 (inferior-lisp-load-hook): defvar->defcustom.
9374 (inferior-lisp-program, inferior-lisp-prompt)
9375 (inferior-lisp-load-hook): Doc fixes.
9376 (inferior-lisp-install-letter-bindings): Small change in
9377 introductory comment.
9378
9379 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
9380
9381 * vc.el (vc-annotate-color-map): Change some colors so that text
9382 using them as foreground is readable on both white and black
9383 backgrounds.
9384
9385 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9386
9387 * international/mule-conf.el (translation-table-for-input):
9388 Remove redundant declaration.
9389
9390 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
9391
9392 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
9393
9394 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
9395 (tooltip-toggle-gud-tips): New function.
9396
9397 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9398
9399 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
9400 right angle brackets.
9401
9402 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
9403
9404 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
9405
9406 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9407
9408 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
9409 Remove. Update callers to use expand-file-name instead.
9410
9411 * subr.el (syntax-class): New function.
9412
9413 * simple.el (blink-matching-open): Use it.
9414
9415 * paren.el (show-paren-function): Use it to recognize parens that are
9416 also used in 2-char comment markers.
9417
9418 2005-04-19 Lute Kamstra <lute@gnu.org>
9419
9420 * loadhist.el (unload-feature): Update for new format of
9421 load-history. Simplify the code.
9422
9423 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9424
9425 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
9426 (mac-add-charset-info): New function. Initialize variable
9427 mac-charset-info-alist using it.
9428 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
9429 for translation.
9430 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
9431 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
9432 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
9433 New CCL programs.
9434
9435 2005-04-19 Kim F. Storm <storm@cua.dk>
9436
9437 * simple.el (next-buffer, prev-buffer, next-error)
9438 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
9439 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
9440
9441 * bindings.el (next-buffer, prev-buffer, next-error)
9442 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
9443 (clone-indirect-buffer-other-window): Move bindings from simple.el.
9444 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
9445 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
9446
9447 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9448
9449 * isearch.el (isearch-edit-string): Make the search-ring available for
9450 minibuffer history commands.
9451 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
9452 the default history commands now work just as well.
9453 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
9454
9455 2005-04-18 Kim F. Storm <storm@cua.dk>
9456
9457 * emulation/cua-base.el (cua--pre-command-handler): Add more
9458 elaborate check for shift modifier on non-window systems.
9459
9460 2005-04-18 Lars Hansen <larsh@math.ku.dk>
9461
9462 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
9463
9464 2005-04-18 Kim F. Storm <storm@cua.dk>
9465
9466 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
9467 and make it optional. Don't test tooltip-gud-echo-area here.
9468 (tooltip-gud-process-output, gdb-tooltip-print):
9469 Pass tooltip-gud-echo-area to tooltip-show.
9470 (tooltip-help-tips): Remove second optional arg to tooltip-show.
9471
9472 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9473
9474 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
9475 `display-graphic-p' may not be bound yet.
9476
9477 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
9478
9479 * startup.el (command-line): No longer enable Xterm Mouse mode by
9480 default in terminals compatible with xterm.
9481
9482 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
9483
9484 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
9485
9486 * tooltip.el (tooltip-gud-echo-area): Rename from
9487 tooltip-use-echo-area.
9488 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
9489 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
9490 area independently of where help tooltips are displayed.
9491
9492 2005-04-17 David Kastrup <dak@gnu.org>
9493
9494 * cus-theme.el (custom-theme-write-variables): Quote variables
9495 where necessary.
9496
9497 2005-04-17 Richard M. Stallman <rms@gnu.org>
9498
9499 * simple.el (yank-excluded-properties): Add follow-link to value.
9500
9501 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
9502
9503 * startup.el (fancy-splash-max-time): Just 30 seconds.
9504 (fancy-splash-delay): Just 7.
9505 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
9506
9507 * loadhist.el (unload-feature): Update for new format of load-history.
9508 Simplify the code.
9509
9510 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
9511 (rmail-font-lock-keywords): Don't fontify the text of a citation.
9512
9513 * mail/sendmail.el (mail-font-lock-keywords):
9514 Don't fontify subject text.
9515 Don't fontify the text of a citation.
9516
9517 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
9518
9519 * comint.el (comint-output-filter): Run comint-output-filter-functions
9520 with point where the user had it.
9521
9522 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
9523
9524 * international/ucs-tables.el (ucs-set-table-for-input):
9525 Disable when using unify-on-decoding.
9526
9527 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9528
9529 * emulation/cua-base.el (cua-global-mark-face): Add special case
9530 for displays supporting a high number of colors.
9531
9532 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
9533
9534 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
9535
9536 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
9537
9538 * filesets.el (filesets-add-buffer): If user supplies a name of a
9539 non-existing fileset, create a new fileset.
9540
9541 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
9542
9543 * textmodes/org.el (org-up-heading-all): Fix bug with
9544 `outline-up-heading-all'.
9545
9546 2005-04-16 Andreas Schwab <schwab@suse.de>
9547
9548 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
9549 /etc/permissions.d/* and /etc/aliases.d/*.
9550
9551 2005-04-16 Kenichi Handa <handa@m17n.org>
9552
9553 * international/code-pages.el (cp-make-coding-system):
9554 Set `translation-table-for-input' property value to the symbol
9555 ucs-mule-to-mule-unicode, not to that value.
9556 (pt154): Escape guillemet by `\'.
9557
9558 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
9559
9560 * loadup.el: Load tooltip if x-show-tip is fboundp.
9561
9562 * startup.el (command-line): Add comment.
9563
9564 * tooltip.el (tooltip-mode): Specify correct standard value for
9565 Custom in init-value.
9566
9567 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
9568
9569 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
9570 possible.
9571
9572 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
9573
9574 * textmodes/org.el (org-agenda-date-prompt): Rename from
9575 `org-agenda-date-today'.
9576 (org-evaluate-time-range): Insert at point instead of directly
9577 after time range.
9578 (org-first-headline-recenter, org-subtree-end-visible-p)
9579 (org-optimize-window-after-visibility-change): New functions
9580 (org-agenda-post-command-hook): Don't allow point at end of line,
9581 to make sure it always hits the text properties.
9582 (org-agenda-next-date-line, org-agenda-previous-date-line):
9583 New commands.
9584 (org-set-regexps-and-options): Category may contain white space.
9585 (org-agenda-get-deadlines, org-agenda-get-scheduled):
9586 Improve marker positions.
9587 (org-agenda-new-marker): Argument POS made optional.
9588 (org-agenda-get-timestamps): Deadlines which are done are listed
9589 in org-done-face now.
9590 (org-agenda-get-todos, org-agenda-get-timestamps)
9591 (org-agenda-get-deadlines, org-agenda-get-scheduled):
9592 Set `undone-face' and `done-face' properties.
9593 (org-last-todo-state-is-todo): New variable.
9594 (org-todo): Set `org-last-todo-state-is-todo'.
9595 (org-agenda-todo): Change face according to
9596 `org-last-todo-state-is-todo'. And change other lines referring to
9597 the same entry.
9598 (org-calendar-goto-agenda): New command.
9599 (org-calendar-to-agenda-key): New option.
9600 (org-startup-folded): New allowed value `content'.
9601 (org-set-regexps-and-options): Accept new value `content' for
9602 `org-startup-folded'.
9603 (org-get-current-options): Handle new value `content' for
9604 `org-startup-folded'.
9605 (org-insert-todo-heading): New command.
9606 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
9607 interactively in empty file and option
9608 `org-insert-mode-line-in-empty-file' has been set.
9609 (org-agenda-todo,org-agenda-priority): Modify to use
9610 `org-agenda-change-all-lines'.
9611 (org-warning-face): Change color on dark background
9612
9613 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9614
9615 * international/mule-cmds.el (set-locale-environment): On Mac OS,
9616 use preferences AppleLocale and AppleLanguages, and variable
9617 mac-system-locale for default locale. On Mac OS Classic, use
9618 mac-system-coding-system for default coding systems.
9619
9620 * term/mac-win.el: Don't set file-name-coding-system.
9621 Decode variables system-name, emacs-build-system, user-login-name, and
9622 user-full-name by mac-system-coding-system on Mac OS Classic.
9623 (mac-system-coding-system): New variable.
9624
9625 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
9626
9627 * startup.el (command-line): Handle `xterm-mouse-mode' before
9628 reading init file.
9629
9630 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
9631
9632 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
9633
9634 * progmodes/sh-script.el (sh-here-document-word): Make it a
9635 defcustom. Doc fix.
9636 (sh-add): Bash uses $(( )) for arithmetic.
9637 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
9638 (sh-maybe-here-document): Remove quotes and leading whitespace
9639 from heredoc word when closing. Indent heredoc with tabs if word
9640 starts with "-".
9641
9642 2005-04-13 Richard M. Stallman <rms@gnu.org>
9643
9644 * simple.el (undo): Fix previous change.
9645
9646 * custom.el (defface): Doc fix.
9647
9648 2005-04-13 Lute Kamstra <lute@gnu.org>
9649
9650 * Makefile.in (DONTCOMPILE): Remove list.
9651 (compile, compile-always): Don't use DONTCOMPILE.
9652 (update-authors): Load the library in which batch-update-authors
9653 is defined.
9654 * makefile.w32-in (DONTCOMPILE): Remove list.
9655 (compile, compile-always): Fix comments.
9656 (update-authors): Load the library in which batch-update-authors
9657 is defined.
9658
9659 * generic-x.el (generic-mode-ini-file-find-file-hook):
9660 Rename to ini-generic-mode-find-file-hook.
9661 Keep generic-mode-ini-file-find-file-hook as an alias.
9662 (ini-generic-mode-find-file-hook): Rename from
9663 generic-mode-ini-file-find-file-hook. Fix docstring.
9664 (ini-generic-mode): Docstring change.
9665 (bat-generic-mode-run-as-comint): Silence the byte compiler.
9666
9667 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
9668 called from lisp.
9669
9670 * generic.el: Move to the emacs-lisp subdir.
9671
9672 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9673
9674 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
9675 and C-S- function and cursor motion keys.
9676
9677 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
9678
9679 * startup.el (command-line): Enable Xterm Mouse mode by default.
9680 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
9681 for Custom. No longer show "Mouse" in mode line when enabled.
9682 Doc fix.
9683
9684 2005-04-12 Kim F. Storm <storm@cua.dk>
9685
9686 * emulation/cua-base.el (cua-rectangle-face)
9687 (cua-rectangle-noselect-face): Define face attributes here.
9688
9689 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
9690
9691 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9692
9693 * startup.el (command-line): Turn off blinking cursor if
9694 cursorBlink in resources is off or false.
9695
9696 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9697
9698 * term/mac-win.el (dnd): Require dnd.
9699 (mac-drag-n-drop): Call dnd-handle-one-url.
9700 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
9701 (kTextEncodingISOLatin2): Remove constants.
9702 (mac-script-code-coding-systems): New constant.
9703 (mac-handle-language-change): New function.
9704 (special-event-map): Bind it to `language-change' event.
9705 (mac-centraleurroman, mac-cyrillic): New coding systems.
9706 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
9707 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
9708 and mac-cyrillic-encoder to encode-mac-centraleurroman and
9709 encode-mac-cyrillic, respectively.
9710
9711 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
9712
9713 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
9714 Don't set overlay-arrow-string to "=>" as this is done
9715 globally in C now.
9716
9717 2005-04-12 Lute Kamstra <lute@gnu.org>
9718
9719 * generic-x.el (rc-generic-mode, rul-generic-mode):
9720 Fix auto-mode-alist entries.
9721 (etc-fstab-generic-mode): Tweak fontification.
9722
9723 * generic.el (generic-make-keywords-list): Fix docstring.
9724 (generic-mode-internal): Simplify generic-font-lock-keywords.
9725
9726 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
9727
9728 * whitespace.el (whitespace-buffer-leading)
9729 (whitespace-buffer-trailing): Revert the incorrect test inversion.
9730 However, fix the highlight area for the leading and
9731 trailing whitespaces to show space.
9732
9733 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
9734
9735 * whitespace.el (whitespace-version): Bump to 3.5
9736
9737 (whitespace-buffer-leading, whitespace-buffer-trailing):
9738 Invert sense of the test to highlight the whitespace.
9739
9740 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
9741
9742 * progmodes/gud.el (gud-display-line): GUD uses its own
9743 overlay arrow now so don't set overlay-arrow-string.
9744 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
9745
9746 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
9747
9748 * term.el (term-ansi-current-bold, term-ansi-current-underline)
9749 (term-ansi-current-reverse, term-ansi-current-invisible)
9750 (term-ansi-face-already-done): Change to boolean.
9751 (term-reset-terminal, term-handle-colors-array): Handle the above
9752 vars accordingly.
9753 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
9754 (term-emulate-terminal): Use the new name.
9755
9756 * faces.el (secondary-selection): Use yellow1, not yellow.
9757 (trailing-whitespace): Use red1, not red.
9758
9759 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9760
9761 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
9762 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
9763 (dired-dnd-handle-file): Call dnd-get-local-file-uri
9764
9765 * cus-edit.el (dnd): New group.
9766
9767 * term/w32-win.el (dnd): Require dnd
9768 (w32-drag-n-drop): Call dnd-handle-one-url.
9769
9770 * x-dnd.el: Require dnd.
9771 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
9772 Call dnd-handle-one-url.
9773 (x-dnd-types-alist, x-dnd-insert-utf8-text)
9774 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
9775 to dnd-insert-text.
9776 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
9777 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
9778 (x-dnd-get-local-file-name, x-dnd-open-local-file)
9779 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
9780
9781 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
9782
9783 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
9784
9785 * wdired.el: Doc fixes.
9786 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
9787 (wdired-use-dired-vertical-movement): Rename from
9788 wdired-always-move-to-filename-beginning.
9789 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
9790 (wdired-change-to-wdired-mode): Change mode name.
9791 (wdired-newline): Delete.
9792
9793 2005-04-11 Richard M. Stallman <rms@gnu.org>
9794
9795 * whitespace.el (whitespace-highlight-the-space):
9796 Don't call whitespace-unhighlight-the-space here.
9797
9798 * simple.el (undo): Record t in undo-equiv-table
9799 for the redo record made by an undo-in-region.
9800
9801 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
9802
9803 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
9804 (gdb-frame-inferior-io-buffer): New Functions to control
9805 display of separate IO buffer.
9806 (menu): Add them to menu-bar.
9807 (gdb-display-buffer): Check for buffer another frame.
9808 Protect GUD buffer.
9809 (gdb-setup-windows): Create IO buffer if not already there.
9810 (gdb-memory-mode): Remove purecopy noops.
9811
9812 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9813
9814 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
9815 and pass to self-insert-command.
9816
9817 2005-04-11 Lute Kamstra <lute@gnu.org>
9818
9819 * generic.el: Commentary section cleanup.
9820 (generic): Delete.
9821 (generic-use-find-file-hook, generic-lines-to-scan)
9822 (generic-find-file-regexp, generic-ignore-files-regexp)
9823 (default-generic-mode, generic-mode-find-file-hook)
9824 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
9825 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
9826 (generic-use-find-file-hook, generic-lines-to-scan)
9827 (generic-find-file-regexp, generic-ignore-files-regexp)
9828 (default-generic-mode, generic-mode-find-file-hook)
9829 (generic-mode-ini-file-find-file-hook): Move from generic.el.
9830
9831 2005-04-10 Karl Fogel <kfogel@red-bean.com>
9832
9833 * bookmark.el (bookmark-write-file): Catch errors writing file.
9834 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
9835
9836 2005-04-10 Richard M. Stallman <rms@gnu.org>
9837
9838 * startup.el (fancy-splash-tail): Update copyright year.
9839 (command-line): Split part of -Q into -D.
9840 (emacs-basic-display): New defvar.
9841 (fancy-splash-text): Correct name of menu item.
9842
9843 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
9844
9845 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
9846 lines in one node.
9847
9848 * comint.el (comint-send-input): New arg ARTIFICIAL.
9849 Callers in this file changed.
9850
9851 * abbrev.el (define-abbrevs): Read system abbrevs properly.
9852
9853 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
9854
9855 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
9856
9857 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
9858 `ldap-search-internal'.
9859
9860 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9861
9862 * files.el (set-auto-mode-1): Use line-end-position.
9863
9864 * international/latin-1.el:
9865 * international/latin-2.el:
9866 * international/latin-3.el:
9867 * international/latin-4.el:
9868 * international/latin-5.el:
9869 * international/latin-8.el:
9870 * international/latin-9.el: Give punctuation syntax to NBSP.
9871
9872 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
9873 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
9874 Use char-classes to accept non-ascii letters, accepted in some recent
9875 bibtex implementations.
9876
9877 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
9878
9879 * custom.el (custom-set-minor-mode): Any non-nil value for the
9880 variable should enable the mode when set through Custom.
9881
9882 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9883
9884 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
9885 TAB binding so tab-always-indent is obeyed.
9886 (vhdl-minibuffer-local-map): Move initialization into declaration.
9887 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
9888 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
9889 (vhdl-hooked-abbrev): Avoid test for XEmacs.
9890 (vhdl-current-line): Use line-beginning-position.
9891 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
9892 with-output-to-temp-buffer, so the current position can be recorded.
9893
9894 2005-04-10 Masatake YAMATO <jet@gyve.org>
9895
9896 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9897 Add regexp for gcov.
9898
9899 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
9900
9901 * calendar/time-date.el (time-to-seconds, seconds-to-time)
9902 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
9903 syntax which Emacs 20 doesn't support.
9904
9905 2005-04-09 Richard M. Stallman <rms@gnu.org>
9906
9907 * help.el (describe-key-briefly, describe-key):
9908 Replace strings as event types with "(any string)".
9909
9910 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
9911
9912 * arc-mode.el (archive-mode-map): Move initialization into
9913 the declaration. Override *all* bindings of `undo'.
9914 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
9915
9916 2005-04-09 Jay Belanger <belanger@truman.edu>
9917
9918 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
9919
9920 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
9921
9922 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
9923 (xterm-register-default-colors): Update color values computation
9924 to match xterm-200.
9925
9926 2005-04-09 Kenichi Handa <handa@m17n.org>
9927
9928 * international/code-pages.el (iso-latin-7): Fix the map.
9929
9930 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
9931
9932 * emacs-lisp/lisp.el (defun-prompt-regexp)
9933 (parens-require-spaces, buffer-end, end-of-defun)
9934 (insert-parentheses): Doc fixes.
9935
9936 2005-04-08 Kim F. Storm <storm@cua.dk>
9937
9938 * comint.el (comint-highlight-prompt): Fix face spec.
9939 * hi-lock.el (hi-green): Likewise.
9940
9941 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
9942
9943 * cus-edit.el (custom-modified-face):
9944 * comint.el (comint-highlight-input): Fix previous changes.
9945 * term.el (term-handle-ansi-escape): Add a comment.
9946
9947 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
9948
9949 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
9950 in the buffer and in whitespace-highlighted-space.
9951 (whitespace-unhighlight-the-space): Simplify.
9952 (whitespace-buffer): Simplify.
9953
9954 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
9955
9956 * textmodes/table.el (table-cell-face): Add special case for
9957 displays supporting a high number of colors.
9958 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
9959 (vhdl-font-lock-reserved-words-face)
9960 (vhdl-speedbar-architecture-face)
9961 (vhdl-speedbar-instantiation-face)
9962 (vhdl-speedbar-architecture-selected-face)
9963 (vhdl-speedbar-instantiation-selected-face): Likewise.
9964 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
9965 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
9966 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9967 (ebrowse-root-class-face, ebrowse-member-attribute-face)
9968 (ebrowse-progress-face): Likewise.
9969 * progmodes/compile.el (compilation-info-face): Likewise.
9970 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
9971 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
9972 * calendar/calendar.el (diary-face): Likewise.
9973 * woman.el (woman-italic-face, woman-bold-face)
9974 (woman-unknown-face): Likewise.
9975 * wid-edit.el (widget-button-pressed-face): Likewise.
9976 * whitespace.el (whitespace-highlight-face): Likewise.
9977 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
9978 * pcvs-info.el (cvs-marked-face): Likewise.
9979 * info.el (info-xref): Likewise.
9980 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
9981 * hilit-chg.el (highlight-changes-face)
9982 (highlight-changes-delete-face): Likewise.
9983 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
9984 (hi-red-b): Likewise.
9985 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
9986 * font-lock.el (font-lock-keyword-face)
9987 (font-lock-function-name-face, font-lock-warning-face): Likewise.
9988 * cus-edit.el (custom-invalid-face, custom-modified-face)
9989 (custom-set-face, custom-changed-face, custom-variable-tag-face)
9990 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
9991 * comint.el (comint-highlight-prompt): Likewise.
9992
9993 2005-04-08 Lute Kamstra <lute@gnu.org>
9994
9995 * font-lock.el (font-lock-keywords): Docstring fixes.
9996
9997 2005-04-08 Kenichi Handa <handa@m17n.org>
9998
9999 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
10000 chars are more than a limit, print " and more..." at the tail.
10001
10002 2005-04-08 Kim F. Storm <storm@cua.dk>
10003
10004 * emacs-lisp/authors.el (authors-aliases): Update list.
10005 (authors-ignored-files): New list.
10006 (authors-fixed-entries): Fix typo.
10007 (authors-renamed-files-alist): Update list.
10008 (authors-add): Check authors-ignored-files.
10009
10010 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
10011
10012 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
10013 optional, to ensure backward compatibility.
10014
10015 2005-04-08 Stephen Eglen <stephen@gnu.org>
10016
10017 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
10018
10019 2005-04-08 Kim F. Storm <storm@cua.dk>
10020
10021 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
10022
10023 * mouse.el (mouse-on-link-p): Doc fix.
10024
10025 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
10026
10027 * ielm.el (ielm-prompt-read-only): Doc fix.
10028
10029 * comint.el (comint-prompt-read-only): Doc fix.
10030
10031 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
10032
10033 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
10034 ensure dired always handles wildcards passed to ffap.
10035 (find-file-at-point): Use it.
10036 (ffap-dired-wildcards): Doc fix.
10037
10038 2005-04-07 Juri Linkov <juri@jurta.org>
10039
10040 * simple.el (next-error-overlay-arrow-position): New defvar.
10041 Put "=>" on its property `overlay-arrow-string'. Add it to
10042 `overlay-arrow-variable-list'.
10043
10044 * progmodes/compile.el (compilation-setup):
10045 Set `next-error-overlay-arrow-position' to nil. Also set it to
10046 nil in the local hook `kill-buffer-hook'. Make local variable
10047 `overlay-arrow-string' and set it to "=>".
10048 (compilation-goto-locus): Set BOL position to
10049 `next-error-overlay-arrow-position' instead of
10050 `overlay-arrow-position'.
10051
10052 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
10053 locally instead of adding it to the global hook.
10054 (Info-kill-buffer): Move up.
10055
10056 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
10057
10058 * term/xterm.el (xterm-standard-colors): Update color values from
10059 xterm-200.
10060
10061 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
10062
10063 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
10064
10065 * fast-lock.el:
10066 * lazy-lock.el: Move them to the obsolete subdir.
10067
10068 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
10069
10070 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
10071 (wdired-add-replace-advice): Remove.
10072 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
10073
10074 2005-04-06 Kim F. Storm <storm@cua.dk>
10075
10076 * startup.el (command-line): Add --bare-bones alias for -Q.
10077
10078 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10079
10080 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
10081 create the startup fontset if a font specification ends with
10082 `mac-roman'.
10083
10084 2005-04-06 Lute Kamstra <lute@gnu.org>
10085
10086 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
10087 change.
10088
10089 * emacs-lisp/copyright.el (copyright-update-year): Replace the
10090 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
10091
10092 2005-04-05 Lute Kamstra <lute@gnu.org>
10093
10094 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
10095 (define-generic-mode): Ditto. Fix debug declaration.
10096
10097 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
10098 Put them in the generic-x group.
10099
10100 * calendar/timeclock.el (timeclock): Doc fix.
10101
10102 * generic.el (define-generic-mode): Don't use custom-current-group.
10103 Document default :group value.
10104 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
10105 (define-global-minor-mode): Don't use custom-current-group.
10106
10107 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
10108
10109 * startup.el (command-line-1): Display startup-echo-area-message
10110 when fancy splash screen is in use.
10111
10112 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
10113 (sh-escaped-newline): New face.
10114 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
10115 newline, and use sh-escaped-newline face.
10116
10117 * progmodes/tcl.el (tcl-escaped-newline): New face.
10118 (tcl-builtin-list): New variable.
10119 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
10120 newlines. Fix keywords subexpression number.
10121
10122 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
10123
10124 * textmodes/org.el (org-diary-default-entry): Fix call to
10125 `add-to-diary-entry'.
10126
10127 2005-04-05 Kim F. Storm <storm@cua.dk>
10128
10129 * ediff-init.el: Use (featurep 'xemacs).
10130
10131 2005-04-05 David Ponce <david@dponce.com>
10132
10133 * cus-edit.el (face): Derive from symbol widget. Display sample
10134 of the current face on the fly.
10135 (widget-face-sample-face-get, widget-face-notify): New functions.
10136 (widget-face-value-create): Remove.
10137
10138 * wid-edit.el (widget-field-end): Temporarily remove field
10139 narrowing before to call `get-char-property'.
10140
10141 2005-04-04 Jay Belanger <belanger@truman.edu>
10142
10143 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
10144 (math-read-subscripts): New variable.
10145 (math-read-preprocess-string): Process subscripts.
10146
10147 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
10148
10149 * comint.el (comint-prompt-read-only): Doc fix.
10150
10151 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
10152 `-1'. Doc fix.
10153
10154 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
10155
10156 * textmodes/org.el (org-insert-mode-line-in-empty-file):
10157 Change default value to nil.
10158
10159 2005-04-04 Lute Kamstra <lute@gnu.org>
10160
10161 * autorevert.el (auto-revert-mode): Specify :group.
10162 * battery.el (display-battery-mode): Specify :group.
10163 * diff-mode.el (diff-minor-mode): Specify :group.
10164 * font-core.el (font-lock-mode): Specify :group.
10165 * hl-line.el (hl-line-mode): Specify :group.
10166 * iimage.el (iimage): New customization group.
10167 (iimage-mode): Specify :group.
10168 * longlines.el (longlines-mode): Specify :group.
10169 * master.el: Don't require easy-mmode.
10170 (master): New customization group.
10171 (master-mode): Specify :group.
10172 * msb.el (msb-mode): Specify :group.
10173 * reveal.el (reveal-mode): Specify :group.
10174 * simple.el (next-error-follow-minor-mode): Specify :group.
10175 * smerge-mode.el (smerge-mode): Specify :group.
10176 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
10177 * emulation/cua-base.el (cua-mode): Specify :group.
10178 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
10179 * language/thai-util.el (thai-auto-composition-mode)
10180 (thai-word-mode): Specify :group.
10181 * mail/supercite.el (sc-minor-mode): Specify :group.
10182 * progmodes/cwarn.el (cwarn-mode): Specify :group.
10183 * progmodes/flymake.el (flymake-mode): Specify :group.
10184 * progmodes/glasses.el (glasses-mode): Specify :group.
10185 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
10186 * textmodes/enriched.el (enriched-mode): Specify :group.
10187 * textmodes/refill.el (refill-mode): Specify :group.
10188
10189 * add-log.el (change-log-font-lock-keywords): Names in
10190 parenthesized lists can contain spaces.
10191
10192 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
10193
10194 * startup.el (fancy-splash-text): Shorten default text of
10195 "Emacs Tutorial" line. Also, if the current language env
10196 indicates an available tutorial file other than TUTORIAL,
10197 extract its title and append it to the line in parentheses.
10198 (fancy-splash-insert): If arg is a thunk, funcall it.
10199
10200 2005-04-04 Jay Belanger <belanger@truman.edu>
10201
10202 * calc.el (calc-language-alist): Add tags to customization type.
10203
10204 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
10205
10206 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
10207 Doc fix.
10208
10209 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
10210
10211 * add-log.el (change-log-font-lock-keywords): The manual
10212 describing a Change Log entry, says: (...) "Aside from these
10213 header lines, every line in the change log starts with a space or
10214 a tab.". The font-lock was not highlighting lines started with
10215 spaces, added support for it.
10216
10217 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10218
10219 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
10220 (bibtex-generate-url-list): Update docstring accordingly. Put the
10221 complex example in the docstring.
10222 (bibtex-font-lock-url): Use pop.
10223
10224 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
10225
10226 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
10227
10228 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
10229
10230 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
10231
10232 * filesets.el (filesets-set-default): Doc fix.
10233
10234 2005-04-03 Lute Kamstra <lute@gnu.org>
10235
10236 * generic.el (define-generic-mode): Add argument to specify
10237 keywords for defcustom.
10238 (default-generic-mode): Specify :group.
10239
10240 * generic-x.el: Specify :group for all generic modes.
10241
10242 * desktop.el (desktop-no-desktop-file-hook)
10243 (desktop-after-read-hook): Doc fix.
10244
10245 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
10246
10247 * simple.el (visible-mode): Use explicit :group keyword.
10248 This changes the group of `visible-mode-hook' from paren-blinking
10249 to editing-basics.
10250
10251 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
10252
10253 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
10254 mailbox specifications as well as URLs.
10255 (rmail-insert-inbox-text): Remove unused conditional branches.
10256
10257 2005-04-01 Jay Belanger <belanger@truman.edu>
10258
10259 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
10260 (calc-gnuplot-print-command): Move definitions to calc.el.
10261
10262 * calc/calc-embed.el (calc-embedded-announce-formula)
10263 (calc-embedded-open-formula, calc-embedded-close-formula)
10264 (calc-embedded-open-word, calc-embedded-close-word)
10265 (calc-embedded-open-plain, calc-embedded-close-plain)
10266 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
10267 (calc-embedded-open-mode, calc-embedded-close-mode):
10268 Move definitions to calc.el.
10269
10270 * calc/calc.el (calc-settings-file, calc-language-alist):
10271 Make customizable.
10272 (calc-embedded-announce-formula, calc-embedded-open-formula)
10273 (calc-embedded-close-formula, calc-embedded-open-word)
10274 (calc-embedded-close-word, calc-embedded-open-plain)
10275 (calc-embedded-close-plain, calc-embedded-open-new-formula)
10276 (calc-embedded-close-new-formula, calc-embedded-open-mode)
10277 (calc-embedded-close-mode, calc-gnuplot-name)
10278 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
10279 from other files and make customizable.
10280
10281 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
10282
10283 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
10284 Use buffer-live-p.
10285 (cvs-mode-run): Don't call cvs-update-header here.
10286 (cvs-run-process): Call cvs-update-header.
10287 Use process properties for cvs-postprocess and cvs-buffer so that
10288 the sentinel can behave better if the temp buffer is killed.
10289 Use a pipe rather than a tty, to better handle unexpected prompts.
10290 (cvs-sentinel): Rewrite. Call cvs-update-header.
10291
10292 2005-04-01 Andre Spiegel <spiegel@gnu.org>
10293
10294 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
10295 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
10296
10297 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10298
10299 * generic.el (define-generic-mode): Add indentation rule.
10300
10301 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
10302
10303 * files.el (mode-require-final-newline): Make Custom correctly
10304 report a nil value and allow to set it to nil via Custom.
10305 Doc fix.
10306
10307 2005-04-01 Kenichi Handa <handa@m17n.org>
10308
10309 * international/characters.el: Enable the correct case setting for
10310 dotless-i and dotted-I.
10311
10312 2005-04-01 Kim F. Storm <storm@cua.dk>
10313
10314 * ido.el (ido-file-internal): Fall back to non-ido command if
10315 initial directory is on slow ftp (or tramp) host.
10316
10317 2005-03-31 Richard M. Stallman <rms@gnu.org>
10318
10319 * emacs-lisp/autoload.el (make-autoload):
10320 Handle define-global-minor-mode.
10321
10322 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
10323 Rename from easy-mmode-define-global-mode.
10324 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
10325
10326 * progmodes/scheme.el (scheme-mode-syntax-table):
10327 Update syntax of | and # for two-character comment syntax.
10328
10329 2005-03-31 Lute Kamstra <lute@gnu.org>
10330
10331 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
10332 (define-minor-mode): Call custom-current-group at load-time.
10333
10334 * generic.el (define-generic-mode): Add debug declaration.
10335 Add defcustom for the mode hook.
10336 (generic-mode-internal): Use run-mode-hooks.
10337
10338 2005-03-31 Kim F. Storm <storm@cua.dk>
10339
10340 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
10341 (mouse-fixup-help-message): New defun called by show_help_echo
10342 to fixup mouse-2 prefix in help messages when applicable.
10343
10344 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
10345
10346 2005-03-31 Kenichi Handa <handa@m17n.org>
10347
10348 * language/thai-word.el (thai-find-word-ends): Pay attention to
10349 the case that we reach the end of buffer.
10350
10351 * textmodes/fill.el (fill-text-properties-at): New function.
10352 (fill-newline): Use fill-text-properties-at instead of
10353 text-properties-at.
10354
10355 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
10356
10357 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
10358 not comint-quote-filename.
10359
10360 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
10361
10362 * help-fns.el (help-with-tutorial): Revert last change.
10363
10364 2005-03-31 Kim F. Storm <storm@cua.dk>
10365
10366 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
10367
10368 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
10369
10370 * calendar/cal-china.el: Update reference to "Calendrical
10371 Calculations" book; there's a new edition.
10372 * calendar/cal-coptic.el: Likewise.
10373 * calendar/cal-french.el: Likewise.
10374 * calendar/cal-hebrew.el: Likewise.
10375 * calendar/cal-islam.el: Likewise.
10376 * calendar/cal-iso.el: Likewise.
10377 * calendar/cal-julian.el: Likewise.
10378 * calendar/cal-mayan.el: Likewise.
10379 * calendar/cal-persia.el: Likewise.
10380 * calendar/calendar.el: Likewise.
10381 * calendar/holidays.el: Likewise.
10382 * calendar/lunar.el: Likewise.
10383 * calendar/solar.el: Likewise.
10384
10385 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
10386 white space from doc string.
10387
10388 2005-03-30 Jay Belanger <belanger@truman.edu>
10389
10390 * calc/calc-help.el (calc-full-help): Remove email address.
10391
10392 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
10393
10394 * help-fns.el (help-with-tutorial): Delete title line.
10395
10396 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
10397
10398 * calendar/cal-x.el (calendar-one-frame-setup)
10399 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
10400 rather than 'symbol for set-window-dedicated-p.
10401
10402 * calendar/appt.el (appt-buffer-name): Make it a constant.
10403 (appt-add): Doc fix.
10404
10405 * filesets.el (filesets-menu-path, filesets-menu-before)
10406 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
10407 (filesets-menu-cache-file): Use directory ~/.emacs.d.
10408 (filesets-add-submenu): Delete and use add-submenu instead.
10409
10410 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
10411
10412 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
10413 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
10414 (org-diary-default-entry): New function.
10415 (org-get-entries-from-diary): Better parsing of diary entries.
10416 (org-agenda-check-no-diary): New function.
10417 ("diary-lib"): Advice to function `add-to-diary-list', to allow
10418 linking to diary entries.
10419 (org-agenda-execute-calendar-command): New function.
10420 (org-agenda): Improve visible section in window.
10421 Use `org-fit-agenda-window'.
10422 (org-fit-agenda-window): New option.
10423 (org-move-subtree-down): Better handling of empty lines
10424 at end of subtree.
10425 (org-cycle): Numeric prefix is interpreted now as show-subtree N
10426 levels up.
10427 (org-fontify-done-headline): New option.
10428 (org-headline-done-face): New face.
10429 (org-set-font-lock-defaults): Use `org-headline-done-face'.
10430 (org-table-copy-down): Rename from `org-table-copy-from-above'.
10431 When current field is non-empty, it is copied to next row.
10432 (org-table-copy-from-above): Fix bug which made it
10433 impossible to copy fields containing only a single non-white character.
10434
10435 2005-03-30 Kim F. Storm <storm@cua.dk>
10436
10437 * kmacro.el (kmacro-end-macro): Isearch may store this command
10438 into the macro -- so ignore it when executing keyboard macro.
10439
10440 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
10441
10442 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
10443
10444 2005-03-29 Kenichi Handa <handa@m17n.org>
10445
10446 * language/thai.el ("Thai"): Set setup-function and exit-function
10447 for Thai language environment.
10448
10449 * language/thai-util.el: Require thai-word.
10450 (thai-word-mode-map): New variable.
10451 (thai-word-mode): New minor mode.
10452 (setup-thai-language-environment-internal): New function.
10453 (exit-thai-language-environment-internal): New function.
10454
10455 * language/thai-word.el (thai-word-table): Declare it by defvar,
10456 use dolist to initialize it.
10457 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
10458 (thai-fill-find-break-point): New functions.
10459
10460 2005-03-29 Richard M. Stallman <rms@gnu.org>
10461
10462 * simple.el (idle-update-delay): Move definition up.
10463 (set-mark): Doc fix.
10464
10465 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
10466
10467 * longlines.el: New file.
10468
10469 * simple.el (buffer-substring-filters): New variable.
10470 (filter-buffer-substring): New function.
10471 (kill-region, copy-region-as-kill): Use it.
10472
10473 * register.el (copy-to-register, append-to-register)
10474 (prepend-to-register): Use filter-buffer-substring.
10475
10476 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
10477
10478 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
10479 (gud-filter-pending-text): Move in front of gdb.
10480 (gud-overlay-arrow-position): New variable.
10481 (gud-sentinel, gud-display-line): Use it in place of
10482 overlay-arrow-position.
10483
10484 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
10485
10486 * progmodes/fortran.el (fortran-if-indent): Doc fix.
10487 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
10488 (fortran-font-lock-keywords-4): New variable.
10489 (fortran-blocks-re, fortran-end-block-re)
10490 (fortran-start-block-re): New constants, for hideshow.
10491 (hs-special-modes-alist): Add a Fortran entry.
10492 (fortran-mode-map): Bind fortran-end-of-block,
10493 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
10494 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
10495 (fortran-looking-at-if-then, fortran-end-of-block)
10496 (fortran-beginning-of-block): New functions, for hideshow.
10497
10498 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
10499 Doc fix. Tweak regexp.
10500 (f90-beginning-of-block): Push mark first.
10501
10502 2005-03-29 Jay Belanger <belanger@truman.edu>
10503
10504 * calc/calc.el: Update copyright date.
10505 (calc-version): Increase to 2.1.
10506 (calc-version-date): Remove.
10507
10508 * calc/calc-help.el: Update copyright date.
10509 (calc-full-help): Remove reference to calc-version-date.
10510 Update copyright date.
10511
10512 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
10513
10514 * vc.el (vc-do-command): Use a pipe for async processes, so password
10515 prompts don't show up at places where the user can't reply.
10516
10517 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
10518
10519 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
10520 on the file name we pass to the inferior shell.
10521
10522 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
10523
10524 * progmodes/which-func.el (which-function): Be robust in the face of an
10525 imenu--make-index-alist failure.
10526
10527 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
10528
10529 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
10530
10531 * progmodes/python.el (python-preoutput-filter): Fix last change.
10532
10533 2005-03-29 Lute Kamstra <lute@gnu.org>
10534
10535 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
10536 functions and compiled macros.
10537 (debug-convert-byte-code): Handle macros too.
10538 (debug-on-entry-1): Don't signal an error when trying to clear a
10539 function that is not set to debug on entry.
10540
10541 2005-03-29 Jay Belanger <belanger@truman.edu>
10542
10543 * calc/calc-lang.el: Add functions to math-function-table
10544 properties of tex and math.
10545
10546 2005-03-29 Kenichi Handa <handa@m17n.org>
10547
10548 * ps-mule.el (ps-mule-plot-string): Translate characters by
10549 ps-print-translation-table.
10550 (ps-mule-begin-job): Call find-charset-region/string with
10551 ps-print-translation-table.
10552 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
10553
10554 * ps-print.el (ps-print-translation-table): New variable.
10555 (ps-plot-region): Translate characters by ps-print-translation-table.
10556
10557 2005-03-29 Juri Linkov <juri@jurta.org>
10558
10559 * simple.el (next-error-highlight-timer): New variable.
10560
10561 * progmodes/compile.el (compilation-goto-locus):
10562 Use `next-error-highlight-timer' instead of `sit-for'.
10563
10564 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10565
10566 * mail/supercite.el (sc-mail-field): Use assoc-string.
10567 (sc-get-address): Simplify regexps.
10568
10569 * files.el (minibuffer-with-setup-hook): New macro.
10570 (find-file-read-args): Use it to avoid let-binding
10571 minibuffer-with-setup-hook (which breaks turning on/off
10572 file-name-shadow-mode while in the prompt).
10573
10574 * complete.el (PC-read-include-file-name-internal):
10575 Use test-completion.
10576
10577 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
10578
10579 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
10580
10581 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10582
10583 * window.el (window-buffer-height): Use count-screen-lines.
10584
10585 * progmodes/python.el (python-preoutput-leftover): New var.
10586 (python-preoutput-filter): Use it.
10587 (python-send-receive): Loop until all the result has been received.
10588
10589 2005-03-28 Juri Linkov <juri@jurta.org>
10590
10591 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
10592
10593 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
10594 "Recover Crashed Session".
10595 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
10596 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
10597 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
10598 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
10599 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
10600 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
10601 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
10602 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
10603
10604 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
10605 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
10606 Ediff Sessions", "Toggle use of separate control buffer frame",
10607 "Use separate frame for Ediff control buffer".
10608
10609 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
10610 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
10611 "Rename Bookmark", "Delete Bookmark".
10612
10613 * info.el (Info-mode-menu): Remove ellipsis from "Index".
10614 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
10615 Add `:active Info-index-alternatives' to "Next Matching Item".
10616
10617 * wdired.el (wdired-change-to-wdired-mode):
10618 Mention `wdired-abort-changes' key in the initial message.
10619
10620 * international/mule.el (auto-coding-alist): Associate non-ascii
10621 image filename extensions with `no-conversion'.
10622
10623 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
10624
10625 * international/iso-acc.el:
10626 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
10627
10628 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
10629
10630 * textmodes/sgml-mode.el (html-mode): Doc update.
10631
10632 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
10633
10634 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
10635
10636 * term.el (term-move-columns): Fix face after extending a line.
10637 (term-insert-spaces): Likewise.
10638 (term-reset-terminal): Fix off by one error.
10639
10640 2005-03-26 Eli Zaretskii <eliz@gnu.org>
10641
10642 * international/mule.el (auto-coding-alist): Add .xpi files.
10643
10644 * files.el (auto-mode-alist): Add .xpi files.
10645
10646 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
10647
10648 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
10649
10650 2005-03-26 Eli Zaretskii <eliz@gnu.org>
10651
10652 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
10653
10654 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
10655
10656 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
10657 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
10658
10659 * calendar/cal-move.el (calendar-beginning-of-year): Move the
10660 cursor to Jan 1 when needed.
10661 (calendar-end-of-year): Fix -/+ typo.
10662 Reported by Chong Yidong <cyd@stupidchicken.com>.
10663
10664 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
10665
10666 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
10667
10668 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
10669 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
10670
10671 2005-03-25 Richard M. Stallman <rms@gnu.org>
10672
10673 * filesets.el (filesets-init): Add autoload.
10674
10675 * mail/mailalias.el (mail-directory): Doc fix.
10676
10677 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
10678
10679 * mail/mailalias.el (mail-directory-process): Do nothing if
10680 mail-directory-process is an atom.
10681 (mail-get-names): Ignore mail-directory-names if it is an atom.
10682 (mail-directory-process defvar): Doc fix.
10683 (mail-names): Doc fix.
10684
10685 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
10686
10687 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
10688
10689 2005-03-26 Kenichi Handa <handa@m17n.org>
10690
10691 * international/mule-util.el (detect-coding-with-priority):
10692 Call update-coding-systems-internal before detect-coding-region.
10693
10694 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
10695
10696 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
10697 (gdb-frames-mode-map): Add follow-link property.
10698
10699 2005-03-25 Jay Belanger <belanger@truman.edu>
10700
10701 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
10702 for variables.
10703
10704 2005-03-25 Juri Linkov <juri@jurta.org>
10705
10706 * image-mode.el: Optimize image filename extension regexps in
10707 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
10708 in `auto-mode-alist'.
10709 (image-mode): Add `image-toggle-display-text' to local hook
10710 `change-major-mode-hook'. Display the image as an image by
10711 default. Set `cursor-type' and `truncate-lines' if the image
10712 is already displayed. Take into account the current mode (image
10713 or text) in message.
10714 (image-minor-mode): New minor mode.
10715 (image-mode-maybe, image-toggle-display-text): New functions.
10716 (image-toggle-display): Use called-interactively-p.
10717 Let-bind `inhibit-read-only' to t.
10718
10719 * image-mode.el (image-minor-mode): Set `cursor-type' and
10720 `truncate-lines' if the image is already displayed. Add turning
10721 image-minor-mode off to `change-major-mode-hook'. Add message.
10722 Call `image-toggle-display-text' after turning image-minor-mode off.
10723
10724 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
10725
10726 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
10727 Terminal.app, use utf-8.
10728 (set-display-table-and-terminal-coding-system): Add coding-system arg.
10729 (set-locale-environment): Use it.
10730
10731 * term/xterm.el: Undo last change, better done in mule-cmds.el.
10732
10733 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
10734
10735 * progmodes/python.el (python-close-block-statement-p)
10736 (python-outdent-p, python-current-defun): Use symbol-end.
10737
10738 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
10739
10740 * files.el (save-some-buffers): Doc fix.
10741
10742 2005-03-25 Werner Lemberg <wl@gnu.org>
10743
10744 * complete.el, thumbs.el: Replace `legal' with `valid'.
10745 * calendar/calendar.el: Replace `legal' with `valid'.
10746 * emacs-lisp/advice.el: Replace `legal' with `valid'.
10747 * mail/supercite.el: Replace `legal' with `valid'.
10748 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
10749 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
10750 Replace `legal' with `valid'.
10751 * textmodes/reftex-vars.el, textmodes/reftex.el:
10752 Replace `legal' with `valid'.
10753
10754 2005-03-25 Werner Lemberg <wl@gnu.org>
10755
10756 * calc/calc-forms.el, calc/calc-sel.el:
10757 * midnight.el, vc-cvs.el:
10758 * emacs-lisp/cl-macs.el:
10759 * emulation/vip.el:
10760 * eshell/esh-io.el, eshell/esh-var.el:
10761 * mail/supercite.el:
10762 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
10763 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
10764 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
10765 * progmodes/sh-script.el, progmodes/xscheme.el:
10766 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
10767 * textmodes/reftex-index.el, textmodes/reftex-parse.el
10768 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
10769 * textmodes/reftex.el, textmodes/org.el:
10770 Replace `illegal' with `invalid'.
10771
10772 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10773
10774 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
10775 (flymake-find-buildfile, flymake-find-possible-master-files)
10776 (flymake-check-include, flymake-parse-line): Replace loops over the
10777 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
10778
10779 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
10780 Substitute file-name-as-directory in the rest of the file.
10781 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
10782 (flymake-replace-region): Remove unused arg `buffer'.
10783 (flymake-check-patch-master-file-buffer): Update calls to it.
10784 (flymake-add-err-info): Remove unused var `count'.
10785 (flymake-mode): Use define-minor-mode.
10786
10787 * progmodes/flymake.el: Use with-current-buffer.
10788 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
10789 flymake-replace-regexp-in-string, flymake-line-beginning-position)
10790 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
10791 Avoid testing for `xemacs'.
10792 (flymake-nop): Move.
10793 (flymake-region-has-flymake-overlays): Return the computed value.
10794 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
10795 Remove unused var `endline'.
10796 (flymake-get-line-count): Remove unused function.
10797 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
10798
10799 * emulation/vi.el:
10800 * generic.el:
10801 * hilit-chg.el (global-highlight-changes):
10802 * hi-lock.el (hi-lock-mode):
10803 * follow.el: find-file-hooks -> find-file-hook.
10804
10805 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
10806
10807 2005-03-24 Juri Linkov <juri@jurta.org>
10808
10809 * dired.el (dired-mode-map): Add menu item "Compare directories"
10810 for dired-compare-directories.
10811
10812 * dired-aux.el (dired-compare-directories): Add autoload cookie.
10813 Doc fix. Replace `read-file-name' with `read-directory-name'.
10814
10815 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10816
10817 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
10818
10819 2005-03-24 Jay Belanger <belanger@truman.edu>
10820
10821 * calc/calc-embed.el (calc-embedded-mode-change): Save all
10822 relevant mode settings in calc-embedded-original-modes when modes
10823 are permanently changed.
10824
10825 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
10826
10827 * autoinsert.el: find-file-hooks -> find-file-hook.
10828
10829 2005-03-24 Lute Kamstra <lute@gnu.org>
10830
10831 * generic.el (generic-font-lock-defaults): Make it obsolete.
10832 (generic-font-lock-keywords): New variable to replace
10833 generic-font-lock-defaults.
10834 (generic-mode-set-font-lock): Delete it.
10835 (generic-mode-internal): Don't call generic-mode-set-font-lock.
10836 (generic-bracket-support): Add docstring.
10837
10838 * generic-x.el: Rename generic-font-lock-defaults to
10839 generic-font-lock-keywords throughout.
10840 (mailagent-rules-setup-function): Delete it.
10841 (mailagent-rules-generic-mode): Use anonymous function instead.
10842 (show-tabs-generic-mode-font-lock-defaults-1)
10843 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
10844 Quote faces.
10845 (show-tabs-tab-face, show-tabs-space-face): Specify background,
10846 not foreground.
10847
10848 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10849 Recognize define-generic-mode.
10850
10851 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10852
10853 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
10854 if there's no completion table.
10855
10856 2005-03-23 Miles Bader <miles@gnu.org>
10857
10858 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
10859 Remove tty-specific variants, as they're no longer needed.
10860
10861 2005-03-23 Lute Kamstra <lute@gnu.org>
10862
10863 * generic-x.el: Code cleanup: make args constant whenever possible.
10864 (installshield-statement-keyword-list)
10865 (installshield-system-functions-list)
10866 (installshield-system-variables-list, installshield-types-list)
10867 (installshield-funarg-constants-list): Make them constants.
10868
10869 * generic.el (generic-make-keywords-list): Add autoload cookie.
10870
10871 * calendar/time-date.el: Add comment on time value formats.
10872 Don't require parse-time.
10873 (with-decoded-time-value): New macro.
10874 (encode-time-value): New function.
10875 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
10876 (days-to-time): Return a valid time value when arg is huge.
10877 (time-since): Use time-subtract.
10878 (time-to-number-of-days): Use time-to-seconds.
10879
10880 2005-03-23 David Ponce <david@dponce.com>
10881
10882 * recentf.el: (recentf-keep): New option.
10883 (recentf-menu-action): Default to `find-file'.
10884 (recentf-keep-non-readable-files-flag)
10885 (recentf-keep-non-readable-files-p)
10886 (recentf-file-readable-p, recentf-find-file)
10887 (recentf-cleanup-remote): Remove.
10888 (recentf-include-p): More robust.
10889 (recentf-keep-p): New function.
10890 (recentf-remove-if-non-kept): Rename from
10891 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
10892 All callers updated.
10893 (recentf-menu-items-for-commands): Fix help string.
10894 (recentf-track-closed-file): Update. Doc fix.
10895 (recentf-cleanup): Update. Count removed files. Doc fix.
10896
10897 2005-03-23 Kim F. Storm <storm@cua.dk>
10898
10899 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
10900 Don't inherit from fringe face (now happens automatically).
10901
10902 2005-03-22 Kim F. Storm <storm@cua.dk>
10903
10904 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
10905 position values.
10906
10907 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
10908
10909 * menu-bar.el (showhide-date-time): Remove.
10910 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
10911 (menu-bar-make-mm-toggle): Simplify.
10912
10913 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
10914
10915 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
10916 Accept qualified variable and function names.
10917
10918 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
10919
10920 * bindings.el (completion-ignored-extensions):
10921 Remove ".lis" for `vax-vms'.
10922
10923 2005-03-22 Andreas Schwab <schwab@suse.de>
10924
10925 * generic-x.el: Revert last change.
10926 * ldefs-boot.el: Update.
10927
10928 2005-03-22 Jay Belanger <belanger@truman.edu>
10929
10930 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
10931 (calc-embedded-save-original-modes)
10932 (calc-embedded-restore-original-modes): New functions.
10933 (calc-do-embedded): Save original modes when entering embedded mode
10934 and restore when leaving embedded mode.
10935 (calc-embedded-modes-change): Change the value of
10936 calc-embedded-original-modes to reflect permanent changes.
10937
10938 2005-03-22 Lute Kamstra <lute@gnu.org>
10939
10940 * generic-x.el: Require generic again.
10941
10942 2005-03-22 Miles Bader <miles@gnu.org>
10943
10944 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
10945 Tweak details to look good on both ttys and bitmap displays, light
10946 or dark background, etc.
10947
10948 2005-03-21 Kim F. Storm <storm@cua.dk>
10949
10950 * tooltip.el (tooltip-show-help-function): Check car and cdr of
10951 mouse position.
10952
10953 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10954
10955 * icomplete.el: Don't forcibly turn on the mode upon load.
10956 (icomplete-mode): Use define-minor-mode.
10957 (icomplete-eoinput): Default to nil.
10958 (icomplete-minibuffer-setup): Remove autoload.
10959 (icomplete-tidy): Simplify.
10960 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
10961 in the initial state or if the user has modified the field.
10962 Fix handling of icomplete-max-delay-chars.
10963 Remove code that handles the oddball case where
10964 minibuffer-completion-table is an integer.
10965 Wrap icomplete-completions in while-no-input in case building
10966 completions takes more time than expected.
10967 (icomplete-completions): Simplify.
10968
10969 2005-03-21 Richard M. Stallman <rms@gnu.org>
10970
10971 * jka-compr.el (jka-compr-really-do-compress):
10972 Make variable buffer-local.
10973
10974 * image-mode.el: Handle .xpm files too.
10975 (image-toggle-display): Preserve modification flag.
10976
10977 * help.el (where-is): Don't mention aliases with no key bindings.
10978
10979 2005-03-21 Lute Kamstra <lute@gnu.org>
10980
10981 * generic.el: Fix commentary section. Don't require cl for
10982 compilation.
10983 (generic-mode-list): Add autoload cookie.
10984 (generic-use-find-file-hook, generic-lines-to-scan)
10985 (generic-find-file-regexp, generic-ignore-files-regexp)
10986 (generic-mode, generic-mode-find-file-hook)
10987 (generic-mode-ini-file-find-file-hook): Fix docstrings.
10988 (define-generic-mode): Make it a defmacro. Fix docstring.
10989 (generic-mode-internal): Code cleanup. Add autoload cookie.
10990 (generic-mode-set-comments): Code cleanup.
10991 * generic-x.el: Don't prevent compilation. Don't require generic.
10992 Follow coding conventions. Minor code cleanup.
10993 (etc-fstab-generic-mode): Add some keywords.
10994 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
10995 define-generic-mode like a function declaration.
10996
10997 2005-03-21 Jay Belanger <belanger@truman.edu>
10998
10999 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
11000 changing modes.
11001
11002 2005-03-21 Sam Steingold <sds@gnu.org>
11003
11004 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
11005
11006 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
11007
11008 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
11009 Add underscore to "f$ lexicals" regexp.
11010
11011 2005-03-20 Juri Linkov <juri@jurta.org>
11012
11013 * subr.el (progress-reporter-do-update): When `min-value' is equal
11014 to `max-value', set `percentage' to 0 and prevent division by zero.
11015
11016 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
11017
11018 Sync with Tramp 2.0.48.
11019
11020 * net/tramp.el (all): Change all addresses to .gnu.org.
11021 (tramp-append-tramp-buffers): New defun.
11022 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
11023 Catch `dont-send' signal.
11024 (tramp-set-auto-save-file-modes): Set always permissions, because
11025 there might be an old auto-saved file belonging to another
11026 original file. This could be a security threat. Reported by
11027 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
11028 Check for Emacs 21.3.50 removed.
11029
11030 * net/tramp-smb.el (all): Remove debug construct for
11031 `with-parsed-tramp-file-name'.
11032 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
11033 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
11034 No error message if DIRECTORY or FILENAME doesn't exist.
11035 (tramp-smb-open-connection): Check existence of
11036 `tramp-smb-program'.
11037
11038 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
11039
11040 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
11041 Properly handle the case where the `m' or `s' command's argument is not
11042 yet terminated.
11043 (perl-indent-new-calculate): New function.
11044 (perl-indent-line): Use it.
11045
11046 2005-03-20 Miles Bader <miles@gnu.org>
11047
11048 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
11049 in text-mode too. Change to new face names.
11050 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
11051 Add `:weight bold' attribute.
11052 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
11053
11054 2005-03-19 Juri Linkov <juri@jurta.org>
11055
11056 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
11057
11058 * international/mule.el (auto-coding-alist): Sync with
11059 `auto-mode-alist' by adding upper case archive file extensions
11060 and adding ear/war to jar extension.
11061
11062 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
11063
11064 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
11065 running, restart it.
11066
11067 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
11068
11069 * finder.el (finder-current-item): Throw an error on an empty line.
11070
11071 * man.el (Man-follow-manual-reference): If current-word returns
11072 nil, use "".
11073
11074 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
11075
11076 * simple.el (goto-line): Doc fix.
11077
11078 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
11079
11080 * files.el (save-buffer): Doc fix.
11081
11082 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
11083
11084 * recentf.el (recentf-cleanup-remote): New variable.
11085 (recentf-cleanup): Use it to conditionally check availability of
11086 remote files.
11087
11088 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
11089
11090 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
11091 function names.
11092
11093 2005-03-19 Eli Zaretskii <eliz@gnu.org>
11094
11095 * language/thai-word.el: New file.
11096
11097 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
11098
11099 * files.el (backup-buffer): If the file's directory is not
11100 writable, use copy instead of move to backup the file.
11101
11102 2005-03-19 Eli Zaretskii <eliz@gnu.org>
11103
11104 * obsolete/keyswap.el: Moved to obsolete/ from term/.
11105
11106 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11107
11108 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
11109 Use functionp instead of symbolp and fboundp. Reported by Drkm
11110 <darkman_spam@yahoo.fr>.
11111 (ps-print-version): New version 6.6.6.
11112
11113 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
11114
11115 * textmodes/table.el (table--line-column-position): New idiom.
11116 (table--row-column-insertion-point-p): New function to test
11117 validity of row and column insertion operation at a location.
11118 (table-global-menu, table-cell-menu): Use above functions for
11119 deterministic test operation.
11120 (table--editable-cell-p): Behave in deterministic fashion.
11121
11122 2005-03-18 Juri Linkov <juri@jurta.org>
11123
11124 * isearch.el (isearch-lazy-highlight-new-loop):
11125 Make arguments beg and end optional.
11126 (isearch-update): Remove optional arguments nil from
11127 isearch-lazy-highlight-new-loop.
11128 (isearch-lazy-highlight-search): Let-bind case-fold-search to
11129 isearch-lazy-highlight-case-fold-search instead of
11130 isearch-case-fold-search, and let-bind isearch-regexp to
11131 isearch-lazy-highlight-regexp.
11132 Use isearch-lazy-highlight-last-string instead of isearch-string.
11133
11134 * replace.el (perform-replace): Remove bindings of global
11135 variables isearch-string, isearch-regexp, isearch-case-fold-search.
11136 Add three new arguments to `replace-highlight'.
11137 (replace-highlight): Add arguments string, regexp, case-fold.
11138 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
11139 to allow isearch-lazy-highlight-new-loop to use these values
11140 to set corresponding isearch-lazy-highlight-* internal
11141 variables whose values lazy highlighting will use regardless of
11142 changes to global variables isearch-string, isearch-regexp,
11143 isearch-case-fold-search during lazy highlighting loop.
11144 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
11145 to `lazy-highlight-cleanup'.
11146
11147 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
11148 (ispell-highlight-face): Set default face to `isearch' when
11149 lazy highlighting is enabled.
11150 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
11151 priority to 1. Add lazy highlighting.
11152 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
11153 from `isearch-dehighlight'.
11154
11155 2005-03-18 David Ponce <david@dponce.com>
11156
11157 * files.el (hack-local-variables): Do a case-insensitive search
11158 for End.
11159
11160 2005-03-18 Juri Linkov <juri@jurta.org>
11161
11162 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
11163 `isearch-lazy-highlight-cleanup', add alias to old name and
11164 declare obsolete. Add release numbers to other obsolete vars.
11165 (isearch-done, isearch-lazy-highlight-new-loop):
11166 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
11167 (lazy-highlight-cleanup) <variable>: Doc fix.
11168 (isearch-lazy-highlight-update): Rename obsolete
11169 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
11170
11171 2005-03-18 Kenichi Handa <handa@m17n.org>
11172
11173 * language/thai-util.el: Fix categorization of Thai characters in
11174 thai-category-table.
11175 (thai-composition-pattern): Adjust it for the above change.
11176 (thai-self-insert-command, thai-compose-syllable): New functions.
11177 (thai-compose-region): Use thai-compose-syllable.
11178 (thai-compose-string): Likewise.
11179 (thai-composition-function): Likewise.
11180 (thai-auto-composition): New function.
11181 (thai-auto-composition-mode): New minor mode.
11182
11183 * language/thai.el: Fix patterns to be registered in
11184 composition-function-table.
11185
11186 * international/quail.el (quail-input-method): Locally bind
11187 inhibit-modification-hooks to t.
11188
11189 2005-03-17 Richard M. Stallman <rms@gnu.org>
11190
11191 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
11192 (perl-mode): Use run-mode-hooks.
11193
11194 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
11195 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
11196 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
11197
11198 * mail/sendmail.el (sendmail-send-it): Reenable the code
11199 to compute resend-to-address and use it.
11200
11201 * tar-mode.el (tar-mode): Turn off undo unconditionally.
11202
11203 * image-mode.el: New file.
11204
11205 * image.el (insert-sliced-image): Add autoload cookie.
11206
11207 * font-lock.el (font-lock-lines-before): New user option.
11208 (font-lock-after-change-function): Obey it.
11209
11210 * bindings.el (esc-map): Make M-g a prefix.
11211 Bind M-g g and M-g M-g to goto-line.
11212
11213 * faces.el (face-id): Doc fix.
11214
11215 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
11216
11217 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
11218 (rmail-show-message): Use rmail-unknown-mail-followup-to.
11219 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
11220
11221 * mail/sendmail.el (mail-yank-ignored-headers)
11222 (mail-font-lock-keywords, mail-mode-fill-paragraph):
11223 Add Mail-Followup-To and Mail-Reply-To headers.
11224 (mail-citation-hook): Add autoload cookie.
11225 (mail-mode): Doc fix.
11226 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
11227 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
11228 (mail-mode-fill-paragraph): Handle those headers.
11229 (mail-mailing-lists): New variable.
11230 (mail-mail-reply-to, mail-mail-followup-to): New functions.
11231
11232 2005-03-17 Juri Linkov <juri@jurta.org>
11233
11234 * isearch.el (isearch-fallback): Check for `(car previous)'
11235 before calling `isearch-other-end-state'.
11236
11237 2005-03-17 Kim F. Storm <storm@cua.dk>
11238
11239 * simple.el (move-beginning-of-line): Move to beginning of buffer
11240 line, as well as beginning of screen line.
11241
11242 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
11243
11244 * calendar/diary-lib.el (mark-diary-entries): Use new optional
11245 argument REDRAW rather than calendar-redrawing variable.
11246 * calendar/calendar.el (calendar-redrawing): Delete.
11247 (redraw-calendar): Do not bind calendar-redrawing.
11248
11249 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
11250
11251 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
11252 diary-file buffer.
11253
11254 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
11255
11256 * help.el (describe-mode): Allow a :minor-mode-function property to
11257 specify a different minor mode toggle function than the variable.
11258 * simple.el (auto-fill-function):
11259 * subr.el (add-minor-mode): Use it.
11260
11261 2005-03-16 Kenichi Handa <handa@m17n.org>
11262
11263 * language/ethio-util.el (sera-being-called-by-w3): New variable.
11264 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
11265 (ethio-fidel-to-sera-buffer): Likewise.
11266
11267 2005-03-16 Juri Linkov <juri@jurta.org>
11268
11269 * emacs-lisp/find-func.el (find-function-regexp):
11270 Add defun-emitting macro `menu-bar-make-toggle'.
11271
11272 * isearch.el: Put `isearch-scroll' property to
11273 `split-window-horizontally'.
11274
11275 * info.el: Update error messages for `debug-ignored-errors'.
11276 (Info-isearch-search): Doc fix.
11277 (Info-find-node): Move up code to go into info buffer before
11278 recording the node to the history.
11279 (Info-fontify-node): Fontify titles only if the next line
11280 has two or more `*', `=', `-', `.'.
11281 Display "go to this node" for empty (match-string 3).
11282
11283 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11284
11285 * term/mac-win.el: Add mouse pointer shape constants.
11286
11287 2005-03-15 Kim F. Storm <storm@cua.dk>
11288
11289 * simple.el (move-beginning-of-line): Use vertical-motion.
11290
11291 2005-03-15 Juri Linkov <juri@jurta.org>
11292
11293 * isearch.el (isearch-error): New variable.
11294 (isearch-invalid-regexp, isearch-within-brackets): Remove.
11295 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
11296 (isearch-within-brackets-state): Remove.
11297 (isearch-case-fold-search-state, isearch-pop-fun-state):
11298 Decrease frame index.
11299 (isearch-mode, isearch-top-state, isearch-push-state)
11300 (isearch-edit-string, isearch-abort, isearch-search-and-update)
11301 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
11302 (isearch-search, isearch-lazy-highlight-new-loop):
11303 Replace `isearch-invalid-regexp' with `isearch-error'.
11304 Remove `isearch-within-brackets'.
11305 (isearch-search): Add `search-failed' handler to `condition-case'.
11306 (isearch-lazy-highlight-search): Add `condition-case' to catch
11307 errors and allow `isearch-lazy-highlight-update' to try
11308 highlighting from the beginning of the window.
11309 (isearch-repeat): Move up code to set isearch-wrapped to t
11310 before calling isearch-wrap-function.
11311
11312 * info.el (Info-isearch-initial-node): New internal variable.
11313 (Info-search): Signal an error in isearch mode when search leaves
11314 the initial node. Signal an error when `bound' is non-nil and
11315 nothing was found in the current subfile.
11316 (Info-isearch-search): Remove `condition-case'.
11317 (Info-isearch-wrap): Don't wrap when search failed during leaving
11318 the initial node. If `Info-isearch-search' is nil, wrap around
11319 the current node.
11320 (Info-isearch-start): New fun.
11321 (Info-mode): Add buffer-local hook `Info-isearch-start' to
11322 `isearch-mode-hook'.
11323
11324 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11325
11326 * simple.el (normal-erase-is-backspace): Set default to t if
11327 running on Mac.
11328
11329 * term/mac-win.el (function-key-map): Sync with x-win.el.
11330
11331 2005-03-15 Kenichi Handa <handa@m17n.org>
11332
11333 * international/mule-cmds.el (locale-language-names): Modify the
11334 format of elements and add more entries.
11335 (locale-preferred-coding-systems): Add more entries.
11336 (set-locale-environment): Adjust for the change of
11337 locale-language-names.
11338
11339 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
11340
11341 * pcvs.el (smerge-ediff): Remove bogus autoload.
11342
11343 2005-03-14 Lute Kamstra <lute@gnu.org>
11344
11345 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
11346 Ignore a `*' at the beginning of a line.
11347
11348 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
11349 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
11350 subr.el.
11351 (dont-compile, eval-when-compile, eval-and-compile): Use declare
11352 to specify indentation.
11353
11354 * generic.el (define-generic-mode): Let generic-mode-list be a
11355 list of strings; test membership with equal.
11356
11357 2005-03-14 Kim F. Storm <storm@cua.dk>
11358
11359 * simple.el (next-line, previous-line): Add optional try-vscroll
11360 arg to recognize interactive use. Pass it on to line-move.
11361 (line-move): Don't perform auto-window-vscroll when defining or
11362 executing keyboard macro to ensure consistent behavior.
11363
11364 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
11365
11366 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
11367
11368 2005-03-13 Lute Kamstra <lute@gnu.org>
11369
11370 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
11371 debugger-setup-buffer so that backtrace marks the frames set to
11372 debug-on-exit and we don't have to do it manually. Set an extra
11373 debug-on-exit for macro's.
11374 (debugger-setup-buffer): Don't mark the top frame manually.
11375
11376 2005-03-12 Lute Kamstra <lute@gnu.org>
11377
11378 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
11379 lisp-indent-function throughout.
11380 (with-no-warnings): Set lisp-indent-function property.
11381
11382 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
11383
11384 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
11385 Add entry for backslash.
11386
11387 2005-03-12 Juri Linkov <juri@jurta.org>
11388
11389 * info.el (Info-search): Four fixes for backward search.
11390
11391 2005-03-11 Jay Belanger <belanger@truman.edu>
11392
11393 * calc/calc.el (calc-language-alist): New variable.
11394 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
11395 (calc-embedded-find-modes): Use calc-language-alist instead of
11396 calc-embedded-language-alist.
11397
11398 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
11399
11400 * calendar/calendar.el (calendar-redrawing): New internal
11401 variable.
11402 (redraw-calendar): Remove bogus save-excursion from previous
11403 change. Bind calendar-redrawing to t for mark-diary-entries.
11404 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
11405 calendar if that is why we were called.
11406
11407 2005-03-11 Kenichi Handa <handa@m17n.org>
11408
11409 * international/mule.el (make-coding-system): Set property
11410 coding-system-define-form to nil.
11411 (define-coding-system-alias): Likewise.
11412
11413 2005-03-11 Kenichi Handa <handa@m17n.org>
11414
11415 These changes are suggested by Dave Love <fx@gnu.org>.
11416
11417 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
11418 coding: tag.
11419 (adaptive-fill-regexp): Add more bullets.
11420 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
11421 regexps.
11422
11423 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
11424
11425 * help.el (describe-mode): Properly handle non-trivial lighters.
11426 Don't ignore minor modes that are not listed in minor-mode-list.
11427
11428 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
11429 feature ON when the user requests to turn it OFF.
11430
11431 2005-03-10 Lute Kamstra <lute@gnu.org>
11432
11433 * emacs-lisp/debug.el (debug-entry-code): Delete it.
11434 (implement-debug-on-entry): New function to replace debug-entry-code.
11435 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
11436 second argument as the 2005-03-07 change makes it obsolete.
11437 (debug-on-entry, cancel-debug-on-entry): Update call to
11438 debug-on-entry-1.
11439 (debug, debugger-setup-buffer): Comment update.
11440 (debugger-frame-number): Update to work with implement-debug-on-entry.
11441
11442 2005-03-10 Jay Belanger <belanger@truman.edu>
11443
11444 * calc/calc-embed.el (math-ms-args): Declare it.
11445 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
11446 math-ms-args.
11447 (calc-embedded-subst): Use math-multi-subst-rec to substitute
11448 variables.
11449
11450 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
11451
11452 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
11453 Use message-box.
11454
11455 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
11456 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
11457 (tooltip-gud-tips): Simplify.
11458 (tooltip-gud-tips-p): Remove superfluous :set.
11459 (tooltip-gud-modes): Add fortran-mode.
11460 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
11461
11462 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
11463
11464 2005-03-09 Kim F. Storm <storm@cua.dk>
11465
11466 * play/animate.el (animate-place-char): Use forward-line instead
11467 of next-line to improve performance.
11468
11469 2005-03-09 Simon Josefsson <jas@extundo.com>
11470
11471 * net/browse-url.el (browse-url-default-browser): Doc fix.
11472
11473 2005-03-09 Miles Bader <miles@gnu.org>
11474
11475 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
11476 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
11477
11478 2005-03-09 Kenichi Handa <handa@m17n.org>
11479
11480 * international/latin-1.el: Set case and syntax for 255 only if
11481 set-case-syntax-set-multibyte is nil.
11482
11483 * textmodes/ispell.el (ispell-insert-word): New function.
11484 (ispell-word): Use ispell-insert-word to insert a new word.
11485 (ispell-process-line): Likewise.
11486 (ispell-complete-word): Likewise.
11487
11488 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
11489
11490 * calendar/calendar.el (redraw-calendar): Preserve point.
11491 Reported by Matt Hodges <MPHodges@member.fsf.org>.
11492 (calendar-week-start-day): Move after definition of
11493 redraw-calendar. Delete buffer test, since redraw-calendar has
11494 that now.
11495
11496 * calendar/diary-lib.el (mark-diary-entries): Only call
11497 redraw-calendar in the first of any recursive calls.
11498 Reported by Alan Shutko <ats@acm.org>.
11499
11500 2005-03-08 Juri Linkov <juri@jurta.org>
11501
11502 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
11503 (html-horizontal-rule, html-line, html-image, html-checkboxes)
11504 (html-radio-buttons): Add a space before the trailing `/>' where
11505 sgml-xml-mode is non-nil.
11506 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
11507 the subsequent tag of the empty XML tag.
11508 (html-href-anchor): Don't set initial input to "http:".
11509 (html-image): Ask for the image URL and set point inside alt="".
11510 (html-name-anchor): Duplicate the name in the `id' attribute when
11511 sgml-xml-mode is non-nil.
11512 (html-paragraph): Remove \n before <p>.
11513 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
11514 instead of `checked' when sgml-xml-mode is non-nil.
11515
11516 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
11517 Remove 1 space before #RRGGBB to not truncate it on terminal
11518 windows w/o fringes. Remove 1 space between bg and fg examples
11519 to get more space.
11520 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
11521 avoid byte-compile warnings.
11522
11523 * image-file.el (image-file-handler): Put `safe-magic' property to
11524 `image-file-handler'.
11525
11526 * info.el (Info-isearch-search): Emulate word search in
11527 isearching through multiple Info nodes with Info-search.
11528 (Info-isearch-wrap): Allow isearch-word.
11529
11530 2005-03-08 Lute Kamstra <lute@gnu.org>
11531
11532 * emacs-lisp/debug.el (debugger-step-through): Make sure that
11533 stepping into the debugger's code is not possible.
11534 (debugger-jumping-flag): Docstring update.
11535
11536 2005-03-08 Jay Belanger <belanger@truman.edu>
11537
11538 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
11539 embedded mode begins.
11540 (calc-embedded-language-alist): New variable.
11541 (calc-embedded-find-modes): Use calc-embedded-language-alist to
11542 set default language mode.
11543
11544 2005-03-08 Kenichi Handa <handa@m17n.org>
11545
11546 * international/ccl.el (define-ccl-program): Fix docstring about
11547 extra 256 bytes assured for the output buffer.
11548
11549 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
11550 Fix BUFFER_MAGNIFICATION to 2.
11551 (ccl-encode-mule-utf-16be-with-signature): Likewise.
11552
11553 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
11554
11555 * align.el (align-rules-list): Added an alignment rule for CSS
11556 declarations (applies to css-mode and html-mode buffers).
11557
11558 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
11559
11560 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
11561
11562 2005-03-07 Kim F. Storm <storm@cua.dk>
11563
11564 * simple.el (move-beginning-of-line): New command.
11565
11566 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
11567
11568 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
11569
11570 * emulation/cua-base.el: Put CUA move property on move-end-of-line
11571 and move-beginning-of-line.
11572
11573 * apropos.el (apropos-print): Omit command from M-x ... RET.
11574
11575 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
11576
11577 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
11578 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
11579
11580 2005-03-06 Richard M. Stallman <rms@gnu.org>
11581
11582 * bindings.el (esc-map): Bind M-g to goto-line.
11583
11584 * facemenu.el (global-map): Bind M-o, not M-g.
11585
11586 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11587
11588 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
11589 "Open Directory" as for "Open File".
11590
11591 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
11592
11593 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
11594 (push-mark-command): Run activate-mark-hook.
11595
11596 2005-03-06 Richard M. Stallman <rms@gnu.org>
11597
11598 * help-mode.el (help-mode-finish): Don't alter the element
11599 in view-return-to-alist if there already is one.
11600
11601 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
11602 make sure the current buffer is the expected one.
11603
11604 * novice.el (disabled-command-function): Output in *Disabled Command*.
11605 Explicitly ignore non-keyboard events, and explicitly handle C-g.
11606
11607 * textmodes/flyspell.el (flyspell-large-region):
11608 Pass args differently for aspell.
11609
11610 * files.el (mode-require-final-newline): Doc fix.
11611
11612 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
11613
11614 * progmodes/which-func.el (which-function):
11615 Specify NOERROR when calling imenu--make-index-alist.
11616
11617 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
11618
11619 * simple.el (normal-erase-is-backspace): Define default value.
11620
11621 * custom.el (custom-theme-set-variables): Remove unused var
11622 `immediate'.
11623 (custom-reevaluate-setting): Simple function to handle variables
11624 that are defined before their default value can really be
11625 computed.
11626
11627 * startup.el (command-line): Use it for temporary-file-directory,
11628 small-emporary-file-directory, auto-save-file-name-transforms,
11629 blink-cursor-mode, and normal-erase-is-backspace.
11630
11631 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
11632 progress, even with buggy anchored keywords.
11633
11634 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
11635
11636 * simple.el (goto-line): Remove unbalanced final parenthesis.
11637
11638 2005-03-05 Richard M. Stallman <rms@gnu.org>
11639
11640 * simple.el (goto-line): Use a number at point as the default.
11641 With C-u as arg, switch buffers.
11642
11643 2005-03-05 Juri Linkov <juri@jurta.org>
11644
11645 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
11646 with `no-blinking-cursor'.
11647
11648 * startup.el (no-blinking-cursor): New defvar.
11649 (command-line): Add `--no-blinking-cursor' to longopts.
11650 Set `no-blinking-cursor' to t for command line arguments
11651 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
11652 with `no-blinking-cursor' in the condition for calling
11653 `blink-cursor-mode'.
11654
11655 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
11656
11657 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
11658 (menu-bar-options-save): Add blink-cursor-mode.
11659 (menu-bar-options-menu): Add blink-cursor-mode.
11660
11661 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
11662
11663 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
11664 (icalendar-export-file, icalendar-export-region)
11665 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
11666 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
11667
11668 2005-03-04 Lute Kamstra <lute@gnu.org>
11669
11670 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
11671 (debug-function-list): Ditto.
11672
11673 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
11674
11675 * textmodes/texinfmt.el (texinfo-append-refill):
11676 Redefine the types of line to which @refill
11677 is not appended by replacing a search for `@refill\\|@bye' with
11678 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
11679 itemize@refill' bug and the unfilled long lines bug.
11680 (texinfmt-version): Update number and date.
11681
11682 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
11683
11684 * international/code-pages.el (windows-1250, windows-125[2-8])
11685 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
11686
11687 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
11688
11689 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
11690 bound yet.
11691
11692 2005-03-02 Romain Francoise <romain@orebokech.com>
11693
11694 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
11695 buffer after removing limits.
11696 (ibuffer-pop-filter): Ditto.
11697 Update copyright.
11698
11699 2005-03-02 Miles Bader <miles@gnu.org>
11700
11701 * button.el (make-text-button): If the user doesn't specify a
11702 type, use the default. Rewrite to use `add-text-properties' and
11703 plist functions.
11704
11705 2005-03-01 Lute Kamstra <lute@gnu.org>
11706
11707 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
11708 (debugger-jumping-flag): New var.
11709 (debug-entry-code): Use it.
11710 (debugger-jump): Use debugger-jumping-flag and add
11711 debugger-reenable to post-command-hook.
11712 (debugger-reenable): Use debugger-jumping-flag and remove itself
11713 from post-command-hook.
11714 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
11715 debugger-reenable.
11716
11717 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
11718
11719 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
11720 inclusion of "itemize\\|", which may be unnecessary, is certainly
11721 inelegant, and stops refilling in itemize lists when formatting
11722 Japanese Texinfo files to Info.
11723 Update copyright to 2005.
11724
11725 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
11726
11727 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
11728 of an error if GDB can't find the source file.
11729
11730 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
11731
11732 * calendar/calendar.el (redraw-calendar): Work from any buffer,
11733 not just the calendar.
11734
11735 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
11736 first.
11737 (diary-redraw-calendar): New function.
11738 (make-diary-entry): Add diary-redraw-calendar to local
11739 write-contents-functions. Turn off selective display before
11740 inserting in diary.
11741
11742 2005-03-01 Kim F. Storm <storm@cua.dk>
11743
11744 * emacs-lisp/copyright.el (copyright-fix-years): New command.
11745
11746 2005-03-01 Lute Kamstra <lute@gnu.org>
11747
11748 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
11749 that debug-entry-code can be safely removed from a function while
11750 this code is being evaluated. Revert the 2005-02-27 change as the
11751 new implementation no longer requires it. Make sure that a
11752 function body containing just a string is not mistaken for a docstring.
11753 (debug): Skip one more frame in case of debug on entry.
11754 (debugger-setup-buffer): Delete one more frame line in case of
11755 debug on entry.
11756 (debugger-frame-number): Update to use the new text introduced by
11757 the 1999-11-03 change. Skip one more frame in case of debug on entry.
11758
11759 2005-02-28 Kim F. Storm <storm@cua.dk>
11760
11761 * double.el (double-translate-key): Call force-window-update after
11762 read-event to avoid crash in redisplay.
11763
11764 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
11765
11766 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
11767 (debug): Use it. Move the inhibit-trace earlier.
11768 (debug-entry-code): New const.
11769 (debug-on-entry-1): Use it.
11770
11771 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
11772
11773 * international/utf-16.el (ccl-encode-mule-utf-16le):
11774 Fix BUFFER_MAGNIFICATION to 2.
11775 (ccl-encode-mule-utf-16be): Likewise.
11776
11777 2005-02-28 Kenichi Handa <handa@m17n.org>
11778
11779 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
11780 Fix BUFFER_MAGNIFICATION to 4.
11781 (ccl-encode-mule-utf-16be-with-signature): Likewise.
11782
11783 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
11784
11785 * speedbar.el (speedbar-update-flag): Doc fix.
11786 (speedbar-show-info-under-mouse): Give set-mouse-position the right
11787 argument.
11788
11789 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
11790
11791 * reveal.el (reveal-post-command): Don't try to reveal overlays which
11792 have a non-nil `invisible' property but are actually visible.
11793
11794 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
11795 for perldoc sections.
11796 (perl-outline-regexp, perl-outline-level): New var and function.
11797 (perl-mode): Use them.
11798
11799 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
11800
11801 * calendar/diary-lib.el (diary-remind): Discard any mark portion
11802 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
11803
11804 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
11805
11806 * cus-edit.el: Comment change.
11807 (custom-buffer-create-internal): Slightly reword text at top of
11808 Custom buffers. Mention there that saving an option edits the
11809 init file. Add link to Emacs manual node on `custom-file'.
11810 (custom-magic-alist): Rewrite individual State messages to use
11811 capitalized keywords. Doc fix.
11812
11813 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
11814
11815 * calendar/calendar.el (calendar-buffer): Move above
11816 calendar-week-start-day.
11817 (calendar-week-start-day): Doc fix. Add :set function.
11818 (calendar-minimum-window-height): New variable.
11819 (generate-calendar-window): Only resize window if selected-window
11820 is displaying the calendar buffer. Use new variable
11821 calendar-minimum-window-height.
11822 (generate-calendar): Reword error message.
11823 (calendar-mode-map): Bind DEL to scroll-other-window-down.
11824
11825 2005-02-27 Andreas Schwab <schwab@suse.de>
11826
11827 * vc.el (vc-do-command): Don't run command asynchronously when
11828 operating in a remote directory.
11829
11830 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
11831 change from sync with Tramp 2.0.47.
11832
11833 2005-02-27 Richard M. Stallman <rms@gnu.org>
11834
11835 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
11836
11837 * textmodes/flyspell.el (flyspell-mode-on):
11838 Call ispell-change-dictionary only if necessary.
11839
11840 * emacs-lisp/re-builder.el (regexp-builder): New function.
11841
11842 * register.el (describe-register-1): Explicitly handle
11843 yank-excluded-properties = t.
11844
11845 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
11846 (custom-magic-alist): Change the status descriptions again.
11847 (face widget-type): Total rewrite based on `restricted-sexp'
11848 to eliminate the confusing double hiding levels.
11849
11850 * emacs-lisp/debug.el (debug-on-entry-1):
11851 If function body is empty, add nil as body form.
11852
11853 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
11854
11855 * emacs-lisp/trace.el (inhibit-trace): New var.
11856 (trace-make-advice): Use it.
11857
11858 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
11859
11860 2005-02-26 Kim F. Storm <storm@cua.dk>
11861
11862 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
11863 (mouse-on-link-p, mouse-drag-region-1): Use it.
11864
11865 2005-02-25 Lute Kamstra <lute@gnu.org>
11866
11867 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
11868
11869 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
11870
11871 * frame.el (blink-cursor-mode): Add :group keyword.
11872
11873 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
11874
11875 * calendar/icalendar.el (icalendar--decode-isodatetime):
11876 New optional argument DAY-SHIFT.
11877 (icalendar-export-region): Fix coding-system-for-write.
11878 (icalendar--convert-ical-to-diary): Shift end-day of all-day
11879 events by one.
11880
11881 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
11882
11883 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
11884
11885 2005-02-24 Kim F. Storm <storm@cua.dk>
11886
11887 * international/iso-acc.el (iso-accents-compose): Fix crash
11888 during redisplay. Call force-window-update after read-event
11889 and delete-region to signal that window is not accurate.
11890
11891 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
11892
11893 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
11894 Remove unused and inexistent var `inhibit-trace'.
11895 (debugger-mode): Use run-mode-hooks.
11896 (debugger-list-functions): Add buttons; setup xref stack.
11897
11898 2005-02-23 Richard M. Stallman <rms@gnu.org>
11899
11900 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
11901 appointment says it was explicitly made.
11902 (appt-add): Set the 3rd element.
11903 (appt-make-list): Preserve explicit appointments.
11904
11905 * subr.el (find-tag-default): Catch errors in forward-sexp.
11906
11907 2005-02-23 Juri Linkov <juri@jurta.org>
11908
11909 * info.el (Info-isearch-search): New defcustom.
11910 (Info-isearch-search): Call the default isearch function
11911 when Info-isearch-search is nil.
11912 (Info-isearch-wrap): Use variable Info-isearch-search.
11913
11914 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
11915
11916 * cus-edit.el: Comment change.
11917
11918 2005-02-22 Kim F. Storm <storm@cua.dk>
11919
11920 * progmodes/hideif.el (hide-ifdef-use-define-alist):
11921 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
11922
11923 2005-02-22 Simon Josefsson <jas@extundo.com>
11924
11925 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
11926 New variable.
11927 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
11928 Oskarsson" <myrkraverk@users.sourceforget.net>.
11929
11930 2005-02-22 Kim F. Storm <storm@cua.dk>
11931
11932 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
11933 check that window of that event is the selected window.
11934 (mouse-drag-region-1): Compare mouse event window to selected
11935 window before setting point.
11936
11937 * tooltip.el (tooltip-show-help-function): Pass event to
11938 mouse-on-link-p so it can check selected window.
11939
11940 2005-02-22 Kenichi Handa <handa@m17n.org>
11941
11942 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
11943 (ps-mule-show-warning): New function.
11944 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
11945 characters are found.
11946
11947 * ps-print.el (ps-header-footer-string): Return a list of header
11948 and footer strings.
11949
11950 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11951
11952 * pcvs.el (cvs-retrieve-revision): Fix thinko.
11953
11954 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
11955
11956 * frame.el (blink-cursor-mode): Use define-minor-mode.
11957
11958 * term/mac-win.el (function-key-map): Use char-names more consistently.
11959 (file-name-coding-system): Only set it for MacOS-9. The other case is
11960 already handled in mule-cmds.el (where it also works when mac-win.el
11961 is not used).
11962
11963 2005-02-21 Kenichi Handa <handa@m17n.org>
11964
11965 * international/mule.el (ctext-pre-write-conversion): Always use
11966 " *code-converting-work*" buffer for work.
11967
11968 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
11969
11970 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
11971
11972 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
11973
11974 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
11975
11976 * ses.el (undo-more): Restore defadvice, but only the part that
11977 allows changes outside the restricted area of the buffer.
11978
11979 2005-02-20 Kim F. Storm <storm@cua.dk>
11980
11981 * simple.el (line-move): Add fourth optional arg try-vscroll which
11982 must be set to perform auto-window-vscroll.
11983 When moving backwards and doing auto-window-vscroll, automatically
11984 vscroll to the last part of lines which are taller than the window.
11985 (next-line, previous-line): Set try-vscroll arg on line-move.
11986
11987 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
11988
11989 * replace.el (query-replace, query-replace-regexp)
11990 (replace-string, replace-regexp): When operating on region, make
11991 the minibuffer prompt say so.
11992
11993 * isearch.el (isearch-forward): Document isearch-query-replace and
11994 isearch-query-replace-regexp keybindings.
11995
11996 2005-02-19 Jay Belanger <belanger@truman.edu>
11997
11998 * calc/calc-aent.el (math-read-token): Add local variable.
11999
12000 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
12001 (calc-edit-top): Move declaration to earlier in file.
12002 (calc-edit-macro-repeats): Add local variables.
12003
12004 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
12005 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
12006 calcFunc-tanh.
12007 Adjust integration rule for calcFunc-tan.
12008
12009 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
12010
12011 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
12012 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
12013 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
12014 (viper-skip-separators): Bug fix.
12015 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
12016 particular major mode.
12017 (viper-del-backward-char-in-replace): Don't put deleted char on the
12018 kill ring.
12019
12020 * viper-ex.el (viper-color-display-p): New function.
12021 (viper-has-face-support-p): Use viper-color-display-p.
12022
12023 * viper-keym.el (viper-gnus-modifier-map): New keymap.
12024
12025 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
12026
12027 * viper-util.el (viper-glob-unix-files): Fix shell status check.
12028 (viper-file-remote-p): Make equivalent to file-remote-p.
12029
12030 * viper.el (viper-major-mode-modifier-list):
12031 Use viper-gnus-modifier-map.
12032
12033 2005-02-19 David Kastrup <dak@gnu.org>
12034
12035 * subr.el (subregexp-context-p): Fix garbled doc string by adding
12036 quoting.
12037
12038 2005-02-19 Jay Belanger <belanger@truman.edu>
12039
12040 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
12041 Remove extra definitions.
12042 (calc-coth): New function.
12043 (calcFunc-cot): Fix `let'.
12044
12045 2005-02-19 Eli Zaretskii <eliz@gnu.org>
12046
12047 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
12048 the reasons we use "type pc" in these faces.
12049
12050 * button.el (button): Ditto.
12051
12052 2005-02-19 Michael Mauger <mmaug@yahoo.com>
12053
12054 * replace.el (query-replace-read-from): Set the value of
12055 query-replace-from-history-variable to handle the case of an empty
12056 string entered to accept the suggested default.
12057
12058 * net/tramp.el (tramp-file-name-for-operation):
12059 Use dired-call-process instead of dired-call-process-command.
12060
12061 2005-02-19 Jay Belanger <belanger@truman.edu>
12062
12063 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
12064 (math-div-non-trig): New variables.
12065 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
12066 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
12067 (math-combine-prod, math-div-symb-fancy): Add simplifications for
12068 trig expressions.
12069
12070 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
12071
12072 * progmodes/gdb-ui.el (gdb-var-update-handler)
12073 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
12074 for watch expressions,
12075 (gdb-var-create-handler): Don't set speedbar-update-flag.
12076 (gdb-post-prompt): Simplify test for speedbar.
12077
12078 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
12079
12080 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
12081 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
12082 we use the syntax table of the correct buffer.
12083 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
12084 Felix Gatzemeier.
12085
12086 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
12087 (ediff-file-remote-p): Make synonymous with file-remote-p.
12088 In all deffaces ediff-*-face-*, use min-colors.
12089
12090 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
12091 ediff-recurse-to-subdirectories.
12092 (ediff-mark-if-equal): Check that the arguments are strings, use
12093 ediff-same-contents (after to Felix Gatzemeier).
12094
12095 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
12096 nil.
12097
12098 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
12099
12100 * log-view.el (log-view-message-re): Fix up Subversion regexp.
12101
12102 2005-02-18 David Kastrup <dak@gnu.org>
12103
12104 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
12105 use `mark-active' when defined.
12106
12107 2005-02-18 Kenichi Handa <handa@m17n.org>
12108
12109 * ps-print.el (ps-font-info-database): New entry
12110 ZapfChancery-MediumItalic with correct font name. Fix font name
12111 of the entry Zapf-Chancery-MediumItalic.
12112
12113 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
12114
12115 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
12116
12117 2005-02-16 Kim F. Storm <storm@cua.dk>
12118
12119 * ido.el (ido-fallback-command): Pass user input to fallback command.
12120
12121 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
12122
12123 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
12124 (gdb-find-file-hook): Add server prefix.
12125
12126 2005-02-16 Richard M. Stallman <rms@gnu.org>
12127
12128 * replace.el (perform-replace): Pass new args to replace-highlight.
12129 (replace-highlight): Take region args,
12130 and pass them to isearch-lazy-highlight-new-loop.
12131
12132 * novice.el (disabled-command-hook): Autoload the defalias
12133 and the make-obsolete-variable call.
12134
12135 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
12136
12137 * isearch.el (isearch-lazy-highlight-start-limit)
12138 (isearch-lazy-highlight-end-limit): New variables limit
12139 the region for highlighting.
12140 (isearch-lazy-highlight-new-loop): New args BEG and END.
12141 (isearch-lazy-highlight-search): Use the new vars.
12142 (isearch-lazy-highlight-update): Likewise.
12143
12144 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
12145
12146 * cus-start.el (all): Use default-boundp.
12147
12148 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
12149
12150 * menu-bar.el (menu-bar-select-frame): Handle current frame.
12151
12152 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
12153
12154 * autorevert.el (auto-revert-stop-on-user-input)
12155 (auto-revert-verbose): Doc fixes.
12156
12157 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
12158
12159 * international/mule-cmds.el (set-locale-environment): Remove call
12160 to set-selection-coding-system on Windows.
12161
12162 2005-02-15 Jay Belanger <belanger@truman.edu>
12163
12164 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
12165 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
12166 calcFunc-coth.
12167 (math-simplify-sqrt): Add simplifications.
12168
12169 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
12170 to list.
12171
12172 * calc/calc-ext.el: Add functions to autoloads.
12173
12174 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
12175 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
12176 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
12177 (math-csc-raw, math-cot-raw): New functions.
12178
12179 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
12180
12181 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
12182 the variable name in a message.
12183
12184 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
12185 calcFunc-csc, calcFunc-cot.
12186
12187 * calc/calcalg2.el: Add derivative and integration rules for
12188 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
12189 calcFunc-csch, calcFunc-coth.
12190 (math-do-integral-methods): Add to checks for when to use
12191 substitutions.
12192
12193 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
12194
12195 2005-02-15 Lute Kamstra <lute@gnu.org>
12196
12197 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12198 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
12199 <monnier@iro.umontreal.ca>
12200 (lisp-outline-level): Improve efficiency. Suggested by David
12201 Kastrup <dak@gnu.org>.
12202
12203 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
12204
12205 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
12206 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
12207 (gdb-set-gud-minor-mode-existing-buffers): New functions.
12208 (gdb-find-file-hook): New hook. Add it to find-file-hook.
12209 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
12210
12211 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
12212
12213 * cus-start.el (all): Comment change.
12214
12215 2005-02-14 Lute Kamstra <lute@gnu.org>
12216
12217 * cus-start.el (all): Check if symbol is void.
12218
12219 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
12220
12221 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
12222 optional argument to \cite.
12223
12224 2005-02-14 Richard M. Stallman <rms@gnu.org>
12225
12226 * cus-edit.el (custom-buffer-create-internal): Update help message.
12227 (custom-magic-alist): Update help messages.
12228
12229 * cus-start.el (all): Allow a var to specify a standard value.
12230
12231 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
12232
12233 * custom.el (custom-theme-set-variables): Handle variable aliases.
12234
12235 * frame.el (blink-cursor-timer): Doc fix.
12236 (blink-cursor): Make it an alias for `blink-cursor-mode' and
12237 declare obsolete.
12238 (blink-cursor-mode): Define with defcustom and use correct
12239 standard expression in that defcustom.
12240 * startup.el (command-line): Adapt to above changes in frame.el.
12241
12242 2005-02-11 Lute Kamstra <lute@gnu.org>
12243
12244 * apropos.el (apropos-score-doc): Prevent division by zero.
12245
12246 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
12247
12248 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
12249 (icalendar--get-event-property-attributes)
12250 (icalendar--get-event-properties)
12251 (icalendar--datetime-to-diary-date): New functions.
12252 (icalendar--split-value): Doc fix.
12253 (icalendar--datetime-to-noneuropean-date)
12254 (icalendar--datetime-to-european-date): New optional argument
12255 SEPARATOR. Return result as a string instead of a list.
12256 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
12257 (icalendar--convert-string-for-export): Rename arg S to STRING.
12258 (icalendar-export-region): Doc fix. Change name of error buffer.
12259 Save output buffer.
12260 (icalendar-import-file): Add blank at end of prompt.
12261 (icalendar-import-buffer): Doc fix. Do not switch to error
12262 buffer. Indicate status in return value.
12263 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
12264 buffer. Save output buffer. Handle exception from recurrence
12265 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
12266 events. Fix problems with weekly all-day events.
12267
12268 2005-02-10 Richard M. Stallman <rms@gnu.org>
12269
12270 * simple.el (eval-expression-print-format):
12271 Avoid warning about edebug-active.
12272
12273 * help.el (help-for-help-internal): Rename from help-for-help.
12274 (help-for-help): Define with defalias.
12275
12276 * font-core.el (font-lock-default-function): Use with-no-warnings.
12277
12278 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
12279
12280 * custom.el (defface): Doc fix.
12281
12282 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
12283
12284 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
12285 width 0" to prevent word wrapping problems.
12286
12287 2005-02-09 Kim F. Storm <storm@cua.dk>
12288
12289 * ido.el (ido-file-extensions-order): New defcustom.
12290 (ido-file-extension-lessp, ido-file-extension-aux)
12291 (ido-file-extension-order): New advanced file ordering.
12292 (ido-file-lessp): New simple file ordering.
12293 (ido-sort-list): Remove.
12294 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
12295 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
12296
12297 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
12298
12299 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
12300 that some versions of grep produce.
12301 (grep-mode-font-lock-keywords): Likewise.
12302
12303 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
12304
12305 * progmodes/gdb-ui.el (gdb-location-list): New variable.
12306 (gdb-cdir): Delete.
12307 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
12308 (gdb-source-info): Treat case when source file is in another
12309 directory properly.
12310 (gdb-get-location): New function.
12311
12312 2005-02-07 Jay Belanger <belanger@truman.edu>
12313
12314 * calc/calc-prog.el (calc-write-parse-table-part)
12315 (calc-fix-token-name): Fix a check for language type.
12316
12317 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
12318
12319 2005-02-07 Andre Spiegel <spiegel@gnu.org>
12320
12321 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
12322 as directory not writable.
12323
12324 2005-02-07 Kim F. Storm <storm@cua.dk>
12325
12326 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
12327 (cua--standard-movement-commands): Remove list.
12328 Instead, set CUA property value to move for movement commands.
12329 (cua-movement-commands): Remove. Users must set CUA prop instead.
12330 (cua--pre-command-handler): Check CUA property.
12331 (cua--init-keymaps): Don't remap undo commands.
12332 (cua-mode): Don't call cua--rectangle-on-off.
12333
12334 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
12335 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
12336 (cua--rect-undo-set-point): New var.
12337 (cua--rectangle-undo-boundary): Setup undo apply entry.
12338 (cua--rect-undo-handler): New function for rectangle undo.
12339 (cua--rect-start-position, cua--rect-end-position): Add.
12340 (cua--rectangle-post-command): Call cua--rectangle-set-corners
12341 for restored rectangle. Set point if cua--rect-undo-set-point.
12342
12343 2005-02-06 Jay Belanger <belanger@truman.edu>
12344
12345 * calc/calc-lang.el (calc-tex-language): Display more information
12346 in messages.
12347
12348 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
12349 in TeX mode.
12350
12351 2005-02-06 Richard M. Stallman <rms@gnu.org>
12352
12353 * emacs-lisp/lisp.el (buffer-end): Doc fix.
12354
12355 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
12356
12357 * net/ldap.el (ldap-search-internal): Support attributes with
12358 optional descriptions separated by a semi-colon, as in
12359 "userCertificate;binary".
12360
12361 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12362
12363 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
12364 isn't a cons (i.e. the version is 0).
12365
12366 2005-02-05 Eli Zaretskii <eliz@gnu.org>
12367
12368 * help.el (help-for-help): Doc fix.
12369
12370 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
12371
12372 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
12373 GDB-Windows on the menu-bar as this works better.
12374
12375 2005-02-04 Jay Belanger <belanger@truman.edu>
12376
12377 * calc/calc-embed.el (calc-embedded-update): Don't put in
12378 unnecessary newlines. Adjust the end of formula marker.
12379
12380 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
12381 (math-latex-parse-two-args): New function.
12382
12383 2005-02-03 Lute Kamstra <lute@gnu.org>
12384
12385 * help-fns.el (help-with-tutorial): Make sure that users cannot
12386 remove the entire text of the tutorial by means of `undo'.
12387
12388 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
12389
12390 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
12391 in recent changes, where the ispell process was repeatedly
12392 killed & restarted.
12393
12394 * international/mule-cmds.el (set-locale-environment): Set file-name
12395 coding system to utf-8 on Darwin systems.
12396 (set-default-coding-systems): Don't set default-file-name-coding-system
12397 on Darwin systems.
12398
12399 2005-02-03 Richard M. Stallman <rms@gnu.org>
12400
12401 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
12402
12403 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
12404
12405 * faces.el (list-faces-display): Add optional argument.
12406
12407 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
12408
12409 * font-core.el (font-lock-default-function): Handle the rare case where
12410 only font-lock-keywords is set.
12411
12412 2005-02-02 Kenichi Handa <handa@m17n.org>
12413
12414 * international/characters.el: Cancel previous change for
12415 I-WITH-DOT-ABOVE and DOTLESS-i.
12416
12417 * international/latin-5.el: Cancel previous change.
12418
12419 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
12420
12421 * progmodes/gud.el: Correction to syntax in gud-menu-map.
12422
12423 2005-02-02 Kenichi Handa <handa@m17n.org>
12424
12425 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
12426 DOTLESS-i.
12427
12428 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
12429 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
12430
12431 * case-table.el (get-upcase-table): New function.
12432 (copy-case-table): Copy upcaes table too if non-nil.
12433 (set-case-syntax-delims): Maintain upcase table too.
12434 (set-case-syntax-pair): Likewise.
12435 (set-upcase-syntax, set-downcase-syntax): New functions.
12436 (set-case-syntax): Maintain upcase table too.
12437
12438 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
12439
12440 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
12441
12442 * progmodes/gud.el (gud-goto-info): New function.
12443 (gud-tool-bar-map): Use correct icon.
12444
12445 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
12446
12447 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
12448 When delegating, order args in the funcall correctly.
12449
12450 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
12451
12452 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
12453
12454 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
12455
12456 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
12457 buffer not visiting a file.
12458
12459 2005-01-31 Jay Belanger <belanger@truman.edu>
12460
12461 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
12462 bound on the line with the formula.
12463
12464 2005-01-31 Kim F. Storm <storm@cua.dk>
12465
12466 * ses.el (ses-create-cell-variable-range)
12467 (ses-destroy-cell-variable-range, ses-reset-header-string)
12468 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
12469 (ses-insert-row): Fix format of apply undo entries.
12470
12471 2005-01-31 Jay Belanger <belanger@truman.edu>
12472
12473 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
12474 parts.
12475
12476 * calc/calc-embed.el (calc-embedded-open-formula)
12477 (calc-embedded-close-formula): Ignore matrix environments.
12478
12479 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
12480 TeX mode.
12481
12482 * calc/calc-lang.el (math-function-table, math-oper-table)
12483 (math-variable-table): Adjust the LaTeX portions.
12484
12485 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
12486 (math-latex-ignore-words): New constant.
12487
12488 2005-01-31 Richard M. Stallman <rms@gnu.org>
12489
12490 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
12491 (ispell-local-dictionary): Doc fix.
12492 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
12493 Don't reinitialize at run time. Don't defcustom.
12494 All uses changed to append ispell-local-dictionary-alist,
12495 or check it first.
12496 (ispell-current-dictionary): New variable for dictionary in use.
12497 (ispell-dictionary): Now used only for global default.
12498 (ispell-start-process): Set ispell-current-dictionary,
12499 not ispell-dictionary.
12500 (ispell-change-dictionary): Use this only for setting
12501 user preferences.
12502 (ispell-internal-change-dictionary): New function
12503 to change the current dictionary in use.
12504 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
12505 Use ispell-current-dictionary.
12506 Handle ispell-local-dictionary-overridden.
12507 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
12508
12509 2005-01-31 Jay Belanger <belanger@truman.edu>
12510
12511 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
12512
12513 * calc/calc-ext.el: Add calc-latex-language to autoloads.
12514 (calc-mode-map): Add calc-latex-language.
12515
12516 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
12517 (math-latex-print-frac): New functions.
12518 (math-oper-table, math-function-table, math-variable-table)
12519 (math-complex-format, math-input-filter): Add latex properties.
12520 (calc-set-language): Set math-expr-special-function-mapping.
12521
12522 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
12523 (calc-write-parse-table-part): Add LaTeX support.
12524
12525 * calc/calc.el (calc-language): Adjust docstring.
12526 (calc-set-mode-line): Add LaTeX support.
12527 (math-expr-special-function-mapping): New variable.
12528 (math-tex-ignore-words): Add to list.
12529
12530 * calc/calccomp.el (math-compose-expr, math-compose-rows):
12531 Add LaTeX support.
12532 (math-compose-expr): Add support for special functions.
12533
12534 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
12535
12536 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
12537
12538 * progmodes/gdb-ui.el (gdb-memory-address)
12539 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
12540 (gdb-memory-mode-map, gdb-memory-format-keymap)
12541 (gdb-memory-format-menu, gdb-memory-unit-keymap)
12542 (gdb-memory-unit-menu): New variables for a buffer
12543 that lets the user examine program memory.
12544 (gdb-memory-set-address, gdb-memory-set-repeat-count)
12545 (gdb-memory-format-binary, gdb-memory-format-octal)
12546 (gdb-memory-format-unsigned, gdb-memory-format-signed)
12547 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
12548 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
12549 (gdb-memory-unit-word, gdb-memory-unit-halfword)
12550 (gdb-memory-unit-byte, gdb-memory-unit-menu)
12551 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
12552 (gdb-memory-mode, gdb-memory-buffer-name)
12553 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
12554 New functions for above buffer.
12555
12556 2005-01-30 Richard M. Stallman <rms@gnu.org>
12557
12558 * cus-edit.el (custom-bury-buffer): Function deleted.
12559 (custom-buffer-done-function): Option deleted.
12560 (custom-buffer-done-kill): New (replacement option.
12561 (Custom-buffer-done): Call quit-window.
12562 (custom-buffer-create-internal): Update for above changes.
12563
12564 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
12565
12566 * simple.el (undo-ask-before-discard): New var.
12567 (undo-outer-limit-truncate): Implement it.
12568 (undo-extra-outer-limit): Doc update.
12569
12570 2005-01-29 Richard M. Stallman <rms@gnu.org>
12571
12572 * ses.el (undo-more): Delete defadvice.
12573 (ses-begin-change): Doc fix.
12574
12575 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
12576 instead of rebinding C-x u and C-_.
12577
12578 * files.el (normal-backup-enable-predicate): Return nil for files
12579 in /tmp, regardless of temporary-file-directory.
12580
12581 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
12582
12583 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
12584 (open-rectangle, delete-whitespace-rectangle-line)
12585 (clear-rectangle-line): If FILL, pass t instead of FILL
12586 for move-to-column's 2nd arg.
12587
12588 * simple.el (undo): Fix the test for continuing a series of undos.
12589 (undo-more): Set pending-undo-list to t when we reach end.
12590 (pending-undo-list): Move up defvar.
12591
12592 * wid-edit.el (widget-button-click):
12593 Shorten the range of the track-mouse binding.
12594
12595 * comint.el (comint-insert-input): Undo previous changes;
12596 use last-input-event in interactive spec.
12597
12598 2005-01-29 Eli Zaretskii <eliz@gnu.org>
12599
12600 * progmodes/compile.el (compilation-start): Bind buffer-read-only
12601 to nil before invoking call-process. Reset buffer's modified flag
12602 after fontifying it in the no-async branch.
12603
12604 * wid-edit.el (widget-specify-button): If mouse pointer shape
12605 cannot be changed, use mouse face instead.
12606
12607 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
12608
12609 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
12610 (gdb-goto-breakpoint): Make breakpoint handling work on template
12611 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
12612 (gdb-assembler-custom): Update to recognize breakpoint information
12613 added on 2005-01-19.
12614
12615 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
12616
12617 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
12618 (dsssl-mode): Use define-derived-mode.
12619 (scheme-mode-initialize): Remove.
12620 (scheme-mode): Use run-mode-hooks.
12621
12622 * cus-edit.el (customize-group-other-window)
12623 (custom-buffer-create-other-window): Don't override special-display-*.
12624 (custom-mode-map): Make it dense.
12625
12626 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
12627 sets the default value.
12628
12629 2005-01-28 Eli Zaretskii <eliz@gnu.org>
12630
12631 * descr-text.el: Add more keywords.
12632
12633 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
12634
12635 * speedbar.el: Avoid unnecessary use of locate-library.
12636
12637 * international/mule-cmds.el (standard-display-european-internal):
12638 Don't fiddle with latin-1 non-break space any more since it's now
12639 special cased in the C code.
12640 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
12641
12642 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
12643
12644 * cus-start.el (all): Add `undo-outer-limit'.
12645
12646 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12647
12648 * textmodes/bibtex.el (bibtex-format-entry):
12649 Use `bibtex-empty-field-re' only on the text of fields, not on entire
12650 field lines.
12651 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
12652 not on part of a buffer.
12653
12654 2005-01-25 Lute Kamstra <lute@gnu.org>
12655
12656 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
12657 nonempty field text strings like "{letters\\macro{}more letters}".
12658 Clarify docstring.
12659 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
12660 (bibtex-entry-offset, bibtex-parse-association)
12661 (bibtex-parse-field-name): Fix typos in docstrings.
12662 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
12663
12664 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
12665
12666 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
12667 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
12668 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
12669 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
12670
12671 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
12672 isearch minor mode.
12673
12674 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
12675
12676 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
12677
12678 2005-01-24 Lute Kamstra <lute@gnu.org>
12679
12680 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
12681 CASECHARS and NOT-CASECHARS regular expressions of the
12682 "nederlands" and "nederlands8" dictionaries to prevent a "Range
12683 striding over charsets" error.
12684
12685 2005-01-24 Jay Belanger <belanger@truman.edu>
12686
12687 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
12688 display variable name.
12689
12690 2005-01-24 Kenichi Handa <handa@m17n.org>
12691
12692 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
12693 Fix setting of the element of encoded-kbd-iso2022-invocations.
12694
12695 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
12696
12697 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
12698 (gdb-threads-select): Change to also accept mouse events.
12699 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
12700 (gdb-threads-mouse-select): Delete.
12701
12702 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
12703
12704 * files.el (insert-directory): Take care of empty directory,
12705 listed without -a switch.
12706
12707 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
12708
12709 * textmodes/refill.el (refill-post-command-function):
12710 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
12711 to the list of functions that we should be careful not to undo.
12712 (refill-late-fill-paragraph-function): Remove.
12713 (refill-saved-state): New var.
12714 (refill-mode): Use it to save fill-paragraph-function.
12715 Save also the value of auto-fill-function.
12716
12717 * term/w32-win.el: Simplify code.
12718
12719 2005-01-23 Kim F. Storm <storm@cua.dk>
12720
12721 * simple.el (line-move): Adapt to new return value from
12722 pos-visible-in-window-p.
12723
12724 * simple.el (line-move): Fix last change. Check partial
12725 visibility at point rather than at window-start.
12726
12727 2005-01-22 Jason Rumney <jasonr@gnu.org>
12728
12729 * term/w32-win.el (xw-defined-colors): Remove debug-message.
12730
12731 2005-01-22 David Kastrup <dak@gnu.org>
12732
12733 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
12734
12735 2005-01-22 Eli Zaretskii <eliz@gnu.org>
12736
12737 * type-break.el (type-break-mode): Add a test for
12738 type-break-file-name being non-nil.
12739
12740 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
12741
12742 * net/eudc.el (top level): Call (message "") via progn, so that
12743 eudc-options-file is loaded.
12744
12745 2005-01-22 Kim F. Storm <storm@cua.dk>
12746
12747 * simple.el (line-move-1): Rename from line-move.
12748 (line-move): New function that adjusts vscroll for partially
12749 visible rows, and calls line-move-1 otherwise.
12750
12751 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
12752
12753 * pcomplete.el: Define pcomplete-read-event instead of read-event,
12754 since it's not a complete read-event implementation
12755
12756 2005-01-20 Jay Belanger <belanger@truman.edu>
12757
12758 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
12759 for called function.
12760
12761 2005-01-20 Steven Tamm <steventamm@mac.com>
12762
12763 * term/mac-win.el (process-connection-type): Remove.
12764 Controlled now by s/darwin.h:PTY_ITERATION.
12765
12766 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
12767
12768 * window.el (handle-select-window): Don't switch window when we're
12769 in the minibuffer.
12770
12771 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
12772
12773 * subr.el (dotimes-with-progress-reporter): New macro.
12774
12775 * ses.el (ses-dotimes-msg): Remove macro.
12776 Use `dotimes-with-progress-reporter' instead.
12777
12778 2005-01-19 Steven Tamm <steventamm@mac.com>
12779
12780 * term/mac-win.el (process-connection-type): Use new
12781 operating-system-release variable to use ptys on Darwin 7 (OS X
12782 10.3) when using carbon build.
12783
12784 2005-01-19 Jay Belanger <belanger@truman.edu>
12785
12786 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
12787 flags if the last command was a tab or M-tab.
12788
12789 * calc/calc-prog.el (calc-user-define-edit): Put original formula
12790 in formula editing buffer.
12791
12792 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
12793
12794 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
12795 breakpoint image symbol in margin.
12796
12797 2005-01-19 Jay Belanger <belanger@truman.edu>
12798
12799 * calc/calc-prog.el (calc-execute-kbd-macro):
12800 Ignore calc-keep-arg-flag.
12801
12802 2005-01-19 Kenichi Handa <handa@m17n.org>
12803
12804 * textmodes/ispell.el (ispell-looking-at): New function.
12805 (ispell-process-line): Use ispell-looking-at to compare the ispell
12806 output and the buffer contents.
12807
12808 2005-01-18 Jay Belanger <belanger@truman.edu>
12809
12810 * calc/calc.el (calc-display-raw): Fix docstring.
12811
12812 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
12813
12814 * simple.el (blink-matching-open): Strip extra info from syntax.
12815
12816 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
12817 funny chars in the end-of-here-doc marker.
12818
12819 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
12820
12821 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
12822 that enable/disabled state of breakpoints is shown correctly in
12823 fringe and on ttys.
12824 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
12825 Add breakpoint information as text properties.
12826 (gdb-mouse-toggle-breakpoint):
12827 Rename to gdb-mouse-set-clear-breakpoint.
12828 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
12829 breakpoints in the margin.
12830 (gdb-remove-strings): Simplify.
12831
12832 2005-01-17 Jay Belanger <belanger@truman.edu>
12833
12834 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
12835 erasing buffer.
12836
12837 2005-01-17 Richard M. Stallman <rms@gnu.org>
12838
12839 * progmodes/grep.el (grep-find): Copy from `grep' the condition
12840 for calling grep-compute-defaults.
12841
12842 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
12843 if buffer is empty.
12844
12845 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
12846
12847 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
12848
12849 * hilit-chg.el (highlight-changes-mode): Don't autoload.
12850
12851 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
12852 non-preloaded variables.
12853
12854 2005-01-17 Steven Tamm <steventamm@mac.com>
12855
12856 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
12857 tex-shell cause to force interactivity when using pipes.
12858
12859 2005-01-17 Kim F. Storm <storm@cua.dk>
12860
12861 * simple.el (just-one-space): Make arg optional.
12862
12863 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
12864
12865 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
12866 posn-at-x-y to t to access left-margin.
12867
12868 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
12869
12870 Sync with Tramp 2.0.47.
12871
12872 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
12873 catching keep-date problems in cp/scp operations.
12874 (tramp-handle-copy-file): Don't call `set-file-modes'
12875 unconditionally. Specialized functions should know better what is
12876 necessary. This improves performance a little bit, and the
12877 functions could catch errors with `cp -p' and `scp -p'.
12878 (tramp-do-copy-or-rename-file-via-buffer)
12879 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
12880 when appropriate.
12881 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
12882 Call `set-file-modes' when appropriate.
12883 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
12884 Johnsson <isak@hypergene.com>
12885 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
12886 of both Tramp buffer and debug buffer. Reported by Joakim Verona
12887 <joakim@verona.se>
12888 (tramp-file-name-for-operation): Mark `shell-command' as magic for
12889 Emacs only.
12890
12891 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
12892 `find-file-hooks' and `dired-mode-hook'.
12893 (tramp-minor-mode-map): Respective map. Add remapping for
12894 `compile' and `recompile'.
12895 (tramp-remap-command, tramp-recompile): New defuns.
12896 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
12897 in buffer "*Compilation*". Call the commands asynchronously.
12898
12899 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
12900 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
12901 `shell-command', because it isn't magic in XEmacs. Reported by
12902 Adrian Aichner <adrian@xemacs.org>.
12903
12904 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
12905 `substitute-in-file-name.
12906 (tramp-smb-handle-substitute-in-file-name): New defun.
12907 (tramp-smb-advice-PC-do-completion): Delete advice.
12908
12909 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
12910
12911 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
12912 Fix error in deleting region.
12913
12914 2005-01-15 Richard M. Stallman <rms@gnu.org>
12915
12916 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
12917 In non-temp buffer, switch syntax table temporarily.
12918
12919 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
12920
12921 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
12922
12923 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
12924
12925 * imenu.el (imenu--split-menu): Copy menulist before sorting.
12926 (imenu--generic-function): Use START, not BEG, as pos of definition.
12927
12928 * simple.el (just-one-space): Argument specifies number of spaces.
12929
12930 * simple.el (eval-expression-print-format): Avoid warning
12931 about edebug-active.
12932
12933 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
12934
12935 * progmodes/sh-script.el: Code copied from make-mode.el
12936 with small changes,
12937 (sh-mode-map): Bind C-c C-\.
12938 (sh-backslash-column, sh-backslash-align): New variables.
12939 (sh-backslash-region, sh-append-backslash): New functions.
12940
12941 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
12942
12943 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
12944 (rmail-pop-password, rmail-pop-password-required): Move to
12945 rmail-obsolete group.
12946 (rmail-set-pop-password): Rename to rmail-set-remote-password.
12947 All callers updated.
12948 (rmail-get-pop-password): Rename to rmail-get-remote-password.
12949 Take an argument specifying whether it is POP or IMAP mailbox we
12950 are using. All callers updated.
12951 (rmail-pop-password-error): Rename to
12952 rmail-remote-password-error. Added mailutils-specific error message.
12953 (rmail-movemail-search-path)
12954 (rmail-movemail-variant-in-use): New variables.
12955 (rmail-remote-password, rmail-remote-password-required):
12956 New customization variables.
12957 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
12958 (rmail-parse-url): New function.
12959 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
12960 with GNU mailutils movemail.
12961
12962 2005-01-15 Kevin Ryde <user42@zip.com.au>
12963
12964 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
12965 suffix to space, $ or '$, to correctly position point when going
12966 to @table style constants like DBL_MAX.
12967
12968 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
12969
12970 * type-break.el (type-break-mode, type-break-file-time)
12971 (type-break-file-keystroke-count, type-break-choose-file):
12972 Don't store data in or load data from the file if type-break-file-name
12973 is nil.
12974 (type-break-file-name): Doc update as per the above.
12975
12976 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
12977
12978 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
12979 lookup-key might return nil; handle that.
12980
12981 2005-01-15 Alan Mackenzie <acm@muc.de>
12982
12983 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
12984 rather than the element found, thus enabling the tree to be setcar'd.
12985
12986 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
12987
12988 * textmodes/org.el (org-show-following-heading): New option.
12989 (org-show-hierarchy-above): Use `org-show-following-heading'.
12990 (org-cycle): Documentation fix.
12991
12992 * textmodes/org.el (orgtbl-optimized): New option
12993 (orgtbl-mode): New command, a minor mode.
12994 (orgtbl-mode-map): New variable.
12995 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
12996 (orgtbl-error, orgtbl-self-insert-command)
12997 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
12998
12999 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
13000 a local variable in each org-mode buffer.
13001
13002 * textmodes/org.el (org-set-regexps-and-options): Rename from
13003 `org-set-regexps'. Added checking for STARTUP keyword.
13004 (org-get-current-options): Add STARTUP options.
13005 (org-table-insert-row): Make mode intelligent about when
13006 realignment is needed.
13007 (org-self-insert-command, org-delete-backward-char, org-delete-char):
13008 New commands.
13009 (org-enable-table-editor): New default value `optimized'.
13010 (org-table-blank-field): Support blanking regions if active.
13011
13012 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
13013
13014 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
13015 if the year is not given.
13016
13017 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
13018 Add new escapes %m and %M, fixed bug with %F by adding
13019 save-match-data.
13020 (reftex-reference): Remove ?. from list of spaces.
13021 (reftex-label-info): Add automatic label prefix recognition.
13022
13023 * textmodes/reftex-index.el (reftex-index-next-phrase):
13024 Add slave parameter to call of `reftex-index-this-phrase'.
13025 (reftex-index-this-phrase): New optional argument.
13026 (reftex-index-region-phrases): Add slave parameter to call of
13027 `reftex-index-this-phrase'.
13028 (reftex-display-index): New argument redo.
13029 (reftex-index-rescan): Add 'redo to arguments of
13030 `reftex-display-index'.
13031 (reftex-index-Rescan, reftex-index-revert)
13032 (reftex-index-switch-index-tag): Add 'redo to arguments of
13033 `reftex-display-index'.
13034 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
13035 indexing. Fix bug with matching is there is a quote before or
13036 after the word.
13037
13038 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
13039 Fix bug when collecting citation keys in lines with comments.
13040 (reftex-citation): Prefix argument no longer rescans the document,
13041 but forces prompting for optional arguments of cite macros.
13042 (reftex-do-citation): Prompting for optional arguments implemented.
13043
13044 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
13045 Add optional arguments to most cite commands.
13046 (reftex-cite-cleanup-optional-args): New option
13047 (reftex-cite-prompt-optional-args): New option.
13048 (reftex-trust-label-prefix): New option.
13049
13050 * textmodes/reftex-toc.el (reftex-toc-find-section):
13051 Add push-mark before changing the position in the buffer.
13052
13053 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
13054 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
13055
13056 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
13057
13058 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
13059 more carefully.
13060
13061 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
13062
13063 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
13064 (sgml-mode): Use it.
13065 (sgml-get-context): Better keep track of implicitly closed tags.
13066
13067 2005-01-13 Kenichi Handa <handa@m17n.org>
13068
13069 * textmodes/ispell.el: These changes are to fix misalignment error
13070 caused by equivalent characters of different Emacs charsets.
13071 (ispell-unified-chars-table): New variable.
13072 (ispell-get-decoded-string): New function.
13073 (ispell-get-casechars, ispell-get-not-casechars)
13074 (ispell-get-otherchars): Call ispell-get-decoded-string.
13075
13076 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
13077
13078 * custom.el (custom-declare-variable): Just put symbol instead
13079 of (defvar . symbol) in `current-load-list'.
13080
13081 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
13082
13083 * emacs-lisp/elint.el: Fixed typo in Commentary section.
13084
13085 2005-01-12 Jay Belanger <belanger@truman.edu>
13086
13087 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
13088 to create a Calc summary.
13089
13090 2005-01-12 Kim F. Storm <storm@cua.dk>
13091
13092 * mouse.el (mouse-on-link-p): Change functionality and doc
13093 string to comply with latest description in lisp ref.
13094
13095 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
13096
13097 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
13098 Enable mouse clicks on mode-line, header-line and margin.
13099 (event-type): Give mouse event symbols an 'event-kind property
13100 with value 'mouse-click.
13101
13102 2005-01-12 Juri Linkov <juri@jurta.org>
13103
13104 * facemenu.el (list-colors-display): Add new arg buffer-name.
13105 Use it. Fix docstring. Replace code for identifying duplicate
13106 colors by the name with call to `list-colors-duplicates' which
13107 identifies duplicate colors by the value unless the color
13108 is one of special Windows colors. Set truncate-lines to t.
13109 Print sorted duplicate color names on each line. Indent to 22
13110 \(the longest color name in rgb.txt) instead of 20. Optimize.
13111 (list-colors-duplicates): New function.
13112 (facemenu-color-name-equal): Delete function.
13113
13114 * facemenu.el (list-colors-print): New function created from code
13115 in list-colors-display. Print #RRGGBB at the window right edge.
13116 (list-colors-display): When temp-buffer-show-function is not
13117 defined, call list-colors-print from temp-buffer-show-hook
13118 to get the right value of window-width in list-colors-print
13119 after the buffer is displayed.
13120
13121 * simple.el (pop-mark): Move deactivate-mark out of conditional
13122 part to deactivate the active mark regardless of the state of the
13123 mark ring.
13124
13125 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
13126 variables line in desktop files.
13127
13128 2005-01-12 Juri Linkov <juri@jurta.org>
13129
13130 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
13131 Bring together isearch highlight related options.
13132 (lazy-highlight): Replace group `replace' by `matching'.
13133 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
13134 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
13135 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
13136 and declare them obsolete.
13137 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
13138 (isearch-faces): Remove defgroup.
13139 (isearch-overlay, isearch-highlight, isearch-dehighlight):
13140 Move isearch highlighting code closer to lazy highlighting code.
13141
13142 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
13143 (query-replace-highlight, query-replace-lazy-highlight)
13144 (query-replace): Move definitions to the beginning of the file.
13145
13146 2005-01-11 Juri Linkov <juri@jurta.org>
13147
13148 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
13149 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
13150 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
13151
13152 * info.el (Info-history-forward): New variable.
13153 (Info-select-node): Reset Info-history-forward to nil.
13154 (Info-last): Turn into defalias.
13155 (Info-history-back): Rename from Info-last.
13156 Add current node to Info-history-forward.
13157 (Info-history-forward): New fun.
13158 (Info-mode-map): Replace Info-last by Info-history-back.
13159 Bind Info-history-forward to "r".
13160 (Info-mode-menu): Replace Info-last by Info-history-back.
13161 Fix menu item text. Add menu item for Info-history-forward.
13162 (info-tool-bar-map): Replace Info-last by Info-history-back.
13163 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
13164 for Info-history-forward.
13165 (Info-mode): Replace Info-last by Info-history-back in docstring.
13166 Add local variable Info-history-forward.
13167 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
13168
13169 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
13170
13171 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
13172 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
13173 Ignore select-window events rather than fiddle with
13174 mouse-autoselect-window.
13175
13176 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
13177
13178 * type-break.el (type-break-mode): Fix previous change.
13179
13180 2005-01-10 Jay Belanger <belanger@truman.edu>
13181
13182 * calc/calc-ext.el (calc-reset): Reset when inside embedded
13183 calculator; only reset when point is inside a calculator.
13184 Don't adjust the window height if the window takes up the whole height
13185 of the frame.
13186
13187 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
13188
13189 * ebuff-menu.el (Electric-buffer-menu-mode):
13190 Preserve value of buffer-local var header-line-format.
13191
13192 2005-01-09 Jay Belanger <belanger@truman.edu>
13193
13194 * calc/calc.el (calc-mode-var-list-restore-saved-values):
13195 Make sure settings file exists before accessing it.
13196
13197 * calc/calc-embed.el (calc-embedded-subst):
13198 Replace math-multi-subst-rec, which is only supposed to be called
13199 by math-multi-subst, by math-multi-subst.
13200
13201 2005-01-09 Andre Spiegel <spiegel@gnu.org>
13202
13203 * vc.el (vc-allow-async-revert): New user option.
13204 (vc-disable-async-diff): New internal variable.
13205 (vc-revert-buffer): Use them to disable asynchronous diff.
13206
13207 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
13208 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
13209 asynchronously if vc-disable-async-diff is t.
13210
13211 2005-01-09 Jay Belanger <belanger@truman.edu>
13212
13213 * calc/calc.el (defcalcmodevar): New macro.
13214 (calc-mode-var-list-restore-default-values)
13215 (calc-mode-var-list-restore-saved-values): New functions.
13216 (calc-mode-var-list): Use defcalcmodevar to define it.
13217 (calc-always-load-extensions, calc-line-numbering)
13218 (calc-line-breaking, calc-display-just, calc-display-origin)
13219 (calc-number-radix, calc-leading-zeros, calc-group-digits)
13220 (calc-group-char, calc-point-char, calc-frac-format)
13221 (calc-prefer-frac, calc-hms-format, calc-date-format)
13222 (calc-float-format, calc-full-float-format, calc-complex-format)
13223 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
13224 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
13225 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
13226 (calc-matrix-brackets, calc-language, calc-language-option)
13227 (calc-left-label, calc-right-label, calc-word-size)
13228 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
13229 (calc-display-raw, calc-internal-prec, calc-angle-mode)
13230 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
13231 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
13232 (calc-window-height, calc-display-trail, calc-show-selections)
13233 (calc-use-selections, calc-assoc-selections)
13234 (calc-display-working-message, calc-auto-why, calc-timing)
13235 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
13236 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
13237 (calc-gnuplot-default-device, calc-gnuplot-default-output)
13238 (calc-gnuplot-print-device, calc-gnuplot-print-output)
13239 (calc-gnuplot-geometry, calc-graph-default-resolution)
13240 (calc-graph-default-resolution-3d, calc-invocation-macro)
13241 (calc-show-banner): Use defcalcmodevar to declare them and set
13242 their default values.
13243
13244 * calc/calc-ext.el (calc-reset): Restore saved values of variables
13245 instead of default values (but restore default values if there is
13246 an argument of 0).
13247
13248 2005-01-09 David Kastrup <dak@gnu.org>
13249
13250 * desktop.el (desktop-restore-eager): Fix typo in type.
13251
13252 2005-01-08 Richard M. Stallman <rms@gnu.org>
13253
13254 * cus-edit.el (customize): Delete :link.
13255
13256 2005-01-08 Jay Belanger <belanger@truman.edu>
13257
13258 * calc/calc.el (calc-mode): Remove the extension from the
13259 `calc-settings-file' file name when loading it.
13260
13261 2005-01-08 Kim F. Storm <storm@cua.dk>
13262
13263 * info.el (Info-mode-map, Info-next-link-keymap)
13264 (Info-prev-link-keymap, Info-up-link-keymap):
13265 Map follow-link to mouse-face.
13266 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
13267
13268 2005-01-08 Jay Belanger <belanger@truman.edu>
13269
13270 * calc/calc.el (calc-settings-file): Change default value.
13271 Suggested by cgw in a comment in calc-mode.el.
13272
13273 * calc/calc-mode.el (calc-settings-file-name):
13274 Compare calc-settings-file to user-init-file instead of ~/.emacs.
13275 Replace ~/.emacs in a prompt by calc-settings-file.
13276
13277 2005-01-07 Lars Hansen <larsh@math.ku.dk>
13278
13279 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
13280 (desktop-lazy-idle-delay): New customizable variables.
13281 (desktop-buffer-args-list): New variable.
13282 (desktop-append-buffer-args): New function.
13283 (desktop-save): Call desktop-append-buffer-args for some buffers.
13284 (desktop-lazy-create-buffer): New function.
13285 (desktop-idle-create-buffers): New function.
13286 (desktop-read): Add message about buffers to restore lazily.
13287 (desktop-lazy-abort): New command.
13288 (desktop-clear): Call desktop-lazy-abort.
13289 (desktop-lazy-complete): New command.
13290
13291 2005-01-06 Richard M. Stallman <rms@gnu.org>
13292
13293 * emacs-lisp/find-func.el (find-face-definition):
13294 Rename from find-face.
13295
13296 2005-01-06 Kim F. Storm <storm@cua.dk>
13297
13298 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
13299
13300 * man.el (Man-xref-man-page, Man-xref-header-file)
13301 (Man-xref-normal-file): Add follow-link property.
13302
13303 2005-01-06 Jay Belanger <belanger@truman.edu>
13304
13305 * calc/calc-units.el: Make sure the proper macro definitions are
13306 available when compiling.
13307
13308 2005-01-06 Juri Linkov <juri@jurta.org>
13309
13310 * isearch.el (isearch-lazy-highlight-update):
13311 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
13312
13313 2005-01-06 Miles Bader <miles@gnu.org>
13314
13315 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
13316 (isearch-lazy-highlight-face): Use new name.
13317
13318 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
13319
13320 * uniquify.el (uniquify-rationalize-file-buffer-names):
13321 Re-add an interactive spec.
13322 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
13323 to the same name.
13324
13325 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
13326 (isearch-update, isearch-done): Adjust calls accordingly.
13327
13328 2005-01-05 Richard M. Stallman <rms@gnu.org>
13329
13330 * custom.el (custom-set-variables, custom-theme-set-variables):
13331 Clarify documentation.
13332
13333 * emacs-lisp/find-func.el (find-variable)
13334 (find-variable-other-window, find-variable-other-frame):
13335 Fix the TYPE args to find-function-read and find-function-do-it.
13336 (find-function): Doc fix.
13337 (find-function-at-point): Replace function-at-point alias.
13338
13339 2005-01-04 Richard M. Stallman <rms@gnu.org>
13340
13341 * cus-face.el (custom-declare-face):
13342 Record defface in current-load-list.
13343
13344 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
13345
13346 * emacs-lisp/find-func.el: Doc fixes.
13347 (find-face-regexp): New variable.
13348 (find-function-regexp-alist): New variable.
13349 (find-function-C-source): Third arg is now TYPE.
13350 (find-function-search-for-symbol): Handle general TYPE.
13351 (find-function-read, find-function-do-it): Handle general TYPE.
13352 (find-definition-noselect, find-face): New functions.
13353 (function-at-point): Alias deleted.
13354
13355 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
13356
13357 * battery.el (display-battery-mode): Rename from display-battery.
13358 Handle the case where it gets turned off.
13359
13360 2005-01-04 Richard M. Stallman <rms@gnu.org>
13361
13362 * cus-edit.el (customize): Make :link point to user doc.
13363
13364 * man.el (Man-fontify-manpage): Turn off undo generation.
13365
13366 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
13367
13368 2005-01-04 Andreas Schwab <schwab@suse.de>
13369
13370 * files.el (insert-directory): Only look for error lines in
13371 inserted text. Don't move too far after processing --dired markers.
13372
13373 2005-01-04 Richard M. Stallman <rms@gnu.org>
13374
13375 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
13376 Don't expand if the character is @, period, dash, etc.
13377 (define-mail-abbrev): Quote names that contain problem characters.
13378
13379 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
13380
13381 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
13382
13383 2005-01-03 Richard M. Stallman <rms@gnu.org>
13384
13385 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
13386 (query-replace-highlight, query-replace-lazy-highlight)
13387 (query-replace): Definitions moved up. Doc fix.
13388
13389 2005-01-03 Richard M. Stallman <rms@gnu.org>
13390
13391 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
13392 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
13393 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
13394 (lazy-highlight-face): Rename from isearch-lazy-...
13395 Change all references to them.
13396
13397 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
13398
13399 * cus-edit.el (custom-file): Doc fix for defcustom.
13400 (custom-file): The function no longer sets the variable
13401 `custom-file' to its return value.
13402
13403 * startup.el (command-line): No longer load `custom-file'.
13404
13405 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
13406
13407 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
13408
13409 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
13410 Don't confuse module-prefixed identifiers for labels.
13411 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
13412
13413 2005-01-02 Richard M. Stallman <rms@gnu.org>
13414
13415 * files.el (basic-save-buffer-1): Fix previous change.
13416
13417 * loadhist.el (file-loadhist-lookup): New function.
13418 (file-provides, file-requires): Use it.
13419
13420 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
13421 instead of calculating the right size.
13422
13423 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
13424
13425 * vc-svn.el (vc-svn-diff): Stay local if possible.
13426
13427 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
13428
13429 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
13430
13431 * files.el (hack-local-variables): Fix last change.
13432
13433 2005-01-02 Jay Belanger <belanger@truman.edu>
13434
13435 * calc/calc-yank.el (calc-edit-top): New variable.
13436 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
13437 object. Change header properties.
13438 (calc-edit-finish, calc-edit-finish-stack-object)
13439 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
13440 edited object.
13441 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
13442 for the beginning of the edited object.
13443 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
13444 for the beginning of the edited object.
13445 * calc/calc-prog.el (calc-edit-macro-finish-edit)
13446 (calc-finish-formula-edit, calc-macro-repeats)
13447 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
13448 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
13449 beginning of the edited object.
13450 (calc-user-define-edit): Change the header for editing macros.
13451 Remove unnecessary variable.
13452
13453 2005-01-01 Jay Belanger <belanger@truman.edu>
13454
13455 * calc/calc-yank.el (calc-edit-mode): Change default header.
13456 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
13457 * calc/calc-store.el (calc-edit-variable): Change title to match new
13458 header.
13459 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
13460 mode to match new header.
13461 (calc-user-define-edit): Change titles to include names of commands.
13462 (calc-finish-formula-edit): Adjust to handle new header.
13463 (calc-finish-macro-edit): Remove.
13464 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
13465 (calc-edit-macro-command, calc-edit-macro-command-type)
13466 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
13467 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
13468 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
13469 (calc-edit-macro-finish-edit): New functions.
13470 (calc-user-define-edit): Use new functions to edit named calc macros.
13471
13472 2005-01-01 Stefan <monnier@iro.umontreal.ca>
13473
13474 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
13475
13476 * ses.el (copy-region-as-kill): Deactivate mark.
13477
13478 2005-01-01 Richard M. Stallman <rms@gnu.org>
13479
13480 * replace.el (occur-1): If the output buffer is also an input,
13481 don't kill it, rename it.
13482
13483 * faces.el (set-face-background, set-face-foreground): Doc fix.
13484
13485 * cus-face.el (custom-face-attributes): Fix :help-echo strings
13486 for :foreground and :background.
13487
13488 * dired.el (dired-view-command-alist): Variable deleted.
13489 (dired-view-file, dired-mouse-find-file-other-window):
13490 Delete the code to use it.
13491
13492 2005-01-01 Kim F. Storm <storm@cua.dk>
13493
13494 * image.el (insert-sliced-image): Use t for line-height property.
13495
13496 See ChangeLog.11 for earlier changes.
13497
13498 ;; Local Variables:
13499 ;; coding: iso-2022-7bit
13500 ;; End:
13501
13502 Copyright (C) 2005 Free Software Foundation, Inc.
13503 Copying and distribution of this file, with or without modification,
13504 are permitted provided the copyright notice and this notice are preserved.
13505
13506 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1