*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2006-04-10 Eli Zaretskii <eliz@gnu.org>
2
3 * international/mule-cmds.el (set-locale-environment): Fix last
4 change for when the locale's preferences don't specify any
5 encoding.
6
7 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8
9 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
10 so the defined var/fun doesn't need to be quoted.
11
12 2006-04-10 Richard Stallman <rms@gnu.org>
13
14 * finder.el (finder-mode-map): Add n and p bindings.
15
16 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
17
18 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
19 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
20 (gdb-setup-windows): Put something in source window if we can't find
21 the source file.
22 (gdb-frame-handler): Make it work again with just assembly.
23 (gdb-data-list-register-values-handler): Make it work when there is
24 no stack.
25
26 2006-04-09 Richard Stallman <rms@gnu.org>
27
28 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
29 specs while looking for charset.
30
31 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
32
33 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
34 Make them faces.
35 (lm-font-lock-keywords): Update appropriately.
36
37 2006-04-10 Kim F. Storm <storm@cua.dk>
38
39 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
40 it can also replace buffer-substring-no-properties.
41
42 * emulation/cua-base.el (cua-delete-region, cua-paste)
43 (cua-repeat-replace-region): Use filter-buffer-substring.
44
45 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
46 (cua-cut-region-to-global-mark): Likewise.
47
48 * emulation/cua-rect.el (cua--extract-rectangle)
49 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
50
51 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
52
53 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
54 entry-type. Add field delimiters to numerical fields if they are
55 not present.
56
57 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
58
59 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
60 string-const to return value.
61 (bibtex-remove-delimiters): Use it.
62
63 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
64
65 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
66 cl-byte-compile-compiler-macro unless it exists.
67
68 2006-04-08 Eli Zaretskii <eliz@gnu.org>
69
70 * files.el (hack-local-variables-confirm) <offer-save>:
71 Clarify message text. Suggested by Ralf Angeli.
72
73 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
74
75 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
76 (delete-extract-rectangle-line): Use `filter-buffer-substring'
77 instead of `buffer-substring' and `delete-region'. (Most of the
78 code actually copied from `kill-region'.)
79
80 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
81
82 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
83 (rcirc-default-port): Rename from rcirc-port.
84 (rcirc-default-nick): Rename from rcirc-nick.
85 (rcirc-default-user-name): Rename from rcirc-user-name.
86 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
87 (rcirc-low-priority-flag): New variable.
88 (rcirc-decode-coding-system): New defcustom.
89 (rcirc-encode-coding-system): New defcustom.
90 (rcirc-coding-system-alist): New defcustom.
91 (rcirc-multiline-major-mode): New defcustom.
92 (rcirc-nick): New internal variable.
93 (rcirc-process): Remove variable.
94 (rcirc-server-buffer): New variable.
95 (rcirc): Update to use rcirc-default-* variables above.
96 (rcirc-connect): Do not add window-configuration-hook-here.
97 (rcirc-server): New internal variable.
98 (rcirc-connect): Do not send keepalive pings if
99 rcirc-keepalive-seconds is nil.
100 (with-rcirc-server-buffer): New macro.
101 (rcirc-send-string): Encode with rcirc-encode-coding-system.
102 (rcirc-server-name): Rename from rcirc-server.
103 (rcirc-buffer-process): New function.
104 (rcirc-buffer-nick): New function.
105 (rcirc-buffer-target): Remove function.
106 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
107 New commands.
108 (rcirc-mode-map): Change binding of C-c C-l to
109 rcirc-toggle-low-priority.
110 (rcirc-mode): Initialize coding system based on
111 rcirc-coding-system-alist. New change-major-mode-hook to part the
112 channel on a mode change. Make kill-buffer-hook buffer-local.
113 (rcirc-change-major-mode-hook): New function.
114 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
115 (rcirc-last-post-time): New variable.
116 (rcirc-process-message): Store the last time user posted a message
117 to this target.
118 (rcirc-multiline-minor-mode): New mode.
119 (rcirc-multiline-minor-mode-map): New mode map.
120 (rcirc-edit-multiline): Put multiline-edit buffer in
121 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
122 (rcirc-print): Ignore any line starting with an ignored nick.
123 (rcirc-print): Decode using rcirc-decode-coding-system.
124 (rcirc-track-minor-mode): Update global-mode-string when disabling
125 this mode.
126 (minor-mode-alist): Add LowPri indicator.
127 (rcirc-toggle-low-priority): New function.
128 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
129 next lowpriority buffer with activity.
130 (rcirc-record-activity): Sort buffers in rcirc-activity by the
131 last time the user posted a message in to the target.
132 (rcirc-update-activity-string): New formatting for low priority
133 buffers.
134 (rcirc-split-activity): New function.
135 (rcirc-handler-PART, rcirc-handler-KICK)
136 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
137 (rcirc-nick-away-alist): New variable.
138 (rcirc-handler-301): New handler. Away messages are printed once
139 per change.
140
141 2006-04-08 Eli Zaretskii <eliz@gnu.org>
142
143 * info.el (Info-follow-nearest-node): Doc fix.
144
145 * international/mule-cmds.el (set-locale-environment): Make sure
146 the coding-system preferred by the locale's language has the same
147 EOL conversion type as the original buffer-file-coding-system.
148 (locale-language-names): Add a few MS Windows language codes.
149
150 2006-04-07 Richard Stallman <rms@gnu.org>
151
152 * simple.el (eval-expression): Doc fix.
153
154 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
155 (eval-defun): Doc fixes.
156
157 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
158
159 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
160
161 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
162
163 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
164 GDB list command without argument for greater generality.
165
166 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
167
168 * subr.el (string-or-null-p): New function.
169
170 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
171
172 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
173
174 * files.el: Update comment about safe-local-variable declarations.
175
176 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
177
178 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
179 See idlwave.org.
180
181 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
182 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
183
184 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
185 See idlwave.org.
186
187 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
188 version 6.0 (minimal changes). See idlwave.org.
189
190 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
191 6.0 (minimal changes). See idlwave.org.
192
193 * progmodes/idlw-rinfo.el: File obsoleted and removed.
194
195 2006-04-06 Romain Francoise <romain@orebokech.com>
196
197 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
198 symmetric encryption features and a new asynchronous interface to
199 GnuPG. This new version is version 1.4, plus whitespace changes.
200
201 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
202
203 * files.el: Move some `safe-local-variable' declarations to the
204 respective files.
205
206 * textmodes/ispell.el (ispell-check-comments)
207 (ispell-local-dictionary): Mark as safe.
208
209 * abbrev.el (abbrev-mode): Mark as safe.
210
211 * add-log.el (change-log-default-name): Mark as safe.
212
213 * textmodes/reftex-vars.el (reftex-vref-is-default)
214 (reftex-fref-is-default, reftex-level-indent)
215 (reftex-guess-label-type): Mark as safe.
216
217 * textmodes/fill.el (colon-double-space): Mark as safe.
218
219 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
220 (sentence-end-double-space, sentence-end-without-period)
221 (sentence-end-without-space, sentence-end, sentence-end-base)
222 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
223
224 2006-04-06 Kim F. Storm <storm@cua.dk>
225
226 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
227 the :set-after list.
228 (ido-downcase-unc-hosts): New user option. Default on.
229 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
230 when it is set, as regexps are now applied on the fly.
231 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
232 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
233 on the fly, but only when ido-process-ignore-lists is set.
234 Do case insensitive filtering if ido-downcase-unc-hosts is set.
235 Only downcase names if ido-downcase-unc-hosts is set.
236
237 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
238
239 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
240
241 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
242
243 2006-04-05 Kim F. Storm <storm@cua.dk>
244
245 * ido.el (ido-mode): Set after ido-unc-hosts and
246 ido-ignore-unc-host-regexps.
247 (ido-save-history): Save ido-unc-hosts-cache.
248 (ido-load-history): Load ido-unc-hosts-cache.
249 (ido-reread-directory): Refresh unc hosts cache in // dir.
250
251 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
252 to nil while displaying slash screen.
253
254 2006-04-05 Daiki Ueno <ueno@unixuser.org>
255
256 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
257 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
258
259 2006-04-05 Kenichi Handa <handa@m17n.org>
260
261 * international/characters.el: Setup cases of Latin, Greek, and
262 Cyrillic characters in CJK charsets.
263
264 2006-03-29 Daiki Ueno <ueno@unixuser.org>
265
266 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
267 default-enable-multibyte-characters. This reverts the change from
268 revision 6.17 which is no longer necessary because the passphrase
269 is sent separately now. GnuPG messages are unreadable under
270 multibyte locales with default-enable-multibyte-characters set to nil.
271
272 2006-04-04 Andreas Schwab <schwab@suse.de>
273
274 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
275 and `byte-compile-warnings' as `safe-local-variable'.
276
277 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
278
279 * man.el (Man-mode-map): Restore the \r binding.
280 (Man-abstract-xref-man-page): If Man-target-string is a function,
281 call it.
282 (Man-highlight-references): Use Man-default-man-entry to get the
283 target. Deal with xrefs too.
284 (Man-highlight-references0): Don't call the target function.
285
286 * woman.el (WoMan-xref-man-page): Strip the section number, woman
287 cannot deal with it.
288
289 2006-04-04 Daiki Ueno <ueno@unixuser.org>
290
291 * pgg-gpg.el: Clean up process buffers every time gpg processes
292 complete.
293
294 2006-04-04 Kenichi Handa <handa@m17n.org>
295
296 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
297 here.
298 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
299 Temporarily bind inhibit-field-text-motion to t.
300
301 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
302
303 * startup.el (normal-splash-screen): Only set mode-line-format in the
304 splash buffer, so as not to interfere when debugging the code.
305 Ignore errors when switching buffer.
306
307 2006-04-03 Romain Francoise <romain@orebokech.com>
308
309 * dired.el (dired-dnd-protocol-alist): Fix typo.
310
311 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
312
313 * savehist.el (savehist): Add :version.
314 (savehist-ignored-variables): New variable.
315 (savehist-minibuffer-hook): Don't save variables listed in
316 `savehist-ignored-variables'.
317
318 * dired.el (dired-dnd-protocol-alist): Mention that change does
319 only apply to new buffers in doc string.
320
321 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
322
323 * recentf.el (recentf-open-files-item): Include newline in button
324 field, so opening a file will work, when the point is at the end
325 of the file name. Allow, for example, to [i]search a file by
326 extension and just push RET to open it.
327
328 2006-04-03 Daiki Ueno <ueno@unixuser.org>
329
330 * pgg-gpg.el (pgg-gpg-process-filter)
331 (pgg-gpg-wait-for-completion): Check if buffer is alive.
332
333 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
334 lines, temporary fix.
335
336 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
337
338 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
339
340 2006-04-02 Richard Stallman <rms@gnu.org>
341
342 * progmodes/compile.el (compilation-message-face): Make it defcustom.
343
344 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
345
346 * ibuf-macs.el (define-ibuffer-column): Add a new key:
347 header-mouse-map.
348
349 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
350 (ibuffer-mode-header-map): New keymaps.
351 (ibuffer-update-title-and-summary): Enable mouse face highlighting
352 and keybindings for column headers.
353 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
354 property.
355
356 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
357
358 * speedbar.el (speedbar-after-create-hook): Doc fix.
359
360 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
361
362 * shell.el (shell-directory-tracker)
363 (shell-dynamic-complete-command): Doc fixes.
364
365 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
366
367 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
368 terminals.
369
370 2006-04-01 Kim F. Storm <storm@cua.dk>
371
372 * ido.el (ido-unc-hosts-cache): New defvar.
373 (ido-unc-hosts): If value of defcustom is a function, call it to
374 get list of UNC hosts. Add function-item choices to specify
375 ido-unc-hosts-net-view or user function.
376 (ido-ignore-unc-host-regexps): New defcustom.
377 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
378 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
379 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
380
381 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
382
383 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
384 wwidth.
385
386 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
387
388 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
389 (ido-max-work-file-list, ido-switch-buffer)
390 (ido-read-file-name-as-directory-commands):
391 Fix typos in docstrings.
392
393 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
394
395 * term/mac-win.el (mac-system-coding-system): Define and use after
396 Mac-specific coding systems are ready.
397
398 2006-03-27 Romain Francoise <romain@orebokech.com>
399
400 * net/rcirc.el (rcirc-connect): Add autoload cookie.
401
402 * ldefs-boot.el: Update.
403
404 2006-03-27 Daiki Ueno <ueno@unixuser.org>
405
406 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
407 passphrases when it is not needed.
408 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
409 passphrase stuff from gpg, should only be necessary when you use
410 gpg with a smartcard.
411
412 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
413
414 * comint.el (comint-dynamic-list-completions): Allow user to
415 select *Completions* buffer.
416
417 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
418
419 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
420
421 2006-03-26 Andreas Schwab <schwab@suse.de>
422
423 * progmodes/gud.el (gdb): Only complain about multiple debugging
424 when the gdb process is still running.
425
426 2006-03-25 Eli Zaretskii <eliz@gnu.org>
427
428 * mail/rmail.el (tool-bar-map): Defvar it.
429 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
430 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
431
432 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
433
434 * help.el (print-help-return-message): Suggest to use
435 display-buffer instead of switch-to-buffer-other-window to restore
436 the previous window without selecting it.
437
438 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
439
440 * frame.el (select-frame-by-name): Call x-focus-frame also when
441 window-system is mac.
442
443 * term/mac-win.el: Adjust Courier font specifications in
444 x-fixed-font-alist.
445 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
446 when directly encoding to UTF-16 in native byte order, no BOM.
447
448 2006-03-25 Kim F. Storm <storm@cua.dk>
449
450 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
451 (cua--init-keymaps): Use it instead of fixed C-return.
452 (cua-mode): Set after it.
453
454 * emulation/cua-rect.el (cua--init-rectangles):
455 Use cua-rectangle-mark-key instead of fixed C-return.
456
457 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
458
459 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
460 "run" in .gdbinit.
461 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
462
463 2006-03-24 Romain Francoise <romain@orebokech.com>
464
465 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
466 `display-buffer-other-frame'.
467
468 2006-03-24 Kim F. Storm <storm@cua.dk>
469
470 * apropos.el (apropos-synonyms): Add selection => region.
471
472 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
473
474 * progmodes/gdb-ui.el (gdb-var-create-regexp)
475 (gdb-var-list-children-regexp, gdb-var-update-regexp)
476 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
477 (gdb-data-list-register-values-regexp)
478 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
479 Future proof against new fields being added to MI output.
480 (gdb-send): Don't treat backslashes for program input as
481 continuations.
482 (gdb-assembler-handler): Don't use window-start for this handler.
483 (gdb-frame-handler): Don't change to hollow arrow if overlay
484 arrow doesn't move to new frame.
485
486 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
487
488 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
489 prevent compiler warnings.
490 (gdb-stopped): Check for gud-last-last-frame (case: signal).
491 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
492 (gdb-assembler-custom): Use hollow-right-triangle for assembler
493 buffer too.
494
495 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
496
497 * pgg-gpg.el (pgg-gpg-update-agent): Check for
498 make-network-process, so we can use the same code in Gnus v5-10
499 too and have this file fully synchronized with that release.
500
501 2006-03-23 Romain Francoise <romain@orebokech.com>
502
503 * ibuf-ext.el (ibuffer-read-filter-group-name):
504 Use `ibuffer-generate-filter-groups' to make completion list match
505 the filter groups that are really displayed in the Ibuffer buffer.
506 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
507
508 2006-03-23 Kenichi Handa <handa@m17n.org>
509
510 * international/mule-cmds.el (sort-coding-systems): Describe that
511 the argument is modified in docstring.
512
513 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
514
515 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
516 (pgg-gpg-update-agent): New function.
517 (pgg-gpg-use-agent-p): New function.
518 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
519 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
520 (pgg-gpg-sign-region): Use it.
521
522 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
523
524 * cus-edit.el (custom-face-set): Call custom-push-theme before
525 face-spec set so that `changed' theme is correctly saved.
526 (custom-face-reset-standard): Reset to recalculated face rather
527 than defface spec.
528
529 * custom.el (custom-push-theme): Only save `changed' theme if the
530 current face does not match the defface specs.
531
532 2006-03-21 Simon Josefsson <jas@extundo.com>
533
534 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
535 <wilde@sha-bang.de>.
536 (pgg-gpg-use-agent): New variable.
537 (pgg-gpg-process-region): Use it.
538 (pgg-gpg-encrypt-region): Likewise.
539 (pgg-gpg-encrypt-symmetric-region): Likewise.
540 (pgg-gpg-decrypt-region): Likewise.
541 (pgg-gpg-sign-region): Likewise.
542 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
543
544 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
545
546 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
547 bracket links.
548
549 2006-03-21 Kim F. Storm <storm@cua.dk>
550
551 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
552 fringe-indicator-alist instead of modifying global value.
553 (gdb-frame-handler): Likewise.
554
555 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
556
557 * diff-mode.el (diff-function): Make it inherit from diff-header
558 instead of diff-context.
559
560 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
561 bitmap.
562 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
563 change names in macro above for consistency.
564 (gdb-frame-handler): Use hollow-right-triangle for all selected
565 frames which except the innermost (where execution has stopped).
566 (gdb-reset): Reset buffer-local values of overlay-arrow.
567
568 2006-03-20 Richard Stallman <rms@gnu.org>
569
570 * simple.el (set-mark-command): Doc fix.
571
572 * files.el (display-buffer-other-frame): New command.
573 (ctl-x-4-map): Bind C-x 5 C-o to it.
574
575 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
576
577 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
578 rather than just defer-time, in case defer-time has been changed but
579 the timer isn't running yet.
580 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
581
582 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
583
584 * help-mode.el (help-follow-symbol): New function.
585 Essentially identical to the old `help-follow', but do not let
586 `push-button' do the work when on an xref.
587 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
588
589 2006-03-19 Richard Stallman <rms@gnu.org>
590
591 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
592 preceded by the word `program'.
593 (help-follow-mouse, help-follow): Throw error if not on xref.
594 Delete no longer used args.
595
596 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
597
598 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
599 annotation ensure gud-overlay-arrow-position is redisplayed.
600
601 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
602
603 * textmodes/bibtex.el (bibtex-include-OPTkey)
604 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
605 (bibtex-autokey-name-case-convert)
606 (bibtex-autokey-titleword-case-convert): Make these the aliases
607 for the following two variables.
608 (bibtex-autokey-name-case-convert-function)
609 (bibtex-autokey-titleword-case-convert-function): Make these the
610 real names.
611 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
612 bibtex-font-lock-crossref sublists.
613 (bibtex-mode): Revert 2005-12-30 change (which made
614 completion-ignore-case buffer-local).
615 (bibtex-url): Simplify.
616
617 2006-03-19 Kim F. Storm <storm@cua.dk>
618
619 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
620 cursor property value to 2 (to align with C level change).
621
622 2006-03-19 Bill Wohler <wohler@newt.com>
623
624 * image.el (image-load-path-for-library): Shorten first line in
625 docstring.
626
627 2006-03-18 Richard Stallman <rms@gnu.org>
628
629 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
630
631 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
632
633 * isearch.el (isearch-other-meta-char): Handle user bindings for
634 shifted control characters.
635
636 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
637
638 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
639 part that matches email addresses, file names, etc.
640
641 2006-03-18 Eli Zaretskii <eliz@gnu.org>
642
643 * term/w32-win.el (mouse-set-font):
644 Mention w32-list-proportional-fonts in the doc string.
645
646 2006-03-18 Kim F. Storm <storm@cua.dk>
647
648 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
649 (ido-unc-hosts): New user option to explicitly define list of know
650 UNC-style hosts for completion.
651 (ido-cache-unc-host-shares-time): New user option.
652 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
653 New helper functions for UNC file-name support.
654 (ido-may-cache-directory): Check for UNC host. Simplify.
655 (ido-wash-history): Clean out old UNC hosts.
656 (ido-nonreadable-directory-p): UNC hosts are always readable.
657 (ido-directory-too-big-p): UNC hosts are never too big.
658 (ido-set-current-directory): Handle UNC root path.
659 (ido-file-name-all-completions): Complete UNC host names from
660 ido-unc-hosts list. Cache UNC host shares.
661 (ido-make-file-list-1): Don't filter UNC root.
662 (ido-exhibit): Check for // in root directory, and switch to UNC
663 mode by setting ido-current-directory to //.
664
665 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
666
667 * cus-edit.el (customize-changed-options): Mention explicit
668 version number as default in prompt.
669
670 2006-03-17 Bill Wohler <wohler@newt.com>
671
672 * image.el (image-load-path-for-library): Minor docstring fix.
673
674 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
675
676 * textmodes/org.el (org-read-date): Include subgroup 5 into
677 replacement text.
678 (org-popup-calendar-for-date-prompt): Fix customization type.
679
680 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
681
682 * progmodes/gdb-ui.el (gud-watch): Provide completion.
683 (gdb-continuation): New variable.
684 (gdb-send): Deal with continuation lines.
685
686 * progmodes/gud.el (gud-gdb-complete-command)
687 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
688 expressions.
689 (gud-tooltip-mode): Use buffer-local value.
690
691 2006-03-16 Kim F. Storm <storm@cua.dk>
692
693 * ido.el (ido-edit-input): Use selected match, if any.
694
695 2006-03-16 Bill Wohler <wohler@newt.com>
696
697 * image.el (image-load-path-for-library): Prefer user's images in
698 image-load-path.
699
700 2006-03-16 Martin Rudalics <rudalics@gmx.at>
701
702 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
703 when checking for attempt to drag leftmost or rightmost scrollbar.
704
705 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
706
707 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
708 (gdb-force-mode-line-update): New function.
709 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
710 (gdb-exited): Use them.
711 (gdb-signal): New function.
712 (gdb-annotation-rules): Provide a rule for it.
713
714 2006-03-16 Kenichi Handa <handa@m17n.org>
715
716 * international/mule.el (auto-coding-regexp-alist): Add entries
717 for Unicode BOM.
718
719 * sort.el (sort-build-lists): Temporarily bind
720 inhibit-field-text-motion to t.
721
722 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
723
724 * locate.el (locate-command, locate-make-command-line)
725 (locate-fcodes-file, locate-update-command)
726 (locate-prompt-for-command, locate, locate-with-filter)
727 (locate-get-file-positions): Doc fixes.
728 (locate-buffer-name, locate-header-face): Remove leading `*' in
729 defcustom.
730 (locate-filter-output): Use `keep-lines' instead of its alias
731 `delete-non-matching-lines'.
732 (locate-get-filename, locate-get-dirname): Add introductory comment.
733 (locate-find-directory-other-window): Give appropriate error
734 message if used outside main listing.
735
736 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
737
738 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
739 the new extend-region feature.
740 (font-lock-after-change-function): Update correspondingly.
741 * jit-lock.el (jit-lock-after-change): Update correspondingly.
742 * progmodes/grep.el (font-lock-lines-before): Don't disable.
743
744 2006-03-15 Bill Wohler <wohler@newt.com>
745
746 * image.el (image-load-path-for-library): Fix example by not
747 recommending that one binds image-load-path. Just defvar it to
748 placate compiler and only use it if previously defined.
749
750 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
751
752 * textmodes/org.el (org-insert-centered): Use `string-width' to
753 make underlining work for wide characters.
754 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
755 TAB to `org-cycle', to make sure that no binding in
756 `outline-mode-map' can supercede it.
757
758 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
759
760 * allout.el: Increment version to 2.2.1 in file commentary.
761
762 (allout-version): Increment to 2.2.1.
763
764 (allout-default-layout): New customization variable, used when the
765 file lacks a specific allout-layout. Uses allout-layout-type for
766 recursively nested definition.
767
768 (allout-layout-type): Widget defining allout layouts, necessary for
769 self-recursive definition.
770
771 (allout-mode): Incorporate allout-default-layout as fallback for
772 allout-layout.
773
774 (allout-layout): Mark as 'safe-local-variable', and refer mention
775 fallback to `allout-default-layout' in absence of a specified value.
776 (allout-passphrase-verifier-string)
777 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
778
779 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
780
781 (allout-get-encryption-passphrase-verifier): Use correct name of
782 passphrase verifier in docstring.
783
784 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
785
786 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
787 elements.
788 (gdb-find-watch-expression): Make it work for arrays too.
789 Follow change to gdb-var-list.
790 (gud-watch): Allow the user to enter variable name with a prexix
791 arg. Create keybindings.
792 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
793 (gdb-var-list-children-handler, gdb-var-update-handler)
794 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
795 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
796 Follow change to gdb-var-list.
797 (gdb-starting): Don't show the overlay arrows when program is running.
798
799 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
800 gdb-var-list.
801
802 2006-03-14 Bill Wohler <wohler@newt.com>
803
804 * image.el (image-load-path-for-library): Pass value of path
805 rather than symbol. Always return list of directories.
806 Guarantee that image directory comes first.
807
808 2006-03-14 Alan Mackenzie <acm@muc.de>
809
810 * font-core.el (font-lock-extend-region\(-function\)?.):
811 New function/variable.
812
813 * font-lock.el (font-lock-after-change-function):
814 Call font-lock-extend-region. Obey font-lock-lines-before.
815 (font-lock-default-fontify-region): Remove reference to
816 font-lock-lines-before.
817
818 * jit-lock.el (jit-lock-after-change):
819 Call font-lock-extend-region. Obey font-lock-lines-before.
820
821 2006-03-14 David Ponce <david@dponce.com>
822
823 * tree-widget.el (tree-widget-themes-load-path)
824 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
825
826 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
827
828 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
829 (rcirc-print): Mark the start of text at the end of the prompt.
830 (rcirc-track-minor-mode): Add autoload cookie.
831 (rcirc-update-activity-string): Add space to front of mode-line
832 indicator.
833
834 2006-03-13 Miles Bader <miles@gnu.org>
835
836 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
837 (rcirc-abbrev-nick): Remove function.
838 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
839
840 2006-03-13 David Ponce <david@dponce.com>
841
842 * tree-widget.el: Handle themes across all occurrences of the main
843 themes sub-directory found in tree-widget-themes-load-path.
844 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
845 (tree-widget--locate-sub-directory): Return all occurrences.
846 (tree-widget-themes-path): New function.
847 Replace tree-widget-themes-directory, and return a list of directories.
848 (tree-widget-set-parent-theme)
849 (tree-widget-lookup-image): Use it.
850
851 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
852
853 * textmodes/org.el (org-link-search): Avoid self-matching of
854 links, allow target text to be distributed over several lines.
855 (org-search-not-link): New function.
856 (org-set-regexps-and-options, org-get-current-options):
857 New startup options.
858 (org-export-as-html): Take odd-level setting from local variable.
859 (org-fontify-emphasized-text): New option.
860 (org-set-font-lock-defaults): Include emphasized text.
861 (org-follow-mhe-link): Allow folder-only links, fix folder name.
862 (org-font-lock): Customize group renamed from `org-faces'.
863
864 2006-03-13 John Paul Wallington <jpw@pobox.com>
865
866 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
867 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
868
869 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
870
871 * cus-start.el (all): Delete :version keyword for members of the
872 fringe group, since the entire group is new in 22.1.
873
874 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
875
876 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
877 map if value is hexadecimal (an address).
878 (gud-watch): Only search roots for existing watch expressions.
879 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
880 prevent caching problems with speedbar-update-directory-contents.
881
882 2006-03-12 Juri Linkov <juri@jurta.org>
883
884 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
885 before comparing with `low' and `warn'.
886
887 * info.el (Info-dir-remove-duplicates): Move point to the
888 beginning of the current line after deleting the entries from
889 redundant heading. Use marker for `limit' and compare it with
890 point before calling `re-search-forward'.
891
892 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
893
894 * simple.el (yank): Fix typo in docstring.
895
896 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
897
898 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
899 messages, where "D" is the 6th character.
900
901 2006-03-11 Eli Zaretskii <eliz@gnu.org>
902
903 * simple.el (yank): Fix last change.
904
905 2006-03-11 David Ponce <david@dponce.com>
906
907 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
908 merging elements from the standard ispell-dictionary-alist.
909 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
910 alist, and return the new alist.
911
912 2006-03-11 Richard Stallman <rms@gnu.org>
913
914 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
915
916 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
917 the way it is implemented is too unclean.
918
919 * simple.el (kill-region, yank): Doc fix.
920
921 * battery.el (battery-echo-area-format): Doc fix.
922 (battery-mode-line-format): Likewise.
923 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
924 (battery-linux-proc-acpi): Ignore batteries that say "charged".
925
926 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
927
928 * progmodes/octave-mod.el (octave-indent-for-comment):
929 Behave according to do string.
930
931 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
932
933 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
934 Be visible only if major mode is Mail Mode.
935
936 * textmodes/flyspell.el (flyspell-external-point-words)
937 (flyspell-process-localwords): Fix last changes.
938
939 2006-03-11 Eli Zaretskii <eliz@gnu.org>
940
941 * calendar/holidays.el (list-holidays): Doc fix.
942
943 * international/mule.el (auto-coding-alist): Add .odt
944 (OpenOffice's open document) files.
945
946 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
947 document) files. Mention in the doc string the need to sync with
948 auto-coding-alist.
949
950 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
951
952 * files.el (hack-local-variables-confirm): Don't prompt for ! if
953 enable-local-variables is set to always query, or there is no
954 savable variable.
955
956 2006-03-10 Bill Wohler <wohler@newt.com>
957
958 * image.el (image-load-path-for-library): Merge at least three
959 functions from Gnus and MH-E into this one function that can now
960 be shared.
961
962 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
963
964 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
965 gdb-remove-mouse-face and remove help-echo too.
966 (gdb-enqueue-input): Correct conditional clause.
967
968 2006-03-10 Glenn Morris <rgm@gnu.org>
969
970 * calendar/calendar.el (calendar-holidays): Doc fix.
971 * calendar/holidays.el (list-holidays): Doc fix.
972
973 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
974
975 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
976 it gets called in gdb-prompt anyway.
977 (gdb-use-separate-io-buffer): Only restore window arrangement for
978 gdb-many-windows.
979 (gdb-enqueue-input): Make it harder to send GDB input when program
980 is running.
981 (gdb-buffer-list): New variable.
982 (gdb-remove-mouse-face): New function.
983 (gdb-starting): Use it when GDB input won't get sent.
984
985 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
986
987 * help.el (view-lossage): Remove trailing whitespace before
988 inserting "\n".
989
990 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
991
992 * files.el (hack-local-variables-confirm):
993 Set coding-system-for-read to nil before writing to .emacs.
994
995 * arc-mode.el (archive-extract): Check if an existing buffer name
996 comes from a different archive.
997
998 * help.el (describe-key-briefly): If KEY is a down event, read and
999 discard the up event.
1000
1001 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
1002
1003 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
1004 be edited and use font-lock-warning-face for any changes.
1005
1006 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
1007 (gdb-edit-value): Use it to report any errors.
1008
1009 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
1010
1011 * help.el (describe-key): Remove leftover test code.
1012
1013 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
1014
1015 * textmodes/org.el: Move defvars out of eval-when-compile.
1016 Use buffer-file-name variable.
1017 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
1018 arg `file'.
1019 (org-level-faces): Remove startup dependency.
1020 (org-cycle, org-map-tree, org-scan-tags)
1021 (org-remember-handler): Don't call `outline-level' directly.
1022 (org-mhe-search-all-folders): New option.
1023 (org-mhe-get-message-folder-from-index)
1024 (org-mhe-get-message-folder): Fix indexing search.
1025 (org-format-agenda-item): Handle nil TAGS argument.
1026 (org-cleaned-string-for-export, org-activate-target-links)
1027 (org-make-target-link-regexp): Deal with empty radio target list.
1028 (org-tag): New face.
1029 (org-get-level-face): New function.
1030 (org-set-font-lock-defaults): Simplify setup for headlines.
1031 (org-complete): Pass common substring to `display-completion-list'.
1032
1033 2006-03-06 David Ponce <david@dponce.com>
1034
1035 * tree-widget.el: Update Commentary header.
1036 (tree-widget-theme-name): Ignore parent themes.
1037 (tree-widget-set-parent-theme): New function.
1038 (tree-widget-set-theme): Use it.
1039 (tree-widget-set-image-properties): Move definition. Does nothing
1040 if image properties have already been set.
1041 (tree-widget-image-properties): Move definition. Receive an image
1042 name. Set the :pointer property.
1043 (tree-widget-lookup-image): Doc fix. Search in parent themes.
1044 Don't set the :pointer image property.
1045 (tree-widget-convert-widget): New function. Handle :dynargs
1046 compatibility here.
1047 (tree-widget): Use it to :convert-widget. Add the :expander-p
1048 predicate to control when the :expander function is entered.
1049 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
1050 (tree-widget-value-create): Handle :expander-p. widget-apply
1051 :expander.
1052 (tree-widget-expander-p): New function. Default value of the
1053 :expander-p property.
1054
1055 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
1056
1057 * help.el (describe-key): Properly handle the return value of
1058 read-key-sequence when grabbing an up-event. Cleanup mouse-1
1059 remaps. Handle string and vector `follow-link' values.
1060
1061 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
1062
1063 * complete.el (PC-expand-many-files): Try be more careful when parsing
1064 the shell's output.
1065
1066 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1067
1068 * outline.el (hide-sublevels): Provide better interactive default.
1069
1070 2006-03-06 Kenichi Handa <handa@m17n.org>
1071
1072 * international/fontset.el (create-fontset-from-fontset-spec):
1073 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
1074
1075 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
1076
1077 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
1078 backslashes instead of one in regexp.
1079 (gud-tooltip-dereference): Add missing optional argument.
1080
1081 2006-03-04 John Paul Wallington <jpw@pobox.com>
1082
1083 * wdired.el (toplevel): Require `cl' at compile-time.
1084
1085 2006-03-04 Andreas Schwab <schwab@suse.de>
1086
1087 * server.el (server-process-filter): Handle errors during
1088 evaluation of the argument.
1089
1090 2006-03-03 John Paul Wallington <jpw@pobox.com>
1091
1092 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
1093 escape parentheses at beginning of line.
1094 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
1095 (t-mouse-mode): Remove period from end of error message.
1096
1097 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
1098
1099 * textmodes/flyspell.el (flyspell-process-localwords):
1100 Be case-sensitive.
1101
1102 2006-03-03 Martin Rudalics <rudalics@gmx.at>
1103
1104 * cus-edit.el (custom-quote): Remove function, since it has been
1105 moved to custom.el.
1106
1107 * font-lock.el (lisp-font-lock-keywords-2)
1108 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
1109 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
1110 they have no special meaning.
1111
1112 * midnight.el (clean-buffer-list): Handle case where base-buffer of
1113 indirect buffer gets killed before indirect buffer. Use dolist.
1114
1115 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
1116
1117 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
1118 value instead of a literal constant (1) on more pauses.
1119
1120 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
1121
1122 * textmodes/flyspell.el (flyspell-external-point-words):
1123 Be case-sensitive.
1124
1125 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
1126
1127 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
1128 with "www".
1129
1130 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
1131
1132 * allout.el: Restablish intermediate missing comment header to
1133 preserve outline structure.
1134 (allout-beginning-of-current-entry): Skip invisible text.
1135 (allout-open-topic): Fix opening a topic at end-of-buffer.
1136 (allout-minor-mode): Move nearer to allout-mode function.
1137
1138 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
1139
1140 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
1141
1142 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
1143
1144 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
1145 is nil.
1146
1147 * progmodes/gud.el (gud-speedbar-menu-items):
1148 Use buffer-local-value and add missing :visible keyword.
1149
1150 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
1151
1152 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
1153
1154 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
1155 must be `follow-link'.
1156
1157 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
1158
1159 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
1160 formatting: No nested anchors.
1161 (org-all-targets): Fix bug with XEmacs compatibility.
1162 (org-read-date): Add (require 'parse-time).
1163 (org-set-tags): Fix bug with extra inserted space.
1164 (org-export-html-style): Define a style class for targets.
1165 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
1166 (org-hide-leading-stars): New option.
1167 (org-hide): New face.
1168 (org-set-font-lock-defaults): Allow to hide leading stars.
1169 (org-get-legal-level, org-tr-level): New functions.
1170 (org-odd-levels-only): New option.
1171 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
1172 (org-demote, org-promote): Deal with double-star levels.
1173 (org-convert-to-odd-levels): New command.
1174
1175 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
1176
1177 * speedbar.el (speedbar-update-localized-contents): Try to
1178 preserve window-start.
1179 (speedbar-update-directory-contents): Try to preserve window-start
1180 and window-point.
1181 (speedbar-update-special-contents): Don't move back to start of window.
1182
1183 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
1184 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
1185 speedbar-timer-fn.
1186 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
1187 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
1188 instead of gdb-speedbar-timer-fn.
1189
1190 2006-02-28 Jay Belanger <belanger@truman.edu>
1191
1192 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
1193 (math-compose-expr): Use latex option when calling
1194 `math-compose-tex-matrix' for latex mode.
1195
1196 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
1197
1198 * speedbar.el: Re-instate comments about developing for speedbar
1199 [this is what info and gdb-ui use even if better methods exist now].
1200
1201 * t-mouse.el: New file.
1202 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
1203 (t-mouse-lispy-buffer-posn-from-coords): Remove.
1204 (t-mouse-make-event-element): Use posn-at-x-y instead.
1205 (t-mouse-make-event): Deal with Fedora Core 3.
1206 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
1207 (t-mouse-mouse-position-function): New function. Use it instead
1208 of advising mouse-position.
1209 (t-mouse-mode): New minor mode.
1210 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
1211
1212 2006-02-27 Glenn Morris <rgm@gnu.org>
1213
1214 * calendar/calendar.el (calendar-holidays): Doc fix.
1215
1216 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
1217
1218 * progmodes/gdb-ui.el (gdb-source-window): New variable.
1219 Re-introduce the concept of a source window.
1220 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
1221 consistency with get-buffer-create.
1222 (def-gdb-auto-update-handler, gdb-info-locals-handler)
1223 (gdb-data-list-register-values-handler)
1224 (gdb-stack-list-locals-handler): Try to preserve window-start as
1225 well as window-point.
1226 (gdb-display-source-buffer): New function (old concept).
1227 (gdb-goto-breakpoint): Use it.
1228
1229 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
1230 for gdb-ui/gdb-mi (old concept).
1231
1232 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
1233
1234 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
1235 binding.
1236
1237 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
1238
1239 * textmodes/reftex-sel.el (reftex-select-label-map)
1240 (reftex-select-bib-map): Add `follow-mouse' binding.
1241
1242 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
1243
1244 * jka-cmpr-hook.el (jka-compr-compression-info-list)
1245 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
1246 Give :set functions to provide automatic updating.
1247 Update docstring. Give compiler defvars early in the file
1248 and move the defcustoms to a later spot where all called functions
1249 are defined.
1250 (jka-compr-file-name-handler-entry): Doc fix.
1251 (jka-compr-compression-info-list--internal)
1252 (jka-compr-mode-alist-additions--internal)
1253 (jka-compr-load-suffixes--internal): New variables.
1254 (jka-compr-install): Set the three above variables.
1255 Update `load-file-rep-suffixes' instead of `load-suffixes'.
1256 (jka-compr-update, jka-compr-set): New functions.
1257 (auto-compression-mode): Doc fix.
1258
1259 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
1260 Update `load-file-rep-suffixes' instead of `load-suffixes'.
1261 Use jka-compr-compression-info-list--internal,
1262 jka-compr-mode-alist-additions--internal and
1263 jka-compr-load-suffixes--internal.
1264
1265 * files.el (load-library):
1266 * loadhist.el (file-loadhist-lookup):
1267 * startup.el (command-line):
1268 * subr.el (locate-library):
1269 * emacs-lisp/autoload.el (update-directory-autoloads):
1270 * emacs-lisp/find-func.el (find-library-suffixes):
1271 Use `get-load-suffixes' instead of `load-suffixes'.
1272
1273 * subr.el (locate-library):
1274 * emacs-lisp/find-func.el (find-library-name):
1275 Use `load-file-rep-suffixes' instead of '("").
1276
1277 2006-02-26 Kim F. Storm <storm@cua.dk>
1278
1279 * ido.el (ido-save-history, ido-load-history): Simplify.
1280 Don't use find-file-noselect to avoid interference from other modes.
1281
1282 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
1283
1284 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
1285 to use the default shell if filename is not available.
1286 Reported by Giorgos Keramidas.
1287
1288 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
1289
1290 * progmodes/etags.el (tags-completion-table): Do completion from
1291 all the tables in the current list, as documented in the manual.
1292
1293 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1294
1295 * CC Mode Update to 5.31.3.
1296
1297 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1298
1299 * progmodes/cc-mode.el (c-postprocess-file-styles):
1300 Bind inhibit-read-only to t, around the call to
1301 c-remove-any-local-eval-or-mode-variables, so that it works on a
1302 RO file.
1303
1304 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1305
1306 * progmodes/cc-awk.el: Correct a typo.
1307
1308 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1309
1310 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
1311 c-hungry-delete-backwards, at the request of RMS. Leave the old
1312 name as an alias.
1313
1314 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1315
1316 * progmodes/cc-mode.el: Correct a typo.
1317
1318 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1319
1320 * progmodes/cc-defs.el: Update the version number to 5.31.3.
1321
1322 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1323
1324 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
1325 brace-else-brace (error due to mbeg, mend being undefined).
1326
1327 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1328
1329 * progmodes/cc-mode.el: File Local variables: Solve the problem
1330 where both `mode' and c-file-offsets are specified: `mode' will
1331 overwrite c-f-o's settings:
1332 (c-remove-any-local-eval-or-mode-variables): New function.
1333 (c-postprocess-file-styles): Call the above new function, within
1334 c-tentative-buffer-change, to splat `mode' and `eval' before the
1335 second hack-local-variables.
1336
1337 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1338
1339 * progmodes/cc-mode.el:
1340 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
1341 (c-after-change): Protect the match data with save-match-data.
1342 It was getting corrupted by c-after-change-check-<>-operators.
1343
1344 * cc-defs.el: [Supersedes patch V1.38]:
1345 (top level): Check for a buggy font-lock-compile-keywords ONLY in
1346 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
1347
1348 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
1349 with save-match-data. It was being corrupted when Font Lock was
1350 not enabled.
1351
1352 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
1353
1354 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
1355 Mode and Subword Mode.
1356
1357 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
1358 real labels ("case 1:" or "foo:") from non-labels ("public:").
1359 (c-forward-objc-directive): Replace c-forward-token-2 with crude
1360 coding; c-f-t-2 doesn't move over a token at EOB.
1361
1362 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
1363
1364 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
1365 (c-update-modeline): Concatenate the minor mode indicators
1366 directly onto mode-name, removing c-submode-indicators.
1367 Sometimes, c-s-i got separated from the mode name on the mode line.
1368
1369 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
1370 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
1371
1372 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1373
1374 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
1375 error message when there's an evaluation error to show whether
1376 it's loaded from source or not.
1377 (c-filter-ops): Make it available at runtime too to work when
1378 `c-make-init-lang-vars-fun' needs to evaluate from source.
1379
1380 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
1381
1382 * help.el (help): Revert last part of 2006-02-23 change (deletion
1383 of the `provide' call).
1384
1385 2006-02-23 Juri Linkov <juri@jurta.org>
1386
1387 * compare-w.el (compare-windows-highlight): Add new value
1388 `persistent' and change :type from `boolean' to `choice'.
1389 (compare-windows-overlays1, compare-windows-overlays2):
1390 New internal variables.
1391 (compare-windows-highlight): If compare-windows-highlight is
1392 `persistent', add current overlays to compare-windows-overlays[12]
1393 instead of adding compare-windows-dehighlight to pre-command-hook.
1394 (compare-windows-dehighlight): Delete all overlays from
1395 compare-windows-overlays[12].
1396
1397 * info.el (Info-search): Don't bind search-spaces-regexp to
1398 Info-search-whitespace-regexp in non-regexp isearch mode.
1399
1400 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1401
1402 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
1403
1404 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
1405
1406 * textmodes/org.el (org-xemacs-p)
1407 (org-export-html-show-new-buffer, org-table-may-need-update)
1408 (org-insert-item, org-mhe-get-message-real-folder)
1409 (org-mhe-get-message-folder-from-index)
1410 (org-mhe-get-message-folder, org-mhe-get-message-num)
1411 (org-mhe-get-header, org-make-org-heading-search-string)
1412 (org-make-org-heading-camel, org-table-sort-lines)
1413 (org-format-org-table-html, org-format-table-table-html):
1414 Fix typos in docstrings.
1415
1416 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
1417
1418 * textmodes/org.el (org-cleaned-string-for-export)
1419 (org-solidify-link-text): New function.
1420 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
1421 XEmacs, just to silence the compiler.
1422 (org-export-as-ascii, org-export-as-html-and-open):
1423 Use `org-cleaned-string-for-export' and create internal links.
1424 (org-follow-mhe-link): Require mh-e, use folder.
1425
1426 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
1427
1428 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
1429
1430 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
1431 gdb-debug-log-length.
1432 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
1433 it a real ring but...
1434 (gud-gdba-marker-filter): ...make it work like mark-ring.
1435 (gdb-enable-debug): Rename from gdb-enable-debug-log.
1436 (gdb-mouse-jump): New function. Add bindings.
1437
1438 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
1439
1440 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
1441 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
1442 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
1443 (gdb-debug-log-length): Customize it's length.
1444 (gud-watch, gdb-var-create-handler): Display function::var format
1445 but don't use to create variable object.
1446 (gdb-var-create-handler): Use message-box in place of message.
1447 (gdb-stopped): Call gdb-exited if signalled.
1448
1449 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
1450
1451 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
1452
1453 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
1454
1455 * textmodes/reftex.el (reftex-locate-file): Search all extensions
1456 if `reftex-try-all-extensions' is set.
1457
1458 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
1459 fail silently when there is no valid argument at point.
1460 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
1461 `fail-silently' argument. From a patch by David Reiter.
1462
1463 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
1464 New commands.
1465 (org-mark-ring): New variable.
1466 (org-mark-ring-length): New option.
1467 (org-open-at-point, org-goto, org-open-file): Push old position
1468 onto the mark ring.
1469 (org-add-hook): New function.
1470 (org-export-table-remove-special-lines): New option.
1471 (org-skip-comments, org-format-org-table-html): Respect new
1472 option `org-export-table-remove-special-lines'.
1473 (org-open-file): Allow special command configuration for
1474 directory link.
1475 (org-file-apps): Fix bugs in customize type, added setting
1476 for directories.
1477 (org-activate-tags, org-format-agenda-item, org-complete)
1478 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
1479 (org-get-tags, org-get-buffer-tags, org-open-at-point)
1480 (org-link-search, org-make-org-heading-search-string)
1481 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
1482 (org-radio-targets, org-file-link-context-use-camel-case)
1483 (org-activate-camels): New options.
1484 (org-update-radio-target-regexp, org-all-targets)
1485 (org-make-target-link-regexp, org-activate-target-links):
1486 New functions.
1487 (org-make-org-heading-search-string): New function.
1488 (org-store-link, org-insert-link): Use new option
1489 `org-file-link-context-use-camel-case'.
1490 (org-activate-camels): Use new option `org-activate-camels'.
1491 (org-link-regexp): Add mhe prefix.
1492 (org-open-at-point, org-store-link): Support for mhe links.
1493 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
1494 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
1495 (org-mhe-get-header, org-follow-mhe-link): New functions.
1496 (org-remove-angle-brackets, org-add-angle-brackets):
1497 New functions.
1498 (org-bracket-link-regexp): New constant.
1499 (org-read-date): Fix bug that was rejecting all typed dates.
1500 (org-link-search): Make hierarchy above visible after a match.
1501 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
1502 (org-store-link): Fix bug with link creation when cursor is in
1503 an empty line.
1504 (org-open-at-point): Fix bug with matching a link.
1505 Fixed buggy argument sequence in call to `org-view-tags'.
1506 (org-compile-prefix-format): Set `org-prefix-has-tag'.
1507 (org-prefix-has-tag): New variable.
1508 (org-format-agenda-item): Remove tags from headline
1509 if appropriate.
1510 (org-agenda-remove-tags-when-in-prefix): New option.
1511
1512 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
1513
1514 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
1515 Fix the regular expressions.
1516
1517 2006-02-21 Richard M. Stallman <rms@gnu.org>
1518
1519 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
1520 if there's no other specific basis.
1521
1522 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
1523 as variables at all.
1524 (unsafep-variable): Rename arg; doc fix.
1525
1526 * abbrevlist.el (list-one-abbrev-table): Add autoload.
1527
1528 * calendar/appt.el (diary-selective-display): Add defvar.
1529
1530 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
1531
1532 * isearch.el (search-whitespace-regexp): Fix custom type.
1533
1534 * help.el (describe-key-briefly): Compute interactive args
1535 in same was as before previous change.
1536
1537 * files.el (enable-local-variables): Doc fix.
1538
1539 2006-02-21 Kim F. Storm <storm@cua.dk>
1540
1541 * fringe.el: Cleanup as file is now pre-loaded.
1542 (fringe-bitmaps): Initialize unconditionally.
1543 (fringe-mode, set-fringe-style): Remove autoload cookies.
1544
1545 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
1546
1547 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
1548 `horizontal-bar'.
1549 (fringe-cursor-alist): Use `horizontal-bar'.
1550
1551 2006-02-20 Kim F. Storm <storm@cua.dk>
1552
1553 * fringe.el (fringe-bitmaps): Update to new bitmap names.
1554 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
1555
1556 * loadup.el: Load "fringe" on window systems.
1557
1558 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
1559
1560 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
1561 out of scope components.
1562
1563 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
1564 default.
1565
1566 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
1567
1568 * custom.el (customize-mark-to-save, customize-mark-as-set):
1569 Load the symbol first.
1570
1571 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
1572
1573 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
1574 strech spec so it doesn't display as "^J" on the header line
1575 when `Buffer-menu-use-header-line' is t.
1576
1577 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
1578
1579 * speedbar.el (speedbar-make-button): Keep text properties
1580 of string arguments if desired.
1581
1582 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
1583 expessions.
1584
1585 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
1586 of speedbar.
1587
1588 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
1589
1590 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
1591 to value of `read-file-name-completion-ignore-case'.
1592
1593 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
1594
1595 * custom.el (customize-mark-as-set): Push to `user' theme.
1596
1597 * cus-edit.el (custom-save-variables): Allow unthemed values.
1598 (customize-set-variable): Push setting to `user' theme.
1599
1600 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
1601
1602 * progmodes/gud.el: Don't require font-lock as it's now
1603 automatically loaded.
1604 (gud-speedbar-buttons): Replace gdb-var-changed with
1605 gdb-force-update.
1606
1607 * progmodes/gdb-ui.el (gdb-force-update): Rename from
1608 gdb-var-changed.
1609 (gdb-post-prompt): Use it.
1610 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
1611 (gdb-var-update-handler, gdb-var-delete)
1612 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
1613 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
1614 gdb-force-update in gdb-post-prompt.
1615 (gdb-reset): Clear watch expressions from speedbar when quitting.
1616
1617 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
1618
1619 * viper-cmd.el (viper-insert-state-post-command-sentinel)
1620 (viper-change-state-to-vi, viper-change-state-to-emacs):
1621 Make aware of cursor coloring in the Emacs state.
1622 (viper-special-read-and-insert-char): Use read-char-exclusive.
1623 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
1624
1625 * viper-init.el (viper-emacs-state-cursor-color): New variable.
1626
1627 * viper-util.el (viper-save-cursor-color)
1628 (viper-get-saved-cursor-color-in-replace-mode)
1629 (viper-get-saved-cursor-color-in-insert-mode)
1630 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
1631 state.
1632 (viper-get-saved-cursor-color-in-emacs-mode): New function.
1633
1634 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
1635 (ediff-ignore-case-option3, ediff-actual-diff-options)
1636 (ediff-actual-diff3-options): New variables to control case sensitivity.
1637 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
1638 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
1639 (ediff-toggle-ignore-case): New function.
1640 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
1641
1642 * ediff-help.el (ediff-long-help-message-narrow2)
1643 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
1644 (ediff-long-help-message-word-mode): Add ignore-case command.
1645 (ediff-help-for-quick-help): Add ignore-case command.
1646
1647 * ediff-merg.el: Move provide to the end.
1648
1649 * ediff-ptch.el: Move provide to the end.
1650
1651 * ediff-wind.el: Move provide to the end.
1652
1653 * ediff-mult.el: Move provide to the end.
1654 (ediff-set-meta-overlay): Enable follow-link.
1655
1656 * ediff.el: Move provide to the end.
1657 Break recursive load cycle in eval-when-compile.
1658 (ediff-patch-buffer): Better heuristics.
1659
1660 * ediff-util.el: Move provide to the end.
1661 Break recursive load cycle in eval-when-compile.
1662 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
1663 defuns.
1664 (ediff-submit-report): Pass the values of ediff-diff3-program,
1665 ediff-diff3-options.
1666
1667 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
1668
1669 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
1670 the opening bracket of the following bracketing pairs: {}, [], (), <>,
1671 `' (for example, in the docstring of `windmove-default-keybindings').
1672
1673 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
1674
1675 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
1676 shadow face. Don't provide binding to edit variable when it is
1677 out of scope.
1678
1679 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
1680 (gdb-var-update-handler): Detect out of scope variables with pre
1681 GDB 6.4 too.
1682 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
1683 Reset status of variable objects to nil in update handlers.
1684 (gdb-var-update-handler-1): Detect when a variable object comes
1685 in scope. setcar on var changes gdb-var-list directly.
1686
1687 2006-02-17 Juri Linkov <juri@jurta.org>
1688
1689 * ffap.el (ffap) <defface>: Add explicit face declaration.
1690 (ffap-highlight): Use face `ffap' directly instead of checking
1691 for its existence.
1692
1693 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
1694 `visible-ok' of `other-buffer' to find the right original buffer.
1695
1696 * info.el (Info-search): Skip `Local Variables' node.
1697
1698 2006-02-17 Juri Linkov <juri@jurta.org>
1699
1700 * info.el (Info-find-file): Check for symbols `apropos', `history',
1701 `toc' in the input filename, and return these symbols as is.
1702 (Info-find-node-2): Set Info-current-file to symbols `apropos',
1703 `history', `toc' instead of strings.
1704 (Info-set-mode-line): For non-string Info-current-file use the
1705 symbol's name inside **.
1706 (Info-isearch-push-state): Add quote before Info-current-file and
1707 Info-current-node.
1708 (Info-isearch-pop-state): Use `equal' instead of `string='.
1709 (Info-extract-pointer, Info-following-node-name): Use
1710 `match-string-no-properties' instead of `match-string'.
1711 (Info-up): Check `old-file' for `stringp'.
1712 (Info-history): Use `equal' instead of `string-equal'.
1713 Check `file' for `stringp'.
1714 (Info-history): Use symbol `history' instead of string as first arg
1715 of `Info-find-node'.
1716 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
1717 `toc' instead of string.
1718 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
1719 instead of `buffer-substring', and `match-string-no-properties'
1720 instead of `match-string'.
1721 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
1722 instead of strings.
1723 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
1724 Use symbol `apropos' instead of string.
1725 (Info-copy-current-node-name): Check `Info-current-file' for
1726 `stringp' and construct a command with `Info-find-node' from it.
1727 (Info-fontify-node): Use `match-string-no-properties' instead of
1728 `match-string' and check file names for `stringp'.
1729 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
1730 `history', `toc' instead of strings.
1731
1732 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
1733
1734 * files.el: Rearrange functions and variables in the file local
1735 variables section.
1736
1737 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
1738
1739 * files.el: Add truncate-lines, ispell-check-comments and
1740 ispell-local-dictionary as safe local variables.
1741
1742 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
1743
1744 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
1745 out of scope variables.
1746 (gud-speedbar-buttons): Use unless.
1747
1748 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
1749 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
1750 (gdb-show-changed-values): Also use for out of scope variables.
1751 (gdb-var-update-handler-1): Note if variable goes out of scope.
1752
1753 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
1754
1755 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
1756 default to global variable values for unsupplied args.
1757 (rcirc-get-buffer-create): Fix bug with setting the target.
1758 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
1759 test for rcirc-always-use-server-buffer-flag here.
1760 (rcirc-response-formats): Add %N, which is a facified nick. %n
1761 uses the default face. Change the ACTION format string. If the
1762 "nick" is the server, don't print anything for that field.
1763 Comment fixes.
1764 (rcirc-target-buffer): Don't test
1765 rcirc-always-use-server-buffer-flag here.
1766 (rcirc-print): Squeeze extra spaces out of the text before message.
1767 (rcirc-put-nick-channel): Strip potential "@" char from nick
1768 before adding them to nick table.
1769 (rcirc-url-regexp): Improve to match address like "foo.com".
1770
1771 2006-02-17 Eli Zaretskii <eliz@gnu.org>
1772
1773 * allout.el (allout-hidden-p): Move this defsubst before
1774 allout-overlay-interior-modification-handler, where it is first
1775 used.
1776
1777 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
1778
1779 * allout.el: Use allout invisible-text overlays instead of
1780 selective display for concealed text. Also, lots of general
1781 cleanup, and improved compatibility code.
1782
1783 (allout-version) Incremented, corrected, revised, and refined
1784 module commentary.
1785
1786 (provide 'allout): Moved to the bottom, added a require of overlay.
1787
1788 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
1789 `except-current'.
1790 (allout-write-file-hook-handler): Minimize delay.
1791 (count-trailing-whitespace-region): New function so
1792 auto-encryption of current topic can resituate cursor exactly.
1793 PGP/GPG encryption trims trailing whitespace from lines, which
1794 must be accounted for across encryption then decryption.
1795
1796 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
1797 just plain "\C-c", to avoid intruding on user's keybinding space.
1798
1799 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
1800 parameter, so user request to provide a new password is done.
1801
1802 (allout-outside-normal-auto-fill-function, allout-auto-fill):
1803 Refined mechanism for auto-filling behavior while in allout mode.
1804
1805 (allout-mode): Explicitly specify the mode map in the docstring.
1806 Clarify provision for various write-file hook var names.
1807 Adjusted for invisible-text overlays instead of selective-display.
1808
1809 (allout-depth): Really return 0 if not within any topic. This
1810 rectifies `allout-beginning-of-level' and sequence numbering
1811 errors that occur when cutting and pasting numbered topics.
1812 Changed from a in-line subst to a regular function, as well.
1813
1814 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
1815
1816 (allout-end-of-subtree, allout-end-of-subtree)
1817 (allout-end-of-entry, allout-end-of-current-heading)
1818 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
1819 (allout-show-children, allout-show-to-offshoot)
1820 (allout-hide-current-entry, allout-show-current-entry): Rectified
1821 handling of trailing blank lines between items.
1822
1823 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
1824 (allout-current-depth, allout-unprotected, allout-hidden-p)
1825 (allout-on-current-heading-p, allout-listify-exposed)
1826 (allout-chart-subtree, allout-goto-prefix)
1827 (allout-back-to-current-heading, allout-get-body-text)
1828 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
1829 (allout-hide-region-body, allout-toggle-subtree-encryption)
1830 (allout-encrypt-string, allout-encrypted-key-info)
1831 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
1832 (allout-file-vars-section-data): Adjusted for use with
1833 invisible-text overlays instead of selective-display.
1834
1835 (allout-kill-line, allout-kill-topic, allout-yank-processing):
1836 Reworked for use with invisible text overlays.
1837
1838 (allout-current-topic-collapsed-p): New function.
1839
1840 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
1841 to know when to close the containing topic.
1842
1843 (allout-pre-command-business, allout-post-command-business):
1844 Simplify undo-batching and dynamic isearch exposure.
1845
1846 (allout-set-overlay-category): New for invisible-text overlays.
1847 Sets properties of allout-overlay-category, used by
1848 allout-flag-region to set invisible-text overlay properties.
1849 (allout-get-invisibility-overlay): Get the first qualifying
1850 invisibility overlay, so we can find the extent of it.
1851 (allout-back-to-visible-text): Get to just before the beginnining
1852 of the current invisibility overlay, if any.
1853
1854 (allout-overlay-insert-in-front-handler)
1855 (allout-overlay-interior-modification-handler)
1856 (allout-before-change-handler, allout-isearch-end-handler): New
1857 functions to handle extraordinary actions affecting concealed
1858 text.
1859
1860 (allout-flag-region): Use overlays instead of selective-display
1861 for invisible text - by inheritence from the properties of
1862 allout-overlay-category in mainline Emacs, and applied
1863 property-by-property in XEmacs, some recent versions of which
1864 don't inherit the properties from the category. Provisions to
1865 respond to concealed-text edits simplified drastically.
1866
1867 (allout-isearch-rectification, allout-isearch-was-font-lock)
1868 (allout-isearch-expose, allout-enwrap-isearch)
1869 (allout-isearch-abort, allout-pre-was-isearching)
1870 (allout-isearch-prior-pos, allout-isearch-did-quit)
1871 (allout-isearch-dynamic-expose)
1872 (allout-hide-current-entry-completely): Functions deleted.
1873
1874 (allout-undo-aggregation): Explicit undo aggregation no longer
1875 necessary due to transition away from selective-display.
1876
1877 (set-allout-regexp, allout-up-current-level)
1878 (allout-next-visible-heading, allout-forward-current-level)
1879 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
1880 (allout-kill-line, allout-yank-processing, allout-show-children)
1881 (allout-expose-topic, allout-old-expose-topic)
1882 (allout-listify-exposed, allout-insert-latex-header)
1883 (allout-toggle-subtree-encryption, allout-encrypt-string)
1884 (remove-from-invisibility-spec, allout-hide-current-subtree):
1885 Ditched unused variables.
1886
1887 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
1888
1889 * textmodes/ispell.el (ispell-change-dictionary): Call
1890 ispell-buffer-local-dict instead of
1891 ispell-accept-buffer-local-defs.
1892 (ispell-local-dictionary-alist): Accept as valid any coding-system
1893 supported by Emacs.
1894 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
1895 changed to iso-8859-3.
1896
1897 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
1898
1899 * speedbar.el (speedbar-frame-width): Make an inline function
1900 instead of a macro. Use frame-width.
1901 (speedbar-try-completion, speedbar-update-contents)
1902 (speedbar-timer-fn): Use consp.
1903 (speedbar-update-localized-contents): Try to preserve point.
1904
1905 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
1906 (menu): Re-order menu items.
1907 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
1908 field.
1909 (gdb-var-update-handler-1): Use it for GDB 6.4+.
1910 (gdb-post-prompt): Speed things by not forcing update.
1911
1912 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
1913
1914 * wid-edit.el (widget-button-click): For mouse-1, cancel button
1915 press and perform default action if we get a mouse movement event.
1916
1917 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
1918
1919 * calendar/icalendar.el (icalendar--get-event-property)
1920 (icalendar--get-event-property-attributes): Fix typos in
1921 docstrings.
1922
1923 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
1924 docstring.
1925
1926 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
1927
1928 * bs.el (bs-mode): Use `buffer-disable-undo'.
1929 (bs--get-file-name): Simplify.
1930 (bs-show-in-buffer): Mark the buffer as not modified.
1931
1932 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
1933
1934 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
1935 widget-button-click.
1936
1937 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
1938 (custom-mode): Update docstring.
1939
1940 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
1941 binding.
1942
1943 * files.el (hack-local-variables-confirm): Allow scrolling if the
1944 file variable list is too long. Kill temp buffer after use.
1945
1946 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
1947
1948 * progmodes/gud.el (gdb): Improve doc string.
1949 (gdb-script-font-lock-keywords): Expand allowed character set.
1950
1951 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
1952 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
1953 (gdb-separate-io-interrupt, gdb-separate-io-quit)
1954 (gdb-separate-io-stop, gdb-separate-io-eof):
1955 Rename from gdb-inferior-* to gdb-separate-*.
1956 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
1957
1958 2006-02-14 Jay Belanger <belanger@truman.edu>
1959
1960 * calc/calc-arith.el (math-check-known-scalarp): Make sure
1961 expression is a symbol before checking that it is bound.
1962
1963 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
1964 test to see if equation can be solved.
1965
1966 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
1967
1968 * wid-edit.el (widget-button-click): Use :pressed-face property
1969 for overlay face, if it exists.
1970
1971 * cus-edit.el (custom-manual, custom-add-see-also)
1972 (custom-add-parent-links, custom-group-link): Add :pressed-face
1973 property to links.
1974
1975 * files.el (hack-local-variables): Remove ignored variables before
1976 checking if any variables need setting.
1977
1978 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1979
1980 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
1981
1982 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
1983
1984 * help.el (where-is): Fix message for remapped commands.
1985
1986 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
1987 Fix typos in docstrings.
1988
1989 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
1990
1991 * files.el (safe-local-variable-values): New option.
1992 (hack-local-variables-prop-line): Return a list of variable-value
1993 pairs if MODE-ONLY is non-nil.
1994 (hack-local-variables): Construct list of variable-value pairs,
1995 and apply or reject them in one go. Ask for confirmation if
1996 variables are not known safe.
1997 (hack-local-variables-confirm): Complete rewrite. Support
1998 `safe-local-variable-values'.
1999 (enable-local-variables): Update docstring to reflect new
2000 behavior.
2001 (ignored-local-variables): Ignore ignored-local-variables and
2002 safe-local-variable-values.
2003 (safe-local-variable-p): New function.
2004 (risky-local-variable-p): `safe-local-variable' property check
2005 moved to safe-local-variable-p.
2006 (hack-one-local-variable): Checks moved to hack-local-variables.
2007
2008 (byte-compile-dynamic, c-basic-offset, c-file-style)
2009 (c-indent-level, comment-column, fill-column, fill-prefix)
2010 (indent-tabs-mode, kept-new-versions, no-byte-compile)
2011 (no-update-autoloads, outline-regexp, page-delimiter)
2012 (paragraph-start, paragraph-separate, sentence-end)
2013 (sentence-end-double-space tab-width, version-control):
2014 Add `safe-local-variable' property.
2015
2016 * find-lisp.el: Delete nonexistent `autocompile' file variable.
2017
2018 * icomplete.el, play/landmark.el: Change nonexistent
2019 `outline-layout' file variable to `allout-layout'.
2020
2021 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
2022
2023 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
2024 (gdb-get-changed-registers): Test value of gud-minor-mode relative
2025 to gud-comint-buffer.
2026 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
2027 gdb-ui.el for gdb-mi.el.
2028 (gdb-post-prompt, gdb-get-changed-registers): Move test for
2029 registers buffer to gdb-get-changed-registers.
2030 (gdb-breakpoint-regexp): New regexp. Allow toggling and
2031 deletion of catchpoints (throw and catch).
2032 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
2033 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
2034 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
2035 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
2036 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
2037
2038 2006-02-13 Jay Belanger <belanger@truman.edu>
2039
2040 * calc/calc-arith.el (math-check-known-matrixp): Make sure
2041 expression is a symbol before checking that it is bound.
2042
2043 2006-02-13 Richard M. Stallman <rms@gnu.org>
2044
2045 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
2046 for the minibuffer too, but not if resize-mini-windows will interfere.
2047
2048 * help.el (describe-key-briefly, describe-key): Do all arg-reading
2049 inside `interactive' spec.
2050 (describe-key-briefly-internal, describe-key-internal):
2051 Functions merged back into their callers.
2052
2053 2006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
2054
2055 * info.el (info-xref-visited): Inherit from info-xref too.
2056 (Info-set-mode-line): Replace occurrences of `%' by `%%'
2057 when propertizing Info-current-file and Info-current-node.
2058
2059 2006-02-13 Juri Linkov <juri@jurta.org>
2060
2061 * tumme.el (tumme-thumbnail-storage): Fix docstring.
2062 (tumme-thumb-name): Fix per-directory format.
2063
2064 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
2065
2066 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
2067
2068 2006-02-12 Miles Bader <miles@gnu.org>
2069
2070 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
2071
2072 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
2073
2074 * tumme.el: Remove history section. If someone needs the it, it
2075 can always be found in CVS.
2076
2077 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
2078
2079 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
2080 about the Thumbnail Managing Standard option.
2081
2082 2006-02-12 Richard M. Stallman <rms@gnu.org>
2083
2084 * subr.el (substitute-key-definition): Doc fix.
2085
2086 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
2087
2088 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
2089
2090 * info.el (Info-mode): Doc fix.
2091
2092 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
2093
2094 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
2095
2096 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
2097 because on Solaris a POSIX compatible "id" is needed. Reported by
2098 Magnus Henoch <mange@freemail.hu>.
2099
2100 2006-02-12 Juri Linkov <juri@jurta.org>
2101
2102 * tumme.el: Remove todo item about Thumbnail Managing Standard.
2103 (tumme) <defgroup>: Change :group to `multimedia'.
2104 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
2105 Managing Standard.
2106 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
2107 Fix dostring.
2108 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
2109 and %y. Fix docstring.
2110 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
2111 (tumme-cmd-create-standard-thumbnail-command): New user options.
2112 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
2113 is `standard'. Fix docstring.
2114 (tumme-thumb-width, tumme-thumb-height): New user options.
2115 (tumme-external-viewer): Try to find various viewers.
2116 (tumme-get-thumbnail-image): Use `create-image' instead of
2117 constructing the `image' structure.
2118 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
2119 `standard'.
2120 (tumme-thumb-name): Add file name generation for standard storage.
2121 Simplify code for other storages.
2122 (tumme-thumb-name): Use width %w and height %h instead of size %s.
2123 Add modification time %m and thumbnail-nq8 %q.
2124 Use `tumme-cmd-create-standard-thumbnail-command' if
2125 tumme-thumbnail-storage is `standard'.
2126 (tumme-dired-insert-marked-thumbs): New autoload command.
2127 (tumme-dired-after-readin-hook): New function.
2128 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
2129 `tumme-thumb-size'.
2130 (tumme-display-image): Replace size-x %x and size-y %y with
2131 width %w and height %h.
2132
2133 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
2134 `tumme-dired-insert-marked-thumbs'.
2135
2136 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
2137
2138 * tumme.el (tumme-write-tag): Fix small bug (file name did not
2139 include path).
2140 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
2141 matching tag.
2142
2143 2006-02-12 Miles Bader <miles@gnu.org>
2144
2145 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
2146 New variables.
2147 (rcirc-abbrev-nick): New function.
2148 (rcirc-format-response-string): Rewrite to use the formats in
2149 `rcirc-response-formats' and expand escape sequences therein.
2150 A text-property `rcirc-text' is added over the actual response
2151 text to make easy to find inside the returned string.
2152 (rcirc-print): When filling, just look for the `rcirc-text'
2153 text-property to find the appropriate fill prefix, instead of
2154 using hardwired patterns.
2155
2156 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
2157
2158 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
2159 Managing Standard.
2160
2161 2006-02-11 Kim F. Storm <storm@cua.dk>
2162
2163 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
2164 Don't use insert-buffer; do insert-buffer-substring directly.
2165 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
2166
2167 2006-02-11 Martin Rudalics <rudalics@gmx.at>
2168
2169 * files.el (revert-buffer, recover-file): Replace buffer-read-only
2170 with inhibit-read-only. Suggested by Stefan Monnier.
2171 (revert-buffer): Let insert-file-contents discard
2172 buffer-undo-list. Simplify code.
2173 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
2174
2175 2006-02-11 Eli Zaretskii <eliz@gnu.org>
2176
2177 * menu-bar.el (menu-bar-select-yank): Add a doc string.
2178
2179 * help.el (describe-key-briefly): Now a wrapper for
2180 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
2181 to t. Populate yank-menu if empty.
2182 (describe-key-briefly-internal): Renamed from describe-key-briefly.
2183 (describe-key): Now a wrapper for describe-key-internal. Bind
2184 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
2185 (describe-key-internal): Renamed from describe-key.
2186
2187 2006-02-11 Milan Zamazal <pdm@zamazal.org>
2188
2189 * progmodes/glasses.el (glasses-separator): Doc fix.
2190 (glasses-original-separator): New defcustom.
2191 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
2192
2193 2006-02-11 Martin Rudalics <rudalics@gmx.at>
2194
2195 * mwheel.el (mouse-wheel-up-event): Doc fix.
2196
2197 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
2198
2199 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
2200 (tumme-dir): New function. Copied from thumbs.el.
2201
2202 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
2203
2204 * desktop.el (desktop-outvar): Fix typo.
2205 (desktop-save-buffer-p): Doc fix.
2206
2207 * subr.el (substitute-key-definition): Fix typo.
2208
2209 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2210
2211 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
2212 when window-system is mac.
2213
2214 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
2215
2216 2006-02-10 Kim F. Storm <storm@cua.dk>
2217
2218 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
2219 indirect-function instead of using condition-case.
2220
2221 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
2222
2223 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
2224 less `colloquial'...
2225
2226 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
2227
2228 * tumme.el: Add a couple of todo items.
2229
2230 2006-02-09 Lars Hansen <larsh@soem.dk>
2231
2232 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
2233 (highlight-changes-mode): Don't change desktop-locals-to-save.
2234
2235 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
2236
2237 * image-mode.el (image-toggle-display): Clear image cache if using
2238 filename.
2239
2240 2006-02-09 Masatake YAMATO <jet@gyve.org>
2241
2242 * dired-x.el (dired-guess-shell-alist-default): Add .man as
2243 a `dired-man' target.
2244
2245 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
2246 boundary of symbols.
2247
2248 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
2249
2250 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
2251
2252 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
2253
2254 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
2255 `mapcar'; return nil.
2256
2257 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
2258
2259 * mouse.el (mouse-drag-track): Don't change window if we rebind to
2260 some other event.
2261
2262 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
2263
2264 * net/rcirc.el (rcirc-startup-channels-alist):
2265 Add irc.freenode.net and #emacs as defaults.
2266 (rcirc-ignore-all-activity-flag): Remove variable.
2267 (rcirc-authinfo): New variable.
2268 (rcirc-authinfo-filename): Remove variable.
2269 (rcirc-always-use-server-buffer-flag): New flag.
2270 (rcirc): M-x rcirc will automatically connect without prompting.
2271 C-u M-x rcirc will prompt. Use rcirc-connect to create a
2272 connection in lisp.
2273 (rcirc-process-server-response-1): Remove everything but the nick
2274 portion of the sender so it doesn't need to be done everywhere
2275 else. Update related code.
2276 (global-map): Remove global keybindings.
2277 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
2278 (rcirc-send-input): Split into several functions.
2279 (rcirc-process-input-line, rcirc-process-message)
2280 (rcirc-process-command): New functions.
2281 (rcirc-target-buffer): New function to determine where to route
2282 messages.
2283 (rcirc-user-nick): Save match data.
2284 (rcirc-toggle-ignore-buffer-activity)
2285 (rcirc-update-activity-string): Remove global ignore functionality,
2286 which can be done now by toggling rcirc-track-minor-mode.
2287 (rcirc-track-minor-mode-map): New keymap.
2288 (rcirc-track-minor-mode): New minor-mode.
2289 (ignore): Make the ignore output nicer. Always print it when
2290 adding or removing nicks.
2291 (rcirc-url-regexp): Improve.
2292 (rcirc-mangle-text): Remove properties before using text in the
2293 modeline.
2294 (rcirc-authenticate): Authentication data comes from
2295 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
2296 (rcirc-server-prefix): Inherit from rcirc-server.
2297
2298 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
2299
2300 * Makefile.in (compile): Append "|| true" to the end of the `find'
2301 command, like compile-always does.
2302
2303 2006-02-08 Sam Steingold <sds@gnu.org>
2304
2305 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
2306 output from a dead connection.
2307
2308 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
2309
2310 * dired.el (dired-mode-map): Add more bindings for tumme.
2311
2312 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
2313
2314 * wdired.el (wdired-mode-map): Use remap.
2315 (wdired-get-filename): Massage.
2316 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
2317 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
2318 `keymap' property rather than `local-map'.
2319
2320 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
2321
2322 * tumme.el (tumme-get-thumbnail-image): New utility function.
2323 Suggested by from Chong Yidong.
2324 (tumme-dired-with-window-configuration): Rename from
2325 `tumme-dired'. Add code to save window configuration.
2326 (tumme-restore-window-configuration): New command to restore the
2327 window configuration that `tumme-dired-with-window-configuration'
2328 saves before it changes the window configuration.
2329 (tumme-show-all-from-dir): New command to display thumbnails for
2330 all files in a directory entered by the user, like M-x thumbs.
2331 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
2332 have been created.
2333 (tumme-display-thumbnail-original-image): Call `display-buffer'.
2334 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
2335 Remove obsolete test function.
2336
2337 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
2338
2339 * vc.el (small-temporary-file-directory): Remove defvar; there's
2340 a defcustom for it in files.el.
2341
2342 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
2343 Fix typo in message.
2344 (tumme-gallery-generate): Fix typo in `error' message.
2345 (tumme-display-window-height-correction)
2346 (tumme-display-window-width-correction, tumme-line-up-dynamic)
2347 (tumme-line-up-interactive): Dox fixes.
2348 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
2349 (tumme-restore-window-configuration, tumme-format-properties-string)
2350 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
2351 Fix typos in docstrings.
2352
2353 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
2354
2355 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
2356
2357 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
2358
2359 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
2360 User should use hook if desired.
2361
2362 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
2363 buffer if necessary.
2364 (gdb-delete-frame-or-window): New function.
2365 (gdb-breakpoints-mode-map): Bind "q" to it.
2366
2367 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
2368
2369 * textmodes/nroff-mode.el: Clean up name space.
2370 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
2371 (nroff-mode): Obey the global setting of nroff-electric-mode.
2372 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
2373
2374 * calendar/calendar.el (calendar-increment-month): Typo in last change.
2375
2376 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
2377
2378 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
2379
2380 2006-02-06 Lars Hansen <larsh@soem.dk>
2381
2382 * generic-x.el (etc-fstab-generic-mode): Add file system types
2383 cifs and usbdevfs. Allow special chars in file names.
2384
2385 2006-02-05 Jay Belanger <belanger@truman.edu>
2386
2387 Update copyright notices of the files in lisp/calc.
2388
2389 2006-02-05 Romain Francoise <romain@orebokech.com>
2390
2391 Update copyright notices of all files in the lisp/play directory.
2392
2393 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
2394
2395 * ldefs-boot.el: Regenerate.
2396
2397 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
2398
2399 2006-02-05 Kim F. Storm <storm@cua.dk>
2400
2401 * files.el (magic-mode-regexp-match-limit): New defvar.
2402 (set-auto-mode): Use it to limit magic-mode-alist matching.
2403
2404 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
2405
2406 * simple.el (display-message-or-buffer): Compare the number of
2407 characters to the frame width when determining whether a 1-line
2408 message string will fit in the echo area. Count screen lines
2409 instead of buffer lines when determining whether a multi-line
2410 message will fit in the echo area/minibuffer window.
2411
2412 2006-02-04 Eli Zaretskii <eliz@gnu.org>
2413
2414 * info.el (Info-index, Info-mode): Improve the description of the
2415 `i' command.
2416
2417 * ldefs-boot.el: Regenerate.
2418
2419 2006-02-03 Werner Lemberg <wl@gnu.org>
2420
2421 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
2422 greedy to find the closing bracket in \*[...] and similar
2423 expressions. This is a first rough fix -- many additional
2424 refinements are necessary to make nroff mode really usable with groff.
2425
2426 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
2427
2428 * international/mule-cmds.el (set-locale-environment):
2429 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
2430 libX11.
2431
2432 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
2433
2434 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
2435 archive are created in archive-tmpdir.
2436
2437 2006-02-02 John Paul Wallington <jpw@pobox.com>
2438
2439 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
2440 (ibuffer-fontification-alist): Use it.
2441 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
2442 to "* z" and the Ibuffer Mark menu.
2443
2444 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
2445
2446 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
2447
2448 * textmodes/table.el (*table--cell-describe-mode)
2449 (*table--cell-describe-bindings): Undo last change since
2450 print-help-return-message is not obsoleted by anything at all.
2451
2452 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
2453
2454 * emulation/cua-base.el (cua-mode): Doc fix.
2455
2456 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
2457
2458 * dframe.el (dframe-handle-make-frame-visible)
2459 (dframe-handle-iconify-frame, dframe-get-focus)
2460 (dframe-select-attached-frame, dframe-power-click)
2461 (dframe-frame-mode): Fix typos in docstrings.
2462
2463 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
2464 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
2465 Fix typos in docstrings.
2466
2467 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
2468 (hi-lock-face-buffer, hi-lock-font-lock-hook)
2469 (hi-lock-archaic-interface-message-used)
2470 (hi-lock-file-patterns-range): Fix typos in docstrings.
2471
2472 * savehist.el (savehist-loaded, savehist-load, savehist-install)
2473 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
2474
2475 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
2476 Fix typo in docstring.
2477
2478 * net/newsticker.el (newsticker--decode-iso8601-date)
2479 (newsticker--set-customvar, newsticker--buffer-insert-item)
2480 (newsticker--do-run-auto-mark-filter)
2481 (newsticker--parse-generic-feed): Doc fixes.
2482 (newsticker--retrieval-timer-list, newsticker-url-list)
2483 (newsticker-hide-immortal-items-in-echo-area)
2484 (newsticker-hide-obsolete-items-in-echo-area)
2485 (newsticker-new-item-face, newsticker--enclosure)
2486 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
2487 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
2488 (newsticker--parse-generic-feed, newsticker--cache-contains)
2489 (newsticker--stat-num-items, newsticker-download-enclosures):
2490 Fix typos in docstrings.
2491
2492 * net/rcirc.el (rcirc-debug): Doc fix.
2493 (rcirc-fill-column, rcirc-receive-message-hooks)
2494 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
2495 (rcirc-mode, rcirc-generate-new-buffer-name)
2496 (rcirc-startup-channels, rcirc-ignore-update-automatic)
2497 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
2498 Fix typos in docstrings.
2499 (rcirc-print): "?\ " -> "?\s".
2500 (rcirc-cmd-join): Improve argument/docstring consistency.
2501
2502 2006-02-01 Mark A. Hershberger <mah@everybody.org>
2503
2504 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
2505 before narrow-to-region.
2506
2507 2006-02-01 Richard M. Stallman <rms@gnu.org>
2508
2509 * simple.el (move-beginning-of-line): Scan properly for invis change.
2510
2511 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
2512
2513 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
2514
2515 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
2516 change bit only when id-format is 'integer. Reported by Matt
2517 Hodges <M.P.Hodges@rl.ac.uk>.
2518
2519 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
2520
2521 * hilit-chg.el (highlight-changes-initial-state)
2522 (highlight-changes-global-initial-state): Doc fixes.
2523 (highlight-changes-global-modes, global-highlight-changes):
2524 Fix typos in docstrings.
2525
2526 2006-02-01 Kim F. Storm <storm@cua.dk>
2527
2528 * emulation/cua-base.el (cua-mode): Mention that CUA enables
2529 transient-mark-mode in doc string.
2530
2531 2006-01-31 Richard M. Stallman <rms@gnu.org>
2532
2533 * replace.el (multi-occur): Doc fix.
2534 (multi-occur-in-matching-buffers): Rename from
2535 multi-occur-by-filename-regexp. Prefix arg says match
2536 buffer names instead of file names.
2537
2538 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
2539
2540 * bs.el: Allow non-default values of `bs-header-lines-length'.
2541 (bs--running-in-xemacs): Remove (not needed anymore).
2542 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
2543 instead of `shrink-window', thus avoiding having to compute the
2544 height of the window.
2545 (bs--up): Wrap around even when there's no header.
2546 (bs--down): Use `forward-line' instead of `next-line'.
2547
2548 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
2549
2550 * image-mode.el (image-toggle-display): Use file name if possible,
2551 instead of unnecessarily allocating a (possibly huge) lisp string.
2552
2553 2006-01-30 John Paul Wallington <jpw@pobox.com>
2554
2555 * subr.el (toplevel): Define `cl-assertion-failed' condition here
2556 because the `assert' macro signals it at runtime.
2557
2558 * emacs-lisp/cl.el (toplevel): Remove definition of
2559 `cl-assertion-failed' condition.
2560
2561 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
2562
2563 * thumbs.el (thumbs-marked-list): Make buffer-local and
2564 permanent-local.
2565 (thumbs-insert-thumb): Make help-echo non-sticky.
2566 (thumbs-file-alist): Use eolp as check for (non)-image.
2567
2568 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
2569
2570 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
2571 (ediff-before-session-group-setup-hooks)
2572 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
2573 Fix typos in docstrings.
2574
2575 * window.el (bw-dir, bw-eqdir, balance-windows)
2576 (split-window-keep-point): Fix typos in docstrings.
2577
2578 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
2579 (org-quote-string, org-calendar-to-agenda-key)
2580 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
2581 (org-show-following-heading, org-tags-column)
2582 (org-use-tag-inheritance, org, org-allow-space-in-links)
2583 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
2584 (org-enable-table-editor, org-calc-default-modes)
2585 (org-table-allow-automatic-line-recalculation)
2586 (org-export-html-style, org-export-with-fixed-width)
2587 (org-export-with-sub-superscripts, org-special-keyword)
2588 (org-formula, org-time-grid, org-table-may-need-update)
2589 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
2590 (org-goto-quit, org-get-indentation, org-end-of-item)
2591 (org-move-item-down, org-move-item-up)
2592 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
2593 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
2594 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
2595 (org-agenda-log-mode, org-agenda-toggle-diary)
2596 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
2597 (org-agenda-file-to-end, org-agenda-no-heading-message)
2598 (org-agenda-get-closed, org-format-agenda-item)
2599 (org-cmp-priority, org-cmp-category, org-cmp-time)
2600 (org-agenda-change-all-lines, org-agenda-diary-entry)
2601 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
2602 (org-link-search, org-camel-to-words, org-open-file)
2603 (org-remember-handler, org-table-convert-region)
2604 (org-table-move-row-down, org-table-move-row-up)
2605 (org-table-copy-region, org-table-wrap-region)
2606 (org-table-toggle-vline-visibility)
2607 (org-table-get-vertical-vector, org-table-modify-formulas)
2608 (org-table-get-specials, org-recalc-commands)
2609 (org-table-rotate-recalc-marks, org-table-eval-formula)
2610 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
2611 (org-level-color-stars-only, org-insert-heading):
2612 Fix typos in docstrings.
2613 (last-arg): Add defvar.
2614
2615 * makefile.w32-in (WINS): Add erc.
2616 (MH_E_SRC): Update (copied from lisp/Makefile.in).
2617
2618 2006-01-29 Bill Wohler <wohler@newt.com>
2619
2620 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
2621 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
2622 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
2623 (mh-autoloads): Don't use comments on otherwise empty lines.
2624
2625 2006-01-29 Edward O'Connor <ted@oconnor.cx>
2626
2627 * emulation/viper.el (viper-major-mode-modifier-list): Add
2628 insert-state and vi-state entries for erc-mode.
2629 (viper-go-away, viper-set-hooks): Add and remove
2630 viper-comint-mode-hook from erc-mode-hook as appropriate.
2631
2632 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
2633
2634 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
2635
2636 * bs.el (bs--format-aux): Implement `middle' alignment as
2637 described in the docstring for `bs-attributes-list'.
2638 (bs--get-name): Simplify. Don't pad the buffer name.
2639
2640 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
2641
2642 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
2643 English aspell dictionary is installed, use the first entry of
2644 ispell-dictionary-alist-1.
2645
2646 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
2647
2648 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2649 Doc fix.
2650
2651 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
2652
2653 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
2654 for `process-file', in order to let it work for older Emacsen too.
2655
2656 2006-01-27 Eli Zaretskii <eliz@gnu.org>
2657
2658 * international/latexenc.el: Add a suitable `coding:' tag.
2659 (latexenc-find-file-coding-system): Undo last change.
2660
2661 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
2662
2663 * international/latexenc.el (latexenc-find-file-coding-system):
2664 Make sure latexenc-main-file is a regular file and is readable.
2665
2666 2006-01-27 Andre Spiegel <spiegel@gnu.org>
2667
2668 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
2669 Pass FILE to vc-user-login-name.
2670
2671 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
2672
2673 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
2674
2675 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
2676 there are no more images to display.
2677 (thumbs-mark, thumbs-unmark): Revert change so that they move to
2678 the next image.
2679
2680 2006-01-26 Richard M. Stallman <rms@gnu.org>
2681
2682 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
2683
2684 * wid-edit.el (advertised-widget-backward): New alias.
2685 (widget-keymap): Use advertised-widget-backward for S-TAB.
2686
2687 * tumme.el: Correct the keywords.
2688 (tumme-dir-max-size): Use defvar.
2689 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
2690
2691 * simple.el (move-beginning-of-line): Take account of fields.
2692 (clone-indirect-buffer-other-window): Take args like
2693 clone-indirect-buffer, and work like it.
2694
2695 * help-fns.el (describe-function): Don't pass `nil' as default.
2696
2697 * files.el (risky-local-variable-p): Follow var aliases.
2698
2699 * subr.el (lazy-completion-table): Doc fix.
2700
2701 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
2702 global binding of `line'.
2703
2704 2006-01-25 Andre Spiegel <spiegel@gnu.org>
2705
2706 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
2707 Tramp.
2708
2709 * vc.el (vc-default-dired-state-info): Pass FILE to
2710 vc-user-login-name.
2711 (vc-default-update-changelog): Don't use vc-user-login-name, we
2712 don't need it here.
2713
2714 * tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
2715 no longer necessary.
2716
2717 2006-01-25 Kenichi Handa <handa@m17n.org>
2718
2719 * international/mule.el (decode-char): Avoid the overhead of
2720 calling utf-lookup-subst-table-for-decode if
2721 utf-translate-cjk-mode is nil.
2722 (encode-char): Avoid the overhead of calling
2723 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
2724 nil.
2725
2726 2006-01-22 Kenichi Handa <handa@m17n.org>
2727
2728 * international/mule.el (make-subsidiary-coding-system): Reset
2729 `coding-system-define-form' property of subsidiaries to nil.
2730 Avoid duplicated entry in coding-system-alist.
2731 (make-coding-system): Avoid duplicated entry in
2732 coding-system-alist.
2733 (define-coding-system-alias): Likewise.
2734
2735 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
2736
2737 * completion.el: Minor fixes in introductory comment.
2738 (completion-def-wrapper): Fix alist.
2739
2740 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
2741
2742 * thumbs.el (thumbs-new-image-size): New function.
2743 (thumbs-increment-image-size-element)
2744 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
2745 (thumbs-decrement-image-size): Delete.
2746 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
2747 temp files and use to resize.
2748 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
2749 Use increment argument to enlarge/shrink. Preserve point.
2750 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
2751 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
2752 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
2753 (thumbs-mark, thumbs-unmark): Preserve point.
2754 (thumbs-modify-image): Keep old temp files and use to modify.
2755 Cleanup old temp files at load time. Preserve point.
2756 (thumbs-view-image-mode-map): Use new command names.
2757
2758 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2759
2760 * log-view.el (log-view-minor-wrap): First rev is the one at point.
2761
2762 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
2763 the nastiest part of the cyclic dependency.
2764 (cal-menu-update): Use dotimes and calendar-increment-month.
2765
2766 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
2767 (calendar-week-start-day): Add an :initializer.
2768 (calendar-mode-map): Use suppress-keymap, and command remapping.
2769 (describe-calendar-mode): Setup xref-stack info for the back button.
2770 (calendar-star-date): Insert before delete.
2771 (calendar-set-mode-line): Add file-modified info if applicable.
2772 (calendar-increment-month): New function.
2773
2774 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
2775
2776 * font-lock.el (lisp-font-lock-keywords-2):
2777 Recognize "& keywords" only at word boundaries.
2778
2779 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
2780
2781 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
2782 and permanent-local.
2783 (thumbs-max-image-number): New variable.
2784 (thumbs-do-thumbs-insertion): Use them.
2785 (thumbs-per-line): Change default to 4.
2786 (thumbs-marked-list): Rename from thumbs-markedL.
2787 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
2788 (thumbs-rename-images): Use -list instead of L for internal variables.
2789 (thumbs-call-convert): Use call-process instead of shell-command.
2790 (thumbs-insert-thumb): Add filename as help-echo to each image.
2791 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
2792 Give dir to thumbs-show-thumbs-list.
2793 (thumbs-show-thumbs-list): Set default-directory to that of images.
2794 (thumbs-dired-show): Rename from thumbs-dired-show-all.
2795 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
2796 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
2797 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
2798
2799 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
2800
2801 * ses.el (ses-read-cell): Provide a default value.
2802
2803 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
2804
2805 * term/w32-win.el (image-library-alist): Add additional names for
2806 GIF library.
2807
2808 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
2809
2810 * international/latexenc.el (latexenc-find-file-coding-system):
2811 Add file-regular-p check.
2812
2813 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2814
2815 * simple.el (clone-buffer): Don't show the new buffer in the same
2816 window.
2817
2818 2006-01-23 Juri Linkov <juri@jurta.org>
2819
2820 * faces.el (link, link-visited): New faces based on default values
2821 of `info-xref' and `info-xref-visited'.
2822
2823 * info.el (info-xref): Inherit from `link'.
2824 (info-xref-visited): Inherit from `link-visited'.
2825
2826 * cus-edit.el (custom-buffer-create-internal): Use widget type
2827 `custom-manual' instead of `info-link' and don't set properties
2828 `button-face' and `mouse-face' explicitly.
2829 (custom-browse-group-tag, custom-browse-variable-tag)
2830 (custom-browse-face-tag): Inherit from widget class
2831 `custom-group-link' instead of `push-button'.
2832 (custom-button-unraised): Inherit from `underline' face.
2833 (custom-link): Inherit from `link' face. Fix doc and group.
2834 (custom-add-parent-links, custom-group-value-create): Don't set
2835 properties `button-face' and `mouse-face' explicitly for
2836 `custom-group-link' widget.
2837 (custom-group-link): Add properties `button-face' and `mouse-face'
2838 to widget definition.
2839 (custom-field-keymap): New variable. Put `custom-field-keymap' to
2840 editable-field's :keymap property.
2841 (custom-mode): Fix docstring: substitute keybindings for
2842 `widget-forward' and `widget-backward' from `widget-keymap',
2843 `widget-complete' from `custom-field-keymap', replace old
2844 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
2845
2846 * desktop.el (desktop-load-file): Check for `fboundp' before
2847 calling `symbol-function'.
2848
2849 * simple.el (clone-buffer, clone-indirect-buffer)
2850 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
2851 `read-string'. Fix prompts.
2852
2853 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
2854
2855 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
2856
2857 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
2858
2859 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
2860
2861 * startup.el (inhibit-splash-screen, initial-scratch-message):
2862 Doc fixes.
2863
2864 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
2865
2866 Sync with Tramp 2.0.52.
2867
2868 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
2869 net/tramp-vc.el: Add code for unloading Tramp. See comment before
2870 `tramp-unload-tramp' for checklist.
2871
2872 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
2873 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
2874 (tramp-unload-file-name-handler-alist)
2875 (tramp-unload-tramp): New defuns.
2876 (tramp-advice-PC-expand-many-files): New defadvice.
2877 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
2878 removed.
2879 (tramp-handle-expand-file-name): Remove double slash.
2880 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
2881 It doesn't matter, because it will be converted later on.
2882 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
2883 implementation was just heuristic.
2884 (tramp-post-connection): Set uid and gid properties.
2885 (tramp-convert-file-attributes): Set file's gid change bit.
2886 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
2887 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
2888 in case of su(do)? methods. The home directory of the local user
2889 will be taken else.
2890 (tramp-open-connection-telnet)
2891 (tramp-open-connection-rsh, tramp-open-connection-su)
2892 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
2893 local shell prompt could hurt. Reported by Romain Francoise
2894 <romain@orebokech.com>.
2895 (tramp-let-maybe): Add `edebug-form-spec' property.
2896 (tramp-handle-expand-file-name): Bind `default-directory' locally
2897 to "/" in order to avoid problems with UNC shares or Cygwin
2898 mounts.
2899 (tramp-md5-function): Fix typo in error message.
2900
2901 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
2902
2903 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
2904 for byte-compiler pacification.
2905
2906 2006-01-22 Andre Spiegel <spiegel@gnu.org>
2907
2908 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
2909 ID-FORMAT `string'. This allows us to get rid of
2910 `vc-user-login-name UID'.
2911
2912 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
2913
2914 2006-01-22 John Paul Wallington <jpw@pobox.com>
2915
2916 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
2917
2918 2006-01-21 Martin Rudalics <rudalics@gmx.at>
2919
2920 * emacs-lisp/find-func.el (find-definition-noselect)
2921 (find-variable-noselect): Search variables in C source code too.
2922 (find-function-C-source, find-function-noselect, find-function)
2923 (find-function-other-frame, find-variable-noselect, find-variable)
2924 (find-variable-other-frame, find-variable-at-point):
2925 Fix docstrings.
2926
2927 2006-01-21 Francesco Potorti` <pot@gnu.org>
2928
2929 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
2930
2931 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
2932
2933 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
2934 Default to disabling the "Save affix" question.
2935
2936 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
2937
2938 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
2939 the first arg to run-python.
2940
2941 2006-01-21 Eli Zaretskii <eliz@gnu.org>
2942
2943 * startup.el (command-line-1): Handle --no-desktop if desktop.el
2944 is not loaded.
2945
2946 2006-01-20 Jay Belanger <belanger@truman.edu>
2947
2948 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
2949 limit is 0.
2950
2951 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
2952 the correct variable.
2953
2954 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
2955
2956 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
2957 link. Fixed buggy argument sequence in call to `org-view-tags'.
2958 (org-compile-prefix-format): Set `org-prefix-has-tag'.
2959 (org-prefix-has-tag): New variable.
2960 (org-format-agenda-item): Remove tags from headline if
2961 appropriate.
2962 (org-agenda-remove-tags-when-in-prefix): New option.
2963 (org-get-tags-at): New function.
2964
2965 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
2966
2967 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
2968 (thumbs-find-image): Move image name and number from buffer name
2969 to mode name. Set thumbs-buffer. Preserve point so that large
2970 images remain visible.
2971 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
2972 order.
2973 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
2974 mode name.
2975 (thumbs-next-image, thumbs-previous-image): Make them work.
2976
2977 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
2978
2979 * cus-edit.el (custom-buffer-create-internal): State in the text above
2980 the whole buffer buttons that they do not operate on hidden items.
2981 (custom-face-menu): Use `custom-face-save' instead of
2982 `custom-face-save-command'.
2983 (custom-face-save-command): Make it an alias for `custom-face-save'
2984 and declare it obsolete.
2985 (custom-face-save): Doc fix.
2986
2987 * dired.el (dired-no-confirm): Add quote.
2988 (dired-subdir-alist-pre-R): Add quote in
2989 `make-variable-buffer-local' form and remove unbalanced parenthesis.
2990
2991 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
2992
2993 * textmodes/table.el (table-mode-indicator): Typo in last change.
2994
2995 2006-01-19 Richard M. Stallman <rms@gnu.org>
2996
2997 * outline.el (hide-leaves): Don't call outline-end-of-heading.
2998 Fixes bug reported in Nov 2005.
2999
3000 * isearch.el (isearch-forward): Doc fix.
3001
3002 * dired.el (dired-move-to-filename-regexp): Define as alias.
3003 (dired-no-confirm): Use defcustom.
3004 (dired-subdir-alist-pre-R): Put defvar at top level.
3005
3006 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
3007
3008 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
3009 Mark as risky.
3010
3011 * simple.el (set-mark-command): Doc fix.
3012 (clone-indirect-buffer-other-window):
3013 Read arg like clone-indirect-buffer.
3014 (move-beginning-of-line): Skip invisible newlines.
3015
3016 2006-01-19 Masatake YAMATO <jet@gyve.org>
3017
3018 * progmodes/cpp.el (cpp-edit-load): Make the order of
3019 listed conditions in a base C code buffer and its associate
3020 CPP Edit buffer the same.
3021
3022 2006-01-19 Kenichi Handa <handa@m17n.org>
3023
3024 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
3025 (rmail-mime-feature): Likewise.
3026 (rmail-require-mime-maybe): Use display-warning to show a warning
3027 message.
3028
3029 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
3030 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
3031
3032 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
3033
3034 * array.el: Move defvars out of eval-when-compile.
3035 (array-make-template): Replace undeclared global var with a local one.
3036 (array-mode): Inline initialization functions.
3037 (array-init-local-variables, array-init-max-row)
3038 (array-init-max-column, array-init-columns-per-line)
3039 (array-init-field-width, array-init-rows-numbered)
3040 (array-init-line-length, array-init-lines-per-row): Remove.
3041
3042 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
3043 (doc-mode-map): Define explicitly.
3044 (doctor-txtype): Use mapc.
3045
3046 * textmodes/table.el: Move defvars out of eval-when-compile.
3047 Remove harmful code meant to avoid byte-compiler warnings.
3048 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
3049 specification that checks table-fixed-width-mode directly.
3050 (table-recognize-region, table-recognize-cell):
3051 Use restore-buffer-modified-p.
3052 (table-fixed-width-mode): Remove code that refreshes
3053 table-fixed-mode-indicator.
3054 (*table--cell-describe-bindings, *table--cell-describe-mode):
3055 Avoid obsolete name print-help-return-message.
3056 (table--test-cell-list): Don't use replace-regexp from elisp.
3057 (table--point-entered-cell-function, table--point-left-cell-function):
3058 Don't set table-fixed-mode-indicator, use force-mode-line-update.
3059
3060 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
3061 that was after the end of file. Use buffer-file-name variable.
3062 (org-timestamp-change): Use with-current-buffer.
3063 (org-todo-list): Don't unnecessarily define a new buffer-local var.
3064 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
3065 `file'.
3066
3067 * progmodes/fortran.el: Move defvars out of eval-when-compile.
3068 (fortran-break-line): Remove unused var `opoint'.
3069 (fortran-abbrev-start): Obey help-event-list.
3070
3071 2006-01-18 Jesper Harder <harder@phys.au.dk>
3072
3073 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
3074
3075 2006-01-18 Masatake YAMATO <jet@gyve.org>
3076
3077 * progmodes/make-mode.el (makefile-imake-mode): New mode
3078 derived from makefile-mode.
3079 (makefile-imake-mode-syntax-table): New syntax table
3080 derived from makefile-mode-syntax-table.
3081 (makefile-mode): Write about makefile-imake-mode in doc string.
3082 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
3083 (makefile-imake-font-lock-keywords): New font lock keywords.
3084
3085 * files.el (auto-mode-alist): Add Imakefile.
3086
3087 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
3088
3089 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
3090 loading the file rather than when turning on flyspell-mode.
3091
3092 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
3093
3094 * cus-edit.el (customize-rogue): Minor doc fix.
3095
3096 2006-01-17 Juri Linkov <juri@jurta.org>
3097
3098 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
3099 instead of the file at the mark as default if the file at the mark
3100 is the same as the file at point or if dired-dwim-target-directory
3101 is not the same as the current directory and the mark is not active.
3102
3103 * log-view.el (log-view-minor-wrap): Use the same logic to get
3104 revisions as `log-view-diff'.
3105
3106 * info.el (Info-revert-find-node): Check for Info-current-file
3107 before preserving new-history.
3108
3109 * man.el (Man-heading-regexp): Add `/'.
3110
3111 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
3112 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
3113
3114 2006-01-16 Juri Linkov <juri@jurta.org>
3115
3116 * faces.el (mode-line-faces): New defgroup.
3117 (mode-line-highlight): Move definition after new defgroup.
3118 (mode-line, mode-line-inactive, mode-line-highlight):
3119 Replace :group `modeline' with `mode-line-faces'.
3120 (mode-line-buffer-id): New face.
3121 (modeline-buffer-id): New face alias.
3122 (vertical-border): Remove :group `modeline'.
3123
3124 * bindings.el (propertized-buffer-identification): Use face
3125 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
3126 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
3127 (mode-line-buffer-identification-keymap): For mouse-1 replace
3128 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
3129 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
3130 mouse-3.
3131
3132 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
3133 Buffer-menu-buffer. Doc fix.
3134 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
3135 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
3136 `Buffer-menu-buffer'.
3137
3138 * info.el (Info-mode-line-node-keymap): New defvar.
3139 (Info-set-mode-line): Use `stringp' to check Info-current-file.
3140 Propertize Info-current-node with `mode-line-buffer-id' and
3141 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
3142
3143 * time.el (display-time-mail-face): Replace :group `faces' with
3144 `mode-line-faces'.
3145
3146 2006-01-16 Kenichi Handa <handa@m17n.org>
3147
3148 * international/code-pages.el: Add autoload cookies for cp125[0345678].
3149
3150 * language/european.el (cp1252): New alias for windows-1252.
3151
3152 * international/mule.el (autoload-coding-system): Prepare for EOL
3153 variants.
3154
3155 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
3156
3157 * term.el (term-raw-map): Add mapping for insert.
3158 (term-send-insert): New.
3159 (term-mode): Make variables local here instead of doing it in
3160 `term-emulate-terminal'.
3161 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
3162 Scroll reverse needs to take into account the scroll region.
3163 Saving and restoring the cursor should save the color attributes too.
3164 (term-reset-terminal): Reset the scroll region.
3165 (term-handle-ansi-escape): Cursor up and down should take into
3166 account the scroll region.
3167 (term-set-scroll-region): Rename from `term-scroll-region'.
3168 Move to 0,0 after setting the region.
3169 (term-handle-scroll): Handle scroll up.
3170 (term-down): Fix off by one error.
3171 (term-delete-lines): Do not delete outside the scroll region.
3172 (term-insert-lines): Take into account the scroll region.
3173
3174 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
3175
3176 * textmodes/ispell.el (ispell-internal-change-dictionary)
3177 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
3178 (start, end): Move declaration outside of eval-when-compile.
3179
3180 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
3181 (flyspell-mode-on): Use it.
3182
3183 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
3184 ispell-kill-ispell-hook.
3185
3186 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
3187
3188 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
3189 (Custom-reset-saved): Do not ask for confirmation in single option
3190 buffers.
3191
3192 2006-01-13 Richard M. Stallman <rms@gnu.org>
3193
3194 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
3195
3196 2006-01-13 Romain Francoise <romain@orebokech.com>
3197
3198 * add-log.el (add-change-log-entry, change-log-merge):
3199 Conditionally use `hard-newline'.
3200
3201 2006-01-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
3202
3203 * wid-edit.el (widget-field-end): If the overlay is no longer
3204 associated with a buffer, behave as if the overlay didn't exist.
3205
3206 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
3207 Make sure the links use the `custom-link' face.
3208
3209 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3210
3211 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
3212 (ld-script-mode): Don't set indent-line-function since we don't
3213 have one.
3214
3215 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
3216
3217 * textmodes/org.el (org-open-file): Use mailcap for selecting an
3218 application.
3219 (org-file-apps-defaults-gnu): Use mailcap as the default for
3220 selecting an application on a UNIX system.
3221 (org-agenda-show-tags): New command.
3222 (org-table-insert-hline): Keep cursor in current table line.
3223 (org-table-convert): Offset effect of modifying
3224 `org-table-insert-hline'.
3225 (org-format-agenda-item): New optional argument TAG.
3226 (org-compile-prefix-format): Handle %T format for the tag.
3227 (org-expand-wide-chars): New function.
3228 (org-table-insert-row, org-table-insert-hline):
3229 Use `org-expand-wide-chars'.
3230 (org-open-file): Fix bug in program launch.
3231 (org-get-time-of-day): Fix bug with times before 1am.
3232 (org-agenda-menu): Add tags commands.
3233
3234 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
3235
3236 * textmodes/ispell.el (ispell-init-process): Include the used
3237 dictionary in ispell process start message.
3238 (ispell-internal-change-dictionary): When flyspell-mode is active
3239 and dictionary is changed, make sure ispell process is restarted
3240 and flyspell word cache cleared out for the current buffer.
3241 (ispell-change-dictionary): Make sure flyspell word cache is
3242 cleared out in all buffers with active flyspell mode when
3243 dictionary is globally changed.
3244 Call ispell-internal-change-dictionary after dictionary change.
3245
3246 2006-01-13 Eli Zaretskii <eliz@gnu.org>
3247
3248 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
3249
3250 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
3251 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
3252 years. Fix small differences wrt Makefile.in.
3253 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
3254 Makefile.in does.
3255
3256 2006-01-12 Bill Wohler <wohler@newt.com>
3257
3258 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
3259 mh-search.el.
3260
3261 2006-01-12 Masatake YAMATO <jet@gyve.org>
3262
3263 * progmodes/ld-script.el: Update copyright year.
3264
3265 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
3266
3267 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
3268 Don't add widget if setting undefined.
3269
3270 2006-01-12 John Paul Wallington <jpw@pobox.com>
3271
3272 * help-fns.el (describe-variable): Remove newlines from void
3273 variable output.
3274
3275 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
3276
3277 * wdired.el (wdired-mode-map): Add help echo for
3278 wdired-abort-changes.
3279
3280 * man.el (Man-file-name-regexp): Adjust for a list of files.
3281
3282 2006-01-12 Masatake YAMATO <jet@gyve.org>
3283
3284 * progmodes/ld-script.el (auto-mode-alist): Support
3285 suffix conventions used in netbsd and eCos.
3286
3287 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
3288
3289 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
3290 (custom-variable-menu, custom-face-menu, custom-group-menu)
3291 (Custom-mode-menu): Change names of menu items. (As discussed on
3292 emacs-devel.)
3293 (custom-face-menu): Add "Undo Edits" item.
3294
3295 * startup.el (init-file-user): defcustom -> defvar.
3296
3297 * tooltip.el (tooltip-mode): Doc fix.
3298
3299 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
3300
3301 * reveal.el (reveal-post-command): window-buffer signals an error on
3302 dead windows rather than returning nil.
3303 (reveal-open-new-overlays): An overlay might die while we open others.
3304
3305 2006-01-11 Bill Wohler <wohler@newt.com>
3306
3307 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
3308 phrasing in docstring.
3309
3310 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
3311 can give some systems gas. Add new file mh-buffers.el.
3312
3313 2006-01-06 Masatake YAMATO <jet@gyve.org>
3314
3315 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
3316 C preprocessor forward ported from GNU Emacs 21.2.
3317
3318 * progmodes/asm-mode.el (asm-font-lock-keywords):
3319 Use `cpp-font-lock-keywords'.
3320
3321 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
3322
3323 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
3324 of $ for "\\.ld[s]?".
3325
3326 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
3327
3328 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
3329 (tcl-indent-line): Return `noindent' if inside a string.
3330
3331 * progmodes/flymake.el (flymake-split-string): Remove more than one
3332 empty string at beg/end of the result.
3333 (flymake-find-buildfile, flymake-find-possible-master-files):
3334 Use expand-file-name.
3335 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
3336 since expand-file-name does it for us. Use directory-file-name.
3337 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
3338 (flymake-ler-get-type, flymake-ler-get-text)
3339 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
3340 (flymake-current-line-no): Remove spurious interactive spec.
3341 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
3342 (flymake-check-include): Remove arg inc-path merged into inc-name.
3343 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
3344 Arg regexp-list replaced by a simple regexp.
3345 (flymake-master-make-header-init, flymake-master-tex-init):
3346 Correspondingly replace regexp-list with a regexp. Fix regexp.
3347
3348 2006-01-10 Simon Josefsson <jas@extundo.com>
3349
3350 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
3351 describing AUTH PLAIN fix.
3352
3353 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
3354
3355 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
3356 (report-emacs-bug): Don't record initial prompt text.
3357 Instead, add text properties to prompting text.
3358 (report-emacs-bug-hook): Delete prompting text.
3359
3360 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
3361
3362 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
3363 `dirs'. Adjust callers.
3364
3365 2006-01-09 John Paul Wallington <jpw@gnu.org>
3366
3367 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
3368
3369 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
3370
3371 * reveal.el (reveal-open-new-overlays): New extracted fun.
3372 (reveal-close-old-overlays): Idem. Check overlays's liveness before
3373 using them. Simplify the code.
3374 (reveal-post-command): Use them. Fix up obsolete windows in
3375 reveal-open-spots.
3376
3377 * progmodes/flymake.el: Use `require' rather than autoload for
3378 XEmacs's overlays.
3379 (flymake-get-common-file-prefix, flymake-build-relative-filename):
3380 Delete. Use file-relative-name instead.
3381 (flymake-get-syntax-check-program-args, flymake-perl-init):
3382 Simplify the resulting code.
3383
3384 * log-view.el (log-view-file-re, log-view-message-re): Add support
3385 for DaRCS output.
3386
3387 2006-01-09 Alex Schroeder <alex@gnu.org>
3388
3389 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
3390 identifiers sometimes added in square brackets at the beginning of
3391 subject lines.
3392
3393 2006-01-07 Richard M. Stallman <rms@gnu.org>
3394
3395 * cus-edit.el (Custom-set, Custom-save): Doc fix.
3396 (Custom-reset-current, Custom-reset-saved): Change question text.
3397 (Custom-reset-standard): Likewise.
3398 (custom-variable-reset-saved): Doc fix.
3399
3400 2006-01-07 Eli Zaretskii <eliz@gnu.org>
3401
3402 * startup.el (init-file-user): Doc fix.
3403
3404 2006-01-07 Alex Schroeder <alex@gnu.org>
3405
3406 * mail/rmail.el (rmail-current-subject): New function.
3407 (rmail-current-subject-regexp): New function.
3408 (rmail-next-same-subject): Use it.
3409
3410 * mail/rmailsum.el (rmail-summary-by-topic):
3411 Use rmail-current-subject and rmail-current-subject-regexp.
3412 (rmail-summary-next-same-subject): Ditto.
3413
3414 * net/rcirc.el (rcirc-send-input): No longer check whether the
3415 process is open, since not all commands need an open process.
3416 (rcirc-send-string): Check whether the process is open before
3417 sending anything.
3418 (rcirc-ignore-list): New option.
3419 (rcirc-ignore-list-automatic): New variable.
3420 (rcirc-print): Take rcirc-ignore-list into account.
3421 (rcirc-cmd-ignore): New command.
3422 (rcirc-ignore-update-automatic): New function.
3423 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
3424 list if ignored nicks.
3425 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
3426
3427 2006-01-06 David Reitter <david.reitter@gmail.com>
3428
3429 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
3430 reflect the address to which the report will be sent.
3431
3432 2006-01-06 Eli Zaretskii <eliz@gnu.org>
3433
3434 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
3435 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
3436
3437 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
3438
3439 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
3440
3441 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
3442 the doc string: "functoin" => "function".
3443 * ldefs-boot.el: Likewise.
3444
3445 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
3446 message text: "Duplicat" => "Duplicate".
3447
3448 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
3449
3450 * files.el (basic-save-buffer-2): If backing-up failed, reset
3451 buffer-backed-up to nil.
3452
3453 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
3454
3455 * progmodes/gud.el (gdb-script-skip-to-head)
3456 (gdb-script-calculate-indentation): Indent for breakpoint command
3457 lists also.
3458
3459 2006-01-05 Bill Wohler <wohler@newt.com>
3460
3461 * Makefile.in (compile-always): Add mh-autoloads dependency.
3462 (bootstrap): Remove mh-autoloads dependency, as compile dependency
3463 provides it.
3464 (updates): Remove mh-autoloads dependency, since it probably has
3465 already run recently (via recompile).
3466
3467 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
3468
3469 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
3470 argument `force' to disable the flyspell-last-buffer optimization.
3471 (flyspell-mode-on): Use it.
3472
3473 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
3474 flymake-simple-cleanup.
3475 (flymake-allowed-file-name-masks): Use this new default.
3476 All the functions are now called in the right buffer rather than
3477 passing the buffer as argument.
3478 (flymake-process-sentinel): Switch to buffer before calling cleanup.
3479 (flymake-parse-err-lines): Remove redundant buffer arg.
3480 (flymake-get-program-dir): Comment out unused function.
3481 (flymake-start-syntax-check, flymake-start-syntax-check-process):
3482 Remove redundant buffer argument.
3483 (flymake-get-real-file-name, flymake-simple-java-cleanup)
3484 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
3485
3486 2006-01-05 Richard M. Stallman <rms@gnu.org>
3487
3488 * info.el (Info-find-node): Don't record previous node if have none.
3489 (info): Go to directory only if history is empty.
3490
3491 * simple.el (mark): Doc fix.
3492
3493 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3494
3495 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
3496 already of desired type.
3497 (mac-ae-list): Coerce parameter to "list" type.
3498 (mac-dispatch-apple-event): Replace cadr part of event with a
3499 dummy position so that event-start returns it.
3500
3501 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
3502
3503 * textmodes/org.el (org-end-of-subtree): New function.
3504 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
3505 Use `org-end-of-subtree'.
3506 (org-agenda, org-agenda-convert-date): Protect calls to
3507 `fit-window-to-buffer'.
3508 (org-tags-view): Force matching of sublevels when doing a
3509 todo-only search. Define the correct redo command, including the
3510 arguments.
3511 (org-agenda-redo): Display message.
3512 (org-check-for-org-mode): New function.
3513 (org-agenda-type): New variable.
3514 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
3515 Set `org-agenda-type'.
3516 (org-agenda-check-type): New function.
3517 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
3518 (org-agenda-week-view, org-agenda-day-view)
3519 (org-agenda-next-date-line, org-agenda-previous-date-line)
3520 (org-agenda-log-mode, org-agenda-toggle-diary)
3521 (org-agenda-toggle-time-grid, org-agenda-date-later)
3522 (org-agenda-date-prompt, org-agenda-diary-entry)
3523 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
3524 (org-agenda-convert-date, org-agenda-menu):
3525 Use `org-agenda-check-type'.
3526 (org-make-overlay, org-delete-overlay)
3527 (org-detatch-overlay, org-move-overlay, org-overlay-put):
3528 New compatibility functions.
3529 (org-calendar-select-mouse): New command.
3530
3531 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
3532
3533 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
3534 (Custom-reset-standard): Fix y-or-n-p messages.
3535 (custom-link): New face for links.
3536 (custom-buffer-create-internal, custom-manual): Use it.
3537 (custom-face-save): Push to theme-face before setting face spec.
3538
3539 * wid-edit.el (widget-default-mouse-face-get): New function.
3540 (widget-specify-button): Handle mouse-face like button-face.
3541
3542 * custom.el (load-theme): Clear old theme settings if reloading.
3543
3544 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
3545
3546 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
3547 "Erase Customization" button back to same position it occupies in
3548 the individual State menus.
3549
3550 2006-01-04 Kim F. Storm <storm@cua.dk>
3551
3552 * wid-edit.el (key-sequence): Rework widget to read key binding
3553 using `kbd' syntax. Use C-q to insert literal key, event, or code.
3554 (widget-key-sequence-default-value): Default value for empty sequence.
3555 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
3556 (widget-key-sequence-read-event): New command for C-q.
3557 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
3558 (widget-key-sequence-value-to-external): New functions.
3559
3560 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
3561
3562 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
3563 Use expand-file-name.
3564 (flymake-delete-temp-directory): Use expand-file-name,
3565 file-name-directory, and directory-file-name.
3566 (flymake-strrchr): Delete.
3567 (flymake-start-syntax-check): Don't pass the redundant buffer argument
3568 to the init-f function.
3569 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
3570 (flymake-init-find-buildfile-dir)
3571 (flymake-init-create-temp-source-and-master-buffer-copy)
3572 (flymake-simple-make-init-impl, flymake-simple-make-init)
3573 (flymake-master-make-init, flymake-master-make-header-init)
3574 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
3575 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
3576 (flymake-xml-init): Remove corresponding redundant buffer argument.
3577 (flymake-allowed-file-name-masks): Remove last elems that are equal to
3578 the default anyway. Clean up regexps.
3579
3580 * progmodes/flymake.el (flymake-temp-source-file-name)
3581 (flymake-master-file-name, flymake-temp-master-file-name)
3582 (flymake-base-dir): New buffer-local vars.
3583 (flymake-buffer-data, flymake-get-buffer-value)
3584 (flymake-set-buffer-value): Replace those hash-tables by the new
3585 buffer-local vars. Update callers.
3586
3587 * progmodes/flymake.el (flymake-check-start-time)
3588 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
3589 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
3590 Move definition, so we can remove redundant earlier declaration.
3591 (flymake-replace-regexp-in-string, flymake-split-string)
3592 (flymake-get-temp-dir): Use defalias.
3593 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
3594 (flymake-xemacs-window-edges): Remove unused function.
3595 (flymake-get-point-pixel-pos): Move.
3596 (flymake-pid-to-names, flymake-reg-names)
3597 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
3598 Replace by a simple list flymake-processes and by process-buffer.
3599 Update callers. Other than simplify the code, it uses buffers rather
3600 than buffer-names so it doesn't get confused by uniquify.
3601 (flymake-buffer-data): The global value should just be nil.
3602
3603 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
3604 Optimize the body of a defalias like any other code.
3605
3606 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
3607 Make sure we've setup font-lock's vars. It may influence which
3608 function we then call.
3609 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
3610 here since it's too late anyway.
3611
3612 2006-01-03 Romain Francoise <romain@orebokech.com>
3613
3614 * startup.el (fancy-splash-tail, normal-splash-screen):
3615 Update copyright year.
3616
3617 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
3618
3619 * mouse.el (mouse-drag-track): Rename, from
3620 `mouse-drag-region-1'. Includes optional argument required to
3621 enable post-drag event processing (e.g. delete region keys).
3622 Can be used without this argument to track a mouse region and operate
3623 on it as soon as the drag completes.
3624 (mouse-drag-region): Use `mouse-drag-track'.
3625
3626 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
3627
3628 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
3629 Move to `custom-buffer' group.
3630
3631 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
3632 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
3633 (custom-theme-insert-face-marker, custom-theme-variable-menu)
3634 (custom-theme-face-menu): New variables.
3635 (custom-theme-add-variable, custom-theme-variable-action)
3636 (custom-variable-reset-theme, custom-theme-delete-variable)
3637 (custom-face-reset-theme, custom-theme-face-action)
3638 (custom-theme-delete-face, custom-theme-merge-theme)
3639 (custom-theme-add-face, custom-theme-visit-theme): New functions.
3640
3641 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
3642
3643 * custom.el: Move Custom Themes commentary to start of theme code.
3644 (custom-known-themes): Rename `standard' theme to `changed'.
3645 (custom-push-theme): Caller no longer specifies what theme to use
3646 when doing `reset'---the setting is simply removed from the theme.
3647 Delete MODE from `theme-value' and `theme-settings' properties.
3648 (custom-declare-theme): Ignore &rest args since we don't use them.
3649
3650 (custom-loaded-themes): Delete variable.
3651 (custom-theme-load-themes, custom-theme-loaded-p)
3652 (custom-theme-value): Delete functions.
3653
3654 (custom-declare-theme): Signal error on invalid theme names.
3655 (provide-theme): custom-loaded-themes was deleted.
3656 (load-theme): Load the file unconditionally.
3657 (enable-theme): Call `load-theme' if theme is undefined.
3658 (custom-enabled-themes): Only update value for successful loads.
3659 (disable-theme): Complete from enabled themes when interactive.
3660 (custom-variable-theme-value): Calculate theme value directly.
3661
3662 (custom-theme-reset-variables, custom-reset-variables): Mark as
3663 XEmacs compatibility functions. We don't actually use these.
3664
3665 * cus-edit.el (custom-variable-state-set):
3666 Use custom-variable-theme-value instead of custom-theme-value.
3667 (custom-face-state-set): Rename `standard' theme to `changed'.
3668 (custom-save-variables, custom-save-faces): Delete unneeded
3669 references to custom-reset-variables.
3670 (custom-save-resets): Delete function.
3671 (custom-save-variables, custom-save-faces): MODE argument deleted.
3672 (custom-save-variables, custom-save-faces): Ignore theme values.
3673
3674 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
3675 compatibility function.
3676
3677 2006-01-01 Richard M. Stallman <rms@gnu.org>
3678
3679 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
3680 (Custom-reset-current, Custom-reset-saved): Likewise.
3681 (Custom-reset-standard): Show message if aborted.
3682 (custom-mode): Doc fix, describing those commands.
3683
3684 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
3685 put on event-kind property.
3686
3687 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
3688
3689 * custom.el (provide-theme): Ban `user' theme name.
3690 (custom-enabling-themes): New variable.
3691 (enable-theme): Don't enable user if custom-enabling-themes is t.
3692 (custom-enabled-themes): Make it a defcustom.
3693 (custom-theme-recalc-face): No-op if face is undefined.
3694
3695 * cus-edit.el (custom-button-mouse): New variable.
3696 (custom-button-mouse): New face.
3697 (custom-raised-buttons, custom-mode): Use it.
3698
3699 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
3700
3701 2005-12-31 Eli Zaretskii <eliz@gnu.org>
3702
3703 * progmodes/gud.el (gud-display-line): Support hl-line in the
3704 source buffer.
3705
3706 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
3707
3708 * mouse.el (mouse-drag-window-above): Verify that the found window
3709 overlaps with the given window in the horizontal dimension.
3710
3711 2005-12-31 Eli Zaretskii <eliz@gnu.org>
3712
3713 * Makefile.in (cvs-update): New target.
3714
3715 * makefile.w32-in (cvs-update): Ditto.
3716
3717 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
3718
3719 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
3720 (custom-new-theme-mode-map): New variable.
3721
3722 2005-12-30 Richard M. Stallman <rms@gnu.org>
3723
3724 * custom.el (custom-load-themes): Function deleted.
3725
3726 * cus-edit.el (custom-save-loaded-themes): Function deleted.
3727 (custom-save-variables): Don't delete or add custom-load-themes call.
3728
3729 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
3730
3731 * cus-start.el: Add `visible-cursor'.
3732
3733 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
3734 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
3735 (flymake-process-filter): Switch to buffer before calling it instead.
3736 (flymake-post-syntax-check, flymake-highlight-err-lines)
3737 (flymake-delete-own-overlays, flymake-parse-err-lines)
3738 (flymake-start-syntax-check, flymake-start-syntax-check-process)
3739 (flymake-count-lines, flymake-parse-residual):
3740 Remove constant buffer argument.
3741 (flymake-start-syntax-check-for-current-buffer): Remove.
3742 Update callers to use flymake-start-syntax-check instead.
3743 (flymake-display-err-menu-for-current-line):
3744 Remove unused var `mouse-pos'.
3745 (flymake-restore-formatting): Comment out unused function.
3746 (flymake-report-status, flymake-report-fatal-status): Remove buffer
3747 argument, use current-buffer instead. Update callers.
3748
3749 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3750
3751 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
3752 buffer-local because choose-completion-delete-max-match requires
3753 that we set completion-ignore-case (i.e., binding via let is not
3754 sufficient).
3755 (bibtex-complete): Always set completion-ignore-case and
3756 choose-completion-string-functions. The latter is needed because
3757 choose-completion-string-functions keeps its value if we quit the
3758 *Completions* buffer without requesting a completion.
3759
3760 2005-12-30 Andreas Schwab <schwab@suse.de>
3761
3762 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
3763
3764 2005-12-30 Eli Zaretskii <eliz@gnu.org>
3765
3766 * jit-lock.el (jit-lock-chunk-size): Doc fix.
3767
3768 2005-12-30 Juri Linkov <juri@jurta.org>
3769
3770 * locate.el (locate-fcodes-file, locate-header-face)
3771 * progmodes/delphi.el (delphi-other-face)
3772 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
3773
3774 * paren.el (show-paren-match, show-paren-mismatch): Use existing
3775 group `paren-showing-faces'.
3776
3777 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
3778 (goto-address): Fix docstring.
3779
3780 * net/webjump.el (webjump-sample-sites): Update URLs.
3781
3782 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
3783
3784 * subr.el (cancel-change-group): Add listp around pending-undo-list.
3785
3786 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
3787
3788 * font-lock.el (font-lock-compile-keywords): Signal an error when
3789 font-lock-set-defaults hasn't been called.
3790
3791 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
3792
3793 * subr.el (noreturn, 1value): Doc fixes.
3794
3795 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3796
3797 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
3798 that assoc-string returns nil.
3799
3800 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3801
3802 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
3803 (bibtex-entry-type-str, bibtex-empty-field-re)
3804 (bibtex-search-backward-string, bibtex-preamble-prefix)
3805 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
3806 (bibtex-any-valid-entry-type): New variable.
3807 (bibtex-parse-field-name): Simplify.
3808 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
3809 (bibtex-preamble-prefix): Include left delimiter.
3810 (bibtex-search-forward-field, bibtex-search-backward-field):
3811 Allow unbounded search past entry boundaries (required by bibtex-pop).
3812 (bibtex-text-in-field-bounds): Use push.
3813 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
3814 (bibtex-parse-preamble, bibtex-valid-entry)
3815 (bibtex-beginning-first-field): New functions.
3816 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
3817 (bibtex-map-entries): Fix docstring.
3818 (bibtex-flash-head): New arg prompt. Simplify.
3819 (bibtex-enclosing-field): Include code of bibtex-inside-field.
3820 (bibtex-insert-kill): Simplify. Always insert text past the
3821 current field or entry.
3822 (bibtex-format-entry): Use bibtex-parse-field.
3823 (bibtex-pop): Use bibtex-beginning-of-entry and
3824 bibtex-end-of-entry to initiate the search. Insert empty field if
3825 we found ourselves.
3826 (bibtex-print-help-message): New args field and comma.
3827 Handle entry keys.
3828 (bibtex-make-field): Use bibtex-beginning-of-entry.
3829 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
3830 invalid entry.
3831 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
3832 Handle preambles. Simplify code for thorough test.
3833 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
3834 New arg comma. Handle entry heads.
3835 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
3836 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
3837 New arg comma.
3838 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
3839 (bibtex-fill-field): Simplify.
3840 (bibtex-fill-entry): Use bibtex-beginning-first-field and
3841 bibtex-parse-field.
3842 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
3843 (bibtex-complete): Use bibtex-parse-preamble.
3844
3845 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
3846
3847 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
3848 Display name of expression instead of convenience variable.
3849 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
3850
3851 * progmodes/gud.el (gud-tooltip-dereference): Rename from
3852 toggle-gud-tooltip-dereference.
3853 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
3854 (gud-tooltip-tips): ...here when dereferencing.
3855
3856 2005-12-28 Bill Wohler <wohler@newt.com>
3857
3858 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
3859
3860 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
3861
3862 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
3863 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
3864 (vc-annotate-display-autoscale): Adjust call.
3865 (vc-annotate-display-default): Adjust call. Make arg compulsory.
3866 Fix interactive spec.
3867 (vc-annotate-time-span): Remove.
3868 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
3869 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
3870 (vc-annotate-display-select): Use new name.
3871
3872 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
3873 (vc-annotate-mode-menu): Remove left-over redundant declaration.
3874 Correct the construction of span entries. Simplify.
3875 (vc-annotate-display-select): Fix the nil case.
3876 (vc-annotate): Remove obsolete (and now broken) code.
3877 (vc-annotate-extract-revision-at-line): Remove obsolete code.
3878 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
3879
3880 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
3881
3882 * subr.el (lazy-completion-table): Correct typo in docstring.
3883
3884 * startup.el (command-line): Use `custom-reevaluate-setting' for
3885 `send-mail-function'.
3886
3887 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
3888
3889 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
3890
3891 * mail/smtpmail.el (smtpmail-try-auth-methods):
3892 Send credentials together with "AUTH PLAIN" command.
3893
3894 2005-12-27 Richard M. Stallman <rms@gnu.org>
3895
3896 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
3897 mouse-2, go back to previously selected window, so it's selected
3898 when mouse-2 command runs.
3899
3900 2005-12-27 Juri Linkov <juri@jurta.org>
3901
3902 * descr-text.el (describe-text-sexp): Use square brackets for
3903 button [Show] to distinguish it from the property value `show'.
3904 (describe-property-list): Use `insert-text-button' with
3905 `help-face' type instead of putting face in quotes, because button
3906 is not created automatically for a list of faces.
3907 (describe-text-properties-1): Put button-type value in quotes to
3908 distinguish from plain text "button".
3909 (describe-char): Display code point values in hex. Don't use
3910 `symbol-name' for `current-input-method' because it is a string.
3911 Use `insert-text-button' with `help-face' type instead of putting
3912 hardcoded face in quotes, because button is not created automatically.
3913
3914 2005-12-27 Richard M. Stallman <rms@gnu.org>
3915
3916 * progmodes/glasses.el (glasses-face): More specific custom type.
3917
3918 * files.el (set-visited-file-name): Doc fix.
3919
3920 * textmodes/flyspell.el (flyspell-external-point-words):
3921 Use local var buffer-scan-pos to advance scan for next misspelling.
3922 Advance it only after we find the misspelling.
3923
3924 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
3925
3926 * textmodes/flyspell.el (flyspell-external-point-words):
3927 New criteria for finding the misspelling in the buffer.
3928
3929 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
3930
3931 * help-mode.el (help-insert-string): Set help-xref-stack-item
3932 rather than call help-setup-xref.
3933
3934 * descr-text.el (describe-char): Revert previous changes for
3935 optional buffer argument.
3936
3937 2005-12-27 Juri Linkov <juri@jurta.org>
3938
3939 * help-mode.el (help-insert-string): New function. Save buffer
3940 contents in cases where it is impossible to recompute the old contents.
3941
3942 * descr-text.el (describe-char): Set help-xref-stack-item
3943 explicitly after buffer has been generated.
3944
3945 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3946
3947 * cus-start.el (all): Add x-gtk-show-hidden-files.
3948
3949 2005-12-26 Richard M. Stallman <rms@gnu.org>
3950
3951 * replace.el (perform-replace): Calculate match-again
3952 before skipping read-only matches.
3953
3954 * paren.el (paren-showing-faces): New group.
3955 (show-paren-match, show-paren-mismatch): Move to that group.
3956
3957 * button.el (button): Put into group `basic-faces'.
3958
3959 * progmodes/make-mode.el: Remove faces from group `faces'.
3960
3961 * apropos.el (apropos, apropos-value): Doc fix.
3962 (apropos-documentation): Doc fix.
3963
3964 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
3965
3966 * subr.el (lazy-completion-table): Remove argument `args'.
3967
3968 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
3969 Don't use the `args' argument of lazy-completion-table.
3970
3971 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
3972
3973 * descr-text.el (describe-char): Add optional argument for buffer.
3974 Set buffer appropriately. Call help-setup-xref.
3975 Suggested by Stefan Monnier.
3976
3977 2005-12-26 Juri Linkov <juri@jurta.org>
3978
3979 * descr-text.el: Require `help-fns' at runtime. Don't require
3980 `button' for byte compilation.
3981 (describe-text-widget): Add `help-echo' for first button.
3982 Use `help-info' for second.
3983 (describe-property-list): Use `help-argument-name' instead of `italic'.
3984 (describe-text-category): Add prompt to interactive spec.
3985 Call `help-setup-xref'.
3986 (describe-char): Use `help-character-set'. Add `help-echo' for
3987 code point. Use `help-input-method'. Remove superfluous insert.
3988
3989 2005-12-25 Richard M. Stallman <rms@gnu.org>
3990
3991 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
3992 at point, in case of narrowing.
3993
3994 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
3995
3996 * locate.el (locate-header-face): Allow nil in type.
3997
3998 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
3999
4000 2005-12-25 Romain Francoise <romain@orebokech.com>
4001
4002 * battery.el (battery-linux-proc-acpi): Also try
4003 `/proc/acpi/thermal_zone/THM0/temperature'.
4004
4005 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
4006
4007 * custom.el (custom-push-theme): Fix docstring.
4008
4009 * cus-edit.el (custom-variable-set, custom-variable-save)
4010 (custom-variable-save): Custom-quote widget values.
4011 (customize-save-variable): Fix custom-push-theme call.
4012
4013 2005-12-24 Eli Zaretskii <eliz@gnu.org>
4014
4015 * w32-fns.el (w32-batch-update-autoloads): New function.
4016
4017 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
4018 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
4019 from the command line.
4020
4021 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
4022
4023 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
4024 reset means to remove setting from theme entirely. Don't keep
4025 expanding theme-settings list; delete old entries if necessary.
4026
4027 * cus-edit.el (custom-buffer-create-internal): Move "Erase
4028 customization" button one line up.
4029 (custom-themed): New face.
4030 (custom-magic-alist): New value, THEMED, for theme settings.
4031 (custom-variable-state-set, custom-face-state-set):
4032 Check theme-value instead of saved-value.
4033 (custom-variable-reset-standard, custom-face-reset-standard):
4034 Remove theme setting entirely. Recalculate new values.
4035 (custom-variable-set, custom-variable-set)
4036 (custom-variable-reset-saved, custom-variable-reset-backup)
4037 (custom-face-set, custom-face-reset-saved): Update `user' theme.
4038 (custom-variable-save): Fix typos.
4039
4040 2005-12-23 Juri Linkov <juri@jurta.org>
4041
4042 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
4043 Add autoload cookies.
4044 (edebug-outside-d-c-i-n-s-w): New variable.
4045 (edebug-display, edebug-outside-excursion): Use it to save the
4046 original value of default-cursor-in-non-selected-windows.
4047 Set default-cursor-in-non-selected-windows to t while Edebug
4048 is active.
4049 (edebug-mode, edebug-eval-mode): Doc fix.
4050
4051 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
4052 with `buffer-substring-no-properties' to remove common substring
4053 highlighting.
4054
4055 * info.el (info-other-window, info): Rename function argument
4056 `file' to `file-or-node'.
4057 (Info-complete-menu-item): Use local variable `complete-nodes' to
4058 keep the global value of `Info-complete-nodes' unchanged for
4059 subsequent completions.
4060 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
4061
4062 * simple.el (get-next-valid-buffer, last-buffer)
4063 (next-error-buffer-p, next-error-find-buffer)
4064 (minibuffer-history-sexp-flag): Doc fix.
4065
4066 * savehist.el (savehist-mode-hook): Add `:group'.
4067
4068 * log-view.el: Call autoload for vc-find-version.
4069 (log-view-current-file): Adjust subgroup numbers.
4070 (log-view-current-tag): Add `length'.
4071
4072 2005-12-23 Richard M. Stallman <rms@gnu.org>
4073
4074 * vc.el (vc-annotate-car-last-cons): Defn moved up.
4075
4076 2005-12-23 Juri Linkov <juri@jurta.org>
4077
4078 * hi-lock.el (hi-lock-archaic-interface-message-used)
4079 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
4080 (hi-lock-mode): Display "Hi" in the mode line only when
4081 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
4082 (hi-lock-write-interactive-patterns):
4083 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
4084 (hi-lock-set-pattern, hi-lock-set-file-patterns)
4085 (hi-lock-font-lock-hook): Set 3rd arg `how' of
4086 font-lock-add-keywords to t.
4087
4088 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
4089
4090 * hi-lock.el (hi-lock-highlight-range): New variable.
4091 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
4092 only if font-lock-fontified is non-nil. Remove overlays.
4093 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
4094 font-lock-fontified is non-nil, otherwise use overlays (instead of
4095 text properties).
4096 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
4097 New variables.
4098 (hi-lock-string-serialize) New function.
4099
4100 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4101
4102 * menu-bar.el (menu-find-file-existing): New function.
4103 (menu-bar-file-menu): Use menu-find-file-existing for Open.
4104
4105 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
4106
4107 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
4108
4109 * vc.el: Remove unnecessary leading * in docstrings.
4110 (vc-annotate-mode-map): Move initialization into declaration.
4111 (vc-static-header-alist): Nitpick on the regexp.
4112 (vc-default-init-version): New fun.
4113 (vc-register): Use it.
4114 (vc-insert-headers): Use dolist.
4115 (vc-annotate-get-backend): Remove unused function.
4116 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
4117 (vc-annotate-mode): Remove corresponding call.
4118 (vc-annotate-car-last-cons): Simplify.
4119 (vc-annotate-buffers): Remove var.
4120 (vc-annotate-backend): Make it buffer-local.
4121 (vc-annotate): Move the interaction to the interactive spec.
4122 Add a `buf' argument.
4123 (vc-annotate-warp-version): Use this new `buf' argument to avoid
4124 killing&creating a vc-annotate buffer, which is very disruptive when
4125 the buffers are shown in dedicated frames.
4126
4127 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
4128
4129 * descr-text.el: Add FSF as maintainer.
4130 (describe-text-mode, describe-text-mode-map)
4131 (describe-text-mode-hook, describe-text-done): Delete. Use normal
4132 help-mode.
4133 (describe-text-widget, describe-text-sexp)
4134 (describe-property-list, describe-text-category)
4135 (describe-text-properties, describe-text-properties-1)
4136 (describe-char): Use help buttons instead of widgets.
4137 (describe-char-unicodedata-file): Make URL link in doc string.
4138
4139 2005-12-22 Richard M. Stallman <rms@gnu.org>
4140
4141 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
4142 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
4143 Don't include buttons that write a file when there's no file.
4144 (custom-variable-menu, custom-face-menu, custom-group-menu):
4145 Don't include commands that write a file when there's no file.
4146 (customize-browse): Reword the top-of-buffer help intro.
4147 (custom-buffer-create-internal): Fix previous change.
4148 (customize-changed-options-previous-release): Prev release is 21.1.
4149 (customize-changed-options): Doc fix.
4150 (customize-changed): New alias.
4151 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
4152 Say "standard values".
4153 (Custom-reset-standard): Doc fix.
4154 (custom-face-reset-standard): Doc fix.
4155
4156 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
4157
4158 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
4159 even if font-lock-mode is non-nil since it may be t without having
4160 turned on font-lock-mode-internal.
4161 (font-lock-choose-keywords): Minor optimization.
4162 (font-lock-add-keywords, font-lock-remove-keywords)
4163 (font-lock-set-defaults): Don't call make-local-variable on a variable
4164 that we know to already be local.
4165
4166 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
4167
4168 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
4169 messages if in the minibuffer.
4170
4171 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
4174 (tex-mode-flyspell-verify, flyspell-get-word)
4175 (flyspell-external-point-words): Don't use point-min/max uselessly.
4176
4177 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
4178 by Kevin Rodgers. Instead, just hide the completions buffer if we
4179 don't need to show it.
4180
4181 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
4182
4183 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
4184
4185 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
4186
4187 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
4188 delete-windows-on with an inexistent buffer.
4189
4190 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
4191
4192 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
4193 Delete defcustom variable :tag names.
4194
4195 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
4198 (log-view-font-lock-keywords): Ajust subgroup numbers.
4199 (log-view-current-tag): Don't hard code the number of subgroups.
4200
4201 2005-12-20 Juri Linkov <juri@jurta.org>
4202
4203 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
4204 (tooltip-x-offset, tooltip-y-offset): Doc fix.
4205
4206 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
4207 (menu-bar-non-minibuffer-window-p): Instead of checking
4208 display-multi-frame-p, use selected-frame when menu-updating-frame
4209 is nil.
4210
4211 2005-12-20 Davis Herring <herring@lanl.gov> (tiny change)
4212
4213 * align.el (align-rules-list): Use [ \t] instead of \s-
4214 for column separators in text mode.
4215
4216 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
4217
4218 * help-mode.el (help-customize-variable, help-customize-face):
4219 Don't pop help-xref-stack as help-follow no longer pushes
4220 anything on to it.
4221
4222 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
4223
4224 * textmodes/org.el (org-agenda-custom-commands): New option.
4225 (org-agenda): Offer custom commands on splash screen.
4226 (org-make-tags-matcher): Parser for Boolean logic added.
4227 (org-agenda-set-tags): New command.
4228 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
4229 (org-set-tags): Efficiency improvements.
4230 (org-auto-align-tags): New option.
4231 (org-todo, org-demote, org-promote): Realign tags.
4232 (org-tags-completion-function): Use also "&" and "|" as separators.
4233 (org-org-menu): Agenda commands simplified.
4234
4235 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
4236
4237 * cus-edit.el (customize-apropos, customize-apropos-options):
4238 Docstring changes.
4239
4240 * font-lock.el (font-lock): Add tags to the links in the defgroup.
4241
4242 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
4243
4244 * longlines.el (longlines-mode): Wrap while widened.
4245 (longlines-decode-region, longlines-encode-region): Compute max
4246 just once.
4247
4248 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4249
4250 * cus-edit.el (mac): New group.
4251
4252 * cus-start.el (all): Add user options in macterm.c. Add test for
4253 Mac-related built-ins. Fix test for GTK-related built-ins.
4254
4255 * term/mac-win.el (mac-handle-language-change)
4256 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
4257 (mac-services-open-selection, mac-services-mail-selection)
4258 (mac-services-mail-to, mac-services-insert-text)
4259 (mac-dispatch-apple-event): Add docstrings.
4260 (x-get-selection, mac-select-convert-to-string): Select coding
4261 system from `utf-16be' and `utf-16le' using `byteorder'.
4262
4263 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * subr.el (lazy-completion-table): Don't be fooled if the var holds
4266 a "list" (lambda ...) rather than a real completion list.
4267
4268 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
4269 lexical-let when encountering ((lambda (...) ...) ...).
4270
4271 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
4272
4273 * progmodes/sh-script.el (sh-mode):
4274 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
4275 * textmodes/picture.el (picture-mode): Update docstrings.
4276
4277 2005-12-17 Eli Zaretskii <eliz@gnu.org>
4278
4279 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
4280 commands enclosed in $(ARGQUOTE)s should not be split between two
4281 lines, as that will break with GNU Make >3.80, when sh.exe is used
4282 and arg quoting is with '..'.
4283 (autoloads): Don't break the quoted --eval expression between
4284 several lines.
4285
4286 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
4287
4288 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
4289 Capture error from printing circular structures.
4290
4291 2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change)
4292
4293 * wid-edit.el (widget-checkbox-action): Clear undo info.
4294
4295 2005-12-16 Bill Wohler <wohler@newt.com>
4296
4297 * menu-bar.el (kill-this-buffer): Set a good example by using menu
4298 bar, not menubar in comment.
4299
4300 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
4301
4302 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
4303 After-change-functions should not clobber the match data.
4304
4305 2005-12-16 Juri Linkov <juri@jurta.org>
4306
4307 * simple.el (choose-completion): Use `buffer-substring-no-properties'
4308 instead of `buffer-substring'.
4309 (completion-common-substring): Doc fix.
4310 (completion-setup-function): Use minibuffer-completion-contents
4311 instead of minibuffer-contents. Don't set common-string-length
4312 initially. Remove special handling of partial-completion-mode.
4313 Move computation of completion-base-size into one cond.
4314 Call completion-base-size-function in mainbuf. In computation of
4315 completion-base-size for file name completion don't move point to
4316 the end of the minibuffer. Move computation of common-string-length
4317 into one cond. Start putting faces only when common-string-length>=0.
4318 Add condition to put completions-common-part when
4319 common-string-length>0.
4320
4321 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
4322 place point at the first different character in the minibuffer
4323 even if this position is at the beginning of the minibuffer.
4324
4325 * info.el (Info-read-node-name-1): In completion-base-size-function's
4326 lambda return 1 if common-substring or minibuffer-completion-contents
4327 starts with (, and 0 otherwise.
4328
4329 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
4330 Use `crm-current-element' for second arg of `display-completion-list'.
4331
4332 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
4333
4334 * files.el (set-auto-mode): Look for an interpreter specified on
4335 the first line also if search for mode specification succeeded,
4336 but the mode is not known.
4337
4338 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
4339
4340 * textmodes/org.el (org-tags-match-list-sublevels): New option.
4341 (org-open-at-point): Implement tag searches as links.
4342 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
4343 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
4344 (org-tags-sparse-tree, org-tags-view, org-set-tags)
4345 (org-agenda-dispatch): New commands.
4346 (org-use-tag-inheritance, org-tags-column): New options.
4347 (org-tab-follows-link, org-return-follows-link): New options.
4348 (org-tags): New customize group.
4349 (org-start-icalendar-file): Get local time zone.
4350 (org-tags-completion-function): New function.
4351 (org-set-font-lock-defaults): Make sure links will also be
4352 highlighted inside headlines.
4353
4354 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
4355
4356 * term.el (term-emulate-terminal):
4357 Let term-handle-ansi-terminal-messages override what Bash says about
4358 its current directory.
4359
4360 2005-12-16 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
4361
4362 * bindings.el (last-buffer): Move to simple.el.
4363 * simple.el (last-buffer): Move here.
4364 (get-next-valid-buffer): New function.
4365 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
4366 (prev-buffer): Ditto. Rename to `previous-buffer'.
4367
4368 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
4369 * bindings.el (global-map): Ditto.
4370
4371 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
4372
4373 * cus-edit.el: Introductory comment change.
4374 (custom-magic-alist): Change message string for the `rogue' state.
4375
4376 2005-12-15 Richard M. Stallman <rms@gnu.org>
4377
4378 * tooltip.el: Delete defcustom variable :tag names.
4379
4380 * complete.el (partial-completion-mode): Doc fix.
4381
4382 * textmodes/flyspell.el (flyspell-external-point-words):
4383 Use save-excursion to ensure we don't move backward in the
4384 search loop, not even one character.
4385 (flyspell-delete-all-overlays): Use remove-overlays directly.
4386
4387 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
4388 (ispell-start-process): Set that variable.
4389 Clear ispell-buffer-local-name.
4390 (ispell-internal-change-dictionary):
4391 Set ispell-current-dictionary after killing process.
4392 (ispell-buffer-local-dict):
4393 Don't set spell-personal-dictionary after killing process.
4394 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
4395 (ispell-tex-skip-alists, ispell-html-skip-alists)
4396 (ispell-skip-region-alist): Mark as risky.
4397
4398 * net/newsticker.el (newsticker--retrieval-timer-list)
4399 (newsticker--display-timer, newsticker-running-p)
4400 (newsticker-ticker-running-p): Definitions moved up.
4401
4402 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
4403
4404 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
4405
4406 2005-12-15 David Ponce <david@dponce.com>
4407
4408 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
4409 (recentf-edit-list, recentf-open-files): Signal an error when
4410 there is no recent file.
4411
4412 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
4413
4414 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
4415 read-only except for texinfo-format-region evaluation.
4416
4417 2005-12-14 Richard M. Stallman <rms@gnu.org>
4418
4419 * vc.el (vc-default-previous-version, vc-default-next-version)
4420 (vc-do-command): Doc fixes.
4421
4422 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4423
4424 * textmodes/bibtex.el (bibtex-expand-strings)
4425 (bibtex-autokey-expand-string, bibtex-name-part)
4426 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
4427 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
4428 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
4429 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
4430 (bibtex-entry-postfix, bibtex-known-entry-type-re)
4431 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
4432 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
4433 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
4434 (bibtex-beginning-of-last-entry): Remove.
4435 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
4436 message if comma is missing but buffer is read-only.
4437 (bibtex-parse-field-text): Handle whitespaces at the end of field
4438 text. Return 3-element list with beginning and end of field text
4439 and end of field.
4440 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
4441 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
4442 (bibtex-search-forward-field, bibtex-search-backward-field):
4443 Search always delimited by limits of entry. Use more efficient
4444 search algorithms.
4445 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
4446 bibtex-end-of-name-in-field.
4447 (bibtex-text-in-field-bounds): Handle BibTeX strings when
4448 extracting the content of a field.
4449 (bibtex-text-in-field): Use search limits.
4450 (bibtex-parse-string-prefix): Handle empty string keys based on
4451 bibtex-string-empty-key.
4452 (bibtex-parse-string): Fix docstring.
4453 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
4454 (bibtex-preamble-prefix, bibtex-strings): New functions.
4455 (bibtex-skip-to-valid-entry): Include preceding whitespace in
4456 BibTeX entries (consistent with other BibTeX functions).
4457 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
4458 (bibtex-search-entry): Fix docstring. Simplify.
4459 (bibtex-flash-head, bibtex-complete-string-cleanup)
4460 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
4461 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
4462 (bibtex-parse-entry): New optional arg content.
4463 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
4464 Use bibtex-text-in-field-bounds.
4465 (bibtex-print-help-message): Handle BibTeX strings and preambles.
4466 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
4467 bibtex-parse-string-postfix.
4468 (bibtex-find-text-internal): New function.
4469 (bibtex-remove-delimiters): Use it.
4470 (bibtex-find-text): Use it. New optional arg help.
4471 (bibtex-complete): Handle BibTeX string and preamble entries.
4472 (bibtex-Preamble): Fix order of closing delimiters.
4473
4474 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
4475
4476 * vc.el (vc-default-revert): New fun.
4477
4478 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
4479
4480 2005-12-14 Romain Francoise <romain@orebokech.com>
4481
4482 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
4483 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
4484 (font-lock-remove-keywords): Likewise.
4485
4486 2005-12-14 Juri Linkov <juri@jurta.org>
4487
4488 * log-view.el (log-view-diff): Doc fix.
4489
4490 * isearch.el (isearch-query-replace): Use (mark) instead of
4491 isearch-opoint if mark is active in transient-mark-mode.
4492
4493 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
4494
4495 * isearch.el (isearch-query-replace): Check for isearch-other-end.
4496
4497 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
4498
4499 * progmodes/cpp.el (cpp-face): New widget.
4500 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
4501
4502 2005-12-14 Juri Linkov <juri@jurta.org>
4503
4504 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
4505 around `erase-buffer' and `insert'.
4506
4507 * descr-text.el (describe-text-properties): Replace buffer name
4508 "*Help-2*" with "*Help*<2>".
4509 (describe-char): Add functions print-help-return-message,
4510 toggle-read-only. Use help-setup-xref with nil to not store
4511 describe-char in help-xref-stack. Use help-make-xrefs to
4512 make [back] button.
4513
4514 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
4515
4516 * wdired.el (wdired-old-point): New internal variable.
4517 (wdired-change-to-wdired-mode): Set it buffer-locally.
4518 (wdired-abort-changes): Restore point after aborting changes.
4519
4520 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
4521
4522 * vc.el (vc-do-command): Add a new value t for okstatus.
4523
4524 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
4525 frame in case of errors.
4526
4527 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4528
4529 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
4530 so it comes after "On the Left" in the menu.
4531
4532 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
4533
4534 * cus-edit.el (customize-apropos, customize-apropos-options)
4535 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
4536
4537 2005-12-12 Bill Wohler <wohler@newt.com>
4538
4539 * vc-svn.el (vc-svn-registered): Fix problem of visiting
4540 non-writable Subversion-controlled files by saving window
4541 configuration before calling vc-do-command. vc-do-command calls
4542 pop-to-buffer on error which is unexpected during registration.
4543
4544 2005-12-12 Jay Belanger <belanger@truman.edu>
4545
4546 * calc/README: Update the summary of changes.
4547
4548 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
4549
4550 * descr-text.el (describe-char): Rework last fix to solve the problem
4551 is the same way it's solved for everything else in that function
4552 (i.e. by extracting the info before setting up the *Help* buffer).
4553
4554 2005-12-12 Kim F. Storm <storm@cua.dk>
4555
4556 * subr.el (version-regexp-alist): Allow space as separator before
4557 non-numeric part, e.g. "1.0 alpha".
4558 (version-to-list): Interpret .X.Y version as 0.X.Y version.
4559
4560 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
4561
4562 * textmodes/org.el (org-agenda, org-timeline, org-todo):
4563 Implement Logging and the keep-modes setting.
4564 (org-get-category): Make sure a string is returned.
4565 (org-log-done): New function.
4566 (org-log-done, org-closed-string): New options.
4567
4568 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4569
4570 * tooltip.el (tooltip-y-offset): Change default to 20.
4571
4572 2005-12-12 Richard M. Stallman <rms@gnu.org>
4573
4574 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
4575
4576 * frame.el (display-hourglass): Doc fix.
4577
4578 * help.el (help-for-help-internal): Simplify entry for `a'.
4579
4580 * info.el (Info-on-current-buffer): Doc fix.
4581 (info-insert-file-contents): Don't test (featurep 'jka-compr).
4582
4583 * startup.el (inhibit-splash-screen): Make this the real name.
4584 (inhibit-startup-message): Make this the alias.
4585 (command-line): Find only simple.el, and use its directory
4586 to fill in other preloaded files' names.
4587 (command-line): Deactivate the mark if deactivate-mark is set.
4588
4589 * international/mule.el (load-with-code-conversion):
4590 Bind deactivate-mark.
4591
4592 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
4593
4594 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
4595
4596 * cus-edit.el (customize-apropos): Avoid listing an option more
4597 than once under different aliases. No longer list user options
4598 that are not defined with defcustom (unless a prefix arg is given).
4599 Doc fix.
4600 (customize-apropos-options): Doc fix.
4601
4602 2005-12-11 Juri Linkov <juri@jurta.org>
4603
4604 * frame.el (set-background-color, set-foreground-color)
4605 (set-cursor-color, set-mouse-color, set-border-color):
4606 Add explicit prompts to read colors by `facemenu-read-color'.
4607 (show-trailing-whitespace, blink-cursor-delay)
4608 (blink-cursor-interval, display-hourglass, hourglass-delay):
4609 Remove tags.
4610 (display-hourglass, hourglass-delay): Doc fix.
4611 (cursor-in-non-selected-windows): Capitalize words in tag.
4612
4613 * faces.el (frame-background-mode): Replace `choice-item' keywords
4614 with `const' to not make [default] button. Change default value tag
4615 from `default' to `automatic'. Doc fix.
4616 (trailing-whitespace) <defface>: Change group `whitespace' to
4617 `whitespace-faces'.
4618
4619 2005-12-11 Richard M. Stallman <rms@gnu.org>
4620
4621 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
4622
4623 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4624
4625 * term/mac-win.el: Create keymap for mac-apple-event-map.
4626
4627 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
4628
4629 * tooltip.el (tooltip-mode): Move to start of file so that it
4630 appears at top of customize buffer.
4631
4632 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
4633 Add the gud groupname.
4634 (gud-tooltip-mode): Add the tooltip groupname.
4635 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
4636 avoid conflict with tooltip-use-echo-area.
4637
4638 2005-12-10 Romain Francoise <romain@orebokech.com>
4639
4640 * help.el (help-for-help-internal): Add `r' in doc string.
4641
4642 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
4643
4644 * align.el (align-regexp, align-highlight-rule):
4645 Use region-beginning and region-end instead of point and mark, so that
4646 repetition (with `repeat-complex-command') recomputes the region
4647 bounds.
4648
4649 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
4650
4651 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
4652 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
4653 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
4654 (balance-windows): Rewrite using the above new functions.
4655
4656 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
4657
4658 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
4659 react if global-hi-lock-mode seems intended.
4660 (global-hi-lock-mode) Renamed from hi-lock-mode.
4661 (hi-lock-archaic-interface-message-used)
4662 (hi-lock-archaic-interface-deduce): New variables.
4663 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
4664 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
4665 (hi-lock-find-patterns, hi-lock-font-lock-hook):
4666 Replace hi-lock-buffer-mode with hi-lock-mode.
4667
4668 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
4669
4670 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
4671 completion list, even after a partial completion has been
4672 inserted in the current buffer. If there are more than 1
4673 completion, redisplay the *Completions* buffer; if the
4674 completion is unique, delete the *Completions* window.
4675
4676 2005-12-10 Eli Zaretskii <eliz@gnu.org>
4677
4678 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
4679 strings and long subject lines that were broken into multiple
4680 lines at arbitrary places. Handle subjects that have "Re: " in
4681 the middle.
4682
4683 2005-12-10 John W. Eaton <jwe@octave.org>
4684
4685 * emacs/octave-mod.el (octave-electric-space): Don't indent
4686 comments or strings if octave-auto-indent is nil.
4687
4688 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4689
4690 * term/mac-win.el: Require url when compiling.
4691 Call mac-process-deferred-apple-events after loading init files.
4692 (mac-apple-event-map): New defvar. Define event handlers in it.
4693 (core-event, internet-event): New Apple event class symbols.
4694 (open-application, reopen-application, open-documents)
4695 (print-documents, open-contents, quit-application)
4696 (application-died, show-preferences, autosave-now, get-url):
4697 New Apple event ID symbols.
4698 (about): New HICommand ID symbol.
4699 (mac-event-spec, mac-event-ae): New macros.
4700 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
4701 (mac-ae-selection-range, mac-ae-text-for-search)
4702 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
4703 (mac-application-menu-map): Remove keymap. Handlers for HICommand
4704 and Services menu events are now defined in mac-apple-event-map.
4705 (mac-drag-n-drop): Remove selection range handling.
4706
4707 2005-12-10 Kenichi Handa <handa@m17n.org>
4708
4709 * simple.el (zap-to-char):
4710 * isearch.el (isearch-process-search-char): Translate CHAR by
4711 translation-table-for-input.
4712
4713 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
4714
4715 * foldout.el (foldout-exit-fold): Properly hide subtree.
4716
4717 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
4718
4719 * files.el (save-buffer):
4720 * international/ucs-tables.el (ucs-set-table-for-input):
4721 * mail/mail-extr.el (mail-extract-address-components):
4722 * mail/sendmail.el (mail-mode): Reformat doc string.
4723
4724 2005-12-09 Juri Linkov <juri@jurta.org>
4725
4726 * isearch.el (isearch-highlight): Change main overlay priority
4727 from 1 to 1001. Simplify.
4728 (isearch-lazy-highlight-update): Change lazy overlay priority
4729 from 0 to 1000.
4730
4731 * replace.el (replace-highlight): Change overlay priority from
4732 1 to 1001.
4733
4734 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
4735 Change overlay priority from 1 to 1001. Reuse existing overlay.
4736
4737 * compare-w.el (compare-windows-highlight): Change overlay
4738 priority from 1 to 1000.
4739
4740 * menu-bar.el (menu-bar-edit-menu): Add listp around
4741 pending-undo-list to disable menu item "undo" when pending
4742 undo list is empty.
4743
4744 * locate.el (locate): Disable undo in *Locate* buffer.
4745
4746 2005-12-09 Kim F. Storm <storm@cua.dk>
4747
4748 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
4749
4750 2005-12-09 David Ponce <david@dponce.com>
4751
4752 * recentf.el: Improvement of the menu code.
4753 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
4754 instead of menu hook.
4755 (recentf-show-menu, recentf-hide-menu): New functions.
4756 (recentf-menu-customization-changed, recentf-mode): Use them.
4757 (recentf-menu-action, recentf-max-menu-items)
4758 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
4759 (recentf-arrange-by-rule-others)
4760 (recentf-arrange-by-rules-min-items)
4761 (recentf-arrange-by-rule-subfilter) : Don't use
4762 `recentf-menu-customization-changed'.
4763 (recentf-arrange-rules): Likewise. Accept functions to compute
4764 sub-menu titles.
4765 (recentf-menu-filter): Likewise. Doc fix.
4766 (recentf-menu-value-shortcut): Doc fix.
4767 (recentf-dump-variable): Quote atom value.
4768 (recentf-make-menu-items): Update to use it as a menu filter.
4769 (recentf-match-rule): New function.
4770 (recentf-arrange-by-rule): Use it.
4771 (recentf-indirect-mode-rule): New function.
4772 (recentf-build-mode-rules): Use it.
4773 (recentf-dir-rule): New function.
4774 (recentf-arrange-by-dir): Use it.
4775 (recentf-filter-changer-current): Rename from
4776 `recentf-filter-changer-state'. All references updated.
4777 (recentf-filter-changer-alist): Update filter names.
4778 (recentf-filter-changer-select): New function.
4779 (recentf-filter-changer): Use it. Make a sub-menu from filters
4780 available in `recentf-filter-changer-alist'.
4781 (recentf-data-cache, recentf-clear-data)
4782 (recentf-update-menu): Remove. All references updated.
4783 (recentf-match-rule-p, recentf-build-dir-rules)
4784 (recentf-filter-changer-goto-next)
4785 (recentf-filter-changer-get-current)
4786 (recentf-filter-changer-get-next): Remove.
4787
4788 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
4789
4790 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
4791 buffer "Reset" button to "Reset to Current" for consistency with
4792 the State buttons.
4793
4794 2005-12-08 John Paul Wallington <jpw@pobox.com>
4795
4796 * ibuf-ext.el (define-ibuffer-filter filename):
4797 If `dired-directory' is a list then really use its car.
4798
4799 2005-12-08 Kim F. Storm <storm@cua.dk>
4800
4801 * emulation/cua-rect.el (cua--rectangle-aux-replace):
4802 Fix indention of text on right side of replaced rectangle.
4803
4804 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
4805
4806 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
4807 No need to check gud-comint-buffer is bound.
4808 (gdb): Prevent multiple debugging when first session uses gdba.
4809
4810 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4811
4812 CC Mode update to 5.31.
4813
4814 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
4815 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
4816 We might do this function properly in the future).
4817
4818 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
4819 New macros c-sentence-end and c-default-value-sentence end, to cope
4820 with Emacs 22's new function `sentence-end'.
4821
4822 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4823
4824 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
4825 compat issue using `c-put-overlay' and `c-delete-overlay'.
4826
4827 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
4828 New compat macros to handle overlays/extents.
4829
4830 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4831
4832 * progmodes/cc-fix.el: Add definitions of the macros push and pop
4833 (for GNU Emacs 20.4)
4834
4835 * progmodes/cc-defs.el:
4836 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
4837
4838 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
4839 highlighting mechanism so it will work in XEmacs too.
4840
4841 * progmodes/cc-defs.el: Insert c-int-to-char.
4842
4843 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
4844 call to the new macro c-int-to-char. This solves XEmacs's
4845 regarding characters as different from integers.
4846
4847 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4848
4849 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
4850 New internal helper.
4851
4852 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
4853 construct to make the indirect face lookup work in XEmacs.
4854
4855 (c-cpp-matchers): Append the negation char face to the existing
4856 fontification, so that the cpp face doesn't disappear.
4857 Use `c-make-syntactic-matcher' to avoid negation chars in comments
4858 and strings.
4859
4860 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
4861 to map to `font-lock-negation-char-face' in emacsen where it exists.
4862
4863 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4864
4865 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
4866
4867 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
4868 Rename "c-subword-move-mode" as "c-subword-mode".
4869
4870 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
4871 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
4872
4873 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4874
4875 * progmodes/cc-mode.el: Added autoload directive for
4876 `c-subword-move-mode' for use in older emacsen.
4877
4878 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4879
4880 * progmodes/cc-mode.el:
4881 (i) Insert a binding for C-c C-backspace into
4882 c-bind-special-erase-keys which works in TTYs.
4883 (ii) Make sure that when file styles are used, any explicitly
4884 given style variables take priority over those in the style.
4885 Do this by calling `hack-local-variables' a second time.
4886
4887 * progmodes/cc-vars.el: Add language specific customization
4888 widgets for AWK to c-doc-comment-style, c-require-final-newline
4889 and c-default-style. Add a defcustom for awk-mode-hook.
4890 Give c-syntactic-element and c-syntactic-context doc-strings by
4891 directly setting their `variable-documentation' propery.
4892 This allows Emacs 22.1 to read these with C-h v.
4893
4894 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
4895
4896 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4897
4898 * progmodes/cc-fonts.el, cc-vars.el
4899 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
4900 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
4901 Masatake YAMATO.
4902
4903 (c-doc-comment-style): Made GtkDoc default in C mode.
4904
4905 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
4906 and C-c C-<delete>.
4907
4908 (c-bind-special-erase-keys): New function for use on
4909 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
4910
4911 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
4912 <delete> key behavior in XEmacs according to `delete-forward-p'.
4913 C.f. `c-electric-delete'.
4914
4915 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4916
4917 * progmodes/cc-mode.el: Give c-hungry-backspace and
4918 c-hungry-delete-forward permanent key bindings.
4919
4920 * progmodes/cc-cmds.el (c-electric-semi&comma):
4921 Bind c-syntactic-context for calls to "criteria functions", for
4922 consistency with other calls to user functions.
4923
4924 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
4925 `current-prefix-arg', since this might be the prefix arg to a
4926 command which calls c-indent-command as a function. Change the
4927 interactive spec from "p" to "P".
4928
4929 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
4930 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
4931 was difficult to understand.
4932
4933 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4934
4935 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
4936 first char of an identifier.
4937
4938 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
4939 +" syntax in C++.
4940
4941 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4942
4943 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
4944 auto-fill doesn't split a c-comment's last word from a hanging
4945 "*/" when a space is typed between them after fill-column.
4946
4947 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
4948
4949 * progmodes/cc-styles.el (c-set-style)
4950 (c-setup-paragraph-variables): Abort the command if we're not in a
4951 CC Mode buffer.
4952
4953 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
4954 with blank comment-prefix, and a blank line as the comment's
4955 second line.
4956
4957 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4958
4959 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
4960 Incorporate the patterns added in the Emacs development branch
4961 for the new Emacs 22 face `font-lock-negation-char-face'.
4962
4963 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
4964 of "red" since it stands out better in xterms and DOS terminals.
4965
4966 * progmodes/cc-engine.el (c-literal-faces):
4967 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
4968
4969 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
4970
4971 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
4972 forcibly enable c-electric-flag.
4973
4974 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
4975 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
4976 after the comment-prefix of a C-style comment will close that comment.
4977
4978 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
4979
4980 * progmodes/cc-fonts.el (c-basic-matchers-before)
4981 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
4982 in Pike.
4983
4984 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
4985 digraphs.
4986
4987 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
4988 (c-cpp-message-directives, c-cpp-include-directives)
4989 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
4990 (c-cpp-expr-directives): Introduce new language constants to
4991 control cpp syntax in a cleaner way.
4992
4993 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
4994
4995 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
4996
4997 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
4998 (c-multiline-string-start-char): New language constants and
4999 variables to specify how newlines in string literals work.
5000
5001 (c-font-lock-invalid-string): Use them.
5002
5003 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
5004 unbalanced close brace is entered. Optimization by avoiding going
5005 back over arbitrarily large blocks. Removed hints that this
5006 function only would be relevant/useful in AWK.
5007
5008 (c-electric-brace): Indent syntactically after the cleanups since
5009 lineup functions might do it differently then.
5010
5011 * progmodes/cc-engine.el, cc-langs.el
5012 (c-opt-op-identifier-prefix): New language constant and variable.
5013
5014 (c-just-after-func-arglist-p, c-after-special-operator-id)
5015 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
5016
5017 * progmodes/cc-align.el, cc-engine.el
5018 (c-after-special-operator-id): New helper to handle C++ operator
5019 identifiers.
5020
5021 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
5022 (c-guess-basic-syntax): Handle C++ operator identifiers in
5023 declarations.
5024
5025 * progmodes/cc-langs.el (c-assignment-operators): Add the
5026 trigraph version of ^= too.
5027
5028 * progmodes/cc-langs.el (c-assignment-operators): Add the
5029 trigraph version of |= in C++.
5030
5031 * progmodes/cc-fonts.el (c-font-lock-declarators):
5032 Handle `c-decl-hangon-kwds' after the identifier name.
5033
5034 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
5035 whether an arglist is "nonempty", ignore a comment after the open
5036 paren if it isn't followed by a non-comment token on the same line.
5037
5038 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
5039 Enable heuristics below the point to cope with classes inside special
5040 brace lists in Pike.
5041
5042 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5043
5044 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
5045
5046 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5047
5048 * progmodes/cc-guess.el (cc-guess-install): New function to
5049 install an already guessed style in another buffer.
5050
5051 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
5052 sets `inhibit-read-only' - `c-save-buffer-state' should be used
5053 anyway if the change always is undone.
5054
5055 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5056
5057 Implement togglable electricity:
5058
5059 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
5060 saying when it should be used.
5061
5062 * progmodes/cc-engine.el: Add the new buffer-local variable,
5063 c-electric-flag.
5064
5065 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
5066 c-toggle-auto-newline.
5067
5068 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
5069 c-toggle-auto-newline. Remove the binding for
5070 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
5071 c-toggle-electric-state.
5072
5073 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
5074
5075 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
5076 c-\(forward\|backward\)-subword.
5077 (c-update-modeline): Add the new modeline flag `l' for
5078 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
5079 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
5080 Make the old name an alias of the new name.
5081 (c-toggle-electric-state): New function.
5082 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
5083 Adapt these functions to do electric things only when
5084 c-electric-flag is non-nil.
5085 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
5086 new functions from c-electric-brace.
5087 (c-point-syntax): Add a check for "virtual semicolons" in AWK
5088 mode, so that the tentative extra newline doesn't change the
5089 syntax of the following brace.
5090 (c-electric-brace): Restructure by extracting the above functions.
5091 Tidy up the coding somewhat.
5092 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
5093 restructure a bit.
5094
5095 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5096
5097 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
5098 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
5099
5100 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
5101 (c-submode-indicators): Change name from `c-auto-hungry-string'
5102 since it's now used to track another submode.
5103
5104 (c-update-modeline): Convert to function and extended to check
5105 `c-subword-move-mode'.
5106
5107 (c-forward-into-nomenclature, c-backward-into-nomenclature):
5108 Convert to compat aliases for `c-forward-subword' and
5109 `c-backward-subword'.
5110
5111 * progmodes/cc-subword.el: New functions and minor mode to handle
5112 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
5113
5114 (c-forward-subword, c-backward-subword, c-mark-subword)
5115 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
5116 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
5117 Functions corresponding to the standard word handling functions.
5118
5119 (c-subword-move-mode): Minor mode that replaces all the standard
5120 word handling functions with their subword equivalences.
5121
5122 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5123
5124 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
5125 entry for one-liner-defun.
5126
5127 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
5128 name in its def-edebug-spec.
5129
5130 * progmodes/cc-cmds.el (c-electric-brace): Make the
5131 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
5132 compacts space before a comment, if this will make things fit on
5133 one line.
5134
5135 Introduce an "awk" style, mainly for auto-newline and clean-ups.
5136
5137 * progmodes/cc-align.el: New function c-snug-1line-defun-close
5138
5139 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
5140 clean-up one-liner-defun.
5141
5142 * progmodes/cc-styles.el: Add the new "awk" style.
5143
5144 * progmodes/cc-vars.el: Add description of one-liner-defun to
5145 c-cleanup-list's doc-string. New user options,
5146 c-max-one-liner-length. In c-default-style, set the default style
5147 for AWK to "awk".
5148
5149 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5150
5151 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
5152 macros inside labels.
5153
5154 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
5155 `c-at-statement-start-p' and `c-at-expression-start-p'.
5156
5157 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
5158 error if the mark isn't set.
5159
5160 * progmodes/cc-engine.el (c-guess-continued-construct)
5161 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
5162 accurately detect functions inside functions.
5163
5164 * progmodes/cc-engine.el (c-at-expression-start-p): New function
5165 like `c-at-statement-start-p' that additionally recognizes commas
5166 and expression parentheses as delimiters.
5167
5168 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
5169 to avoid heuristics that doesn't work for unclosed blocks.
5170 (c-at-statement-start-p): New function.
5171
5172 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
5173 Objective-C directives, e.g. directives spanning lines should work
5174 reasonably well now.
5175
5176 (c-put-c-type-property, c-clear-c-type-property): New helpers.
5177
5178 (c-forward-objc-directive): New function to move over any ObjC
5179 directive.
5180
5181 (c-just-after-func-arglist-p, c-guess-basic-syntax)
5182 (c-basic-matchers-before): Use it.
5183
5184 (c-font-lock-objc-iip-decl): Remove.
5185
5186 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
5187 in the template arglist recognition.
5188
5189 * progmodes/cc-styles.el (c-style-alist): Fix several
5190 inconsistencies in the Whitesmith style.
5191
5192 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
5193 New lineup function to get lines after Whitesmith style blocks
5194 correctly indented.
5195
5196 (c-lineup-whitesmith-in-block): Back out the compensation for
5197 opening parens since it's done using `add' lists in the style
5198 definition instead. Don't use the anchor position since it varies
5199 too much between the syntactic symbols. :P
5200
5201 * progmodes/cc-vars.el (c-valid-offset): Update.
5202
5203 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
5204 lists where the offsets are combined according to several
5205 different methods: `first', `min', `max', and `add'.
5206 Report offset evaluation errors with `c-benign-error' so that some kind
5207 of reindentation still is done.
5208
5209 * progmodes/cc-engine.el (c-guess-basic-syntax):
5210 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
5211 `arglist-close'.
5212
5213 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
5214 situations for `arglist-cont-nonempty' and `arglist-close'.
5215
5216 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
5217
5218 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
5219 cc-bytecomp-boundp' in a number of places.
5220
5221 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
5222 macro related issue.
5223
5224 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5225
5226 * progmodes/cc-awk.el: Change the terminology of regexps: A char
5227 list is now [asdf], a char class [:alpha:].
5228 Include code for char classes.
5229 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
5230 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
5231
5232 Remove (nearly all of) the cruft associated with AWK Mode's former
5233 concept of "virtual semicolons":
5234
5235 Adapt c-beginning-of-statement, c-end-of-statement (together with
5236 subfunctions) to use the new notion of "virtual semicolon" in
5237 place of the old awkward special handling for AWK. There remains
5238 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
5239 * progmodes/cc-cmds.el:
5240 (c-ascertain-adjacent-literal): In the backwards direction, now
5241 recognises AWK regexp delimiters as string delimiters.
5242 (c-after-statement-terminator-p): Adapt for virtual semicolons;
5243 check more rigorously for "end of macro".
5244 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
5245 virtual semicolons;
5246 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
5247 out the code for forward movement into ...
5248 (c-end-of-statement): Now contains the code for forward movement,
5249 adapted for virtual semicolons.
5250
5251 * progmodes/cc-engine.el:
5252 (c-ws*-string-limit-regexp): New regexp.
5253 (c-forward-single-comment, c-backward-single-comment): Comment out
5254 the (now redundant) "special" AWK stuff.
5255
5256 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
5257 c-string-par-start, c-string-par-separate to be more like Text
5258 Mode than Fundamental Mode.
5259
5260 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5261
5262 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
5263 to the fontified region so that fontification doesn't occur
5264 outside it (could happen e.g. when fontifying a line with an
5265 unfinished declaration).
5266
5267 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5268
5269 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
5270 start of the file. ^L now separate sections of the file.
5271 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
5272 (c-awk-one-line-possibly-open-string-re)
5273 (c-awk-regexp-one-line-possibly-open-char-class-re)
5274 (c-awk-one-line-possibly-open-regexp-re)
5275 (c-awk-one-line-non-syn-ws*-re): New defonsts.
5276 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
5277
5278 Amend the concept of "virtual semicolons" (in the indentation
5279 engine) for languages like AWK, such that they are now
5280 conceptually attached to end of the last token of a statement, not
5281 the end of the line. (In AWK Mode, however, the pertinent text
5282 property is still physically set on the EOL.) Remove the specific
5283 tests for awk-mode, thus facilitating the introduction of other
5284 language modes where EOLs can end statements.
5285 (Note: The funtionality in cc-cmds.el, specifically
5286 c-beginning/end-of-statement has yet to be amended.)
5287
5288 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
5289 New macros.
5290
5291 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
5292 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
5293 c-vsemi-status-unknown-p-fn (in a new page).
5294
5295 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
5296 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
5297 numerous awkward forms like
5298 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
5299 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
5300 variable before-ws-ip, the place just after char-before-ip appears.
5301
5302 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
5303 a comment.
5304
5305 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5306
5307 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
5308 `c-tentative-buffer-changes'.
5309
5310 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
5311 convert to macro to choose between Emacs and XEmacs at compile time.
5312
5313 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
5314
5315 (c-tentative-buffer-changes): New macro to handle temporary buffer
5316 changes in a convenient way.
5317
5318 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
5319 for `c-tentative-buffer-changes'.
5320
5321 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
5322 the checks for paren sexps between the point and the keyword, to
5323 avoid some false alarms.
5324
5325 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
5326 Fixed a situation where an error could be thrown for unbalanced
5327 parens. Changed to make use of c-keyword-member' to avoid some
5328 repeated regexp matches.
5329
5330 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
5331 These language variable are no longer necessary.
5332
5333 (c-block-stmt-kwds): New language constant used by
5334 c-looking-at-inexpr-block'.
5335
5336 (c-guess-basic-syntax): Remove an optional check that looked at
5337 the existence of the now removed language variables.
5338
5339 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
5340 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
5341 object instantiation expressions as declarations in some contexts.
5342 This bug only affected languages where the declarator can't be
5343 enclosed in parentheses.
5344
5345 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
5346 insert newlines before and after substatement braces.
5347
5348 * progmodes/cc-engine.el: Improved the heuristics for recognizing
5349 function declaration headers and the handling of C++ style member
5350 init lists.
5351
5352 (c-just-after-func-arglist-p): Rewritten to use
5353 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
5354
5355 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
5356
5357 (c-guess-basic-syntax): Adapt case 5B for the new
5358 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
5359 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
5360 covers all cases now).
5361
5362 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
5363
5364 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5365
5366 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
5367 c-string-par-start/separate c-sentence-end-with-esc-eol,
5368 initialised in c-setup-paragraph-variables, used in string
5369 scanning subroutines of c-beginning-of-statement.
5370
5371 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
5372 which precedes the newly inserted `{'.
5373
5374 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5375
5376 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
5377 function for declaration level blocks. It should now cope with
5378 templates better and also be a lot more comprehensible.
5379
5380 (c-looking-at-decl-block): The new function.
5381
5382 (c-search-uplist-for-classkey): The old one. It's now a wrapper
5383 for compatibility.
5384
5385 (c-add-class-syntax, c-guess-continued-construct)
5386 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
5387
5388 (c-decl-block-key): Change to tell apart ambiguous and
5389 unambiguous keywords. Pike specials are now handled directly in
5390 the code instead.
5391
5392 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
5393 New language constants and variables to make the backward skip in
5394 `c-looking-at-decl-block' as tight as possible.
5395
5396 (c-nonsymbol-token-char-list): New language constant.
5397
5398 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
5399 find balanced template arglists backwards.
5400
5401 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
5402 making char classes for `c-syntactic-skip-backward'.
5403
5404 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
5405 16D - can't be a class-close at that point.
5406
5407 * progmodes/cc-engine.el (c-guess-basic-syntax)
5408 (c-add-class-syntax): Don't narrow out the enclosing declaration
5409 level. This makes everything a lot easier, and it was actually
5410 only four small places that needed it to work. Some places that
5411 previously did `widen' are removed now, which has the effect that
5412 `c-guess-basic-syntax' never will look at things outside the
5413 current narrowment now. The anchor position for `topmost-intro'
5414 is affected by this, but it was so bogus it was basically useless
5415 before, and now it's equally bogus but in a slightly different way.
5416
5417 (c-narrow-out-enclosing-class): Gone.
5418
5419 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
5420 the narrowed region.
5421
5422 (c-least-enclosing-brace): Remove silly optional argument.
5423
5424 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
5425 the point could be left directly after an open paren when finding
5426 the beginning of the first decl in the block.
5427
5428 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
5429 Specify which submatch to use.
5430
5431 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
5432
5433 (c-decl-start-re): No longer any need for special treatment of
5434 ObjC due to the above.
5435
5436 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
5437 presumably follows C in that regard.
5438
5439 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
5440 New language constants to specify operator tokens inside
5441 identifiers in a more high level way.
5442
5443 (c-opt-identifier-prefix-key): New internal language constant.
5444
5445 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
5446 (c-identifier-start, c-identifier-key): Now completely calculated
5447 from other constants.
5448
5449 (c-identifier-last-sym-match): Decommission since it's no longer used.
5450
5451 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
5452
5453 * progmodes/cc-engine.el (c-forward-name): Remove the
5454 optimization when c-identifier-key is equal to c-symbol-key since
5455 it doesn't work in byte compiled files. Don't record empty
5456 regions as identifiers.
5457
5458 * progmodes/cc-langs.el (c-filter-ops): New helper function to
5459 simplify access to `c-operators' and its likes.
5460
5461 (c-operator-list, c-all-op-syntax-tokens)
5462 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
5463 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
5464 (c-primary-expr-regexp, c-cast-parens): Use it.
5465
5466 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
5467 an explicit language in functions.
5468
5469 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
5470 variant of adornment.
5471
5472 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
5473 variable.
5474
5475 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
5476 the Pike value.
5477
5478 * progmodes/cc-engine.el (c-on-identifier)
5479 (c-simple-skip-symbol-backward): Small fix for handling "-"
5480 correctly in `skip-chars-backward'. Affected the operator lfun
5481 syntax in Pike.
5482
5483 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
5484 diagnostic message about precompiled language vars not being used.
5485
5486 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
5487 "__attribute__" is followed by a parenthesis.
5488
5489 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
5490 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
5491 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
5492
5493 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
5494 Internal cleanups to properly detect the declared identifiers in
5495 various declarations.
5496
5497 (c-decl-start-kwds): New language constant to recognize
5498 declarations that can start anywhere. Used for class declarations
5499 in Pike.
5500
5501 (c-specifier-key, c-not-decl-init-keywords)
5502 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
5503 (c-find-decl-spots): Implement `c-decl-start-kwds'.
5504
5505 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
5506 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
5507 handling of the compiler specific extension keywords into a new
5508 language constant `c-decl-hangon-kwds' that defines keyword
5509 clauses to be ignored in declarations.
5510
5511 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
5512 past unrecognized tokens when handling `c-colon-type-list-kwds'.
5513 Necessary to stop at the declared identifier in e.g. IDL valuetype
5514 declarations.
5515
5516 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
5517 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
5518 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
5519 (c-forward-decl-or-cast-1): Recognize the declared identifier in
5520 class and enum declarations as such and not as part of the type.
5521
5522 (c-forward-decl-or-cast-1, c-forward-label): Relax the
5523 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
5524
5525 (c-forward-decl-or-cast-1): Don't disregard sure signs of
5526 declarations when there's some syntax error later on.
5527
5528 (c-complex-decl-matchers): Did away with a reference to
5529 `c-specifier-key'.
5530
5531 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
5532 value - this variable is always dynamically bound.
5533
5534 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
5535 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
5536 * cc-cmds.el, cc-defs.el: Change the policy for marking up
5537 functions that might do hidden buffer changes: All such internal
5538 functions are now marked instead of those that don't.
5539
5540 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
5541 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
5542 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
5543 (c-literal-type): Allow these functions to make hidden buffer changes,
5544 so that they are free to use text property caching later on.
5545
5546 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
5547 (c-electric-brace, c-electric-slash, c-electric-star)
5548 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
5549 (c-electric-paren, c-electric-continued-statement, c-indent-command)
5550 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
5551 (c-context-line-break): Add `c-save-buffer-state' calls to comply
5552 with the changed semantics of the functions above.
5553
5554 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
5555 when macros occur in obscure places. Optimized the sexp movement
5556 a bit.
5557
5558 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5559
5560 Enhancements for c-beginning-of-statement to work in AWK Mode:
5561
5562 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
5563 (completed statement) with `}' (statement completed by closing
5564 brace or semicolon) and `$' (statement completed by EOL).
5565
5566 (c-awk-virtual-semicolon-ends-prev-line-p)
5567 (c-awk-virtual-semicolon-ends-line-p)
5568 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
5569 (c-awk-at-statement-end-p): New functions.
5570
5571 * progmodes/cc-cmds.el: Simplify the structure of functions
5572 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
5573 two functions and c-beginning-of-statement to handle AWK Mode.
5574
5575 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
5576 c-backward-single-comment for AWK mode. Attempt to clarify their
5577 doc-strings.
5578
5579 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
5580
5581 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5582
5583 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
5584 label handling. Labels are now recognized in a uniform and more
5585 robust way, regardless of context. Text properties are put on all
5586 labels to recognize the following declarations better.
5587 Multiword labels are handled both in indentation and fontification for
5588 the benefit of language extensions like Qt. For consistency, keywords
5589 in labels are now fontified with the label face instead.
5590 That also applies to "case" and "default".
5591
5592 (c-beginning-of-statement-1): Fix some bugs in the label
5593 handling. Disregard `c-nonlabel-token-key' in labels that begin
5594 with `c-label-kwds'.
5595
5596 (c-find-decl-spots): Support that the callback adds more
5597 `c-decl-end' spots to find.
5598
5599 (c-forward-decl-or-cast-1): Don't treat a list of plain
5600 identifiers followed by a colon as a declaration.
5601
5602 (c-forward-label): New function to recognize labels.
5603
5604 (c-guess-basic-syntax): Replace uses of `c-label-key' with
5605 `c-forward-label'. Moved the label recognition cases (14 and 15)
5606 earlier since they aren't so context sensitive now. Handle labels
5607 on the top level gracefully. Moved access label recognition to
5608 the generic label case (CASE 15) - removed CASE 5E.
5609
5610 (c-font-lock-declarations): Add recognition of labels in the
5611 same round since we need to handle labels in parallell with other
5612 declarations to recognize both accurately. It should also improve
5613 speed.
5614
5615 (c-simple-decl-matchers, c-basic-matchers-after):
5616 Move `c-font-lock-labels' so that it only is used on decoration level 2
5617 since `c-font-lock-declarations' handles it otherwise.
5618
5619 (c-complex-decl-matchers): Remove the simplistic recognition of
5620 access labels.
5621
5622 (c-decl-prefix-re): Remove the kludges that was necessary to cope
5623 with labels earlier.
5624
5625 (c-decl-start-re): New language variable to make
5626 `c-font-lock-declarations' stop for the special protection labels
5627 in Objective-C that start with `@'.
5628
5629 (c-label-key): Remove since it's no longer used.
5630
5631 (c-recognize-colon-labels, c-label-prefix-re): New language
5632 constants to support recognition of generic colon-terminated labels.
5633
5634 (c-type-decl-end-used): `c-decl-end' is now used whenever there
5635 are colon terminated labels.
5636
5637 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
5638 first argument starts with a special brace list.
5639
5640 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
5641 (c-font-lock-declarations): Break out the declaration and cast
5642 recognition from `c-font-lock-declarations' to a new function, so
5643 that it can be used in the indentation engine.
5644
5645 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
5646 up to the start of the literal. Fixed bug with the point on the
5647 wrong side of the search limit that could happen when the start
5648 position is inside a literal.
5649
5650 * progmodes/cc-engine.el (c-parse-state)
5651 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
5652 so that it's kept a little bit back to increase the hit rate.
5653
5654 (c-parse-state): Change the macro handling and fixed some
5655 glitches. Macro context is checked more often than necessary now,
5656 but otoh less garbage conses are generated.
5657
5658 * progmodes/cc-engine.el (c-parse-state)
5659 (c-invalidate-state-cache): Cache the last position where
5660 `c-state-cache' applies. This can speed up refontification quite
5661 a bit in blocks where there are many non-brace parens before the point.
5662
5663 (c-state-cache-end): New variable for this.
5664
5665 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
5666 cache variable.
5667
5668 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
5669 get close initial continue positions when the start position is
5670 inside a literal or macro. Do not call the callback for spots
5671 before the start position (which can happen e.g. for `c-decl-end'
5672 spots inside comments). Optimize better in special cases when the
5673 region is a single line inside a literal or macro (typically when
5674 the current line is refontified).
5675
5676 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
5677 to `c-add-stmt-syntax' - there's no need to explicitly whack off
5678 entries from the paren state.
5679
5680 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
5681 special case for "else if" clauses.
5682
5683 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
5684 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
5685
5686 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
5687 New language variable to recognize the gcc extension with statement
5688 blocks inside expressions.
5689
5690 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
5691 it somewhat more comprehensible. The argument AT-BLOCK-START is
5692 no longer used and hence removed.
5693
5694 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
5695 to `c-add-stmt-syntax'.
5696
5697 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
5698 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
5699 This fixes bogus label recognition.
5700
5701 * progmodes/cc-engine.el (c-add-type, c-check-type)
5702 (c-forward-name, c-forward-type): Improve storage of template
5703 types in `c-found-types' so that they can be recognized better.
5704
5705 (c-syntactic-content): Add option to skip past nested parens.
5706
5707 * progmodes/cc-engine.el (c-forward-name):
5708 Set `c-last-identifier-range' all the time. It's less work that way.
5709 Handle that there might not be an identifier to store in
5710 `c-last-identifier-range'.
5711
5712 (c-forward-type): Handle that `c-last-identifier-range' might be
5713 nil from `c-forward-name'.
5714
5715 * progmodes/cc-defs.el (c-safe-scan-lists)
5716 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
5717
5718 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
5719 to work even if the form fails.
5720
5721 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
5722 down in a large file in one go.
5723
5724 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
5725
5726 * progmodes/cc-align.el (c-lineup-assignments): New lineup
5727 function which is like `c-lineup-math' but returns nil instead of
5728 `c-basic-offset' when it doesn't match.
5729
5730 (c-lineup-math): Change to use `c-lineup-assignments'.
5731
5732 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5733
5734 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
5735 c-beginning-of-statement. New subfunctions
5736 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
5737
5738 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5739
5740 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
5741 hardcoded char classes whereever possible. Changed a couple of
5742 places to use skip by syntax instead of skip by char class.
5743
5744 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
5745 Fix a bug in the regexp that caused extreme backtracking.
5746
5747 * progmodes/cc-langs.el (c-block-comment-starter)
5748 (c-block-comment-ender): New language constants to specify in a
5749 single place how block comments look.
5750
5751 (c-comment-start-regexp, c-block-comment-start-regexp)
5752 (comment-start, comment-end, comment-start-skip)
5753 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
5754 (c-syntactic-ws, c-nonempty-syntactic-ws)
5755 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
5756 `c-line-comment-starter', `c-block-comment-starter' and
5757 `c-block-comment-ender'.
5758
5759 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
5760 New language constants to break up things a bit.
5761
5762 (c-simple-ws): New language constant for simple whitespace.
5763
5764 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
5765
5766 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
5767 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
5768 newlines. Allow and ignore nil elements in the list.
5769
5770 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5771
5772 * progmodes/cc-cmds.el: Comment out a (n almost certainly
5773 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
5774
5775 * progmodes/cc-cmds.el: Tidy up the comments in
5776 c-beginning-of-statement and subfunctions.
5777
5778 * progmodes/cc-awk.el: Replace calls to put-text-property to the
5779 more flexible c-put-char-property and c-clear-char-properties.
5780 Add the author's email address.
5781
5782 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
5783
5784 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
5785 closing "*/" of a block comment.
5786
5787 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
5788 subfunctions) so that it works at BOB and EOB.
5789
5790 * progmodes/cc-cmds.el, cc-vars.el: More updating of
5791 c-beginning-of-statement, including new variable
5792 c-block-comment-start-regexp.
5793
5794 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5795
5796 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
5797 symbols from `*-font-lock-extra-types' so that there's no need to
5798 use `regexp-opt' on those lists.
5799
5800 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
5801 `c-type-modifier-kwds' is empty.
5802
5803 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
5804 there are several strings on the same line.
5805
5806 * progmodes/cc-engine.el (c-literal-limits): Remove the
5807 compatibility function for older emacsen. `c-literal-limits-fast'
5808 has now taken the place of this function.
5809
5810 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
5811 with older emacsen: We now require `pps-extended-state'.
5812
5813 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5814
5815 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
5816 which obviates the need to hack sentence-end. This now handles
5817 escaped newlines in strings correctly. Correct minor bugs in
5818 c-move-over-sentence and in c-beginning-of-statement.
5819
5820 * progmodes/cc-cmds.el (c-beginning-of-statement (and
5821 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
5822 that movement over macros and code are rigorously separated from
5823 eachother. Correct a few incidental bugs.
5824
5825 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
5826 Improve its doc-string. Improve the handling of certain specific cases.
5827
5828 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5829
5830 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
5831 (c-guess-basic-syntax): Change the way class-level labels are
5832 recognized; they can now contain essentially any symbols.
5833
5834 (c-opt-extra-label-key): New language variable to cope with the
5835 special protection label syntax in Objective-C.
5836
5837 (c-opt-access-key): Remove; this is now handled better by
5838 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
5839
5840 (c-complex-decl-matchers): Update to handle that
5841 `c-opt-access-key' no longer exists.
5842
5843 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
5844 improved label recognition in `c-beginning-of-statement-1'.
5845
5846 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
5847 Recognize bitfields better.
5848
5849 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
5850 Remove some cruft and fixed a bug that could cause it to go to a
5851 position further down.
5852
5853 * progmodes/cc-langs.el, cc-engine.el
5854 (c-beginning-of-statement-1): Improve detection of labels in
5855 declaration contexts.
5856
5857 (c-beginning-of-decl-1): Use it.
5858
5859 (c-nonlabel-token-key): New language constant and variable needed
5860 by `c-beginning-of-statement-1'.
5861
5862 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
5863 manifested itself due to the correction in `c-forward-sexp'.
5864
5865 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
5866 Make these behave as documented when used at the buffer limits.
5867
5868 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
5869 (c-type-decl-end-used): Made this a language variable.
5870
5871 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
5872 correctly when `combine-after-change-calls' is used together with
5873 temporary narrowings.
5874
5875 * progmodes/cc-engine.el (c-beginning-of-statement-1):
5876 Report labels correctly when the start point is immediately after the
5877 colon.
5878
5879 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
5880 Remove since it isn't used anymore.
5881
5882 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
5883 bracket arglists such as template parens in C++.
5884
5885 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
5886 in the last check-in. Some optimization.
5887
5888 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
5889 where it could stop at the same level in a preceding sexp when
5890 PAREN-LEVEL is set.
5891
5892 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
5893 text property lookup only when it's needed.
5894
5895 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
5896 Change the policy for paren marked angle brackets to be more
5897 persistent; once marked they remain marked even when they're found
5898 to be unbalanced in the searched region. This should keep the
5899 paren syntax around even when individual lines are refontified in
5900 multiline template arglists.
5901
5902 (c-parse-and-markup-<>-arglists): New dynamically bound variable
5903 to control markup so that incorrect angle bracket arglists aren't
5904 marked in contexts where the correct value for
5905 `c-disallow-comma-in-<>-arglists' isn't known.
5906
5907 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
5908 argument has become `c-parse-and-markup-<>-arglists'.
5909
5910 (c-remove-<>-arglist-properties): Remove - no longer used.
5911
5912 (c-after-change-check-<>-operators): New function used on
5913 `after-change-functions' to avoid that "<" and ">" characters that
5914 are part of longer operators have paren syntax.
5915
5916 (c-<>-multichar-token-regexp): New language variable used by
5917 `c-after-change-check-<>-operators'.
5918
5919 (c-after-change): Call `c-after-change-check-<>-operators'.
5920
5921 (c-font-lock-<>-arglists): Use the context properties set by
5922 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
5923 correctly to avoid doing invalid markup.
5924
5925 (c-font-lock-declarations): Remove code that undoes the invalid
5926 markup done by `c-font-lock-<>-arglists'.
5927
5928 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
5929 after `c-font-lock-declarations'.
5930
5931 * progmodes/cc-engine.el (c-syntactic-skip-backward):
5932 Add paren-level feature.
5933
5934 (c-guess-basic-syntax): Improve the anchor position for
5935 `template-args-cont' in nested template arglists. There's still
5936 much to be desired in this area, though.
5937
5938 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
5939
5940 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
5941 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
5942
5943 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
5944
5945 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
5946 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
5947
5948 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
5949 it doesn't work no longer are supported.
5950
5951 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
5952 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
5953 requires support for the syntax-table' text property, which rules
5954 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
5955 cruft associated with those versions.
5956
5957 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
5958 for the `syntax-table' text property, which rules out Emacs 19 and
5959 XEmacs < 21.4. Removed various compatibility cruft associated
5960 with those versions.
5961
5962 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
5963 support for the `syntax-table' text property.
5964
5965 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
5966 variable and use an extra quoted face name instead. All the
5967 emacsen flavors handle that correctly.
5968
5969 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
5970 (c-font-lock-declarators, c-font-lock-declarations)
5971 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
5972 property to mark the items in in declarator lists to handle
5973 refontification inside multiline declarations better.
5974
5975 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
5976 construct like "a * b = c;" as a declaration.
5977
5978 2005-12-08 Kim F. Storm <storm@cua.dk>
5979
5980 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
5981 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
5982 select either meta, hyper, or super modifier for rectangle commands.
5983 (cua--rectangle-modifier-key): New defvar.
5984 (cua--M/H-key): Use it. Remove special case for `space'.
5985 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
5986 on X, to meta otherwise. Always bind C-return to toggle
5987 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
5988
5989 * emulation/cua-rect.el (cua-help-for-rectangle):
5990 Use cua--rectangle-modifier-key. Handle super modifier too.
5991 (cua--init-rectangles): Always bind C-return to toggle rectangle.
5992 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
5993
5994 * ido.el: Move Acknowledgements and History after Commentary.
5995 Minor changes to Commentary.
5996
5997 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
5998 keymap if cua--prefix-override-timer is `shift'.
5999 (cua--shift-control-prefix): New function; emulate "type prefix
6000 key twice" functionality to handle shifted prefix key override.
6001 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
6002 New commands.
6003 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
6004
6005 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
6006
6007 * textmodes/org.el (org-insert-heading): Try to do items before
6008 headings.
6009 (org-agenda-mode): Quote `org-agenda-mode-hook'.
6010 (org-insert-item): New function.
6011 (org-renumber-ordered-list): Don't skip to higher level lists.
6012
6013 2005-12-08 Juri Linkov <juri@jurta.org>
6014
6015 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
6016
6017 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
6018
6019 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
6020
6021 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
6022 the constructed function name fun-1.
6023
6024 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
6025 because such links don't lead to parent documentation.
6026
6027 2005-12-08 Kenichi Handa <handa@m17n.org>
6028
6029 * descr-text.el (describe-char): Use *Help-2* buffer if the
6030 current buffer is *Help*. Call describe-text-properties while
6031 setting the original buffer.
6032
6033 2005-12-07 Bill Wohler <wohler@newt.com>
6034
6035 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
6036 and causes problems with non-MH users (such as Gnus users).
6037
6038 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
6039
6040 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
6041 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
6042 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
6043 command "info sources". Move calls to GDB command "list".
6044 (gdb-find-file-hook): Just use gdb-source-file-list.
6045 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
6046 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
6047 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
6048 (gdb-data-list-register-values-handler): Use correct trigger name.
6049
6050 2005-12-07 Kim F. Storm <storm@cua.dk>
6051
6052 * ido.el (ido-completion-map): Rename from ido-mode-map.
6053 (ido-common-completion-map, ido-file-completion-map)
6054 (ido-file-dir-completion-map, ido-buffer-completion-map):
6055 Rename from ido-mode-....-map.
6056 (ido-init-completion-maps): Rename from ido-init-mode-maps.
6057 (ido-setup-completion-map): Rename from ido-define-mode-map.
6058 (ido-read-internal): Bind minibuffer-local-filename-completion-map
6059 to ido-completion-map.
6060
6061 2005-12-07 Kenichi Handa <handa@m17n.org>
6062
6063 * international/mule-cmds.el
6064 (set-display-table-and-terminal-coding-system): If the coding
6065 system specified in `unibyte-display' property is different from
6066 the arg coding-system, don't setup standard-display-table.
6067
6068 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6069
6070 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
6071 that comments end at \n, regardless of selective-display.
6072
6073 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
6074
6075 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
6076 (gdb-version): New variables.
6077 (gdb-source-file-list, gdb-register-names)
6078 (gdb-changed-registers): New variables for use with GDB 6.4+.
6079 (gdb-ann3): Replace with...
6080 (gdb-init-1, gdb-init-2): ...two new functions.
6081 (gdba, gdb-prompt): Call gdb-init-1.
6082 (gdb-get-version): New function. Call gdb-init-2 from here.
6083 (gud-watch): Make it work with mouse events too.
6084 (gdb-post-prompt): Don't add to queue until GDB version is known.
6085 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
6086 (gdb-locals-mode): Use gdb-version.
6087 (gdb-memory-format-map, gdb-memory-unit-map)
6088 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
6089 (gdb-locals-font-lock-keywords-1)
6090 (gdb-locals-font-lock-keywords-2): New variables.
6091 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
6092 (gdb-set-gud-minor-mode-existing-buffers-1)
6093 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
6094 (gdb-var-update-1, gdb-var-update-handler-1)
6095 (gdb-data-list-register-values-handler)
6096 (gdb-data-list-register-values-custom)
6097 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
6098 (gdb-stack-list-locals-handler, gdb-get-register-names):
6099 New functions for use with GDB 6.4+.
6100 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
6101 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
6102 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
6103 (gdb-stack-list-locals-regexp)
6104 (gdb-data-list-register-names-regexp): New regexps for use with
6105 GDB 6.4+.
6106
6107 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6108
6109 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
6110
6111 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
6112
6113 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
6114 prompts work for AUTH PLAIN. Also reported by Steve Allan
6115 <seallan@verizon.net>.
6116
6117 2005-12-06 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
6118
6119 * frame.el (set-frame-parameter): Add doc string.
6120
6121 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
6122
6123 * textmodes/org.el (org-occur-highlights): New variable.
6124 (org-highlight-new-match, org-remove-occur-highlights): New functions.
6125 (org-highlight-sparse-tree-matches): New option.
6126 (org-do-occur): New function.
6127 (org-get-heading): Make it work also at beginning of line.
6128 (org-category-table): New variable.
6129 (org-get-category-table, org-get-category)
6130 (org-camel-to-words, org-link-search): New functions.
6131 (org-select-this-todo-keyword): New variable.
6132 (org-todo-list): New command.
6133 (org-shiftright, org-shiftleft): New commands.
6134 (org-agenda-todo): Add prefix argument.
6135 (org-show-hierarchy-above): New option.
6136 (org-show-todo-tree): Numerical prefix creates tree for specific
6137 TODO keyword.
6138 (org-outline-level): New function, to assign a level to plain
6139 lists items.
6140 (org-cycle-include-plain-lists): New option.
6141 (org-mode): Use `org-outline-level' as value of `outline-level'.
6142 (org-cycle): Temporarily switch `outline-regexp' if
6143 `org-cycle-include-plain-lists' is non-nil.
6144 (org-start-icalendar-file): Fix format bug.
6145 (org-agenda-get-day-entries): Create category table.
6146 (org-agenda-get-todos, org-agenda-get-timestamps)
6147 (org-agenda-get-deadlines, org-agenda-get-scheduled)
6148 (org-agenda-get-blocks): Use `org-get-category'.
6149 (org-context-in-file-links): Rename from
6150 `org-line-numbers-in-file-links'.
6151
6152 2005-12-06 Romain Francoise <romain@orebokech.com>
6153
6154 * window.el (balance-windows): Delete extraneous third arg in call
6155 to `enlarge-window'.
6156
6157 2005-12-06 Kenichi Handa <handa@m17n.org>
6158
6159 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
6160
6161 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
6162
6163 * progmodes/gdb-ui.el (gdb-var-create-handler)
6164 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
6165 (gdb-var-list-children-handler, gdb-var-update-handler):
6166 Current buffer is already gdb-partial-output-buffer, don't
6167 make it current again.
6168
6169 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
6170
6171 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
6172 (list-buffers-noselect): Use it.
6173
6174 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
6175
6176 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
6177 (mail-yank-ignored-headers): Use regexp-opt.
6178 (mail-mode-map): Move initialization into declaration.
6179 (mail-sent-via): Remove unused shadowed var `to-line'.
6180 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
6181 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
6182 (mail-do-fcc): Use dolist and push.
6183 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
6184 (mail-yank-ignored-headers): Don't autoload.
6185
6186 2005-12-05 Kenichi Handa <handa@m17n.org>
6187
6188 * international/mule-cmds.el (set-language-info-internal): New fun.
6189 (set-language-info): Call set-language-info-internal to update
6190 language-info-alist. If LANG-ENV is the current one, call
6191 set-language-environment to make INFO effective now.
6192 (set-language-info-alist): Likewise.
6193 (locale-language-names): With locale "en", use English
6194 lang. env. but set the default codings to iso-8859-1.
6195
6196 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
6197
6198 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
6199 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
6200 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
6201 for plain strings.
6202 (gdb-frames-mode): Remove redundant call to font-lock-mode.
6203 (gdb-all-registers): Rename from toggle-gdb-all-registers.
6204 Create registers buffer if necessary. Echo new state in minibuffer.
6205 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
6206
6207 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
6208
6209 * info.el (Info-fontify-node): Match external links using
6210 non-directory part of filename.
6211
6212 2005-12-04 Juri Linkov <juri@jurta.org>
6213
6214 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
6215 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
6216 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
6217 because there is no customization option for it.
6218
6219 * font-lock.el (lisp-font-lock-keywords-1):
6220 Add define-global-minor-mode.
6221
6222 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
6223
6224 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
6225 properties on the constructed variable names.
6226
6227 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6228 Put `definition-name' properties on the constructed function names
6229 next-sym and prev-sym.
6230
6231 * emacs-lisp/find-func.el (find-function-regexp):
6232 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
6233 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
6234 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
6235 and easy-menu-define.
6236
6237 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
6238 easy-mmode-define-global-mode and define-global-minor-mode.
6239 (lisp-imenu-generic-expression): Add define-global-minor-mode.
6240
6241 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
6242 instead of easy-mmode-define-global-mode.
6243
6244 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
6245 Use define-minor-mode instead of easy-mmode-define-minor-mode.
6246
6247 * cus-edit.el (customize-group, customize-group-other-window):
6248 Filter out autoloaded options from the group completion list by
6249 using heuristics that autoloaded groups don't have `custom-autoload'
6250 property on their symbols (they have only `custom-loads').
6251
6252 * simple.el (completion-setup-function): Put completions-common-part
6253 face on complete completion string too (i.e. completion string
6254 without completions-first-difference face).
6255
6256 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
6257
6258 2005-12-03 Eli Zaretskii <eliz@gnu.org>
6259
6260 * view.el (view-mode): Doc fix.
6261
6262 * disp-table.el (standard-display-european): Add to the warning
6263 message a reference to the doc string.
6264
6265 * play/yow.el (apropos-zippy): Call print-help-return-message,
6266 similar to other Help and Apropos commands.
6267
6268 * help.el (print-help-return-message): If pop-up-frames is
6269 non-nil, set up help-return-method to delete the help window and,
6270 possibly, its frame as well, and don't display message about
6271 scrolling the help window. Doc fix.
6272 (help-return-method): Doc fix.
6273
6274 2005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change)
6275
6276 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
6277 whereby names of length one or names starting with a
6278 symbol-constituent character would not be returned.
6279
6280 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
6281
6282 * subr.el (atomic-change-group): Add edebug and indentation spec.
6283
6284 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6285
6286 * completion.el (save-completions-file-name): Fix typo in last change.
6287
6288 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6289
6290 * info.el: Move back/forward history to the beginning of the tool bar.
6291
6292 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
6293
6294 * allout.el (eval-when-compile): Remove unnecessary load of cl.
6295 Add fset of allout-real-isearch-abort during compile to fix
6296 byte-compilation warnings.
6297 (allout-mode-p): Move definition of this macro above all uses, or
6298 byte compilation in barren emacs (eg, during emacs build) will
6299 lack the definition.
6300 (allout-mode): Move this variable above any uses, or byte
6301 compilation will fail.
6302 (allout-resolve-xref): Remove use of personal file-reference function.
6303 (allout-toggle-current-subtree-encryption): Do the current (ie,
6304 visible containing) topic, rather than nearest around point. Doc fix.
6305 (allout-toggle-subtree-encryption): New function, workhorse that
6306 works on nearest topic containing point.
6307 (allout-encrypt-string): Signal requirement for newer version of pgg.
6308 (allout-resumptions): Doc fix.
6309
6310 2005-12-02 Eli Zaretskii <eliz@gnu.org>
6311
6312 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
6313
6314 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
6315
6316 * textmodes/flyspell.el (flyspell-external-point-words):
6317 Consider a misspelling as found in the string search if: (a) misspelling
6318 and found string lengths match, or (b) misspelling is found as
6319 element in a boundary-chars separated longer string, or (c)
6320 ispell-program-name is really ispell and misspelling is found as
6321 part of a TeX string. After successful match move beginning of
6322 search region to end of match. Warn about not found misspellings
6323 once the process is done.
6324 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
6325
6326 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
6327
6328 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
6329 tool bar (removed inadvertently).
6330
6331 2005-12-02 Juri Linkov <juri@jurta.org>
6332
6333 * log-view.el (log-view-diff): Clarify doc string.
6334
6335 2005-12-01 Bill Wohler <wohler@newt.com>
6336
6337 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
6338 triggers lm-verify errors.
6339
6340 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
6341
6342 * simple.el (transient-mark-mode, line-number-mode)
6343 (column-number-mode, size-indication-mode): Remove `:require nil'.
6344
6345 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
6346
6347 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
6348 in the margin also.
6349 (gdb-breakpoints-mode-map): Use D instead of d for
6350 gdb-delete-breakpoint.
6351 (gdb-get-frame-number): Require a number to match on.
6352 (gdb-threads-mode-map): Add follow-link binding.
6353
6354 2005-11-30 Jason Rumney <jasonr@gnu.org>
6355
6356 * isearch.el (isearch-mode-map): Avoid exiting search on
6357 language-change event.
6358
6359 2005-11-30 Romain Francoise <romain@orebokech.com>
6360
6361 * speedbar.el (speedbar-default-position): New defcustom.
6362 (speedbar-frame-reposition-smartly): Use it.
6363
6364 * dframe.el (dframe-reposition-frame-emacs): Fix position
6365 computation for `left' location.
6366 Update copyright year.
6367
6368 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
6369
6370 * help.el (help-map): Move initialization into declaration.
6371
6372 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
6373
6374 * help-fns.el (help-argument-name): Don't autoload.
6375 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
6376 to be re-loaded when customizing the `help' group.
6377
6378 2005-11-30 John Paul Wallington <jpw@gnu.org>
6379
6380 * help-fns.el (describe-function-1): Fill arglist output.
6381
6382 2005-11-30 Kim F. Storm <storm@cua.dk>
6383
6384 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
6385 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
6386 after revert-buffer (or anything else which kills all local variables).
6387
6388 * apropos.el (apropos-parse-pattern): Doc fix.
6389 Set apropos-regexp directly, rather than expecting callers to do so.
6390 (apropos-command, apropos, apropos-value, apropos-documentation):
6391 Simplify calls to apropos-parse-pattern.
6392
6393 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
6394
6395 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
6396 (hi-lock-face-phrase-buffer): Use hi-yellow face.
6397 (hi-lock-write-interactive-patterns): Use comment-region.
6398
6399 * longlines.el (longlines-mode): Add mail-setup-hook.
6400
6401 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
6402
6403 * simple.el (sendmail-user-agent-compose, next-line):
6404 Conditionally use hard-newline.
6405
6406 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
6407
6408 * international/latexenc.el (latex-inputenc-coding-alist):
6409 Reword doc string.
6410
6411 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
6412
6413 * help.el (describe-key-briefly, describe-key): Recognize default
6414 bindings.
6415
6416 2005-11-29 Romain Francoise <romain@orebokech.com>
6417
6418 * view.el (view-inhibit-help-message): New defcustom.
6419 (view-mode-enter): Use it.
6420
6421 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
6422
6423 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
6424 Preserve user position.
6425
6426 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
6427
6428 * font-lock.el: Throw error if facemenu is not loaded to prevent
6429 accidental change of loading order in loadup.el. (Suggested by RMS.)
6430
6431 * loadup.el: Add comment explaining why facemenu must be loaded
6432 before font-lock.
6433
6434 2005-11-28 Jay Belanger <belanger@truman.edu>
6435
6436 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
6437 (calc-dispatch-map): Add more keys for `calc-same-interface'.
6438
6439 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
6440
6441 * calc/calc-embed.el (calc-do-embedded): Update help message.
6442
6443 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
6444
6445 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6446
6447 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
6448
6449 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
6450 called-interactively-p.
6451 (elp-profilable-p): Rename from elp-not-profilable-p.
6452 Invert result and take into account macros and autoloaded functions.
6453 (elp-instrument-function): Update call.
6454 (elp-instrument-package): Update call. Add completion.
6455 (elp-pack-number): Use match-string.
6456 (elp-results-jump-to-definition-by-mouse): Merge into
6457 elp-results-jump-to-definition and then remove.
6458 (elp-output-insert-symname): Make help echo text single-line.
6459
6460 * replace.el (query-replace-map): Move initialization into declaration.
6461 (occur-engine): Use with-current-buffer.
6462 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
6463 (occur-mode-mouse-goto): Replace with an alias.
6464
6465 2005-11-28 Juri Linkov <juri@jurta.org>
6466
6467 * simple.el (quoted-insert): Let-bind input-method-function to nil.
6468
6469 * term/w32-win.el: Bind [S-tab] to [backtab].
6470
6471 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
6472 `Info-find-file' to t.
6473
6474 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
6475 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
6476 and same-window-regexps.
6477 (occur-next-error): Don't move point for arg 0.
6478
6479 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
6480
6481 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
6482
6483 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6484
6485 * log-edit.el (log-edit-changelog-use-first): New var.
6486 (log-edit-changelog-ours-p): Use it.
6487 (log-edit-insert-changelog): Set it with new arg `use-first'.
6488 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
6489 (log-edit-hook): Add them to the list of suggested options.
6490
6491 * textmodes/flyspell.el (flyspell-last-buffer): New var.
6492 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
6493 redundant work.
6494 (flyspell-mode-on): Use add-hook for after-change-functions.
6495 (flyspell-mode-off): Use remove-hook for after-change-functions.
6496 (flyspell-changes): Make it buffer-local.
6497 (flyspell-after-change-function): Make it non-interactive. Use push.
6498 (flyspell-post-command-hook): Check input-pending-p while processing
6499 the potentially long list of buffer changes.
6500
6501 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
6502
6503 * buff-menu.el (list-buffers-noselect): Display the selected
6504 frame's buffer list, not the global one.
6505
6506 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
6507
6508 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
6509 that (list last-input-event) works as in interactive spec.
6510
6511 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
6512
6513 * loadup.el ("facemenu"): Load facemenu before font-lock, because
6514 `facemenu-keymap' needs to be defined when font-lock is loaded.
6515 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
6516
6517 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6518
6519 * completion.el: Remove useless leading * in defcustom docstrings.
6520 (save-completions-file-name): Use ~/.emacs.d if available.
6521 (completion-standard-syntax-table): Rename from
6522 cmpl-standard-syntax-table and fold initialization into declaration,
6523 thus removing cmpl-make-standard-completion-syntax-table.
6524 (completion-lisp-syntax-table, completion-c-syntax-table)
6525 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
6526 (cmpl-saved-syntax, cmpl-saved-point): Remove.
6527 (symbol-under-point, symbol-before-point)
6528 (symbol-under-or-before-point, symbol-before-point-for-complete)
6529 (add-completions-from-c-buffer): Use with-syntax-table.
6530 (make-completion): Don't return a list of completion entries.
6531 Update callers.
6532 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
6533 (completion-initialize): Rename from initialize-completions.
6534 (completion-find-file-hook): Rename from cmpl-find-file-hook.
6535 (kill-emacs-save-completions): Collect stats here.
6536 (save-completions-to-file, load-completions-from-file):
6537 Use with-current-buffer.
6538 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
6539 into a function. Move all calls to toplevel.
6540 (completion-lisp-mode-hook): New fun.
6541 (completion-c-mode-hook, completion-setup-fortran-mode):
6542 Set the syntax-table here. Use local-set-key.
6543 (completion-saved-bindings): New var.
6544 (dynamic-completion-mode): Make it into a proper minor mode.
6545 (load-completions-from-file): Remove unused var `num-uses'.
6546
6547 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
6548 constructor if it is explicitly overridden.
6549
6550 * complete.el (PC-completion-as-file-name-predicate):
6551 Use minibuffer-completing-file-name.
6552 (partial-completion-mode): Use find-file-not-found-functions.
6553 (PC-lisp-complete-symbol): Use with-syntax-table.
6554 (PC-look-for-include-file): Remove dead setq.
6555 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
6556 (PC-complete): Use with-current-buffer.
6557
6558 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
6559 escape single quotes.
6560
6561 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
6562
6563 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
6564 of `if' whose condition always returned nil. Doc fix.
6565
6566 * buff-menu.el (Buffer-menu-revert-function): Make the selected
6567 window's buffer the current buffer around the call to
6568 `list-buffers-noselect'. This is necessary to mark that buffer
6569 with a `.' in the Buffer Menu when called from Lisp, for instance
6570 by Auto Revert Mode.
6571
6572 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
6573
6574 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
6575 attaching to it.
6576 (gdb-pre-prompt): Make sure gdb-error is reset.
6577
6578 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
6579 with a child process, detect it.
6580 (gud-speedbar-buttons): Match regexp more carefully.
6581
6582 2005-11-27 Richard M. Stallman <rms@gnu.org>
6583
6584 * mouse.el (mouse-drag-move-window-bottom):
6585 Use adjust-window-trailing-edge.
6586
6587 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
6588
6589 * simple.el (blink-matching-open): Ignore
6590 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
6591 (blink-matching-paren-on-screen): Update docstring.
6592
6593 * paren.el (show-paren-mode): No longer change
6594 `blink-matching-paren-on-screen'.
6595
6596 2005-11-27 John Paul Wallington <jpw@pobox.com>
6597
6598 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
6599 (gdb-threads-select, gdb-edit-register-value):
6600 Use `posn-set-point' instead of `mouse-set-point' because the
6601 latter is not fbound when configured without X.
6602
6603 2005-11-27 Kim F. Storm <storm@cua.dk>
6604
6605 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
6606 existing face when partially highlighting a TAB in a rectangle.
6607
6608 2005-11-26 Kim F. Storm <storm@cua.dk>
6609
6610 * ido.el (ido-mode-map): Doc fix.
6611 (ido-mode-common-map, ido-mode-file-map)
6612 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
6613 (ido-define-mode-map): Rewrite. Select one of the new maps as
6614 parent for ido-mode-map instead of building from scratch.
6615 (ido-init-mode-maps): New defun to initialize new maps.
6616 (ido-mode): Call it.
6617 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
6618 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
6619
6620 2005-11-26 John Paul Wallington <jpw@pobox.com>
6621
6622 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
6623 `mouse-set-point' because the latter is not fbound when configured
6624 without X.
6625
6626 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
6627
6628 * files.el (file-relative-name): Doc fix.
6629
6630 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
6631
6632 * progmodes/octave-inf.el (inferior-octave-startup): Force a
6633 non-empty string for secondary prompt PS2.
6634
6635 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
6636
6637 * progmodes/compile.el (compilation-setup): Fix last change.
6638
6639 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
6640
6641 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
6642 (gdb-mouse-toggle-breakpoint-margin)
6643 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
6644 Add gdb-server-prefix to keep out of command history.
6645 (gdb-edit-register-value): New function.
6646 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
6647 (gdb-info-registers-custom): Use above map.
6648
6649 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
6650
6651 * custom.el (enable-theme): Signal error if argument is not a
6652 theme. Don't recalculate a face if it's not loaded yet.
6653
6654 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
6655 the `user' theme is in effect.
6656
6657 * info.el (Info-on-current-buffer): Record actual filename in
6658 Info-current-file, instead of t, or a fake filename if a non-file
6659 buffer. Make autoload.
6660 (Info-find-node, Info-revert-find-node): No need to check for
6661 Info-current-file nil.
6662 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
6663 Info-current-file is now never `t'.
6664 (Info-fontify-node): Many simplifications due to Info-current-file
6665 always being valid. Use Info-find-file to find node filename.
6666
6667 2005-11-25 David Kastrup <dak@gnu.org>
6668
6669 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
6670 new character, then delete" in order to preserve markers.
6671
6672 2005-11-25 David Ponce <david@dponce.com>
6673
6674 * recentf.el (recentf-arrange-by-rule): Handle a special
6675 `auto-mode-alist'-like "strip suffix" rule.
6676 (recentf-build-mode-rules): Handle second level auto-mode entries.
6677
6678 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
6679
6680 * viper-keym.el (viper-ESC-key): Use different values in terminal and
6681 window modes.
6682
6683 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
6684 jde-javadoc-checker-report-mode.
6685
6686 * ediff-wind (ediff-make-wide-display): Slight simplification.
6687
6688 * ediff.el (ediff-date): Change the date of last update.
6689
6690 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
6691
6692 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
6693 Use define-minor-mode, and make it a local mode. Turn on font-lock.
6694 (hi-lock-mode): New global minor mode.
6695 (turn-on-hi-lock-if-enabled): New function.
6696 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
6697 Change arguments to regexp and face instead of a font-lock pattern.
6698 Directly set face property, instead of refontifying.
6699 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
6700 (hi-lock-find-patterns): Use line-number-at-pos.
6701
6702 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
6703 arguments for hi-lock-set-pattern.
6704 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
6705 Call font-lock-fontify-buffer.
6706 (hi-lock-find-file-hook, hi-lock-current-line)
6707 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
6708
6709 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
6710 turned off.
6711
6712 * progmodes/compile.el (compilation-setup): Don't fiddle with
6713 font-lock-defaults.
6714
6715 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
6716
6717 * progmodes/gdb-ui.el (gdb-var-create-handler)
6718 (gdb-var-list-children-handler): Find values for all variable
6719 objects. gud-speedbar-buttons decides whether to display them.
6720
6721 2005-11-24 Romain Francoise <romain@orebokech.com>
6722
6723 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
6724 buffer name with a space.
6725
6726 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
6727
6728 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
6729 `org-export-local-list-max-depth'. Change default value to 3.
6730 (org-auto-renumber-ordered-lists)
6731 (org-plain-list-ordered-item-terminator): New options.
6732 (org-at-item-p, org-beginning-of-item, org-end-of-item)
6733 (org-get-indentation, org-get-string-indentation)
6734 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
6735 New functions.
6736 (org-move-item-down, org-move-item-up): New commands.
6737 (org-export-as-html): New classes for CSS support. Bug fix in
6738 regular expression detecting fixed-width regions. Respect
6739 `org-local-list-ordered-item-terminator'.
6740 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
6741 also a list item.
6742 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
6743 New item moving functions.
6744
6745 2005-11-24 Juri Linkov <juri@jurta.org>
6746
6747 * isearch.el (isearch-repeat): With empty search ring set
6748 `isearch-error' to the error string instead of signaling error
6749 with the function `error'.
6750
6751 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6752
6753 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
6754
6755 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
6756
6757 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
6758 and variable.
6759 (gdb-var-create-handler, gdb-var-list-children-handler):
6760 Don't match on "char **...".
6761 (gdb-var-update-handler): Find values for all variable objects.
6762 (gdb-info-frames-custom): Identify frames by leading "#".
6763
6764 * progmodes/gud.el (gud-speedbar-menu-items): Add
6765 gdb-speedbar-auto-raise as radio button.
6766 (gud-speedbar-buttons): Raise speedbar if requested.
6767 Don't match on "char **...".
6768 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
6769 Make it editable.
6770
6771 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
6772
6773 * info.el (Info-fontify-node): Handle the case where
6774 Info-current-file is t.
6775
6776 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
6777
6778 * simple.el (blink-matching-open): Fix off-by-one in last change.
6779
6780 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6781
6782 * term/mac-win.el: Don't change default directory.
6783
6784 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
6785
6786 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
6787 buffers correctly. (It used to throw an error in such buffers.)
6788 Make it ask for confirmation in group buffers and other Custom
6789 buffers containing more than one customization item.
6790
6791 2005-11-22 John Paul Wallington <jpw@gnu.org>
6792
6793 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
6794 property on mail and url overlays.
6795 (goto-address-at-point): Use `posn-set-point' instead of
6796 `mouse-set-point' because the latter is not fbound when configured
6797 without X.
6798
6799 2005-11-22 Lars Hansen <larsh@soem.dk>
6800
6801 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
6802 (ls-lisp-classify, ls-lisp-format): Delete call to
6803 ls-lisp-parse-symlink.
6804 (ls-lisp-handle-switches): Handle symlinks to directories as
6805 directories when ls-lisp-dirs-first in non-nil.
6806
6807 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
6808
6809 * startup.el (command-line): Make sure that loaddefs.el is handled
6810 correctly in load-history.
6811
6812 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
6813
6814 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
6815 (gdb-struct-string, gdb-array-string): New constants.
6816 (gdb-info-locals-handler): Use them.
6817 (gdb-reset): Reset gdb-var-list to nil.
6818
6819 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6820
6821 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
6822 in patterns.
6823
6824 2005-11-21 Juri Linkov <juri@jurta.org>
6825
6826 * custom.el (defcustom): Update link types in docstring.
6827
6828 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change)
6829
6830 * custom.el (defgroup): Add doc-string-elt info.
6831
6832 * widget.el (define-widget): Don't use declare for the doc-string-elt.
6833
6834 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6835
6836 * newcomment.el (comment-enter-backward): Fix last fix.
6837
6838 * simple.el (blink-matching-open):
6839 * paren.el (show-paren-function): Allow new paren-class info.
6840
6841 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
6842
6843 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
6844 handled automagically.
6845
6846 2005-11-20 Andreas Schwab <schwab@suse.de>
6847
6848 * descr-text.el (describe-char): When copying overlays put them
6849 over the full char description instead of just the first character
6850 of it.
6851
6852 2005-11-20 Juri Linkov <juri@jurta.org>
6853
6854 * simple.el (what-cursor-position):
6855 * descr-text.el (describe-char): Use Lisp-readable syntax
6856 for octal and hex. Reorder decimal, octal and hex values.
6857 Remove excess whitespace in the output. Use `=' in `column='
6858 like in `point=' and `Hscroll='.
6859
6860 * international/mule-cmds.el (encoded-string-description):
6861 Use Lisp-readable syntax for hex.
6862
6863 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
6864
6865 * newcomment.el (comment-enter-backward): Handle the case where the
6866 comment is closed by EOB.
6867
6868 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
6869
6870 * longlines.el (longlines-before-revert-hook)
6871 (longlines-after-revert-hook): New functions.
6872 (longlines-mode): Turn off longlines temporarily when reverting.
6873 Add a message-setup-hook.
6874 (longlines-decode-buffer): New function.
6875 (longlines-wrap-line): Preserve marker positions.
6876
6877 2005-11-19 Andreas Schwab <schwab@suse.de>
6878
6879 * emacs-lisp/shadow.el: Handle compressed files.
6880
6881 2005-11-19 Romain Francoise <romain@orebokech.com>
6882
6883 * net/browse-url.el (browse-url-default-browser): Signal an error
6884 if no usable browser can be found, rather than try to load w3.
6885
6886 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
6887
6888 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
6889 replacing existing properties.
6890 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
6891 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
6892 tty specs.
6893 (rcirc-server-prefix, rcirc-server): New faces.
6894 (rcirc-url-regexp): Generate with rx macro.
6895 (rcirc-last-server-message-time): New variable.
6896 (rcirc-filter): Record time of last message.
6897 (rcirc-keepalive): Kill processes that did not send a message
6898 since the last ping.
6899 (rcirc-mode): Give rcirc-topic a local binding here.
6900
6901 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
6902
6903 * subr.el (read-passwd): Fontify the prompt as we do with other
6904 prompts.
6905
6906 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
6907
6908 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
6909 binding buffer-read-only to nil.
6910
6911 2005-11-19 Eli Zaretskii <eliz@gnu.org>
6912
6913 * complete.el (partial-completion-mode):
6914 Mention completion-auto-help in the doc string.
6915
6916 * man.el (Man-highlight-references): Doc fix. Reformat code in a
6917 more Lisp-ish way.
6918
6919 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
6920
6921 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
6922 digits, not 8, to avoid misalignment for files larger than 100MB.
6923
6924 2005-11-19 Eli Zaretskii <eliz@gnu.org>
6925
6926 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
6927 Mention "keyboard shortcuts" in the help text.
6928
6929 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6930
6931 * startup.el (fancy-splash-default-action): Discard only
6932 mouse-down and succeeding mouse-up events in the splash screen
6933 window so that drag-n-drop event can be processed.
6934
6935 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
6936
6937 * longlines.el (longlines-mode): Add hacks for mail-mode and
6938 message-mode.
6939
6940 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
6941
6942 * textmodes/org.el (org-table-sort-lines): New command.
6943 (org-tbl-menu): Add entry for `org-table-sort-lines'.
6944 (org-add-file): Command removed, use `org-agenda-file-to-front'
6945 instead.
6946 (org-export-icalendar): Use `org-icalendar-combined-name'.
6947 (org-cycle-agenda-files, org-agenda-file-to-end)
6948 (org-agenda-file-to-front): New commands.
6949 (org-table-tab-jumps-over-hlines, org-export-html-style):
6950 New options.
6951 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
6952 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
6953 New functions.
6954 (org-fill-paragraph): Call `org-table-align' in tables.
6955 (org-mode): Call `org-set-autofill-regexps'.
6956 (org-export-as-html): Support for local handformatted lists.
6957 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
6958 (org-export-local-list-max-depth): New option.
6959 (org-html-expand): Use `org-html-protect'.
6960
6961 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
6962
6963 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
6964 to "p".
6965 (gdb): Move definition of gud-pp to...
6966
6967 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
6968 speedbar.
6969 (gdb-find-watch-expression): New function.
6970
6971 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
6972
6973 * faces.el (face-attribute, set-face-attribute): Mention existence
6974 of `:ignore-defface' setting in docstring.
6975
6976 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
6977
6978 * simple.el (completion-setup-function): Fix last change.
6979
6980 2005-11-17 John Paul Wallington <jpw@pobox.com>
6981
6982 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
6983 Use `posn-set-point' instead of `mouse-set-point' because the
6984 latter is not fbound when configured without X.
6985
6986 * comint.el (comint-insert-input): Likewise.
6987
6988 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
6989
6990 * simple.el (hard-newline): New variable.
6991 (sendmail-user-agent-compose, next-line): Use it.
6992
6993 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
6994 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
6995 (mail-mail-reply-to, mail-mail-followup-to)
6996 (mail-position-on-field, mail-signature, mail-yank-original)
6997 (mail-attach-file): Likewise.
6998
6999 * mail/mailheader.el (mail-header-format)
7000 (mail-header-format-function): Likewise.
7001
7002 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
7003
7004 2005-11-17 Juri Linkov <juri@jurta.org>
7005
7006 * font-lock.el (font-lock-faces): Rename this defgroup from
7007 `font-lock-highlighting-faces'.
7008 (font-lock-comment-face, font-lock-comment-delimiter-face)
7009 (font-lock-string-face, font-lock-doc-face)
7010 (font-lock-keyword-face, font-lock-builtin-face)
7011 (font-lock-function-name-face, font-lock-variable-name-face)
7012 (font-lock-type-face, font-lock-constant-face)
7013 (font-lock-warning-face, font-lock-negation-char-face)
7014 (font-lock-preprocessor-face)
7015 (font-lock-regexp-grouping-backslash)
7016 (font-lock-regexp-grouping-construct): Rename :group from
7017 `font-lock-highlighting-faces' to `font-lock-faces'.
7018
7019 * cus-edit.el (lisp, c, tex):
7020 * progmodes/ada-mode.el (ada):
7021 * progmodes/asm-mode.el (asm):
7022 * progmodes/cperl-mode.el (cperl-faces):
7023 * progmodes/cpp.el (cpp):
7024 * progmodes/dcl-mode.el (dcl):
7025 * progmodes/f90.el (f90):
7026 * progmodes/fortran.el (fortran):
7027 * progmodes/icon.el (icon):
7028 * progmodes/idlwave.el (idlwave-misc):
7029 * progmodes/m4-mode.el (m4):
7030 * progmodes/make-mode.el (makefile):
7031 * progmodes/meta-mode.el (meta-font):
7032 * progmodes/modula2.el (modula2):
7033 * progmodes/octave-mod.el (octave):
7034 * progmodes/pascal.el (pascal):
7035 * progmodes/perl-mode.el (perl):
7036 * progmodes/prolog.el (prolog):
7037 * progmodes/ps-mode.el (PostScript-edit):
7038 * progmodes/scheme.el (scheme):
7039 * progmodes/sh-script.el (sh-script):
7040 * progmodes/simula.el (simula):
7041 * progmodes/tcl.el (tcl):
7042 * textmodes/nroff-mode.el (nroff):
7043 * textmodes/reftex-vars.el (reftex-fontification-configurations):
7044 * textmodes/sgml-mode.el (sgml):
7045 * textmodes/texinfo.el (texinfo):
7046 Add :link (custom-group-link font-lock-faces) to defgroup.
7047
7048 * hi-lock.el (hi-lock): Rename this defgroup from
7049 `hi-lock-interactive-text-highlighting'. Change parent group from
7050 `faces' to `font-lock'. Add link to the manual.
7051 (hi-lock-mode, hi-lock-file-patterns-range)
7052 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
7053 `hi-lock-interactive-text-highlighting' to `hi-lock'.
7054 (hi-lock-faces): Add :group `faces'.
7055
7056 * cus-edit.el (custom-variable-prompt): Clarify the code.
7057
7058 * faces.el (face-read-string): Set the default value arg of
7059 completing-read.
7060
7061 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
7062
7063 * rfn-eshadow.el (file-name-shadow-properties)
7064 (file-name-shadow-tty-properties, file-name-shadow-mode):
7065 Remove autoloads, because the file is now preloaded.
7066
7067 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7068
7069 * printing.el (easy-menu-intern): Don't define.
7070 (pr-get-symbol): Use easy-menu-intern only if defined.
7071
7072 * simple.el (blink-matching-open): Simplify a bit.
7073 (completion-setup-function): Fix the case of partial-completion-mode
7074 when the minibuffer's contents start with "-".
7075 Obey completion-base-size-function even when
7076 minibuffer-completing-file-name is non-nil.
7077
7078 2005-11-16 Richard M. Stallman <rms@gnu.org>
7079
7080 * net/eudcb-ph.el (eudc-ph-open-session):
7081 Use set-process-query-on-exit-flag.
7082
7083 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
7084
7085 * international/ucs-tables.el (ucs-set-table-for-input):
7086 Use make-local-variable, not make-variable-buffer-local.
7087
7088 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
7089 Improve warning message text.
7090
7091 * savehist.el (savehist-save-hook): Add :group.
7092
7093 * menu-bar.el (menu-bar-help-menu):
7094 Rename Find Extra Packages to External Packages.
7095
7096 * cus-edit.el (Custom-reset-standard): Verify that
7097 :custom-standard-value prop exists before calling it.
7098
7099 * apropos.el (apropos-calc-scores): Use apropos-pattern.
7100
7101 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change)
7102
7103 * wid-edit.el (color): Enclose %t in %{...%}.
7104
7105 * cus-edit.el (face): Enclose %t in %{...%}.
7106
7107 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
7108
7109 * savehist.el (savehist-mode-hook): Re-add the var.
7110 (savehist-mode): Use it.
7111
7112 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7113
7114 * textmodes/flyspell.el: Fix commenting convention.
7115 Remove unnecessary leading * in custom docstrings.
7116 (flyspell-emacs): Remove unused var.
7117 (flyspell-delete-region-overlays): Use remove-overlays.
7118 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
7119 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
7120 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
7121 (flyspell-debug-signal-word-checked): Use with-current-buffer.
7122 (make-flyspell-overlay): Don't locally reuse a global name.
7123 (flyspell-highlight-incorrect-region)
7124 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
7125 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
7126 (flyspell-notify-misspell): Remove unused args `start' and `end'.
7127 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
7128 Wrap calls to accept-process-output inside with-local-quit since it's
7129 often called from a post-command-hook.
7130 (flyspell-correct-word, flyspell-auto-correct-word):
7131 Use ispell-send-string.
7132 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
7133
7134 * calendar/diary-lib.el (diary-list-entries): Also hide the
7135 terminating newline.
7136
7137 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
7138
7139 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
7140 window-system, to allow fonts on tty.
7141
7142 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
7143
7144 * progmodes/gud.el (gud-speedbar-item-info): New function.
7145 (gud-install-speedbar-variables): Use it to display data type
7146 of watch expression as a tooltip in speedbar.
7147
7148 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
7149
7150 * font-core.el (global-font-lock-mode): Add :version keyword,
7151 because default was changed.
7152
7153 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
7154
7155 * startup.el (command-line): Use `custom-reevaluate-setting' for
7156 `file-name-shadow-mode'.
7157
7158 * loadup.el: Preload rfn-eshadow.
7159
7160 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
7161 Add :version keyword.
7162 (file-name-shadow-properties, file-name-shadow-tty-properties)
7163 (file-name-shadow): Add :version keyword.
7164
7165 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
7166 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
7167 in the custom-group property of the symbol frames and the fringe
7168 group got no link to its parent group frames.
7169 Doc fix.
7170
7171 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
7172
7173 * progmodes/gud.el (gud-stop-subjob): New function.
7174 (gud-menu-map, gud-tool-bar-map): Use it.
7175
7176 2005-11-16 Kim F. Storm <storm@cua.dk>
7177
7178 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
7179 than kill it.
7180 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
7181 to a more useful/logical place.
7182
7183 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
7184
7185 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
7186 go buttons complementary.
7187
7188 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7189
7190 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
7191 (rfn-eshadow-sifn-equal): New function.
7192 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
7193
7194 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
7195
7196 * viper-utils.el (viper-non-word-characters-reformed-vi):
7197 Quote `-' in string.
7198
7199 * viper.el (viper-emacs-state-mode-list): Ensure that
7200 rcirc-mode buffers come up in Emacs state.
7201
7202 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
7203 operation.
7204
7205 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
7206
7207 * term.el (term-termcap-format): Fix typos.
7208 (term-down): Fix the negative argument case.
7209
7210 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
7211
7212 * progmodes/gdb-ui.el: Remove face-alias left over from change on
7213 2005-08-15.
7214 (gdb-ann3): New command gud-go.
7215 (menu): Accomodate gdb-mi.el.
7216 (gdb-assembler-custom): Make buffer of selected window current
7217 so that set-window-point works.
7218
7219 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
7220 buttons and include new ones.
7221
7222 2005-11-16 Kim F. Storm <storm@cua.dk>
7223
7224 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
7225 (gud-menu-map): Use it.
7226
7227 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
7228
7229 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
7230 that works correctly for Custom and that does not override a user
7231 who disables it.
7232
7233 * help-mode.el (help-make-xrefs, help-xref-on-pp)
7234 (help-xref-interned, help-follow): Make hyperlinks for variables
7235 that are unbound, but have a non-nil variable-documentation property.
7236
7237 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
7238 mode hook. (It conflicted with defcustoms for some mode hooks.)
7239 Use the `variable-documentation' property to give the mode hook a
7240 docstring and expand that docstring.
7241
7242 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
7243
7244 * savehist.el (savehist-mode): Don't bother with
7245 `custom-set-minor-mode'.
7246 (savehist-coding-system): Check XEmacs version.
7247 (history-length): Declare also at run time.
7248 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
7249 Don't set the customize state.
7250 (savehist-minibuffer-hook): Special case for when
7251 minibuffer-history-variable is equal to t.
7252
7253 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7254
7255 * files.el (write-file): Refresh VC status.
7256
7257 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
7258 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
7259 than fundamental-mode to see if the mode was set.
7260
7261 2005-11-14 Romain Francoise <romain@orebokech.com>
7262
7263 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
7264 dummy function in `eval-when-compile' to avoid compiler warning.
7265 Require `man' at compile time.
7266
7267 2005-11-14 Jay Belanger <belanger@truman.edu>
7268
7269 * calc-alg.el (calcFunc-write-out-power): Rename it to
7270 calcFunc-powerexpand.
7271 (math-write-out-power): Rename it to math-powerexpand; have it
7272 handle negative exponents.
7273 (calc-writeoutpower): Rename it to calc-powerexpand.
7274
7275 * calc-ext.el: Change calcFunc-writeoutpower and
7276 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
7277 autoloads.
7278 Add calcFunc-ldiv to autoloads.
7279
7280 * calc-arith.el (calcFunc-ldiv): New function.
7281
7282 * calc.el (calc-left-divide): New function.
7283
7284 2005-11-14 Juri Linkov <juri@jurta.org>
7285
7286 * cus-edit.el (custom-variable-prompt): Set the default value arg
7287 of completing-read.
7288
7289 * cus-dep.el (custom-make-dependencies): Reverse the list of
7290 found dependencies.
7291
7292 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
7293
7294 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
7295 Highlighting" entry, it is on by default now.
7296 (menu-bar-options-save): Do not save global-font-lock-mode.
7297
7298 2005-11-13 Richard M. Stallman <rms@gnu.org>
7299
7300 * textmodes/flyspell.el (flyspell-large-region):
7301 Call flyspell-accept-buffer-local-defs.
7302
7303 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
7304
7305 * textmodes/flyspell.el (flyspell-notify-misspell):
7306 Fix misspelling of "Misspelling".
7307 (flyspell-process-localwords): New function.
7308 (flyspell-large-region): Call flyspell-process-localwords and
7309 flyspell-delete-region-overlays.
7310 (flyspell-delete-region-overlays): New function.
7311 (flyspell-delete-all-overlays): Call that.
7312
7313 2005-11-13 Richard M. Stallman <rms@gnu.org>
7314
7315 * help.el (help-for-help-internal): Improve doc of C-h a.
7316 (describe-key): Improve prompt; doc fix.
7317
7318 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7319
7320 * vc-svn.el (vc-svn-registered): Catch all errors.
7321
7322 * cus-dep.el (custom-make-dependencies): Typo.
7323
7324 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
7325
7326 * net/tramp-util.el (top): Fix compilation warning.
7327
7328 2005-11-13 Kim F. Storm <storm@cua.dk>
7329
7330 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
7331
7332 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
7333
7334 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
7335 (gud-speedbar-buttons): Match on "const char *" too.
7336
7337 * progmodes/gdb-ui.el (gdb-var-create-handler)
7338 (gdb-var-list-children-handler): Match on "const char *" too.
7339 (gdb-var-evaluate-expression-handler): Match on empty string.
7340 (gdb-var-update-handler): Only call
7341 gdb-var-evaluate-expression-handler when required.
7342
7343 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
7344
7345 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
7346 selected window. This still doesn't work for speedbar.
7347 (gud-speedbar-buttons): Handle string expressions properly.
7348
7349 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
7350 (gdb-var-create-handler): Handle string expressions properly.
7351 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
7352 Handle string expressions properly. Move "type" field into regexp.
7353
7354 2005-11-12 Karl Fogel <kfogel@red-bean.com>
7355
7356 * bookmark.el (bookmark-maybe-message): New function to reduce
7357 code duplication: invokes `message' iff baud-rate is high enough.
7358 (bookmark-write-file): Use above instead of an inline conditional.
7359 (bookmark-load): Same.
7360
7361 2005-11-12 Karl Fogel <kfogel@red-bean.com>
7362
7363 * bookmark.el (bookmark-write-file): Don't visit the destination
7364 file, just write the data to it using write-region. This is
7365 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
7366 change to avoid visiting the file in the first place.
7367
7368 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
7369
7370 * hi-lock.el (hi-lock-mode): Set the default value of
7371 font-lock-defaults.
7372
7373 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
7374
7375 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
7376 arg to `file-attributes'.
7377 (find-lisp-format): The UID and GID can now be strings.
7378
7379 2005-11-12 Kim F. Storm <storm@cua.dk>
7380
7381 * help.el (help-map): Bind C-h d to apropos-documentation.
7382
7383 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
7384 when point is at end-of-buffer.
7385
7386 * apropos.el (apropos-match-face): Doc fix.
7387 (apropos-sort-by-scores): Add new choice `verbose'.
7388 (apropos-documentation-sort-by-scores): New defcustom.
7389 (apropos-pattern): Now contains the pattern entered by the user.
7390 (apropos-pattern-quoted): New defvar.
7391 (apropos-regexp): New defvar, containing the regexp corresponding
7392 to apropos-pattern.
7393 (apropos-all-words-regexp): Rename from apropos-all-regexp.
7394 (apropos-read-pattern): New defun. Use it to read pattern arg in
7395 interactive calls; returns list of words for a word list, and
7396 string for a regexp.
7397 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
7398 parses a list of words or regexp as returned by apropos-read-pattern.
7399 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
7400 (apropos-score-doc): Return a very high score if the string
7401 entered by the user matches literally.
7402 (apropos-variable): Doc fix. Use apropos-read-pattern.
7403 (apropos-command): Doc fix. Use apropos-read-pattern and
7404 apropos-parse-pattern. Call apropos-print with nosubst=t.
7405 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
7406 apropos-parse-pattern.
7407 (apropos-documentation): Doc fix. Use apropos-read-pattern and
7408 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
7409 apropos-documentation-sort-by-scores. Call apropos-print with
7410 nosubst=t.
7411 (apropos-documentation-internal): Pass doc string through
7412 substitute-key-definition before adding text properties.
7413 Highlight substring matching literal user input if possible.
7414 (apropos-documentation-check-doc-file): Remove locals beg and end.
7415 Fix calculation of score (as added twice). Pass doc string through
7416 substitute-key-definition before adding text properties.
7417 (apropos-documentation-check-elc-file): Pass doc string through
7418 substitute-key-definition before adding text properties.
7419 Highlight substring matching literal user input if possible.
7420 (apropos-print): Add new arg NOSUBST; if set, command and variable
7421 doc strings have already been passed through substitute-key-definition.
7422 Add code to handle apropos-accumulator items without score element
7423 for backwards compatibility (e.g. with woman package).
7424 Only show scores if apropos-sort-by-scores is `verbose'.
7425
7426 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7427
7428 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
7429 Add jka-compr-load-suffixes to load-suffixes.
7430
7431 * jka-compr.el: Require jka-cmpr-hook.
7432 (jka-compr-info-compress-message, jka-compr-info-compress-program)
7433 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
7434 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
7435 (jka-compr-info-can-append, jka-compr-info-strip-extension)
7436 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
7437 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
7438 (jka-compr-uninstall): Remove entries from
7439 jka-compr-added-to-file-coding-system-alist after they are used.
7440 (jka-compr-error): Remove unused var `curbuf'.
7441 (jka-compr-file-local-copy): Remove unused var `notfound'.
7442
7443 2005-11-10 Romain Francoise <romain@orebokech.com>
7444
7445 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
7446
7447 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
7448
7449 * progmodes/gud.el (gud-menu-map): Move parentheses.
7450 (gdb): New command gud-pv.
7451
7452 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7453
7454 * tar-mode.el: Remove spurious or unnecessary leading stars
7455 in docstrings.
7456 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
7457 (tar-parse-octal-integer-safe): Use mapc.
7458 (tar-header-block-summarize): Remove unused var `ck'.
7459 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
7460 cleared before. Obey default-enable-multibyte-characters.
7461 Use mapconcat. Simplify setting of tar-header-offset.
7462 (tar-mode-map): Move initialization inside delcaration.
7463 (tar-flag-deleted): Use `abs'.
7464 (tar-expunge-internal): Remove unused var `line'.
7465 (tar-expunge-internal): Don't hardcode point-min==1.
7466 (tar-expunge): Widen while doing set-buffer-multibyte.
7467 (tar-rename-entry): Use file-name-coding-system.
7468 (tar-alter-one-field): Don't hardcode point-min==1.
7469 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
7470 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
7471
7472 2005-11-10 Masatake YAMATO <jet@gyve.org>
7473
7474 * add-log.el (add-log-current-defun): Handle class::method
7475 notation of c++. Fix incorrect comment.
7476
7477 2005-11-10 Alan Mackenzie <acm@muc.de>
7478
7479 * help-fns.el (describe-variable): Make C-h v work when a variable
7480 has variable documentation yet is unbound.
7481
7482 2005-11-10 Masatake YAMATO <jet@gyve.org>
7483
7484 * man.el (Man-highlight-references): Set an empty
7485 string to `Man-arguments' if it is nil.
7486 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
7487
7488 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7489
7490 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
7491 commenting conventions.
7492
7493 * cus-dep.el (custom-make-dependencies): Simplify.
7494 Better follow the commenting conventions.
7495
7496 2005-11-09 Richard M. Stallman <rms@gnu.org>
7497
7498 * apropos.el (apropos-pattern): Rename from apropos-regexp.
7499 (apropos-orig-pattern): Rename from apropos-orig-regexp.
7500 All uses changed.
7501 (apropos-rewrite-regexp): Doc fix.
7502 (apropos-variable, apropos-command, apropos, apropos-value):
7503 Change prompt; carry through the argument renaming.
7504
7505 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
7506
7507 * find-lisp.el: Require dired.
7508 (find-lisp-find-dired-internal): Do not call
7509 `abbreviate-file-name' on DIR.
7510
7511 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
7512
7513 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
7514
7515 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
7516
7517 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
7518 when using the speedbar.
7519 (gdb): New command gud-pp.
7520 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
7521
7522 2005-11-09 Juri Linkov <juri@jurta.org>
7523
7524 * replace.el (occur-excluded-properties): New defcustom.
7525 (occur-1, occur-engine, occur-accumulate-lines): Use it.
7526
7527 2005-11-08 Jay Belanger <belanger@truman.edu>
7528
7529 * calc/calc-units.el (math-convert-units): Replace any composite
7530 unit by its definition.
7531
7532 2005-11-08 Lars Hansen <larsh@soem.dk>
7533
7534 * emacs-lisp/autoload.el (update-directory-autoloads):
7535 Add obsolete function alias.
7536
7537 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7538
7539 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
7540 comment-indent-function.
7541 (lisp-comment-indent): Replace by an alias for comment-indent-default.
7542
7543 * reveal.el (reveal-post-command): Rework the handling of
7544 reveal-open-spots, so as to be more reliable. There were several
7545 tricky corner cases where an open spot might be lost, or where
7546 a closed spot might end up on the list of open spots.
7547 Only reveal text that's ellipsised.
7548
7549 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
7550
7551 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
7552
7553 2005-11-07 John Paul Wallington <jpw@gnu.org>
7554
7555 * ibuffer.el (ibuffer): Search iconified frames too when
7556 getting Ibuffer buffer's window.
7557
7558 2005-11-06 Richard M. Stallman <rms@gnu.org>
7559
7560 * progmodes/compile.el (compilation-internal-error-properties):
7561 save-excursion around the computation of MARKER.
7562
7563 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
7564
7565 * textmodes/flyspell.el (flyspell-external-point-words):
7566 flyspell-get-word returns a list, not just a string.
7567
7568 2005-11-06 John Paul Wallington <jpw@pobox.com>
7569
7570 * ibuffer.el (ibuffer): Search all visible frames when getting
7571 Ibuffer buffer's window.
7572
7573 2005-11-07 Masatake YAMATO <jet@gyve.org>
7574
7575 * man.el (Man-reference-regexp): Accept spaces between
7576 `Man-name-regexp' and `Man-section-regexp'.
7577 (Man-apropos-regexp): New variable.
7578 (Man-abstract-xref-man-page): Use value for `Man-target-string'
7579 if available.
7580 (Man-highlight-references, Man-highlight-references0):
7581 Handle the case when `Man-arguments' includes "-k".
7582 (Man-highlight-references0): Rename the argument `TARGET-POS' to
7583 `TARGET'. `TARGET' can be a number, function or nil.
7584
7585 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
7586
7587 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
7588 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
7589 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
7590 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
7591 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
7592 (gdb-send-item): Use buffer-local-value and simplify.
7593
7594 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
7595
7596 * startup.el (command-line): Use `custom-reevaluate-setting' for
7597 `global-font-lock-mode'.
7598
7599 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
7600 by default, except in batch mode or when the -D option is given.
7601
7602 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
7603 specified keyword args on to `define-minor-mode'. Update docstring.
7604
7605 2005-11-05 Romain Francoise <romain@orebokech.com>
7606
7607 * replace.el (occur-engine): Add marker at end of line, too.
7608
7609 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
7610
7611 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
7612 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
7613 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
7614 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
7615 argument to all these routines, so the passphrase can be managed
7616 externally and passed in to the system.
7617 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
7618 pgg-add-passphrase-to-cache function.
7619
7620 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
7621 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
7622 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
7623 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
7624 argument to all these routines, so the passphrase can be managed
7625 externally and passed in to the system.
7626 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
7627 function.
7628
7629 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
7630
7631 * font-lock.el: Don't deal with font-lock-face-attributes here,
7632 move the code ...
7633
7634 * startup.el (command-line): ... here. Use face-spec-set instead
7635 of custom-declare-face.
7636
7637 * faces.el (face-spec-set): Reset the face if spec is not nil.
7638
7639 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
7640
7641 * newcomment.el (comment-region-internal): Box more tightly in the
7642 common case where there's no TAB in the boxed text.
7643
7644 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7645
7646 * info.el (info-tool-bar-map): Use images prev-node, next-node and
7647 up-node.
7648
7649 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
7650
7651 * newsticker.el: Commentary updated. Code formatting changed.
7652 (newsticker-version): Change to "1.9".
7653 (newsticker, newsticker-feed): Doc fix.
7654 (newsticker-url-list): Doc fix. Add option "Weekly".
7655 (newsticker-retrieval-interval): Add option "Weekly".
7656 (newsticker-headline-processing): Doc fix.
7657 (newsticker-auto-mark-filter): Remove.
7658 (newsticker-auto-mark-filter-list): New.
7659 (newsticker-layout, newsticker-sort-method): Doc fix.
7660 (newsticker-hide-old-items-in-newsticker-buffer)
7661 (newsticker-heading-format, newsticker-item-format)
7662 (newsticker-desc-format): Doc fix.
7663 (newsticker-show-all-rss-elements): Remove.
7664 (newsticker-show-all-news-elements): New.
7665 (newsticker-faces, newsticker-ticker): Doc fix.
7666 (remove-from-invisibility-spec): Code formatting.
7667 (newsticker--process-ids): New.
7668 (newsticker-mode): Doc fix.
7669 (newsticker-mode): Change mode-line-format.
7670 (newsticker-start): Remove debug output.
7671 (newsticker-start-ticker): Doc fix. Add autoload cookie.
7672 (newsticker-w3m-show-inline-images): Code formatting.
7673 (newsticker-next-item): Call `force-mode-line-update'.
7674 (newsticker-previous-item): Call `force-mode-line-update'.
7675 (newsticker-next-feed): Call `force-mode-line-update'.
7676 (newsticker-previous-feed): Call `force-mode-line-update'.
7677 (newsticker-mark-all-items-at-point-as-read): Code formatting.
7678 (newsticker-show-old-items): Do not show descs.
7679 (newsticker-hide-entry): Hide too much.
7680 (newsticker-hide-entry, newsticker-show-entry)
7681 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
7682 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
7683 (newsticker-toggle-auto-narrow-to-item): Code formatting.
7684 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
7685 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
7686 (newsticker-get-news): Call `force-mode-line-update'.
7687 Collect process ids.
7688 (newsticker--sentinel): Change coding system handling.
7689 Move image retrieval to new functions newsticker--get-logo-url-*.
7690 Move feed parsing to new functions newsticker--parse-*.
7691 Update list of process ids.
7692 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
7693 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
7694 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
7695 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
7696 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
7697 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
7698 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
7699 (newsticker--decode-coding-string): Remove.
7700 (newsticker--decode-numeric-entities): Check input. Format code.
7701 (newsticker--remove-whitespace): Check input.
7702 (newsticker--do-forget-preformatted): Doc fix.
7703 (newsticker--decode-rfc822-date): Allow for missing time.
7704 (newsticker--update-process-ids): New.
7705 (newsticker--image-sentinel): Change comment.
7706 (newsticker--image-read): Change error message.
7707 (newsticker--imenu-goto): Doc fix. Show headline title.
7708 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
7709 (newsticker--buffer-do-insert-text): Clean whitespace in
7710 html-rendered headline title. Code formatting.
7711 Call `newsticker--buffer-print-extra-elements'.
7712 (newsticker--buffer-print-extra-element): Remove.
7713 (newsticker--buffer-print-extra-elements): New.
7714 (newsticker--buffer-do-print-extra-element): New.
7715 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
7716 large sizes.
7717 (newsticker--run-auto-mark-filter)
7718 (newsticker--do-run-auto-mark-filter):
7719 Use `newsticker-auto-mark-filter-list'.
7720
7721 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
7722
7723 * net/rcirc.el: Use split-string OMIT-NULLS argument.
7724 (rcirc-print): Force redisplay before running hooks. Do long
7725 buffer truncation after making new text read-only. Deal with nil
7726 text when decoding strings. If TARGET is nil, use either the
7727 currently selected buffer, if it is an rcirc buffer and of the
7728 same process or the process buffer.
7729 (rcirc-mode): Remove header-line. Recompute short buffer names.
7730 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
7731 (rcirc-short-buffer-name): Add variable.
7732 (rcirc-kill-buffer-hook): Recompute short buffer names.
7733 Remove nick from private channel.
7734 (rcirc-send-input): Send command text to current-buffer.
7735 Don't clear overlay arrow here.
7736 (rcirc-short-buffer-name): Return a short buffer name.
7737 (rcirc-update-short-buffer-names, rcirc-abbreviate)
7738 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
7739 buffer-name abbreviations.
7740 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
7741 Do not touch nick-table when killing a parted channel.
7742 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
7743 Clear arrow from current buffer if it is now hidden.
7744 (rcirc-current-buffer): Add variable.
7745 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
7746 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
7747 Remove -face from names.
7748 (rcirc-update-activity-string): Print "DND" when globally ignoring
7749 activity.
7750 (rcirc-ignore-buffer-activity-flag): Rename from
7751 rcirc-ignore-channel-activity.
7752 (rcirc-ignore-all-activity-flag): Doc fix.
7753 (rcirc-channels): Remove variable.
7754 (rcirc-kill-buffer-hook):
7755 (rcirc-get-buffer-create): Add nick to private channel.
7756 (rcirc-multiline-edit-submit): Remove tabs.
7757 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
7758 folded.
7759 (rcirc-remove-nick-channel): Bug fix.
7760 (rcirc-toggle-ignore-buffer-activity): Rename from
7761 rcirc-toggle-ignore-channel-activity.
7762 (rcirc-record-activity): Add buffers to the front of the list.
7763 (rcirc-update-activity): Remove killed buffers from list.
7764 (rcirc-process-server-response-1): Remove last argument if it is
7765 null before calling handler.
7766 (rcirc): Add "rcirc" defcustom prefix.
7767 (rcirc-prompt): Simplify default prompt.
7768 Use custom-initialize-default.
7769 (rcirc-private-chats): Remove variable.
7770 (rcirc-prompt): Change initialization.
7771 (rcirc-version): Remove function.
7772 (rcirc-id-string): Add constant.
7773 (rcirc-last-buffer): Remove variable.
7774 (rcirc-buffer-alist): Add variable.
7775 (rcirc-connect): Update variable setup.
7776 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
7777 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
7778 default.
7779 (rcirc-handler-generic): Trigger activity.
7780 (rcirc-send-message): Create the buffor of the target.
7781 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
7782 (rcirc-get-buffer): Just return nil if there is no matching buffer.
7783 (rcirc-multiline-edit-cancel): Remove function.
7784 (rcirc-set-last-buffer): Remove function.
7785 (rcirc-get-any-buffer): Add function.
7786 (rcirc-join-channels): Don't print /join text.
7787 (rcirc-toggle-ignore-channel-activity): Add and update echo area
7788 messages.
7789 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
7790 (rcirc-handler-NOTICE): Recognize CTCP responses.
7791 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
7792 constructing TOPIC string for buffers we are not JOINed.
7793 (rcirc-handler-CTCP-response): Add handler.
7794 (rcirc-multiline-edit-submit): Restore the window-configuration
7795 before adjusting point.
7796 (rcirc): Add customization group.
7797 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
7798 (rcirc-user-full-name, rcirc-startup-channels-alist)
7799 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
7800 (rcirc-ignore-all-activity-flag, rcirc-time-format)
7801 (rcirc-input-ring-size, rcirc-read-only-flag)
7802 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
7803 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
7804 Change defvar to defcustom.
7805 (rcirc-update-prompt): Add optional ALL arg, which will update
7806 prompts in all rcirc buffers. Regexp quote replacement text.
7807 (rcirc-fill-column): Accept frame-width as a value.
7808 (rcirc-set-changed): Add function.
7809 (rcirc-next-active-buffer): Write more meaningful messages.
7810 (rcirc-faces): Add customization group.
7811 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
7812 (rcirc-nick-in-message-face, rcirc-prompt-face)
7813 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
7814 (with-rcirc-process-buffer): Move before first usage.
7815 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
7816 (rcirc-debug-flag): Rename from `rcirc-log-p'.
7817 (rcirc-debug): Rename from `rcirc-log'.
7818 (rcirc-format-response-string): Do not print `-' chars for a
7819 NOTICE with no sender. Simplify output of server responses.
7820
7821 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
7822
7823 (rcirc-browse-url-map, rcirc-browse-url-at-point)
7824 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
7825 Make urls mouse and RET clickable.
7826
7827 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
7828
7829 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
7830
7831 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
7832
7833 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
7834 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
7835 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
7836 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
7837 argument to all these routines, so the passphrase can be managed
7838 externally and passed in to the system.
7839 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
7840 pgg-add-passphrase-to-cache function.
7841
7842 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
7843 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
7844 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
7845 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
7846 argument to all these routines, so the passphrase can be managed
7847 externally and passed in to the system.
7848 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
7849 function.
7850
7851 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
7852
7853 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
7854 from goto-address-url-regexp.
7855
7856 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
7857
7858 * textmodes/org.el (org-read-date, org-goto-calendar)
7859 (org-recenter-calendar, org-agenda-goto-calendar):
7860 Temporarily clear `calendar-move-hook'.
7861
7862 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
7863
7864 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
7865 merging.
7866
7867 * ediff-util.el (ediff-previous-difference): Don't skip regions that
7868 have merge clashes.
7869
7870 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7871
7872 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
7873 Undo previous change.
7874
7875 * startup.el (command-line): Use `custom-reevaluate-setting' for
7876 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
7877 tty-register-default-colors on Mac.
7878
7879 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
7880
7881 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
7882 (gdb-buffer-type): Make it automatically buffer local...
7883 (gdb-get-create-buffer): ...and set it accordingly.
7884 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
7885 actually work.
7886
7887 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
7888
7889 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
7890 not red.
7891
7892 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
7893
7894 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
7895 case GUD buffer is not visible.
7896 (gdb-goto-breakpoint): Try to force display in source buffer.
7897 (gdb-frame-gdb-buffer): Copy other similar functions.
7898 (gdb-restore-windows): Don't display source if not asked for.
7899 (gdb-assembler-buffer-name): Don't capitalise.
7900
7901 2005-11-03 Richard M. Stallman <rms@gnu.org>
7902
7903 * wid-edit.el (key-sequence): New widget type.
7904
7905 * simple.el (set-mark-command-repeat-pop): New variable.
7906 (set-mark-command): Only interpret plan C-@ after a pop as a pop
7907 if set-mark-command-repeat-pop is true.
7908
7909 * info.el (Info-fontify-node): Don't display extra "see" if there
7910 already is one here.
7911
7912 * mouse.el: Fix special handling of DEL after dragging a region:
7913 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
7914 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
7915
7916 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
7917
7918 * textmodes/ispell.el (ispell-command-loop): Change `i' description
7919 not to assume it pertains to an affix.
7920
7921 * textmodes/flyspell.el (flyspell-post-command-hook):
7922 Bind deactivate-mark to prevent deactivation.
7923
7924 2005-11-03 Lars Hansen <larsh@soem.dk>
7925
7926 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
7927 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
7928 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
7929
7930 2005-11-03 Romain Francoise <romain@orebokech.com>
7931
7932 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
7933 Update copyright years.
7934
7935 2005-11-03 Sam Steingold <sds@gnu.org>
7936
7937 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
7938 Use system-type instead of window-system because window-system is not
7939 correctly defined during loadup.
7940
7941 2005-11-02 Mark A. Hershberger <mah@everybody.org>
7942
7943 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
7944 (xml-parse-tag): Join strings separated by a comment properly.
7945
7946 2005-11-02 Andreas Schwab <schwab@suse.de>
7947
7948 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
7949
7950 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7951
7952 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
7953 (byte-optimize-pure-func): Quote the eval'd value.
7954
7955 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
7956 Rename from perl-font-lock-syntactic-face-function.
7957 Change the calling convention so it can be used as a font-lock MATCHER.
7958 Do the parse-partial-sexp loop outselves.
7959 (perl-font-lock-syntactic-keywords): Use it.
7960 (perl-mode): Don't set font-lock-syntactic-face-function any more.
7961
7962 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
7963
7964 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
7965 disassembly buffer too.
7966 (gdb-exited): Remove overlay arrows when execution has finished.
7967 (gdb-info-frames-custom, gdb-info-threads-custom)
7968 (gdb-info-registers-custom): Don't add inappropriate text
7969 properties if inferior is not active.
7970
7971 2005-11-02 Glenn Morris <rgm@gnu.org>
7972
7973 * progmodes/fortran.el (fortran-blink-match):
7974 Use `blink-matching-delay'.
7975
7976 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
7977
7978 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
7979
7980 2005-11-02 Lars Hansen <larsh@soem.dk>
7981
7982 * net/tramp.el (tramp-action-out-of-band): Handle scp message
7983 "Permission denied".
7984
7985 2005-11-01 Richard M. Stallman <rms@gnu.org>
7986
7987 * textmodes/flyspell.el (flyspell-external-point-words):
7988 Pass nil to flyspell-get-word.
7989
7990 2005-11-02 Kim F. Storm <storm@cua.dk>
7991
7992 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
7993 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
7994
7995 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
7996
7997 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
7998 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
7999 (calendar-mouse-print-dates): Add optional `event' argument.
8000 Update interactive-spec.
8001 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
8002 Use `calendar-event-to-date' instead of `event'.
8003
8004 2005-11-02 Masatake YAMATO <jet@gyve.org>
8005
8006 * progmodes/ld-script.el (ld-script-builtins):
8007 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
8008 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
8009 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
8010
8011 2005-11-01 Romain Francoise <romain@orebokech.com>
8012
8013 * vc-sccs.el: Update copyright year.
8014 * ezimage.el: Likewise.
8015
8016 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
8017
8018 * info.el (Info-fontify-node): Use `string-width' for fontifying
8019 underlined titles.
8020
8021 2005-11-01 Juri Linkov <juri@jurta.org>
8022
8023 * info.el (Info-fontify-node): Downcase node header keywords Node,
8024 Prev, Next, Up before comparison.
8025 (Info-history): Insert absolute directory name, and put invisible
8026 property on it.
8027
8028 2005-11-01 Juri Linkov <juri@jurta.org>
8029
8030 * info.el (Info-file-supports-index-cookies): New variable.
8031 (Info-find-node-2): Check makeinfo version for index cookie support.
8032 (Info-index-nodes): Search for nodes with index cookies only when
8033 Info-file-supports-index-cookies is t. Otherwise, search nodes
8034 with "Index" in the node name.
8035 (Info-index-node): Search index cookie in the current node only when
8036 Info-file-supports-index-cookies is t. Otherwise, check the word
8037 "Index" in the node name.
8038 (Info-find-emacs-command-nodes): Remove code that searches nodes
8039 with "Index" node name in the top menu.
8040
8041 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
8042
8043 * progmodes/scheme.el (scheme-mode-variables): Use the default
8044 comment-indent-function.
8045
8046 * faces.el (face-attribute): Handle the case where a face inherits from
8047 a non-existent face.
8048
8049 * simple.el (eval-expression-print-format): Use lisp-readable syntax
8050 for octal and hexa output, and merge the char into the paren.
8051 (kill-new): Use push.
8052 (copy-to-buffer): Use with-current-buffer.
8053 (completion-setup-function): Move code in loop to remove redundancy.
8054 (minibuffer-local-must-match-map): Don't add bindings that duplicate
8055 those inherited from minibuffer-local-completion-map.
8056
8057 * savehist.el (savehist-mode) <defcustom>:
8058 Use custom-set-minor-mode if available.
8059 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
8060 and emit a message if applicable.
8061
8062 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
8063
8064 * savehist.el: Sync up to version 19.
8065 (savehist-mode): New minor mode.
8066 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
8067 (savehist-length): Remove (use history-length instead).
8068 (savehist-file-modes): Rename from savehist-modes.
8069 (savehist-save-hook, savehist-loaded): New vars.
8070 (savehist-load): Use savehist-mode. Try to smooth up transition from
8071 old format to new format.
8072 (savehist-install): Allow savehist-autosave-interval to be nil.
8073 (savehist-save): Run the new hook. Be more careful to only trim the
8074 history variables.
8075 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
8076 (savehist-printable): Print into a buffer rather than char-by-char.
8077
8078 2005-11-01 John Wiegley <johnw@newartisans.com>
8079
8080 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
8081 toggle-ignore keybinding (C-a). The author said it had been
8082 disabled much earlier due to a possible incompatibility, but after
8083 many months of usage I have encountered no problems (and it is a
8084 rather useful option, especially for switching to " *temp*").
8085
8086 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
8087 support for OS/X's AddressBook, by calling out to the open source
8088 program "contacts" (installable through Fink).
8089
8090 * net/eudc.el (eudc-expand-inline): If the
8091 `eudc-multiple-match-handling-method' is set to `all', delete the
8092 query string before inserting the query result.
8093
8094 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
8095 flag, to prevent Eshell from using the system ls when
8096 `eshell-ls-insert-directory' is in used.
8097 (eshell-ls-insert-directory): Disable font-lock in directory
8098 buffer so that Eshell's own fontification is seen. This broke
8099 recently due to changes in font-lock, so this goes back to version
8100 21 behavior.
8101
8102 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
8103
8104 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
8105 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
8106 (gdb-many-windows): Doc fix.
8107
8108 2005-10-31 Romain Francoise <romain@orebokech.com>
8109
8110 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
8111
8112 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
8113
8114 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
8115 that global-font-lock-mode can be enabled by default.
8116
8117 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
8118 (font-lock-add-keywords, font-lock-remove-keywords)
8119 (font-lock-fontify-buffer): Remove autoload cookies.
8120
8121 * jit-lock.el (jit-lock-register): Likewise.
8122
8123 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
8124
8125 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
8126
8127 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
8128 intact if there is no gud-comint-buffer.
8129
8130 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
8131
8132 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
8133 old prompt comint-prompt-read-only is t and GDB commands are
8134 issued from tool bar etc.
8135
8136 2005-10-31 Masatake YAMATO <jet@gyve.org>
8137
8138 * vc.el (vc-directory-exclusion-list): Add "{arch}".
8139
8140 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
8141
8142 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
8143 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
8144
8145 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
8146
8147 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
8148 starting at beginning of line. Fontification is messed up when
8149 `open-paren-in-column-0-is-defun-start' set to t.
8150 Reported by John Paul Wallington <jpw@pobox.com>.
8151
8152 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
8153
8154 * comint.el (comint-send-input): Call `comint-update-fence' when
8155 `comint-process-echoes' and `comint-prompt-read-only' are both
8156 non-nil, to avoid leftover read-only newline.
8157
8158 2005-10-30 Richard M. Stallman <rms@gnu.org>
8159
8160 * textmodes/flyspell.el (flyspell-external-point-words):
8161 Detect when WORD can't be checked properly because
8162 flyspell-get-word finds just part of it, and move on.
8163
8164 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
8165 boundarychar for Polish.
8166 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
8167 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
8168
8169 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
8170
8171 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
8172 (gdb-registers-font-lock-keywords): Delete.
8173 (gdb-registers-mode): Don't fontify.
8174 (gdb-info-registers-custom): Use text properties instead as, in
8175 future, changed register values will use font-lock-warning-face.
8176 (gdb-local-font-lock-keywords): Rename to...
8177 (gdb-locals-font-lock-keywords): ...for consistency.
8178
8179 2005-10-30 Andre Spiegel <spiegel@gnu.org>
8180
8181 * vc.el (vc-switch-backend): Better error message if the buffer is
8182 not visiting a file under version control.
8183
8184 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
8185
8186 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
8187
8188 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
8189 ~/.emacs.d/.emacs.
8190
8191 2005-10-29 Richard M. Stallman <rms@gnu.org>
8192
8193 * replace.el (occur-mode-mouse-goto): Always go to other window.
8194 (occur-mode-goto-occurrence): Always switch in same window.
8195
8196 * simple.el (undo): Display message at end, not at start.
8197
8198 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
8199 New arg REUSE-CELL.
8200 (cancel-timer-internal): New function.
8201 (timer-event-handler): Use cancel-timer-internal,
8202 and pass the cell it returns to timer-activate...
8203
8204 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
8205 (jit-lock-deferred-fontify, jit-lock-context-fontify)
8206 (jit-lock-after-change): Test memory-full.
8207
8208 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
8209
8210 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
8211 part of the decoded armor to find the key-identifier.
8212 (pgg-gpg-lookup-key-owner): New function to return the
8213 human-readable identifier of a key owner.
8214 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
8215 key itself.
8216 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
8217 the key value) if we have a key and can match it against a secret
8218 key. Also, added a note pointing out fact that the prompt only
8219 indicates the first matching key.
8220
8221 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
8222 pgg-decrypt-region.
8223 (pgg-pending-timers): A new hash for tracking the passphrase cache
8224 timers, so that new ones supercede old ones.
8225 (pgg-add-passphrase-to-cache): Rename from
8226 `pgg-add-passphrase-cache' to reduce confusion (all callers
8227 changed). Modified to cancel old timers when new ones are added.
8228 (pgg-remove-passphrase-from-cache): Rename from
8229 `pgg-remove-passphrase-cache' to reduce confusion (all callers
8230 changed). Modified to cancel old timers when their keys are
8231 removed from the cache.
8232 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
8233 XEmacs, an indirection to delete-itimer.
8234 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
8235 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
8236 users can only check cache without risk of prompting. Correct bug in
8237 notruncate behavior.
8238 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
8239 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
8240 Add informative docstrings.
8241 (pgg-decrypt): Convey provided passphrase in subordinate call to
8242 pgg-decrypt-region.
8243
8244 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
8245 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
8246 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
8247 `passphrase' argument, so the passphrase can be managed externally
8248 and then passed in to the system.
8249
8250 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
8251 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
8252 so the passphrase cache can be used reliably with identifiers
8253 besides a pgp packet's key id.
8254
8255 * pgg-gpg.el (pgg-pgp-encrypt-region)
8256 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
8257 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
8258 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
8259 argument to all these routines, so the passphrase can be managed
8260 externally and passed in to the system.
8261
8262 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
8263 `notruncate' argument, so the passphrase cache can be used
8264 reliably with identifiers besides a pgp packet's key id.
8265
8266 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
8267
8268 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
8269 symmetric encryption.
8270 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
8271 encrypted session key.
8272 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
8273 message ask for the passphrase in a proper way.
8274
8275 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
8276 New user commands for symmetric encryption.
8277
8278 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
8279
8280 * textmodes/conf-mode.el (conf-assignment-sign)
8281 (conf-assignment-regexp): Fix docstrings.
8282 (conf-mode-initialize): New function.
8283 (conf-mode): Remove optional args. Use delay-mode-hooks to
8284 recognize recursive calls.
8285 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
8286 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
8287 (conf-xdefaults-mode): Use define-derived-mode and
8288 conf-mode-initialize.
8289
8290 2005-10-29 Romain Francoise <romain@orebokech.com>
8291
8292 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
8293
8294 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
8295
8296 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
8297 part of the decoded armor to find the key-identifier.
8298 (pgg-gpg-lookup-key-owner): New function to return the
8299 human-readable identifier of a key owner.
8300 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
8301 key itself.
8302 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
8303 the key value) if we have a key and can match it against a secret
8304 key. Also, added a note pointing out fact that the prompt only
8305 indicates the first matching key.
8306
8307 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
8308 pgg-decrypt-region.
8309 (pgg-pending-timers): A new hash for tracking the passphrase cache
8310 timers, so that new ones supercede old ones.
8311 (pgg-add-passphrase-to-cache): Rename from
8312 `pgg-add-passphrase-cache' to reduce confusion (all callers
8313 changed). Modified to cancel old timers when new ones are added.
8314 (pgg-remove-passphrase-from-cache): Rename from
8315 `pgg-remove-passphrase-cache' to reduce confusion (all callers
8316 changed). Modified to cancel old timers when their keys are
8317 removed from the cache.
8318 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
8319 XEmacs, an indirection to delete-itimer.
8320 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
8321 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
8322 users can only check cache without risk of prompting. Correct bug in
8323 notruncate behavior.
8324 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
8325 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
8326 Add informative docstrings.
8327 (pgg-decrypt): Convey provided passphrase in subordinate call to
8328 pgg-decrypt-region.
8329
8330 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
8331
8332 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
8333 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
8334 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
8335 `passphrase' argument, so the passphrase can be managed externally
8336 and then passed in to the system.
8337
8338 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
8339 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
8340 so the passphrase cache can be used reliably with identifiers
8341 besides a pgp packet's key id.
8342
8343 * pgg-gpg.el (pgg-pgp-encrypt-region)
8344 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
8345 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
8346 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
8347 argument to all these routines, so the passphrase can be managed
8348 externally and passed in to the system.
8349
8350 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
8351 `notruncate' argument, so the passphrase cache can be used
8352 reliably with identifiers besides a pgp packet's key id.
8353
8354 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
8355
8356 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
8357 symmetric encryption.
8358 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
8359 encrypted session key.
8360 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
8361 message ask for the passphrase in a proper way.
8362
8363 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
8364 New user commands for symmetric encryption.
8365
8366 2005-10-28 Bill Wohler <wohler@newt.com>
8367
8368 * help-mode.el (help-url): New button type. Calls browse-url.
8369 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
8370 Similar to Info nodes: URL `url'.
8371 (help-make-xrefs): Create help-url buttons for
8372 help-xref-url-regexp matches.
8373
8374 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
8375
8376 * tool-bar.el (tool-bar-add-item-from-menu)
8377 (tool-bar-local-item-from-menu): Fix doc strings.
8378
8379 2005-10-28 Romain Francoise <romain@orebokech.com>
8380
8381 * ldefs-boot.el: Update.
8382
8383 * subr.el (locate-library): Move from help-fns.el.
8384 * help-fns.el (locate-library): Move to subr.el.
8385
8386 2005-10-28 Richard M. Stallman <rms@gnu.org>
8387
8388 * net/tramp.el (tramp-completion-mode): defvar moved up.
8389
8390 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
8391
8392 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
8393
8394 * files.el (find-file-noselect): Use %d to format large file size.
8395
8396 * bindings.el (mode-line-format): Add %e.
8397
8398 * loadup.el ("facemenu"): Load unconditionally.
8399 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
8400 ("x-dnd"): Load, when appropriate.
8401
8402 * startup.el (command-line): Call before-init-hook earlier.
8403 Warn about some bad characters in -u user name.
8404
8405 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
8406 (flyspell-external-point-words): Error if misspelled word is not found.
8407 Set flyspell-large-region-beg at end of word.
8408
8409 2005-10-28 Andreas Schwab <schwab@suse.de>
8410
8411 * view.el (View-revert-buffer-scroll-page-forward):
8412 Use view-page-size-default.
8413
8414 2005-10-28 Juri Linkov <juri@jurta.org>
8415
8416 * international/quail.el (quail-get-current-str): Translate last
8417 raw character for deterministic input methods.
8418
8419 2005-10-27 Jay Belanger <belanger@truman.edu>
8420
8421 * calc/calc-ext.el: Add functions to autoloads.
8422 (math-identity-matrix-p, math-ident-row-p): New functions.
8423
8424 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
8425 multiplication by an identity matrix; don't turn multiplication by
8426 an inverse matrix into division.
8427 (math-div-symbol-fancy): Replace division by matrices with
8428 multiplication by inverse.
8429
8430 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
8431
8432 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
8433 (calc-writeoutpower): New functions.
8434
8435 2005-10-27 Romain Francoise <romain@orebokech.com>
8436
8437 * replace.el (occur-engine): Include colon in mouse-face highlight.
8438
8439 * dired-x.el: Change Maintainer field.
8440
8441 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
8442
8443 * longlines.el (longlines-mode): Bind after-change-functions to
8444 nil during initial decoding and final encoding.
8445
8446 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
8447
8448 * term.el (term-emulate-terminal, term-handle-colors-array)
8449 (term-handle-ansi-escape): Specify the terminfo capabilities
8450 implemented.
8451
8452 2005-10-26 Richard M. Stallman <rms@gnu.org>
8453
8454 * info.el (Info-fontify-node): Fix detection of sentence-break
8455 before *Note.
8456
8457 2005-10-26 Romain Francoise <romain@orebokech.com>
8458
8459 * smerge-mode.el: Add `tools' to file keywords.
8460
8461 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
8462
8463 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
8464 when the fringe is not available.
8465
8466 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
8467 (def-gdb-auto-update-trigger): Simplify construction.
8468 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
8469 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
8470 defined explicitly.
8471 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
8472 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
8473 defined explicitly.
8474 (gdb-info-locals-custom): Remove as it's a no-op.
8475
8476 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
8477
8478 * longlines.el (longlines-mode): Remove narrowing before
8479 performing the initial decoding or final encoding.
8480
8481 2005-10-25 Romain Francoise <romain@orebokech.com>
8482
8483 * emacs-lisp/find-func.el (find-library-name): Also strip
8484 extension if library name ends in .el, to take advantage of
8485 `find-library-suffixes'.
8486
8487 2005-10-25 Richard M. Stallman <rms@gnu.org>
8488
8489 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
8490
8491 2005-10-25 Juri Linkov <juri@jurta.org>
8492
8493 * textmodes/texinfo.el (texinfo-mode): Change charset of one
8494 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
8495
8496 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8497
8498 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
8499 (blackbox-redefine-key): Add argument `map'.
8500
8501 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
8502 regions when moving the jit-lock-context-unfontify-pos boundary.
8503
8504 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
8505
8506 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
8507
8508 2005-10-25 Masatake YAMATO <jet@gyve.org>
8509
8510 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
8511
8512 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
8513
8514 * play/blackbox.el (blackbox-redefine-key): New function.
8515 (blackbox-mode-map): Use it to remap existing bindings for cursor
8516 motion instead of binding literal keys.
8517
8518 2005-10-25 Glenn Morris <rgm@gnu.org>
8519
8520 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
8521 diary does not end in a newline. Do not assume a blank line at
8522 the start of the diary file.
8523
8524 2005-10-25 Kenichi Handa <handa@m17n.org>
8525
8526 * international/quail.el (quail-translate-key): If the input
8527 method is deterministic and failed to handle the last key, restart
8528 the key handling loop from an appropriate key.
8529
8530 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
8531
8532 * vc.el (vc-dired-mode): Extend comment for binding of
8533 `directory-listing-before-filename-regexp'.
8534
8535 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8536
8537 * textmodes/texinfo.el (texinfo-mode):
8538 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
8539 not to unnecessarily expose emacs-mule's internal char codes.
8540
8541 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
8542
8543 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
8544 Display hand pointer and help-echo on disabled icon too.
8545 (gdb-mouse-until): New function.
8546 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
8547
8548 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
8549
8550 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
8551 with 2005-10-23 change to doctor.el.
8552
8553 * finder.el (finder-mode-map): Add follow-link binding.
8554
8555 2005-10-25 Kim F. Storm <storm@cua.dk>
8556
8557 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
8558 to gdb-mouse-toggle-breakpoint-fringe.
8559 (gdb-mouse-toggle-breakpoint-margin): Rename from
8560 gdb-mouse-toggle-breakpoint. Fix doc.
8561 (gdb-mouse-toggle-breakpoint-fringe): New defun.
8562 (gdb-put-string): Add optional SPROPS arg. Add props to string.
8563 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
8564 string properties also for fringe breakpoint bitmaps.
8565
8566 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
8567
8568 * textmodes/org.el (org-start-icalendar-file): Fix format form.
8569
8570 2005-10-25 Masatake YAMATO <jet@gyve.org>
8571
8572 * simple.el (completion-common-substring):
8573 Use `completion-common-substring' prior to `completion-base-size'.
8574
8575 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
8576
8577 * savehist.el: Require CL while compiling.
8578 (savehist-history-variables): Remove.
8579 (savehist-save-minibuffer-history, savehist-additional-variables)
8580 (savehist-minibuffer-history-variables): New vars.
8581 (savehist-save): Use them.
8582 (savehist-uninstall, savehist-minibuffer-hook): New funs.
8583 (savehist-install): New fun, extracted from savehist-load.
8584 (savehist-load): Use them.
8585
8586 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8587
8588 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
8589 a dummy doc-string-elt property.
8590 (defalias, defvaralias, define-category): Add a docstring property.
8591
8592 * image.el (defimage):
8593 * widget.el (define-widget):
8594 * custom.el (defface, defcustom): Add `doc-string' declaration.
8595
8596 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
8597 (defadvice): Add `doc-string' declaration.
8598
8599 * emacs-lisp/byte-run.el (macro-declaration-function):
8600 Handle `doc-string' declarations.
8601 (define-obsolete-function-alias, define-obsolete-variable-alias):
8602 Add `doc-string' declaration.
8603
8604 2005-10-24 Kenichi Handa <handa@m17n.org>
8605
8606 * international/utf-7.el (utf-7): Add autoload cookie.
8607
8608 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
8609
8610 2005-10-24 Eli Zaretskii <eliz@gnu.org>
8611
8612 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
8613 list of directories passed to batch-update-autoloads. Add "." to
8614 the list of the echoed directories.
8615
8616 * pgg-def.el:
8617 * pgg-gpg.el:
8618 * pgg-parse.el:
8619 * pgg-pgp.el:
8620 * pgg-pgp5.el:
8621 * pgg.el: Moved here from the gnus subdirectory.
8622
8623 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
8624
8625 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
8626 in case comint-prompt-read-only is set to t.
8627
8628 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
8629 in case comint-prompt-read-only is set to t.
8630
8631 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
8632
8633 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
8634 Now a string.
8635 (icalendar-import-format): Handle CLASS, STATUS, URL.
8636 Rename `subject' to `summary'.
8637 (icalendar-import-format-summary): Rename from
8638 `icalendar-import-format-subject'.
8639 (icalendar-import-format-url, icalendar-import-format-status)
8640 (icalendar-import-format-class): New variables.
8641 (icalendar--rris): Take variable argument list.
8642 (icalendar--datestring-to-isodate): Remove unnecessary
8643 calendar-style check when converting dates with explicit month names.
8644 (icalendar-export-region): Change return type of conversion
8645 subroutines. Bury current buffer unless error occurred.
8646 (icalendar--convert-to-ical)
8647 (icalendar--parse-summary-and-rest): New functions.
8648 (icalendar--convert-ordinary-to-ical)
8649 (icalendar--convert-weekly-to-ical)
8650 (icalendar--convert-yearly-to-ical)
8651 (icalendar--convert-block-to-ical)
8652 (icalendar--convert-cyclic-to-ical)
8653 (icalendar--convert-anniversary-to-ical): Change return type.
8654 Strip trailing blanks from subject.
8655 (icalendar--convert-sexp-to-ical): Change return type.
8656 Strip trailing blanks from subject. Handle simple sexp
8657 entries as generated by icalendar.el.
8658 (icalendar--convert-float-to-ical)
8659 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
8660 (icalendar-import-file): Doc fix.
8661 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
8662 Correct call to icalendar--rris.
8663 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
8664 `summary'.
8665 (icalendar--add-diary-entry): Rename `subject' to `summary'.
8666
8667 2005-10-24 Romain Francoise <romain@orebokech.com>
8668
8669 * server.el (server-sentinel): Set query-on-exit flag to nil on
8670 new client processes (it isn't inherited from the server process).
8671
8672 * replace.el (occur-engine): Rearrange text properties.
8673
8674 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8675
8676 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
8677 case-fold-search is nil.
8678 (debug-help-follow): Use help-xref-interned directly.
8679
8680 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
8681
8682 * thumbs.el (thumbs-image-type): Add .pbm.
8683
8684 2005-10-23 Richard M. Stallman <rms@gnu.org>
8685
8686 * faces.el (inhibit-face-set-after-frame-default): New variable.
8687 (set-face-attribute): Bind it.
8688 (face-set-after-frame-default): Test it.
8689
8690 * help-fns.el (describe-simplify-lib-file-name): New function.
8691 (describe-function-1, describe-variable): Use it.
8692
8693 * faces.el (describe-face): Use describe-simplify-lib-file-name.
8694
8695 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
8696 Eliminate nil as possible value.
8697 (tooltip-hide-delay): Reduce internal-border-width.
8698
8699 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
8700 (menu-bar-file-menu) <new-file>: Likewise.
8701
8702 * simple.el (line-move-finish): Ignore fields computing LINE-END.
8703
8704 * international/mule.el (load-with-code-conversion):
8705 Pass full file name to `eval-buffer' unless preloading.
8706
8707 * textmodes/flyspell.el (flyspell-large-region):
8708 Call ispell-check-version.
8709
8710 * textmodes/ispell.el (ispell-local-dictionary-overridden):
8711 Fix the make-variable-buffer-local call that was supposed
8712 to be for this variable.
8713 (ispell-aspell-supports-utf8): Doc fix.
8714 (ispell-find-aspell-dictionaries): Preserve elements of
8715 ispell-dictionary-alist for dictionaries that aspell doesn't report.
8716 (ispell-aspell-find-dictionary): Return nil on error.
8717
8718 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
8719 (doctor-symptoms): Likewise.
8720
8721 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
8722
8723 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
8724
8725 * cus-edit.el (custom-button, custom-button-pressed): New vars.
8726 (custom-raised-buttons): Add :set spec.
8727 (custom-button-unraised, custom-button-pressed-unraised):
8728 New faces, so that custom-raised-buttons actually does something.
8729 (custom-mode): Use custom-button and custom-button-pressed.
8730
8731 * wid-edit.el (widget-specify-button): Don't ignore
8732 widget-mouse-face on graphic terminals.
8733 (widget-move-and-invoke): Cleanup.
8734
8735 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
8736
8737 * whitespace.el (whitespace-cleanup): Doc fix.
8738
8739 2005-10-23 Romain Francoise <romain@orebokech.com>
8740
8741 * emulation/viper.el (viper-set-hooks): Quote forms passed to
8742 `eval-after-load' to avoid evaluating their result.
8743
8744 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
8745
8746 * files.el (directory-listing-before-filename-regexp):
8747 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
8748
8749 * dired.el (dired-move-to-filename-regexp): Remove.
8750 All occurences replaced by `directory-listing-before-filename-regexp'.
8751
8752 * dired-x.el, locate.el, vc.el:
8753 Replace `dired-move-to-filename-regexp' by
8754 `directory-listing-before-filename-regexp'. In vc.el it is
8755 overwritten locally; maybe this can be handled in files.el too.
8756
8757 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
8758 replaced by `directory-listing-before-filename-regexp'.
8759
8760 2005-10-23 Andreas Schwab <schwab@suse.de>
8761
8762 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
8763 and eval-next-after-load.
8764
8765 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
8766
8767 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
8768 exist, create it.
8769
8770 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
8771
8772 * allout.el: Remove autoloads for mailcrypt and crypt++.
8773 Require pgg, pgg-gpg during compilation.
8774 (allout-version): Increment version number to 2.1, and use a literal
8775 rather than RCS Id.
8776 (allout-default-encryption-scheme): Remove.
8777 (allout-passphrase-verifier-handling)
8778 (allout-passphrase-verifier-string)
8779 (allout-file-passphrase-verifier-string)
8780 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
8781 (allout-passphrase-hint-handling): Rename and simplify.
8782 (allout-init): Use `find-file-hook' if available, otherwise
8783 `find-file-hooks'.
8784 (allout-mode): Use `write-file-functions' if available, otherwise
8785 `local-write-file-hooks' and, instead of making auto-save-hook
8786 buffer local, make the write-file-hook activity contingent to
8787 allout-mode.
8788 (allout-mode): Use key-binding substitution in the docstring.
8789 (allout-kill-line): Spell-out kill ring data structure mutation
8790 instead of using byte-compiler-complaint-provoking `pop'.
8791 (allout-insert-listified): Use `insert' rather than `insert-string'
8792 (allout-toggle-current-subtree-encryption): Update docstring, adjust
8793 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
8794 (allout-encrypt-string): Totally revamped vis new underlying
8795 encryption facilities.
8796 (allout-mc-activate-passwd): Remove.
8797 (allout-obtain-passphrase): New, more or less replaces
8798 allout-mc-activate-passwd.
8799 (allout-encrypted-key-info): More or less replaces
8800 allout-encrypted-text-type.
8801 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
8802 (my-mark-marker): Use `(featurep 'xemacs)'.
8803
8804 2005-10-23 Lars Hansen <larsh@soem.dk>
8805
8806 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
8807 (byte-compile-file-form-defmumble, byte-compile-defun)
8808 (byte-compile-defmacro): Use it.
8809 (byte-compile-form): Don't call byte-compile-set-symbol-position
8810 when a byte-compile handler is called.
8811
8812 2005-10-22 Romain Francoise <romain@orebokech.com>
8813
8814 * savehist.el (savehist-history-variables): Add `grep-find-history'.
8815
8816 * subr.el (eval-after-load): Convert library name to an absolute
8817 file name using locate-library, since load-history no longer has
8818 library names in it.
8819
8820 2005-10-22 Richard M. Stallman <rms@gnu.org>
8821
8822 * files.el (make-temp-file): Move from subr.el.
8823 * subr.el (make-temp-file): Move to files.el.
8824
8825 * window.el (get-buffer-window-list): Move from subr.el.
8826 * subr.el (get-buffer-window-list): Move to window.el.
8827
8828 * image.el (image-load-path): Use eval-at-startup to initialize.
8829
8830 * subr.el (eval-at-startup): New macro.
8831
8832 * subr.el: Much rearrangement of functions and division
8833 into pages. No code changes.
8834
8835 2005-10-22 Kenichi Handa <handa@m17n.org>
8836
8837 * tar-mode.el (tar-extract): Be sure to call
8838 find-operation-coding-system if set-auto-coding doesn't find a
8839 coding system.
8840
8841 2005-10-22 Kim F. Storm <storm@cua.dk>
8842
8843 * image.el (image-type-header-regexps): Rename from image-type-regexps.
8844 Change users.
8845 (image-type-file-name-regexps): New defconst.
8846 (image-type-from-data): Simplify loop.
8847 (image-type-from-buffer): New defun.
8848 (image-type-from-file-header): Use it instead of image-type-from-data.
8849 Use image-search-load-path instead of only looking in data-directory.
8850 (image-type-from-file-name): New defun.
8851 (image-search-load-path): Change `pathname' to `filename'.
8852 Make PATH arg optional, default to image-load-path.
8853
8854 2005-10-21 Richard M. Stallman <rms@gnu.org>
8855
8856 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
8857
8858 * textmodes/paragraphs.el (sentence-end-base): New variable.
8859 (sentence-end): Use sentence-end-base.
8860
8861 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8862
8863 * font-lock.el (font-lock-default-fontify-region): Check the multiline
8864 property independently from the font-lock-multiline variable.
8865
8866 2005-10-21 Richard M. Stallman <rms@gnu.org>
8867
8868 * emacs-lisp/find-func.el (find-library-name): Doc fix.
8869
8870 * startup.el (command-line): Convert library names
8871 in `load-history' to absolute file names.
8872
8873 * subr.el (symbol-file): Doc fix.
8874
8875 * loadhist.el (file-loadhist-lookup): Call locate-library
8876 instead of find-library-name. Don't try converting
8877 abs file names to library names, since load-history no longer
8878 has library names in it.
8879 (file-dependents, file-provides, file-requires): Doc fixes.
8880
8881 2005-10-21 Juri Linkov <juri@jurta.org>
8882
8883 * progmodes/etags.el (tags-table-mode): New function.
8884 (tags-verify-table): Replace initialize-new-tags-table with
8885 tags-table-mode.
8886
8887 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
8888 default value.
8889 (desktop-modes-not-to-save): Add tags-table-mode to the
8890 default value.
8891
8892 * info.el (Info-index-next): Add total number of index
8893 alternatives to the message.
8894
8895 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
8896 backward only space (instead of space and period) before looking
8897 at sentence end.
8898
8899 * simple.el (set-variable): Use user-variable-p instead of symbolp.
8900 Add the old variable value as 4th default-value arg of read-string.
8901
8902 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8903
8904 * cus-face.el (custom-declare-face): Make face from X resources
8905 also on Mac.
8906
8907 * disp-table.el (standard-display-g1, standard-display-graphic):
8908 Refuse to use string glyphs also on Mac.
8909 (standard-display-european): Don't set terminal coding system also
8910 on Mac.
8911
8912 * frame.el (display-screens): Use x-display-screens also on Mac.
8913
8914 2005-10-21 Romain Francoise <romain@orebokech.com>
8915
8916 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
8917
8918 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
8919
8920 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
8921 and $? into sexps.
8922
8923 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
8924 warning face on open-paren-in-column-0.
8925
8926 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
8927 boundary case. Fix typo.
8928 Suggested by Martin Rudalics <rudalics@gmx.at>.
8929
8930 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
8931
8932 * textmodes/org.el (org-combined-agenda-icalendar-file)
8933 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
8934 (org-export-icalendar-this-file)
8935 (org-export-icalendar-all-agenda-files)
8936 (org-export-icalendar-combine-agenda-files): New commands.
8937 (org-export-icalendar, org-print-icalendar-entries)
8938 (org-start-icalendar-file, org-finish-icalendar-file)
8939 (org-ical-ts-to-string): New functions.
8940 (org-read-date, org-goto-calendar)
8941 (org-agenda-goto-calendar): Inhibit displaying diary entries by
8942 call to `calendar'.
8943 (orgtbl-setup): Remove the :keys arguments from the menu description.
8944 (org-after-save-iCalendar-file-hook): New variable.
8945
8946 2005-10-21 Kenichi Handa <handa@m17n.org>
8947
8948 * language/vietnamese.el (tcvn-5712): Make it an alias of
8949 vietnamese-tcvn coding-system.
8950
8951 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
8952
8953 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
8954 group id is given.
8955
8956 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
8957
8958 * progmodes/sh-script.el (sh-escaped-line-re): New var.
8959 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
8960 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
8961 whose line is either continued or ends with a comment.
8962
8963 2005-10-20 Romain Francoise <romain@orebokech.com>
8964
8965 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
8966
8967 * replace.el (occur-engine): Add follow-link property.
8968
8969 * font-core.el (font-lock-mode): Doc fix.
8970
8971 2005-10-20 Richard M. Stallman <rms@gnu.org>
8972
8973 * net/rcirc.el: New file.
8974
8975 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
8976
8977 * term.el (term-term-name): Initialize to "eterm-color".
8978
8979 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
8980
8981 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
8982 for encryption functionality.
8983 Move allout customization subgroup from `editing' to `outlines' group.
8984 Fix commentary keywords to legitimate ones.
8985 Update author info (using my current email address, obscurified).
8986 (allout-encrypt-string, allout-encryption-produce-work-buffer)
8987 (allout-encrypted-topic-p, allout-encrypted-text-type)
8988 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
8989 (allout-situate-encryption-key-verifier)
8990 (allout-get-encryption-key-verifier, allout-verify-key)
8991 (allout-next-topic-pending-encryption)
8992 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
8993 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
8994 (outline-key-verifier-handling, outline-key-hint-handling)
8995 (outline-encrypt-unencrypted-on-saves): New defcustoms.
8996 (allout-file-key-verifier-string, allout-encryption-scheme)
8997 (allout-key-verifier-string, allout-key-hint-string)
8998 (allout-after-save-decrypt): New variables.
8999 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
9000 (allout-after-saves-handler): New hook functions.
9001 (allout-post-command-business): Do allout-after-save-decrypt.
9002 (allout-enable-file-variable-adjustment): Custom var to enable
9003 mechanism for adding and adjusting settings of Emacs file variables.
9004 (allout-adjust-file-variable, allout-file-vars-section-data):
9005 New functions, implement the mechanism.
9006 (outlineify-sticky): Use the file vars mechanism.
9007 (allout-inhibit-protection, allout-during-write-cue)
9008 (allout-override-protect, allout-before-change-protect): Remove.
9009 (allout-flag-region, allout-open-topic): Adjust read-only text.
9010 (allout-open-line-not-read-only): Add to facilitate read-only
9011 text based protection.
9012 (allout-kill-line): Revise to adjust read-only text, clue the
9013 user about the inhibition.
9014 (allout-unprotected): Use unwind-protect.
9015 (allout-shift-in, allout-shift-out): Disallow manually shifting a
9016 topic deeper than the offspring depth of the previous topic -
9017 avoiding confusing "containment discontinuities".
9018 (allout-reindent-bodies): Fix retention of body relative hanging
9019 indent during promotion of collapsed bodies.
9020 (allout-open-topic): Make it easy to open new topic with same
9021 bullet as current topic - topic creation functions provided with
9022 any universal argument provokes now prompt for bullet, defaulting
9023 to the bullet of the previous topic.
9024 (allout-plain-bullets-string, allout-distinctive-bullets-string):
9025 Plain bullet alternates `.' period and `,' comma only. All other
9026 bullets are relegated to special status (but customizable).
9027 (allout-end-of-entry): Rename from allout-end-of-current-entry
9028 since it actually operates w.r.t. most immediately containing
9029 entry, visible or not.
9030 (allout-hide-current-entry, allout-show-current-entry): Use the
9031 revised version.
9032 (allout-old-expose-topic): Solidify deprecation.
9033 (allout-end-of-subtree): Add so we can span concealed as well
9034 as visible topics.
9035 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
9036 (allout-end-of-current-heading): Tweak to just respect the first line.
9037 (allout-get-body-text): Add.
9038 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
9039 when invoked interactively.
9040 (allout-up-current-level): Use `interactive-p'.
9041 (allout-mode, allout-init): Miscellaneous docstring and
9042 operational refinements, as well as hookups of new encryption stuff.
9043 (allout-beginning-of-current-entry): Now works as advertised.
9044 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
9045 (allout-isearch-rectification): Refine condition for isearching.
9046 (allout-isearch-abort, allout-enwrap-isearch)
9047 (allout-flag-region, my-region-active-p): Relocate some macros.
9048 (allout-title): Fallback title is (buffer-name), not
9049 non-existing (current-buffer-name).
9050 (subst-char-in-string): Define if absent (for some XEmacs versions).
9051
9052 2005-10-20 Jari Aalto <jari.aalto@cante.net>
9053
9054 * mail/sendmail.el (mail-setup-hook, mail-aliases)
9055 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
9056 (mail-citation-prefix-regexp, mail-signature-file)
9057 (mail-default-headers, mail-bury-selects-summary)
9058 (mail-send-nonascii): Add autoload cookies.
9059
9060 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9061
9062 * frame.el (blink-cursor-mode): Add `mac' to the list of
9063 window-system's that support blinking cursor.
9064
9065 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
9066
9067 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
9068
9069 2005-10-20 Eli Zaretskii <eliz@gnu.org>
9070
9071 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
9072 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
9073 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
9074
9075 2005-10-20 Kim F. Storm <storm@cua.dk>
9076
9077 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
9078 (ido-set-current-directory): Don't add / after final @.
9079 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
9080 Explicitly handle ange-ftp completion oddities.
9081 (ido-make-file-list): Don't rotate list at tramp root to avoid
9082 triggering tramp file handler for expand-file-name via get-file-buffer.
9083
9084 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
9085
9086 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
9087
9088 2005-10-19 Jay Belanger <belanger@truman.edu>
9089
9090 * calc/calc-units.el (math-standard-units): Add units, adjust
9091 symbols and update values.
9092 (math-unit-prefixes): Add more prefixes.
9093
9094 2005-10-19 Romain Francoise <romain@orebokech.com>
9095
9096 * bookmark.el (bookmark-menu-heading): New face.
9097 (bookmark-bmenu-list): Use it.
9098 Don't fiddle with `baud-rate' at top-level.
9099
9100 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
9101
9102 * image.el (create-image, find-image): Mention max-image-size in
9103 docstring.
9104
9105 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9106
9107 * savehist.el (savehist-load): Revert to checking XEmacs.
9108
9109 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
9110 Various docstring and line-width fixups.
9111 (conf-mode): Use cond.
9112 Set font-lock-defaults. Don't set comment-use-syntax.
9113
9114 2005-10-18 David Ponce <david@dponce.com>
9115
9116 * tree-widget.el (tree-widget-button-click): New function.
9117 (tree-widget-button-keymap): Use it.
9118
9119 2005-10-18 Romain Francoise <romain@orebokech.com>
9120
9121 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
9122 (bookmark-bmenu-hide-filenames): Add follow-link property.
9123 Improve help-echo text.
9124
9125 * ffap.el (find-file-at-point): Doc fix.
9126
9127 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9128
9129 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
9130
9131 2005-10-18 Masatake YAMATO <jet@gyve.org>
9132
9133 Install to the CVS repository what I forgot to install in my
9134 2005-10-16 changes.
9135
9136 * progmodes/python.el (python-complete-symbol): Pass the common
9137 prefix substring of completion to `display-completion-list'.
9138
9139 * textmodes/org.el (org-complete): Ditto.
9140
9141 2005-10-18 Masatake YAMATO <jet@gyve.org>
9142
9143 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
9144
9145 * woman.el (WoMan-xref-man-page): New button type derived
9146 from `Man-abstract-xref-man-page'.
9147 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
9148
9149 * man.el (Man-abstract-xref-man-page): New button type.
9150 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
9151 (Man-highlight-references): Add new optional argument `xref-man-type'.
9152
9153 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
9154
9155 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
9156
9157 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
9158
9159 * cus-edit.el (Custom-move-and-invoke): Delete.
9160 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
9161
9162 * wid-edit.el (widget-move-and-invoke): New function, from
9163 Custom-move-and-invoke.
9164
9165 2005-10-17 Bill Wohler <wohler@newt.com>
9166
9167 Move all remaining images from lisp/toolbar to etc/images, move
9168 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
9169 the low resolution images in their own directory (low-color).
9170
9171 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
9172 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
9173 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
9174 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
9175 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
9176 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
9177 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
9178
9179 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
9180 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
9181 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
9182 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
9183 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
9184 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
9185 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
9186 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
9187 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
9188 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
9189 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
9190 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
9191 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
9192 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
9193 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
9194
9195 To conform with convention, replace the underscore (_) in the
9196 following image names with dash (-) or (/) as appropriate.
9197
9198 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
9199 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
9200 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
9201 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
9202 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
9203 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
9204 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
9205 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
9206 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
9207 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
9208 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
9209 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
9210 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
9211 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
9212 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
9213
9214 * info.el (info-tool-bar-map): Replace underscores in image names
9215 with dashes.
9216
9217 * makefile.w32-in (WINS): Remove toolbar.
9218
9219 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
9220
9221 * tool-bar.el: Move to lisp from toolbar. Now that
9222 toolbar is empty, it should be deleted when folks run "cvs up -P".
9223
9224 2005-10-18 Jay Belanger <belanger@truman.edu>
9225
9226 * calc/calc-store.el (calc-store-into): Get the proper variable name
9227 to display in message.
9228
9229 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
9230
9231 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
9232 expressions display in speedbar for all buffers when debugging.
9233 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
9234
9235 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
9236 (speedbar-insert-button, speedbar-make-button):
9237 Use add-text-properties.
9238 (speedbar-update-localized-contents)
9239 (speedbar-update-directory-contents)
9240 (speedbar-update-special-contents): Use dolist.
9241 (speedbar-buffer-easymenu-definition): Add a menu separator.
9242
9243 2005-10-17 Jason Rumney <jasonr@gnu.org>
9244
9245 * makefile.w32-in: Use $(lisp) consistently.
9246 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
9247 for shell specific generation of mh-autoloads.
9248
9249 2005-10-17 Richard M. Stallman <rms@gnu.org>
9250
9251 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
9252
9253 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9254
9255 * jit-lock.el (jit-lock-fontify-now):
9256 Move jit-lock-context-unfontify-pos to avoid wasted work.
9257
9258 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
9259
9260 * net/tramp.el (tramp-completion-mode): New defvar. Used in
9261 `tramp-completion-mode' for checking if we are in completion mode.
9262 (tramp-completion-handle-file-name-all-completions): Reorder code
9263 in order to complete for file names only in case there are no
9264 method/user/host completions. This is necessary for cooperation
9265 with ido. Reported by Kim F. Storm <storm@cua.dk>.
9266
9267 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
9268
9269 * longlines.el (longlines-search-forward)
9270 (longlines-search-backward): Match any number of spaces.
9271
9272 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
9273
9274 * diff-mode.el (diff-mode): Doc fix.
9275
9276 2005-10-16 David Reitter <david.reitter@gmail.com>
9277
9278 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
9279 as default on darwin and windows systems.
9280
9281 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
9282
9283 * arc-mode.el (archive-zip-extract): Doc fix.
9284
9285 2005-10-16 Romain Francoise <romain@orebokech.com>
9286
9287 * mouse.el (mouse-1-click-follows-link): Doc fix.
9288
9289 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
9290
9291 * savehist.el: Don't require CL at runtime.
9292 (savehist-xemacs): Remove.
9293 (savehist-coding-system): Use utf-8 if present, regardless of religion.
9294 (savehist-no-conversion): Use (featurep 'xemacs).
9295 (savehist-load): Check existence of start-itimer rather than XEmacs.
9296 Use an idle timer.
9297 (savehist-process-for-saving): Replace use of CL funs `subseq' and
9298 `delete-if-not'.
9299
9300 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
9301
9302 * savehist.el: Newer version.
9303 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
9304 (savehist-last-checksum, savehist-no-conversion): New vars.
9305 (savehist-autosave, savehist-process-for-saving, savehist-printable):
9306 New functions.
9307 (savehist-load, savehist-save): Use them.
9308 (savehist-delimit): Remove.
9309
9310 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
9311
9312 * progmodes/compile.el (compilation-goto-locus): Display the
9313 compilation buffer first and the source buffer second, in case they're
9314 in overlapping frames. Don't raise the compilation frame if it was the
9315 selected window upon entry. Pass the `other-window' arg to
9316 pop-to-buffer.
9317
9318 * info.el (Info-fontify-node): Use dolist.
9319 Change add-text-properties to put-text-property.
9320
9321 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9322
9323 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
9324 bound of search.
9325
9326 2005-10-16 Masatake YAMATO <jet@gyve.org>
9327
9328 * dabbrev.el (dabbrev-completion): Pass the common
9329 prefix substring of completion to `display-completion-list'.
9330
9331 * filecache.el (file-cache-minibuffer-complete)
9332 (file-cache-complete): Ditto.
9333
9334 * tempo.el (tempo-display-completions): Ditto.
9335
9336 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
9337
9338 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
9339
9340 * eshell/em-hist.el (eshell-list-history): Ditto.
9341
9342 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
9343
9344 * mail/mailalias.el (mail-complete): Ditto.
9345
9346 * progmodes/etags.el (complete-tag): Ditto.
9347
9348 * progmodes/make-mode.el (makefile-complete): Ditto.
9349
9350 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
9351
9352 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
9353
9354 * progmodes/pascal.el (pascal-complete-word)
9355 (pascal-show-completions): Ditto.
9356
9357 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
9358
9359 * simple.el (completion-common-substring): New variable.
9360 (completion-setup-function): Use `completion-common-substring'
9361 to put faces.
9362
9363 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9364
9365 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
9366 (x-get-selection, mac-select-convert-to-string): Convert from/to
9367 UTF-16 clipboard data as in native byte order, no BOM.
9368
9369 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
9370
9371 * progmodes/gud.el (gud-tool-bar-map): Rename the images
9372 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
9373 (gud-sentinel): Use speedbar-frame to check for speedbar.
9374
9375 2005-10-15 Richard M. Stallman <rms@gnu.org>
9376
9377 * savehist.el: New file.
9378
9379 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
9380
9381 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
9382 Fix bug in \bf fontification.
9383
9384 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
9385
9386 * pcvs.el (cvs-edit-log-files): New var.
9387 (cvs-mode-edit-log): New arg `file'.
9388 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
9389 Instead force the use of the original file and nothing else.
9390 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
9391 the cvs-minor-wrap-function is set.
9392 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
9393
9394 2005-10-14 Bill Wohler <wohler@newt.com>
9395
9396 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
9397 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
9398 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
9399 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
9400 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
9401 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
9402 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
9403 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
9404 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
9405 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
9406 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
9407 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
9408 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
9409 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
9410 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
9411
9412 * progmodes/gud.el (gud-tool-bar-map): Rename the images
9413 appropriately (for example, gud-break to gud/break).
9414
9415 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
9416
9417 * longlines.el (longlinges-search-function)
9418 (longlines-search-forward, longlines-search-backward): New functions.
9419 (longlines-mode): Set isearch-search-fun-function to
9420 longlinges-search-function.
9421
9422 * mouse.el (mouse-drag-region-1): Handle the case where a
9423 double-click event is bound to an arbitrary function.
9424
9425 2005-10-14 David Ponce <david@dponce.com>
9426
9427 * recentf.el (recentf-track-opened-file)
9428 (recentf-track-closed-file, recentf-update-menu)
9429 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
9430 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
9431 mouse-1-click-follows-link.
9432
9433 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9434
9435 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
9436 Gnome file-manager.png. Suggested by
9437 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
9438
9439 * toolbar/README: Add diropen.xpm.
9440
9441 2005-10-13 Bill Wohler <wohler@newt.com>
9442
9443 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
9444 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
9445
9446 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
9449 Don't waste the byte-compiler's time on constant data.
9450
9451 2005-10-13 Kenichi Handa <handa@m17n.org>
9452
9453 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
9454 byte with `escape-glyph' face.
9455
9456 * international/fontset.el (ccl-encode-unicode-font):
9457 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
9458 Handle the case that ucs-mule-to-mule-unicode translates a character to
9459 ASCII (usually for IPA characters).
9460
9461 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9462
9463 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
9464 Don't hide the underline of titles if font-lock-mode is disabled.
9465
9466 2005-10-12 Bill Wohler <wohler@newt.com>
9467
9468 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
9469 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
9470 files in MH-E-SRC have been updated.
9471 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
9472
9473 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9474
9475 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
9476 (mixal-mode-syntax-table): Add \n as end-comment.
9477 (mixal-operation-codes-alist): Immediately initialize to full value.
9478 (mixal-add-operation-code): Remove.
9479 (mixal-describe-operation-code): Make the arg non-optional.
9480 Use the interactive spec instead.
9481 Use mixal-operation-codes-alist rather than mixal-operation-codes.
9482 (mixal-font-lock-keywords): Don't highlight comments here any more.
9483 (mixal-font-lock-syntactic-keywords): New var.
9484 (mixal-mode): Use it. Fix comment-start-skip.
9485
9486 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9487
9488 * startup.el (command-line-x-option-alist): -nb => -nbi
9489
9490 2005-10-12 Kim F. Storm <storm@cua.dk>
9491
9492 * startup.el (fancy-splash-default-action): Discard mouse click in
9493 the splash screen window, as it has no sensible meaning in the
9494 next window to be selected. Fixes error reported by Jan D.
9495
9496 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
9497
9498 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
9499
9500 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9501
9502 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
9503 Try to fix up minor layout issues like indentation, line break, etc...
9504 (mixal-mode-syntax-table): Don't try to specify comment syntax,
9505 because it doesn't work.
9506 (mixal-operation-codes): Add some more codes.
9507 (mixal-font-lock-keywords): Process comments here.
9508 (mixal-mode): mixasm no longer needs -g option.
9509
9510 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
9511
9512 * progmodes/sh-script.el (sh-tmp-file):
9513 Use mktemp -t. Finish support for es and rc shells.
9514
9515 2005-10-11 Jay Belanger <belanger@truman.edu>
9516
9517 * calc/calcalg2.el (calc-integral): With an argument, compute the
9518 definite integral.
9519
9520 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
9521
9522 * mouse.el (mouse-drag-region-1): Don't try to catch a
9523 double-click when doing follow-link (it's overridden anyway).
9524
9525 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
9526
9527 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
9528 (autoload-print-form-outbuf): Add docstring.
9529
9530 2005-10-11 Juri Linkov <juri@jurta.org>
9531
9532 * info.el (Info-mode-menu): Delete menu item "Edit".
9533 (Info-mode): Delete description of Info-edit from docstring,
9534 and rearrange descriptions of Info commands in the order
9535 they are documented in the Info manual.
9536
9537 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9538
9539 * calendar/appt.el (appt-check): Use diary-selective-display var.
9540
9541 2005-10-10 Richard M. Stallman <rms@gnu.org>
9542
9543 * net/newsticker.el (newsticker-start, newsticker-show-news):
9544 Add autoload cookies.
9545
9546 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
9547
9548 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
9549
9550 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
9551
9552 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
9553
9554 2005-10-10 Jay Belanger <belanger@truman.edu>
9555
9556 * calc/calc-arith.el (math-check-known-scalarp)
9557 (math-check-known-matrixp): Check the values of arguments that are
9558 variables.
9559 (math-check-known-square-matrixp): New function.
9560 (math-known-square-matrixp): Use math-check-known-square-matrixp.
9561 (math-super-types): Add sqmatrix type.
9562
9563 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
9564 mode name `square' to `sqmatrix'.
9565
9566 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
9567 mode name `square' to `sqmatrix'.
9568
9569 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
9570
9571 * progmodes/etags.el (select-tags-table-mode): Don't use
9572 selective-display.
9573 (tags-select-tags-table): Pass `button' to the action function.
9574 (select-tags-table): Place the side-info on button properties rather
9575 than in hidden text. Abbreviate file names.
9576 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
9577 (select-tags-table-select): Add `button' argument.
9578 Get side-info from the button property rather than from hidden text.
9579
9580 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
9581
9582 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
9583 (gud-speedbar-buttons): Preserve point if possible.
9584 (gud-sentinel): Restore previous speedbar display type.
9585
9586 * progmodes/gdb-ui.el (gdba): Improve diagram.
9587 (def-gdb-auto-update-handler, gdb-info-locals-handler)
9588 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
9589 Call get-buffer-window once.
9590
9591 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
9592
9593 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
9594 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
9595 (pascal-indent-command): Remove unused var `ind'.
9596 (pascal-indent-case): Remove unused var `oldpos'.
9597 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
9598 since it's now used as a proper minor mode map.
9599 (pascal-outline): Rename to pascal-outline-mode.
9600 (pascal-outline-mode): Use define-minor-mode.
9601 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
9602 selective-display.
9603
9604 2005-10-10 Andreas Schwab <schwab@suse.de>
9605
9606 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
9607 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
9608
9609 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
9610 outside source directory.
9611
9612 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
9613
9614 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
9615 C-x' as a prefix.
9616 (orgtbl-mode-map): Full keymap instead of sparse, because all
9617 `self-insert-command' keys are redefined in this map.
9618 (org-export-as-html): Specify charset for HTML file, by taking it
9619 from the coding system.
9620
9621 2005-10-10 Kenichi Handa <handa@m17n.org>
9622
9623 * textmodes/flyspell.el (flyspell-check-word-p):
9624 If unread-command-events is non-empty, don't call sit-for.
9625
9626 2005-10-09 Richard M. Stallman <rms@gnu.org>
9627
9628 * font-lock.el (font-lock-syntactic-keywords)
9629 (font-lock-keywords): Doc fixes.
9630
9631 * textmodes/flyspell.el (flyspell-external-point-words):
9632 Simplify logic, and don't try to check for consecutive appearances
9633 of one incorrect word.
9634
9635 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
9636
9637 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
9638 separator.
9639
9640 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
9641 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
9642 (gud-expansion-speedbar-buttons): New function.
9643 (gud-speedbar-buttons): Check for gud-comint-buffer.
9644
9645 2005-10-09 Bill Wohler <wohler@newt.com>
9646
9647 * Makefile.in (updates): Add mh-loaddefs dependency.
9648
9649 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
9650
9651 * speedbar.el (speedbar-file-key-map): Fix typo.
9652
9653 2005-10-09 Daniel Brockman <daniel@brockman.se>
9654
9655 * cus-start.el (line-spacing): Add custom spec.
9656
9657 2005-10-09 Romain Francoise <romain@orebokech.com>
9658
9659 * textmodes/ispell.el (ispell-check-version): Fix last change.
9660
9661 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9662
9663 * term/x-win.el: Remove -i, --icon-type from comment.
9664
9665 * startup.el (command-line-x-option-alist): Remove options -i,
9666 -itype, --icon-type, added -nb, --no-bitmap-icon
9667
9668 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
9669
9670 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
9671 instead of :active.
9672
9673 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
9674
9675 * textmodes/ispell.el (ispell-check-version):
9676 Ignore hyphen, and all that follows, in aspell's version text.
9677
9678 2005-10-08 Jay Belanger <belanger@truman.edu>
9679
9680 * calc/calc-arith.el (math-known-square-matrixp): New function.
9681 (math-pow-fancy): Check for matrices before distributing exponent
9682 across products.
9683
9684 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
9685 fullscreen keypad. Suggested by Luc Teirlinck.
9686 (calc-keypad-show-input): Add space for formatting.
9687
9688 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
9689 Add square matrix option.
9690
9691 * calc/calc-poly.el (math-expand-term): Check for matrices instead
9692 of checking calc-matrix-mode when deciding how to expand.
9693
9694 * calc/calc.el (calc-set-mode-line): Add square matrix option.
9695
9696 2005-10-08 Lars Hansen <larsh@soem.dk>
9697
9698 * net/tramp.el (tramp-perl-directory-files-and-attributes):
9699 Add error handling.
9700 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
9701
9702 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
9703
9704 Sync with Tramp 2.0.51.
9705
9706 * net/tramp.el (tramp-handle-set-visited-file-modtime)
9707 (tramp-handle-insert-file-contents, tramp-handle-write-region):
9708 Insert special handling for `last-coding-system-used', again
9709 it still seems to be necessary (unlike stated before).
9710 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
9711 (tramp-password-prompt-regexp): There might be other words before
9712 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
9713 (tramp-chunksize): Improve docstring.
9714 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
9715 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
9716 Christian Joergensen <bugs@razor.dk>.
9717
9718 2005-10-07 Glenn Morris <rgm@gnu.org>
9719
9720 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
9721 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
9722 precision'.
9723
9724 2005-10-07 Romain Francoise <romain@orebokech.com>
9725
9726 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
9727 (ibuffer-do-shell-command-pipe-replace)
9728 (ibuffer-do-shell-command-file, ibuffer-do-eval)
9729 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
9730 (ibuffer-do-revert, ibuffer-do-replace-regexp)
9731 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
9732 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
9733 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
9734 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
9735 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
9736 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
9737 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
9738 Autoload file sans suffix.
9739
9740 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
9741
9742 2005-10-07 David Ponce <david@dponce.com>
9743
9744 * recentf.el (recentf-menu-open-all-flag): New option.
9745 (recentf-digit-shortcut-command-name): New function.
9746 (recentf--shortcuts-keymap): New variable.
9747 (recentf-menu-shortcuts): New variable.
9748 (recentf-make-menu-items): Initialize it. Replace the "More..."
9749 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
9750 (recentf-menu-value-shortcut): New function.
9751 (recentf-make-menu-item): Use it. No more in-lined.
9752 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
9753 (recentf-open-most-recent-file): Rename from
9754 `recentf-open-file-with-key'. Don't depend on key binding.
9755 (recentf-mode-map): New variable.
9756 (recentf-mode): Use it.
9757
9758 2005-10-06 Bill Wohler <wohler@newt.com>
9759
9760 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
9761
9762 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
9763 (MH-E-SRC): New. Used by mh-autoloads.
9764 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
9765 files in MH-E-SRC have been updated.
9766 (compile, recompile, bootstrap): Depend on mh-autoloads.
9767
9768 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
9769
9770 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
9771 gud-break and gud-remove icons when the fringe is not available.
9772
9773 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
9774 Typo.
9775
9776 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
9777
9778 * play/zone.el (zone): Wrap body with save-window-excursion.
9779
9780 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
9781
9782 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
9783 Use the new `list-only' arg to diary-list-entries.
9784
9785 * calendar/diary-lib.el: Use overlays rather than selective-display.
9786 (diary-selective-display): New var.
9787 (diary-header-line-format): Use it.
9788 (diary-list-entries): Add argument `list-only'.
9789 Put the buffer in diary-mode. Don't add \^M at beg and end.
9790 Replace \^M by invisible overlays.
9791 (diary-unhide-everything): Replace \^M by invisible overlays.
9792 (print-diary-entries): Look for overlays rather than \^M.
9793 Add a space to the temp buffer name.
9794 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
9795 Put the buffer in diary-mode.
9796 (list-sexp-diary-entries): Replace \^M by invisible overlays.
9797 (diary-anniversary): Make the year arg optional.
9798 (diary-time-regexp): New const.
9799 (diary-font-lock-keywords): Use it to accept a few more time formats.
9800
9801 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
9802
9803 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
9804
9805 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
9806 Fix bug introduced 2005-07-03: Use (car (last ...))
9807 to faithfully reproduce replaced artist-last.
9808 (artist-set-arrow-points-for-poly): Likewise.
9809 Suggested by Johan Bockg\e,Ae\e(Brd.
9810
9811 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
9812
9813 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
9814 * wid-edit.el (widget):
9815 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
9816 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
9817
9818 2005-10-06 Kenichi Handa <handa@m17n.org>
9819
9820 * international/mule-cmds.el (set-language-environment):
9821 Fix setting up of case-table for unibyte mode.
9822
9823 * simple.el (what-cursor-position): If the character is displayed
9824 by some `display' text property, show that. Don't use
9825 single-key-description for eight-bit characters in multibyte mode.
9826
9827 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
9828
9829 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
9830 (gdb-ann3): Set it.
9831 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
9832 (gdb-info-frames-custom): Use inverse-video for first five
9833 characters of selected frame only.
9834 (gdb-get-frame-number): Select frame even when point is on frame
9835 number.
9836
9837 2005-10-06 Masatake YAMATO <jet@gyve.org>
9838
9839 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
9840 Put `font-lock-function-name-face'.
9841 (gdb-info-frames-custom): Put `font-lock-function-name-face'
9842 and `font-lock-variable-name-face'
9843 (gdb-registers-font-lock-keywords): New font lock keywords definition.
9844 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
9845 (gdb-memory-font-lock-keywords): New font lock keywords definition.
9846 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
9847 (gdb-local-font-lock-keywords): New font lock keywords definition.
9848 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
9849 (gdb-threads-font-lock-keywords): New font lock keywords definition.
9850 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
9851
9852 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
9853
9854 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
9855 (ediff-merge-region-is-non-clash-to-skip): Previously called
9856 ediff-merge-region-is-non-clash.
9857
9858 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
9859 Use insert-buffer-substring.
9860
9861 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
9862 selecting files to patch. Also bug fixes.
9863
9864 * ediff-util.el (ediff-setup): Bug fix.
9865 (ediff-next-difference): Never skip clashes that differ in white
9866 space only.
9867
9868 * ediff-wind.el (ediff-setup-control-frame)
9869 (ediff-destroy-control-frame): Check the menubar feature.
9870
9871 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
9872 (viper-refresh-mode-line): Use make-local-variable to localize
9873 some vars instead of make-variable-buffer-local. Suggested by
9874 Stefan Monnier.
9875
9876 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
9877 (viper-restore-cursor-type, viper-set-insert-cursor-type):
9878 Use make-local-variable instead of make-variable-buffer-local.
9879 Suggested by Stefan Monnier.
9880
9881 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
9882 (viper-comint-mode-hook): Use make-local-variable on
9883 require-final-newline.
9884 (viper-non-hook-settings): Don't use make-variable-buffer-local.
9885
9886 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9887
9888 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
9889 also the second char of a comment-start sequence.
9890 (scheme-sexp-comment-syntax-table): New var.
9891 (lambda, define): Set their scheme-doc-string-elt property.
9892 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
9893 Use lisp-font-lock-syntactic-face-function now that it properly
9894 handles |...| symbols.
9895 (scheme-mode-variables): Set lisp-doc-string-elt-property,
9896 parse-sexp-lookup-properties and font-lock-extra-managed-props.
9897
9898 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
9899 bit from # to |.
9900 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
9901
9902 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
9903 (lisp-doc-string-elt-property): New var.
9904 (lisp-font-lock-syntactic-face-function): Use it.
9905 Rewrite to recognize docstrings even for forms not at toplevel.
9906
9907 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
9908 annotation on the | part of #| rather than on the # part.
9909 (scheme-font-lock-syntactic-face-function): New function, to
9910 distinguish strings from |...| symbols.
9911 (scheme-mode-variables): Use it. Also fix up the font-lock-time
9912 syntax-table so that #|...|# is properly highlighted.
9913
9914 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
9915 Don't mark as docstring the 3rd elem of an unknown toplevel form.
9916
9917 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
9918
9919 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
9920 and C-e.
9921
9922 * emacs-lisp/eldoc.el: Move comments into docstrings.
9923 (eldoc-message-commands): Initialize in its declaration.
9924 Add move-beginning-of-line and move-end-of-line.
9925 (eldoc-add-command, eldoc-add-command-completions)
9926 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
9927
9928 * outline.el (outline-mark-subtree): Activate the mark.
9929
9930 * calendar/appt.el (appt-time-regexp): New var.
9931 (appt-add, appt-make-list): Use it.
9932 (appt-convert-time): Clean up.
9933
9934 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
9935 Don't set any syntax-table property here.
9936 (tex-font-lock-verb): New function. Do it here.
9937 (tex-font-lock-syntactic-keywords): Use it.
9938
9939 2005-10-04 Richard M. Stallman <rms@gnu.org>
9940
9941 * wid-edit.el (widget-file-complete): Get the widget start point
9942 the right way. Default directory to `/' if file has none.
9943
9944 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
9945
9946 * textmodes/flyspell.el (flyspell-mode-on):
9947 Call ispell-maybe-find-aspell-dictionaries.
9948
9949 * textmodes/ispell.el (ispell-word, ispell-region):
9950 Call ispell-maybe-find-aspell-dictionaries.
9951 (ispell-accept-buffer-local-defs):
9952 Don't call ispell-maybe-find-aspell-dictionaries
9953
9954 2005-10-04 Richard M. Stallman <rms@gnu.org>
9955
9956 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
9957
9958 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
9959
9960 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
9961 instead of `fboundp' in order to allow for anonymous functions.
9962
9963 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
9964
9965 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
9966 case the user clicks on the link while another window is selected.
9967 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
9968
9969 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
9970 functionality.
9971 (dframe-help-echo): Save point in case mouse tracking is off.
9972
9973 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
9974
9975 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
9976
9977 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9978
9979 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
9980 not change the global value of those vars.
9981
9982 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
9983 make-local-variable which we do not need any more.
9984
9985 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
9986
9987 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
9988 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
9989 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
9990 (speedbar-path-line): Define obsolete aliases.
9991 (speedbar-line-directory): Doc fix.
9992
9993 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
9994 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
9995 instead of speedbar-line-path.
9996
9997 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9998
9999 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
10000 to nil if dropping on a window. Handle dropping on a minibuffer window
10001 like dropping on a non-window part of Emacs.
10002
10003 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10004
10005 * net/ange-ftp.el: Use with-current-buffer.
10006 (ange-ftp-insert-directory): Do not follow symlinks any more.
10007
10008 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10009 Remove interactive spec.
10010
10011 2005-10-03 Kim F. Storm <storm@cua.dk>
10012
10013 * ido.el (ido-mode): Use custom-initialize-set.
10014
10015 2005-10-02 Richard M. Stallman <rms@gnu.org>
10016
10017 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
10018 Use insert-buffer-substring.
10019
10020 * net/tramp.el: Pacify byte compiler warnings in pacification code.
10021 (tramp-handle-file-local-copy): Use insert-buffer-substring.
10022
10023 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
10024
10025 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
10026 in last change.
10027 (ange-ftp-insert-directory): Fix up the search for the case where
10028 `file' is absolute.
10029
10030 2005-10-02 Romain Francoise <romain@orebokech.com>
10031
10032 * progmodes/compile.el (compile-goto-error): Delete extra paren.
10033
10034 2005-10-02 Andreas Schwab <schwab@suse.de>
10035
10036 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
10037 directory component in the session info.
10038
10039 2005-10-01 Richard M. Stallman <rms@gnu.org>
10040
10041 * comint.el (comint-redirect-subvert-readonly): Doc fix.
10042
10043 * simple.el (next-error-internal): New function.
10044
10045 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
10046 (compilation-start): Pass new arg to compilation-buffer-name.
10047 (compile-goto-error): Use next-error-internal.
10048
10049 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
10050
10051 * speedbar.el: Remove RCS tag.
10052 (speedbar-check-read-only): Handle non-existent files.
10053
10054 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
10055
10056 * info.el (Info-speedbar-hierarchy-buttons)
10057 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
10058
10059 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10060
10061 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
10062 Do not match newline.
10063 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
10064 (bibtex-summary): Remove unnecessary save-excursion.
10065 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
10066
10067 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10068
10069 * term/mac-win.el: Add charset info for "iso10646-1".
10070 Modify default fontset to use ATSUI-compatible fonts for some charsets
10071 if available.
10072
10073 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
10074
10075 * speedbar.el: Re-apply arch tag.
10076 (speedbar-version): Rename to version 1.0. Suggested by Eric
10077 M. Ludlam.
10078 Reapply two changes from Emacs CVS' version of speedbar lost
10079 during the merge:
10080 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
10081 (speedbar-frame-parameters): Improve customize type.
10082
10083 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
10084
10085 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
10086 (ange-ftp-file-directory-p): Fix the symlink case.
10087 (ange-ftp-insert-directory): When listing a single file, get a list of
10088 the parent buffer and extract the relevant line. Inspired from a patch
10089 by Katsumi Yamaoka <yamaoka@jpl.org>.
10090 (ange-ftp-file-name-sans-versions): Simplify.
10091
10092 2005-09-30 Bill Wohler <wohler@newt.com>
10093
10094 Move MH-E image files from toolbar and mail directories into
10095 etc/images.
10096
10097 * mail/reply2.*: Move to etc/images/mail/reply*.
10098
10099 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
10100 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
10101 etc/images.
10102
10103 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
10104 * toolbar/reply*: Move to etc/images/mail.
10105
10106 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
10107
10108 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
10109
10110 * speedbar.el: New version 1.0pre3.
10111
10112 Frame management code (including timer, and mouse click specifics)
10113 moved to dframe.el:
10114 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
10115 (speedbar-timer): Removed. Use dframe-timer.
10116 (speedbar-close-frame): Removed. Use dframe-close-frame.
10117 (speedbar-activity-change-focus-flag): Removed. Use
10118 dframe-activity-change-focus-flag.
10119 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
10120 dframe-update-speed.
10121
10122 (speedbar-current-frame): New macro. Use this instead of the
10123 variable speedbar-frame.
10124
10125 (speedbar-use-images, speedbar-expand-image-button-alist)
10126 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
10127
10128 (speedbar-find-image-on-load-path): Removed. Replaced by
10129 defezimage in ezimage.el.
10130 (speedbar-expand-image-button-alist): Removed. Replaced by
10131 ezimage-expand-image-button-alist in ezimage.el.
10132
10133 (speedbar-ignored-directory-regexp)
10134 (speedbar-add-ignored-directory-regexp)
10135 (speedbar-ignored-directory-expressions)
10136 (speedbar-line-directory, speedbar-buffers-line-directory)
10137 (speedbar-directory-line, speedbar-buffers-line-directory):
10138 Renamed, replacing `path' with `directory'.
10139
10140 (speedbar-create-directory, speedbar-expand-line-descendants)
10141 (speedbar-toggle-line-expansion)
10142 (speedbar-contract-line-descendants): New commands.
10143
10144 (speedbar-query-confirmation-method, speedbar-select-frame-method)
10145 (speedbar-use-tool-tips-flag): New options.
10146
10147 (speedbar-check-read-only, speedbar-require-version)
10148 (speedbar-insert-separator, speedbar-buffers-tail-notes)
10149 (speedbar-handle-delete-frame, speedbar-try-completion)
10150 (speedbar-update-localized-contents): New functions.
10151
10152 (speedbar-incompatible-version, speedbar-ro-to-do-point)
10153 (speedbar-object-read-only-indicator): New variables.
10154
10155 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
10156 New hooks.
10157
10158 (speedbar-separator-face): New face.
10159
10160 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
10161 (speedbar-ignored-modes): Add fundamental-mode.
10162 (speedbar-directory-unshown-regexp): Add . directories.
10163
10164 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
10165 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
10166 `]' for full expand/close.
10167 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
10168
10169 (speedbar-check-vc): Support hidden files.
10170 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
10171 (speedbar-this-file-in-vc): Use vc-state if available. If VC
10172 state is nil, it is not checked out.
10173
10174 (speedbar-line-text, speedbar-line-token): Support expand buttons
10175 with no text.
10176 (speedbar-refresh): Universal argument acts as power-click.
10177 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
10178 that buffer to get variable values.
10179
10180 And many other bugfixes.
10181
10182 * dframe.el, ezimage.el, sb-image.el: New files.
10183
10184 * sb-*.xpm: Remove files. New image files installed into
10185 etc/images/ezimage.
10186
10187 2005-09-30 Kenichi Handa <handa@m17n.org>
10188
10189 * ps-mule.el (ps-mule-show-warning): If a character is in
10190 ps-print-translation-table, don't treat it as non-printable.
10191
10192 2005-09-30 David Ponce <david@dponce.com>
10193
10194 * tree-widget.el (tree-widget-themes-load-path): New variable.
10195 (tree-widget-themes-directory): Doc fix.
10196 (tree-widget-image-formats) [Emacs]: Doc fix.
10197 (tree-widget--locate-sub-directory): New function.
10198 (tree-widget-themes-directory): Use it.
10199
10200 * recentf.el (recentf-filename-handlers): Rename from
10201 `recentf-filename-handler'. Allow a list of functions.
10202 (recentf-menu-items-for-commands): Fix :help strings.
10203 (recentf-apply-filename-handlers): New function.
10204 (recentf-expand-file-name): Use it.
10205 (recentf-cleanup): Remove duplicates too.
10206
10207 2005-09-29 Juri Linkov <juri@jurta.org>
10208
10209 * faces.el: Rearrange face definitions to be in the same order as
10210 their face descriptions in "(emacs)Standard Faces".
10211
10212 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
10213
10214 * tooltip.el (tooltip): Add group `basic-faces'.
10215
10216 * buff-menu.el (Buffer-menu-buffer): Remove group
10217 `font-lock-highlighting-faces'.
10218
10219 * progmodes/compile.el (compilation-error, compilation-warning)
10220 (compilation-info, compilation-line-number, compilation-column-number):
10221 Change group from `font-lock-highlighting-faces' to `compilation'.
10222
10223 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
10224 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
10225 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
10226 (vhdl-font-lock-reserved-words-face)
10227 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
10228 `font-lock-highlighting-faces'.
10229
10230 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
10231
10232 2005-09-28 Kim F. Storm <storm@cua.dk>
10233
10234 * emulation/cua-base.el: Set CUA move property on additional commands:
10235 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
10236 forward-sexp, backward-sexp, forward-list, backward-list.
10237
10238 2005-09-28 Romain Francoise <romain@orebokech.com>
10239
10240 * comint.el (comint-show-output): Really set point at the
10241 beginning of the output when not using `comint-use-prompt-regexp'.
10242
10243 2005-09-27 Jay Belanger <belanger@truman.edu>
10244
10245 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
10246 in TeX mode.
10247
10248 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
10249
10250 * textmodes/org.el (org-table-sum): Fix format string.
10251
10252 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
10253 Quote face names.
10254
10255 2005-09-26 Romain Francoise <romain@orebokech.com>
10256
10257 * isearch.el (isearch-forward-regexp): Close doc string.
10258
10259 2005-09-25 Richard M. Stallman <rms@gnu.org>
10260
10261 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
10262
10263 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
10264
10265 * progmodes/compile.el (compilation-error-properties):
10266 When getting the file from the previous error message,
10267 correctly decode the new data format.
10268
10269 * progmodes/cc-cmds.el (c-electric-paren):
10270 Call old-blink-paren only for close-paren.
10271
10272 2005-09-24 Andreas Schwab <schwab@suse.de>
10273
10274 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
10275 condition.
10276
10277 2005-09-25 Romain Francoise <romain@orebokech.com>
10278
10279 * dired-aux.el (dired-copy-file-recursive):
10280 * dired.el (dired-delete-file):
10281 * ediff-mult.el (ediff-dir-diff-copy-file):
10282 * ediff-util.el (ediff-test-save-region):
10283 * forms.el (forms-mode):
10284 * ido.el (ido-file-internal, ido-delete-file-at-head):
10285 * log-edit.el (log-edit-done):
10286 * ses.el (ses-yank-resize):
10287 * play/gomoku.el (gomoku-human-plays, gomoku)
10288 (gomoku-human-resigns, gomoku-prompt-for-other-game)
10289 (gomoku-offer-a-draw):
10290 * play/landmark.el (lm-human-resigns, lm):
10291 * net/eudcb-ldap.el (eudc-ldap-check-base):
10292 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
10293 * progmodes/ebrowse.el (ebrowse-find-pattern):
10294 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
10295 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
10296 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
10297
10298 * vc.el (vc-delete-file):
10299 * play/gomoku.el (gomoku-terminate-game, gomoku)
10300 (gomoku-prompt-for-move, gomoku-human-takes-back):
10301 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
10302 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
10303
10304 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
10305
10306 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
10307 color rxvt terminals by using the code xterm.el used to use before
10308 2005-04-09 in order to match the colors used by rxvt.
10309
10310 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10311
10312 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
10313 colors rxvt-unicode terminals by using the same code as xterm.el.
10314
10315 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
10316
10317 * textmodes/tex-mode.el (tex-font-lock-append-prop)
10318 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
10319 new symbol used for the tex-verbatim face.
10320
10321 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
10322
10323 * woman.el (woman-file-name):
10324 * wid-edit.el (widget-file-prompt-value)
10325 (widget-coding-system-prompt-value):
10326 * w32-fns.el (set-w32-system-coding-system):
10327 * vc.el (vc-version-diff, vc-annotate):
10328 * textmodes/reftex-auc.el (reftex-arg-cite)
10329 (reftex-arg-index-tag):
10330 * textmodes/refer.el (refer-get-bib-files):
10331 * textmodes/artist.el (artist-figlet-choose-font):
10332 * terminal.el (terminal-emulator):
10333 * replace.el (occur-read-primary-args):
10334 * rect.el (string-rectangle, string-insert-rectangle):
10335 * ps-print.el (ps-print-preprint):
10336 * progmodes/pascal.el (pascal-goto-defun):
10337 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
10338 * progmodes/compile.el (compilation-find-file):
10339 * printing.el (pr-interactive-n-up):
10340 * play/animate.el (animate-birthday-present):
10341 * net/rcompile.el (remote-compile):
10342 * man.el (man, Man-goto-section, Man-follow-manual-reference):
10343 * mail/rmailsum.el (rmail-summary-search-backward)
10344 (rmail-summary-search):
10345 * mail/rmailout.el (rmail-output-read-rmail-file-name)
10346 (rmail-output-read-file-name):
10347 * mail/rmail.el (rmail-search, rmail-search-backwards):
10348 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
10349 * locate.el (locate):
10350 * international/quail.el (quail-show-keyboard-layout):
10351 * international/mule.el (set-buffer-file-coding-system)
10352 (revert-buffer-with-coding-system, set-file-name-coding-system)
10353 (set-terminal-coding-system, set-keyboard-coding-system)
10354 (set-next-selection-coding-system):
10355 * international/mule-diag.el (describe-coding-system)
10356 (describe-font, describe-fontset):
10357 * international/mule-cmds.el (universal-coding-system-argument)
10358 (search-unencodable-char, describe-input-method)
10359 (set-language-environment, describe-language-environment):
10360 * international/codepage.el (codepage-setup):
10361 * international/code-pages.el (codepage-setup):
10362 * info.el (Info-search, Info-follow-reference)
10363 (Info-search-backward):
10364 * emacs-lisp/advice.el (ad-read-advised-function)
10365 (ad-read-advice-class, ad-clear-cache, ad-activate)
10366 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
10367 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
10368 (ad-read-regexp):
10369 * ediff-util.el (ediff-toggle-regexp-match):
10370 * ediff-ptch.el (ediff-prompt-for-patch-file):
10371 * dired-aux.el (dired-diff):
10372 * diff.el (diff):
10373 * cus-edit.el (custom-variable-prompt):
10374 * calendar/timeclock.el (timeclock-ask-for-project):
10375 * calc/calcalg3.el (calc-get-fit-variables):
10376 * calc/calc-store.el (calc-edit-variable)
10377 (calc-permanent-variable):
10378 * vc-mcvs.el (vc-mcvs-register):
10379 * shadowfile.el (shadow-define-literal-group):
10380 * woman.el (woman-file-name):
10381 * vc.el (vc-version-diff, vc-merge):
10382 * textmodes/reftex-index.el (reftex-index-complete-tag):
10383 * format.el (format-decode-buffer, format-decode-region):
10384 * emulation/viper-cmd.el (viper-read-string-with-history):
10385 * emacs-lisp/debug.el (cancel-debug-on-entry):
10386 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
10387 * ediff.el (ediff-merge-revisions)
10388 (ediff-merge-revisions-with-ancestor, ediff-revision):
10389 * completion.el (interactive-completion-string-reader):
10390 * calc/calc-prog.el (calc-user-define-formula):
10391 Follow convention for reading with the minibuffer.
10392
10393 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
10394
10395 * progmodes/python.el (python-describe-symbol): Add globals() and
10396 locals() to the arguments of emacs.ehelp.
10397
10398 2005-09-24 Magnus Henoch <mange@freemail.hu>
10399
10400 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
10401 New function, code extracted from ispell-valid-dictionary-list.
10402 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
10403 Call it.
10404
10405 2005-09-24 Eli Zaretskii <eliz@gnu.org>
10406
10407 * subr.el (version-regexp-alist): Extend valid syntax for version
10408 strings: allow any of the characters -,_,+ to separate the
10409 alpha/beta/rc part from the version part. Doc fix.
10410 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
10411
10412 2005-09-23 David Reitter <david.reitter@gmail.com>
10413
10414 * mail/mailclient.el: New file.
10415
10416 2005-09-23 Richard M. Stallman <rms@gnu.org>
10417
10418 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
10419 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
10420 Doc fixes.
10421
10422 * progmodes/cc-mode.el (c-font-lock-init):
10423 Specify font-lock-lines-before.
10424
10425 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
10426
10427 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
10428 whole conflict.
10429
10430 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
10431
10432 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
10433 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
10434 of `remap' feature when available. Additional key bindings for
10435 better tty support.
10436 (org-mode-restart, org-force-self-insert): New commands.
10437 (org-time-stamp-inactive): New command.
10438 (org-remap): New function.
10439 (org-table-auto-blank-field, org-level-color-stars-only): New options.
10440 (org-enable-fixed-width-editor): Move to `org-structure'
10441 customization group.
10442 (org-self-insert-command, orgtbl-self-insert-command): Modify to
10443 blank field after field motion commands.
10444
10445 2005-09-23 Kenichi Handa <handa@m17n.org>
10446
10447 * international/mule-cmds.el (set-language-environment):
10448 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
10449 have to call utf-translate-cjk-load-tables.
10450
10451 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
10452
10453 * mouse.el (mouse-move-drag-overlay): Fix last change.
10454
10455 2005-09-22 David Ponce <david@dponce.com>
10456
10457 * tree-widget.el (tree-widget-value-create): Fix previous change.
10458
10459 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
10460
10461 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
10462
10463 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
10464
10465 * mouse.el (mouse-move-drag-overlay): New function.
10466 (mouse-drag-region-1): Use it.
10467 Try to simplify a bit the state handling. Handle clicks on links
10468 inside intangible areas.
10469 (mouse-save-then-kill): Minor simplification.
10470 (mouse-secondary-overlay): Make it always non-nil instead of
10471 recreating it each time.
10472 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
10473 (mouse-kill-secondary, mouse-secondary-save-then-kill):
10474 Simplify accordingly.
10475
10476 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
10477
10478 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
10479
10480 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
10481
10482 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
10483 (ediff-file-name-sans-prefix): Treat nil as an empty string.
10484 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
10485 to patch.
10486
10487 * ediff-util.el: Use insert-buffer-substring.
10488
10489 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
10490
10491 * emulation/viper-cmd.el (viper-change-state): Don't move over the
10492 field boundaries in the minibuffer.
10493 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
10494 (viper-minibuffer-post-command-hook): New hook.
10495 (viper-line): Don't move cursor at bolp.
10496
10497 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
10498
10499 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
10500 avoid compiler warnings.
10501
10502 * emulation/viper-macs.el (ex-map): Better messages.
10503
10504 * emulation/viper-utils.el (viper-beginning-of-field): New function.
10505
10506 * emulation/viper.el: Replace make-variable-buffer-local with
10507 viper-make-variable-buffer-local everywhere, to avoid warnings.
10508
10509 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10510
10511 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
10512 Delete unused var `old-selected-window'.
10513 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
10514 (mouse-drag-secondary): Delete unused var `start-frame'.
10515
10516 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10517
10518 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
10519
10520 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10521
10522 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
10523 Re-indent within 80 columns. Use inhibit-read-only.
10524
10525 2005-09-19 Romain Francoise <romain@orebokech.com>
10526
10527 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
10528
10529 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
10530
10531 * font-lock.el (font-lock-default-fontify-region): Don't add a line
10532 unconditionally, since the after-change-function already did it.
10533
10534 2005-09-19 Miles Bader <miles@gnu.org>
10535
10536 * net/newsticker.el: Get rid of CVS keyword.
10537
10538 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
10539
10540 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
10541 The prompt is formatted later.
10542
10543 2005-09-19 David Ponce <david@dponce.com>
10544
10545 * tree-widget.el (tree-widget-value-create): Save the converted
10546 tree :node widget.
10547
10548 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
10549
10550 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
10551 variable `message'.
10552
10553 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
10554
10555 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
10556 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
10557 <slawomir.nowaczyk.847@student.lu.se>.
10558
10559 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
10560
10561 * image.el (image-load-path): Use symbol `data-directory' instead
10562 of its value, for backward compatibility with packages that bind
10563 it during `find-image'. Suggested by Katsumi Yamaoka.
10564 (image-search-load-path): Handle symbols whose values are strings.
10565
10566 2005-09-18 Romain Francoise <romain@orebokech.com>
10567
10568 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
10569 with-current-buffer form in save-excursion.
10570
10571 2005-09-18 D Goel <deego@gnufans.org>
10572
10573 * apropos.el (apropos-command): Fix `message' call: first arg
10574 should be a format spec. In this and all other cases that appear
10575 below and elsewhere in the source code, I made a change only when
10576 two conditions were satisfied: [1] I can think of a possibility
10577 that the arguments would cause an error, for example, the code in
10578 question relies on external variables such as filenames. [2] I
10579 was sure that the arg to `message' could not have been nil in the code.
10580
10581 * textmodes/tildify.el (tildify-region): Ditto.
10582
10583 * textmodes/reftex-index.el (reftex-index-change-entry)
10584 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
10585 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
10586 * textmodes/org.el (org-complete, org-deadline, org-schedule)
10587 (org-priority, org-table-sum):
10588 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
10589 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
10590 (flyspell-word, flyspell-display-next-corrections):
10591 * textmodes/bibtex.el (bibtex-print-help-message):
10592 * textmodes/artist.el (artist-key-set-point-poly):
10593 * term/mac-win.el (mac-services-insert-text):
10594 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
10595 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
10596 (vhdl-port-paste-testbench, vhdl-compose-new-component)
10597 (vhdl-compose-configuration):
10598 * progmodes/sh-script.el (sh-blink, sh-show-indent)
10599 (sh-set-indent, sh-learn-line-indent):
10600 * progmodes/ps-mode.el (ps-mode-target-column):
10601 * progmodes/idlwave.el (idlwave-make-tags)
10602 (idlwave-scan-library-catalogs):
10603 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
10604 * progmodes/gud.el (gud-jdb-analyze-source):
10605 * progmodes/flymake.el (flymake-log):
10606 * progmodes/ebnf2ps.el (ebnf-generate-region):
10607 * progmodes/cmacexp.el (c-macro-expansion):
10608 * progmodes/ada-xref.el (ada-treat-cmd-string):
10609 * progmodes/ada-mode.el (ada-create-case-exception-substring)
10610 (ada-justified-indent-current, ada-batch-reformat):
10611 * play/zone.el (zone):
10612 * play/landmark.el (lm-move):
10613 * play/decipher.el (decipher-show-alphabet):
10614 * net/newsticker.el (newsticker--display-jump)
10615 (newsticker--display-scroll):
10616 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
10617 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
10618 * mail/feedmail.el (feedmail-dump-message-to-queue):
10619 * eshell/esh-proc.el (eshell-remove-process-entry):
10620 * emulation/ws-mode.el (ws-last-error):
10621 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
10622 (viper-record-kbd-macro):
10623 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
10624 * emacs-lisp/lisp-mnt.el (lm-report-bug):
10625 * emacs-lisp/find-func.el (find-function-noselect):
10626 * calendar/timeclock.el (timeclock-status-string)
10627 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
10628 (timeclock-when-to-leave-string):
10629 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
10630 * calc/calc-units.el (calc-enter-units-table):
10631 * calc/calc-mode.el (calc-mode-record-mode):
10632 * woman.el (woman-mini-help):
10633 * wdired.el (wdired-change-to-wdired-mode):
10634 * vc.el (vc-retrieve-snapshot):
10635 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
10636 * startup.el (display-startup-echo-area-message):
10637 * simple.el (set-goal-column):
10638 * ses.el (ses-command-hook, ses-recalculate-cell):
10639 * server.el (server-process-filter):
10640 * printing.el (pr-interface-txt-print, pr-interface-printify)
10641 (pr-interface-ps):
10642 * pcvs.el (cvs-help):
10643 * log-edit.el (log-edit, log-edit-mode-help):
10644 * iswitchb.el (iswitchb-possible-new-buffer):
10645 * isearch.el (isearch-edit-string):
10646 * image-mode.el (image-mode, image-minor-mode):
10647 * ibuf-macs.el (define-ibuffer-filter):
10648 * hi-lock.el (hi-lock-find-patterns):
10649 * files.el (toggle-read-only):
10650 * ediff-util.el (ediff-copy-diff)
10651 (ediff-write-merge-buffer-and-maybe-kill):
10652 * echistory.el (Electric-history-undefined):
10653 * dnd.el (dnd-insert-text):
10654 * dired-aux.el (dired-query):
10655 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
10656 * bookmark.el (bookmark-bmenu-locate):
10657 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
10658 Fix `message' calls to ensure first arg is a format string.
10659 The change was made only when these two conditions were satisfied:
10660 [1] when there is a possibility that the arguments would cause an error
10661 for example, if the code in question relies on external variables
10662 such as filenames, and
10663 [2] if the arg to `message' could not have been nil in the code.
10664
10665 * pcomplete.el (pcomplete--help): Fix `message' format spec.
10666 Not having a %s would be weird, though not technically wrong.
10667
10668 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10669
10670 * term/mac-win.el (mac-add-charset-info): Doc fix.
10671
10672 2005-09-17 Romain Francoise <romain@orebokech.com>
10673
10674 * shell.el (shell-resync-dirs): Handle echoing processes more
10675 reliably. Don't insert resync command if `comint-process-echoes'
10676 is non-nil.
10677
10678 2005-09-17 Magnus Henoch <mange@freemail.hu>
10679
10680 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
10681 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
10682 aspell versions >= 0.60.
10683 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
10684 only if ispell-aspell-supports-utf8 is non-nil.
10685
10686 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
10687
10688 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
10689 buffer-local value to lisp-indent-function.
10690
10691 2005-09-17 Milan Zamazal <pdm@zamazal.org>
10692
10693 * progmodes/glasses.el (glasses-make-readable): If
10694 glasses-separator differs from underscore, put appropriate
10695 overlays over underscore characters.
10696 (glasses-convert-to-unreadable): If glasses-separator differs from
10697 underscore, try to convert glasses-separator characters to
10698 underscores.
10699
10700 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10701
10702 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
10703 Use with-syntax-table and dolist.
10704
10705 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
10706
10707 * textmodes/reftex-auc.el:
10708 * textmodes/reftex-cite.el:
10709 * textmodes/reftex-dcr.el:
10710 * textmodes/reftex-global.el:
10711 * textmodes/reftex-parse.el:
10712 * textmodes/reftex-ref.el:
10713 * textmodes/reftex-sel.el:
10714 * textmodes/reftex-toc.el:
10715 * textmodes/reftex-vars.el:
10716 * textmodes/reftex.el: Small changes to remove compiler warnings.
10717
10718 * textmodes/reftex-index.el: Likewise.
10719 (reftex-query-index-phrase): More efficient use of markers.
10720
10721 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
10722
10723 * image.el (image-load-path): New variable.
10724 (image-search-load-path): New function.
10725 (find-image): Search for images in `image-load-path'.
10726
10727 2005-09-15 Richard M. Stallman <rms@gnu.org>
10728
10729 * follow.el: Change Maintainer field.
10730
10731 2005-09-15 David Ponce <david@dponce.com>
10732
10733 * recentf.el (recentf-save-file-modes): New option.
10734 (recentf-save-list): Use it.
10735
10736 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
10737
10738 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
10739 (mode-line-mule-info, mode-line-modified): Move bindings from
10740 mouse-3 to mouse-1.
10741
10742 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
10743
10744 * simple.el (sendmail-user-agent-compose): Revert last change.
10745
10746 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10747
10748 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
10749 Use with-current-buffer.
10750 (ange-ftp-gwp-start): Remove unused var `gw-user'.
10751 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
10752 (ange-ftp-insert-directory): Remove unused var `short'.
10753 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
10754
10755 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
10756 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
10757
10758 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
10759 (check-calendar-holidays, diary-list-entries): Autoload.
10760 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
10761 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
10762
10763 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
10764 which mistakenly removed a call to display-buffer.
10765
10766 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
10767
10768 * obsolete/iso-insert.el: Move to obsolete/ from international/.
10769
10770 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
10771
10772 * progmodes/hideshow.el
10773 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
10774 (hs-allow-nesting): New user var.
10775 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
10776 (hs-hide-block-at-point): When nesting allowed,
10777 if there is already an overlay in place, delete it.
10778 (hs-safety-is-job-n): Delete func; remove call sites.
10779 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
10780 (hs-overlay-at): New func.
10781 (hs-already-hidden-p, hs-show-block): Use it.
10782 (hs-hide-all): Don't pre-clean if nesting allowed.
10783 (hs-show-all): Temporarily disallow
10784 nesting around call to `hs-discard-overlays'.
10785
10786 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
10787
10788 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
10789 Delete unused local var.
10790
10791 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
10792
10793 * help-fns.el (describe-categories): "?\ " -> "?\s".
10794 (help-do-arg-highlight): Recognize also ARG-n, as in
10795 `move-to-left-margin' (ARG+n is already recognized). Simplify.
10796
10797 * international/codepage.el (dos-unsupported-char-glyph):
10798 * net/newsticker.el (tool-bar-map, w3-mode-map)
10799 (w3m-minor-mode-map):
10800 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
10801 (ent-alist):
10802 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
10803
10804 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
10805
10806 * custom.el (custom-push-theme): Handle the case where a symbol is
10807 bound but face properties have not yet been assigned.
10808
10809 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
10810 Fix behavior if noerase is `t' and there is no mail buffer.
10811
10812 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
10813 if `continue' is nil, rather than signal an error.
10814
10815 2005-09-12 Richard M. Stallman <rms@gnu.org>
10816
10817 * font-lock.el (font-lock-keywords): Add autoload.
10818
10819 * help-fns.el (describe-variable): Rearrange to put source link
10820 in a predictable place.
10821
10822 * net/newsticker.el: New file.
10823
10824 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10825
10826 * calendar/calendar.el (calendar-for-loop): Add edebug info.
10827 (calendar-basic-setup): Use the new nil arg.
10828 (number-of-diary-entries): Move to diary-lib.el.
10829
10830 * calendar/diary-lib.el: Use with-current-buffer, match-string.
10831 (diary-list-entries): Use with-syntax-table and dolist.
10832 Rename from list-diary-entries.
10833 Use number-of-diary-entries if `number' is nil.
10834 (diary, diary-view-entries): Use this new name and new nil arg value.
10835 (number-of-diary-entries): Move from calendar.el.
10836 (diary-unhide-everything): New function.
10837 (include-other-diary-files, fancy-diary-display)
10838 (diary-show-all-entries, make-diary-entry): Use it.
10839 (diary-mail-entries): Use buffer-string.
10840 (mark-diary-entries): Fix long standing paren typo.
10841 (diary-sexp-entry): Use count-lines.
10842 (make-diary-entry): Avoid `previous-line'.
10843 (diary-mode-map): New var.
10844 (diary-mode): Redraw cal after saving. Setup header-line.
10845 (fancy-diary-display-mode): Use local-set-key.
10846
10847 * startup.el (command-line): Try calling various terminal-init-foo-bar
10848 functions by stripping hyphenated suffixes from $TERM.
10849
10850 * files.el (normal-mode): Check boundness of font-lock-keywords.
10851
10852 2005-09-12 Richard M. Stallman <rms@gnu.org>
10853
10854 * progmodes/compile.el: Don't decide a file's directory
10855 until the user actually tries to go there.
10856 (compilation-next-error-function):
10857 Pass compilation-find-file the directory from the file-struct.
10858 (compilation-internal-error-properties): Separate local FILE-STRUCT
10859 from FILE. Doc the args better. Rename arg FMT to FMTS.
10860 (compilation-find-file): Arg DIR renamed to DIRECTORY.
10861 Expand it, and if nil, use default-directory.
10862 (compilation-get-file-structure): Don't mix specified directory
10863 with default directory. Put specified directory into
10864 file-struct. Don't make the file name absolute.
10865
10866 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
10867 (compile-command): Add autoload.
10868 (compilation-disable-input): Add autoload.
10869
10870 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
10871
10872 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
10873 strings of the variables it can override.
10874 (time-stamp): New (as yet undocumented) time-stamp-format escapes
10875 %Q and %q, for fully-qualified domain name and unqualified host name.
10876
10877 2005-09-11 Kim F. Storm <storm@cua.dk>
10878
10879 * emacs-lisp/authors.el (authors-aliases): Update list.
10880 (authors-fixed-entries): Update mldrag.el entry.
10881
10882 2005-09-10 Alan Mackenzie <acm@muc.de>
10883
10884 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
10885 from the region narrowed to.
10886
10887 2005-09-10 Magnus Henoch <mange@freemail.hu>
10888
10889 * textmodes/ispell.el (ispell-check-version): Signal an error if
10890 aspell version is less than 0.60.
10891
10892 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
10893
10894 * progmodes/octave-inf.el (inferior-octave-startup):
10895 Resync current dir at the end.
10896
10897 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
10898
10899 * woman.el (woman-topic-at-point-default):
10900 Rename to woman-use-topic-at-point-default.
10901 (woman-topic-at-point): Rename to woman-use-topic-at-point.
10902 (woman-file-name): Reflect renames above. Automatically use the
10903 word at point as topic if woman-use-topic-at-point is non-nil.
10904 Otherwise offer it as default but don't insert it in the
10905 minibuffer. Also use `test-completion' instead of `assoc' as
10906 suggested by Stefan Monnier.
10907
10908 2005-09-10 Andre Spiegel <spiegel@gnu.org>
10909
10910 * vc.el (vc-directory, vc-update-change-log): Throw an error on
10911 the attempt to do it over Tramp. This is not yet supported.
10912
10913 2005-09-10 Eli Zaretskii <eliz@gnu.org>
10914
10915 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
10916 (menu-bar-non-minibuffer-window-p): New functions.
10917 ("Split Window", "Save As..."): Use them.
10918 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
10919 ("Print Buffer", "Truncate Long Lines in this Buffer"):
10920 Use menu-bar-menu-frame-live-and-visible-p.
10921 ("Save Buffer", "Insert File", "Open Directory...")
10922 ("Open File...", "Visit New File..."):
10923 Use menu-bar-non-minibuffer-window-p.
10924 (kill-this-buffer-enabled-p, dired <menu-enable>):
10925 Use menu-bar-non-minibuffer-window-p.
10926
10927 2005-09-09 Eli Zaretskii <eliz@gnu.org>
10928
10929 * cus-start.el (all): Don't complain about fringe-related
10930 built-ins if fringes are not supported. Ditto about
10931 selection-related built-ins. Fix the test for GTK-related built-ins.
10932
10933 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
10934 ("Postscript Print Buffer", "Print Region", "Save As...")
10935 ("Save", "Insert File...", "Open Directory...")
10936 ("Open File...", "Visit New File..."")
10937 ("Truncate Long Lines in this Buffer"): Don't look at
10938 menu-updating-frame if this display does not support multiple frames.
10939
10940 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
10941
10942 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
10943
10944 2005-09-09 Emilio Lopes <eclig@gmx.net>
10945
10946 * woman.el: Format- and whitespace-related changes.
10947
10948 2005-09-09 Eli Zaretskii <eliz@gnu.org>
10949
10950 * woman.el: Fix my email address.
10951
10952 2005-09-08 Richard M. Stallman <rms@gnu.org>
10953
10954 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
10955 (sh-mode): Locally set skeleton-pair-default-alist.
10956
10957 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
10958
10959 * progmodes/flymake.el: Require `compile' unconditionally.
10960
10961 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
10962
10963 * woman.el (woman-file-name): Provide a default, not initial input.
10964
10965 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
10966
10967 * font-lock.el (font-lock-support-mode): Doc fix.
10968
10969 * descr-text.el (describe-property-list): Handle non-symbol prop names.
10970
10971 2005-09-08 Richard M. Stallman <rms@gnu.org>
10972
10973 * simple.el (blink-matching-open): Get rid of text props from
10974 the string shown in echo area. Don't permanently set point.
10975 Some rearrangements.
10976
10977 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
10978
10979 * recentf.el (recentf-filename-handler): Add custom choice
10980 `abbreviate-file-name'.
10981
10982 * msb.el (msb--very-many-menus): Fix typo.
10983
10984 * disp-table.el (standard-display-european): Don't set
10985 enable-multibyte-characters to nil.
10986
10987 2005-09-08 David Ponce <david@dponce.com>
10988
10989 * recentf.el (recentf-show-file-shortcuts-flag): New option.
10990 (recentf-expand-file-name): Doc fix.
10991 (recentf-dialog-mode-map): Define digit shortcuts.
10992 (recentf--files-with-key): New variable.
10993 (recentf-show-digit-shortcut-filter): New function.
10994 (recentf-open-files-items): New function.
10995 (recentf-open-files): Use it.
10996 (recentf-open-file-with-key): New command.
10997
10998 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
10999
11000 * buff-menu.el (Buffer-menu-sort-by-column): New function.
11001 Suggested by Kim F. Storm.
11002 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
11003 (Buffer-menu-make-sort-button): Use global keymap.
11004
11005 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
11006
11007 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
11008 (Man-getpage-in-background-advice): Remove defadvice; it isn't
11009 necessary any longer with the remapped command.
11010 (Man-bgproc-sentinel-advice): Remove defadvice which counts
11011 formatting time only.
11012
11013 * net/tramp.el (tramp-action-password)
11014 (tramp-multi-action-password): Compile the password prompt from
11015 `method', `user' and `host'. Sometimes it isn't obvious which
11016 password to enter, for example with remote files offered by
11017 recentf.el, or with multiple steps. Suggested by Robert Marshall
11018 <robert@chezmarshall.freeserve.co.uk>.
11019
11020 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
11021
11022 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
11023 Fix regexp for when "s///" is at the beginning of line.
11024
11025 2005-09-07 Jay Belanger <belanger@truman.edu>
11026
11027 * calc/calc-poly.el (math-expand-term): Multiply out any powers
11028 when in matrix mode.
11029
11030 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
11031
11032 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
11033 non-anonymous functions.
11034
11035 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
11036
11037 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
11038 when using a header line. Otherwise, use mouse-1-click-follows-link.
11039
11040 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
11041 can't be moved; don't signal an error.
11042
11043 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
11044
11045 * cus-theme.el (custom-theme-write-faces): Save the current face
11046 spec, not the defface spec.
11047
11048 * custom.el (custom-known-themes): Clarify meaning of "standard".
11049 (custom-push-theme): Save old values in the standard theme.
11050 (disable-theme): Correct typo.
11051 (custom-face-theme-value) Deleted unused function.
11052 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
11053
11054 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
11055
11056 * progmodes/compile.el (compilation-goto-locus): Take into account
11057 iconified frames when determining whether the buffer is
11058 already visible.
11059 Don't reset window height if the window already existed.
11060
11061 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
11062
11063 * custom.el (load-theme): Rename from require-theme.
11064 Add interactive spec.
11065 (enable-theme): Rename from custom-enable-theme.
11066 Add interactive spec.
11067 (disable-theme): Rename from custom-disable-theme.
11068 Add interactive spec.
11069 (custom-make-theme-feature): Doc fix.
11070 (custom-theme-directory): Doc fix.
11071 (provide-theme): Call enable-theme.
11072
11073 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
11074
11075 * obsolete/lazy-lock.el (lazy-lock-mode):
11076 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
11077 font-lock-mode if it's off. Print a warning instead.
11078
11079 * progmodes/compile.el (compilation-start): Ignore errors if the
11080 process died before we get to send-eof.
11081
11082 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
11083 Undo last change. Enclosing the result in quotes broke things on Unix
11084 since tex-send-command passes it through shell-quote-argument.
11085 (tex-send-command): Pass `file' through convert-standard-filename
11086 when possible.
11087 (tex-uptodate-p): Handle the case where TeX hasn't put additional
11088 info in a transcript.
11089
11090 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
11091
11092 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
11093 fix compilation warning. Reorder the key definitions to group
11094 together keys emitted by the current version of xterm.
11095
11096 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
11097 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
11098 Reorder predicates to correct min-color usage.
11099
11100 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
11101
11102 * longlines.el (longlines-mode): Inhibit read-only when encoding.
11103 Kill local variables when longlines-mode is turned off.
11104
11105 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
11106
11107 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
11108
11109 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
11110
11111 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
11112
11113 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
11114 (font-lock-lines-before): Change default to being inactive.
11115 (font-lock-default-fontify-region): Obey font-lock-lines-before.
11116 (font-lock-after-change-function): Don't handle f-l-lines-before here.
11117
11118 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
11119
11120 * net/tramp.el (tramp-handle-make-auto-save-file-name):
11121 Deactivate temporarily advice if active (not needed for Emacs 22,
11122 but for backwards compatibility).
11123 (tramp-exists-file-name-handler): Rewrite. First implementation
11124 was too simple.
11125 (tramp-advice-make-auto-save-file-name):
11126 Call `tramp-handle-make-auto-save-file-name' (again, just for
11127 backwards compatibility).
11128
11129 2005-08-31 Reto Zimmermann <reto@gnu.org>
11130
11131 * progmodes/vhdl-mode.el
11132 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
11133 (vhdl-end-p): Fix indentation bug "else" after "-- when".
11134 (vhdl-set-default-project): New function (easier setting of default).
11135 (vhdl-port-copy): Handle extended identifiers for generics.
11136 (vhdl-compiler-alist): Better description for error message regexp.
11137 (vhdl-make): Query for target, use previous as default.
11138 (vhdl-port-copy): Fix port copy for port names starting with "signal".
11139 (vhdl-font-lock-keywords-2): Fix fontification for record
11140 el. assign.
11141 (vhdl-speedbar-make-subpack-line): Add package body link.
11142 (vhdl-generate-makefile-1): Not include itself as dependency.
11143 (vhdl-font-lock-init): Highlight c-preprocessor directives.
11144 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
11145 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
11146 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
11147 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
11148 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
11149 (vhdl-import-project): Add string argument for `error'.
11150 (vhdl-compose-configuration)
11151 (vhdl-compose-configuration-architecture): Add configuration
11152 declaration generation.
11153 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
11154 (vhdl-trailer-re): Add "record" keyword (better indentation).
11155 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
11156 "[^ \t-\"]+".
11157 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
11158 (vhdl-testbench-entity-file-name)
11159 (vhdl-testbench-architecture-file-name): Allow separate
11160 customization of testbench file names.
11161 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
11162 (vhdl-get-visible-signals): Allow newline within alias declaration.
11163 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
11164 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
11165 (member-ignore-case): Alias for missing function in XEmacs.
11166 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
11167 (vhdl-update-sensitivity-list): Ignore case on read signals.
11168 (vhdl-replace-string): Adjust case only for file names.
11169 (vhdl-update-sensitivity-list): Fix search for read signals.
11170 (vhdl-update-sensitivity-list): Exclude formal parameters.
11171 (vhdl-get-visible-signals): Include aliases of signals.
11172 (vhdl-get-visible-signals): Fix signal name searching.
11173 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
11174 (vhdl-fixup-whitespace-region): Fix for character
11175 literals (e.g. `:').
11176
11177 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
11178
11179 * ansi-color.el (comint-last-output-start):
11180 * bs.el (font-lock-verbose):
11181 * diff-mode.el (add-log-buffer-file-name-function):
11182 * dired-x.el (vm-folder-directory):
11183 * faces.el (help-xref-stack-item):
11184 * files.el (font-lock-keywords):
11185 * find-lisp.el (dired-buffers, dired-subdir-alist):
11186 * ido.el (cua-inhibit-cua-keys):
11187 * log-view.el (cvs-minor-wrap-function):
11188 * outline.el (font-lock-warning-face):
11189 * simple.el (compilation-current-error):
11190 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
11191 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
11192 * tooltip.el (comint-prompt-regexp):
11193 * w32-fns.el (explicit-shell-file-name):
11194 * term/mac-win.el (mac-charset-info-alist)
11195 (mac-services-selection, mac-system-script-code):
11196 * term/tty-colors.el (msdos-color-values):
11197 * term/w32-win.el (xlfd-regexp-registry-subnum):
11198 * term/x-win.el (x-keysym-table, x-selection-timeout)
11199 (x-session-id, x-session-previous-id):
11200 * textmodes/ispell.el (mail-yank-prefix):
11201 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
11202 * textmodes/org.el (calc-embedded-close-formula)
11203 (calc-embedded-open-formula)
11204 (font-lock-unfontify-region-function):
11205 * textmodes/reftex-global.el (isearch-next-buffer-function)
11206 (TeX-master):
11207 * textmodes/reftex.el (font-lock-keywords):
11208 * textmodes/tex-mode.el (font-lock-comment-face)
11209 (font-lock-doc-face):
11210 * textmodes/texinfo.el (outline-heading-alist):
11211 Add defvars.
11212
11213 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
11214 (artist-spray-chars, artist-mode-init, artist-replace-string)
11215 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
11216 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
11217 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
11218
11219 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
11220 (conf-align-assignments): "?\ " -> "?\s".
11221
11222 * textmodes/reftex-index.el (TeX-master): Add defvar.
11223 (reftex-index-phrases-marker): Move up defvar.
11224
11225 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
11226 (reftex-toc-include-labels-indicator)
11227 (reftex-toc-include-index-indicator)
11228 (reftex-toc-max-level-indicator): Move up declarations.
11229
11230 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
11231 of args to `tramp-run-real-handler', even if it's empty in this case.
11232
11233 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11234
11235 * dired.el (dired-move-to-filename-regexp): Add date format for
11236 Mac OS X 10.3 in East Asian locales.
11237
11238 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
11239
11240 * files.el (make-auto-save-file-name): Add file name handler call
11241 if applicable.
11242
11243 * net/tramp.el (tramp-file-name-handler-alist)
11244 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
11245 (tramp-handle-make-auto-save-file-name): Rename from
11246 `tramp-make-auto-save-file-name'.
11247 (tramp-exists-file-name-handler): New defun.
11248 (tramp-advice-make-auto-save-file-name): Make defadvice only when
11249 `make-auto-save-file-name' is not a magic file name operation.
11250
11251 2005-08-30 Richard M. Stallman <rms@gnu.org>
11252
11253 * files.el (risky-local-variable-p):
11254 Match `-predicates' and `-commands.
11255
11256 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
11257 (custom-save-all): Visit the file if necessary;
11258 kill the buffer if we created it.
11259 (custom-save-delete): Don't visit file or kill buffer here.
11260
11261 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
11262
11263 * textmodes/org.el (org-special-keyword): New face.
11264 (org-table-copy-down, org-table-eval-formula)
11265 (org-table-recalculate, org-init-section-numbers):
11266 Use `string-to-number' instead of `string-to-int'.
11267 (org-get-location): Use `insert-buffer-substring' instead of
11268 `insert-buffer'.
11269 (org-modify-diary-entry-string): New function.
11270 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
11271 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
11272 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
11273 active region.
11274 (org-export-as-html): Handle QUOTE keyword.
11275 (org-quote-string): New option.
11276 (org-bookmark-jump-unhide): New function, used for
11277 `bookmark-after-jump-hook'.
11278 (org-diary-default-entry): Apply only when not called through
11279 `org-agenda'.
11280
11281 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
11282
11283 * net/eudc.el (mode-popup-menu):
11284 * play/handwrite.el (ps-printer-name, ps-lpr-command):
11285 * progmodes/ada-mode.el (compile-auto-highlight)
11286 (skeleton-further-elements):
11287 * progmodes/autoconf.el (font-lock-syntactic-keywords):
11288 * progmodes/cmacexp.el (msdos-shells):
11289 * progmodes/compile.el (font-lock-extra-managed-props)
11290 (font-lock-keywords, font-lock-maximum-size)
11291 (font-lock-support-mode):
11292 * progmodes/grep.el (font-lock-lines-before):
11293 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
11294 * progmodes/mixal-mode.el (compile-command):
11295 * progmodes/perl-mode.el (font-lock-comment-face)
11296 (font-lock-doc-face, font-lock-string-face):
11297 * progmodes/prolog.el (comint-prompt-regexp):
11298 * progmodes/sh-script.el (font-lock-comment-face)
11299 (font-lock-set-defaults, font-lock-string-face):
11300 * progmodes/sql.el (font-lock-keyword-face)
11301 (font-lock-set-defaults, font-lock-string-face):
11302 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
11303 (itimer-version, lazy-lock-defer-contextually)
11304 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
11305 Add defvars.
11306
11307 * progmodes/cperl-mode.el (cperl-electric-lbrace)
11308 (cperl-electric-keyword, cperl-electric-pod)
11309 (cperl-electric-backspace, cperl-forward-re)
11310 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
11311 (vc-rcs-header, vc-sccs-header): Add defvars.
11312
11313 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
11314 (font-lock-syntactic-keywords, gud-find-expr-function):
11315 Add defvars.
11316
11317 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
11318 (gdb-frame-parameters): Declare before use.
11319
11320 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
11321 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
11322 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
11323 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
11324
11325 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
11326 (idlwave-help-with-source): Use `insert-buffer-substring', not
11327 `insert-buffer'.
11328
11329 2005-08-29 Juri Linkov <juri@jurta.org>
11330
11331 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
11332 Put outline-back-to-heading function call inside save-excursion.
11333
11334 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
11335
11336 * man.el (Man-init-defvars, Man-translate-references)
11337 (Man-support-local-filenames, Man-highlight-references):
11338 * progmodes/sql.el (sql-interactive-mode):
11339 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
11340
11341 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
11342 (compilation-mode-font-lock-keywords): Add defvars.
11343 (checkdoc-interactive-loop): "?\ " -> "?\s".
11344
11345 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
11346 (font-lock-doc-face, font-lock-string-face)
11347 (font-lock-keywords-case-fold-search): Add defvars.
11348 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
11349
11350 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
11351 Don't pass X and Y (they are ignored anyway).
11352 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
11353 (mouse-delete-window): Make arguments optional.
11354
11355 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
11356 (caesar-translate-table, minor-modes, news-buffer-save)
11357 (news-group-name, news-minor-modes): Add defvars.
11358
11359 * emacs-lisp/lselect.el (mouse-highlight-priority)
11360 (x-lost-selection-functions, zmacs-regions):
11361 * emacs-lisp/pp.el (font-lock-verbose):
11362 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
11363 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
11364 (ses-mode-map):
11365 * emacs-lisp/tcover-unsafep.el (safe-functions):
11366 * international/mule-cmds.el (mac-system-coding-system)
11367 (mac-system-locale):
11368 * language/ethio-util.el (rmail-current-message)
11369 (rmail-message-vector):
11370 * language/thai-util.el (thai-auto-composition-mode):
11371 * mail/metamail.el (rmail-current-message, rmail-message-vector):
11372 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
11373 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
11374 (vm-primary-inbox, vm-spool-files):
11375 * mail/rmail.el (deleted-head, font-lock-fontified)
11376 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
11377 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
11378 (total-messages):
11379 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
11380 (rmail-summary-mode-map):
11381 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
11382 (rmail-last-label, rmail-last-multi-labels)
11383 (rmail-summary-vector, rmail-total-messages):
11384 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
11385 * mail/rmailsum.el (msgnum):
11386 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
11387 (rmail-current-message):
11388 * obsolete/fast-lock.el (font-lock-face-list):
11389 * obsolete/rnewspost.el (mail-reply-buffer):
11390 * obsolete/scribe.el (compile-command):
11391 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
11392
11393 2005-08-28 John Paul Wallington <jpw@gnu.org>
11394
11395 * ibuf-ext.el (ibuffer-auto-update-changed):
11396 Use `frame-or-buffer-changed-p' to check whether we need to update.
11397 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
11398 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
11399 as a `frame-or-buffer-changed-p' state vector instead.
11400
11401 2005-08-27 Romain Francoise <romain@orebokech.com>
11402
11403 * textmodes/makeinfo.el (makeinfo-compile):
11404 Use `compilation-start'. Set `next-error-function' according to
11405 `disable-errors'.
11406 (makeinfo-next-error): New function.
11407 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
11408 (makeinfo-buffer): Likewise.
11409
11410 * progmodes/compile.el (compilation-start): Add autoload cookie.
11411
11412 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
11413 * textmodes/sgml-mode.el: Likewise.
11414 * progmodes/python.el: Likewise.
11415
11416 2005-08-27 Eli Zaretskii <eliz@gnu.org>
11417
11418 * simple.el (blink-matching-paren-distance): Document the meaning
11419 of nil value, and allow to customize to nil.
11420
11421 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
11422 command.com, not command.exe.
11423
11424 2005-08-26 John Wiegley <johnw@newartisans.com>
11425
11426 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
11427 code around a bit so that an extraneous nil argument is not added
11428 to a command when no args are given.
11429
11430 * eshell/esh-arg.el (eshell-parse-double-quote): If a
11431 double-quoted argument resolves to nil, return it as an empty
11432 string rather than as nil. This made it impossible to pass "" to
11433 a shell script as a null string argument.
11434
11435 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
11436
11437 * outline.el (outline-invent-heading): New fun.
11438 (outline-promote, outline-demote): Use it.
11439 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
11440 (outline-end-of-subtree): Remove unused var `opoint'.
11441
11442 2005-08-26 David Reitter <david.reitter@gmail.com>
11443
11444 * menu-bar.el (truncate-lines, write-file, print-buffer)
11445 (ps-print-buffer-faces, ps-print-buffer, split-window):
11446 Disable menu items when the frame they refer to is invisible, or when
11447 they refer to a buffer and the minibuffer is selected.
11448
11449 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
11450
11451 * progmodes/flymake.el (flymake-highlight-err-lines):
11452 Use save-excursion around flymake-highlight-line to preserve point.
11453
11454 2005-08-26 Eli Zaretskii <eliz@gnu.org>
11455
11456 * progmodes/octave-mod.el: Change Author and Maintainer address.
11457 (octave-maintainer-address): Change Kurt's email address.
11458 * progmodes/octave-inf.el: Change Author and Maintainer address.
11459 * progmodes/octave-hlp.el: Change Author and Maintainer address.
11460
11461 2005-08-26 Kim F. Storm <storm@cua.dk>
11462
11463 * subr.el (version-list-<, version-list-<=, version-list-=):
11464 Rename from integer-list-*.
11465 (version-list-not-zero): Likewise. Fix while loop.
11466 (version=): Use version-list-= instead of string-equal.
11467
11468 2005-08-26 Richard M. Stallman <rms@gnu.org>
11469
11470 * outline.el (outline-promote): Try shortening the heading.
11471 As last resort, read the heading to use.
11472 (outline-demote): As last resort, read the heading to use.
11473
11474 2005-08-26 Romain Francoise <romain@orebokech.com>
11475
11476 * progmodes/compile.el (compilation-start): Doc fix.
11477
11478 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
11479 (antlr-font-lock-additional-keywords): Fix reference to
11480 `antlr-font-lock-literal-regexp' erroneously changed during the
11481 mass face rename.
11482 (antlr-run-tool): Use `compilation-start'.
11483
11484 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
11485 instead of the obsolete `compile-internal'.
11486
11487 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
11488
11489 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
11490 (number, original-date):
11491 * calendar/cal-china.el (date):
11492 * calendar/cal-coptic.el (date):
11493 * calendar/cal-french.el (date):
11494 * calendar/cal-hebrew.el (date, entry, number, original-date):
11495 * calendar/cal-islam.el (date, number, original-date):
11496 * calendar/cal-iso.el (date):
11497 * calendar/cal-julian.el (date):
11498 * calendar/cal-mayan.el (date):
11499 * calendar/cal-menu.el (date, event):
11500 * calendar/cal-persia.el (date):
11501 * calendar/lunar.el (date):
11502 * calendar/solar.el (date): Add defvars.
11503
11504 * emerge.el:
11505 * ibuffer.el:
11506 * info-xref.el:
11507 * obsolete/bg-mouse.el:
11508 * obsolete/sun-curs.el:
11509 * obsolete/swedish.el: Move the `defvar's to the top level.
11510
11511 * smerge-mode.el (smerge-refined-change): Add :group.
11512
11513 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
11514
11515 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
11516 (smerge-keep-n): Remove props.
11517 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
11518 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
11519 now that it's done in smerge-keep-n.
11520 (smerge-refined-change): New face.
11521 (smerge-refine-chopup-region, smerge-refine-highlight-change)
11522 (smerge-refine): New funs.
11523 (smerge-basic-map): Bind smerge-refine.
11524
11525 2005-08-25 Juri Linkov <juri@jurta.org>
11526
11527 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
11528 compilation-process-setup-function and compilation-disable-input
11529 in grep-mode instead of let-bindings in grep.
11530
11531 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
11532 Delete "Automatic File De/compression" (auto-compression-mode).
11533
11534 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
11535
11536 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
11537 Silence warning about non-existent variable.
11538
11539 2005-08-25 Richard M. Stallman <rms@gnu.org>
11540
11541 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
11542 Rename "Describe Key" to "Describe Key or Mouse Operation".
11543
11544 * mail/mailalias.el (build-mail-aliases): Delete comments
11545 from the contents before processing them.
11546
11547 * isearch.el (isearch-edit-string): Erase the Search prompt
11548 if user enters an empty string and there is no default.
11549
11550 * comint.el (comint-file-name-prefix): Add autoload.
11551
11552 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
11553
11554 * subr.el (play-sound): Rearrange to avoid warning.
11555
11556 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
11557
11558 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
11559 New hook.
11560 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
11561
11562 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
11563
11564 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
11565
11566 * custom.el (custom-theme-set-variables): Sort minor modes last.
11567
11568 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11569
11570 * subr.el (version-separator, version-regexp-alist): New vars used by
11571 version comparison funs.
11572 (integer-list-<, integer-list-=, integer-list-<=)
11573 (integer-list-not-zero): New funs for integer list comparison.
11574 (version-to-list, version=, version<, version<=): New funs for version
11575 comparison.
11576
11577 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
11578
11579 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
11580 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
11581 time to silence the byte-compiler.
11582
11583 * ibuffer.el (ibuffer-compile-make-eliding-form)
11584 (ibuffer-check-formats): Use `with-no-warnings' to hide references
11585 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
11586 so it's silly to get warnings for it).
11587 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
11588 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
11589 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
11590 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
11591 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
11592 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
11593 Defvar at compile time.
11594 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
11595 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
11596 Declare them before use.
11597
11598 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
11599 (info-xref-good, info-xref-bad): Defvar at compile time.
11600
11601 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
11602 Use `let*' instead of `let'.
11603
11604 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
11605 (*mouse-y*, menu, char): Defvar at compile time.
11606 (sc::menu): Declare it before use.
11607 (sc::pack-one-line): Use `let', not `let*'.
11608
11609 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
11610 (mail-send-hook): Defvar at compile time.
11611
11612 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
11613 Defvar at compile time.
11614
11615 * term/sun-mouse.el (current-global-mousemap)
11616 (current-local-mousemap): Declare them before use.
11617
11618 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
11619
11620 * bookmark.el (bookmark-after-jump-hook): New hook.
11621 (bookmark-jump): Run `bookmark-after-jump-hook'.
11622
11623 2005-08-23 Juri Linkov <juri@jurta.org>
11624
11625 * faces.el (minibuffer-prompt): Doc fix.
11626
11627 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
11628
11629 * progmodes/xscheme.el: Trivial changes to silence warnings.
11630 (xscheme-previous-mode, xscheme-previous-process-state):
11631 Add defvars.
11632 (xscheme-last-input-end, xscheme-process-command-line)
11633 (xscheme-process-name, xscheme-buffer-name)
11634 (xscheme-expressions-ring-max, xscheme-expressions-ring)
11635 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
11636 (xscheme-control-g-synchronization-p)
11637 (xscheme-control-g-disabled-p, xscheme-string-receiver)
11638 (default-xscheme-runlight, xscheme-runlight)
11639 (xscheme-runlight-string, xscheme-process-filter-state)
11640 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
11641 Move to beginning of file.
11642 (scheme-interaction-mode-commands-alist)
11643 (scheme-interaction-mode-map, scheme-debugger-mode-map):
11644 Declare them before use. Note: the initialization code for the variables
11645 has not been moved because it uses functions that reference the variables.
11646 (xscheme-control-g-message-string, xscheme-process-filter-alist)
11647 (xscheme-prompt-for-expression-map): Declare them before use.
11648 (scheme-debugger-mode-commands): "?\ " -> "?\s".
11649
11650 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
11651
11652 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
11653
11654 2005-08-22 Juri Linkov <juri@jurta.org>
11655
11656 * faces.el (set-face-underline): Delete this duplicate function
11657 and make an obsolete alias to set-face-underline-p.
11658 (set-face-underline-p): Use docstring of set-face-underline.
11659 (describe-face): Create hyperlink to parent face.
11660
11661 * info.el (Info-insert-dir): Use save-excursion around
11662 insert-buffer-substring.
11663 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
11664 (Info-escape-percent): Delete function.
11665 (Info-fontify-node): Replace Info-escape-percent by
11666 replace-regexp-in-string with REP arg set to lambda that
11667 duplicates `%' and preserves text properties.
11668
11669 * progmodes/compile.el (compilation-disable-input): Doc fix.
11670 (define-compilation-mode): Doc fix and refill.
11671 (kill-compilation): Use `mode-name' in the error message.
11672 (compilation-find-file): Use `compilation-error' in the
11673 read-file-name's prompt.
11674
11675 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
11676
11677 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
11678 (smerge-auto-leave): Make undo re-enable the mode.
11679 (debug-ignored-errors): Add the user-error of impossible resolution.
11680 (smerge-resolve): Move things around a bit, in preparation for later.
11681 (smerge-diff): Don't fail if the buffer has no associated file.
11682 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
11683 (smerge-conflict-overlay): New function.
11684 (smerge-match-conflict): Don't add text properties here.
11685 (smerge-find-conflict): Instead, add an overlay here.
11686 Also check for the case where we're inside a conflict already, so as to
11687 obviate the need for font-lock-multiline, which is unbearably slow with
11688 large conflicts and ciomplex font-lock patterns.
11689 (smerge-remove-props): Remove overlay rather than text-properties.
11690 (smerge-mode): Don't set font-lock-multiline.
11691 Remove overlays when turned off.
11692
11693 2005-08-21 Kim F. Storm <storm@cua.dk>
11694
11695 * ido.el (ido-ignore-item-p): Use save-match-data.
11696 Bind case-fold-search to ido-case-fold locally.
11697
11698 2005-08-20 Richard M. Stallman <rms@gnu.org>
11699
11700 * files.el (normal-mode): If font lock is on, turn it off and on.
11701
11702 * subr.el (replace-regexp-in-string): Doc fix.
11703
11704 * startup.el (command-line-1): Don't suppress startup screen
11705 due to existing processes.
11706
11707 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
11708
11709 * progmodes/compile.el (compilation-disable-input): Default to nil.
11710
11711 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
11712
11713 * progmodes/compile.el (compilation-disable-input): New defcustom.
11714 (compilation-start): If compilation-disable-input is non-nil, send
11715 EOF to the compilation process.
11716
11717 2005-08-20 Eli Zaretskii <eliz@gnu.org>
11718
11719 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
11720 Run the argument of tex-shell-cd-command through
11721 convert-standard-filename, to get the correct style of slashes on
11722 Windows, and enclose the result in quotes, in case the file name
11723 includes whitespace or other special characters.
11724
11725 2005-08-19 Andreas Schwab <schwab@suse.de>
11726
11727 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
11728 process.
11729
11730 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
11731
11732 * cus-start.el (minibuffer-prompt-properties): Correct typo.
11733
11734 2005-08-18 Kim F. Storm <storm@cua.dk>
11735
11736 * scroll-lock.el: Fix errors due to incorrect line wrapping.
11737
11738 2005-08-18 Richard M. Stallman <rms@gnu.org>
11739
11740 * scroll-lock.el: New file.
11741
11742 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
11743
11744 * dired.el (dired-move-to-end-of-filename):
11745 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
11746
11747 2005-08-18 Kim F. Storm <storm@cua.dk>
11748
11749 * ido.el (ido-everywhere): Fix defcustom :set function to disable
11750 rather than toggle mode when custom value is nil.
11751 (ido-everywhere): Fix defun doc string.
11752
11753 2005-08-17 Richard M. Stallman <rms@gnu.org>
11754
11755 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
11756 as tag instead of "Inviolable".
11757
11758 2005-08-17 Kim F. Storm <storm@cua.dk>
11759
11760 * windmove.el (windmove-coordinates-of-position): Remove.
11761 (windmove-coordinates-of-window-position): Remove.
11762 (windmove-reference-loc): Use posn-at-point instead.
11763
11764 * subr.el (insert-for-yank-1): Doc fix.
11765
11766 * ido.el (ido-enter-matching-directory): Rename from
11767 ido-enter-single-matching-directory. Change `slash' choice to
11768 `only'. Add `first' choice.
11769 (ido-exhibit): Adapt to above changes.
11770
11771 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
11772
11773 * Makefile.in: Expand comment about building loaddefs.el.
11774
11775 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
11776
11777 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
11778 Comment use of defadvice.
11779
11780 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
11781
11782 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
11783
11784 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
11785 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
11786 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
11787 * progmodes/idlw-shell.el, progmodes/ld-script.el,
11788 * progmodes/which-func.el, ruler-mode.el, strokes.el,
11789 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
11790 for backward compatibility for faces that did not appear in the
11791 previous Emacs release.
11792
11793 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
11794
11795 2005-08-15 Kim F. Storm <storm@cua.dk>
11796
11797 * emulation/cua-base.el (cua-delete-region): Return t if
11798 deleted region was non-empty.
11799 (cua-replace-region): Inhibit overwrite-mode for
11800 self-insert-command if replaced region was non-empty.
11801 (cua--explicit-region-start, cua--status-string): Make them
11802 buffer-local at top-level...
11803 (cua-mode): ...rather than when mode is enabled.
11804
11805 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
11806
11807 * progmodes/vhdl-mode.el (vhdl-emacs-21):
11808 Set t for Emacs 21, 22, and so on.
11809
11810 2005-08-15 David Ponce <david@dponce.com>
11811
11812 * tree-widget.el: Update Commentary header.
11813 (tree-widget-theme): Doc fix.
11814 (tree-widget-space-width): New option.
11815 (tree-widget-image-properties): Look up in the default theme too.
11816 (tree-widget--cursors): Only for images with arrow pointer shape.
11817 (tree-widget-lookup-image): Pointer shape is hand by default.
11818 (tree-widget-icon): Rename generic icon widget from
11819 `tree-widget-control'.
11820 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
11821 derive from `tree-widget-icon'.
11822 (tree-widget-handle): Improve default look and feel of the text
11823 representation.
11824 (tree-widget): Rename :*-control properties to :*-icon properties.
11825 Add :action and :help-echo properties.
11826 (tree-widget-after-toggle-functions): Move.
11827 (tree-widget-close-node, tree-widget-open-node): Remove.
11828 (tree-widget-before-create-icon-functions): New hook.
11829 (tree-widget-value-create): Update to allow customization of icons
11830 and nodes at run-time via that new hook.
11831 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
11832 (tree-widget-icon-action, tree-widget-icon-help-echo)
11833 (tree-widget-action, tree-widget-help-echo): New functions.
11834
11835 2005-08-15 Kim F. Storm <storm@cua.dk>
11836
11837 * ido.el (ido-buffer-internal): Use with-no-warnings.
11838 (ido-make-merged-file-list): Use while-no-input.
11839
11840 2005-08-15 Richard M. Stallman <rms@gnu.org>
11841
11842 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
11843 (flyspell-large-region): Fix doc and custom type.
11844
11845 2005-08-14 Richard M. Stallman <rms@gnu.org>
11846
11847 * files.el (interpreter-mode-alist): Doc fix.
11848
11849 * mail/rmail.el (rmail-nonignored-headers): New variable.
11850 (rmail-clear-headers): Use it.
11851 (rmail-reply): Better handling of mail-followup-to header.
11852
11853 * progmodes/sh-script.el (sh-font-lock-keywords-var):
11854 Rename variable from sh-font-lock-keywords. In the `shell' entry,
11855 don't try to refer to executable-font-lock-keywords.
11856 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
11857 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
11858 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
11859 (sh-mode): Set comment-start-skip, local-abbrev-table,
11860 imenu-case-fold-search.
11861 (sh-set-shell): Don't set them here.
11862 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
11863 Don't cache the results in the original alist; don't ever modify
11864 that alist.
11865
11866 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
11867
11868 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
11869 empty.
11870
11871 2005-08-15 Andreas Schwab <schwab@suse.de>
11872
11873 * desktop.el: Put autoload cookie at risky-local-variable declarations.
11874
11875 * dired.el, info.el, mail/rmail.el: Revert last change.
11876
11877 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
11878
11879 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
11880 modification in `eval-after-load' form.
11881 * info.el: Likewise.
11882 * mail/rmail.el: Likewise.
11883
11884 2005-08-14 Juri Linkov <juri@jurta.org>
11885
11886 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11887 Remove highlighting of "Compilation started". Highlight only
11888 the word "finished" in "Compilation finished". Add highlighting
11889 of "interrupt", "killed", "terminated" and the exit code.
11890 (compilation-start): Add newline after header. Use exactly the
11891 same time stamp format as the finishing message.
11892 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
11893
11894 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
11895 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
11896 Add highlighting of "interrupt", "killed", "terminated".
11897
11898 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
11899 enabled and the current command is self-insert-command, call it
11900 explicitly with overwrite-mode bound to nil, to not allow it
11901 to delete the character after the selected region.
11902
11903 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
11904
11905 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
11906 move-end-of-line, end-of-line, and beginning-of-line to the list
11907 of commands after which the echo area is updated.
11908
11909 2005-08-12 Eli Zaretskii <eliz@gnu.org>
11910
11911 * cus-edit.el (custom-save-all, custom-save-delete):
11912 Bind recentf-exclude to exclude custom-file.
11913
11914 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
11915
11916 * mail/rmailsum.el (rmail-summary-end-of-message): New command
11917 to go to the bottom of the mail message. Added to
11918 `rmail-summary-mode-map' with key "/".
11919 (rmail-summary-show-message): New (internal) function for use by
11920 both `rmail-summary-beginning/end-of-message'.
11921 (rmail-summary-beginning-of-message): Change to use
11922 rmail-summary-show-message.
11923
11924 * mail/rmail.el (rmail-end-of-message): New command to go to the
11925 end of the current message. Added to `rmail-mode-map' with key "/".
11926 (rmail-beginning-of-message): Fix to work as documented.
11927 (rmail-mode): Change documentation.
11928
11929 * progmodes/compile.el (compilation-start): Add the line
11930 "Compilation started" with compilation start time.
11931 (compilation-mode-font-lock-keywords): Add `started' to keywords.
11932
11933 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
11934
11935 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
11936 of menu items.
11937
11938 2005-08-11 Richard M. Stallman <rms@gnu.org>
11939
11940 * simple.el (pop-global-mark): Reverse test of widen-automatically.
11941
11942 * battery.el (battery-status-function): Don't use ignore-errors.
11943
11944 2005-08-11 Lute Kamstra <lute@gnu.org>
11945
11946 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
11947 define-obsolete-variable-alias.
11948
11949 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
11950
11951 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
11952 (ange-ftp-send-cmd): Revert last change, and expand
11953 the comment explaining the problem.
11954
11955 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
11956
11957 * ldefs-boot.el: Update.
11958
11959 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
11960 item to "Time, Load and Mail". Change help echo text.
11961
11962 * time.el (display-time-use-mail-icon, display-time-format)
11963 (display-time-string-forms): Shorten first line of docstrings.
11964
11965 2005-08-10 Lars Hansen <larsh@soem.dk>
11966
11967 * desktop.el (desktop-buffer-mode-handlers):
11968 Make non-customizable. Add autoload cookie. Change initial value to
11969 nil; add elements in respective modules instead. Fix doc string.
11970 (desktop-load-file): New function.
11971 (desktop-minor-mode-handlers): New autoloaded variable.
11972 (desktop-create-buffer): Call minor mode handlers.
11973 Use desktop-load-file to load major and minor mode modules prior to
11974 checking for a handler.
11975 (desktop-save): Don't add nil to desktop-minor-modes for minor
11976 modes with nil function in desktop-minor-mode-table. Don't delete
11977 desktop file before rewriting it.
11978 (desktop-locals-to-save): Add autoload cookie. Don't make
11979 automatically buffer-local. Add variables column-number-mode,
11980 size-indication-mode, indent-tabs-mode,
11981 indicate-buffer-boundaries, indicate-empty-lines and
11982 show-trailing-whitespace.
11983 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
11984 regexps. Don't use desktop-clear-preserve-buffers-regexp.
11985 (desktop-clear-preserve-buffers-regexp): Delete.
11986 (desktop-clear-preserve-buffers): Update initial value and docstring.
11987 (desktop-save-buffer): Fix doc string.
11988
11989 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
11990 (hilit-chg-desktop-restore): New function.
11991 (highlight-changes-mode): Add highlight-changes-mode to
11992 desktop-locals-to-save.
11993
11994 * dired.el: Add handler to desktop-buffer-mode-handlers.
11995 (dired-restore-desktop-buffer): Remove autoload cookie.
11996 (dired-mode): Add autoload cookie.
11997
11998 * info.el: Add handler to desktop-buffer-mode-handlers.
11999 (Info-restore-desktop-buffer): Remove autoload cookie.
12000 (Info-mode): Add autoload cookie.
12001
12002 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
12003 (mh-restore-desktop-buffer): Remove autoload cookie.
12004 (mh-folder-mode): Add autoload cookie.
12005
12006 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
12007 (rmail-restore-desktop-buffer): Remove autoload cookie.
12008
12009 2005-08-11 Masatake YAMATO <jet@gyve.org>
12010
12011 * hexl.el (hexl-address-region):
12012 (hexl-ascii-region, hexl-font-lock-keywords):
12013 (hexl-highlight-line-range): Use the term "region"
12014 instead of "area" for consistency with the other symbols
12015 defined in hexl.el.
12016
12017 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
12018
12019 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
12020 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
12021 out by Juri Linkov). Add `display-battery-mode'.
12022
12023 2005-08-09 Juri Linkov <juri@jurta.org>
12024
12025 * progmodes/compile.el (compilation-mode-font-lock-keywords):
12026 Remove `-text' from face variable names.
12027 (compilation-error-file-name, compilation-warning-file-name)
12028 (compilation-info-file-name): Delete faces.
12029 (compilation-line-number, compilation-column-number):
12030 Remove face underlining.
12031 (compilation-message-face): Set to `underline' value by default.
12032 (compilation-error-face, compilation-warning-face)
12033 (compilation-info-face): Remove `-file-name' from face names.
12034 (compilation-error-text-face, compilation-warning-text-face)
12035 (compilation-info-text-face): Delete face variables.
12036 (compilation-text-face): Delete function.
12037
12038 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
12039 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
12040 (grep-error-face): Set to `compilation-error' instead of
12041 `compilation-error-face' (which is redefined to `grep-hit-face' in
12042 grep buffers).
12043 (grep-mode-font-lock-keywords): Remove `-text' from face variable
12044 names. Use `grep-error-face' instead of `compilation-error-text-face'.
12045
12046 * dired-aux.el (dired-do-query-replace-regexp):
12047 Use `query-replace-read-args'.
12048
12049 * replace.el (query-replace-read-from, query-replace-read-to)
12050 (query-replace-read-args): Rename arg `string' to `prompt'.
12051
12052 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
12053
12054 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
12055
12056 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
12057 uploading files.
12058 (ange-ftp-canonize-filename): Handle file names beginning with ~
12059 correctly.
12060
12061 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
12062
12063 * textmodes/fill.el (canonically-space-region)
12064 (fill-context-prefix, fill-french-nobreak-p)
12065 (fill-delete-newlines, fill-comment-paragraph)
12066 (justify-current-line): "?\ " -> "?\s".
12067
12068 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
12069
12070 * textmodes/fill.el (fill-nonuniform-paragraphs):
12071 Improve argument/docstring consistency.
12072
12073 2005-08-09 Richard M. Stallman <rms@gnu.org>
12074
12075 * textmodes/ispell.el (ispell-word): More fboundp checks.
12076
12077 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
12078 (find-file-noselect-1): Call it here, only if RAWFILE.
12079 (normal-mode): Always set some major mode.
12080 (save-some-buffers-action-alist): Change some explanation strings.
12081 (file-name-non-special): In the `quote' method, use unwind-protect.
12082
12083 2005-08-09 Magnus Henoch <mange@freemail.hu>
12084
12085 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
12086 (ispell-have-aspell-dictionaries): New variable.
12087 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
12088 (ispell-get-aspell-config-value): New function.
12089 (ispell-aspell-find-dictionary): New function.
12090 (ispell-aspell-add-aliases): New function.
12091 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
12092 appropriate. Don't look for ispell dictionaries if we use aspell.
12093 (ispell-menu-map): Don't build a submenu of dictionaries.
12094
12095 2005-08-09 Richard M. Stallman <rms@gnu.org>
12096
12097 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
12098 (sql-read-passwd): Use read-passwd.
12099
12100 * progmodes/idlw-toolbar.el (idlwave-toolbar)
12101 (idlwave-toolbar-is-possible): Add defvars.
12102
12103 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
12104 Avoid warnings.
12105
12106 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
12107 (idlwave-system-class-info, idlwave-executive-commands-alist):
12108 Use defvar.
12109
12110 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
12111
12112 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
12113 Avoid warnings.
12114
12115 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
12116 and content-type: headers.
12117
12118 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
12119
12120 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
12121 and rename some of them to be more self-explanatory.
12122
12123 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
12124
12125 * startup.el (command-line-1): Implement -scriptload.
12126
12127 * replace.el (occur-engine): Initial *Occur* output not undoable.
12128
12129 * menu-bar.el (menu-bar-file-menu): Rename some menu items
12130 and improve help strings.
12131
12132 * isearch.el (isearch-repeat): When changing direction,
12133 mark search successful.
12134
12135 * ediff-init.el: Use (featurep 'xemacs).
12136
12137 * comint.el (send-invisible): Identify buffer, if not selected.
12138
12139 * align.el: Delete autoload for c-guess-basic-syntax.
12140
12141 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
12142
12143 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
12144 Improve argument/docstring consistency. Doc fixes.
12145 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
12146 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
12147 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
12148 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
12149 (r2bv-organization, r2bv-pages, r2bv-primary-author)
12150 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
12151 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
12152 Defvar at compile time.
12153
12154 2005-08-09 Juri Linkov <juri@jurta.org>
12155
12156 * info.el: Replace `info' with upper-case `Info' where appropriate.
12157 (info-title-1, info-title-2, info-title-3, info-title-4)
12158 (info-menu-header): Move up face definitions.
12159 (info-menu-star): Rename from `info-menu-5'.
12160 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
12161 (Info-fontify-visited-nodes): Fix docstring.
12162 (Info-hide-note-references): Fix docstring.
12163 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
12164 menu items in the same way as on cross-references.
12165 (info-apropos): Fix sorting order and formatting to be like in the
12166 stand-alone Info browser. Display error messages for 1 sec.
12167 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
12168 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
12169 from the menu bar.
12170 (Info-insert-dir): Restore point after calling
12171 `insert-buffer-substring'.
12172
12173 2005-08-08 Richard M. Stallman <rms@gnu.org>
12174
12175 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
12176 (recompute-lucid-menubar): Add defvars.
12177
12178 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
12179
12180 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
12181
12182 * net/net-utils.el (run-dig): Rename from `dig'.
12183
12184 * play/gametree.el (gametree-mode): Use make-local-variable,
12185 not make-variable-buffer-local.
12186
12187 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
12188
12189 * ansi-color.el (ansi-color-make-extent)
12190 (ansi-color-set-extent-face): Use fboundp, not functionp.
12191
12192 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
12193 not make-variable-buffer-local.
12194
12195 * bookmark.el (Info-current-file): Add defvar.
12196 (bookmark-jump-noselect): Use with-no-warnings.
12197
12198 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
12199
12200 * ebuff-menu.el (Helper-return-blurb): Add defvar.
12201
12202 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
12203
12204 * find-file.el (ada-procedure-start-regexp)
12205 (ada-package-start-regexp): Add defvars.
12206
12207 * info.el (Info-insert-dir): Use insert-buffer-substring.
12208
12209 * xml.el (xml-att-def-re): Add defvar.
12210
12211 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
12212 calling convention.
12213
12214 * subr.el (while-no-input): Return t if there is input.
12215
12216 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
12217
12218 * cus-start.el (all): Add `overflow-newline-into-fringe'.
12219
12220 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
12221
12222 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
12223 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
12224
12225 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
12226
12227 * cmuscheme.el (scheme-start-file): Replace reference to
12228 `user-emacs-directory' by "~/.emacs.d/".
12229
12230 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
12231
12232 * info.el (Info-dir-remove-duplicates): Avoid case folding
12233 in loop; instead, keep downcased strings for comparison.
12234 Suggested by Helmut Eller.
12235
12236 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
12237
12238 Sync with Tramp 2.0.50.
12239
12240 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
12241 XEmacs case; not necessary anymore.
12242 (tramp-user-regexp): Allow "@" as part of user name.
12243 (tramp-handle-set-visited-file-modtime)
12244 (tramp-handle-insert-file-contents)
12245 (tramp-handle-write-region): No special handling for
12246 `last-coding-system-used, because this is done in
12247 `tramp-accept-process-output' now.
12248 (tramp-accept-process-output): New defun.
12249 (tramp-process-one-action, tramp-process-one-multi-action)
12250 (tramp-wait-for-regexp, tramp-wait-for-output)
12251 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
12252 Howells <dhowells@redhat.com>.
12253 (clear-visited-file-modtime): Defadvice removed. The check for
12254 unset buffer's modtime does not need to be based on
12255 `tramp-buffer-file-attributes'. Suggested by RMS.
12256 (tramp-message): Insert "\n" if not being at beginning of line.
12257 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
12258 sequence with same logic.
12259 (tramp-completion-handle-expand-file-name): Discard call of
12260 `tramp-drop-volume-letter'. It is not necessary, and there have
12261 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
12262 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
12263 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
12264 should always be visible.
12265 (tramp-handle-insert-directory, tramp-setup-complete)
12266 (tramp-set-process-query-on-exit-flag)
12267 (tramp-append-tramp-buffers): Pacify byte-compiler.
12268 (tramp-bug): Delete non-existing variables from list.
12269 Apply `tramp-load-report-modules' as pre-hook.
12270 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
12271 `shell-prompt-pattern' because of non-7bit characters.
12272 Reported by Sebastian Luque <sluque@mun.ca>.
12273 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
12274 (tramp-match-string-list): Remove function.
12275 (tramp-wait-for-regexp): Remove call of that function.
12276 Suggested by Kim F. Storm <storm@cua.dk>.
12277 (tramp-set-auto-save-file-modes): Use octal integer code #o600
12278 instead of octal character code ?\600. The latter resulted in a
12279 syntax error with XEmacs.
12280
12281 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
12282 XEmacs case; not necessary anymore.
12283 (tramp-smb-handle-write-region): No special handling for
12284 `last-coding-system-used, because this is done in
12285 `tramp-accept-process-output' now.
12286 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
12287
12288 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
12289
12290 * wid-edit.el (widget-choice-value-create):
12291 Unconditionally respect user choice. Set :explicit-choice back to nil
12292 when no longer needed.
12293 (widget-choice-action): Unconditionally respect user choice.
12294 Eliminate :explicit-choice-value.
12295
12296 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
12297
12298 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
12299 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
12300 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
12301 running new function `toggle-indicate-empty-lines'.
12302 Rename "Customize" item to "Customize fringe".
12303 Rename "Indicators" item to "Buffer boundaries" and change help echo.
12304 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
12305 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
12306 Delete "Empty lines only" item.
12307 (menu-bar-showhide-fringe-ind-customize): New function.
12308 (menu-bar-showhide-fringe-ind-mixed)
12309 (menu-bar-showhide-fringe-ind-box)
12310 (menu-bar-showhide-fringe-ind-right)
12311 (menu-bar-showhide-fringe-ind-left)
12312 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
12313 instead of `fringe-indicators'.
12314
12315 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
12316
12317 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
12318 Change the date of last update.
12319
12320 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
12321
12322 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
12323 (viper-exec-yank, viper-put-back): Don't display modification msg
12324 if in the minibuffer.
12325
12326 * viper-init.el (viper-replace-overlay-cursor-color)
12327 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
12328 Make variables frame local.
12329
12330 * viper-util.el (viper-append-filter-alist): Use append instead of
12331 nconc.
12332
12333 * viper.el (viper-vi-state-mode-list)
12334 (viper-emacs-state-mode-list): Move help-mode and
12335 completion-list-mode from the first list to the second.
12336 (viper-mode): Docstring.
12337 (viper-go-away, viper-non-hook-settings): Don't localize
12338 minor-mode-alist in newer Emacsen. Add advice to
12339 set-cursor-color. Don't bind "\C-c\\".
12340
12341 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
12342
12343 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
12344 (scheme-macro-expand-command): New user options.
12345 (scheme-trace-procedure, scheme-expand-current-form): New commands.
12346 (scheme-form-at-point, scheme-start-file)
12347 (scheme-interactively-start-process): New functions.
12348 (scheme-get-process): New function, extracted from `scheme-proc'.
12349 (run-scheme): Call `scheme-start-file' to get start file, and pass
12350 it to `make-comint'.
12351 (switch-to-scheme, scheme-proc):
12352 Call `scheme-interactively-start-process' if no Scheme buffer/process
12353 is available.
12354
12355 2005-08-06 Juri Linkov <juri@jurta.org>
12356
12357 * progmodes/compile.el (compilation-mode-font-lock-keywords):
12358 Use `compilation-text-face', `compilation-info-text-face' and
12359 `compilation-error-text-face' instead of `font-lock-keyword-face'.
12360 (compilation-error): New face.
12361 (compilation-error-file-name): Inherit from
12362 `compilation-error' instead of `font-lock-warning-face'.
12363 (compilation-warning-file-name): Inherit from
12364 `compilation-warning' instead of `font-lock-warning-face'.
12365 (compilation-info, compilation-error-file-name)
12366 (compilation-warning-file-name, compilation-info-file-name)
12367 (compilation-line-number, compilation-column-number): Doc fix.
12368 (compilation-error-text-face, compilation-warning-text-face)
12369 (compilation-info-text-face): New face variables.
12370 (compilation-line-face, compilation-column-face)
12371 (compilation-enter-directory-face)
12372 (compilation-leave-directory-face): Doc fix.
12373 (compilation-text-face): New function.
12374
12375 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
12376 instead of 1 to display binary file names as info file links.
12377 (grep-error-face): Use `compilation-error-face' instead of
12378 `font-lock-keyword-face'.
12379 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
12380 and `compilation-warning-text-face' instead of
12381 `font-lock-keyword-face'. Use `compilation-error-text-face'
12382 instead of `grep-error-face'.
12383
12384 2005-08-05 Kenichi Handa <handa@m17n.org>
12385
12386 * international/code-pages.el: Add autoload cookies for all coding
12387 systems.
12388
12389 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
12390
12391 * cus-start.el (all): Put undo.c where it alphabetically belongs.
12392
12393 2005-08-04 Juri Linkov <juri@jurta.org>
12394
12395 * progmodes/compile.el (compilation-mode-map):
12396 * progmodes/grep.el (grep-mode-map):
12397 Bind TAB to `compilation-next-error' and [backtab] to
12398 `compilation-previous-error'.
12399
12400 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
12401 matching line numbers, column numbers and their ranges with regexp
12402 matching only line numbers.
12403 (grep-context-face): New face variable.
12404 (grep-mode-font-lock-keywords): Use it.
12405
12406 * faces.el (read-face-name): Delete duplicate faces.
12407
12408 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
12409
12410 * thumbs.el (thumbs-find-image): Don't make variables
12411 automatically buffer local.
12412 (thumbs-current-tmp-filename, thumbs-current-image-filename)
12413 (thumbs-image-num): Make automatically buffer local.
12414 (thumbs-show-thumbs-list): Use `make-local-variable', not
12415 `make-variable-buffer-local'.
12416 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
12417
12418 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
12419 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
12420 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
12421 (bother, bye, canyou, chatlst, continue, deathlst, describe)
12422 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
12423 (feelings-about, foullst, found, hello, history, howareyoulst)
12424 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
12425 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
12426 (neglst, obj, object, owner, please, problems, qlist)
12427 (random-adjective, relation, remlst, repetitive-shortness)
12428 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
12429 (shortlst, something, sportslst, stallmanlst, states, subj)
12430 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
12431 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
12432 Defvar at compile time.
12433
12434 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
12435 not `make-variable-buffer-local'.
12436
12437 2005-08-02 Kim F. Storm <storm@cua.dk>
12438
12439 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
12440 rectangle overlay in selected window.
12441
12442 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
12443
12444 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
12445 instead of display group. Make `indicate-buffer-boundaries'
12446 customizable through Custom.
12447
12448 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
12449
12450 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
12451 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
12452 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
12453 (gdb-put-string): Fix typos in docstrings.
12454
12455 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
12456
12457 Update copyright notices of files in progmodes directory for
12458 release of Emacs 22.1.
12459
12460 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
12461
12462 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
12463 Don't barf if the GUD buffer has been killed.
12464
12465 2005-08-01 Kim F. Storm <storm@cua.dk>
12466
12467 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
12468
12469 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
12470
12471 * simple.el (next-error-follow-minor-mode):
12472 make-variable-buffer-local -> make-local-variable.
12473
12474 * emacs-lisp/cl-extra.el: Require CL also when compiling.
12475
12476 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
12477 (byte-compile-form-make-variable-buffer-local): New functions to warn
12478 about misuses of make-variable-buffer-local where make-local-variable
12479 was meant.
12480
12481 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
12482
12483 * bs.el (bs-attributes-list): Doc fix.
12484 (bs): Update url-link.
12485
12486 * desktop.el (desktop-save-buffer): Fix typos in docstring.
12487 (desktop-load-default): Simplify.
12488
12489 * ibuffer.el (ibuffer-columnize-and-insert-list)
12490 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
12491 (ibuffer-unmark-all, ibuffer-toggle-marks)
12492 (ibuffer-unmark-forward, ibuffer-unmark-backward)
12493 (ibuffer-compile-make-format-form, ibuffer-format-column)
12494 (ibuffer-current-buffers-with-marks)
12495 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
12496 (ibuffer): Doc fix.
12497 (ibuffer-mode): Fix typo in docstring.
12498 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
12499 with `define-obsolete-variable-alias'.
12500 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
12501
12502 2005-07-29 Kenichi Handa <handa@m17n.org>
12503
12504 * international/mule-cmds.el (select-message-coding-system):
12505 Be sure to use LF for end-of-line. If no coding system is decided,
12506 return iso-8859-1-unix.
12507
12508 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
12509
12510 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
12511 (ange-ftp-pending-error-line): New vars.
12512 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
12513 to handle the non-fatal no-route-to-host messages.
12514 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
12515
12516 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
12517
12518 * isearch.el (isearch-mode-map, isearch-other-meta-char)
12519 (isearch-quote-char, isearch-printing-char)
12520 (isearch-text-char-description): "?\ " -> "?\s".
12521 (isearch-lazy-highlight-cleanup)
12522 (isearch-lazy-highlight-initial-delay)
12523 (isearch-lazy-highlight-interval)
12524 (isearch-lazy-highlight-max-at-a-time)
12525 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
12526 Declare with define-obsolete-*-alias macros.
12527 (isearch-forward): Fix typo in docstring.
12528 (search-invisible, search-ring-yank-pointer)
12529 (regexp-search-ring-yank-pointer): Doc fixes.
12530
12531 * recentf.el (recentf-menu-append-commands-p): Declare with
12532 `define-obsolete-variable-alias'.
12533 (recentf-max-saved-items, recentf-menu-filter)
12534 (recentf-arrange-by-rule-subfilter): Doc fixes.
12535 (recentf-menu-append-commands-flag)
12536 (recentf-initialize-file-name-history, recentf-expand-file-name)
12537 (recentf-clear-data): Fix typos in docstrings.
12538
12539 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
12540
12541 * progmodes/gdb-ui.el: Smarten comments.
12542 (gdb-info-breakpoints-custom): Use nowarn when finding file.
12543
12544 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12545
12546 * term/apollo.el (terminal-init-apollo): New function containing
12547 all former top level forms in the file.
12548 * term/bobcat.el (terminal-init-bobcat):
12549 * term/cygwin.el (terminal-init-cygwin):
12550 * term/iris-ansi.el (terminal-init-iris-ansi):
12551 * term/linux.el (terminal-init-linux):
12552 * term/news.el (terminal-init-news):
12553 * term/rxvt.el (terminal-init-rxvt):
12554 * term/sun.el (terminal-init-sun):
12555 * term/tvi970.el (terminal-init-tvi970):
12556 * term/vt100.el (terminal-init-vt100):
12557 * term/vt102.el (terminal-init-vt102):
12558 * term/vt125.el (terminal-init-vt125):
12559 * term/vt200.el (terminal-init-vt200):
12560 * term/vt201.el (terminal-init-vt201):
12561 * term/vt220.el (terminal-init-vt220):
12562 * term/vt240.el (terminal-init-vt240):
12563 * term/vt300.el (terminal-init-vt300):
12564 * term/vt320.el (terminal-init-vt320):
12565 * term/vt400.el (terminal-init-vt400):
12566 * term/vt420.el (terminal-init-vt420):
12567 * term/wyse50.el (terminal-init-wyse50):
12568 * term/xterm.el (terminal-init-xterm): Likewise.
12569
12570 * term/README: Describe the terminal-init-* functionality.
12571
12572 * startup.el (command-line): After loading the terminal initialization
12573 file call the corresponding terminal initialization function.
12574
12575 2005-07-27 Kenichi Handa <handa@m17n.org>
12576
12577 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
12578 negative.
12579
12580 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
12581 (ps-mule-composition-prologue): Fix for the case that
12582 RelativeCompose is false.
12583
12584 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
12585
12586 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
12587
12588 * descr-text.el (describe-char): Handle the case where the list of
12589 chars is displayed in a separate frame.
12590 Be a bit more discriminating when looking for the char.
12591
12592 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
12593
12594 * bookmark.el (bookmark-automatically-show-annotations)
12595 (bookmark-read-annotation-text-func): Doc fixes.
12596 (bookmark-save): Improve argument/docstring consistency.
12597 (bookmark-get-bookmark, bookmark-get-bookmark-record)
12598 (bookmark-alist-from-buffer)
12599 (bookmark-upgrade-file-format-from-0)
12600 (bookmark-grok-file-format-version)
12601 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
12602 (bookmark-read-annotation-mode)
12603 (bookmark-insert-current-bookmark, bookmark-jump)
12604 (bookmark-exit-hook): Fix typos in docstrings.
12605 (bookmark-exit-hooks): Define as obsolete alias.
12606 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
12607 not `bookmark-exit-hooks'. Fix docstring.
12608 (bookmark-bmenu-select): "?\ " -> "?\s".
12609
12610 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
12611
12612 * startup.el (command-line): Fix typo.
12613
12614 2005-07-24 Richard M. Stallman <rms@gnu.org>
12615
12616 * tooltip.el (tooltip-mode): Test emacs-basic-display,
12617 not emacs-quick-startup.
12618
12619 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
12620
12621 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
12622 (reb-next-match, reb-show-subexp): Use `with-selected-window'
12623 instead of `reb-with-current-window'.
12624 (reb-prev-match): Likewise. Also, don't move left if the search
12625 was unsuccessful.
12626 (reb-initialize-buffer): New function.
12627 (re-builder, reb-change-syntax): Use it.
12628
12629 * man.el (Man-goto-page): Make second argument NOERROR optional.
12630
12631 2005-07-23 Richard M. Stallman <rms@gnu.org>
12632
12633 * man.el (Man-bgproc-sentinel): Check here for failure to find
12634 any man page in the output, and report the error here.
12635 (Man-arguments): Make it permanent local.
12636 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
12637 (Man-mode): Pass t for NOERROR.
12638
12639 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
12640 (grep-mode-font-lock-keywords):
12641 Don't use compilation-...-face for messages that are not file names.
12642
12643 * progmodes/compile.el (compilation-mode-font-lock-keywords):
12644 Don't use compilation-...-face for messages that are not file names.
12645
12646 2005-07-22 Juri Linkov <juri@jurta.org>
12647
12648 * startup.el (normal-splash-screen): Update menu name.
12649
12650 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
12651
12652 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
12653
12654 * term/xterm.el: Load term/rxvt if the terminal is actually an
12655 rxvt terminal.
12656 (xterm-rxvt-set-background-mode): Remove, not used anymore.
12657
12658 * term/rxvt.el (function-key-map): Use substitute-key-definition
12659 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
12660
12661 * term/cygwin.el: New file.
12662
12663 2005-07-22 Kim F. Storm <storm@cua.dk>
12664
12665 * image-file.el (insert-image-file, image-file-yank-handler):
12666 Fix last change to maintain a (unique) yank-handler on yanked images.
12667
12668 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
12669
12670 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
12671 of the file size (as in "177B" for 177 bytes). This happens with
12672 "ls -lh" on FreeBSD.
12673
12674 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
12675
12676 * hilit-chg.el (highlight-changes-global-initial-state)
12677 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
12678 (hilit-chg-fixup, highlight-changes-mode):
12679 Fix typos in docstrings.
12680 (highlight-changes-global-modes, highlight-changes-rotate-faces):
12681 Doc fixes.
12682
12683 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
12684
12685 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
12686 mode function using `eval-after-load'.
12687
12688 2005-07-21 Kim F. Storm <storm@cua.dk>
12689
12690 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
12691 included when reporting an emacs crash, and tell about the DEBUG file.
12692
12693 * image-file.el (insert-image-file): Add yank-handler.
12694 (image-file-yank-handler): Yank handler to make unique copies of
12695 images when they are yanked into a buffer next to each other.
12696
12697 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
12698
12699 * comint.el (comint-use-prompt-regexp, comint-send-input)
12700 (comint-source-default, comint-extract-string)
12701 (comint-get-source, comint-word, comint-completion)
12702 (comint-source, comint-prompt-read-only, comint-update-fence):
12703 Fix typos in docstrings.
12704 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
12705 Declare with define-obsolete-*-alias macros.
12706 (comint-previous-matching-input-from-input)
12707 (comint-next-matching-input-from-input)
12708 (comint-previous-matching-input, comint-next-matching-input)
12709 (comint-forward-matching-input):
12710 Improve argument/docstring consistency.
12711
12712 * desktop.el (desktop-clear-preserve-buffers-regexp):
12713 Also preserve the *server* buffer.
12714
12715 * simple.el (clone-indirect-buffer): Doc fix.
12716 (fixup-whitespace, just-one-space)
12717 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
12718 (next-error, next-error-highlight)
12719 (next-error-highlight-no-select, next-error-last-buffer)
12720 (next-error-buffer-p, next-error-find-buffer, next-error)
12721 (previous-error, next-error-no-select, previous-error-no-select)
12722 (open-line, split-line, minibuffer-prompt-width, kill-new)
12723 (binary-overwrite-mode): Fix typos in docstrings.
12724 (set-fill-column): Fix typo in message.
12725
12726 * skeleton.el (skeleton-proxy-new): Doc fix.
12727
12728 * strokes.el (strokes-load-hook): Doc fix.
12729 (strokes-grid-resolution, strokes-get-grid-position)
12730 (strokes-renormalize-to-grid, strokes-read-stroke)
12731 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
12732 (strokes-global-map): Fix typos in docstrings.
12733 (strokes-help): Doc fix. Fix help message and pass it through
12734 `substitute-command-keys'.
12735
12736 * tempo.el (tempo-insert-prompt, tempo-interactive)
12737 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
12738 (tempo-insert-string-functions, tempo-local-tags)
12739 (tempo-define-template, tempo-insert-template)
12740 (tempo-insert-prompt-compat, tempo-is-user-element)
12741 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
12742 Fix typos in docstrings.
12743
12744 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
12745 (vcursor-key-bindings, vcursor-use-vcursor-map)
12746 (vcursor-find-window, vcursor-scroll-down)
12747 (vcursor-disable, vcursor-beginning-of-buffer)
12748 (vcursor-end-of-buffer): Fix typos in docstrings.
12749 (vcursor-relative-move, vcursor-get-char-count):
12750 Improve argument/docstring consistency.
12751
12752 * version.el: "?\ " -> "?\s".
12753
12754 * wid-edit.el (widget-default-create, widget-after-change)
12755 (widget-default-format-handler, widget-checklist-add-item)
12756 (widget-radio-add-item, widget-choose, widget-specify-secret)
12757 (widget-field-value-create, widget-field-value-get)
12758 (widget-editable-list-format-handler)
12759 (widget-editable-list-entry-create, widget-group-value-create)
12760 (widget-documentation-link-add)
12761 (widget-documentation-string-value-create): "?\ " -> "?\s".
12762 (widget-convert-text): Doc fix.
12763 (widget-narrow-to-field, widget-field-find)
12764 (widget-url-link-action, widget-emacs-library-link-action)
12765 (widget-color-notify): Fix typos in docstrings.
12766
12767 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
12768 (x-select-text, set-w32-system-coding-system)
12769 (w32-add-charset-info): Fix typos in docstrings.
12770
12771 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
12772 (cua-enable-cua-keys, cua-use-hyper-key)
12773 (cua-virtual-rectangle-edges): Fix typos in docstrings.
12774 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
12775
12776 * net/tramp.el (tramp-handle-load): Fix typo in error message.
12777
12778 * emacs-lisp/re-builder.el (regexp-builder): Declare with
12779 `defalias' instead of faking it.
12780
12781 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
12782 (eshell-ls-missing, eshell-ls-dired-initial-args)
12783 (eshell-ls-use-in-dired): Fix typos in docstrings.
12784
12785 2005-07-20 Kim F. Storm <storm@cua.dk>
12786
12787 * emulation/cua-base.el (cua-mode): Improve doc string.
12788
12789 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
12790
12791 * abbrev.el (expand-region-abbrevs): Doc fix.
12792 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
12793 Improve argument/docstring consistency.
12794
12795 * arc-mode.el (archive-get-descr, archive-alternate-display):
12796 Doc fixes.
12797 (archive-l-e): Improve argument/docstring consistency.
12798 (archive-tmpdir, archive-unixdate, archive-unixtime)
12799 (archive-chmod-entry): Fix typos in docstrings.
12800 (archive-unflag, archive-unflag-backwards)
12801 (archive-unmark-all-files): "?\ " -> "?\s".
12802
12803 * buff-menu.el (Buffer-menu-unmark): Doc fix.
12804 (Buffer-menu-not-modified, Buffer-menu-execute)
12805 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
12806 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
12807
12808 * composite.el (compose-string, encode-composition-rule)
12809 (compose-last-chars): Fix typos in docstrings.
12810
12811 * desktop.el (desktop-enable, desktop-basefilename):
12812 Declare with `define-obsolete-variable-alias'.
12813 (desktop-internal-v2s): Don't quote keywords.
12814 (desktop-clear): "?\ " -> "?\s".
12815
12816 * dired.el (dired-align-file, dired-flag-backup-files)
12817 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
12818 (dired-listing-switches, dired-ls-F-marks-symlinks)
12819 (dired-dwim-target, dired-load-hook, dired-mode-hook)
12820 (dired-directory, dired-faces, dired, dired-revert)
12821 (dired-mode, dired-summary, dired-view-file)
12822 (dired-copy-filename-as-kill, dired-delete-file)
12823 (dired-no-confirm, dired-unmark-all-marks)
12824 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
12825 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
12826 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
12827 Fix typos in message strings.
12828
12829 * dired-x.el (virtual-dired): Declare with `defalias'.
12830 (dired-mark-unmarked-files, dired-local-variables-file)
12831 (dired-omit-here-always): Doc fix.
12832 (dired-omit-mode, dired-find-subdir)
12833 (dired-enable-local-variables, dired-clean-up-buffers-too)
12834 (dired-extra-startup, dired-mark-extension, dired-jump)
12835 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
12836 (dired-smart-shell-command, dired-guess-shell-alist-user)
12837 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
12838 (dired-x-bind-find-file, dired-x-submit-report):
12839 Fix typos in docstrings.
12840 (dired-mark-unmarked-files): "?\ " -> "?\s".
12841
12842 * dirtrack.el (dirtrack-list): Fix typos in docstring.
12843
12844 * faces.el (describe-face): "?\ " -> "?\s".
12845 (read-all-face-attributes, read-face-font, modify-face)
12846 (face-attr-construct, italic): Fix typos in docstrings.
12847 (frame-update-face-colors): Declare with
12848 `define-obsolete-function-alias'.
12849
12850 * files.el (find-file-noselect, recode-file-name): Doc fixes.
12851 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
12852 (magic-mode-alist, buffer-file-numbers-unique)
12853 (write-file-functions, get-free-disk-space):
12854 Fix typos in docstrings.
12855 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
12856 (write-contents-hooks, write-file-hooks):
12857 Declare with `define-obsolete-variable-alias'.
12858
12859 * forms-d2.el (arch-rj): Fix typo in docstrings.
12860 (arch-tocol): Likewise. "?\ " -> "?\s".
12861
12862 * frame.el (set-frame-font, cursor-in-non-selected-windows):
12863 Fix typo in docstring.
12864 (set-screen-width, set-screen-height): Delete redundant info in
12865 doctrings.
12866 (new-frame, screen-height, screen-width): Declare with
12867 `define-obsolete-function-alias'.
12868 (delete-frame-hook, blink-cursor): Declare with
12869 `define-obsolete-variable-alias'.
12870
12871 * paths.el (prune-directory-list): Fix typos in docstring.
12872
12873 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
12874 (cvs-prefix-get): Fix typos in docstrings.
12875
12876 * ps-print.el (ps-extend-face-list, ps-extend-face)
12877 (ps-print-background-image): Fix typos in docstrings.
12878 (ps-default-fg, ps-default-bg): Doc fixes.
12879
12880 * s-region.el (s-region-bind): Doc fix.
12881 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
12882
12883 * textmodes/org.el (org-table-formula-substitute-names)
12884 (org-table-get-vertical-vector): Doc fixes.
12885 (org-table-recalculate): Remove unused argument to `message'.
12886
12887 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
12888
12889 * textmodes/org.el (org-table-column-names)
12890 (org-table-column-name-regexp)
12891 (org-table-named-field-locations): New variables.
12892 (org-archive-subtree): Protect `this-command' when calling
12893 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
12894 the kill buffer.
12895 (org-complete): Remove fixed-formula completion.
12896 (org-edit-formulas-map): New variable.
12897 (org-table-edit-formulas): New command.
12898 (org-finish-edit-formulas, org-abort-edit-formulas)
12899 (org-show-variable, org-table-get-vertical-vector): New functions.
12900 (org-table-maybe-eval-formula): Handle `:=' fields.
12901 (org-table-get-stored-formulas, org-table-store-formulas)
12902 (org-table-get-formula, org-table-modify-formulas)
12903 (org-table-replace-in-formulas): Handle named field formulas.
12904 (org-table-get-specials): Store locations of named fields.
12905
12906 2005-07-19 Juri Linkov <juri@jurta.org>
12907
12908 * progmodes/grep.el (grep-regexp-alist)
12909 (grep-mode-font-lock-keywords, grep-process-setup):
12910 Use default GNU grep match color "01;31m" instead of "01;41m".
12911 (grep-regexp-alist, grep-mode-font-lock-keywords):
12912 Use `\\[[0-9]*m' instead of `\\[00m'.
12913 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
12914 sgr_start where its handling is more important. Use the real
12915 length of sgr_start instead of constant 8.
12916 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
12917 specially. Delete all remaining escape sequences.
12918 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
12919 (grep-regexp-alist): Make hyperlink only for binary file name
12920 instead of the whole line.
12921 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
12922 (grep-mode): Add autoload.
12923
12924 * emacs-lisp/find-func.el (find-function-regexp):
12925 Add `define-compilation-mode'.
12926
12927 2005-07-19 Juri Linkov <juri@jurta.org>
12928
12929 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
12930 (compare-windows-sync-string-size, compare-windows-recenter)
12931 (compare-windows-highlight, compare-windows): Add version 22.1.
12932 (compare-windows) <defface>: Inherit from lazy-highlight instead
12933 of duplicating its default value.
12934
12935 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
12936 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
12937
12938 * descr-text.el (describe-char): Create link buttons for `charset'
12939 and `code point'. Add the current input method name with a link
12940 button to `to input' field. Print face names of display table
12941 characters in `The display table entry is displayed by' section
12942 instead of printing face-id in the `display' field.
12943 Guess hardcoded faces and create a link button for them.
12944 Skip empty fields when calculating max-width.
12945 Treat `widget-create' specially while inserting strings from the
12946 collected field list.
12947 (describe-char-after): Made obsolete in version 22.1, not 21.5.
12948
12949 * diff-mode.el (diff-file-header): Change foreground color from
12950 yellow to green on light backgrounds.
12951 (diff-context): Inherit from `shadow' only for color/grayscale
12952 with more than 88 colors.
12953 (diff-indicator-removed, diff-indicator-added)
12954 (diff-indicator-changed): New faces.
12955 (diff-font-lock-keywords): Use new faces. Regroup rules.
12956 Add "^---$" for `normal' diff format. Fontify `#' lines with
12957 font-lock-comment-delimiter-face and font-lock-comment-face.
12958 Add `#' to ^[^...] in the rule for `diff-context-face'.
12959
12960 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
12961 a button-like box. Inherit from `highlight' on low colors.
12962 (shadow): Use shades of gray only for color/grayscale with
12963 more than 88 colors. Use green for light backgrounds with
12964 8 colors, and yellow for dark backgrounds with 8 colors.
12965
12966 * font-lock.el (font-lock-regexp-grouping-backslash):
12967 Don't inherit from escape-glyph (use bold for all cases).
12968
12969 * info.el (info-xref-visited): Use light foreground color `violet'
12970 for dark backgrounds instead of dark color `magenta3'.
12971 (info-title-1): Use `yellow' color for dark backgrounds.
12972
12973 * isearch.el (isearch): Use not-too-dark magenta3 instead of
12974 too-light magenta2.
12975
12976 * replace.el (match): Use slightly more light RoyalBlue3 instead
12977 of dark RoyalBlue4.
12978
12979 * wid-edit.el (widget-inactive): Inherit from `shadow'.
12980
12981 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
12982
12983 * novice.el (disabled-command-hook): Declare it with
12984 `define-obsolete-variable-alias'.
12985
12986 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
12987 (desktop-buffer-misc-functions, desktop-buffer-handlers)
12988 (desktop-load-default): Add release to obsolescence info.
12989 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
12990 (desktop-append-buffer-args, desktop-read):
12991 Fix typos in docstrings.
12992 (desktop-kill): Fix typo in message.
12993 (desktop-save): Doc fix.
12994
12995 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
12996
12997 * viper-cmd.el (viper-escape-to-state): Bug fix.
12998 (viper-envelop-ESC-key): Change the definition of fast
12999 keysequence so it'll work with keyboard macros.
13000
13001 * ediff.el (ediff-patch-buffer): Change the docstring.
13002
13003 2005-07-19 Kenichi Handa <handa@m17n.org>
13004
13005 * international/mule-cmds.el (select-safe-coding-system): Try to
13006 use an auto-coding (if any) before anything else. If the found
13007 auto-coding is invalid, show a warning message.
13008
13009 * international/mule.el (find-auto-coding): New function created
13010 by modifying the body of set-auto-coding.
13011 (set-auto-coding): Use find-auto-coding to find a coding.
13012
13013 2005-07-18 Richard M. Stallman <rms@gnu.org>
13014
13015 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
13016 not isearch-mode-end-hook-error.
13017 (allout-before-change-protect): Fix error message.
13018
13019 2005-07-18 Juri Linkov <juri@jurta.org>
13020
13021 * allout.el (allout-mode):
13022 * calculator.el (calculator-copy):
13023 * custom.el (custom-known-themes):
13024 * dired.el (dired-desktop-buffer-misc-data)
13025 (dired-restore-desktop-buffer):
13026 * dired-x.el (dired-omit-marker-char):
13027 * files.el (basic-save-buffer):
13028 * font-core.el (font-lock-mode):
13029 * calendar/calendar.el (calendar-goto-hebrew-date)
13030 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
13031 (calendar-goto-persian-date):
13032 * language/ethio-util.el (ethio-sera-to-fidel-region):
13033 * textmodes/picture.el (picture-mode):
13034 Delete duplicate duplicate words.
13035
13036 2005-07-18 Juri Linkov <juri@jurta.org>
13037
13038 * isearch.el (isearch-mode-map): Remove key bindings for regexp
13039 chars * ? } |.
13040 (isearch-fallback): Don't call `isearch-process-search-char'.
13041 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
13042 (isearch-process-search-char): Call `isearch-fallback' for regexp
13043 chars * ? } |.
13044 (isearch-return-char): Make obsolete with `make-obsolete' instead
13045 of simply documenting it as obsolete in the docstring.
13046 (isearch-fallback): Refill docstring.
13047
13048 * international/isearch-x.el
13049 (isearch-process-search-multibyte-characters): Remove unneeded
13050 `concat'. Add intermediate values to `junk-hist' instead of
13051 `minibuffer-history'. Test the length of `str'.
13052
13053 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
13054
13055 * allout.el (allout-resolve-xref): Fix typos in error strings.
13056 (allout-before-change-protect): Remove unneeded `concat'.
13057
13058 * array.el (array-mode, array-reconfigure-rows)
13059 (untabify-backward): Fix typos in docstrings.
13060 (array-reconfigure-rows): Use `insert-buffer-substring', not
13061 `insert-buffer'.
13062
13063 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
13064 * progmodes/ada-mode.el (ada-make-body):
13065 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
13066
13067 * dired.el (dired-log):
13068 * tar-mode.el (tar-subfile-save-buffer):
13069 * play/zone.el (zone-pgm-stress-destress):
13070 Use `insert-buffer-substring', not `insert-buffer'.
13071
13072 2005-07-17 Simon Josefsson <jas@extundo.com>
13073
13074 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
13075
13076 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
13077
13078 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
13079 Add plain auth method.
13080 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
13081
13082 2005-07-17 Kim F. Storm <storm@cua.dk>
13083
13084 * ido.el (dired-other-window): Add ido property.
13085
13086 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
13087
13088 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
13089 Fix typo in docstring.
13090 (byte-compile-interactive-only-functions): Add `insert-buffer' and
13091 `insert-file-literally'.
13092
13093 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
13094 info and delete redundant message. Doc fix.
13095 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
13096 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
13097
13098 2005-07-16 Richard M. Stallman <rms@gnu.org>
13099
13100 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
13101 (byte-compile-and): Use byte-compile-and-recursion.
13102 (byte-compile-or-recursion): New function.
13103 (byte-compile-or): Use that.
13104 (byte-compile-if): Guard the else-clause too.
13105 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
13106
13107 * isearch.el (isearch-mode-end-hook-quit): New variable.
13108 (isearch-done): Bind it.
13109 (isearch-mode-end-hook): Doc fix.
13110
13111 * allout.el (allout-isearch-did-quit): Variable deleted.
13112 (allout-real-isearch-abort): Function name no longer used.
13113 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
13114 (allout-isearch-rectification): isearch-mode always exists.
13115 Don't set allout-isearch-did-quit.
13116 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
13117 allout-isearch-did-quit.
13118 (allout-enwrap-isearch): Just add the hook.
13119 (allout-isearch-abort): Function deleted.
13120 (allout-pre-command-business): Avoid warning.
13121
13122 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
13123 Correctly avoid warnings.
13124 (pascal-outline): Likewise.
13125
13126 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
13127
13128 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
13129
13130 * play/tetris.el (tetris-mode): Avoid warning.
13131
13132 * play/snake.el (snake-mode): Avoid warning.
13133
13134 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
13135 (gamegrid-set-display-table): Avoid warning.
13136 (gamegrid-set-timer): Likewise.
13137 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
13138 (gamegrid-add-score-with-update-game-score-1): Take FILE
13139 as argument.
13140 (gamegrid-add-score-with-update-game-score): Pass that argument.
13141 Rename have-shared-game-dir to gamegrid-shared-game-dir.
13142
13143 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
13144
13145 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
13146 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
13147
13148 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
13149 and insert-file.
13150
13151 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
13152 (sc-ask): Avoid warnings.
13153
13154 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
13155 (eshell-hist-initialize): Use that var the natural way.
13156
13157 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
13158
13159 * emacs-lisp/re-builder.el (reb-cook-regexp):
13160 Avoid warning calling lre-compile-string.
13161 (reb-color-display-p): Avoid warning.
13162
13163 * calculator.el (calculator-last-input): Guard uses
13164 of event-key and key-press-event-p.
13165 (event-key, key-press-event-p): Delete definitions.
13166
13167 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
13168 (find-gc-source-directory, find-gc-subrs-callers)
13169 (find-gc-noreturn-list, find-gc-source-files)
13170 (find-gc-subrs-called): Vars renamed and defvar'd.
13171
13172 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
13173 (checkdoc-overlay-put, checkdoc-delete-overlay)
13174 (checkdoc-overlay-start, checkdoc-overlay-end)
13175 (checkdoc-mode-line-update, checkdoc-char=):
13176 Define such that compiler knows they are defined.
13177 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
13178 (checkdoc-read-event): Delete. Use read-event directly.
13179
13180 * whitespace.el (whitespace-make-overlay)
13181 (whitespace-overlay-put, whitespace-delete-overlay)
13182 (whitespace-overlay-start, whitespace-overlay-end):
13183 Define such that compiler knows they are defined.
13184 (whitespace): Move conditional inside.
13185
13186 * tempo.el (tempo-insert-template): Suppress warning.
13187
13188 * ediff-diff.el (longlines-mode): Add defvar.
13189
13190 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
13191
13192 * server.el: Bind "C-x #" in a way that works even if C-x is
13193 redefined to a command key, not a prefix key.
13194
13195 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
13196
13197 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
13198 cl-make-type-test till execution time.
13199
13200 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
13201
13202 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
13203 arg ARG and use it.
13204
13205 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
13206
13207 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
13208
13209 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
13210
13211 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
13212 a defcustom with two :set or :type keywords.
13213
13214 2005-07-15 Richard M. Stallman <rms@gnu.org>
13215
13216 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13217 Don't give ^M comment-end syntax.
13218
13219 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
13220
13221 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
13222 Don't consider gdbmi (gdb-mi.el has its own update functions).
13223 (gdb-var-delete): Make it work for gdbmi as well.
13224 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
13225
13226 * progmodes/gud.el (etags, sdb): Only require etags when needed.
13227 (gud-speedbar-menu-items): Correct logic for enabling items.
13228
13229 2005-07-15 Kim F. Storm <storm@cua.dk>
13230
13231 * ido.el: Fix commentary.
13232 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
13233 Use with-no-warnings around ffap-guesser.
13234 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
13235 Let bind minibuffer-completing-file-name to t.
13236
13237 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
13238
13239 * startup.el (site-run-file, keyboard-type): Doc fixes.
13240 (command-line): Check for "--basic-display" argument; also for
13241 "--quick", not "--bare-bones" (which was renamed).
13242 (fancy-splash-text): Add missing item "Getting New Versions".
13243 (normal-splash-screen): Fix typos and improve consistency with
13244 `fancy-splash-text'. Update copyright year.
13245
13246 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
13247 valid binding for `help-char'.
13248
13249 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
13250
13251 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
13252
13253 * term.el (term-mode): Disable cua-mode for term buffers.
13254
13255 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
13256
13257 * add-log.el (add-log-mailing-address, change-log-merge):
13258 Doc fixes.
13259 (change-log-get-method-definition): Fix typo in docstring.
13260
13261 2005-07-14 Kim F. Storm <storm@cua.dk>
13262
13263 * emulation/cua-base.el:
13264 (cua--pre-command-handler-1, cua--pre-command-handler)
13265 (cua--post-command-handler-1, cua--post-command-handler):
13266 Split in two. Check (buffer local) value of cua-mode.
13267 (cua-selection-mode): New command.
13268
13269 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
13270
13271 * custom.el (custom-initialize-safe-set)
13272 (custom-initialize-safe-default): Doc fixes.
13273
13274 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
13275 and simplify :init-value again.
13276
13277 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
13278 and simplify :init-value again. Delete autoload.
13279
13280 * startup.el (command-line): Use `custom-reevaluate-setting' again
13281 for tooltip-mode.
13282
13283 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
13284 a defcustom with two :initialize keywords.
13285
13286 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
13287
13288 * allout.el (my-mark-marker, allout-isearch-prior-pos)
13289 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
13290 (allout-post-command-business, allout-flag-region)
13291 (isearch-reenable-font-lock, allout-yank)
13292 (allout-insert-latex-header, allout-insert-latex-trailer)
13293 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
13294 (allout-latex-verb-quote): Fix typos in docstrings.
13295 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
13296 (allout-unprotected, allout-prefix-data):
13297 Improve argument/docstring consistency.
13298 (allout-chart-subtree): Fix argument spec.
13299 (allout-open-topic): Rename `use_sib_bullet' argument to
13300 `use-sib-bullet'. Doc fix.
13301
13302 * whitespace.el (whitespace-check-buffer-leading)
13303 (whitespace-check-buffer-trailing)
13304 (whitespace-check-buffer-indent)
13305 (whitespace-check-buffer-spacetab)
13306 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
13307 (whitespace-check-leading-whitespace)
13308 (whitespace-check-trailing-whitespace)
13309 (whitespace-check-spacetab-whitespace)
13310 (whitespace-check-indent-whitespace)
13311 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
13312 (whitespace-modes): Fix typos in docstrings.
13313 (defgroup, defcustom): Doc fixes.
13314
13315 * winner.el (winner-mode, winner-boring-buffers)
13316 (winner-pending-undo-ring): Doc fixes.
13317 (winner-ring): Remove unneeded `progn'.
13318 (winner-equal): `defsubst' it.
13319 (winner-redo): Fix message.
13320
13321 2005-07-13 Kim F. Storm <storm@cua.dk>
13322
13323 * simple.el (line-move-1): Always use vertical-motion to
13324 do the last (or only) line move to ensure some movement.
13325 Undo 2005-06-23 change--don't check for overlays.
13326
13327 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13328
13329 * term/mac-win.el (ccl-encode-mac-roman-font)
13330 (ccl-encode-mac-centraleurroman-font)
13331 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
13332 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
13333 Change charset-id boundary of dimension to ?\xef.
13334 (mac-char-fontspec-list): New constant.
13335 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
13336 argument. Nil uses itself as family in font-spec. Previous
13337 behavior for nil is now provided by non-nil non-string argument.
13338 All callers changed. Add font-specs for Mac fonts to
13339 "fontset-default" unless iso8859-1 fonts are installed.
13340
13341 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
13342
13343 * progmodes/sh-script.el (sh-get-indent-info): Only indent
13344 a continuation line if the \ is preceded by SPC or TAB.
13345 (sh-get-indent-info): Simplify.
13346 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
13347 Use with-current-buffer.
13348
13349 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
13350 when the matched text is empty.
13351
13352 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
13353
13354 * startup.el (command-line): Revert to previous handling of
13355 tooltip-mode. Explain in comment why the complexity is needed.
13356
13357 * tooltip.el (tooltip-mode): Revert to previous implementation of
13358 its defcustom.
13359
13360 * frame.el (blink-cursor-mode): Revert to previous implementation
13361 of its defcustom. Update comment.
13362
13363 2005-07-12 Lars Hansen <larsh@soem.dk>
13364
13365 * desktop.el: Update e-mail address.
13366
13367 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13368
13369 * term/mac-win.el (mac-services-mail-selection)
13370 (mac-services-mail-to): New functions.
13371 (mac-application-menu-map): Bind them.
13372
13373 2005-07-12 wulei <milton@wulei.net> (tiny change)
13374
13375 * progmodes/gdb-ui.el: Add note about buffering with Windows.
13376
13377 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
13378
13379 * custom.el (custom-reevaluate-setting): Doc fix.
13380
13381 2005-07-11 Jay Belanger <belanger@truman.edu>
13382
13383 * calc/calc.el (calc-embedded-announce-formula-alist)
13384 (calc-embedded-open-close-plain-alist)
13385 (calc-embedded-open-close-mode-alist): Add checks for additional
13386 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
13387
13388 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
13389
13390 * custom.el (custom-enable-theme): Don't add theme to
13391 `custom-enabled-themes' with `push' because there is no
13392 setf-method for `delq'.
13393
13394 2005-07-11 Richard M. Stallman <rms@gnu.org>
13395
13396 * custom.el (custom-declare-variable): Doc fix.
13397
13398 * dired-aux.el (dired-compare-directories): Remove "." and ".."
13399 from the alists.
13400
13401 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
13402 Do nothing if edebug-active.
13403
13404 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
13405 (edebug-display): Do it here instead.
13406
13407 2005-07-10 Richard M. Stallman <rms@gnu.org>
13408
13409 * cus-face.el (custom-theme-set-faces): Make it work.
13410 (custom-reset-faces): Doc fix.
13411 (custom-theme-reset-internal-face, custom-theme-face-value):
13412 Functions deleted.
13413
13414 * custom.el (custom-push-theme): Maintain list of the settings
13415 of a given theme in its theme-settings property.
13416 Maintain position of old settings in the theme-value
13417 or theme-face property.
13418 (custom-enabled-themes): New variable.
13419 (custom-theme-enabled-p): New function.
13420 (provide-theme): Update custom-enabled-themes.
13421 Disable and reenable the `user' theme.
13422 (require-theme): Doc fix.
13423 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
13424 (custom-theme-value, custom-theme-variable-value): Likewise.
13425 (custom-theme-reset-internal): Likewise.
13426 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
13427 (custom-enable-theme, custom-disable-theme): New functions.
13428 (custom-variable-theme-value, custom-face-theme-value): Likewise.
13429 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
13430 (custom-theme-reset-variables): Simplify.
13431 (deftheme, custom-declare-theme, custom-make-theme-feature):
13432 Definitions moved.
13433
13434 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
13435
13436 * longlines.el (longlines-show-region)
13437 (longlines-unshow-hard-newlines): Recognize hard newlines by
13438 non-nil hard property, instead of t.
13439
13440 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
13441
13442 * viper-cmd.el (viper--key-maps): New variable.
13443 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
13444 emulation-mode-map-alists.
13445 (viper-envelop-ESC-key): Use viper-subseq.
13446 (viper-search-forward/backward/next): Disable debug-on-error.
13447
13448 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
13449 (viper-ESC-key): New defcustoms.
13450
13451 * viper-macs.el (ex-map-read-args): Use viper-subseq.
13452
13453 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
13454 (viper-subseq): Copy of subseq from cl.el.
13455
13456 * viper.el (viper-go-away, viper-set-hooks): Use
13457 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
13458
13459 * viper-mous.el (viper-current-frame-saved): Use defvar.
13460
13461 * viper-init.el: Get rid of -face in face names.
13462
13463 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
13464 Make it work with longlines mode
13465
13466 * ediff-mult.el (ediff-meta-mode-hook): New variable.
13467
13468 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
13469
13470 * ediff-init.el: Get rid of -face in face names.
13471
13472 2005-07-10 Richard M. Stallman <rms@gnu.org>
13473
13474 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
13475 and with-timeout-unsuspend.
13476
13477 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
13478 and with-timeout-unsuspend.
13479
13480 * emacs-lisp/timer.el (with-timeout-timers): New variable.
13481 (with-timeout): Bind that variable to record timers.
13482 (with-timeout-suspend, with-timeout-unsuspend): New functions.
13483
13484 * emacs-lisp/debug.el (debug-help-follow): New function.
13485 (debugger-mode-map): Use that instead of help-follow.
13486 (debugger-setup-buffer): Use eval-buffer-list
13487 to handle eval-buffer frames.
13488
13489 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
13490
13491 * timezone.el (timezone-parse-date): Change first regexp
13492 so it will not mistakenly match dates with no time zone.
13493
13494 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
13495
13496 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
13497
13498 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
13499
13500 * custom.el (custom-initialize-safe-set)
13501 (custom-initialize-safe-default): New functions.
13502
13503 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
13504 and simplify :init-value.
13505
13506 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
13507 and simplify :init-value. Delete obsolete comment.
13508
13509 * startup.el (command-line): Use `custom-reevaluate-setting' to
13510 handle `tooltip-mode'. Delete obsolete comment.
13511
13512 * files.el (set-visited-file-name): Avoid calling
13513 `file-name-nondirectory' with a nil argument.
13514
13515 2005-07-09 Richard M. Stallman <rms@gnu.org>
13516
13517 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
13518 was called with nil for the buffer, handle the read position right.
13519 Handle read position for eval-region, too.
13520
13521 2005-07-09 Juri Linkov <juri@jurta.org>
13522
13523 * fringe.el (fringe-mode): Add period in docstring.
13524 (fringe-query-style): Build prompt depending on `all-frames' arg.
13525
13526 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
13527 to not create links to unrelated functions in the Help buffer.
13528
13529 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
13530 Doc fix.
13531
13532 * simple.el (next-error-hook): New variable.
13533 (next-error): Use it. Doc fix.
13534
13535 * textmodes/ispell.el (ispell-command-loop): Add current
13536 dictionary name and program name to mode-line-format.
13537 (ispell-region, ispell-process-line): Add current dictionary name
13538 and program name to messages.
13539
13540 2005-07-08 Jay Belanger <belanger@truman.edu>
13541
13542 * calc/calc.el (calc-embedded-announce-formula-alist)
13543 (calc-embedded-open-close-formula-alist)
13544 (calc-embedded-open-close-word-alist)
13545 (calc-embedded-open-close-plain-alist)
13546 (calc-embedded-open-close-new-formula-alist)
13547 (calc-embedded-open-close-mode-alist)
13548 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
13549 (calc-embedded-mode-hook): New variables.
13550
13551 * calc/calc-embed.el (calc-embedded-firsttime)
13552 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
13553 New variables.
13554 (calc-do-embedded): Use calc-embedded-firsttime,
13555 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
13556 determine whether or not to run hooks.
13557 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
13558 calc-embedded-firsttime-formula appropriately.
13559 Set calc-embedded delimiter variables according to mode.
13560
13561 2005-07-08 Richard M. Stallman <rms@gnu.org>
13562
13563 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
13564 Check for "emacs", etc., as entire symbol, not just as word.
13565 (checkdoc-file-comments-engine): Use regexp-quote on FN.
13566
13567 * files.el (set-visited-file-name): Report the error
13568 for "empty filename" earlier.
13569 (kill-some-buffers): Ignore buffers already dead.
13570
13571 * fringe.el (fringe-mode): Doc fix.
13572
13573 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
13574 Check for (featurep 'xemacs) and turn off warnings in what it guards.
13575 Use unwind-protect to ensure byte-compile-unresolved-functions
13576 is updated.
13577
13578 * whitespace.el (whitespace-buffer-leading-cleanup):
13579 Simplify w/ skip-chars-forward.
13580 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
13581
13582 * mail/rmail.el (rmail-only-expunge): Fix paren error.
13583 Unconditionally try to leave point at the same old place.
13584
13585 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
13586
13587 * comint.el (comint-postoutput-scroll-to-bottom)
13588 (comint-show-maximum-output): Take scroll-margin into consideration.
13589
13590 2005-07-08 Kim F. Storm <storm@cua.dk>
13591
13592 * ido.el (ido-use-filename-at-point): New choice `guess'.
13593 (ido-file-internal): Try ffap-guesser if selected.
13594
13595 * ido.el (ido-before-fallback-functions): New hook.
13596 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
13597 (ido-read-file-name): Run it.
13598
13599 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
13600
13601 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
13602 strings rather than a list of symbols to the completion function.
13603
13604 2005-07-07 Jay Belanger <belanger@truman.edu>
13605
13606 * calc/calc-units.el (math-apply-units): Change the places in
13607 which units are simplified.
13608
13609 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
13610
13611 * cus-edit.el (customize-option, customize-option-other-window):
13612 Make them handle aliases.
13613
13614 * custom.el (custom-variable-p): Make it recursively follow
13615 aliases. Mention that in the docstring.
13616
13617 2005-07-07 Richard M. Stallman <rms@gnu.org>
13618
13619 * cus-start.el (exec-path): Use `directory' instead of `file'.
13620 Fix tag for nil.
13621
13622 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
13623
13624 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
13625 when called non-interactively. Doc fix.
13626
13627 2005-07-07 Lute Kamstra <lute@gnu.org>
13628
13629 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
13630 new address as well.
13631
13632 2005-07-07 Kenichi Handa <handa@m17n.org>
13633
13634 * international/mule.el (make-coding-system):
13635 Describe `ascii-incompatible' property in the docstring.
13636 (set-file-name-coding-system): Signal an error if coding-system is
13637 ascii-incompatible.
13638 (set-keyboard-coding-system): Likewise.
13639
13640 * international/mule-cmds.el (set-default-coding-systems):
13641 Don't set default-file-name-coding-system and
13642 default-keyboard-coding-system if coding-system is ASCII-incompatible.
13643
13644 * international/utf-16.el: Declare that all UTF-16-based coding
13645 systems are ASCII-incompatible.
13646
13647 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
13648
13649 * progmodes/gud.el: Require font-lock for displaying errors.
13650 Used by gdb-ui.el.
13651
13652 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
13653
13654 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
13655 values for the pattern lists which are `read'able but not
13656 `append'able (like symbols).
13657
13658 2005-07-06 Richard M. Stallman <rms@gnu.org>
13659
13660 * progmodes/flymake.el (flymake-float-time): Instead of
13661 with-no-warnings, test for xemacs.
13662 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
13663 to avoid warning.
13664
13665 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
13666
13667 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
13668
13669 2005-07-05 Lute Kamstra <lute@gnu.org>
13670
13671 * battery.el: Add support for Darwin (with much debugging help
13672 from Samuel Lauber <sam124@operamail.com>).
13673 (battery-status-function, battery-echo-area-format)
13674 (battery-mode-line-format): Add support for pmset on Darwin.
13675 (battery-load-low, battery-load-critical): New user options.
13676 (battery-pmset): New function.
13677
13678 2005-07-05 Lute Kamstra <lute@gnu.org>
13679
13680 Update FSF's address in GPL notices.
13681
13682 * textmodes/page-ext.el: Update FSF's address.
13683
13684 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13685
13686 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
13687 filling from using prefix when filling a single-line docstring.
13688
13689 * progmodes/flymake.el: Remove useless eval-when-compile.
13690
13691 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
13692
13693 2005-07-04 Richard M. Stallman <rms@gnu.org>
13694
13695 * textmodes/org.el (org-file-apps-defaults-gnu):
13696 Rename from org-file-apps-defaults-linux.
13697 (org-default-apps): Don't test system-type for `linux'.
13698 (org-file-apps): Doc fix.
13699
13700 2005-07-04 David Ponce <david@dponce.com>
13701
13702 * tree-widget.el: Improve header Commentary section.
13703 (tree-widget) [defgroup]
13704 (tree-widget-image-enable, tree-widget-themes-directory)
13705 (tree-widget-theme, tree-widget-image-properties-emacs)
13706 (tree-widget-image-properties-xemacs, tree-widget-create-image)
13707 (tree-widget-image-formats, tree-widget-control)
13708 (tree-widget-empty-control, tree-widget-leaf-control
13709 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
13710 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
13711 (tree-widget-keep, tree-widget-after-toggle-functions)
13712 (tree-widget-open-node, tree-widget-close-node): Doc fix.
13713 (tree-widget-open-control, tree-widget-close-control): Fix doc and
13714 :help-echo message.
13715 (tree-widget-set-theme): Doc fix. Use `string-equal'.
13716 (tree-widget-image-properties): Doc fix. Clearer implementation.
13717 (tree-widget--cursors): New constant.
13718 (tree-widget-lookup-image): New function split from
13719 `tree-widget-find-image'. Clearer implementation.
13720 (tree-widget-find-image): Use it.
13721 (tree-widget-button-keymap): Use `set-keymap-parent'.
13722 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
13723 Define the sub-widgets here.
13724 (tree-widget-node): Check that :node is not a tree-widget.
13725 (tree-widget-get-super, tree-widget-open-control)
13726 (tree-widget-close-control, tree-widget-empty-control)
13727 (tree-widget-leaf-control, tree-widget-guide)
13728 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
13729 (tree-widget-no-handle, tree-widget-value-delete)
13730 (tree-widget-map): Remove.
13731 (tree-widget-children-value-save): Doc fix. Simplified.
13732 (tree-widget-value-create): Update according to previous changes.
13733
13734 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
13735
13736 * textmodes/org.el: Leading space replaced by TABS.
13737 (org-recalc-marks, org-table-rotate-recalc-marks)
13738 (org-table-get-specials): Treat "^" and "_" marks.
13739 (org-table-justify-field-maybe): Optional argument NEW.
13740 (org-table-eval-formula): Parsing of the format simplified.
13741 New modes C,I. Honor the %= parameter in the current table.
13742 Avoid unnecessary re-align by using the NEW argument to
13743 `org-table-justify-field-maybe'.
13744 (org-calc-default-modes): Default for date-format mimicks org-mode.
13745 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
13746
13747 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
13748
13749 * cus-face.el (custom-theme-set-faces): Make it handle face
13750 aliases whose alias declarations are pre- or autoloaded.
13751
13752 2005-07-04 Juri Linkov <juri@jurta.org>
13753
13754 * faces.el (read-face-name): Put the code for getting a face name
13755 from the buffer before adding the faces from the `face' property.
13756 Use `completing-read-multiple' instead of `completing-read'.
13757 Require `crm'. Add default value and post-process the returned
13758 list of faces.
13759
13760 * emacs-lisp/crm.el (crm-find-current-element)
13761 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
13762
13763 * emacs-lisp/lisp-mode.el (eval-defun-1):
13764 * emacs-lisp/edebug.el (edebug-eval-defun):
13765 Remove unnecessary quotes.
13766
13767 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
13768
13769 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
13770 (prolog-indent-level): Fix typo in docstring.
13771
13772 * info.el (Info-history, Info-history-forward)
13773 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
13774
13775 * add-log.el (add-change-log-entry):
13776 * comint.el (comint-dynamic-list-input-ring)
13777 (comint-dynamic-list-completions):
13778 * dabbrev.el (dabbrev-expand):
13779 * delim-col.el (delimit-columns-rectangle-line):
13780 * diff-mode.el (diff-context->unified, diff-reverse-direction)
13781 (diff-unified->context):
13782 * ediff-init.el (ediff-abbrev-jobname):
13783 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
13784 (ediff-replace-session-activity-marker-in-meta-buffer):
13785 * info.el (Info-summary):
13786 * lpr.el (printify-region):
13787 * printing.el (pr-create-interface):
13788 * ps-print.el (ps-print-quote):
13789 * ses.el (ses-column-widths, ses-print-cell)
13790 (ses-adjust-print-width, ses-center):
13791 * shell.el (shell-file-name-quote-list):
13792 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
13793 (strokes-fill-current-buffer-with-whitespace)
13794 (strokes-xpm-for-stroke, strokes-list-strokes)
13795 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
13796 * term.el (term-dynamic-list-input-ring)
13797 (term-dynamic-list-completions):
13798 * calc/calc.el (math-format-stack-value):
13799 * emacs-lisp/edebug.el (edebug-display-freq-count):
13800 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
13801 (delphi-new-comment-line):
13802 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
13803 * progmodes/executable.el (executable-set-magic):
13804 * progmodes/python.el (inferior-python-mode):
13805 * progmodes/scheme.el (scheme-mode-syntax-table):
13806 * progmodes/sh-script.el (sh-maybe-here-document):
13807 * progmodes/sql.el (sql-copy-column):
13808 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
13809 * textmodes/bibtex.el (bibtex-mode):
13810 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
13811 (sgml-auto-attributes):
13812 * textmodes/table.el (table-insert, table-shorten-cell)
13813 (table--generate-source-scan-lines, table-delete-row)
13814 (*table--cell-delete-char, table--spacify-frame)
13815 (table--horizontally-shift-above-and-below)
13816 (table--cell-insert-char, table--cell-blank-str)
13817 (table--fill-region-strictly):
13818 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
13819 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
13820
13821 * add-log.el (change-log):
13822 * apropos.el (apropos):
13823 * comint.el (comint-completion, comint-source):
13824 * dabbrev.el (dabbrev):
13825 * delim-col.el (columns):
13826 * diff-mode.el (diff-mode):
13827 * ediff.el (ediff):
13828 * ediff-diff.el (ediff-diff):
13829 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
13830 * ediff-mult.el (ediff-mult):
13831 * ediff-ptch.el (ediff-ptch):
13832 * ediff-wind.el (ediff-window):
13833 * facemenu.el (facemenu):
13834 * indent.el (indent):
13835 * info.el (info):
13836 * jka-cmpr-hook.el (compression, jka-compr):
13837 * lpr.el (lpr):
13838 * outline.el (outlines):
13839 * pcmpl-cvs.el (pcmpl-cvs):
13840 * pcmpl-rpm.el (pcmpl-rpm):
13841 * printing.el (printing):
13842 * ps-print.el (postscript, ps-print, ps-print-horizontal)
13843 (ps-print-vertical, ps-print-headers, ps-print-font)
13844 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
13845 (ps-print-background, ps-print-printer, ps-print-page)
13846 (ps-print-miscellany):
13847 * ses.el (ses):
13848 * shell.el (shell, shell-directories, shell-faces):
13849 * startup.el (initialization):
13850 * strokes.el (strokes):
13851 * term.el (term):
13852 * uniquify.el (uniquify):
13853 * w32-vars.el (w32):
13854 * calc/calc.el (calc):
13855 * emacs-lisp/bytecomp.el (bytecomp):
13856 * emacs-lisp/cl-indent.el (lisp-indent):
13857 * emacs-lisp/edebug.el (edebug):
13858 * emacs-lisp/elp.el (elp):
13859 * emacs-lisp/testcover.el (testcover):
13860 * emacs-lisp/trace.el (trace):
13861 * emulation/viper-ex.el (viper-ex):
13862 * emulation/viper-mous.el (viper-mouse):
13863 * mail/mailalias.el (mailalias):
13864 * mail/supercite.el (supercite, supercite-frames)
13865 (supercite-attr, supercite-cite, supercite-hooks):
13866 * net/rcompile.el (remote-compile):
13867 * net/rlogin.el (rlogin):
13868 * obsolete/ooutline.el (outlines):
13869 * progmodes/delphi.el (delphi):
13870 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
13871 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
13872 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
13873 (ebnf-optimization):
13874 * progmodes/etags.el (etags):
13875 * progmodes/executable.el (executable):
13876 * progmodes/idlwave.el (idlwave):
13877 * progmodes/pascal.el (pascal):
13878 * progmodes/prolog.el (prolog):
13879 * progmodes/python.el (python):
13880 * progmodes/scheme.el (scheme):
13881 * progmodes/sh-script.el (sh, sh-script):
13882 * progmodes/sql.el (SQL):
13883 * progmodes/tcl.el (tcl):
13884 * textmodes/bibtex.el (bibtex, bibtex-autokey):
13885 * textmodes/enriched.el (enriched):
13886 * textmodes/makeinfo.el (makeinfo):
13887 * textmodes/sgml-mode.el (sgml):
13888 * textmodes/table.el (table-hooks):
13889 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
13890 * textmodes/texinfo.el (texinfo):
13891 * textmodes/two-column.el (two-column):
13892 Finish `defgroup' description with period.
13893
13894 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
13895 * eshell/esh-var.el (eshell-var):
13896 * progmodes/vhdl-mode.el (vhdl-testbench):
13897 * textmodes/org.el (org): Fix typos in docstrings.
13898
13899 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
13900 consistency.
13901
13902 * progmodes/flymake.el (flymake-find-file): Remove.
13903 (flymake-float-time): Use `with-no-warnings'.
13904 (flymake-check-start-time, flymake-check-was-interrupted)
13905 (flymake-err-info, flymake-is-running, flymake-last-change-time)
13906 (flymake-new-err-info): `defvar' at compile time.
13907
13908 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
13909
13910 * replace.el (occur-hook): Doc fix.
13911 (occur-1): Don't call `occur-hook' if there are no matches.
13912
13913 2005-07-03 Richard M. Stallman <rms@gnu.org>
13914
13915 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
13916 global-map, save the same map.
13917 (global-map): Don't alter it at top level.
13918 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
13919 Then alter it here instead.
13920 (tpu-edt-off): Set global-map to the saved one.
13921
13922 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
13923 All references simplified.
13924 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
13925 (zmacs-regions): Add defvar.
13926 (repeat-complex-command-map): Everything about that deleted.
13927
13928 * textmodes/artist.el (artist-key-is-drawing)
13929 (artist-key-endpoint1, artist-key-poly-point-list)
13930 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
13931 (artist-key-compl-table, artist-rb-save-data)
13932 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
13933 Don't put them in eval-when-compile.
13934 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
13935
13936 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
13937 Use with-no-warnings.
13938
13939 * net/browse-url.el (dos-windows-version): Add defvar.
13940
13941 * mail/supercite.el (filladapt-prefix-table): Add defvar.
13942
13943 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
13944 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
13945 (rmail-new-summary-line-count): Rename from new-summary-line-count.
13946 Add defvar.
13947 (rmail-summary-beginning-of-message): Use with-no-warnings.
13948 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
13949
13950 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
13951 Use with-no-warnings.
13952
13953 * emulation/vi.el (vi-mark-region): Use c-mark-function.
13954 (c-mark-function): Add point-moving-unit property.
13955 (vi-goto-line): Use with-no-warnings.
13956
13957 * emulation/edt.el (edt-last-copied-word): Add defvar.
13958 (zmacs-region-stays): Likewise.
13959 (edt-mark-section-wisely): Use c-mark-function for C.
13960 Use makr-defun for Fortran.
13961 (time-string): defvar deleted.
13962 (edt-display-the-time): Don't set time-string.
13963
13964 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
13965
13966 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
13967 Don't warn when name is not constant
13968 or for defining the group `emacs'.
13969
13970 * tooltip.el (gud-tooltip-mode): Add defvar.
13971
13972 * startup.el (default-frame-background-mode): Add defvar.
13973
13974 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
13975
13976 * info.el (tool-bar-map): Add defvar.
13977
13978 * dired.el (dnd-protocol-alist): Add defvar.
13979
13980 * dired-aux.el (dired-query): Display question with answer, when
13981 the user answers.
13982
13983 * custom.el (custom-add-option): Doc fix.
13984
13985 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
13986
13987 2005-07-03 Eli Zaretskii <eliz@gnu.org>
13988
13989 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
13990 bogus name from the last change.
13991
13992 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
13993
13994 * custom.el (custom-declare-variable): Fix typos in comment.
13995 (custom-known-themes): Doc fix.
13996 (custom-theme-directory): New defcustom.
13997 (require-theme): Make it check `custom-theme-directory'.
13998
13999 * cus-theme.el (custom-new-theme-mode): New function.
14000 (custom-theme-name, custom-theme-variables, custom-theme-faces)
14001 (custom-theme-description): Add compiler defvars.
14002 (customize-create-theme): Add doc to the "*New Custom Theme*"
14003 buffer. Use `custom-new-theme-mode'.
14004 (custom-theme-write): Put the created buffer in emacs-lisp-mode
14005 and save it to the `custom-theme-directory'. Make this the
14006 default directory of the buffer.
14007
14008 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
14009
14010 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
14011 Fix unbalanced parentheses.
14012
14013 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
14014
14015 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
14016 into flymake-mode and delegate to flymake-mode.
14017
14018 * find-file.el (ff-which-function-are-we-in): Clean up.
14019
14020 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
14021
14022 * replace.el (occur-rename-buffer): Fix docstring.
14023
14024 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
14025 (edt-last-copied-word, edt-learn-macro-count)
14026 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
14027 (edt-rect-start-point, edt-user-global-map, rect-start-point)
14028 (time-string, zmacs-region-stays):
14029 * emulation/edt-mapper.el (edt-save-function-key-map)
14030 (EDT-key-name): `defvar' to silence the byte-compiler.
14031
14032 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
14033
14034 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
14035 font-lock-regexp-backslash. Doc fix.
14036 (font-lock-regexp-backslash-grouping-construct): Rename from
14037 font-lock-regexp-backslash-construct. Doc fix.
14038 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
14039 grouping constructs.
14040
14041 2005-07-02 Eli Zaretskii <eliz@gnu.org>
14042
14043 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
14044 updating all the prerequisites.
14045
14046 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
14047
14048 * textmodes/org.el (org-agenda-start-on-weekday)
14049 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
14050 (org-agenda-use-time-grid, org-archive-location)
14051 (org-allow-space-in-links, org-usenet-links-prefer-google)
14052 (org-enable-table-editor, org-export-default-language)
14053 (org-export-html-show-new-buffer, org-fill-paragraph)
14054 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
14055 (org-goto-quit, org-occur, org-eval-in-calendar)
14056 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
14057 (org-agenda-diary-entry, org-remember-help)
14058 (org-table-convert-region, org-at-table-p)
14059 (org-table-move-row-down, org-table-move-row-up)
14060 (org-table-copy-region, org-table-toggle-vline-visibility)
14061 (org-table-get-stored-formulas, org-table-get-specials)
14062 (org-recalc-commands, org-table-eval-formula)
14063 (org-table-formula-substitute-names, orgtbl-make-binding)
14064 (org-format-org-table-html, org-format-table-table-html)
14065 (org-format-table-table-html-using-table-generate-source)
14066 (org-customize): Fix typos in docstrings.
14067 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
14068 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
14069 (org-back-to-heading): Doc fixes.
14070 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
14071 (org-agenda-change-all-lines, org-get-header):
14072 Improve argument/docstring consistency.
14073 (orgtbl-error): Fix error message.
14074
14075 * progmodes/flymake.el (flymake-find-possible-master-files)
14076 (flymake-master-file-compare, flymake-get-line-err-count)
14077 (flymake-highlight-line, flymake-gui-warnings-enabled):
14078 Fix typos in docstrings.
14079 (flymake-parse-line, flymake-get-project-include-dirs-function)
14080 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
14081 Doc fixes.
14082 (flymake-get-project-include-dirs-function)
14083 (flymake-make-err-menu-data):
14084 Improve argument/docstring consistency.
14085
14086 2005-07-01 Lute Kamstra <lute@gnu.org>
14087
14088 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
14089 Catch errors with ignore-errors. Use temporary buffer.
14090 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
14091
14092 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
14093 background color faces.
14094 (facemenu-set-foreground, facemenu-set-background):
14095 Use facemenu-set-face-from-menu.
14096 (facemenu-set-face-from-menu): Treat face names that start with
14097 "fg:" or "bg:" as special.
14098 (facemenu-add-new-color): Don't create faces. Simplify.
14099
14100 2005-06-30 Richard M. Stallman <rms@gnu.org>
14101
14102 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
14103 (crm-find-current-element): Likewise.
14104
14105 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
14106
14107 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
14108
14109 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
14110
14111 * arc-mode.el (archive-extract): Make it work as a mouse binding.
14112 (archive-mouse-extract): Make it an obsolete alias.
14113 (archive-mode-map): Don't use archive-mouse-extract any more.
14114 (archive-mode, archive-extract): write-contents-hooks ->
14115 write-contents-functions.
14116 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
14117 first arg.
14118 (archive-rename-entry): Update the call.
14119 (archive-zip-summarize): Remove unused var `method'.
14120 (archive-lzh-summarize): Remove unused var `creator'.
14121
14122 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
14123 dedicated frame upon exit.
14124
14125 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
14126 (archive-zip-extract, archive-zip-expunge)
14127 (archive-zip-update, archive-zip-update-case): Use executable-find.
14128 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
14129 Use restore-buffer-modified-p.
14130 (archive-extract, archive-add-new-member, archive-write-file-member):
14131 Use with-current-buffer.
14132 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
14133
14134 2005-06-30 Andreas Schwab <schwab@suse.de>
14135
14136 * progmodes/gud.el (gud-filter): Remove unneeded progn.
14137
14138 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
14139
14140 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
14141
14142 2005-06-30 Juri Linkov <juri@jurta.org>
14143
14144 * faces.el (vertical-border): Inherit from mode-line-inactive
14145 only on tty.
14146
14147 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
14148
14149 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
14150 example, -NLINES in the `occur' docstring).
14151
14152 * replace.el (occur-1): When no matches are found, do not set the
14153 `buffer-read-only' and modified flags for the occur buffer,
14154 because it is deleted.
14155
14156 * emulation/cua-base.el (cua-check-pending-input)
14157 (cua-repeat-replace-region, cua-mode, cua-debug)
14158 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
14159 Fix typos in docstrings.
14160
14161 * emulation/cua-gmrk.el (cua-toggle-global-mark)
14162 (cua-cut-region-to-global-mark)
14163 (cua--cut-rectangle-to-global-mark):
14164 Remove period from end of messages.
14165
14166 * emulation/cua-rect.el (cua-do-rectangle-padding):
14167 Remove period from end of messages.
14168 (cua--rectangle-seq-format): Fix typo in docstring.
14169 (cua-sequence-rectangle, cua-fill-char-rectangle):
14170 Improve argument/docstring consistency.
14171
14172 2005-06-29 Juri Linkov <juri@jurta.org>
14173
14174 * faces.el (default-frame-background-mode): New internal variable.
14175 (frame-set-background-mode): Use it.
14176
14177 * startup.el (normal-top-level): Set default-frame-background-mode
14178 instead of frame-background-mode. Before setting it, test for its
14179 nil value. Remove tests for frame-background-mode and frame
14180 parameter `reverse'. Add test for "unspecified-fg".
14181
14182 * term/xterm.el (xterm-rxvt-set-background-mode):
14183 * term/rxvt.el (rxvt-set-background-mode):
14184 Set default-frame-background-mode instead of frame-background-mode.
14185
14186 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
14187
14188 * simple.el (set-variable): Warn about obsolete user variables.
14189
14190 * imenu.el (imenu--completion-buffer):
14191 * mouse.el (mouse-buffer-menu-alist):
14192 * msb.el (msb-invisible-buffer-p):
14193 * calendar/diary-lib.el (diary-header-line-format):
14194 * emacs-lisp/pp.el (pp-buffer):
14195 * progmodes/cperl-mode.el (cperl-do-auto-fill):
14196 * textmodes/picture.el (picture-replace-match):
14197 Change space constants followed by a sexp to "?\s ".
14198
14199 * play/decipher.el (decipher-loop-with-breaks):
14200 * textmodes/texinfo.el (texinfo-insert-@item): Change space
14201 constants "protected" from end of line by a comment to "?\s".
14202
14203 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
14204
14205 * font-lock.el (save-buffer-state): Use `declare'.
14206
14207 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
14208 reset the syntax-table to cperl-mode-syntax-table.
14209 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
14210 "foo_print_bar" is not matched as a reserved keyword.
14211
14212 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
14213
14214 * textmodes/org.el (orgtbl-setup): New function, for delayed
14215 setup for the orgtbl commands.
14216 (org-calc-default-modes): New option.
14217 (orgtbl-make-binding): Use `defun' to get better help display.
14218 (org-diary): Call `org-compile-prefix-format'.
14219 (org-table-formula-substitute-names): New function.
14220 (org-agenda-day-view, org-agenda-week-view): New commands.
14221 (org-agenda-toggle-week-view): Command removed.
14222 (org-tbl-menu): Split off from org-org-menu.
14223 (org-mode): Move removal of outline-mode menus to here.
14224 (org-table-formula-debug): New option.
14225 (org-table-insert-row): Keep first field if just "#" or "*".
14226 (org-mode): Paragraph regexps fixed.
14227 (org-table-recalculate-regexp): New constant.
14228 (org-table-justify-field-maybe): Avoid replace if not necessary.
14229 (org-copy-special, org-cut-special): Use `call-interactively'.
14230 (org-table-copy-region): Take region from `interactive' call.
14231 (org-trim): Return string even if no match.
14232 (org-formula): New face.
14233 (org-set-font-lock-defaults): No longer highlight "FIXME".
14234 But highlight formula-related fields in table.
14235 (org-table-p): Use regexp, not fontification.
14236 (org-table-align): Handle white space at end of line.
14237 (org-table-formula-evaluate-inline): New option.
14238 (org-mode): Auto-wrapping in comment lines turned off.
14239 (org-table-copy-down): Evaluate only in copied field, not in
14240 destination.
14241 (org-table-current-formula): Variable removed.
14242 (org-table-store-formulas, org-table-get-stored-formulas)
14243 (org-table-modify-formulas, org-table-replace-in-formulas)
14244 (org-table-maybe-eval-formula): New functions.
14245 (org-table-get-formula): Modify to use stored formulas.
14246 (org-table-insert-column, org-table-delete-column)
14247 (org-table-move-column): Call `org-table-modify-formulas'.
14248 (org-complete): Add completion for keyword formulas.
14249 (orgtbl-mode): Pull orgtbl-mode-map to start of
14250 minor-mode-map-alist.
14251
14252 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
14253
14254 * progmodes/python.el (python-check): Require `compile' before
14255 modifying its variables.
14256
14257 * newcomment.el (comment-indent-default): Don't get fooled by an early
14258 end of buffer.
14259
14260 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14261
14262 * ps-print.el (ps-print-version): Fix version number.
14263
14264 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
14265
14266 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
14267
14268 2005-06-28 Richard M. Stallman <rms@gnu.org>
14269
14270 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
14271 (flyspell-local-mouse-map): Declaration deleted.
14272 (flyspell-mouse-map): Bind only mouse-2.
14273 (flyspell-mode-map): Don't test flyspell-use-local-map.
14274 (flyspell-overlay-keymap-property-name): Var deleted.
14275 (flyspell-mode-on): Don't make local bindings for
14276 flyspell-mouse-map and flyspell-mode-map.
14277 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
14278
14279 * textmodes/ispell.el (ispell-word): Do not ignore short words.
14280
14281 * progmodes/compile.el (compilation-next-error-function):
14282 Don't switch buffers; operate on the current buffer.
14283
14284 * progmodes/compile.el (compilation-error-file-name)
14285 (compilation-warning-file-name, compilation-info-file-name)
14286 (compilation-line-number, compilation-column-number): New faces.
14287 (compilation-error-face, compilation-warning-face)
14288 (compilation-info-face, compilation-line-face)
14289 (compilation-column-face): Use them.
14290
14291 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
14292
14293 * comint.el (comint-password-prompt-regexp): Accept ", try again".
14294
14295 * bindings.el (global-map): Bind insertchar and its variants.
14296
14297 2005-06-27 Richard M. Stallman <rms@gnu.org>
14298
14299 * textmodes/artist.el (artist-text-overwrite)
14300 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
14301
14302 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14303
14304 * ps-print.el: It was not working the page selection for printing.
14305 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
14306 (ps-print-version): New version 6.6.7.
14307 (ps-end-sheet): New fun.
14308 (ps-header-sheet, ps-end-job): Call it.
14309
14310 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
14311
14312 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
14313
14314 2005-06-27 Lute Kamstra <lute@gnu.org>
14315
14316 * facemenu.el (facemenu-unlisted-faces): Add foreground and
14317 background color faces.
14318 (facemenu-get-face): Delete function.
14319 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
14320 (facemenu-add-new-color): Make second argument mandatory.
14321 Create the appropriate face and return it. Simplify.
14322 (facemenu-set-foreground, facemenu-set-background): Don't check if
14323 color is defined. Use return value of facemenu-add-new-color.
14324
14325 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
14326
14327 * progmodes/gud.el (gud-filter): Add missing argument to
14328 with-selected-window.
14329
14330 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
14331
14332 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
14333 a :require to the defcustom.
14334
14335 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
14336 defcustoms corresponding to minor modes.
14337
14338 2005-06-26 David Ponce <david@dponce.com>
14339
14340 * recentf.el: Require tree-widget instead of wid-edit.
14341 (recentf-filename-handler): Fix widget :type.
14342 (recentf-cancel-dialog, recentf-open-more-files)
14343 (recentf-open-files-action): Doc fix.
14344 (recentf-dialog-goto-first): New function.
14345 (recentf-dialog-mode-map): Set parent keymap first.
14346 (recentf-dialog-mode): Define with define-derived-mode.
14347 Don't display continuation lines in dialogs.
14348 (recentf-edit-list): Rename from recentf-edit-selected-items.
14349 (recentf-edit-list-select): Rename from recentf-edit-list-action.
14350 Simplify.
14351 (recentf-edit-list-validate): New function.
14352 (recentf-edit-list): Update accordingly.
14353 (recentf-open-files-item-shift): Remove.
14354 (recentf-open-files-item): Convert menu elements into tree and
14355 link widgets. Don't create the widgets.
14356 (recentf-open-files): Update accordingly.
14357 (recentf-save-list): Untabify.
14358
14359 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
14360
14361 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
14362 (keep-lines): Add INTERACTIVE arg. Never delete lines only
14363 partially contained in the active region. Do not take active
14364 region into account when called from Lisp, unless INTERACTIVE arg
14365 is non-nil. Use `forward-line' instead of `beginning-of-line' to
14366 avoid trouble with fields. Make marker point nowhere when no
14367 longer used. Always return nil. Doc fix.
14368 (flush-lines): Add INTERACTIVE arg. Do not take active region
14369 into account when called from Lisp, unless INTERACTIVE arg is
14370 non-nil. Use `forward-line' instead of `beginning-of-line' to
14371 avoid trouble with fields. Make marker point nowhere when no
14372 longer used. Always return nil. Doc fix.
14373 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
14374 interchangeable. Do not take active region into account when
14375 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
14376 message in echo area when called from Lisp, unless INTERACTIVE arg
14377 is non-nil. Avoid saying "1 occurrences". Do not use markers.
14378 Return the number of matches. Doc fix.
14379 (occur): Doc fix.
14380 (perform-replace): Make comment follow double space convention for
14381 the sake of `outline-minor-mode'.
14382
14383 * faces.el (facep): Doc fix.
14384
14385 2005-06-25 Richard M. Stallman <rms@gnu.org>
14386
14387 * facemenu.el (facemenu-enable-faces-p): New function.
14388 (facemenu-background-menu, facemenu-foreground-menu)
14389 (facemenu-face-menu): Add menu-enable property.
14390
14391 * jka-compr.el (jka-compr-insert-file-contents):
14392 Special handling if cannot find the uncompression program.
14393
14394 * cus-face.el (custom-face-attributes): Add autoload.
14395
14396 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14397 Bind comment-indent-function locally.
14398
14399 * window.el (save-selected-window): Use save-current-buffer.
14400
14401 * subr.el (with-selected-window): Use save-current-buffer.
14402
14403 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
14404 and with-current-buffer.
14405
14406 2005-06-24 Richard M. Stallman <rms@gnu.org>
14407
14408 * simple.el (line-move-1): Fix previous change.
14409
14410 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
14411
14412 * replace.el (occur-1): Set `buffer-read-only' and the
14413 buffer-modified flag before running `occur-hook' to protect
14414 against unintentional buffer switches that can lead to data loss.
14415
14416 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
14417
14418 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
14419 (gud-gdb-marker-filter): Use font-lock-warning-face for any
14420 initial error.
14421
14422 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
14423 after fresh input.
14424 (gdb-var-create-handler): Put name of expression in quotes.
14425
14426 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
14427
14428 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
14429 elements of RING in order, and without bogus nil elements.
14430
14431 2005-06-23 Richard M. Stallman <rms@gnu.org>
14432
14433 * simple.el (set-variable): Args renamed; doc fix.
14434 (line-move-1): When there are overlays around, use vertical-motion.
14435
14436 * faces.el (escape-glyph): Use brown against light background.
14437 (nobreak-space): Rename from no-break-space.
14438 Fix previous change.
14439
14440 * dired-aux.el (dired-do-copy): Fix arg prompt.
14441
14442 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
14443
14444 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
14445
14446 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
14447 rather than "Distributor".
14448
14449 2005-06-23 Lute Kamstra <lute@gnu.org>
14450
14451 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
14452 (debug-on-entry): Use it. New interactive declaration that uses
14453 function-called-at-point.
14454
14455 2005-06-23 Kim F. Storm <storm@cua.dk>
14456
14457 * subr.el (save-match-data): Add comment about using evaporate arg
14458 to set-match-data.
14459
14460 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
14461
14462 * cus-edit.el (customize-face)
14463 (customize-face-other-window): Handle face aliases.
14464
14465 * faces.el (face-documentation, set-face-attribute)
14466 (face-spec-set): Handle face aliases.
14467
14468 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
14469
14470 * help-mode.el (help-make-xrefs): If a symbol representing a face
14471 name is not followed by the word "face", it could still be a
14472 function or variable name, so don't bypass other checks.
14473
14474 2005-06-22 Juri Linkov <juri@jurta.org>
14475
14476 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
14477 Replace aliased functions with calls where second arg `inherit' is t.
14478
14479 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
14480
14481 * progmodes/gdb-ui.el (gdb-error): New variable.
14482 (gdb-error): New function.
14483 (gdb-annotation-rules): Act on error-begin and error annotations.
14484 (gdb-concat-output): Use font-lock-warning-face for errors.
14485
14486 2005-06-22 Miles Bader <miles@gnu.org>
14487
14488 * bindings.el (propertized-buffer-identification): Use renamed
14489 `Buffer-menu-buffer' face.
14490
14491 * faces.el (vertical-border): Rename from `vertical-divider'.
14492 (escape-glyph): Change dark-background color back to `cyan'.
14493
14494 2005-06-21 Juri Linkov <juri@jurta.org>
14495
14496 * faces.el (face-user-default-spec): Try getting `customized-face'
14497 prior to `saved-face'.
14498 (frame-background-mode): Refill docstring.
14499
14500 * emacs-lisp/lisp-mode.el (eval-defun-1):
14501 * emacs-lisp/edebug.el (edebug-eval-defun):
14502 Set `saved-face' temporarily to nil before calling form.
14503 Set `customized-face' to the new spec after that.
14504
14505 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
14506
14507 * subr.el (1value, lambda, key-substitution-in-progress):
14508 Doc fixes.
14509
14510 * autoinsert.el (auto-insert-alist):
14511 * ses.el (ses-call-printer):
14512 * subr.el (noreturn):
14513 * emacs-lisp/lisp.el (check-parens):
14514 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
14515 * net/browse-url.el (browse-url-mosaic):
14516 * progmodes/cc-defs.el (c-safe-scan-lists):
14517 * progmodes/ebnf-abn.el (ebnf-abn-lex):
14518 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
14519 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
14520 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
14521 * progmodes/ebnf-iso.el (ebnf-iso-lex):
14522 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
14523
14524 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
14525
14526 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
14527
14528 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
14529
14530 * calendar/appt.el (appt-make-list): Activate the package, if
14531 not already active (for backwards compatibility).
14532
14533 2005-06-20 Kim F. Storm <storm@cua.dk>
14534
14535 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
14536
14537 2005-06-20 Miles Bader <miles@gnu.org>
14538
14539 * faces.el (vertical-divider): New face.
14540
14541 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
14542
14543 * simple.el (kill-whole-line): Doc fix.
14544 (next-error-buffer-p, next-error-find-buffer)
14545 (clone-indirect-buffer): Fix typos in docstrings.
14546 (comment-line-break-function): Doc fix: don't say variable
14547 is automatically buffer-local (it isn't).
14548
14549 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
14550
14551 * net/tramp-ftp.el (top):
14552 * net/tramp-smb.el (top):
14553 * net/tramp-util.el (top):
14554 * net/tramp-uu.el (top):
14555 * net/tramp-vc.el (top):
14556 * net/tramp.el (top): Revert copyright years back to original
14557 ones. Tramp has a life outside GNU Emacs.
14558
14559 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
14560
14561 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
14562
14563 2005-06-18 Juri Linkov <juri@jurta.org>
14564
14565 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
14566 end of first regexp to limit the match to the position between
14567 line number and source line with same separator character as used
14568 between file name and line number. In the second regexp limit
14569 mouse-face area to file name and line number by adding new group
14570 for them and referring it in HYPERLINK arg.
14571 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
14572 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
14573 previous line where grep markers may be already removed.
14574
14575 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
14576
14577 * progmodes/ps-mode.el: Update version and maintainer's email address.
14578
14579 2005-06-18 Steve Youngs <steve@xemacs.org>
14580
14581 * net/browse-url.el (browse-url-browser-function)
14582 (browse-url-default-browser): Add firefox.
14583 (browse-url-firefox-program, browse-url-firefox-arguments)
14584 (browse-url-firefox-startup-arguments)
14585 (browse-url-firefox-new-window-is-tab): New defcustoms.
14586 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
14587
14588 2005-06-17 Richard M. Stallman <rms@gnu.org>
14589
14590 * startup.el (command-line): Warn if specified user name has
14591 no home directory.
14592
14593 * term.el (term-get-old-input, term-input-filter, term-input-sender)
14594 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
14595
14596 * longlines.el (longlines-mode, longlines-show-hard-newlines):
14597 Doc fixes.
14598
14599 * faces.el (underline): Try bold if terminal doesn't support underline.
14600
14601 * mail/sendmail.el (mail-setup-with-from): New variable.
14602 (mail-insert-from-field): New function.
14603 (sendmail-send-it): Call it.
14604 (mail-setup): Optionally call it here.
14605
14606 * term/linux.el: Call tty-no-underline.
14607
14608 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
14609
14610 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
14611
14612 2005-06-17 Miles Bader <miles@gnu.org>
14613
14614 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
14615 (ediff-current-diff-C, ediff-current-diff-Ancestor)
14616 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
14617 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
14618 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
14619 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
14620 Remove "-face" suffix from face names.
14621 (ediff-current-diff-face-A, ediff-current-diff-face-B)
14622 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
14623 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
14624 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
14625 (ediff-even-diff-face-A, ediff-even-diff-face-B)
14626 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
14627 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
14628 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
14629 New backward-compatibility aliases for renamed faces.
14630 (ediff-current-diff-face-A, ediff-current-diff-face-B)
14631 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
14632 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
14633 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
14634 (ediff-even-diff-face-A, ediff-even-diff-face-B)
14635 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
14636 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
14637 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
14638 Use renamed ediff faces.
14639
14640 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
14641 Remove "-face" suffix from face names.
14642 (eshell-test-ok-face, eshell-test-failed-face):
14643 New backward-compatibility aliases for renamed faces.
14644 (eshell-run-test): Use renamed eshell-test faces.
14645
14646 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
14647 face name.
14648 (eshell-prompt-face): New backward-compatibility alias for renamed
14649 face.
14650 (eshell-emit-prompt): Use renamed eshell-prompt face.
14651
14652 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
14653 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
14654 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
14655 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
14656 Remove "-face" suffix from face names.
14657 (eshell-ls-directory-face, eshell-ls-symlink-face)
14658 (eshell-ls-executable-face, eshell-ls-readonly-face)
14659 (eshell-ls-unreadable-face, eshell-ls-special-face)
14660 (eshell-ls-missing-face, eshell-ls-archive-face)
14661 (eshell-ls-backup-face, eshell-ls-product-face)
14662 (eshell-ls-clutter-face):
14663 New backward-compatibility aliases for renamed faces.
14664 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
14665
14666 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
14667 Remove "-face" suffix from face name.
14668 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
14669 instead of literal face.
14670
14671 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
14672
14673 * emacs-lisp/warnings.el (display-warning, lwarn)
14674 (warning-minimum-log-level): Doc fixes.
14675 (warning-minimum-level, warning-minimum-log-level):
14676 Add :debug to :type choices.
14677
14678 * progmodes/ada-mode.el (ada-format-paramlist)
14679 (ada-get-indent-case, ada-check-matching-start)
14680 (ada-check-defun-name, ada-goto-matching-decl-start)
14681 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
14682 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
14683 (ada-make-subprogram-body): Follow error conventions.
14684 (ada-case-exception-file, ada-indent-comment-as-code)
14685 (ada-indent-handle-comment-special, ada-indent-renames)
14686 (ada-indent-return, ada-search-directories-internal)
14687 (ada-tab-policy, ada-case-exception-substring)
14688 (ada-other-file-alist, ada-matching-start-re)
14689 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
14690 (ada-imenu-generic-expression, ada-compile-goto-error)
14691 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
14692 (ada-popup-menu, ada-add-extensions, ada-mode)
14693 (ada-region-selected, ada-create-case-exception)
14694 (ada-create-case-exception-substring, ada-after-keyword-p)
14695 (ada-activate-keys-for-case, ada-adjust-case-region)
14696 (ada-adjust-case-buffer, ada-format-paramlist)
14697 (ada-scan-paramlist, ada-insert-paramlist)
14698 (ada-indent-newline-indent)
14699 (ada-indent-newline-indent-conditional)
14700 (ada-justified-indent-current, ada-goto-previous-word)
14701 (ada-indent-current, ada-get-indent-open-paren)
14702 (ada-get-indent-paramlist, ada-get-indent-end)
14703 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
14704 (ada-get-indent-block-start, ada-get-indent-subprog)
14705 (ada-get-indent-noindent, ada-get-indent-label)
14706 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
14707 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
14708 (ada-goto-stmt-end, ada-goto-next-word)
14709 (ada-check-matching-start, ada-check-defun-name)
14710 (ada-goto-matching-decl-start, ada-goto-matching-start)
14711 (ada-goto-matching-end, ada-search-ignore-string-comment)
14712 (ada-in-decl-p, ada-looking-at-semi-or)
14713 (ada-looking-at-semi-private, ada-in-paramlist-p)
14714 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
14715 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
14716 (ada-next-procedure, ada-previous-procedure, ada-next-package)
14717 (ada-previous-package, ada-create-menu)
14718 (ada-fill-comment-paragraph-justify)
14719 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
14720 (ada-other-file-name, ada-last-which-function-line)
14721 (ada-last-which-function-subprog, ada-which-function)
14722 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
14723 (ada-gen-treat-proc, ada-check-emacs-version)
14724 (ada-continuation-indent, ada-align-region-separate):
14725 Fix typos in docstrings.
14726 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
14727
14728 2005-06-16 Lute Kamstra <lute@gnu.org>
14729
14730 * simple.el (fundamental-mode): Run after-change-major-mode-hook
14731 conditionally.
14732
14733 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
14734
14735 * comint.el (comint-replace-by-expanded-filename)
14736 (comint-prompt-regexp, comint-delimiter-argument-list)
14737 (comint-preinput-scroll-to-bottom):
14738 * info.el (Info-hide-cookies-node):
14739 * ls-lisp.el (ls-lisp-classify):
14740 * find-file.el (ff-search-directories, ff-special-constructs)
14741 (ff-find-other-file):
14742 * font-lock.el (font-lock-keywords):
14743 * shell.el (shell-prompt-pattern)
14744 (shell-dynamic-complete-functions, shell-mode)
14745 (shell-delimiter-argument-list):
14746 * term.el (term-replace-by-expanded-filename)
14747 (term-prompt-regexp, term-delimiter-argument-list):
14748 * woman.el (woman-ignore, woman0-if):
14749 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
14750 * emacs-lisp/elint.el (elint-init-env):
14751 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
14752 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
14753 * language/ethio-util.el (ethio-tilde-escape)
14754 (ethio-use-three-dot-question):
14755 * net/zone-mode.el (zone-mode-load-time-setup):
14756 * progmodes/cc-align.el (c-lineup-argcont):
14757 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
14758 * progmodes/cperl-mode.el (cperl-set-style-back):
14759 * progmodes/inf-lisp.el (inferior-lisp-prompt):
14760 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
14761 Fix spellings in docstrings.
14762
14763 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
14764 * progmodes/modula2.el (m2-for): Fix spellings.
14765
14766 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
14767
14768 * simple.el (undo-more): Don't use `format' on `error' arguments.
14769 Improve argument/docstring consistency.
14770 (pending-undo-list): Doc fix.
14771
14772 * smerge-mode.el (smerge-ensure-match):
14773 * emulation/vip.el (vip-ex):
14774 * net/zone-mode.el (zone-mode-update-serial):
14775 * progmodes/idlwave.el (idlwave-complete):
14776 * progmodes/vhdl-mode.el (vhdl-visit-file)
14777 (vhdl-compose-wire-components):
14778 Don't use `format' on `error' arguments.
14779
14780 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
14781 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
14782 (tooltip-help-tips): Fix typos in docstrings.
14783
14784 2005-06-16 David Ponce <david@dponce.com>
14785
14786 * tree-widget.el (tree-widget-value-create): Simplify last change.
14787
14788 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
14789
14790 * ido.el (ido-incomplete-regexp): New variable.
14791 (ido-set-matches-1): Handle invalid-regexp error and set
14792 ido-incomplete-regexp.
14793 (ido-incomplete-regexp): New face.
14794 (ido-completions): Use it.
14795 (ido-complete, ido-exit-minibuffer, ido-completions):
14796 Handle incomplete regexps.
14797 (ido-completions): Add check for complete match when entering a regexp.
14798
14799 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14800
14801 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
14802
14803 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14804
14805 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
14806 by field delimiters.
14807
14808 2005-06-15 David Ponce <david@dponce.com>
14809
14810 * tree-widget.el: eval-and-compile inlined functions so they will
14811 be available at run-time too.
14812 (tree-widget-super-format-handler)
14813 (tree-widget-format-handler): Remove.
14814 (tree-widget-value-create): Handle the :indent property.
14815
14816 2005-06-15 Miles Bader <miles@gnu.org>
14817
14818 * progmodes/which-func.el (which-func): Only inherit
14819 `font-lock-function-name-face' when that makes sense against the
14820 default mode-line face, otherwise set the face color explicitly.
14821
14822 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
14823 faces instead of (non-existent) variables.
14824
14825 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
14826
14827 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
14828 (iswitchb-get-matched-buffers): Likewise. Simplify.
14829
14830 2005-06-14 Miles Bader <miles@gnu.org>
14831
14832 * progmodes/ld-script.el (ld-script-location-counter):
14833 Remove "-face" suffix from face name.
14834 (ld-script-location-counter-face):
14835 New backward-compatibility alias for renamed face.
14836 (ld-script-location-counter-face): Use renamed face.
14837
14838 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
14839 (cperl-hash): Remove "-face" suffix from face names.
14840 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
14841 New backward-compatibility aliases for renamed faces.
14842 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
14843 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
14844
14845 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
14846 name.
14847 (which-func-face): New backward-compatibility alias for renamed face.
14848 (which-func-format): Use renamed which-func face.
14849
14850 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
14851 (vhdl-function, vhdl-directive, vhdl-reserved-word)
14852 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
14853 names.
14854 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
14855 (vhdl-speedbar-configuration, vhdl-speedbar-package)
14856 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
14857 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
14858 (vhdl-speedbar-architecture-selected)
14859 (vhdl-speedbar-configuration-selected)
14860 (vhdl-speedbar-package-selected)
14861 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
14862 names.
14863 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
14864 Use renamed faces.
14865 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
14866 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
14867 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
14868 Use renamed faces.
14869 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
14870 names.
14871 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
14872 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
14873 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
14874 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
14875 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
14876 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
14877
14878 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
14879 face name.
14880 (sh-heredoc-face): New backward-compatibility alias for renamed face.
14881 (sh-heredoc-face): Use renamed sh-heredoc face.
14882
14883 * progmodes/idlw-help.el (idlwave-help-link):
14884 Remove "-face" suffix from face name.
14885 (idlwave-help-link-face):
14886 New backward-compatibility alias for renamed face.
14887 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
14888
14889 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
14890 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
14891 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
14892 New backward-compatibility aliases for renamed faces.
14893 (idlwave-shell-disabled-breakpoint-face)
14894 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
14895
14896 * progmodes/flymake.el (flymake-errline, flymake-warnline):
14897 Remove "-face" suffix from face names.
14898 (flymake-errline-face, flymake-warnline-face):
14899 New backward-compatibility aliases for renamed faces.
14900 (flymake-highlight-line): Use renamed flymake faces.
14901
14902 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
14903 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
14904 (ebrowse-member-class, ebrowse-progress):
14905 Remove "-face" suffix from face names.
14906 (ebrowse-tree-mark-face, ebrowse-root-class-face)
14907 (ebrowse-file-name-face, ebrowse-default-face)
14908 (ebrowse-member-attribute-face, ebrowse-member-class-face)
14909 (ebrowse-progress-face):
14910 New backward-compatibility aliases for renamed faces.
14911 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
14912 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
14913 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
14914 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
14915
14916 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
14917 antlr-syntax)
14918 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
14919 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
14920 names.
14921 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
14922 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
14923 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
14924 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
14925 backward-compatibility aliases for renamed faces.
14926 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
14927 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
14928 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
14929 remove "font-lock-". Use renamed antlr-mode faces.
14930 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
14931 literal face-names with face variable references.
14932
14933 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
14934 face name.
14935 (Buffer-menu-buffer-face): New backward-compatibility alias for
14936 renamed face.
14937 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
14938
14939 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
14940
14941 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
14942 Eliminate "-face" suffix.
14943 (makefile-targets): Inherit from font-lock-function-name-face and
14944 eliminate "-face" suffix.
14945 (makefile-shell): Remove attributes and eliminate "-face" suffix.
14946 (makefile-*-font-lock-keywords): Append makefile-targets in rule
14947 actions, instead of prepending, to make it less visible.
14948 (makefile-previous-dependency, makefile-match-dependency):
14949 Don't match a target on a continuation line.
14950
14951 * files.el (auto-mode-alist): Put Makefile in gmake mode.
14952
14953 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
14954
14955 * progmodes/gdb-ui.el (menu): Re-order menu items.
14956 (gdb-tooltip-print): Respect tooltip-use-echo-area.
14957
14958 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
14959 Define in tooltip.el.
14960 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
14961 (gud-tooltip-tips): Respect tooltip-use-echo-area and
14962 gud-tooltip-echo-area.
14963
14964 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
14965 backward compatibility and make obsolete.
14966 (tooltip-help-tips): Use tooltip-use-echo-area.
14967 (tooltip-show-help-function): Rename to...
14968 (tooltip-show-help): ...this, because it is a function.
14969 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
14970
14971 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
14972
14973 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
14974 (edebug-print-length, edebug-print-level, edebug-print-circle)
14975 (edebug-modify-breakpoint, edebug-eval-last-sexp)
14976 (edebug-eval-print-last-sexp): Doc fixes.
14977
14978 2005-06-14 Kim F. Storm <storm@cua.dk>
14979
14980 * ido.el (ido-mode): Make a new keymap every time we enable ido,
14981 as the coverage buffer/file/both may change.
14982
14983 2005-06-14 Lute Kamstra <lute@gnu.org>
14984
14985 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
14986 and run-mode-hooks. Simplify.
14987
14988 * mail/rmailedit.el (rmail-edit-mode):
14989 * progmodes/octave-inf.el (inferior-octave-mode):
14990 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
14991
14992 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
14993 and run-mode-hooks.
14994 (recentf-edit-list, recentf-open-files): Don't call
14995 kill-all-local-variables directly.
14996
14997 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
14998
14999 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
15000
15001 * emacs-lisp/byte-run.el (make-obsolete)
15002 (define-obsolete-function-alias): Rename arguments FUNCTION and
15003 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
15004 (make-obsolete-variable, define-obsolete-variable-alias):
15005 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
15006 respectively.
15007
15008 * isearchb.el (isearchb-activate):
15009 * pcvs.el (cvs-mode):
15010 * ses.el (ses-load):
15011 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
15012 * net/tramp.el (tramp-find-file-exists-command)
15013 (tramp-find-shell):
15014 * progmodes/ada-mode.el (ada-create-case-exception)
15015 (ada-create-case-exception-substring, ada-make-subprogram-body):
15016 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
15017 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
15018 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
15019 * textmodes/org.el (org-promote, org-evaluate-time-range)
15020 (org-agenda-next-date-line, org-agenda-previous-date-line)
15021 (org-agenda-error, org-open-at-point, org-table-move-row)
15022 (org-format-table-table-html-using-table-generate-source)
15023 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
15024 * textmodes/reftex.el (reftex-access-scan-info):
15025 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
15026 (reftex-toc-promote-prepare): Follow error conventions.
15027
15028 * diff-mode.el (diff-mode): Fix typo in docstring.
15029
15030 * forms.el (forms--intuit-from-file): Fix reference to
15031 `forms-number-of-fields' in error message.
15032 (forms-print): Fix quoting in error message.
15033
15034 * forms.el (forms-mode):
15035 * emulation/vi.el (vi-goto-insert-state):
15036 * progmodes/flymake.el (flymake-new-err-info)
15037 (flymake-start-syntax-check-for-current-buffer)
15038 (flymake-simple-cleanup):
15039 * eshell/esh-var.el (eshell/export):
15040 * progmodes/gud.el (xdb):
15041 * textmodes/flyspell.el (flyspell-incorrect-hook)
15042 (flyspell-maybe-correct-transposition)
15043 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
15044
15045 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
15046
15047 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
15048 minibuffer prompt.
15049
15050 2005-06-13 Kim F. Storm <storm@cua.dk>
15051
15052 * subr.el (add-to-ordered-list): New defun.
15053
15054 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
15055 add cua--keymap-alist to emulation-mode-map-alists.
15056
15057 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
15058
15059 * subr.el (complete-in-turn): New macro.
15060 (dynamic-completion-table, lazy-completion-table): Add debug info.
15061
15062 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
15063 in preference to face aliases.
15064
15065 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
15066 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
15067 Remove unused vars `start' and `firstline'.
15068 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
15069 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
15070
15071 2005-06-13 Eli Zaretskii <eliz@gnu.org>
15072
15073 * cus-start.el (all): Don't complain about missing GTK-related
15074 variables, unless either `gtk' is boundp or this isn't a
15075 `windows-nt' build.
15076
15077 2005-06-13 Lute Kamstra <lute@gnu.org>
15078
15079 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
15080 run-mode-hooks.
15081
15082 * ediff-mult.el (ediff-meta-mode):
15083 * ediff-util.el (ediff-mode): Use run-mode-hooks.
15084
15085 * ledit.el (ledit-mode): Use delay-mode-hooks.
15086
15087 * woman.el (woman-mode-line-format): Delete constant.
15088 (woman-mode-map): Initialize it properly.
15089 (woman-mode): Set mode-class property to special.
15090 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
15091 Set major-mode and mode-name. Don't set mode-line-format directly.
15092 (Man-getpage-in-background): Don't reference woman-mode-line-format.
15093
15094 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
15095 string argument obsolete.
15096
15097 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
15098
15099 * textmodes/org.el (org-CUA-compatible): New option.
15100 (org-disputed-keys): New variable.
15101 (org-key): New function.
15102 (orgtbl-make-binding): Add docstring to the created function.
15103 (org-mode): Set paragraph start/separate regexps.
15104 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
15105 (org-archive-location, org-archive-mark-done)
15106 (org-archive-stamp-time): New options.
15107 (org-archive-subtree): New command.
15108 (org-fill-paragraph): New function.
15109 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
15110 (org-fake-empty-table-line): Function removed.
15111 (org-format-org-table-html): Do not create empty table lines at
15112 separator lines. Improved table header treatment.
15113 (org-link-format): New option.
15114 (org-make-link): New function.
15115 (org-insert-link, org-store-link): Use org-make-link.
15116 (org-open-file): Quote file name for shell command, to allow
15117 spaces in file names.
15118 (org-link-regexp): Fix bug with mailto link.
15119 (org-link-maybe-angles-regexp, org-protected-link-regexp):
15120 New constants.
15121 (org-export-as-html): Deal with the optional angles around a link.
15122 Better treatment of file: links.
15123 (org-open-at-point): Replace @{ and @} with < and >.
15124 (org-run-mode-hooks): Function removed.
15125 (org-agenda-mode): No longer use `org-run-mode-hooks'.
15126
15127 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
15128
15129 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
15130 MI command -data-list-register-values.
15131 (gdb-post-prompt): Indent properly.
15132
15133 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
15134
15135 * hilit-chg.el (highlight-changes-colors): Rename from
15136 `highlight-changes-colours'.
15137 (highlight-changes-colours): Keep as obsolete alias.
15138 (highlight-changes-face-list): Doc fix.
15139 (hilit-chg-make-list): Use `highlight-changes-colors'.
15140
15141 2005-06-12 Mark A. Hershberger <mah@everybody.org>
15142
15143 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
15144 defun-prompt-regexp.
15145
15146 2005-06-12 Eli Zaretskii <eliz@gnu.org>
15147
15148 * loadup.el: Don't say we are dumping under 2 names on windows-nt
15149 and cygwin.
15150
15151 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
15152 Don't use an old loaddefs.el, as in Makefile.in.
15153
15154 2005-06-12 Lute Kamstra <lute@gnu.org>
15155
15156 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
15157
15158 * man.el (Man-mode-map): Initialize it properly.
15159 (Man-mode): Set mode-class property to special.
15160
15161 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
15162
15163 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
15164
15165 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
15166 A newline is needed in the docstring there.
15167
15168 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
15169 Doc fixes.
15170
15171 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15172
15173 * printing.el: Doc fix. The menubar is no more changed when printing
15174 is loaded, it only changes when pr-menu-bind or pr-update-menus is
15175 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
15176 (pr-version): New version number (6.8.4).
15177 (pr-menu-bind): New command.
15178 (pr-update-menus): Docstring and code fix.
15179 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
15180 Docstring fix.
15181 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
15182 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
15183
15184 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
15185
15186 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
15187 "Returns" to "return", document useful return values, etc.
15188
15189 2005-06-11 Alan Mackenzie <acm@muc.de>
15190
15191 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
15192 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
15193 (adaptive-file-function): Minor amendment to doc-string.
15194
15195 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
15196
15197 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
15198 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
15199 Fix :type--it is `integer', not `string'.
15200
15201 * faces.el (modeline-highlight): Rename from (the erroneous)
15202 `modeline-higilight'.
15203
15204 2005-06-11 Lute Kamstra <lute@gnu.org>
15205
15206 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
15207 lisp-interaction-mode-map but make it the parent.
15208 (edebug-eval-mode): Use define-derived-mode.
15209
15210 2005-06-11 Andreas Schwab <schwab@suse.de>
15211
15212 * bindings.el: Add binding of `ESC functionkey' for every
15213 `M-functionkey'.
15214 * hexl.el (hexl-mode-map): Likewise.
15215
15216 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
15217
15218 * progmodes/compile.el (compilation-error-regexp-alist-alist)
15219 [msft]: update regexp for newer msft compilers.
15220
15221 2005-06-10 Mark A. Hershberger <mah@everybody.org>
15222
15223 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
15224 ATTLIST portions of included DTDs.
15225 (xml-parse-dtd): Eliminate use of inefficient match-data.
15226
15227 2005-06-10 Miles Bader <miles@gnu.org>
15228
15229 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
15230 (mpuz-text): Remove "-face" suffix from face names.
15231 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
15232 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
15233 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
15234
15235 * play/gomoku.el (gomoku-O, gomoku-X):
15236 Remove "-face" suffix from face names.
15237 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
15238 New backward-compatibility aliases for renamed faces.
15239 (gomoku-font-lock-keywords): Use renamed gomoku faces.
15240
15241 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
15242
15243 * thumbs.el: Fixes for changes of 2005-06-09.
15244 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
15245 as a directory.
15246 (thumbs-thumbname): Remove directory separator from format string;
15247 `thumbs-thumbsdir' now returns a valid directory name.
15248 (thumbs-temp-dir): New defsubst.
15249 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
15250 Use it.
15251
15252 * cus-edit.el (minibuffer):
15253 * files.el (make-backup-file-name-function):
15254 * filesets.el (filesets-external-viewers):
15255 * hilit-chg.el (highlight-changes-colours)
15256 (highlight-changes-face-list, highlight-changes-rotate-faces):
15257 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
15258 * kmacro.el (kmacro-call-macro):
15259 * log-edit.el (log-edit-changelog-full-paragraphs):
15260 * mouse.el (mouse-1-click-follows-link):
15261 * skeleton.el (skeleton-autowrap):
15262 * subr.el (insert-for-yank-1):
15263 * tempo.el (tempo-insert-region):
15264 * terminal.el (terminal-emulator):
15265 * time.el (display-time-mail-face):
15266 * vc.el (vc-annotate):
15267 * vcursor.el (vcursor-copy-line):
15268 * woman.el (woman-bold-headings, woman-ignore)
15269 (woman-default-faces, woman-monochrome-faces):
15270 * calendar/todo-mode.el (todo-insert-threshold):
15271 * emulation/pc-select.el (pc-select-selection-keys-only)
15272 (pc-selection-mode):
15273 * emulation/vip.el (vip-find-char-forward):
15274 * emulation/viper-cmd.el (viper-find-char-forward):
15275 * international/mule-cmds.el
15276 (select-safe-coding-system-accept-default-p)
15277 (input-method-exit-on-invalid-key):
15278 * international/mule-diag.el (describe-coding-system):
15279 * international/ucs-tables.el (unify-8859-on-encoding-mode):
15280 * net/browse-url.el (browse-url-xterm-program):
15281 * obsolete/lazy-lock.el (lazy-lock-mode):
15282 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
15283 (cperl-mode):
15284 * progmodes/cpp.el (cpp-face-light-name-list)
15285 (cpp-face-dark-name-list):
15286 * progmodes/delphi.el (delphi-newline-always-indents):
15287 Fix spellings in docstrings.
15288
15289 * ido.el (ido-mode, ido-file-extensions-order)
15290 (ido-default-file-method, ido-default-buffer-method)
15291 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
15292 (ido-decorations, ido-read-file-name-as-directory-commands)
15293 (ido-read-file-name-non-ido, ido-work-directory-list)
15294 (ido-ignore-item-temp-list, ido-current-directory)
15295 (ido-magic-forward-char, ido-enter-find-file)
15296 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
15297 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
15298
15299 2005-06-10 Lute Kamstra <lute@gnu.org>
15300
15301 * play/dunnet.el (dun-mode): Use define-derived-mode.
15302 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
15303 obsolete alias.
15304
15305 * play/doctor.el (doctor-mode-map): Remove defvar.
15306 (doctor-mode): Use define-derived-mode.
15307
15308 * mail/mspools.el (mspools-mode):
15309 * net/eudc-hotlist.el (eudc-hotlist-mode):
15310 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
15311
15312 2005-06-10 Miles Bader <miles@gnu.org>
15313
15314 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
15315 Remove "-face" suffix from face names.
15316 (flyspell-incorrect-face, flyspell-duplicate-face):
15317 New backward-compatibility aliases for renamed faces.
15318 (flyspell-mode-on, make-flyspell-overlay)
15319 (flyspell-highlight-incorrect-region)
15320 (flyspell-highlight-duplicate-region)
15321 (flyspell-display-next-corrections)
15322 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
15323
15324 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
15325 from face name.
15326 (texinfo-heading-face): New backward-compatibility alias for
15327 renamed face.
15328 (texinfo-heading-face): Use renamed texinfo-heading face.
15329
15330 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
15331 suffix from face names.
15332 (tex-math-face, tex-verbatim-face):
15333 New backward-compatibility aliases for renamed faces.
15334 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
15335 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
15336 literal face name.
15337
15338 * textmodes/table.el (table-cell): Remove "-face" suffix from face
15339 name.
15340 (table-cell-face): New backward-compatibility alias for renamed face.
15341 (table--put-cell-face-property, table--update-cell-face):
15342 Use renamed table-cell face.
15343
15344 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
15345 from face name.
15346 (sgml-namespace-face): New backward-compatibility alias for
15347 renamed face.
15348 (sgml-namespace-face): Use renamed sgml-namespace face.
15349
15350 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
15351 (org-level-4, org-level-5, org-level-6, org-level-7)
15352 (org-level-8, org-warning, org-headline-done)
15353 (org-deadline-announce, org-scheduled-today)
15354 (org-scheduled-previously, org-link, org-done, org-table)
15355 (org-time-grid): Remove "-face" suffix from face names.
15356 (org-level-1-face, org-level-2-face, org-level-3-face)
15357 (org-level-4-face, org-level-5-face, org-level-6-face)
15358 (org-level-7-face, org-level-8-face, org-warning-face)
15359 (org-headline-done-face, org-deadline-announce-face)
15360 (org-scheduled-today-face, org-scheduled-previously-face)
15361 (org-link-face, org-done-face, org-table-face)
15362 (org-time-grid-face):
15363 New backward-compatibility aliases for renamed faces.
15364 (org-level-faces, org-set-font-lock-defaults, org-timeline)
15365 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
15366 (org-agenda-get-timestamps, org-agenda-get-scheduled)
15367 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
15368
15369 * emulation/viper-init.el (viper-search, viper-replace-overlay)
15370 (viper-minibuffer-emacs, viper-minibuffer-insert)
15371 (viper-minibuffer-vi): Remove "-face" suffix from face names.
15372 (viper-search-face, viper-replace-overlay-face)
15373 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
15374 (viper-minibuffer-vi-face):
15375 New backward-compatibility aliases for renamed faces.
15376 (viper-search-face, viper-replace-overlay-face)
15377 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
15378 (viper-minibuffer-vi-face): Use renamed viper faces.
15379
15380 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
15381 Remove "-face" suffix from face names.
15382 (testcover-nohits-face, testcover-1value-face):
15383 New backward-compatibility aliases for renamed faces.
15384 (testcover-mark): Use renamed testcover faces.
15385
15386 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
15387 face name.
15388 (diary-button-face): New backward-compatibility alias for renamed face.
15389 (diary-entry): Use renamed diary-button face.
15390
15391 * calendar/calendar.el (diary, calendar-today, holiday)
15392 (mark-visible-calendar-date): Remove "-face" suffix from face names.
15393 (diary-face, calendar-today-face, holiday-face):
15394 New backward-compatibility aliases for renamed faces.
15395 (eval-after-load "facemenu", diary-entry-marker)
15396 (calendar-today-marker, calendar-holiday-marker, diary-face):
15397 Use renamed calendar faces.
15398
15399 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
15400 (compare-windows-face): New backward-compatibility alias for
15401 renamed face.
15402 (compare-windows-highlight): Use renamed compare-windows face.
15403
15404 * strokes.el (strokes-char): Remove "-face" suffix from face name.
15405 (strokes-char-face): New backward-compatibility alias for renamed face.
15406 (strokes-encode-buffer): Use renamed strokes-char face.
15407
15408 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
15409 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
15410 Remove "-face" suffix from face names.
15411 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
15412 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
15413 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
15414 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
15415 Use renamed pcvs faces.
15416 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
15417 * pcvs-defs.el (cvs-mode-map): Likewise.
15418 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
15419
15420 * info.el (info-title-1, info-title-2, info-title-3)
15421 (info-title-4): Remove "-face" suffix from and downcase face names.
15422 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
15423 (Info-title-4-face):
15424 New backward-compatibility aliases for renamed faces.
15425 (Info-fontify-node): Use renamed info faces.
15426
15427 * hilit-chg.el (highlight-changes, highlight-changes-delete):
15428 Remove "-face" suffix from face names.
15429 (highlight-changes-face, highlight-changes-delete-face):
15430 New backward-compatibility aliases for renamed faces.
15431 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
15432 (hilit-chg-make-list): Use renamed highlight-changes faces.
15433
15434 * generic-x.el (show-tabs-tab, show-tabs-space):
15435 Remove "-face" suffix from face names.
15436 (show-tabs-tab-face, show-tabs-space-face):
15437 New backward-compatibility aliases for renamed faces.
15438 (show-tabs-generic-mode-font-lock-defaults-1)
15439 (show-tabs-generic-mode-font-lock-defaults-2):
15440 Use renamed show-tabs faces.
15441
15442 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
15443 (smerge-markers): Remove "-face" suffix from face names.
15444 (smerge-mine-face, smerge-other-face, smerge-base-face)
15445 (smerge-markers-face):
15446 New backward-compatibility aliases for renamed faces.
15447 (smerge-mine-face, smerge-other-face, smerge-base-face)
15448 (smerge-markers-face): Use renamed smerge faces.
15449
15450 * log-view.el (log-view-file, log-view-message): Remove "-face"
15451 suffix from face names.
15452 (log-view-file-face, log-view-message-face):
15453 New backward-compatibility aliases for renamed faces.
15454 (log-view-file-face, log-view-message-face): Use renamed log-view
15455 faces.
15456
15457 * paren.el (show-paren-match, show-paren-mismatch):
15458 Remove "-face" suffix from face names.
15459 (show-paren-match-face, show-paren-mismatch-face):
15460 New backward-compatibility aliases for renamed faces.
15461 (show-paren-function): Use renamed show-paren faces.
15462
15463 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
15464 (ruler-mode-margins, ruler-mode-fringes)
15465 (ruler-mode-column-number, ruler-mode-fill-column)
15466 (ruler-mode-comment-column, ruler-mode-goal-column)
15467 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
15468 suffix from face names.
15469 (ruler-mode-default-face, ruler-mode-pad-face)
15470 (ruler-mode-margins-face, ruler-mode-fringes-face)
15471 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
15472 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
15473 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
15474 New backward-compatibility aliases for renamed faces.
15475 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
15476 (ruler-mode-column-number, ruler-mode-fill-column)
15477 (ruler-mode-comment-column, ruler-mode-goal-column)
15478 (ruler-mode-tab-stop, ruler-mode-current-column)
15479 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
15480 faces.
15481
15482 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
15483 face name.
15484 (whitespace-highlight-the-space): Use renamed face.
15485 (whitespace-highlight-face): New backward-compatibility alias for
15486 renamed face.
15487
15488 * woman.el (woman-italic, woman-bold, woman-unknown)
15489 (woman-addition, woman-symbol-face):
15490 Remove "-face" suffix from face names.
15491 (woman-italic-face, woman-bold-face, woman-unknown-face)
15492 (woman-addition-face):
15493 New backward-compatibility aliases for renamed faces.
15494 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
15495 (woman-decode-region, woman-replace-match)
15496 (woman-display-extended-fonts, woman-special-characters)
15497 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
15498 Use renamed woman faces.
15499
15500 * longlines.el (longlines-visible-face): Face removed.
15501
15502 * diff-mode.el (diff-header, diff-file-header, diff-index)
15503 (diff-hunk-header, diff-removed, diff-added, diff-changed)
15504 (diff-function, diff-context, diff-nonexistent): Remove "-face"
15505 suffix from face names.
15506 (diff-header-face, diff-file-header-face, diff-index-face)
15507 (diff-hunk-header-face, diff-removed-face, diff-added-face)
15508 (diff-changed-face, diff-function-face, diff-context-face)
15509 (diff-nonexistent-face): New backward-compatibility aliases for
15510 renamed faces.
15511 (diff-header-face, diff-file-header-face)
15512 (diff-index, diff-index-face, diff-hunk-header)
15513 (diff-hunk-header-face, diff-removed, diff-removed-face)
15514 (diff-added, diff-added-face, diff-changed-face, diff-function)
15515 (diff-function-face, diff-context-face, diff-nonexistent)
15516 (diff-nonexistent-face): Use renamed diff-mode faces.
15517
15518 * progmodes/compile.el (compilation-warning-face)
15519 (compilation-info-face): Remove "-face" suffix from face names.
15520 (compilation-warning-face, compilation-info-face):
15521 New backward-compatibility aliases for renamed faces.
15522 (compilation-warning-face, compilation-info-face):
15523 Use renamed compilation faces.
15524
15525 * add-log.el (change-log-date, change-log-name)
15526 (change-log-email, change-log-file, change-log-list)
15527 (change-log-conditionals, change-log-function)
15528 (change-log-acknowledgement): Remove "-face" suffix from face names.
15529 (change-log-date-face, change-log-name-face)
15530 (change-log-email-face, change-log-file-face)
15531 (change-log-list-face, change-log-conditionals-face)
15532 (change-log-function-face, change-log-acknowledgement-face):
15533 New backward-compatibility aliases for renamed faces.
15534 (change-log-font-lock-keywords): Use renamed change-log faces.
15535
15536 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
15537 (custom-set, custom-changed, custom-saved, custom-button)
15538 (custom-button-pressed, custom-documentation, custom-state)
15539 (custom-comment, custom-comment-tag, custom-variable-tag)
15540 (custom-variable-button, custom-face-tag, custom-group-tag-1)
15541 (custom-group-tag): Remove "-face" suffix from face names.
15542 (custom-magic-alist, custom-magic-value-create)
15543 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
15544 (custom-invalid-face, custom-rogue-face, custom-modified-face)
15545 (custom-set-face, custom-changed-face, custom-saved-face)
15546 (custom-button-face, custom-button-pressed-face)
15547 (custom-documentation-face, custom-state-face)
15548 (custom-comment-face, custom-comment-tag-face)
15549 (custom-variable-tag-face, custom-variable-button-face)
15550 (custom-face-tag-face, custom-group-tag-face-1)
15551 (custom-group-tag-face):
15552 New backward-compatibility aliases for renamed faces.
15553
15554 * wid-edit.el (widget-documentation, widget-button)
15555 (widget-field, widget-single-line-field, widget-inactive)
15556 (widget-button-pressed): "-face" suffix removed from face names.
15557 (widget-documentation-face, widget-button-face)
15558 (widget-field-face, widget-single-line-field-face)
15559 (widget-inactive-face, widget-button-pressed-face):
15560 New backward-compatibility aliases for renamed faces.
15561 (widget-documentation-face, widget-button-face)
15562 (widget-button-pressed-face, widget-specify-field)
15563 (widget-specify-inactive): Use renamed widget faces.
15564
15565 2005-06-10 Kenichi Handa <handa@m17n.org>
15566
15567 * term/x-win.el (x-clipboard-yank): Remove condition-case
15568 wrapping.
15569
15570 2005-06-11 Kenichi Handa <handa@m17n.org>
15571
15572 * add-log.el (change-log-font-lock-keywords): Make the regexp for
15573 date lines stricter.
15574
15575 2005-06-10 Zhang Wei <id.brep@gmail.com>
15576
15577 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
15578 of x-get-selection.
15579
15580 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
15581
15582 * comint.el (comint-mode, comint-snapshot-last-prompt):
15583 * frame.el (frame-current-scroll-bars):
15584 * term.el (term-mode, term-check-proc, term-input-sender)
15585 (term-simple-send, term-extract-string, term-word)
15586 (term-match-partial-filename):
15587 * window.el (window-current-scroll-bars):
15588 * emulation/cua-base.el (cua-normal-cursor-color)
15589 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
15590 (cua-global-mark-cursor-color):
15591 * mail/undigest.el (rmail-forward-separator-regex):
15592 Fix typos in docstrings.
15593
15594 * comint.el (comint-check-proc, make-comint-in-buffer)
15595 (comint-source-default): Doc fixes.
15596
15597 * term.el (term-send-string): Improve argument/docstring consistency.
15598
15599 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
15600
15601 * comint.el (comint-send-input): Bind `inhibit-read-only' around
15602 call to `delete-region'.
15603 (comint-mode-hook): Do not enable Font Lock by default.
15604
15605 2005-06-09 Lute Kamstra <lute@gnu.org>
15606
15607 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
15608 could be void.
15609
15610 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
15611
15612 * emacs-lisp/debug.el (debugger-will-be-back): New var.
15613 (debug): Use it.
15614 (debugger-step-through, debugger-continue, debugger-jump)
15615 (debugger-return-value): Set it when needed.
15616 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
15617 Use inhibit-read-only.
15618
15619 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
15620
15621 * window.el (shrink-window-if-larger-than-buffer)
15622 (window-size-fixed): Fix typo in docstring.
15623
15624 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
15625 thumbnails directory on loading.
15626 (thumbs-conversion-program): Use `eq' to check the system type,
15627 not `equal'.
15628 (thumbs-temp-dir): Initialize to `temporary-file-directory',
15629 not "/tmp". Fix docstring.
15630 (thumbs-thumbsdir): New function to return the thumbnails
15631 directory, creating it if needed.
15632 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
15633 (thumbs-temp-file): Delete variable and make it into a function.
15634 (thumbs-resize-image, thumbs-modify-image): Use it.
15635 (thumbs-kill-buffer): Simplify.
15636 (thumbs-gensym): Defalias or duplicate CL `gensym'.
15637 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
15638 docstrings.
15639
15640 2005-06-09 Kim F. Storm <storm@cua.dk>
15641
15642 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
15643 set-match-data to free markers in match-data.
15644
15645 * replace.el (replace-match-data): Pass RESEAT arg `t' to
15646 match-data to unchain markers in match-data.
15647
15648 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
15649
15650 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
15651 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
15652 unnecessary now.
15653
15654 2005-06-08 Richard M. Stallman <rms@gnu.org>
15655
15656 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
15657 give the variable a doc string that doesn't say don't set it directly.
15658
15659 * textmodes/ispell.el (ispell-check-version):
15660 Use match-string-no-properties.
15661 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
15662 (ispell-buffer-local-words): Likewise.
15663
15664 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
15665 except on terminals with enough colors to really display it.
15666 (makefile-dependency-regex): Delete spurious `bb'.
15667
15668 * faces.el (escape-glyph): Use blue once again in last case.
15669 (no-break-space): Redefine so that it isn't invisible on a tty.
15670
15671 2005-06-08 Kim F. Storm <storm@cua.dk>
15672
15673 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
15674 also when reading directory name.
15675
15676 2005-06-08 Lute Kamstra <lute@gnu.org>
15677
15678 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
15679 (flyspell-mode-line-string): Remove autoload cookie.
15680 (flyspell-mode): Remove defvar.
15681
15682 2005-06-07 Lute Kamstra <lute@gnu.org>
15683
15684 * textmodes/org.el (org-run-mode-hooks): New function.
15685 (org-agenda-mode): Use it.
15686
15687 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
15688
15689 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
15690
15691 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
15692
15693 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
15694
15695 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
15696
15697 * font-lock.el (font-lock-add-keywords): Doc fix.
15698
15699 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
15700
15701 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
15702 (tex-compile-default): In the absence of any history, use the order in
15703 tex-compile-alist to choose the preferred command.
15704 (tex-compile-commands): Reorder a bit.
15705
15706 * textmodes/flyspell.el (flyspell-auto-correct-binding)
15707 (flyspell-incorrect-face, flyspell-duplicate-face):
15708 Use (X)Emacs-agnostic code.
15709 (flyspell-mode-map): Don't overwrite at each load. Remove code
15710 redundant with the subsequent add-minor-mode. Merge Emacs and
15711 XEmacs code.
15712 (flyspell-word): Minor simplification.
15713 (flyspell-math-tex-command-p): Quieten the byte-compiler.
15714 (flyspell-external-point-words): Remove unused vars `size' and `start'.
15715 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
15716 Merge the corresponding Emacs code.
15717 (flyspell-correct-word, flyspell-xemacs-popup):
15718 Use flyspell-do-correct.
15719
15720 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
15721 a dedicated window.
15722
15723 * international/latexenc.el (latexenc-find-file-coding-system):
15724 Undo part of last patch, to turn off a compiler warning.
15725
15726 2005-06-06 Juri Linkov <juri@jurta.org>
15727
15728 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
15729 Rename `tmm-inactive-face' to `tmm-inactive'.
15730
15731 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
15732
15733 * iswitchb.el: Rename faces.
15734
15735 2005-06-06 Kim F. Storm <storm@cua.dk>
15736
15737 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
15738 (cua-global-mark): Remove -face suffix from face names.
15739
15740 * emulation/cua-gmrk.el (cua--init-global-mark):
15741 Remove cua-global-mark face setup.
15742
15743 2005-06-06 Richard M. Stallman <rms@gnu.org>
15744
15745 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
15746 just like other allowed characters.
15747 (makefile-match-dependency): Exclude leading and training whitespace
15748 from the range of regexp subexp 1.
15749 (makefile-macroassign-regex): Don't try to match the body,
15750 just the name of the macro being defined.
15751
15752 * info.el (Info-read-node-name-2): New function.
15753 (Info-read-node-name-1): Use that.
15754 Add a completion-base-size-function property.
15755
15756 * simple.el (completion-setup-function): Look for
15757 completion-base-size-function property of minibuffer-completion-table.
15758
15759 * files.el (locate-file-completion): Doc fix.
15760
15761 * printing.el: Don't call pr-update-menus; user must do that.
15762
15763 * emacs-lisp/debug.el (debugger-window): New variable.
15764 (debug): Use debugger-window if it is set and still alive.
15765 Record debugger-window for next entry.
15766
15767 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
15768
15769 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
15770
15771 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
15772 (hack-one-local-variable, hack-local-variables)
15773 (hack-local-variables-prop-line): Pass that arg.
15774
15775 2005-06-06 Kim F. Storm <storm@cua.dk>
15776
15777 * ido.el (ido-first-match, ido-only-match, ido-subdir)
15778 (ido-indicator): Remove -face suffix from face names.
15779
15780 2005-06-06 Juri Linkov <juri@jurta.org>
15781
15782 * font-lock.el (font-lock-regexp-backslash)
15783 (font-lock-regexp-backslash-construct): New faces.
15784 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
15785 after `('. Add `while-no-input' to control structures.
15786
15787 * faces.el (no-break-space, shadow): New faces.
15788 (escape-glyph): Use less loud colors pink2 and red4.
15789
15790 * diff-mode.el (diff-context-face)
15791 * dired.el (dired-ignored)
15792 * rfn-eshadow.el (file-name-shadow)
15793 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
15794
15795 * info.el (Info-title-1-face): Use green instead of yellow because
15796 bold yellow is not readable on light backgrounds.
15797
15798 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
15799 before selecting the desired mode to not spend time fontifying
15800 old contents.
15801
15802 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
15803
15804 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
15805 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
15806
15807 * ps-print.el (ps-default-fg, ps-default-bg):
15808 Fix typos in docstrings.
15809
15810 * isearchb.el (isearchb): Don't pass a spurious second argument to
15811 `iswitchb-completions'.
15812
15813 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
15814
15815 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
15816 to preserve point.
15817 (gdb-find-file-hook): Add doc string.
15818
15819 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
15820 C dereferenced pointer expression.
15821 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
15822
15823 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
15824
15825 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
15826 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
15827 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
15828 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
15829 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
15830 Make background transparent.
15831
15832 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
15833
15834 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
15835 (font-lock-remove-keywords): Doc fix.
15836 (font-lock-mode-major-mode): Compiler defvar.
15837 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
15838
15839 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
15840 (font-lock-mode): Update `font-lock-mode-major-mode'.
15841 (font-lock-set-defaults): Compiler defvar.
15842 (font-lock-default-function): Take `font-lock-mode-major-mode'
15843 into account.
15844
15845 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
15846 keep track of which major mode it enabled the minor mode for.
15847 Use find-file-hook again. Update docstring.
15848
15849 * simple.el (eval-expression-print-level)
15850 (eval-expression-print-length, eval-expression-debug-on-error):
15851 Doc fixes.
15852
15853 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
15854
15855 * iswitchb.el (iswitchb-single-match-face)
15856 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
15857 (iswitchb-invalid-regexp-face): New faces.
15858 (iswitchb-completions): Use them.
15859 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
15860 now marked as an obsolete alias.
15861 (iswitchb-read-buffer): Remove check for bound font variables.
15862 (iswitchb-invalid-regexp): New free variable.
15863 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
15864 set iswitchb-invalid-regexp.
15865 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
15866 invalid regexps.
15867 (iswitchb-completions): Add check for complete match when entering
15868 a regexp.
15869 (iswitchb-completions): Remove require-match argument.
15870 (iswitchb-exhibit): Fix caller.
15871 (iswitchb-common-match-inserted): New variable.
15872 (iswitchb-complete, iswitchb-completion-help): Use it.
15873
15874 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
15875
15876 * url-http.el (url-http-chunked-encoding-after-change-function):
15877 Use `url-http-debug' instead of `message'.
15878
15879 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
15880
15881 * url-http.el (url-http-parse-headers): Pass redirected URL as a
15882 callback argument.
15883
15884 2005-06-04 Kim F. Storm <storm@cua.dk>
15885
15886 * simple.el (line-move): Only call sit-for when moving backwards.
15887
15888 * ido.el (ido-make-merged-file-list-1): New defun split from
15889 ido-make-merged-file-list.
15890 (ido-make-merged-file-list): Bind throw-on-input around call to
15891 ido-make-merged-file-list-1. Return input-pending-p if
15892 interrupted by more input available.
15893 (ido-read-internal): Handle input-pending-p return value from
15894 ido-make-merged-file-list.
15895
15896 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
15897
15898 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
15899 compatibility code.
15900
15901 * international/latexenc.el (latexenc-find-file-coding-system):
15902 Don't inherit the EOL part of the coding-system from the
15903 tex-main buffer. Fit within 80 columns.
15904
15905 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
15906
15907 * tmm.el (tmm-inactive-face): New face.
15908 (tmm-remove-inactive-mouse-face): New function.
15909 (tmm-prompt, tmm-add-one-shortcut)
15910 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
15911 but not selectable.
15912
15913 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
15914
15915 * faces.el (face-equal): Improve argument/docstring consistency.
15916
15917 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
15918
15919 * progmodes/make-mode.el (makefile-targets-face)
15920 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
15921 (makefile-bsdmake-dependency-regex)
15922 (makefile-makepp-rule-action-regex)
15923 (makefile-bsdmake-rule-action-regex): New constants.
15924 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
15925
15926 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15927 Allow (...) within `...' for makepp messages.
15928
15929 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
15930
15931 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
15932
15933 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
15934 "." files are deleted from all file lists before comparison.
15935
15936 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
15937 (viper-ESC-key): Made them customizable.
15938
15939 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
15940
15941 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
15942
15943 * autorevert.el (auto-revert-buffers): Use save-match-data.
15944
15945 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15946
15947 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
15948 menu items with a nil command binding.
15949
15950 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
15951
15952 * emacs-lisp/cl-macs.el (defsetf):
15953 Improve argument/docstring consistency.
15954
15955 * faces.el (list-faces-display): Improve the formatting by
15956 computing the maximum length required for any face-name (reworked
15957 patch of 1999-01-11, accidentally deleted on 1999-07-21).
15958 (internal-find-face): Remove redundant info in docstring.
15959
15960 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
15961
15962 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
15963 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
15964 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
15965 (gdb-assembler-custom): Improve regexps.
15966 (def-gdb-auto-update-handler): Use window point to preserve point.
15967
15968 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15969
15970 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
15971
15972 2005-05-31 Jay Belanger <belanger@truman.edu>
15973
15974 * calc/calc-embed.el (calc-embedded-word): Change argument passed
15975 to calc-embedded.
15976 (calc-embedded-make-info): Have plain prefix argument select
15977 entire line.
15978
15979 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
15980
15981 * faces.el (list-faces-display): Signal error if passed a regexp
15982 that matches no face name.
15983
15984 * simple.el (filter-buffer-substring): Fix typo in docstring.
15985
15986 2005-05-31 Richard M. Stallman <rms@gnu.org>
15987
15988 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
15989 (vhdl-emacs-21): Doc fix.
15990 (vhdl-mode): Unconditionally set comment-padding.
15991 (vhdl-fixup-whitespace-region): Insert spaces only where
15992 there are none.
15993 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
15994
15995 2005-05-30 John Wiegley <johnw@newartisans.com>
15996
15997 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
15998 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
15999 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
16000 `directory-sep-char' to ?/, and all uses of `string-to-int' to
16001 `string-to-number'.
16002
16003 2005-05-30 Jay Belanger <belanger@truman.edu>
16004
16005 * calc/calc.el (calc-bug-address): Fix docstring.
16006 (calc-window-hook, calc-trail-window-hook): New variables.
16007 (calc-trail-display): Restore use of calc-trail-window-hook.
16008 (calc): Restore use of calc-window-hook.
16009
16010 2005-05-31 Masatake YAMATO <jet@gyve.org>
16011
16012 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
16013
16014 * help-fns.el (help-C-file-name): Add autoload mark for
16015 `find-function-noselect'.
16016
16017 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
16018
16019 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
16020 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
16021
16022 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
16023
16024 * calendar/diary-lib.el (mark-included-diary-files): Only kill
16025 included diary buffer if it was not already being visited.
16026 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
16027
16028 * calendar/icalendar.el (top-level): Do not require appt.
16029
16030 * mail/supercite.el (sc-select-attribution): Only use a list
16031 element from sc-attrib-selection-list if it returns a string.
16032 Reported by Davide G. M. Salvetti <salve@debian.org>.
16033
16034 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
16035
16036 * thumbs.el (thumbs-thumbname): The resulting thumbname now
16037 includes a hash value to improve its uniqueness, and has a ".jpg"
16038 extension. Also, it is now a valid filename on all systems.
16039 (thumbs-make-thumb): Use `let', not `let*'.
16040 (thumbs-show-thumbs-list): Check for JPEG availability.
16041
16042 2005-05-30 Richard M. Stallman <rms@gnu.org>
16043
16044 * filesets.el (filesets-menu-ensure-use-cached):
16045 Prevent warning when emacs-version>= is undefined.
16046
16047 * printing.el (pr-interactive-n-up): Use string-to-number.
16048
16049 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
16050
16051 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
16052 Warn only when name to be defined is quoted.
16053
16054 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
16055
16056 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
16057 Make regexp more robust.
16058 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
16059 Force regeneration of disassembly.
16060
16061 2005-05-29 Jay Belanger <belanger@truman.edu>
16062
16063 * calc/calc.el (calc-user-invocation): Check if
16064 calc-invocation-macro is non-nil.
16065
16066 2005-05-29 Juri Linkov <juri@jurta.org>
16067
16068 * add-log.el (change-log-font-lock-keywords):
16069 Add `+' to e-mail regexp to accept mail address with keywords.
16070
16071 * man.el (Man-name-regexp): Add `:' to accept qualified names.
16072
16073 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
16074
16075 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
16076
16077 * ielm.el (inferior-emacs-lisp-mode): Ditto.
16078
16079 2005-05-29 Richard M. Stallman <rms@gnu.org>
16080
16081 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
16082 Undo the change that moves to end of the current word.
16083
16084 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
16085
16086 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
16087 Throw error when count <= 0 to ensure input is a number.
16088 (gdb-read-memory-custom): Pick up address from buffer.
16089 (gdb-memory-mode): Allow user to increment and decrement
16090 memory address from header line.
16091
16092 2005-05-29 Richard M. Stallman <rms@gnu.org>
16093
16094 * flyspell.el (flyspell-version): Function deleted.
16095 (flyspell-auto-correct-previous-hook): Doc fix.
16096
16097 * jit-lock.el (jit-lock-function, jit-lock-after-change):
16098 Do nothing if memory is full.
16099
16100 * font-lock.el (font-lock-fontify-syntactically-region):
16101 Pass t for GREEDY to looking-back.
16102
16103 * saveplace.el (save-place-alist-to-file): Write the file
16104 using write-region.
16105
16106 * subr.el (looking-back): New argument GREEDY.
16107
16108 * progmodes/compile.el (compilation-start): Set the mode
16109 before inserting the initial text.
16110
16111 * progmodes/which-func.el (which-func-update-1): Turn the mode
16112 off in case of error by setting which-func-mode.
16113
16114 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
16115
16116 * flyspell.el (flyspell-auto-correct-previous-word):
16117 Narrow down to what's on the screen, and recenter overlays
16118 at the end of the next word.
16119
16120 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
16121
16122 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
16123 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
16124 (flyspell-abbrev-p): Default to nil.
16125 (flyspell-use-global-abbrev-table-p): Doc fix.
16126 (flyspell-large-region): Allow nil as value.
16127 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
16128
16129 (mail-mode-flyspell-verify): More robust handling
16130 of `mail-header-separator'. More efficient signature detection.
16131 Allow for regexp metacharacters in message-header-separator.
16132 Adding `To' not to be checked in mail-mode-flyspell-verify.
16133
16134 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
16135 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
16136 Bind flyspell-auto-correct-binding.
16137 Bind C-. and C-, .
16138 (flyspell-mode-map): Likewise.
16139 (flyspell-mode): Doc fix.
16140 (flyspell-accept-buffer-local-defs): Preserve current buffer.
16141 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
16142 (flyspell-word-cache-result): New var, always local.
16143 (flyspell-check-pre-word-p): Doc fix.
16144 (flyspell-check-changed-word-p): Handle spc like newline.
16145 (flyspell-post-command-hook): Set flyspell-word-cache-result.
16146 (flyspell-word-search-backward, flyspell-word-search-forward):
16147 New functions.
16148 (flyspell-word): Return t if nothing to check.
16149 When parsing TeX code, check for after } or \.
16150 Use flyspell-word-search-backward to find previous word.
16151 Return nil if duplicated word.
16152 For word already checked, return same value as last time.
16153 Set flyspell-word-cache-result after checking.
16154 Don't clobber the return value.
16155 (flyspell-get-word): Major rewrite.
16156 (flyspell-external-point-words): New locals pword, pcount.
16157 Fix size used in progress message.
16158 Find the proper corresponding word in flyspell-large-region-buffer.
16159 (flyspell-region): Check for flyspell-large-region = nil.
16160 (flyspell-highlight-incorrect-region): Clean up overlays in region.
16161 (flyspell-auto-correct-word): Check that WORD is a cons.
16162 (flyspell-correct-word): Likewise.
16163
16164 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
16165
16166 * progmodes/make-mode.el (makefile-rule-action-regex)
16167 (makefile-macroassign-regex, makefile-makepp-mode)
16168 (makefile-bsdmake-mode): Continuation lines may be empty.
16169 Reported by Joshua Varner.
16170 (makefile-makepp-font-lock-keywords): Add $(stem).
16171
16172 2005-05-28 Karl Berry <karl@gnu.org>
16173
16174 * textmodes/tex-mode.el: Now that tex-send-command calls
16175 shell-quote-argument (2005-03-31 change), remove all calls to
16176 shell-quote-argument; they all end up invoking tex-send-command.
16177 The double quoting loses on filenames with non-safe characters,
16178 such as "@". Reported by Frederik Fouvry.
16179
16180 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
16181
16182 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
16183 about preserving point.
16184
16185 2005-05-27 Jay Belanger <belanger@truman.edu>
16186
16187 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
16188 Info-goto-node.
16189
16190 * calc/calc-embed.el (calc-embed-arg): New variable.
16191 (calc-do-embedded-activate, calc-embedded-activate-formula)
16192 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
16193 variable by new variable.
16194 (calc-embedded-make-info): Replace undeclared variable by new
16195 variable. When selecting region with positive prefix
16196 argument, use end of previous line instead of beginning of line.
16197
16198 * calc/calc-aent.el (calc-arg-values): Declare it.
16199
16200 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
16201 Declare them.
16202
16203 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
16204
16205 * calc/calc.el (calc-alg-map): Declare it.
16206
16207 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
16208
16209 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
16210
16211 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
16212 (gdb-registers-buffer, toggle-gdb-all-registers):
16213 Toggle display of floating point registers.
16214 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
16215
16216 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
16217 (toggle-gud-tooltip-dereference):
16218 Rename from gud-toggle-tooltip-dereference.
16219
16220 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
16221
16222 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
16223
16224 2005-05-27 Jay Belanger <belanger@truman.edu>
16225
16226 * calc/calc-prog.el (calc-kbd-report): Remove.
16227 (calc-kbd-query): Rewrite.
16228
16229 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
16230
16231 * image.el (image-library-alist): Move to image.c.
16232 (image-type-available-p): Doc fix.
16233
16234 2005-05-27 Lute Kamstra <lute@gnu.org>
16235
16236 * calc/calc.el (calc):
16237 * outline.el (outline-1, outline-2, outline-3, outline-4)
16238 (outline-5, outline-6, outline-7, outline-8):
16239 * textmodes/dns-mode.el (dns-mode):
16240 * textmodes/sgml-mode.el (sgml-namespace-face):
16241 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
16242 (tex-verbatim-face, tex-use-reftex):
16243 * textmodes/texinfo.el (texinfo-heading-face):
16244 Specify customization group.
16245
16246 * longlines.el: Don't require easy-mmode.
16247 (longlines-visible-face): Specify customization group.
16248
16249 2005-05-27 Kenichi Handa <handa@m17n.org>
16250
16251 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
16252 encoding table of windows-1251.
16253
16254 * international/ucs-tables.el (ucs-set-table-for-input):
16255 If translation-table-for-input of a coding system is a symbol, get
16256 its translation-table property.
16257
16258 * international/code-pages.el: Don't register a coding system into
16259 non-iso-charset-alist more than once.
16260 (cp-make-coding-system): Likewise.
16261
16262 2005-05-26 John Wiegley <johnw@newartisans.com>
16263
16264 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
16265 `eshell-resume-eval' is wrapped in a list, it indicates that the
16266 command was run asynchronously. In that case, unwrap the value
16267 before checking the delimiter value.
16268
16269 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
16270 character before a space at the end of a line is \, assume the space
16271 is part of the last argument rather than a final argument separator.
16272
16273 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
16274 is in use, and the target is `t' or `nil' (which are the most common
16275 values), don't assume that the symbol target is a buffer.
16276
16277 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
16278
16279 * calendar/calendar.el (calendar-mode-line-format):
16280 Use mode-line-highlight as mouse-face.
16281
16282 * time.el (display-time-string-forms, display-time-update):
16283 Use mode-line-highlight as mouse-face.
16284
16285 2005-05-26 Jay Belanger <belanger@truman.edu>
16286
16287 * calc/calc.el (calc-language-alist): Remove extra defvar.
16288
16289 2005-05-26 Lute Kamstra <lute@gnu.org>
16290
16291 * arc-mode.el (archive-mode):
16292 * bookmark.el (bookmark-read-annotation-mode)
16293 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
16294 * bs.el (bs-mode):
16295 * calc/calc-yank.el (calc-edit-mode):
16296 * calc/calc.el (calc-mode, calc-trail-mode):
16297 * calculator.el (calculator-mode):
16298 * chistory.el (command-history-mode):
16299 * comint.el:
16300 * cus-edit.el (custom-mode):
16301 * descr-text.el (describe-text-mode):
16302 * ebuff-menu.el (Electric-buffer-menu-mode):
16303 * ediff-util.el (ediff-mode):
16304 * emacs-lisp/re-builder.el (reb-mode):
16305 * emulation/vi.el (vi-mode-setup):
16306 * emulation/ws-mode.el (wordstar-mode):
16307 * eshell/esh-mode.el (eshell-mode):
16308 * forms.el (forms-mode):
16309 * help-mode.el (help-mode):
16310 * hexl.el (hexl-mode):
16311 * ibuffer.el (ibuffer-mode):
16312 * ielm.el (inferior-emacs-lisp-mode):
16313 * info.el (Info-mode, Info-edit-mode):
16314 * international/swedish.el:
16315 * ledit.el (ledit-from-lisp-mode):
16316 * locate.el (locate-mode):
16317 * mail/rmail.el (rmail-mode):
16318 * mail/rmailedit.el (rmail-edit-mode):
16319 * mail/rmailsum.el (rmail-summary-mode):
16320 * mail/supercite.el (sc-electric-mode):
16321 * net/eudc.el (eudc-mode):
16322 * net/quickurl.el (quickurl-list-mode):
16323 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
16324 * obsolete/ooutline.el (outline-mode):
16325 * obsolete/options.el (Edit-options-mode):
16326 * obsolete/rnews.el (news-mode):
16327 * obsolete/rnewspost.el (news-reply-mode):
16328 * play/5x5.el (5x5-mode):
16329 * play/decipher.el (decipher-mode, decipher-stats-mode):
16330 * play/gomoku.el (gomoku-mode):
16331 * play/snake.el (snake-mode):
16332 * play/solitaire.el (solitaire-mode):
16333 * play/tetris.el (tetris-mode):
16334 * progmodes/ada-mode.el (ada-mode):
16335 * progmodes/antlr-mode.el (antlr-mode):
16336 * progmodes/autoconf.el (autoconf-mode):
16337 * progmodes/dcl-mode.el (dcl-mode):
16338 * progmodes/delphi.el (delphi-mode):
16339 * progmodes/ebrowse.el (ebrowse-tree-mode)
16340 (ebrowse-electric-list-mode, ebrowse-member-mode)
16341 (ebrowse-electric-position-mode):
16342 * progmodes/f90.el (f90-mode):
16343 * progmodes/fortran.el (fortran-mode):
16344 * progmodes/icon.el (icon-mode):
16345 * progmodes/idlw-help.el (idlwave-help-mode):
16346 * progmodes/idlw-shell.el (idlwave-shell-mode):
16347 * progmodes/idlwave.el (idlwave-mode):
16348 * progmodes/inf-lisp.el (inferior-lisp-mode):
16349 * progmodes/m4-mode.el (m4-mode):
16350 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
16351 * progmodes/modula2.el (modula-2-mode):
16352 * progmodes/octave-inf.el (inferior-octave-mode):
16353 * progmodes/octave-mod.el (octave-mode):
16354 * progmodes/pascal.el (pascal-mode):
16355 * progmodes/sh-script.el (sh-mode):
16356 * progmodes/sql.el (sql-mode, sql-interactive-mode):
16357 * progmodes/vhdl-mode.el (vhdl-mode):
16358 * progmodes/xscheme.el (scheme-interaction-mode):
16359 * replace.el (occur-mode):
16360 * ses.el (ses-mode):
16361 * simple.el (completion-list-mode):
16362 * skeleton.el:
16363 * speedbar.el (speedbar-mode):
16364 * term.el (term-mode):
16365 * terminal.el (terminal-edit-mode):
16366 * textmodes/reftex-index.el (reftex-index-mode)
16367 (reftex-index-phrases-mode):
16368 * textmodes/reftex-sel.el (reftex-select-label-mode)
16369 (reftex-select-bib-mode):
16370 * textmodes/reftex-toc.el (reftex-toc-mode):
16371 * wdired.el (wdired-change-to-wdired-mode):
16372 * wid-browse.el (widget-browse-mode):
16373 Use run-mode-hooks.
16374
16375 * array.el (array-mode):
16376 * calendar/todo-mode.el (todo-mode):
16377 * man.el (Man-mode):
16378 * play/landmark.el (lm-mode):
16379 * play/mpuz.el (mpuz-mode):
16380 Use kill-all-local-variables and run-mode-hooks.
16381
16382 * subr.el (delay-mode-hooks): Specify indentation.
16383
16384 2005-05-26 Mark A. Hershberger <mah@everybody.org>
16385
16386 * xml.el (xml-substitute-special): Don't die for undefined xml
16387 entities.
16388
16389 2005-05-26 Jay Belanger <belanger@truman.edu>
16390
16391 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
16392 of nil.
16393
16394 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
16395
16396 * progmodes/gdb-ui.el (gdb-frame-address):
16397 Rename from gdb-current-address.
16398 (gdb-previous-frame-address): Rename from gdb-previous-address.
16399 (gdb-selected-frame): Rename from gdb-current-frame.
16400 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
16401 (gdb-frame-number): Rename from gdb-current-stack-level.
16402 (gdb-ann3): Match new mode-name for disassembly buffer.
16403 Extend initialization of variables.
16404 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
16405 (gdb-memory-mode): Use mouse-face in header line.
16406 (gdb-assembler-buffer-name): Call it disassembly and give frame
16407 in mode line.
16408 (gdb-source-spec-regexp, gdb-assembler-custom)
16409 (gdb-invalidate-assembler, gdb-frame-handler):
16410 Make robust to leading zeroes in address format.
16411
16412 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
16413
16414 * textmodes/org.el (org-mode): Use `define-derived-mode' to
16415 define `org-mode'.
16416 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
16417
16418 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
16419
16420 * log-edit.el (log-edit-changelog-entries): Distinguish between
16421 filenames like xfns.c and fns.c.
16422
16423 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
16424
16425 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
16426 point after reverting.
16427 (Buffer-menu-make-sort-button): Handle the case where
16428 `Buffer-menu-use-header-line' is nil.
16429
16430 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
16431
16432 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
16433 New funcs. In minibuffer-local-completion-map bind `]', `/'
16434 and `:' to them.
16435
16436 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
16437
16438 * startup.el (normal-top-level): Allow modification of load-path while
16439 we're iterating over it.
16440
16441 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
16442
16443 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
16444 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
16445 (thumbs-resize-interactive, thumbs-insert-image)
16446 (thumbs-insert-thumb, thumbs-dired-show-marked)
16447 (thumbs-find-image-at-point, thumbs-delete-images)
16448 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
16449 (thumbs-increment-image-size, thumbs-decrement-image-size):
16450 Fix typos in docstrings.
16451
16452 2005-05-24 Andre Spiegel <spiegel@gnu.org>
16453
16454 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
16455 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
16456 (cperl-mode): Use them.
16457
16458 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
16459
16460 * window.el (quit-window, shrink-window-if-larger-than-buffer):
16461 Doc fixes.
16462
16463 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
16464
16465 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
16466 Bind C-d to gdb-inferior-io-eof.
16467
16468 * dired.el (dired-dnd-popup-notice): Use message-box.
16469
16470 2005-05-23 Masatake YAMATO <jet@gyve.org>
16471
16472 * bindings.el (mode-line-major-mode-keymap):
16473 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
16474
16475 * faces.el (mode-line-highlight): New face.
16476
16477 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
16478 as mouse-face.
16479
16480 * bindings.el (top-level, help-echo, mode-line-modified)
16481 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
16482 as mouse-face.
16483
16484 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
16485
16486 * progmodes/cc-engine.el (c-guess-basic-syntax):
16487 Remove spurious call to `zerop'.
16488
16489 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
16490
16491 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
16492
16493 CC Mode update to 5.30.10:
16494
16495 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
16496 could go past the limit in decoration level 2, thereby causing
16497 errors during interactive fontification.
16498
16499 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
16500 the file is evaluated interactively.
16501
16502 * cc-engine.el (c-guess-basic-syntax): Handle operator
16503 declarations somewhat better in C++.
16504
16505 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
16506 make use of `run-mode-hooks' which has been added in Emacs 21.1.
16507 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
16508 (awk-mode): Use it.
16509 (make-local-hook): Suppress warning about obsoleteness.
16510
16511 * cc-engine.el, cc-align.el, cc-cmds.el
16512 (c-append-backslashes-forward, c-delete-backslashes-forward)
16513 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
16514 Compensate for return value from `forward-line' when it has moved
16515 but not to a different line due to eob.
16516
16517 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
16518 `objc-method-intro' and `objc-method-args-cont'.
16519
16520 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
16521
16522 CC Mode update to 5.30.10:
16523
16524 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
16525 in the copyright statement. Incidentally, change "along with GNU
16526 Emacs" to "along with this program" where it occurs.
16527
16528 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
16529 so that it is interactive, hence can be found by M-x awk-mode
16530 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
16531 <gmorris+emacs@ast.cam.ac.uk>.
16532
16533 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
16534 Mode's regexps.
16535
16536 2005-05-23 Kevin Ryde <user42@zip.com.au>
16537
16538 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
16539 c-parse-state, to avoid a lisp error (on bad code).
16540
16541 2005-05-23 Lute Kamstra <lute@gnu.org>
16542
16543 * subr.el (font-lock-defaults): Remove defvar as it's already
16544 defined in font-core.el.
16545
16546 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
16547
16548 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
16549
16550 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
16551 more general and work when GDB variable "print pretty" is on,
16552 as with Emacs, for example.
16553
16554 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
16555
16556 * font-core.el: Update comment.
16557
16558 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
16559 Use `after-change-major-mode-hook' instead of `find-file-hook'.
16560
16561 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
16562
16563 2005-05-22 Eli Zaretskii <eliz@gnu.org>
16564
16565 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
16566 and `yank-handler' in the doc strings.
16567
16568 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
16569
16570 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
16571
16572 2005-05-22 Richard M. Stallman <rms@gnu.org>
16573
16574 * help.el (describe-key): Move print-help-return-message call
16575 out of conditional.
16576
16577 * progmodes/etags.el (list-tags): Use with-no-warnings.
16578
16579 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
16580 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
16581 (starttls-extra-args, starttls-extra-arguments): Add defvars.
16582
16583 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
16584
16585 * language/viet-util.el (viet-viscii-nonascii-translation-table):
16586 Add defvar.
16587
16588 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
16589 Use defvar, not defconst.
16590
16591 * hexl.el (hexl-follow-line): Use with-no-warnings.
16592
16593 * emulation/tpu-extras.el: Use write-file-functions instead of
16594 write-file-hooks.
16595
16596 * dired.el (dired-font-lock-keywords): Fontify files with junk
16597 extensions even if marked by -F.
16598
16599 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
16600
16601 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
16602 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
16603 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
16604 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
16605 (concatenate, list-length, get*, getf, cl-remprop):
16606 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
16607 (etypecase, progv, lexical-let, lexical-let*)
16608 (multiple-value-bind, multiple-value-setq, shiftf):
16609 Improve argument/docstring consistency.
16610
16611 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
16612
16613 2005-05-22 Andre Spiegel <spiegel@gnu.org>
16614
16615 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
16616 doesn't exist.
16617
16618 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
16619 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
16620
16621 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
16622
16623 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
16624 already deleted variables: auto-fill-hook, blink-paren-hook,
16625 lisp-indent-hook, inhibit-local-variables, unread-command-event,
16626 suspend-hooks, comment-indent-hook, meta-flag,
16627 before-change-function, after-change-function,
16628 font-lock-doc-string-face.
16629
16630 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
16631
16632 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
16633
16634 2005-05-21 Eli Zaretskii <eliz@gnu.org>
16635
16636 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
16637 rmail-dont-reply-to.
16638
16639 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
16640
16641 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
16642 literal blank when splitting new-header-values.
16643
16644 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
16645
16646 * calendar/cal-menu.el (cal-menu-update): Add separator as a
16647 string so that tmm doesn't create a completion entry for it.
16648
16649 * textmodes/table.el (table-disable-menu): Ditto.
16650
16651 2005-05-21 Richard M. Stallman <rms@gnu.org>
16652
16653 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
16654
16655 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
16656
16657 * net/rcompile.el (remote-compile): Use compilation-start.
16658
16659 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
16660
16661 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
16662
16663 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
16664 Default to makefile-bsdmake-mode on BSD systems.
16665
16666 * imenu.el (imenu-generic-expression, imenu--generic-function'):
16667 REGEXP may also be a search function now. The part of doc-string
16668 for describing the structure was 95% identical to that of
16669 `imenu--generic-function'. Unify it there.
16670
16671 * progmodes/make-mode.el (makefile-imenu-generic-expression):
16672 Use function to find dependencies, because regexp alone is so complex,
16673 it easily goes into an endless loop.
16674 (makefile-makepp-mode): Also add submenu for Perl functions
16675 defined in the makefile.
16676 (makefile-bsdmake-mode): Special imenu-generic-expression no
16677 longer needed, due to function call.
16678 (makefile-match-dependency): Take BOUND into account when checking
16679 if we're through.
16680
16681 2005-05-20 Jay Belanger <belanger@truman.edu>
16682
16683 * calc/calc-units.el (calc-invalidate-units-table):
16684 Use inhibit-read-only.
16685 (math-build-units-table-buffer): Use view-mode.
16686
16687 2005-05-20 David Kastrup <dak@gnu.org>
16688
16689 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
16690 easy-menu-add is not a nop on Emacs; and clarify when to call it.
16691
16692 2005-05-20 Lute Kamstra <lute@gnu.org>
16693
16694 * diff-mode.el (diff-header-face, diff-file-header-face)
16695 (diff-index-face, diff-hunk-header-face, diff-removed-face)
16696 (diff-added-face, diff-changed-face, diff-function-face)
16697 (diff-context-face, diff-nonexistent-face): Put them in the
16698 diff-mode customization group.
16699
16700 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
16701
16702 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
16703
16704 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
16705
16706 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
16707 Minor regexp-optimization.
16708
16709 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
16710
16711 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
16712 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
16713 (org-agenda-add-time-grid-maybe): New function.
16714 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
16715 (org-table-create): `dotimes' instead of `mapcar'.
16716 (org-xor): Simplify implementation.
16717 (org-agenda): `inhibit-redisplay' turned on.
16718 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
16719 a consistent line after a state change.
16720 (org-agenda-remove-times-when-in-prefix): New option.
16721 (org-prefix-has-time): New variable.
16722 (org-parse-time-string): Optional argument NODEFAULT.
16723 (org-format-agenda-item): Parse items for time-of-day
16724 specifications and move these into the prefix if possible.
16725 (org-agenda-priority): Get current heading, not previous heading
16726 during agenda remote editing.
16727
16728 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
16729
16730 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
16731 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
16732 (remove-duplicates, delete-duplicates, substitute)
16733 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
16734 (nsubstitute-if-not, find, find-if, find-if-not, position)
16735 (position-if, position-if-not, count, count-if, count-if-not)
16736 (mismatch, search, sort*, stable-sort, merge, member*)
16737 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
16738 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
16739 (intersection, nintersection, set-difference, nset-difference)
16740 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
16741 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
16742 (nsublis, tree-equal): Improve argument/docstring consistency.
16743
16744 * subr.el (send-string, send-region): Remove obsolescence declaration.
16745 (window-dot, set-window-dot, read-input, show-buffer)
16746 (eval-current-buffer, string-to-int):
16747 Add release number to obsolescence declarations.
16748
16749 2005-05-19 Kim F. Storm <storm@cua.dk>
16750
16751 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
16752 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
16753
16754 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
16755
16756 * faces.el (list-faces-display): Make back button respect optional
16757 regexp arg.
16758
16759 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
16760
16761 * calculator.el (calculator-radix-grouping-mode)
16762 (calculator-radix-grouping-digits, calculator-displayer)
16763 (calculator-radix-grouping-separator, calculator-copy-displayer):
16764 * dabbrev.el (dabbrev-search-these-buffers-only):
16765 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
16766 (diff-advance-after-apply-hunk, diff-mode-hook)
16767 (diff-minor-mode-prefix):
16768 * imenu.el (imenu-use-popup-menu):
16769 * jit-lock.el (jit-lock-context-time):
16770 * newcomment.el (comment-fill-column, comment-column)
16771 (comment-style, comment-padding, comment-multi-line)
16772 (comment-empty-lines, comment-auto-fill-only-comments):
16773 * reveal.el (reveal-around-mark):
16774 * uniquify.el (uniquify-buffer-name-style)
16775 (uniquify-after-kill-buffer-p)
16776 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
16777 (uniquify-min-dir-content, uniquify-separator)
16778 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
16779 * w32-vars.el (w32-fixed-font-alist):
16780 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
16781 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
16782 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
16783 * progmodes/perl-mode.el (perl-indent-level)
16784 (perl-continued-statement-offset, perl-continued-brace-offset)
16785 (perl-brace-offset, perl-brace-imaginary-offset)
16786 (perl-label-offset, perl-indent-continued-arguments)
16787 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
16788 * progmodes/tcl.el (tcl-indent-level)
16789 (tcl-continued-indent-level, tcl-auto-newline)
16790 (tcl-tab-always-indent, tcl-electric-hash-style)
16791 (tcl-help-directory-list, tcl-use-smart-word-finder)
16792 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
16793 (inferior-tcl-source-command):
16794 * textmodes/fill.el (enable-kinsoku):
16795 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
16796 * textmodes/table.el (table-yank-handler):
16797 Specify missing group (and type, if simple) in defcustom.
16798
16799 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
16800
16801 * progmodes/compile.el (compilation-finish-function): Fix defvar.
16802
16803 2005-05-19 Richard M. Stallman <rms@gnu.org>
16804
16805 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
16806
16807 * subr.el (event-basic-type): Don't get an error.
16808 (left-fringe-p): Function deleted.
16809
16810 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
16811 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
16812
16813 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
16814 in recursive copy.
16815
16816 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
16817
16818 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
16819
16820 * emacs-lisp/bytecomp.el
16821 (byte-compile-file-form-custom-declare-variable):
16822 Call byte-compile-nogroup-warn if appropriate.
16823
16824 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
16825 (compilation-set-window): Don't call left-fringe-p; do it directly.
16826
16827 2005-05-19 Jay Belanger <belanger@truman.edu>
16828
16829 * calc/calc-graph.el (calc-graph-format-data): Make sure
16830 var-PlotRejects is bound before trying to check its value.
16831
16832 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
16833
16834 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
16835 definition of this variable from reftex-global.el to reftex.el,
16836 because it is needed in the menu.
16837
16838 2005-05-19 Lute Kamstra <lute@gnu.org>
16839
16840 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
16841 years are fixed. Don't insert a space after a dash.
16842
16843 2005-05-19 Kim F. Storm <storm@cua.dk>
16844
16845 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
16846
16847 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
16848
16849 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
16850 strings, because (eq ... ?\\) is fairly frequent.
16851
16852 * progmodes/make-mode.el (makefile-add-this-line-targets):
16853 Simplify and integrate into `makefile-pickup-targets'.
16854 (makefile-add-this-line-macro): Simplify and integrate into
16855 `makefile-pickup-macros.
16856 (makefile-pickup-filenames-as-targets): Simplify.
16857 (makefile-previous-dependency, makefile-match-dependency):
16858 Don't stumble over `::'.
16859
16860 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
16861
16862 * subr.el (post-command-idle-hook, post-command-idle-delay):
16863 Remove obsoletion of post-command-idle-hook and
16864 post-command-idle-delay.
16865
16866 * faces.el (list-faces-display): Provide button when describe-face
16867 is called to take user back to the list of faces.
16868
16869 * help-fns.el (describe-variable): Remove hyperlinks in a
16870 variable's value as these are quite frequently inappropriate.
16871
16872 * follow.el (follow-submit-feedback, follow-mode):
16873 Remove references to post-command-idle-hook.
16874
16875 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
16876
16877 * progmodes/make-mode.el (makefile-previous-dependency)
16878 (makefile-match-dependency): Check for := (and in bsd mode also
16879 !=) to give a better result, even when font-lock is not on.
16880
16881 2005-05-18 Jay Belanger <belanger@truman.edu>
16882
16883 * calc/calc-help.el (calc-s-prefix-help):
16884 Add `calc-copy-special-constant' to help string.
16885
16886 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
16887
16888 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
16889
16890 2005-05-18 Jay Belanger <belanger@truman.edu>
16891
16892 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
16893 in linear factors are in proper order.
16894
16895 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
16896
16897 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
16898 Support for jurabib.
16899
16900 * textmodes/reftex.el (featurep): Define aliases for overlay
16901 commands, for XEmacs compatibility, and use these aliases in
16902 overlay initializations.
16903 (reftex-highlight): Use `reftex-move-overlay'.
16904 (reftex-unhighlight): Use `reftex-delete-overlay'.
16905 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
16906 (reftex-access-search-path): Use `reftex-uniquify' instead of
16907 `reftex-uniq'
16908
16909 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
16910 `before-string' property modification enables for Emacs as well.
16911 (reftex-select-item): Use `reftex-delete-overlay'.
16912 (reftex-select-mark): Use `reftex-make-overlay' and
16913 `reftex-overlay-put'.
16914 (reftex-select-unmark): Use `reftex-delete-overlay' and
16915 `reftex-overlay-put'.
16916
16917 2005-05-18 Lute Kamstra <lute@gnu.org>
16918
16919 * emacs-lisp/lisp.el (check-parens): Fix docstring.
16920
16921 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
16922
16923 * add-log.el (add-change-log-entry):
16924 * array.el (array-make-template, array-reconfigure-rows)
16925 (array-init-max-row, array-init-max-column)
16926 (array-init-columns-per-line, array-init-field-width):
16927 * replace.el (replace-match-maybe-edit, perform-replace):
16928 * textmodes/spell.el (spell-region):
16929 Replace `read-input' by `read-string'.
16930
16931 * forms.el (forms-mode):
16932 * finder.el (finder-compile-keywords):
16933 * shadowfile.el (shadow-read-files):
16934 Replace `eval-current-buffer' by `eval-buffer'.
16935
16936 * terminal.el (te-pass-through):
16937 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
16938 (ange-ftp-raw-send-cmd):
16939 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
16940 (send-process-next-char, telnet-initial-filter, telnet):
16941 Replace `send-string' by `process-send-string'.
16942
16943 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
16944 (prolog-consult-region): Replace `send-string' by
16945 `process-send-string'; replace `send-region' by `process-send-region'.
16946
16947 * progmodes/delphi.el (delphi-log-msg):
16948 Replace `set-window-dot' by `set-window-point'.
16949
16950 * subr.el (window-dot, set-window-dot, read-input, send-string)
16951 (send-region, show-buffer, eval-current-buffer):
16952 Make really obsolete, as the comment says.
16953
16954 2005-05-17 Kim F. Storm <storm@cua.dk>
16955
16956 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
16957 (cua--init-keymaps): Bind C-return instead of S-return to set
16958 rectangle mark.
16959
16960 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
16961 instead of S-return to toggle/clear rectangle mark.
16962
16963 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
16964
16965 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
16966 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
16967 Also fontify plain strings assigned to variables, mostly so that a
16968 colon has a face and is thus not taken as a dependency separator.
16969 (makefile-previous-dependency): Inline the new matcher, because it
16970 is too complex to work in both directions.
16971 (makefile-match-dependency): Eliminate `backward' arg (see above).
16972 Completely reimplemented so as to not sometimes go into an endless
16973 loop. It should also be more efficient, because first it only
16974 searches for `:', instead of applying the very complex regexp.
16975 (makefile-mode): Cancel `font-lock-support-mode', because blocks
16976 to be fontified in one piece can be too long for JIT.
16977 Makefiles are never *that* big.
16978
16979 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
16980
16981 * dired.el (dired-mode): Simplify.
16982
16983 2005-05-17 Lute Kamstra <lute@gnu.org>
16984
16985 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
16986 defcustom for the mode hook variable.
16987
16988 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
16989 Emacs Lisp Reference Manual.
16990
16991 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
16992
16993 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
16994 (evenp, list*):
16995 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
16996 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
16997
16998 * net/tramp-smb.el (tramp-smb-open-connection):
16999 Pass `tramp-chunksize' as fifth (required) argument.
17000
17001 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
17002
17003 * font-lock.el (lisp-font-lock-keywords-1):
17004 Set `font-lock-negation-char-face' for [^...] char group.
17005 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
17006
17007 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
17008 a var, and refine it to mask one more level of nested vars.
17009 (makefile-rule-action-regex): Turn it into a var, and refine it so
17010 it recognizes backslashed continuation lines as belonging to the
17011 same command.
17012 (makefile-macroassign-regex): Refine it so it recognizes
17013 backslashed continuation lines as belonging to the same command.
17014 (makefile-var-use-regex): Don't look at the next char, because it
17015 might be the same one to be skipped by the initial [^$], leading
17016 to an overlooked variable use.
17017 (makefile-make-font-lock-keywords): Remove two parameters, which
17018 are now variables that some of the modes set locally.
17019 Handle dependency and rule action matching through functions, because
17020 regexps alone match too often. Dependency matching now comes
17021 last, so it can check, whether a colon already matched something else.
17022 (makefile-mode): Inform that font-lock improves makefile parsing
17023 capabilities.
17024 (makefile-match-dependency, makefile-match-action): New functions.
17025
17026 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
17027
17028 * emacs-lisp/cl-extra.el (equalp): Doc fix.
17029
17030 * align.el (align-regexp):
17031 * ansi-color.el (ansi-color-get-face):
17032 * array.el (array-reconfigure-rows, array-init-max-row)
17033 (array-init-max-column, array-init-columns-per-line)
17034 (array-init-field-width):
17035 * dired-aux.el (dired-trample-file-versions):
17036 * dired-x.el (dired-mark-sexp):
17037 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
17038 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
17039 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
17040 * faces.el (face-read-integer):
17041 * files.el (backup-extract-version, insert-directory):
17042 * hexl.el (hexl-insert-decimal-char):
17043 * server.el (server-process-filter):
17044 * shell.el (shell-extract-num):
17045 * startup.el (command-line-1):
17046 * term.el (term-command-hook):
17047 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
17048 (time-stamp-do-number):
17049 * time.el (display-time-update):
17050 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
17051 (timezone-fix-time):
17052 * vms-patch.el (vms-suspend-resume-hook):
17053 * calendar/appt.el (appt-convert-time):
17054 * calendar/cal-bahai.el (mark-bahai-diary-entries):
17055 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
17056 * calendar/cal-islam.el (mark-islamic-diary-entries):
17057 * calendar/calendar.el (calendar-cursor-to-date)
17058 (calendar-star-date):
17059 * calendar/diary-lib.el (diary-attrtype-convert)
17060 (mark-diary-entries, diary-entry-time):
17061 * calendar/solar.el (solar-get-number):
17062 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
17063 * emacs-lisp/re-builder.el (reb-display-subexp):
17064 * emulation/edt.el (edt-set-scroll-margins):
17065 * emulation/tpu-extras.el (tpu-set-scroll-margins):
17066 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
17067 (vip-get-ex-count):
17068 * emulation/viper-ex.el (viper-get-ex-token)
17069 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
17070 * international/fontset.el (fontset-plain-name):
17071 * mail/feedmail.el (feedmail-look-at-queue-directory):
17072 * mail/mailalias.el (mail-get-names):
17073 * mail/rmail.el (rmail-convert-to-babyl-format):
17074 * mail/rmailsum.el (rmail-make-basic-summary-line)
17075 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
17076 (rmail-summary-goto-msg):
17077 * mail/smtpmail.el (smtpmail-read-response):
17078 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
17079 (ange-ftp-vms-add-file-entry):
17080 * play/gametree.el (gametree-looking-at-ply)
17081 (gametree-current-branch-score):
17082 * progmodes/ada-xref.el (ada-prj-find-prj-file)
17083 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
17084 * progmodes/cperl-mode.el (condition-case):
17085 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
17086 (ebrowse-set-member-buffer-column-width)
17087 (ebrowse-select-1st-to-9nth):
17088 * progmodes/etags.el (etags-snarf-tag):
17089 * progmodes/flymake.el (flymake-parse-line):
17090 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
17091 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
17092 (idlwave-shell-menu-def):
17093 * progmodes/ps-mode.el (ps-run-goto-error):
17094 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
17095 (vhdl-speedbar-contract-level):
17096 * term/mac-win.el (x-handle-numeric-switch):
17097 * term/sun-mouse.el (sun-get-frame-data):
17098 * term/w32-win.el (x-handle-numeric-switch):
17099 * term/x-win.el (x-handle-numeric-switch):
17100 * textmodes/ispell.el (ispell-parse-output):
17101 * textmodes/nroff-mode.el (nroff-outline-level):
17102 * textmodes/reftex-cite.el (reftex-bib-sort-year)
17103 (reftex-bib-sort-year-reverse, reftex-format-citation):
17104 * textmodes/reftex-parse.el (reftex-init-section-numbers)
17105 (reftex-section-number):
17106 * textmodes/texinfmt.el (texinfo-paragraphindent):
17107 Replace `string-to-int' by `string-to-number'.
17108
17109 * international/latexenc.el: Add page marker to force the "Local
17110 Variables:" string out of the last page.
17111
17112 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
17113
17114 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
17115 tooltip-change-major-mode.
17116 (gud-tooltip-print-command): Remove case where gud-minor-mode
17117 is gdb ("--fullname").
17118 (gud-tooltip-tips): Turn GUD tooltips off for this case and
17119 explain to user.
17120
17121 2005-05-16 Jay Belanger <belanger@truman.edu>
17122
17123 * calc/calc-store.el (calc-copy-special-constant): New function.
17124
17125 * calc/calc-ext.el (calc-init-extensions): Add binding for
17126 `calc-copy-special-constant'.
17127
17128 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
17129 for the `calc-copy-special-constant' command.
17130
17131 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
17132
17133 * subr.el (left-fringe-p): New function.
17134
17135 * progmodes/compile.el (compilation-setup): Set local value of
17136 overlay-arrow-string to "" always.
17137 (compilation-set-window): Left fringe then don't scroll.
17138 No left fringe then no arrow and scroll message to top.
17139 (compilation-context-lines): Adjust doc string accordingly.
17140
17141 2005-05-16 Kim F. Storm <storm@cua.dk>
17142
17143 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
17144 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
17145 (ido-wide-find-dir-or-delete-dir): New command for M-d.
17146 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
17147 (ido-read-file-name): Handle commands with ido property value
17148 equal to find-file as reading a file name, to allow C-d to enter dired.
17149 (ibuffer-find-file): Add ido property with value find-file.
17150
17151 2005-05-15 Kim F. Storm <storm@cua.dk>
17152
17153 * subr.el (open-network-stream-nowait): Remove.
17154 (open-network-stream-server): Remove.
17155
17156 2005-05-15 Richard M. Stallman <rms@gnu.org>
17157
17158 * faces.el (describe-face): Output a definition link button.
17159
17160 * help-mode.el (help-face-def): New button type.
17161
17162 * emacs-lisp/copyright.el (copyright-fix-years):
17163 Match properly if the first year is 2-digit.
17164 Don't mess up the whitespace after the years by filling.
17165
17166 * dired-aux.el (dired-mark-confirm):
17167 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
17168
17169 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
17170 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
17171 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
17172
17173 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
17174 Set font-lock-comment-start-skip.
17175
17176 * font-lock.el (font-lock-comment-start-skip): New variable.
17177 (font-lock-comment-end-skip): New variable.
17178 (font-lock-fontify-syntactically-region): Use them if non-nil.
17179
17180 2005-05-15 Jay Belanger <belanger@truman.edu>
17181
17182 * calc/calc-store.el (calc-store-value): Return a string rather
17183 than display it as a message.
17184 Use calc-var-name for variable name.
17185 (calc-store-into): Add the result of calc-store-value to message.
17186 (calc-copy-variable): Add a message.
17187 (calc-store-exchange): Improve error messages.
17188 (calc-store-binary, calc-store-map): Don't reset the values of
17189 special constants.
17190
17191 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
17192
17193 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
17194 manual to docstring.
17195
17196 * files.el (hack-local-variables-confirm): Add STRING argument.
17197 Make the function handle non file visiting buffers correctly.
17198 (hack-local-variables-prop-line, hack-local-variables)
17199 (hack-one-local-variable): Use STRING arg of
17200 `hack-local-variables-confirm'.
17201
17202 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
17203
17204 Sync with Tramp 2.0.49.
17205
17206 * net/tramp.el (tramp-handle-dired-call-process)
17207 (tramp-handle-insert-directory):`insert-buffer' cannot be used
17208 because the contents of the Tramp buffer is changed before
17209 insertion (`expand-file' and alike).
17210 (tramp-handle-insert-directory): If `localname' has an empty
17211 nondirectory name, it must not be quoted.
17212 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
17213 variable `tramp-chunksize'. Change callees.
17214 (tramp-open-connection-setup-interactive-shell): Check remote host
17215 for buggy `send-process-string' implementation.
17216 Set `tramp-chunksize' if found. Reported by Michael Kifer
17217 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
17218 (tramp-handle-shell-command): `insert-buffer' cannot be used
17219 because the contents of the Tramp buffer is changed before
17220 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
17221 <frederic.bothamy@free.fr>.
17222 (tramp-set-auto-save): Actions should be done for Tramp file name
17223 handler only. Ange-FTP has its own auto-save mechanism.
17224 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
17225 (tramp-set-auto-save-file-modes): Set file modes of
17226 `buffer-auto-save-file-name' to ?\600 as fallback solution.
17227 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
17228 (tramp-bug): Remove obsolete variable.
17229 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
17230 for presence of `mml-mode'. Make it running for older Emacsen as well.
17231
17232 2005-05-14 John Paul Wallington <jpw@pobox.com>
17233
17234 * ibuf-ext.el (define-ibuffer-filter filename):
17235 If `dired-directory' is a list, use its car.
17236
17237 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
17238
17239 * ibuffer.el (define-ibuffer-column filename):
17240 If `dired-directory' is a list, use its car.
17241
17242 2005-05-14 Richard M. Stallman <rms@gnu.org>
17243
17244 * subr.el (symbol-file): Doc fix.
17245
17246 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
17247 (byte-compile-form): Call byte-compile-nogroup-warn.
17248 (byte-compile-warning-types): Doc fix.
17249
17250 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
17251
17252 * progmodes/cc-engine.el (c-literal-faces):
17253 Add font-lock-comment-delimiter-face.
17254
17255 * net/net-utils.el (dig): Use with-no-warnings.
17256
17257 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
17258 (sc-recite-frame-alist, sc-default-cite-frame)
17259 (sc-default-uncite-frame, sc-default-recite-frame)
17260 (sc-attrib-selection-list, sc-rewrite-header-list):
17261 Mark as risky-local-variable.
17262
17263 * international/ogonek.el (ogonek-jak, ogonek-how):
17264 Don't use beginning-of-buffer.
17265
17266 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
17267
17268 * calendar/solar.el (solar-data-list): Move definition up.
17269
17270 * dnd.el (dnd-protocol-alist): Add autoload.
17271
17272 * progmodes/sh-script.el: Many doc usage fixes.
17273 (sh-indent-after-do): Change default to match common styles.
17274
17275 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
17276
17277 * files.el (interpreter-mode-alist)
17278 (auto-mode-interpreter-regexp): Doc fixes.
17279
17280 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
17281
17282 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
17283
17284 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
17285
17286 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17287
17288 * dired.el (dired-mode): make-variable-buffer-local =>
17289 make-local-variable.
17290
17291 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17292
17293 * term/mac-win.el (mac-select-convert-to-string): Try coding
17294 systems in mac-script-code-coding-systems if specified one cannot
17295 encode string for `com.apple.traditional-mac-plain-text'.
17296
17297 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
17298
17299 * progmodes/make-mode.el (makefile-targets-face)
17300 (makefile-shell-face, makefile-makepp-perl-face): New faces.
17301 (makefile-dependency-regex): Fix it to not make the colon in
17302 $(var:a=b) special.
17303 (makefile-rule-action-regex): New regexp for highlighting embedded
17304 Shell strings.
17305 (makefile-macroassign-regex): Handle != for highlighting as
17306 embedded Shell strings.
17307 (makefile-var-use-regex): New const.
17308 (makefile-statements, makefile-automake-statements)
17309 (makefile-gmake-statements, makefile-makepp-statements)
17310 (makefile-bsdmake-statements): New consts.
17311 (makefile-make-font-lock-keywords): New function.
17312 (makefile-automake-font-lock-keywords)
17313 (makefile-gmake-font-lock-keywords)
17314 (makefile-makepp-font-lock-keywords)
17315 (makefile-bsdmake-font-lock-keywords): New consts.
17316 (makefile-mode-map): Add switchers between the various submodes.
17317 (makefile-mode): Document the availability of the variants.
17318 (makefile-automake-mode, makefile-gmake-mode)
17319 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
17320
17321 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
17322 new variants of makefile-mode.
17323
17324 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
17325
17326 * font-lock.el (font-lock-comment-delimiter-face): Fix up
17327 the inheritance.
17328
17329 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
17330
17331 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
17332 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
17333
17334 * files.el (normal-mode): Extend the scope of the
17335 `enable-local-variables' binding to include the `set-auto-mode' call.
17336 (magic-mode-alist): Doc fix.
17337
17338 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
17339
17340 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
17341 font-lock-comment-face rather than copying its setting.
17342
17343 2005-05-12 Andreas Schwab <schwab@suse.de>
17344
17345 * eshell/esh-mode.el (eshell-send-input): Doc fix.
17346
17347 2005-05-12 Lute Kamstra <lute@gnu.org>
17348
17349 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
17350 defcustom for the mode hook variable. Delete the last argument.
17351 * generic-x.el: Fix callers of define-generic-mode.
17352 (generic-x-modes): Delete group.
17353 (show-tabs-tab-face, show-tabs-space-face): Put them in the
17354 generic-x customization group.
17355
17356 2005-05-12 Kim F. Storm <storm@cua.dk>
17357
17358 * font-lock.el (font-lock-negation-char-face): Default to "off".
17359
17360 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
17361 font-lock-negation-char-face to ! in !=.
17362
17363 2005-05-12 Masatake YAMATO <jet@gyve.org>
17364
17365 * add-log.el (find-change-log): Fix typos in the docstring
17366 of function.
17367
17368 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
17369
17370 * international/latexenc.el (latexenc-find-file-coding-system):
17371 Avoid `re-search-forward' when looking for input encoding because
17372 of speed and safety. Better regular expressions for recognizing
17373 input encoding. Limit a search for TeX-master/tex-main-file to
17374 the local variable section.
17375
17376 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
17377
17378 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
17379 syntax of $ to "'" (quote).
17380
17381 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
17382
17383 * dnd.el (dnd-protocol-alist): Improve custom type.
17384
17385 * dired.el (dired-dnd-protocol-alist): New variable.
17386 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
17387 `dired-mode-hook' to the end.
17388
17389 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
17390
17391 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
17392 comment-end if comment-start-skip is not set.
17393 Obey the font-lock-comment-delimiter-face variables.
17394
17395 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
17396
17397 * files.el (executable-find): Move from executable.el. Use
17398 locate-file.
17399 * progmodes/executable.el (executable-find): Move to files.el.
17400
17401 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
17402 when trying to ensure forward progress.
17403
17404 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
17405
17406 * mouse-sel.el (mouse-sel-follow-link-p): New function.
17407 (mouse-select, mouse-select-internal, mouse-extend-internal):
17408 Use it to implement mouse-1-click-follows-link functionality.
17409
17410 2005-05-11 Richard M. Stallman <rms@gnu.org>
17411
17412 * font-lock.el (font-lock-fontify-syntactically-region):
17413 Use font-lock-comment-delimiter-face for comment delimiters.
17414
17415 2005-05-10 Jay Belanger <belanger@truman.edu>
17416
17417 * calc/calc-help.el (calc-m-prefix-help): Add mention of
17418 preserving embedded modes.
17419
17420 2005-05-10 Richard M. Stallman <rms@gnu.org>
17421
17422 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
17423
17424 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
17425 Move from ada-stmt.el.
17426 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
17427
17428 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
17429 Move to ada-mode.el.
17430 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
17431
17432 * cus-edit.el (custom-file): Call file-chase-links.
17433
17434 * files.el (read-directory-name): Fix previous change.
17435 (hack-local-variables-confirm): New function.
17436 (hack-local-variables-prop-line, hack-local-variables)
17437 (hack-one-local-variable): Use it.
17438
17439 2005-05-10 Lute Kamstra <lute@gnu.org>
17440
17441 * font-lock.el (font-lock-keywords-alist)
17442 (font-lock-removed-keywords-alist): Clarify docstrings.
17443
17444 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
17445
17446 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
17447 (gdb-source-info): Check for preprocessor info.
17448 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
17449 a macro for a function.
17450 (gdb-info-breakpoints-custom): Try to find file again if not already
17451 found (user might have used GDB dir command).
17452 (gdb-get-location): Update gdb-location-alist correctly for change
17453 to gdb-info-breakpoints-custom.
17454
17455 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
17456 (gud-tooltip-print-command): Add gdbmi case.
17457 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
17458 preprocessor info.
17459
17460 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
17461
17462 * startup.el (fancy-splash-insert): Fix typo in doc string.
17463
17464 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
17465
17466 * obsolete/float.el (string-to-float):
17467 * obsolete/hilit19.el (hilit-add-pattern):
17468 * obsolete/rnews.el (news-parse-range, news-select-message)
17469 (news-get-pruned-list-of-files): Replace `string-to-int' by
17470 `string-to-number'.
17471
17472 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
17473 `find-file-not-found-hooks'; use `add-hook'.
17474 (uncompress-while-visiting): Set `write-file-functions', not
17475 `write-file-hooks'; use `add-hook'.
17476
17477 2005-05-09 Kim F. Storm <storm@cua.dk>
17478
17479 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
17480 (cua-paste): Handle clipboard action.
17481 (cua--init-keymaps): Remap clipboard-kill-region and
17482 clipboard-kill-ring-save.
17483
17484 2005-05-08 Eli Zaretskii <eliz@gnu.org>
17485
17486 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
17487 Improve commentary.
17488
17489 * simple.el (next-error-overlay-arrow-position): Revert the change
17490 made on 2005-04-30.
17491
17492 2005-05-07 Jay Belanger <belanger@truman.edu>
17493
17494 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
17495 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
17496 `calc-sel-reselect'.
17497
17498 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
17499 Calc is in embedded mode.
17500
17501 2005-05-07 Eli Zaretskii <eliz@gnu.org>
17502
17503 * progmodes/compile.el (compilation-setup):
17504 Set overlay-arrow-string to an empty string on text terminals.
17505
17506 * textmodes/ispell.el (ispell-program-name): Try looking for
17507 "aspell" along exec-path, and if found, use it as the default
17508 speller program.
17509
17510 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
17511
17512 * international/mule.el (sgml-xml-auto-coding-function):
17513 Recognize encoding='FOO' in single quotes as well as in double quotes.
17514
17515 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
17516
17517 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
17518 as well as `interactive', so that defmacro* would recognize
17519 `declare' forms.
17520
17521 2005-05-07 Eli Zaretskii <eliz@gnu.org>
17522
17523 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
17524 Explain more about the LIGHTER arg's usage in the doc string.
17525 Add commentary to clarify what the code does. Fix the regexp that
17526 strips whitespace from LIGHTER. Quote LIGHTER before using it,
17527 since it could have characters special to regular expressions.
17528
17529 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
17530
17531 * replace.el (occur-1): Bind inhibit-read-only so that
17532 erase-buffer doesn't barf on read-only text properties (likewise
17533 for add-text-properties in occur-engine). Mark buffer as unmodified.
17534 (occur-engine): Don't set buffer-read-only here.
17535
17536 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
17537
17538 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
17539 list-buffers-directory. This caused the *cvs-commit* buffer to be
17540 sometimes mistakenly reused as a *cvs* buffer.
17541
17542 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
17543
17544 * tooltip.el: Move code for GUD tooltips into gud.el.
17545 (require): CL no longer needed to compile case.
17546 (tooltip-mode): Do not toggle functions for GUD tooltips.
17547 (tooltip-gud-tips-p): Remove. Replace with minor mode
17548 gud-tooltip-mode in gud.el.
17549 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
17550 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
17551 tooltip-gud prefix with gud-tooltip and obsolete.
17552 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
17553 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
17554 (tooltip-mouse-motion): Mouse movement functions/variable.
17555 Rename in gud.el by adding gud prefix.
17556 (tooltip-gud-original-filter, tooltip-gud-dereference)
17557 (tooltip-gud-event, tooltip-toggle-gud-tips)
17558 (tooltip-gud-process-output, tooltip-gud-print-command)
17559 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
17560 gud.el by replacing tooltip-gud prefix with gud-tooltip.
17561 (gdb-tooltip-print): Move to gdb-ui.el.
17562
17563 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
17564 (require): CL needed to compile case.
17565 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
17566 tooltip-gud-tips-p. Make it a minor-mode.
17567 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
17568 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
17569 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
17570 (gud-tooltip-change-major-mode)
17571 (gud-tooltip-activate-mouse-motions-if-enabled)
17572 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
17573 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
17574 (gud-tooltip-original-filter, gud-tooltip-dereference)
17575 (gud-tooltip-event, tooltip-toggle-gud-tips)
17576 (gud-tooltip-process-output, gud-tooltip-print-command)
17577 (gud-tooltip-tips): Move from tooltip.el.
17578
17579 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
17580 (gdb-cpp-define-alist-flags): Doc fix.
17581 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
17582 gud-tooltip-mode is t.
17583
17584 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
17585
17586 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
17587 evaporate if their text is deleted.
17588 (goto-address-at-point): Make it work as a mouse binding as well.
17589 (goto-address-at-mouse): Obsolete it. Update users.
17590
17591 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
17592
17593 * calendar/appt.el (top-level): No longer activate on load.
17594
17595 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
17596
17597 * calendar/cal-bahai.el (mark-bahai-diary-entries):
17598 * net/webjump.el (webjump):
17599 * progmodes/idlw-help.el (idlwave-do-context-help1)
17600 (idlwave-highlight-linked-completions):
17601 * textmodes/po.el (po-find-file-coding-system-guts):
17602 Replace `assoc-ignore-case' by `assoc-string'.
17603
17604 2005-05-06 Eli Zaretskii <eliz@gnu.org>
17605
17606 * files.el (locate-file): Doc fix.
17607
17608 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
17609 Remove the redundant test for ms-dos.
17610
17611 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
17612 look for the preprocessor with exec-suffixes. If not found in
17613 standard places, look in exec-path. Remove most of the tests that
17614 used system-type.
17615
17616 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
17617
17618 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
17619
17620 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
17621 file-name clash with jka-compr.el on 8+3 filesystems.
17622
17623 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17624
17625 * term/mac-win.el: Don't define or bind scroll bar functions if
17626 x-toolkit-scroll-bars is t.
17627 (x-select-text, x-get-selection-value): Clear
17628 x-last-selected-text-clipboard if x-select-enable-clipboard is
17629 nil.
17630 (PRIMARY): Put mac-scrap-name property.
17631 (mac-select-convert-to-file-url): New function.
17632 (public.file-url): New selection target type. Add to
17633 selection-converter-alist.
17634 (x-get-selection, x-selection-value): Handle it.
17635 (x-cut-buffer-or-selection-value): New alias.
17636
17637 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17638
17639 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
17640 entry to avoid calling bibtex-find-entry with arg global
17641 being t. Remove arg key.
17642 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
17643 (bibtex-copy-summary-as-kill): Change accordingly.
17644
17645 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
17646
17647 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
17648 (org-agenda-date-later): Use with-current-buffer.
17649
17650 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
17651
17652 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
17653 (define-obsolete-variable-alias): Doc Fixes.
17654
17655 2005-05-06 Kim F. Storm <storm@cua.dk>
17656
17657 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
17658 vertical-motion when selective-display is active.
17659
17660 * ido.el (ido-setup-hook): New hook.
17661 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
17662 (ido-input-stack): New var.
17663 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
17664 ido-next-work-file binding to M-O.
17665 Bind M-f to ido-wide-find-file-or-pop-dir.
17666 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
17667 (ido-read-internal): Run ido-setup-hook.
17668 Catch quit in read-file-name and read-string to cancel edit.
17669 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
17670 Automatically pop-all when completing a directory name (RET).
17671 (ido-file-internal): Add with-no-warnings around ffap and dired code.
17672 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
17673 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
17674 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
17675 New functions for M-b/M-f to move among the directory components.
17676 (ido-make-merged-file-list): Catch quit to cancel merge.
17677 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
17678 (ido-completion-help): No warnings for ido-completion-buffer-full.
17679
17680 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
17681
17682 * font-lock.el (font-lock-negation-char-face): New face and variable.
17683 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
17684 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
17685 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
17686 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
17687
17688 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
17689
17690 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
17691 Fix typo in docstring.
17692
17693 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
17694 (ebrowse-print-statistics-line)
17695 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
17696
17697 * term/w32-win.el (image-library-alist): Add additional name for
17698 Xpm library.
17699
17700 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
17701
17702 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
17703 use gcc instead of cpp.
17704
17705 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
17706 (gdb-create-define-alist): Use it.
17707 (gdb-cpp-define-alist-program): Update for MS-DOS.
17708
17709 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
17710
17711 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
17712
17713 2005-05-04 Richard M. Stallman <rms@gnu.org>
17714
17715 * help.el (describe-key): No error when UNTRANSLATED is nil.
17716
17717 * simple.el (line-move-1): Fix previous change to signal errors
17718 appropriately.
17719
17720 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
17721
17722 * calendar/icalendar.el (icalendar-version): Now at 0.12.
17723 (icalendar-duration-correction): Remove.
17724 (icalendar--get-event-properties): Split result at commas.
17725 (icalendar--decode-isoduration): New optional argument
17726 DURATION-CORRECTION.
17727 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
17728 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
17729 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
17730 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
17731 (icalendar--convert-anniversary-to-ical): New functions, extracted
17732 from icalendar-export-region, with bug fixes.
17733 (icalendar-export-region): Use the above functions.
17734 (icalendar-import-buffer): Check before saving diary file.
17735 (icalendar--convert-recurring-to-diary)
17736 (icalendar--convert-non-recurring-all-day-to-diary)
17737 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
17738 extracted from icalendar--convert-ical-to-diary, with bug fixes.
17739 (icalendar--convert-ical-to-diary): Use the above functions.
17740
17741 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
17742
17743 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
17744 Remove these recent additions.
17745 (c-mode): Restore to before 2005-04-28.
17746
17747 * progmodes/cc-vars.el (cc-define-list-program): Remove this
17748 recent addition.
17749
17750 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
17751 (gdb-define-alist): New variables.
17752 (gdb-create-define-alist): New function.
17753 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
17754 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
17755 with string-to-number.
17756 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
17757
17758 * progmodes/gud.el: Replace string-to-int with string-to-number.
17759 (gud-find-file): Handle gdb-define-alist.
17760
17761 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
17762
17763 2005-05-02 Jay Belanger <belanger@truman.edu>
17764
17765 * calc/calc-aent.el (math-read-token):
17766 * calc/calc-bin.el (calc-word-size):
17767 * calc/calc-ext.el (calc-read-number-fancy):
17768 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
17769 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
17770 * calc/calc-frac.el (calc-over-notation):
17771 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
17772 (calc-graph-num-points, calc-graph-init):
17773 * calc/calc-prog.el (calc-read-parse-table-part)
17774 (calc-edit-macro-repeats):
17775 * calc/calc-yank.el (calc-do-grab-rectangle):
17776 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
17777 Replace `string-to-int' by `string-to-number'.
17778
17779 2005-05-02 Kim F. Storm <storm@cua.dk>
17780
17781 * kmacro.el: Use executing-kbd-macro-index variable.
17782
17783 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
17784
17785 * net/rlogin.el (rlogin-parse-words): Delete func.
17786 (rlogin): Use split-string, not rlogin-parse-words.
17787 Also, if there are option-like elements in the parsed args,
17788 take the host to be the first arg immediately following them.
17789 Suggested by Michael Mauger.
17790
17791 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
17792
17793 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
17794
17795 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
17796
17797 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
17798 (cc-mode-cpp-program): Rename to cc-define-list-program and
17799 move to cc-vars.el.
17800
17801 * progmodes/cc-vars.el (cc-define-list-program):
17802 Change to "gcc -E -dM -". Make customizable.
17803
17804 2005-05-02 Kim F. Storm <storm@cua.dk>
17805
17806 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
17807
17808 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
17809
17810 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
17811
17812 * international/mule-util.el (truncate-string): Remove alias and
17813 obsolete declaration.
17814
17815 * international/mule-cmds.el (update-iso-coding-systems):
17816 Remove alias and obsolete declaration.
17817
17818 * international/mule.el (coding-system-parent): Remove alias and
17819 obsolete declaration.
17820
17821 * subr.el (define-function, sref): Remove aliases and obsolete
17822 declarations.
17823 (chars-in-region): Remove obsolete declaration.
17824
17825 2005-05-01 Richard M. Stallman <rms@gnu.org>
17826
17827 * info.el (Info-mode): Set widen-automatically to nil, locally.
17828
17829 * simple.el (widen-automatically): New variable.
17830 (pop-global-mark): Obey widen-automatically.
17831
17832 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
17833
17834 * term/xterm.el (function-key-map): Call substitute-key-definition
17835 before the keymap size is increased by a lot of define-key calls.
17836
17837 2005-05-01 Richard M. Stallman <rms@gnu.org>
17838
17839 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
17840 Rename ARG to ELEMENT. Doc fix.
17841
17842 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
17843
17844 * allout.el (allout-exposure): Remove macro and obsolete declaration.
17845 Remove references to allout-exposure/change to allout-new-exposure.
17846
17847 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
17848 bytecode symbols.
17849
17850 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
17851 (compiled-function-p, focus-frame, unfocus-frame):
17852 Remove aliases and obsolete declarations.
17853 Back out inadvertent changes from previous commit.
17854
17855 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
17856
17857 * files.el (require-final-newline): Make Custom tags consistent
17858 with mode-require-final-newline.
17859 (mode-require-final-newline): Doc fix.
17860
17861 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
17862
17863 * international/latexenc.el (latexenc-find-file-coding-system):
17864 Fix regular expressions.
17865
17866 2005-05-01 David Kastrup <dak@gnu.org>
17867
17868 * international/latexenc.el (latexenc-find-file-coding-system):
17869 Fix regular expressions.
17870
17871 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
17872
17873 * subr.el (string-to-int): Make obsolete.
17874
17875 2005-04-30 Richard M. Stallman <rms@gnu.org>
17876
17877 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
17878
17879 * loadup.el: load jka-comp-hook.
17880
17881 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
17882 (jka-compr-handler): Add autoload. `put' calls moved
17883 to jka-comp-hook.el.
17884 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
17885 (jka-compr-inhibit): Autoload.
17886
17887 * jka-comp-hook.el: New file.
17888 Enable the mode by default.
17889
17890 * files.el (backup-buffer-copy): Use copy-file instead
17891 of write-region, and put back the 'excl.
17892
17893 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
17894
17895 * progmodes/flymake.el (flymake-split-string)
17896 (flymake-split-string, flymake-log, flymake-pid-to-names)
17897 (flymake-reg-names, flymake-get-source-buffer-name)
17898 (flymake-unreg-names, flymake-add-line-err-info)
17899 (flymake-add-err-info): Clarify docstrings.
17900 (flymake-popup-menu, flymake-make-emacs-menu)
17901 (flymake-make-xemacs-menu): Add docstrings.
17902 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
17903 Set variables directly throughout.
17904
17905 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
17906
17907 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
17908 exists. Initialize cc-define-alist.
17909 (c-mode): Add cc-create-define-alist locally to after-save-hook.
17910 If there is no file (Macroexpansion) don't create an alist.
17911
17912 2005-04-29 Sam Steingold <sds@gnu.org>
17913
17914 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
17915 (cc-create-define-alist): Use it instead of the hard-coded string.
17916
17917 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
17918
17919 * international/mule-conf.el (file-coding-system-alist): Fix regexp
17920 for latexenc.
17921
17922 2005-04-29 Lute Kamstra <lute@gnu.org>
17923
17924 * emacs-lisp/generic.el: Improve commentary section.
17925 (define-generic-mode): Improve docstring.
17926
17927 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
17928
17929 * textmodes/org.el (many places): Change to quiet the byte compiler.
17930 (org-prefix-format-compiled): New variable.
17931 (org-compile-prefix-format): New function.
17932 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
17933 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
17934 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
17935 (org-get-entries-from-diary): Use `org-get-time-of-day' for
17936 consistency with entries from `org-mode' files.
17937 (org-get-time-of-day): Fix bug with partial matches early in a line.
17938 (org-non-link-chars): New constant.
17939 (org-link-regexp): Respect `org-non-link-chars'.
17940 (org-agenda-day-view): Remove command.
17941 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
17942 (org-follow-bbdb-link, org-store-link): Search also company field.
17943 (org-highlight-overlay): New variable.
17944 (org-highlight, org-unhighlight): New functions.
17945 (org-agenda-mode): Add pre-command-hook to remove highlight.
17946 (org-evaluate-time-range): Behavior depends upon whether time stamp
17947 contains a time or not.
17948 (org-show-subtree, org-show-entry): New functions.
17949 (org-agenda-cleanup-fancy-diary): Remove empty lines.
17950
17951 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
17952
17953 * comint.el (comint-output-filter-functions): Add autoload cookie.
17954
17955 2005-04-28 Kim F. Storm <storm@cua.dk>
17956
17957 * ido.el (ido-everywhere): Fix last change.
17958
17959 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
17960
17961 * international/latexenc.el: New file.
17962 * international/mule-conf.el (file-coding-system-alist): For .tex,
17963 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
17964
17965 2005-04-28 Lute Kamstra <lute@gnu.org>
17966
17967 * font-lock.el (font-lock-add-keywords)
17968 (font-lock-remove-keywords): Clarify docstring.
17969 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
17970 Don't start docstrings with a `*'.
17971 (font-lock-update-removed-keyword-alist): Give it a docstring.
17972
17973 * generic-x.el: Update commentary section.
17974 Only require font-lock when compiling.
17975 Define all modes conditionally.
17976 Place all generic modes in the generic-x-modes customization group.
17977 (generic-x-modes): New customization group.
17978 (generic-default-modes, generic-mswindows-modes)
17979 (generic-unix-modes, generic-other-modes): New constants.
17980 (generic-define-mswindows-modes, generic-define-unix-modes):
17981 Update docstrings. Make them obsolete.
17982 (generic-extras-enable-list): New default value. Update docstring.
17983 Improve :type. Change :set function.
17984 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
17985 Fix docstring.
17986
17987 * emacs-lisp/generic.el (generic-mode-internal):
17988 Simplify font-lock-defaults.
17989 (define-generic-mode): Fix docstring.
17990
17991 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
17992
17993 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
17994 font-lock-face property to highlight matches.
17995
17996 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
17997
17998 * progmodes/cc-mode.el (cc-create-define-alist): New function.
17999 (cc-define-alist): New variable.
18000 (c-mode): Make it local and initialize it.
18001
18002 * progmodes/gdb-ui.el (gdb-active-process): New variable.
18003 (gdb-exited): New function.
18004 (gdb-annotation-rules): Use it.
18005 (gdb-starting): Set gdb-active-process to t.
18006 (gdb-stopping): Amend doc string.
18007 (gdb-reset): Set gdb-active-process to nil.
18008
18009 * tooltip.el (tooltip-gud-tips): Show the associated #define
18010 directives when a C program under GDB is not executing.
18011
18012 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
18013
18014 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
18015 font-lock-fontify-syntactic-keywords.
18016
18017 * font-lock.el (font-lock-default-fontify-region): Don't force
18018 parse-sexp-lookup-properties to nil.
18019
18020 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18021
18022 * man.el (man-mode-syntax-table): Set up `:' to have
18023 word-constituent syntax.
18024
18025 2005-04-27 Lute Kamstra <lute@gnu.org>
18026
18027 * novice.el (disable-command): Don't add spurious newlines to the
18028 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
18029
18030 2005-04-26 Jay Belanger <belanger@truman.edu>
18031
18032 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
18033 than one window before deleting window.
18034
18035 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
18036
18037 * shell.el (shell-prompt-pattern): Doc fix.
18038 (shell-mode): Set paragraph-separate buffer locally to "\\'".
18039
18040 * comint.el (comint-prompt-regexp, comint-get-old-input)
18041 (comint-use-prompt-regexp)
18042 (comint-use-prompt-regexp-instead-of-fields)
18043 (comint-replace-by-expanded-history, comint-send-input)
18044 (comint-output-filter, comint-get-old-input-default)
18045 (comint-line-beginning-position, comint-bol, comint-show-output)
18046 (comint-backward-matching-input, comint-forward-matching-input)
18047 (comint-next-prompt, comint-previous-prompt):
18048 Rename `comint-use-prompt-regexp-instead-of-fields' to
18049 `comint-use-prompt-regexp'. Keep old name as alias and declare
18050 obsolete.
18051 (comint-use-prompt-regexp): Shorten first line of doc string.
18052
18053 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
18054 Set paragraph-separate buffer locally to "\\'".
18055
18056 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
18057 Adapt to above name change.
18058
18059 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
18060 (smbclient-prompt-regexp): Ditto.
18061
18062 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
18063
18064 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
18065
18066 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
18067 gdb-location-list.
18068 Break lines that are over 80 characters wide.
18069
18070 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
18071
18072 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
18073 New fun and var, to preserve compatibility.
18074
18075 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
18076
18077 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
18078
18079 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
18080 name to file-newer-than-file-p.
18081
18082 2005-04-26 Richard M. Stallman <rms@gnu.org>
18083
18084 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
18085
18086 * progmodes/python.el (python-mode):
18087 Use new name eldoc-documentation-function.
18088
18089 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
18090
18091 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
18092 (eldoc-documentation-function):
18093 Rename from eldoc-print-current-symbol-info-function. Calls changed.
18094
18095 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
18096
18097 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
18098
18099 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
18100
18101 * term/xterm.el (function-key-map): Fix strings for
18102 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
18103 {C,S,A,C-S}-{f1-f12}.
18104
18105 2005-04-26 Kenichi Handa <handa@m17n.org>
18106
18107 * international/mule-cmds.el (select-safe-coding-system):
18108 Fix previous change.
18109
18110 2005-04-26 Lute Kamstra <lute@gnu.org>
18111
18112 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
18113
18114 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
18115 (font-lock-comment-delimiter-face): Ditto.
18116
18117 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
18118
18119 2005-04-25 Jay Belanger <belanger@truman.edu>
18120
18121 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
18122 to t while inserting information; use help-mode.
18123
18124 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
18125
18126 * term.el (ansi-term-color-vector): Use the xterm colors.
18127 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
18128
18129 2005-04-25 Lute Kamstra <lute@gnu.org>
18130
18131 * font-core.el (font-lock-defaults): Fix docstring.
18132
18133 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
18134
18135 2005-04-25 Kenichi Handa <handa@m17n.org>
18136
18137 * international/mule-cmds.el (select-safe-coding-system):
18138 Don't check consistency with coding: spec, etc if raw-text or
18139 no-conversion was found to be safe.
18140
18141 2005-04-24 Richard M. Stallman <rms@gnu.org>
18142
18143 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
18144 citation markers at start of each line.
18145
18146 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
18147 citation markers at start of each line.
18148
18149 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
18150
18151 * files.el (mode-require-final-newline): Fix previous change.
18152 (require-final-newline): Fix type label.
18153
18154 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
18155
18156 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
18157 statement in buffer (broken by 2004-11-24 change).
18158
18159 2005-04-24 Kim F. Storm <storm@cua.dk>
18160
18161 * ido.el (ido-everywhere): Save and restore old read-buffer-function
18162 and read-file-name-function values. Don't overwrite existing
18163 non-nil values if ido-mode is enabled without ido-everywhere.
18164
18165 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
18166
18167 * files.el (mode-require-final-newline): Minor doc fix.
18168
18169 2005-04-24 Eli Zaretskii <eliz@gnu.org>
18170
18171 * subr.el (syntax-after): Doc fix.
18172 (syntax-class): If argument is nil, return nil. Mask off upper 16
18173 bits, not 8 bits.
18174
18175 * files.el (mode-require-final-newline): Doc fix.
18176 (backup-buffer-copy): Fix last change.
18177
18178 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18179
18180 * term/mac-win.el: Require select. Set selection-coding-system to
18181 mac-system-coding-system. Call menu-bar-enable-clipboard.
18182 (x-last-selected-text-clipboard, x-last-selected-text-primary)
18183 (x-select-enable-clipboard): New variables.
18184 (x-select-text, x-get-selection, x-selection-value)
18185 (x-get-selection-value, mac-select-convert-to-string)
18186 (mac-services-open-file, mac-services-open-selection)
18187 (mac-services-insert-text): New functions.
18188 (CLIPBOARD, FIND): Put mac-scrap-name property.
18189 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
18190 (public.tiff): Put mac-ostype property.
18191 (selection-converter-alist): Add entries for them.
18192 (mac-application-menu-map): New keymap.
18193 (interprogram-cut-function, interprogram-paste-function): Set to
18194 x-select-text and x-get-selection-value, respectively.
18195 (split-window-keep-point): Set to t.
18196
18197 2005-04-23 Richard M. Stallman <rms@gnu.org>
18198
18199 * files.el (read-directory-name): Always pass non-nil
18200 DEFAULT-FILENAME arg to read-file-name.
18201 (backup-buffer-copy, basic-save-buffer-2): Take care against
18202 writing thru an unexpected existing symlink.
18203 (revert-buffer): In indirect buffer, revert the base buffer.
18204 (magic-mode-alist): Doc fix.
18205 (buffer-stale-function): Doc fix.
18206 (minibuffer-with-setup-hook): Avoid warning.
18207 (mode-require-final-newline): Doc and custom fix.
18208
18209 * follow.el (follow-end-of-buffer): Use with-no-warnings.
18210
18211 * font-lock.el (font-lock-comment-face): On terminals with few colors,
18212 use the default appearance.
18213 (font-lock-comment-delimiter-face): New face, new variable.
18214
18215 * imenu.el (imenu--generic-function): The official position of a
18216 definition is the start of the line that BEG is in.
18217
18218 * midnight.el (midnight-timer): Move defvar up.
18219
18220 * mouse.el (mouse-drag-region-1): Delete some debugging code.
18221
18222 * saveplace.el (save-place-to-alist): Use with-no-warnings.
18223
18224 * startup.el (command-line): Use with-no-warnings.
18225
18226 * window.el (window-size-fixed): New defvar.
18227
18228 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
18229
18230 * mail/rmail.el (rmail-font-lock-keywords):
18231 Use font-lock-comment-delimiter-face.
18232
18233 * mail/sendmail.el (mail-font-lock-keywords):
18234 Use font-lock-comment-delimiter-face.
18235
18236 * progmodes/compile.el (next-error-highlight-timer): New defvar.
18237
18238 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
18239
18240 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18241 Specify t for LAXMATCH when matching directories.
18242 Save match data around compilation-compat-error-properties form.
18243
18244 2005-04-23 David Kastrup <dak@gnu.org>
18245
18246 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
18247 Mention that the autoloaded aliases should be kept for AUCTeX.
18248
18249 2005-04-23 Andreas Schwab <schwab@suse.de>
18250
18251 * isearch.el (isearch-forward): Doc fix.
18252
18253 2005-04-23 Eli Zaretskii <eliz@gnu.org>
18254
18255 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
18256 (jit-lock-stealth-nice): Change default value to 0.5.
18257
18258 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
18259
18260 * abbrev.el (write-abbrev-file): Write table entries in
18261 alphabetical order by table name.
18262
18263 2005-04-22 Kim F. Storm <storm@cua.dk>
18264
18265 * ido.el (ido-read-internal): Fix `list' completion.
18266
18267 2005-04-22 Kenichi Handa <handa@m17n.org>
18268
18269 * recentf.el (recentf-save-file-coding-system): New variable.
18270 (recentf-save-list): Encode the file by
18271 recentf-save-file-coding-system and add coding: tag.
18272
18273 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
18274
18275 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
18276
18277 2005-04-21 Lute Kamstra <lute@gnu.org>
18278
18279 * loadhist.el (unload-feature): Don't remove a function from hooks
18280 if it is about to be restored to an autoload . Remove functions
18281 that will become unbound from auto-mode-alist. Simplify the code.
18282
18283 * subr.el (assq-delete-all): New implementation that is linear,
18284 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
18285 (rassq-delete-all): New function.
18286
18287 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
18288 Add size-indication-mode.
18289
18290 2005-04-21 Kenichi Handa <handa@m17n.org>
18291
18292 * international/mule-cmds.el: Add autoload for widget-value in
18293 eval-when-compile.
18294
18295 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
18296
18297 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
18298 Add tooltip-mode.
18299
18300 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
18301
18302 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
18303
18304 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
18305 (inferior-lisp-filter-regexp, inferior-lisp-program)
18306 (inferior-lisp-load-command, inferior-lisp-prompt)
18307 (inferior-lisp-mode-hook, lisp-source-modes)
18308 (inferior-lisp-load-hook): defvar->defcustom.
18309 (inferior-lisp-program, inferior-lisp-prompt)
18310 (inferior-lisp-load-hook): Doc fixes.
18311 (inferior-lisp-install-letter-bindings): Small change in
18312 introductory comment.
18313
18314 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
18315
18316 * vc.el (vc-annotate-color-map): Change some colors so that text
18317 using them as foreground is readable on both white and black
18318 backgrounds.
18319
18320 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
18321
18322 * international/mule-conf.el (translation-table-for-input):
18323 Remove redundant declaration.
18324
18325 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
18326
18327 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
18328
18329 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
18330 (tooltip-toggle-gud-tips): New function.
18331
18332 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18333
18334 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
18335 right angle brackets.
18336
18337 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
18338
18339 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
18340
18341 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
18342
18343 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
18344 Remove. Update callers to use expand-file-name instead.
18345
18346 * subr.el (syntax-class): New function.
18347
18348 * simple.el (blink-matching-open): Use it.
18349
18350 * paren.el (show-paren-function): Use it to recognize parens that are
18351 also used in 2-char comment markers.
18352
18353 2005-04-19 Lute Kamstra <lute@gnu.org>
18354
18355 * loadhist.el (unload-feature): Update for new format of
18356 load-history. Simplify the code.
18357
18358 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18359
18360 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
18361 (mac-add-charset-info): New function. Initialize variable
18362 mac-charset-info-alist using it.
18363 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
18364 for translation.
18365 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
18366 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
18367 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
18368 New CCL programs.
18369
18370 2005-04-19 Kim F. Storm <storm@cua.dk>
18371
18372 * simple.el (next-buffer, prev-buffer, next-error)
18373 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
18374 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
18375
18376 * bindings.el (next-buffer, prev-buffer, next-error)
18377 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
18378 (clone-indirect-buffer-other-window): Move bindings from simple.el.
18379 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
18380 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
18381
18382 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
18383
18384 * isearch.el (isearch-edit-string): Make the search-ring available for
18385 minibuffer history commands.
18386 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
18387 the default history commands now work just as well.
18388 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
18389
18390 2005-04-18 Kim F. Storm <storm@cua.dk>
18391
18392 * emulation/cua-base.el (cua--pre-command-handler): Add more
18393 elaborate check for shift modifier on non-window systems.
18394
18395 2005-04-18 Lars Hansen <larsh@math.ku.dk>
18396
18397 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
18398
18399 2005-04-18 Kim F. Storm <storm@cua.dk>
18400
18401 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
18402 and make it optional. Don't test tooltip-gud-echo-area here.
18403 (tooltip-gud-process-output, gdb-tooltip-print):
18404 Pass tooltip-gud-echo-area to tooltip-show.
18405 (tooltip-help-tips): Remove second optional arg to tooltip-show.
18406
18407 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18408
18409 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
18410 `display-graphic-p' may not be bound yet.
18411
18412 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
18413
18414 * startup.el (command-line): No longer enable Xterm Mouse mode by
18415 default in terminals compatible with xterm.
18416
18417 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
18418
18419 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
18420
18421 * tooltip.el (tooltip-gud-echo-area): Rename from
18422 tooltip-use-echo-area.
18423 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
18424 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
18425 area independently of where help tooltips are displayed.
18426
18427 2005-04-17 David Kastrup <dak@gnu.org>
18428
18429 * cus-theme.el (custom-theme-write-variables): Quote variables
18430 where necessary.
18431
18432 2005-04-17 Richard M. Stallman <rms@gnu.org>
18433
18434 * simple.el (yank-excluded-properties): Add follow-link to value.
18435
18436 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
18437
18438 * startup.el (fancy-splash-max-time): Just 30 seconds.
18439 (fancy-splash-delay): Just 7.
18440 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
18441
18442 * loadhist.el (unload-feature): Update for new format of load-history.
18443 Simplify the code.
18444
18445 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
18446 (rmail-font-lock-keywords): Don't fontify the text of a citation.
18447
18448 * mail/sendmail.el (mail-font-lock-keywords):
18449 Don't fontify subject text.
18450 Don't fontify the text of a citation.
18451
18452 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
18453
18454 * comint.el (comint-output-filter): Run comint-output-filter-functions
18455 with point where the user had it.
18456
18457 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
18458
18459 * international/ucs-tables.el (ucs-set-table-for-input):
18460 Disable when using unify-on-decoding.
18461
18462 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
18463
18464 * emulation/cua-base.el (cua-global-mark-face): Add special case
18465 for displays supporting a high number of colors.
18466
18467 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
18468
18469 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
18470
18471 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
18472
18473 * filesets.el (filesets-add-buffer): If user supplies a name of a
18474 non-existing fileset, create a new fileset.
18475
18476 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
18477
18478 * textmodes/org.el (org-up-heading-all): Fix bug with
18479 `outline-up-heading-all'.
18480
18481 2005-04-16 Andreas Schwab <schwab@suse.de>
18482
18483 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
18484 /etc/permissions.d/* and /etc/aliases.d/*.
18485
18486 2005-04-16 Kenichi Handa <handa@m17n.org>
18487
18488 * international/code-pages.el (cp-make-coding-system):
18489 Set `translation-table-for-input' property value to the symbol
18490 ucs-mule-to-mule-unicode, not to that value.
18491 (pt154): Escape guillemet by `\'.
18492
18493 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
18494
18495 * loadup.el: Load tooltip if x-show-tip is fboundp.
18496
18497 * startup.el (command-line): Add comment.
18498
18499 * tooltip.el (tooltip-mode): Specify correct standard value for
18500 Custom in init-value.
18501
18502 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
18503
18504 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
18505 possible.
18506
18507 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
18508
18509 * textmodes/org.el (org-agenda-date-prompt): Rename from
18510 `org-agenda-date-today'.
18511 (org-evaluate-time-range): Insert at point instead of directly
18512 after time range.
18513 (org-first-headline-recenter, org-subtree-end-visible-p)
18514 (org-optimize-window-after-visibility-change): New functions
18515 (org-agenda-post-command-hook): Don't allow point at end of line,
18516 to make sure it always hits the text properties.
18517 (org-agenda-next-date-line, org-agenda-previous-date-line):
18518 New commands.
18519 (org-set-regexps-and-options): Category may contain white space.
18520 (org-agenda-get-deadlines, org-agenda-get-scheduled):
18521 Improve marker positions.
18522 (org-agenda-new-marker): Argument POS made optional.
18523 (org-agenda-get-timestamps): Deadlines which are done are listed
18524 in org-done-face now.
18525 (org-agenda-get-todos, org-agenda-get-timestamps)
18526 (org-agenda-get-deadlines, org-agenda-get-scheduled):
18527 Set `undone-face' and `done-face' properties.
18528 (org-last-todo-state-is-todo): New variable.
18529 (org-todo): Set `org-last-todo-state-is-todo'.
18530 (org-agenda-todo): Change face according to
18531 `org-last-todo-state-is-todo'. And change other lines referring to
18532 the same entry.
18533 (org-calendar-goto-agenda): New command.
18534 (org-calendar-to-agenda-key): New option.
18535 (org-startup-folded): New allowed value `content'.
18536 (org-set-regexps-and-options): Accept new value `content' for
18537 `org-startup-folded'.
18538 (org-get-current-options): Handle new value `content' for
18539 `org-startup-folded'.
18540 (org-insert-todo-heading): New command.
18541 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
18542 interactively in empty file and option
18543 `org-insert-mode-line-in-empty-file' has been set.
18544 (org-agenda-todo, org-agenda-priority): Modify to use
18545 `org-agenda-change-all-lines'.
18546 (org-warning-face): Change color on dark background
18547
18548 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18549
18550 * international/mule-cmds.el (set-locale-environment): On Mac OS,
18551 use preferences AppleLocale and AppleLanguages, and variable
18552 mac-system-locale for default locale. On Mac OS Classic, use
18553 mac-system-coding-system for default coding systems.
18554
18555 * term/mac-win.el: Don't set file-name-coding-system.
18556 Decode variables system-name, emacs-build-system, user-login-name, and
18557 user-full-name by mac-system-coding-system on Mac OS Classic.
18558 (mac-system-coding-system): New variable.
18559
18560 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
18561
18562 * startup.el (command-line): Handle `xterm-mouse-mode' before
18563 reading init file.
18564
18565 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
18566
18567 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
18568
18569 * progmodes/sh-script.el (sh-here-document-word): Make it a
18570 defcustom. Doc fix.
18571 (sh-add): Bash uses $(( )) for arithmetic.
18572 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
18573 (sh-maybe-here-document): Remove quotes and leading whitespace
18574 from heredoc word when closing. Indent heredoc with tabs if word
18575 starts with "-".
18576
18577 2005-04-13 Richard M. Stallman <rms@gnu.org>
18578
18579 * simple.el (undo): Fix previous change.
18580
18581 * custom.el (defface): Doc fix.
18582
18583 2005-04-13 Lute Kamstra <lute@gnu.org>
18584
18585 * Makefile.in (DONTCOMPILE): Remove list.
18586 (compile, compile-always): Don't use DONTCOMPILE.
18587 (update-authors): Load the library in which batch-update-authors
18588 is defined.
18589 * makefile.w32-in (DONTCOMPILE): Remove list.
18590 (compile, compile-always): Fix comments.
18591 (update-authors): Load the library in which batch-update-authors
18592 is defined.
18593
18594 * generic-x.el (generic-mode-ini-file-find-file-hook):
18595 Rename to ini-generic-mode-find-file-hook.
18596 Keep generic-mode-ini-file-find-file-hook as an alias.
18597 (ini-generic-mode-find-file-hook): Rename from
18598 generic-mode-ini-file-find-file-hook. Fix docstring.
18599 (ini-generic-mode): Docstring change.
18600 (bat-generic-mode-run-as-comint): Silence the byte compiler.
18601
18602 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
18603 called from lisp.
18604
18605 * generic.el: Move to the emacs-lisp subdir.
18606
18607 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
18608
18609 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
18610 and C-S- function and cursor motion keys.
18611
18612 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
18613
18614 * startup.el (command-line): Enable Xterm Mouse mode by default.
18615 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
18616 for Custom. No longer show "Mouse" in mode line when enabled.
18617 Doc fix.
18618
18619 2005-04-12 Kim F. Storm <storm@cua.dk>
18620
18621 * emulation/cua-base.el (cua-rectangle-face)
18622 (cua-rectangle-noselect-face): Define face attributes here.
18623
18624 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
18625
18626 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18627
18628 * startup.el (command-line): Turn off blinking cursor if
18629 cursorBlink in resources is off or false.
18630
18631 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18632
18633 * term/mac-win.el (dnd): Require dnd.
18634 (mac-drag-n-drop): Call dnd-handle-one-url.
18635 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
18636 (kTextEncodingISOLatin2): Remove constants.
18637 (mac-script-code-coding-systems): New constant.
18638 (mac-handle-language-change): New function.
18639 (special-event-map): Bind it to `language-change' event.
18640 (mac-centraleurroman, mac-cyrillic): New coding systems.
18641 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
18642 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
18643 and mac-cyrillic-encoder to encode-mac-centraleurroman and
18644 encode-mac-cyrillic, respectively.
18645
18646 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
18647
18648 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
18649 Don't set overlay-arrow-string to "=>" as this is done
18650 globally in C now.
18651
18652 2005-04-12 Lute Kamstra <lute@gnu.org>
18653
18654 * generic-x.el (rc-generic-mode, rul-generic-mode):
18655 Fix auto-mode-alist entries.
18656 (etc-fstab-generic-mode): Tweak fontification.
18657
18658 * generic.el (generic-make-keywords-list): Fix docstring.
18659 (generic-mode-internal): Simplify generic-font-lock-keywords.
18660
18661 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
18662
18663 * whitespace.el (whitespace-buffer-leading)
18664 (whitespace-buffer-trailing): Revert the incorrect test inversion.
18665 However, fix the highlight area for the leading and
18666 trailing whitespaces to show space.
18667
18668 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
18669
18670 * whitespace.el (whitespace-version): Bump to 3.5
18671
18672 (whitespace-buffer-leading, whitespace-buffer-trailing):
18673 Invert sense of the test to highlight the whitespace.
18674
18675 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
18676
18677 * progmodes/gud.el (gud-display-line): GUD uses its own
18678 overlay arrow now so don't set overlay-arrow-string.
18679 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
18680
18681 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
18682
18683 * term.el (term-ansi-current-bold, term-ansi-current-underline)
18684 (term-ansi-current-reverse, term-ansi-current-invisible)
18685 (term-ansi-face-already-done): Change to boolean.
18686 (term-reset-terminal, term-handle-colors-array): Handle the above
18687 vars accordingly.
18688 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
18689 (term-emulate-terminal): Use the new name.
18690
18691 * faces.el (secondary-selection): Use yellow1, not yellow.
18692 (trailing-whitespace): Use red1, not red.
18693
18694 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18695
18696 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
18697 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
18698 (dired-dnd-handle-file): Call dnd-get-local-file-uri
18699
18700 * cus-edit.el (dnd): New group.
18701
18702 * term/w32-win.el (dnd): Require dnd
18703 (w32-drag-n-drop): Call dnd-handle-one-url.
18704
18705 * x-dnd.el: Require dnd.
18706 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
18707 Call dnd-handle-one-url.
18708 (x-dnd-types-alist, x-dnd-insert-utf8-text)
18709 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
18710 to dnd-insert-text.
18711 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
18712 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
18713 (x-dnd-get-local-file-name, x-dnd-open-local-file)
18714 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
18715
18716 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
18717
18718 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
18719
18720 * wdired.el: Doc fixes.
18721 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
18722 (wdired-use-dired-vertical-movement): Rename from
18723 wdired-always-move-to-filename-beginning.
18724 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
18725 (wdired-change-to-wdired-mode): Change mode name.
18726 (wdired-newline): Delete.
18727
18728 2005-04-11 Richard M. Stallman <rms@gnu.org>
18729
18730 * whitespace.el (whitespace-highlight-the-space):
18731 Don't call whitespace-unhighlight-the-space here.
18732
18733 * simple.el (undo): Record t in undo-equiv-table
18734 for the redo record made by an undo-in-region.
18735
18736 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
18737
18738 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
18739 (gdb-frame-inferior-io-buffer): New Functions to control
18740 display of separate IO buffer.
18741 (menu): Add them to menu-bar.
18742 (gdb-display-buffer): Check for buffer another frame.
18743 Protect GUD buffer.
18744 (gdb-setup-windows): Create IO buffer if not already there.
18745 (gdb-memory-mode): Remove purecopy noops.
18746
18747 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
18748
18749 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
18750 and pass to self-insert-command.
18751
18752 2005-04-11 Lute Kamstra <lute@gnu.org>
18753
18754 * generic.el: Commentary section cleanup.
18755 (generic): Delete.
18756 (generic-use-find-file-hook, generic-lines-to-scan)
18757 (generic-find-file-regexp, generic-ignore-files-regexp)
18758 (default-generic-mode, generic-mode-find-file-hook)
18759 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
18760 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
18761 (generic-use-find-file-hook, generic-lines-to-scan)
18762 (generic-find-file-regexp, generic-ignore-files-regexp)
18763 (default-generic-mode, generic-mode-find-file-hook)
18764 (generic-mode-ini-file-find-file-hook): Move from generic.el.
18765
18766 2005-04-10 Karl Fogel <kfogel@red-bean.com>
18767
18768 * bookmark.el (bookmark-write-file): Catch errors writing file.
18769 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
18770
18771 2005-04-10 Richard M. Stallman <rms@gnu.org>
18772
18773 * startup.el (fancy-splash-tail): Update copyright year.
18774 (command-line): Split part of -Q into -D.
18775 (emacs-basic-display): New defvar.
18776 (fancy-splash-text): Correct name of menu item.
18777
18778 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
18779
18780 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
18781 lines in one node.
18782
18783 * comint.el (comint-send-input): New arg ARTIFICIAL.
18784 Callers in this file changed.
18785
18786 * abbrev.el (define-abbrevs): Read system abbrevs properly.
18787
18788 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
18789
18790 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
18791
18792 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
18793 `ldap-search-internal'.
18794
18795 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
18796
18797 * files.el (set-auto-mode-1): Use line-end-position.
18798
18799 * international/latin-1.el:
18800 * international/latin-2.el:
18801 * international/latin-3.el:
18802 * international/latin-4.el:
18803 * international/latin-5.el:
18804 * international/latin-8.el:
18805 * international/latin-9.el: Give punctuation syntax to NBSP.
18806
18807 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
18808 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
18809 Use char-classes to accept non-ascii letters, accepted in some recent
18810 bibtex implementations.
18811
18812 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
18813
18814 * custom.el (custom-set-minor-mode): Any non-nil value for the
18815 variable should enable the mode when set through Custom.
18816
18817 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
18818
18819 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
18820 TAB binding so tab-always-indent is obeyed.
18821 (vhdl-minibuffer-local-map): Move initialization into declaration.
18822 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
18823 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
18824 (vhdl-hooked-abbrev): Avoid test for XEmacs.
18825 (vhdl-current-line): Use line-beginning-position.
18826 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
18827 with-output-to-temp-buffer, so the current position can be recorded.
18828
18829 2005-04-10 Masatake YAMATO <jet@gyve.org>
18830
18831 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18832 Add regexp for gcov.
18833
18834 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
18835
18836 * calendar/time-date.el (time-to-seconds, seconds-to-time)
18837 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
18838 syntax which Emacs 20 doesn't support.
18839
18840 2005-04-09 Richard M. Stallman <rms@gnu.org>
18841
18842 * help.el (describe-key-briefly, describe-key):
18843 Replace strings as event types with "(any string)".
18844
18845 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
18846
18847 * arc-mode.el (archive-mode-map): Move initialization into
18848 the declaration. Override *all* bindings of `undo'.
18849 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
18850
18851 2005-04-09 Jay Belanger <belanger@truman.edu>
18852
18853 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
18854
18855 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
18856
18857 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
18858 (xterm-register-default-colors): Update color values computation
18859 to match xterm-200.
18860
18861 2005-04-09 Kenichi Handa <handa@m17n.org>
18862
18863 * international/code-pages.el (iso-latin-7): Fix the map.
18864
18865 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
18866
18867 * emacs-lisp/lisp.el (defun-prompt-regexp)
18868 (parens-require-spaces, buffer-end, end-of-defun)
18869 (insert-parentheses): Doc fixes.
18870
18871 2005-04-08 Kim F. Storm <storm@cua.dk>
18872
18873 * comint.el (comint-highlight-prompt): Fix face spec.
18874 * hi-lock.el (hi-green): Likewise.
18875
18876 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
18877
18878 * cus-edit.el (custom-modified-face):
18879 * comint.el (comint-highlight-input): Fix previous changes.
18880 * term.el (term-handle-ansi-escape): Add a comment.
18881
18882 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
18883
18884 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
18885 in the buffer and in whitespace-highlighted-space.
18886 (whitespace-unhighlight-the-space): Simplify.
18887 (whitespace-buffer): Simplify.
18888
18889 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
18890
18891 * textmodes/table.el (table-cell-face): Add special case for
18892 displays supporting a high number of colors.
18893 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
18894 (vhdl-font-lock-reserved-words-face)
18895 (vhdl-speedbar-architecture-face)
18896 (vhdl-speedbar-instantiation-face)
18897 (vhdl-speedbar-architecture-selected-face)
18898 (vhdl-speedbar-instantiation-selected-face): Likewise.
18899 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
18900 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
18901 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
18902 (ebrowse-root-class-face, ebrowse-member-attribute-face)
18903 (ebrowse-progress-face): Likewise.
18904 * progmodes/compile.el (compilation-info-face): Likewise.
18905 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
18906 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
18907 * calendar/calendar.el (diary-face): Likewise.
18908 * woman.el (woman-italic-face, woman-bold-face)
18909 (woman-unknown-face): Likewise.
18910 * wid-edit.el (widget-button-pressed-face): Likewise.
18911 * whitespace.el (whitespace-highlight-face): Likewise.
18912 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
18913 * pcvs-info.el (cvs-marked-face): Likewise.
18914 * info.el (info-xref): Likewise.
18915 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
18916 * hilit-chg.el (highlight-changes-face)
18917 (highlight-changes-delete-face): Likewise.
18918 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
18919 (hi-red-b): Likewise.
18920 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
18921 * font-lock.el (font-lock-keyword-face)
18922 (font-lock-function-name-face, font-lock-warning-face): Likewise.
18923 * cus-edit.el (custom-invalid-face, custom-modified-face)
18924 (custom-set-face, custom-changed-face, custom-variable-tag-face)
18925 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
18926 * comint.el (comint-highlight-prompt): Likewise.
18927
18928 2005-04-08 Lute Kamstra <lute@gnu.org>
18929
18930 * font-lock.el (font-lock-keywords): Docstring fixes.
18931
18932 2005-04-08 Kenichi Handa <handa@m17n.org>
18933
18934 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
18935 chars are more than a limit, print " and more..." at the tail.
18936
18937 2005-04-08 Kim F. Storm <storm@cua.dk>
18938
18939 * emacs-lisp/authors.el (authors-aliases): Update list.
18940 (authors-ignored-files): New list.
18941 (authors-fixed-entries): Fix typo.
18942 (authors-renamed-files-alist): Update list.
18943 (authors-add): Check authors-ignored-files.
18944
18945 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
18946
18947 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
18948 optional, to ensure backward compatibility.
18949
18950 2005-04-08 Stephen Eglen <stephen@gnu.org>
18951
18952 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
18953
18954 2005-04-08 Kim F. Storm <storm@cua.dk>
18955
18956 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
18957
18958 * mouse.el (mouse-on-link-p): Doc fix.
18959
18960 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
18961
18962 * ielm.el (ielm-prompt-read-only): Doc fix.
18963
18964 * comint.el (comint-prompt-read-only): Doc fix.
18965
18966 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
18967
18968 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
18969 ensure dired always handles wildcards passed to ffap.
18970 (find-file-at-point): Use it.
18971 (ffap-dired-wildcards): Doc fix.
18972
18973 2005-04-07 Juri Linkov <juri@jurta.org>
18974
18975 * simple.el (next-error-overlay-arrow-position): New defvar.
18976 Put "=>" on its property `overlay-arrow-string'. Add it to
18977 `overlay-arrow-variable-list'.
18978
18979 * progmodes/compile.el (compilation-setup):
18980 Set `next-error-overlay-arrow-position' to nil. Also set it to
18981 nil in the local hook `kill-buffer-hook'. Make local variable
18982 `overlay-arrow-string' and set it to "=>".
18983 (compilation-goto-locus): Set BOL position to
18984 `next-error-overlay-arrow-position' instead of
18985 `overlay-arrow-position'.
18986
18987 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
18988 locally instead of adding it to the global hook.
18989 (Info-kill-buffer): Move up.
18990
18991 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
18992
18993 * term/xterm.el (xterm-standard-colors): Update color values from
18994 xterm-200.
18995
18996 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
18997
18998 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
18999
19000 * fast-lock.el:
19001 * lazy-lock.el: Move them to the obsolete subdir.
19002
19003 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
19004
19005 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
19006 (wdired-add-replace-advice): Remove.
19007 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
19008
19009 2005-04-06 Kim F. Storm <storm@cua.dk>
19010
19011 * startup.el (command-line): Add --bare-bones alias for -Q.
19012
19013 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19014
19015 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
19016 create the startup fontset if a font specification ends with
19017 `mac-roman'.
19018
19019 2005-04-06 Lute Kamstra <lute@gnu.org>
19020
19021 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
19022 change.
19023
19024 * emacs-lisp/copyright.el (copyright-update-year): Replace the
19025 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
19026
19027 2005-04-05 Lute Kamstra <lute@gnu.org>
19028
19029 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
19030 (define-generic-mode): Ditto. Fix debug declaration.
19031
19032 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
19033 Put them in the generic-x group.
19034
19035 * calendar/timeclock.el (timeclock): Doc fix.
19036
19037 * generic.el (define-generic-mode): Don't use custom-current-group.
19038 Document default :group value.
19039 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
19040 (define-global-minor-mode): Don't use custom-current-group.
19041
19042 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
19043
19044 * startup.el (command-line-1): Display startup-echo-area-message
19045 when fancy splash screen is in use.
19046
19047 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
19048 (sh-escaped-newline): New face.
19049 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
19050 newline, and use sh-escaped-newline face.
19051
19052 * progmodes/tcl.el (tcl-escaped-newline): New face.
19053 (tcl-builtin-list): New variable.
19054 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
19055 newlines. Fix keywords subexpression number.
19056
19057 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
19058
19059 * textmodes/org.el (org-diary-default-entry): Fix call to
19060 `add-to-diary-entry'.
19061
19062 2005-04-05 Kim F. Storm <storm@cua.dk>
19063
19064 * ediff-init.el: Use (featurep 'xemacs).
19065
19066 2005-04-05 David Ponce <david@dponce.com>
19067
19068 * cus-edit.el (face): Derive from symbol widget. Display sample
19069 of the current face on the fly.
19070 (widget-face-sample-face-get, widget-face-notify): New functions.
19071 (widget-face-value-create): Remove.
19072
19073 * wid-edit.el (widget-field-end): Temporarily remove field
19074 narrowing before to call `get-char-property'.
19075
19076 2005-04-04 Jay Belanger <belanger@truman.edu>
19077
19078 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
19079 (math-read-subscripts): New variable.
19080 (math-read-preprocess-string): Process subscripts.
19081
19082 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
19083
19084 * comint.el (comint-prompt-read-only): Doc fix.
19085
19086 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
19087 `-1'. Doc fix.
19088
19089 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
19090
19091 * textmodes/org.el (org-insert-mode-line-in-empty-file):
19092 Change default value to nil.
19093
19094 2005-04-04 Lute Kamstra <lute@gnu.org>
19095
19096 * autorevert.el (auto-revert-mode): Specify :group.
19097 * battery.el (display-battery-mode): Specify :group.
19098 * diff-mode.el (diff-minor-mode): Specify :group.
19099 * font-core.el (font-lock-mode): Specify :group.
19100 * hl-line.el (hl-line-mode): Specify :group.
19101 * iimage.el (iimage): New customization group.
19102 (iimage-mode): Specify :group.
19103 * longlines.el (longlines-mode): Specify :group.
19104 * master.el: Don't require easy-mmode.
19105 (master): New customization group.
19106 (master-mode): Specify :group.
19107 * msb.el (msb-mode): Specify :group.
19108 * reveal.el (reveal-mode): Specify :group.
19109 * simple.el (next-error-follow-minor-mode): Specify :group.
19110 * smerge-mode.el (smerge-mode): Specify :group.
19111 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
19112 * emulation/cua-base.el (cua-mode): Specify :group.
19113 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
19114 * language/thai-util.el (thai-auto-composition-mode)
19115 (thai-word-mode): Specify :group.
19116 * mail/supercite.el (sc-minor-mode): Specify :group.
19117 * progmodes/cwarn.el (cwarn-mode): Specify :group.
19118 * progmodes/flymake.el (flymake-mode): Specify :group.
19119 * progmodes/glasses.el (glasses-mode): Specify :group.
19120 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
19121 * textmodes/enriched.el (enriched-mode): Specify :group.
19122 * textmodes/refill.el (refill-mode): Specify :group.
19123
19124 * add-log.el (change-log-font-lock-keywords): Names in
19125 parenthesized lists can contain spaces.
19126
19127 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
19128
19129 * startup.el (fancy-splash-text): Shorten default text of
19130 "Emacs Tutorial" line. Also, if the current language env
19131 indicates an available tutorial file other than TUTORIAL,
19132 extract its title and append it to the line in parentheses.
19133 (fancy-splash-insert): If arg is a thunk, funcall it.
19134
19135 2005-04-04 Jay Belanger <belanger@truman.edu>
19136
19137 * calc.el (calc-language-alist): Add tags to customization type.
19138
19139 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
19140
19141 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
19142 Doc fix.
19143
19144 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
19145
19146 * add-log.el (change-log-font-lock-keywords): The manual
19147 describing a Change Log entry, says: (...) "Aside from these
19148 header lines, every line in the change log starts with a space or
19149 a tab.". The font-lock was not highlighting lines started with
19150 spaces, added support for it.
19151
19152 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
19153
19154 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
19155 (bibtex-generate-url-list): Update docstring accordingly. Put the
19156 complex example in the docstring.
19157 (bibtex-font-lock-url): Use pop.
19158
19159 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
19160
19161 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
19162
19163 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
19164
19165 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
19166
19167 * filesets.el (filesets-set-default): Doc fix.
19168
19169 2005-04-03 Lute Kamstra <lute@gnu.org>
19170
19171 * generic.el (define-generic-mode): Add argument to specify
19172 keywords for defcustom.
19173 (default-generic-mode): Specify :group.
19174
19175 * generic-x.el: Specify :group for all generic modes.
19176
19177 * desktop.el (desktop-no-desktop-file-hook)
19178 (desktop-after-read-hook): Doc fix.
19179
19180 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
19181
19182 * simple.el (visible-mode): Use explicit :group keyword.
19183 This changes the group of `visible-mode-hook' from paren-blinking
19184 to editing-basics.
19185
19186 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
19187
19188 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
19189 mailbox specifications as well as URLs.
19190 (rmail-insert-inbox-text): Remove unused conditional branches.
19191
19192 2005-04-01 Jay Belanger <belanger@truman.edu>
19193
19194 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
19195 (calc-gnuplot-print-command): Move definitions to calc.el.
19196
19197 * calc/calc-embed.el (calc-embedded-announce-formula)
19198 (calc-embedded-open-formula, calc-embedded-close-formula)
19199 (calc-embedded-open-word, calc-embedded-close-word)
19200 (calc-embedded-open-plain, calc-embedded-close-plain)
19201 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
19202 (calc-embedded-open-mode, calc-embedded-close-mode):
19203 Move definitions to calc.el.
19204
19205 * calc/calc.el (calc-settings-file, calc-language-alist):
19206 Make customizable.
19207 (calc-embedded-announce-formula, calc-embedded-open-formula)
19208 (calc-embedded-close-formula, calc-embedded-open-word)
19209 (calc-embedded-close-word, calc-embedded-open-plain)
19210 (calc-embedded-close-plain, calc-embedded-open-new-formula)
19211 (calc-embedded-close-new-formula, calc-embedded-open-mode)
19212 (calc-embedded-close-mode, calc-gnuplot-name)
19213 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
19214 from other files and make customizable.
19215
19216 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19217
19218 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
19219 Use buffer-live-p.
19220 (cvs-mode-run): Don't call cvs-update-header here.
19221 (cvs-run-process): Call cvs-update-header.
19222 Use process properties for cvs-postprocess and cvs-buffer so that
19223 the sentinel can behave better if the temp buffer is killed.
19224 Use a pipe rather than a tty, to better handle unexpected prompts.
19225 (cvs-sentinel): Rewrite. Call cvs-update-header.
19226
19227 2005-04-01 Andre Spiegel <spiegel@gnu.org>
19228
19229 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
19230 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
19231
19232 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
19233
19234 * generic.el (define-generic-mode): Add indentation rule.
19235
19236 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
19237
19238 * files.el (mode-require-final-newline): Make Custom correctly
19239 report a nil value and allow to set it to nil via Custom.
19240 Doc fix.
19241
19242 2005-04-01 Kenichi Handa <handa@m17n.org>
19243
19244 * international/characters.el: Enable the correct case setting for
19245 dotless-i and dotted-I.
19246
19247 2005-04-01 Kim F. Storm <storm@cua.dk>
19248
19249 * ido.el (ido-file-internal): Fall back to non-ido command if
19250 initial directory is on slow ftp (or tramp) host.
19251
19252 2005-03-31 Richard M. Stallman <rms@gnu.org>
19253
19254 * emacs-lisp/autoload.el (make-autoload):
19255 Handle define-global-minor-mode.
19256
19257 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
19258 Rename from easy-mmode-define-global-mode.
19259 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
19260
19261 * progmodes/scheme.el (scheme-mode-syntax-table):
19262 Update syntax of | and # for two-character comment syntax.
19263
19264 2005-03-31 Lute Kamstra <lute@gnu.org>
19265
19266 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
19267 (define-minor-mode): Call custom-current-group at load-time.
19268
19269 * generic.el (define-generic-mode): Add debug declaration.
19270 Add defcustom for the mode hook.
19271 (generic-mode-internal): Use run-mode-hooks.
19272
19273 2005-03-31 Kim F. Storm <storm@cua.dk>
19274
19275 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
19276 (mouse-fixup-help-message): New defun called by show_help_echo
19277 to fixup mouse-2 prefix in help messages when applicable.
19278
19279 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
19280
19281 2005-03-31 Kenichi Handa <handa@m17n.org>
19282
19283 * language/thai-word.el (thai-find-word-ends): Pay attention to
19284 the case that we reach the end of buffer.
19285
19286 * textmodes/fill.el (fill-text-properties-at): New function.
19287 (fill-newline): Use fill-text-properties-at instead of
19288 text-properties-at.
19289
19290 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
19291
19292 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
19293 not comint-quote-filename.
19294
19295 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
19296
19297 * help-fns.el (help-with-tutorial): Revert last change.
19298
19299 2005-03-31 Kim F. Storm <storm@cua.dk>
19300
19301 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
19302
19303 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
19304
19305 * calendar/cal-china.el: Update reference to "Calendrical
19306 Calculations" book; there's a new edition.
19307 * calendar/cal-coptic.el: Likewise.
19308 * calendar/cal-french.el: Likewise.
19309 * calendar/cal-hebrew.el: Likewise.
19310 * calendar/cal-islam.el: Likewise.
19311 * calendar/cal-iso.el: Likewise.
19312 * calendar/cal-julian.el: Likewise.
19313 * calendar/cal-mayan.el: Likewise.
19314 * calendar/cal-persia.el: Likewise.
19315 * calendar/calendar.el: Likewise.
19316 * calendar/holidays.el: Likewise.
19317 * calendar/lunar.el: Likewise.
19318 * calendar/solar.el: Likewise.
19319
19320 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
19321 white space from doc string.
19322
19323 2005-03-30 Jay Belanger <belanger@truman.edu>
19324
19325 * calc/calc-help.el (calc-full-help): Remove email address.
19326
19327 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
19328
19329 * help-fns.el (help-with-tutorial): Delete title line.
19330
19331 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
19332
19333 * calendar/cal-x.el (calendar-one-frame-setup)
19334 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
19335 rather than `symbol' for set-window-dedicated-p.
19336
19337 * calendar/appt.el (appt-buffer-name): Make it a constant.
19338 (appt-add): Doc fix.
19339
19340 * filesets.el (filesets-menu-path, filesets-menu-before)
19341 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
19342 (filesets-menu-cache-file): Use directory ~/.emacs.d.
19343 (filesets-add-submenu): Delete and use add-submenu instead.
19344
19345 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
19346
19347 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
19348 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
19349 (org-diary-default-entry): New function.
19350 (org-get-entries-from-diary): Better parsing of diary entries.
19351 (org-agenda-check-no-diary): New function.
19352 ("diary-lib"): Advice to function `add-to-diary-list', to allow
19353 linking to diary entries.
19354 (org-agenda-execute-calendar-command): New function.
19355 (org-agenda): Improve visible section in window.
19356 Use `org-fit-agenda-window'.
19357 (org-fit-agenda-window): New option.
19358 (org-move-subtree-down): Better handling of empty lines
19359 at end of subtree.
19360 (org-cycle): Numeric prefix is interpreted now as show-subtree N
19361 levels up.
19362 (org-fontify-done-headline): New option.
19363 (org-headline-done-face): New face.
19364 (org-set-font-lock-defaults): Use `org-headline-done-face'.
19365 (org-table-copy-down): Rename from `org-table-copy-from-above'.
19366 When current field is non-empty, it is copied to next row.
19367 (org-table-copy-from-above): Fix bug which made it
19368 impossible to copy fields containing only a single non-white character.
19369
19370 2005-03-30 Kim F. Storm <storm@cua.dk>
19371
19372 * kmacro.el (kmacro-end-macro): Isearch may store this command
19373 into the macro -- so ignore it when executing keyboard macro.
19374
19375 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
19376
19377 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
19378
19379 2005-03-29 Kenichi Handa <handa@m17n.org>
19380
19381 * language/thai.el ("Thai"): Set setup-function and exit-function
19382 for Thai language environment.
19383
19384 * language/thai-util.el: Require thai-word.
19385 (thai-word-mode-map): New variable.
19386 (thai-word-mode): New minor mode.
19387 (setup-thai-language-environment-internal): New function.
19388 (exit-thai-language-environment-internal): New function.
19389
19390 * language/thai-word.el (thai-word-table): Declare it by defvar,
19391 use dolist to initialize it.
19392 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
19393 (thai-fill-find-break-point): New functions.
19394
19395 2005-03-29 Richard M. Stallman <rms@gnu.org>
19396
19397 * simple.el (idle-update-delay): Move definition up.
19398 (set-mark): Doc fix.
19399
19400 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
19401
19402 * longlines.el: New file.
19403
19404 * simple.el (buffer-substring-filters): New variable.
19405 (filter-buffer-substring): New function.
19406 (kill-region, copy-region-as-kill): Use it.
19407
19408 * register.el (copy-to-register, append-to-register)
19409 (prepend-to-register): Use filter-buffer-substring.
19410
19411 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
19412
19413 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
19414 (gud-filter-pending-text): Move in front of gdb.
19415 (gud-overlay-arrow-position): New variable.
19416 (gud-sentinel, gud-display-line): Use it in place of
19417 overlay-arrow-position.
19418
19419 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
19420
19421 * progmodes/fortran.el (fortran-if-indent): Doc fix.
19422 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
19423 (fortran-font-lock-keywords-4): New variable.
19424 (fortran-blocks-re, fortran-end-block-re)
19425 (fortran-start-block-re): New constants, for hideshow.
19426 (hs-special-modes-alist): Add a Fortran entry.
19427 (fortran-mode-map): Bind fortran-end-of-block,
19428 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
19429 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
19430 (fortran-looking-at-if-then, fortran-end-of-block)
19431 (fortran-beginning-of-block): New functions, for hideshow.
19432
19433 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
19434 Doc fix. Tweak regexp.
19435 (f90-beginning-of-block): Push mark first.
19436
19437 2005-03-29 Jay Belanger <belanger@truman.edu>
19438
19439 * calc/calc.el: Update copyright date.
19440 (calc-version): Increase to 2.1.
19441 (calc-version-date): Remove.
19442
19443 * calc/calc-help.el: Update copyright date.
19444 (calc-full-help): Remove reference to calc-version-date.
19445 Update copyright date.
19446
19447 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
19448
19449 * vc.el (vc-do-command): Use a pipe for async processes, so password
19450 prompts don't show up at places where the user can't reply.
19451
19452 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
19453
19454 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
19455 on the file name we pass to the inferior shell.
19456
19457 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
19458
19459 * progmodes/which-func.el (which-function): Be robust in the face of an
19460 imenu--make-index-alist failure.
19461
19462 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
19463
19464 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
19465
19466 * progmodes/python.el (python-preoutput-filter): Fix last change.
19467
19468 2005-03-29 Lute Kamstra <lute@gnu.org>
19469
19470 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
19471 functions and compiled macros.
19472 (debug-convert-byte-code): Handle macros too.
19473 (debug-on-entry-1): Don't signal an error when trying to clear a
19474 function that is not set to debug on entry.
19475
19476 2005-03-29 Jay Belanger <belanger@truman.edu>
19477
19478 * calc/calc-lang.el: Add functions to math-function-table
19479 properties of tex and math.
19480
19481 2005-03-29 Kenichi Handa <handa@m17n.org>
19482
19483 * ps-mule.el (ps-mule-plot-string): Translate characters by
19484 ps-print-translation-table.
19485 (ps-mule-begin-job): Call find-charset-region/string with
19486 ps-print-translation-table.
19487 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
19488
19489 * ps-print.el (ps-print-translation-table): New variable.
19490 (ps-plot-region): Translate characters by ps-print-translation-table.
19491
19492 2005-03-29 Juri Linkov <juri@jurta.org>
19493
19494 * simple.el (next-error-highlight-timer): New variable.
19495
19496 * progmodes/compile.el (compilation-goto-locus):
19497 Use `next-error-highlight-timer' instead of `sit-for'.
19498
19499 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
19500
19501 * mail/supercite.el (sc-mail-field): Use assoc-string.
19502 (sc-get-address): Simplify regexps.
19503
19504 * files.el (minibuffer-with-setup-hook): New macro.
19505 (find-file-read-args): Use it to avoid let-binding
19506 minibuffer-with-setup-hook (which breaks turning on/off
19507 file-name-shadow-mode while in the prompt).
19508
19509 * complete.el (PC-read-include-file-name-internal):
19510 Use test-completion.
19511
19512 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
19513
19514 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
19515
19516 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
19517
19518 * window.el (window-buffer-height): Use count-screen-lines.
19519
19520 * progmodes/python.el (python-preoutput-leftover): New var.
19521 (python-preoutput-filter): Use it.
19522 (python-send-receive): Loop until all the result has been received.
19523
19524 2005-03-28 Juri Linkov <juri@jurta.org>
19525
19526 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
19527
19528 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
19529 "Recover Crashed Session".
19530 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
19531 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
19532 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
19533 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
19534 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
19535 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
19536 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
19537 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
19538
19539 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
19540 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
19541 Ediff Sessions", "Toggle use of separate control buffer frame",
19542 "Use separate frame for Ediff control buffer".
19543
19544 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
19545 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
19546 "Rename Bookmark", "Delete Bookmark".
19547
19548 * info.el (Info-mode-menu): Remove ellipsis from "Index".
19549 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
19550 Add `:active Info-index-alternatives' to "Next Matching Item".
19551
19552 * wdired.el (wdired-change-to-wdired-mode):
19553 Mention `wdired-abort-changes' key in the initial message.
19554
19555 * international/mule.el (auto-coding-alist): Associate non-ascii
19556 image filename extensions with `no-conversion'.
19557
19558 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
19559
19560 * international/iso-acc.el:
19561 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
19562
19563 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
19564
19565 * textmodes/sgml-mode.el (html-mode): Doc update.
19566
19567 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
19568
19569 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
19570
19571 * term.el (term-move-columns): Fix face after extending a line.
19572 (term-insert-spaces): Likewise.
19573 (term-reset-terminal): Fix off by one error.
19574
19575 2005-03-26 Eli Zaretskii <eliz@gnu.org>
19576
19577 * international/mule.el (auto-coding-alist): Add .xpi files.
19578
19579 * files.el (auto-mode-alist): Add .xpi files.
19580
19581 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
19582
19583 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
19584
19585 2005-03-26 Eli Zaretskii <eliz@gnu.org>
19586
19587 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
19588
19589 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
19590
19591 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
19592 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
19593
19594 * calendar/cal-move.el (calendar-beginning-of-year): Move the
19595 cursor to Jan 1 when needed.
19596 (calendar-end-of-year): Fix -/+ typo.
19597 Reported by Chong Yidong <cyd@stupidchicken.com>.
19598
19599 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
19600
19601 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
19602
19603 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
19604 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
19605
19606 2005-03-25 Richard M. Stallman <rms@gnu.org>
19607
19608 * filesets.el (filesets-init): Add autoload.
19609
19610 * mail/mailalias.el (mail-directory): Doc fix.
19611
19612 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
19613
19614 * mail/mailalias.el (mail-directory-process): Do nothing if
19615 mail-directory-process is an atom.
19616 (mail-get-names): Ignore mail-directory-names if it is an atom.
19617 (mail-directory-process defvar): Doc fix.
19618 (mail-names): Doc fix.
19619
19620 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
19621
19622 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
19623
19624 2005-03-26 Kenichi Handa <handa@m17n.org>
19625
19626 * international/mule-util.el (detect-coding-with-priority):
19627 Call update-coding-systems-internal before detect-coding-region.
19628
19629 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
19630
19631 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
19632 (gdb-frames-mode-map): Add follow-link property.
19633
19634 2005-03-25 Jay Belanger <belanger@truman.edu>
19635
19636 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
19637 for variables.
19638
19639 2005-03-25 Juri Linkov <juri@jurta.org>
19640
19641 * image-mode.el: Optimize image filename extension regexps in
19642 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
19643 in `auto-mode-alist'.
19644 (image-mode): Add `image-toggle-display-text' to local hook
19645 `change-major-mode-hook'. Display the image as an image by
19646 default. Set `cursor-type' and `truncate-lines' if the image
19647 is already displayed. Take into account the current mode (image
19648 or text) in message.
19649 (image-minor-mode): New minor mode.
19650 (image-mode-maybe, image-toggle-display-text): New functions.
19651 (image-toggle-display): Use called-interactively-p.
19652 Let-bind `inhibit-read-only' to t.
19653
19654 * image-mode.el (image-minor-mode): Set `cursor-type' and
19655 `truncate-lines' if the image is already displayed. Add turning
19656 image-minor-mode off to `change-major-mode-hook'. Add message.
19657 Call `image-toggle-display-text' after turning image-minor-mode off.
19658
19659 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
19660
19661 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
19662 Terminal.app, use utf-8.
19663 (set-display-table-and-terminal-coding-system): Add coding-system arg.
19664 (set-locale-environment): Use it.
19665
19666 * term/xterm.el: Undo last change, better done in mule-cmds.el.
19667
19668 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
19669
19670 * progmodes/python.el (python-close-block-statement-p)
19671 (python-outdent-p, python-current-defun): Use symbol-end.
19672
19673 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
19674
19675 * files.el (save-some-buffers): Doc fix.
19676
19677 2005-03-25 Werner Lemberg <wl@gnu.org>
19678
19679 * complete.el, thumbs.el: Replace `legal' with `valid'.
19680 * calendar/calendar.el: Replace `legal' with `valid'.
19681 * emacs-lisp/advice.el: Replace `legal' with `valid'.
19682 * mail/supercite.el: Replace `legal' with `valid'.
19683 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
19684 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
19685 Replace `legal' with `valid'.
19686 * textmodes/reftex-vars.el, textmodes/reftex.el:
19687 Replace `legal' with `valid'.
19688
19689 2005-03-25 Werner Lemberg <wl@gnu.org>
19690
19691 * calc/calc-forms.el, calc/calc-sel.el
19692 * midnight.el, vc-cvs.el
19693 * emacs-lisp/cl-macs.el
19694 * emulation/vip.el
19695 * eshell/esh-io.el, eshell/esh-var.el
19696 * mail/supercite.el
19697 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
19698 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
19699 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
19700 * progmodes/sh-script.el, progmodes/xscheme.el
19701 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
19702 * textmodes/reftex-index.el, textmodes/reftex-parse.el
19703 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
19704 * textmodes/reftex.el, textmodes/org.el:
19705 Replace `illegal' with `invalid'.
19706
19707 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
19708
19709 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
19710 (flymake-find-buildfile, flymake-find-possible-master-files)
19711 (flymake-check-include, flymake-parse-line): Replace loops over the
19712 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
19713
19714 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
19715 Substitute file-name-as-directory in the rest of the file.
19716 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
19717 (flymake-replace-region): Remove unused arg `buffer'.
19718 (flymake-check-patch-master-file-buffer): Update calls to it.
19719 (flymake-add-err-info): Remove unused var `count'.
19720 (flymake-mode): Use define-minor-mode.
19721
19722 * progmodes/flymake.el: Use with-current-buffer.
19723 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
19724 flymake-replace-regexp-in-string, flymake-line-beginning-position)
19725 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
19726 Avoid testing for `xemacs'.
19727 (flymake-nop): Move.
19728 (flymake-region-has-flymake-overlays): Return the computed value.
19729 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
19730 Remove unused var `endline'.
19731 (flymake-get-line-count): Remove unused function.
19732 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
19733
19734 * emulation/vi.el:
19735 * generic.el:
19736 * hilit-chg.el (global-highlight-changes):
19737 * hi-lock.el (hi-lock-mode):
19738 * follow.el: find-file-hooks -> find-file-hook.
19739
19740 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
19741
19742 2005-03-24 Juri Linkov <juri@jurta.org>
19743
19744 * dired.el (dired-mode-map): Add menu item "Compare directories"
19745 for dired-compare-directories.
19746
19747 * dired-aux.el (dired-compare-directories): Add autoload cookie.
19748 Doc fix. Replace `read-file-name' with `read-directory-name'.
19749
19750 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
19751
19752 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
19753
19754 2005-03-24 Jay Belanger <belanger@truman.edu>
19755
19756 * calc/calc-embed.el (calc-embedded-mode-change): Save all
19757 relevant mode settings in calc-embedded-original-modes when modes
19758 are permanently changed.
19759
19760 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
19761
19762 * autoinsert.el: find-file-hooks -> find-file-hook.
19763
19764 2005-03-24 Lute Kamstra <lute@gnu.org>
19765
19766 * generic.el (generic-font-lock-defaults): Make it obsolete.
19767 (generic-font-lock-keywords): New variable to replace
19768 generic-font-lock-defaults.
19769 (generic-mode-set-font-lock): Delete it.
19770 (generic-mode-internal): Don't call generic-mode-set-font-lock.
19771 (generic-bracket-support): Add docstring.
19772
19773 * generic-x.el: Rename generic-font-lock-defaults to
19774 generic-font-lock-keywords throughout.
19775 (mailagent-rules-setup-function): Delete it.
19776 (mailagent-rules-generic-mode): Use anonymous function instead.
19777 (show-tabs-generic-mode-font-lock-defaults-1)
19778 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
19779 Quote faces.
19780 (show-tabs-tab-face, show-tabs-space-face): Specify background,
19781 not foreground.
19782
19783 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
19784 Recognize define-generic-mode.
19785
19786 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
19787
19788 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
19789 if there's no completion table.
19790
19791 2005-03-23 Miles Bader <miles@gnu.org>
19792
19793 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
19794 Remove tty-specific variants, as they're no longer needed.
19795
19796 2005-03-23 Lute Kamstra <lute@gnu.org>
19797
19798 * generic-x.el: Code cleanup: make args constant whenever possible.
19799 (installshield-statement-keyword-list)
19800 (installshield-system-functions-list)
19801 (installshield-system-variables-list, installshield-types-list)
19802 (installshield-funarg-constants-list): Make them constants.
19803
19804 * generic.el (generic-make-keywords-list): Add autoload cookie.
19805
19806 * calendar/time-date.el: Add comment on time value formats.
19807 Don't require parse-time.
19808 (with-decoded-time-value): New macro.
19809 (encode-time-value): New function.
19810 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
19811 (days-to-time): Return a valid time value when arg is huge.
19812 (time-since): Use time-subtract.
19813 (time-to-number-of-days): Use time-to-seconds.
19814
19815 2005-03-23 David Ponce <david@dponce.com>
19816
19817 * recentf.el (recentf-keep): New option.
19818 (recentf-menu-action): Default to `find-file'.
19819 (recentf-keep-non-readable-files-flag)
19820 (recentf-keep-non-readable-files-p)
19821 (recentf-file-readable-p, recentf-find-file)
19822 (recentf-cleanup-remote): Remove.
19823 (recentf-include-p): More robust.
19824 (recentf-keep-p): New function.
19825 (recentf-remove-if-non-kept): Rename from
19826 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
19827 All callers updated.
19828 (recentf-menu-items-for-commands): Fix help string.
19829 (recentf-track-closed-file): Update. Doc fix.
19830 (recentf-cleanup): Update. Count removed files. Doc fix.
19831
19832 2005-03-23 Kim F. Storm <storm@cua.dk>
19833
19834 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
19835 Don't inherit from fringe face (now happens automatically).
19836
19837 2005-03-22 Kim F. Storm <storm@cua.dk>
19838
19839 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
19840 position values.
19841
19842 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
19843
19844 * menu-bar.el (showhide-date-time): Remove.
19845 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
19846 (menu-bar-make-mm-toggle): Simplify.
19847
19848 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
19849
19850 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
19851 Accept qualified variable and function names.
19852
19853 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
19854
19855 * bindings.el (completion-ignored-extensions):
19856 Remove ".lis" for `vax-vms'.
19857
19858 2005-03-22 Andreas Schwab <schwab@suse.de>
19859
19860 * generic-x.el: Revert last change.
19861 * ldefs-boot.el: Update.
19862
19863 2005-03-22 Jay Belanger <belanger@truman.edu>
19864
19865 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
19866 (calc-embedded-save-original-modes)
19867 (calc-embedded-restore-original-modes): New functions.
19868 (calc-do-embedded): Save original modes when entering embedded mode
19869 and restore when leaving embedded mode.
19870 (calc-embedded-modes-change): Change the value of
19871 calc-embedded-original-modes to reflect permanent changes.
19872
19873 2005-03-22 Lute Kamstra <lute@gnu.org>
19874
19875 * generic-x.el: Require generic again.
19876
19877 2005-03-22 Miles Bader <miles@gnu.org>
19878
19879 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
19880 Tweak details to look good on both ttys and bitmap displays, light
19881 or dark background, etc.
19882
19883 2005-03-21 Kim F. Storm <storm@cua.dk>
19884
19885 * tooltip.el (tooltip-show-help-function): Check car and cdr of
19886 mouse position.
19887
19888 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
19889
19890 * icomplete.el: Don't forcibly turn on the mode upon load.
19891 (icomplete-mode): Use define-minor-mode.
19892 (icomplete-eoinput): Default to nil.
19893 (icomplete-minibuffer-setup): Remove autoload.
19894 (icomplete-tidy): Simplify.
19895 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
19896 in the initial state or if the user has modified the field.
19897 Fix handling of icomplete-max-delay-chars.
19898 Remove code that handles the oddball case where
19899 minibuffer-completion-table is an integer.
19900 Wrap icomplete-completions in while-no-input in case building
19901 completions takes more time than expected.
19902 (icomplete-completions): Simplify.
19903
19904 2005-03-21 Richard M. Stallman <rms@gnu.org>
19905
19906 * jka-compr.el (jka-compr-really-do-compress):
19907 Make variable buffer-local.
19908
19909 * image-mode.el: Handle .xpm files too.
19910 (image-toggle-display): Preserve modification flag.
19911
19912 * help.el (where-is): Don't mention aliases with no key bindings.
19913
19914 2005-03-21 Lute Kamstra <lute@gnu.org>
19915
19916 * generic.el: Fix commentary section. Don't require cl for
19917 compilation.
19918 (generic-mode-list): Add autoload cookie.
19919 (generic-use-find-file-hook, generic-lines-to-scan)
19920 (generic-find-file-regexp, generic-ignore-files-regexp)
19921 (generic-mode, generic-mode-find-file-hook)
19922 (generic-mode-ini-file-find-file-hook): Fix docstrings.
19923 (define-generic-mode): Make it a defmacro. Fix docstring.
19924 (generic-mode-internal): Code cleanup. Add autoload cookie.
19925 (generic-mode-set-comments): Code cleanup.
19926 * generic-x.el: Don't prevent compilation. Don't require generic.
19927 Follow coding conventions. Minor code cleanup.
19928 (etc-fstab-generic-mode): Add some keywords.
19929 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
19930 define-generic-mode like a function declaration.
19931
19932 2005-03-21 Jay Belanger <belanger@truman.edu>
19933
19934 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
19935 changing modes.
19936
19937 2005-03-21 Sam Steingold <sds@gnu.org>
19938
19939 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
19940
19941 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
19942
19943 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
19944 Add underscore to "f$ lexicals" regexp.
19945
19946 2005-03-20 Juri Linkov <juri@jurta.org>
19947
19948 * subr.el (progress-reporter-do-update): When `min-value' is equal
19949 to `max-value', set `percentage' to 0 and prevent division by zero.
19950
19951 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
19952
19953 Sync with Tramp 2.0.48.
19954
19955 * net/tramp.el (all): Change all addresses to .gnu.org.
19956 (tramp-append-tramp-buffers): New defun.
19957 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
19958 Catch `dont-send' signal.
19959 (tramp-set-auto-save-file-modes): Set always permissions, because
19960 there might be an old auto-saved file belonging to another
19961 original file. This could be a security threat. Reported by
19962 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
19963 Check for Emacs 21.3.50 removed.
19964
19965 * net/tramp-smb.el (all): Remove debug construct for
19966 `with-parsed-tramp-file-name'.
19967 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
19968 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
19969 No error message if DIRECTORY or FILENAME doesn't exist.
19970 (tramp-smb-open-connection): Check existence of
19971 `tramp-smb-program'.
19972
19973 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
19974
19975 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
19976 Properly handle the case where the `m' or `s' command's argument is not
19977 yet terminated.
19978 (perl-indent-new-calculate): New function.
19979 (perl-indent-line): Use it.
19980
19981 2005-03-20 Miles Bader <miles@gnu.org>
19982
19983 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
19984 in text-mode too. Change to new face names.
19985 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
19986 Add `:weight bold' attribute.
19987 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
19988
19989 2005-03-19 Juri Linkov <juri@jurta.org>
19990
19991 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
19992
19993 * international/mule.el (auto-coding-alist): Sync with
19994 `auto-mode-alist' by adding upper case archive file extensions
19995 and adding ear/war to jar extension.
19996
19997 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
19998
19999 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
20000 running, restart it.
20001
20002 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
20003
20004 * finder.el (finder-current-item): Throw an error on an empty line.
20005
20006 * man.el (Man-follow-manual-reference): If current-word returns
20007 nil, use "".
20008
20009 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
20010
20011 * simple.el (goto-line): Doc fix.
20012
20013 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
20014
20015 * files.el (save-buffer): Doc fix.
20016
20017 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
20018
20019 * recentf.el (recentf-cleanup-remote): New variable.
20020 (recentf-cleanup): Use it to conditionally check availability of
20021 remote files.
20022
20023 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
20024
20025 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
20026 function names.
20027
20028 2005-03-19 Eli Zaretskii <eliz@gnu.org>
20029
20030 * language/thai-word.el: New file.
20031
20032 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
20033
20034 * files.el (backup-buffer): If the file's directory is not
20035 writable, use copy instead of move to backup the file.
20036
20037 2005-03-19 Eli Zaretskii <eliz@gnu.org>
20038
20039 * obsolete/keyswap.el: Moved to obsolete/ from term/.
20040
20041 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20042
20043 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
20044 Use functionp instead of symbolp and fboundp. Reported by Drkm
20045 <darkman_spam@yahoo.fr>.
20046 (ps-print-version): New version 6.6.6.
20047
20048 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
20049
20050 * textmodes/table.el (table--line-column-position): New idiom.
20051 (table--row-column-insertion-point-p): New function to test
20052 validity of row and column insertion operation at a location.
20053 (table-global-menu, table-cell-menu): Use above functions for
20054 deterministic test operation.
20055 (table--editable-cell-p): Behave in deterministic fashion.
20056
20057 2005-03-18 Juri Linkov <juri@jurta.org>
20058
20059 * isearch.el (isearch-lazy-highlight-new-loop):
20060 Make arguments beg and end optional.
20061 (isearch-update): Remove optional arguments nil from
20062 isearch-lazy-highlight-new-loop.
20063 (isearch-lazy-highlight-search): Let-bind case-fold-search to
20064 isearch-lazy-highlight-case-fold-search instead of
20065 isearch-case-fold-search, and let-bind isearch-regexp to
20066 isearch-lazy-highlight-regexp.
20067 Use isearch-lazy-highlight-last-string instead of isearch-string.
20068
20069 * replace.el (perform-replace): Remove bindings of global
20070 variables isearch-string, isearch-regexp, isearch-case-fold-search.
20071 Add three new arguments to `replace-highlight'.
20072 (replace-highlight): Add arguments string, regexp, case-fold.
20073 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
20074 to allow isearch-lazy-highlight-new-loop to use these values
20075 to set corresponding isearch-lazy-highlight-* internal
20076 variables whose values lazy highlighting will use regardless of
20077 changes to global variables isearch-string, isearch-regexp,
20078 isearch-case-fold-search during lazy highlighting loop.
20079 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
20080 to `lazy-highlight-cleanup'.
20081
20082 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
20083 (ispell-highlight-face): Set default face to `isearch' when
20084 lazy highlighting is enabled.
20085 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
20086 priority to 1. Add lazy highlighting.
20087 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
20088 from `isearch-dehighlight'.
20089
20090 2005-03-18 David Ponce <david@dponce.com>
20091
20092 * files.el (hack-local-variables): Do a case-insensitive search
20093 for End.
20094
20095 2005-03-18 Juri Linkov <juri@jurta.org>
20096
20097 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
20098 `isearch-lazy-highlight-cleanup', add alias to old name and
20099 declare obsolete. Add release numbers to other obsolete vars.
20100 (isearch-done, isearch-lazy-highlight-new-loop):
20101 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
20102 (lazy-highlight-cleanup) <variable>: Doc fix.
20103 (isearch-lazy-highlight-update): Rename obsolete
20104 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
20105
20106 2005-03-18 Kenichi Handa <handa@m17n.org>
20107
20108 * language/thai-util.el: Fix categorization of Thai characters in
20109 thai-category-table.
20110 (thai-composition-pattern): Adjust it for the above change.
20111 (thai-self-insert-command, thai-compose-syllable): New functions.
20112 (thai-compose-region): Use thai-compose-syllable.
20113 (thai-compose-string): Likewise.
20114 (thai-composition-function): Likewise.
20115 (thai-auto-composition): New function.
20116 (thai-auto-composition-mode): New minor mode.
20117
20118 * language/thai.el: Fix patterns to be registered in
20119 composition-function-table.
20120
20121 * international/quail.el (quail-input-method): Locally bind
20122 inhibit-modification-hooks to t.
20123
20124 2005-03-17 Richard M. Stallman <rms@gnu.org>
20125
20126 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
20127 (perl-mode): Use run-mode-hooks.
20128
20129 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
20130 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
20131 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
20132
20133 * mail/sendmail.el (sendmail-send-it): Reenable the code
20134 to compute resend-to-address and use it.
20135
20136 * tar-mode.el (tar-mode): Turn off undo unconditionally.
20137
20138 * image-mode.el: New file.
20139
20140 * image.el (insert-sliced-image): Add autoload cookie.
20141
20142 * font-lock.el (font-lock-lines-before): New user option.
20143 (font-lock-after-change-function): Obey it.
20144
20145 * bindings.el (esc-map): Make M-g a prefix.
20146 Bind M-g g and M-g M-g to goto-line.
20147
20148 * faces.el (face-id): Doc fix.
20149
20150 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
20151
20152 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
20153 (rmail-show-message): Use rmail-unknown-mail-followup-to.
20154 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
20155
20156 * mail/sendmail.el (mail-yank-ignored-headers)
20157 (mail-font-lock-keywords, mail-mode-fill-paragraph):
20158 Add Mail-Followup-To and Mail-Reply-To headers.
20159 (mail-citation-hook): Add autoload cookie.
20160 (mail-mode): Doc fix.
20161 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
20162 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
20163 (mail-mode-fill-paragraph): Handle those headers.
20164 (mail-mailing-lists): New variable.
20165 (mail-mail-reply-to, mail-mail-followup-to): New functions.
20166
20167 2005-03-17 Juri Linkov <juri@jurta.org>
20168
20169 * isearch.el (isearch-fallback): Check for `(car previous)'
20170 before calling `isearch-other-end-state'.
20171
20172 2005-03-17 Kim F. Storm <storm@cua.dk>
20173
20174 * simple.el (move-beginning-of-line): Move to beginning of buffer
20175 line, as well as beginning of screen line.
20176
20177 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
20178
20179 * calendar/diary-lib.el (mark-diary-entries): Use new optional
20180 argument REDRAW rather than calendar-redrawing variable.
20181 * calendar/calendar.el (calendar-redrawing): Delete.
20182 (redraw-calendar): Do not bind calendar-redrawing.
20183
20184 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
20185
20186 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
20187 diary-file buffer.
20188
20189 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
20190
20191 * help.el (describe-mode): Allow a :minor-mode-function property to
20192 specify a different minor mode toggle function than the variable.
20193 * simple.el (auto-fill-function):
20194 * subr.el (add-minor-mode): Use it.
20195
20196 2005-03-16 Kenichi Handa <handa@m17n.org>
20197
20198 * language/ethio-util.el (sera-being-called-by-w3): New variable.
20199 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
20200 (ethio-fidel-to-sera-buffer): Likewise.
20201
20202 2005-03-16 Juri Linkov <juri@jurta.org>
20203
20204 * emacs-lisp/find-func.el (find-function-regexp):
20205 Add defun-emitting macro `menu-bar-make-toggle'.
20206
20207 * isearch.el: Put `isearch-scroll' property to
20208 `split-window-horizontally'.
20209
20210 * info.el: Update error messages for `debug-ignored-errors'.
20211 (Info-isearch-search): Doc fix.
20212 (Info-find-node): Move up code to go into info buffer before
20213 recording the node to the history.
20214 (Info-fontify-node): Fontify titles only if the next line
20215 has two or more `*', `=', `-', `.'.
20216 Display "go to this node" for empty (match-string 3).
20217
20218 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20219
20220 * term/mac-win.el: Add mouse pointer shape constants.
20221
20222 2005-03-15 Kim F. Storm <storm@cua.dk>
20223
20224 * simple.el (move-beginning-of-line): Use vertical-motion.
20225
20226 2005-03-15 Juri Linkov <juri@jurta.org>
20227
20228 * isearch.el (isearch-error): New variable.
20229 (isearch-invalid-regexp, isearch-within-brackets): Remove.
20230 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
20231 (isearch-within-brackets-state): Remove.
20232 (isearch-case-fold-search-state, isearch-pop-fun-state):
20233 Decrease frame index.
20234 (isearch-mode, isearch-top-state, isearch-push-state)
20235 (isearch-edit-string, isearch-abort, isearch-search-and-update)
20236 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
20237 (isearch-search, isearch-lazy-highlight-new-loop):
20238 Replace `isearch-invalid-regexp' with `isearch-error'.
20239 Remove `isearch-within-brackets'.
20240 (isearch-search): Add `search-failed' handler to `condition-case'.
20241 (isearch-lazy-highlight-search): Add `condition-case' to catch
20242 errors and allow `isearch-lazy-highlight-update' to try
20243 highlighting from the beginning of the window.
20244 (isearch-repeat): Move up code to set isearch-wrapped to t
20245 before calling isearch-wrap-function.
20246
20247 * info.el (Info-isearch-initial-node): New internal variable.
20248 (Info-search): Signal an error in isearch mode when search leaves
20249 the initial node. Signal an error when `bound' is non-nil and
20250 nothing was found in the current subfile.
20251 (Info-isearch-search): Remove `condition-case'.
20252 (Info-isearch-wrap): Don't wrap when search failed during leaving
20253 the initial node. If `Info-isearch-search' is nil, wrap around
20254 the current node.
20255 (Info-isearch-start): New fun.
20256 (Info-mode): Add buffer-local hook `Info-isearch-start' to
20257 `isearch-mode-hook'.
20258
20259 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20260
20261 * simple.el (normal-erase-is-backspace): Set default to t if
20262 running on Mac.
20263
20264 * term/mac-win.el (function-key-map): Sync with x-win.el.
20265
20266 2005-03-15 Kenichi Handa <handa@m17n.org>
20267
20268 * international/mule-cmds.el (locale-language-names): Modify the
20269 format of elements and add more entries.
20270 (locale-preferred-coding-systems): Add more entries.
20271 (set-locale-environment): Adjust for the change of
20272 locale-language-names.
20273
20274 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
20275
20276 * pcvs.el (smerge-ediff): Remove bogus autoload.
20277
20278 2005-03-14 Lute Kamstra <lute@gnu.org>
20279
20280 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
20281 Ignore a `*' at the beginning of a line.
20282
20283 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
20284 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
20285 subr.el.
20286 (dont-compile, eval-when-compile, eval-and-compile): Use declare
20287 to specify indentation.
20288
20289 * generic.el (define-generic-mode): Let generic-mode-list be a
20290 list of strings; test membership with equal.
20291
20292 2005-03-14 Kim F. Storm <storm@cua.dk>
20293
20294 * simple.el (next-line, previous-line): Add optional try-vscroll
20295 arg to recognize interactive use. Pass it on to line-move.
20296 (line-move): Don't perform auto-window-vscroll when defining or
20297 executing keyboard macro to ensure consistent behavior.
20298
20299 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
20300
20301 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
20302
20303 2005-03-13 Lute Kamstra <lute@gnu.org>
20304
20305 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
20306 debugger-setup-buffer so that backtrace marks the frames set to
20307 debug-on-exit and we don't have to do it manually. Set an extra
20308 debug-on-exit for macro's.
20309 (debugger-setup-buffer): Don't mark the top frame manually.
20310
20311 2005-03-12 Lute Kamstra <lute@gnu.org>
20312
20313 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
20314 lisp-indent-function throughout.
20315 (with-no-warnings): Set lisp-indent-function property.
20316
20317 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
20318
20319 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
20320 Add entry for backslash.
20321
20322 2005-03-12 Juri Linkov <juri@jurta.org>
20323
20324 * info.el (Info-search): Four fixes for backward search.
20325
20326 2005-03-11 Jay Belanger <belanger@truman.edu>
20327
20328 * calc/calc.el (calc-language-alist): New variable.
20329 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
20330 (calc-embedded-find-modes): Use calc-language-alist instead of
20331 calc-embedded-language-alist.
20332
20333 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
20334
20335 * calendar/calendar.el (calendar-redrawing): New internal
20336 variable.
20337 (redraw-calendar): Remove bogus save-excursion from previous
20338 change. Bind calendar-redrawing to t for mark-diary-entries.
20339 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
20340 calendar if that is why we were called.
20341
20342 2005-03-11 Kenichi Handa <handa@m17n.org>
20343
20344 * international/mule.el (make-coding-system): Set property
20345 coding-system-define-form to nil.
20346 (define-coding-system-alias): Likewise.
20347
20348 2005-03-11 Kenichi Handa <handa@m17n.org>
20349
20350 These changes are suggested by Dave Love <fx@gnu.org>.
20351
20352 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
20353 coding: tag.
20354 (adaptive-fill-regexp): Add more bullets.
20355 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
20356 regexps.
20357
20358 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
20359
20360 * help.el (describe-mode): Properly handle non-trivial lighters.
20361 Don't ignore minor modes that are not listed in minor-mode-list.
20362
20363 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
20364 feature ON when the user requests to turn it OFF.
20365
20366 2005-03-10 Lute Kamstra <lute@gnu.org>
20367
20368 * emacs-lisp/debug.el (debug-entry-code): Delete it.
20369 (implement-debug-on-entry): New function to replace debug-entry-code.
20370 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
20371 second argument as the 2005-03-07 change makes it obsolete.
20372 (debug-on-entry, cancel-debug-on-entry): Update call to
20373 debug-on-entry-1.
20374 (debug, debugger-setup-buffer): Comment update.
20375 (debugger-frame-number): Update to work with implement-debug-on-entry.
20376
20377 2005-03-10 Jay Belanger <belanger@truman.edu>
20378
20379 * calc/calc-embed.el (math-ms-args): Declare it.
20380 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
20381 math-ms-args.
20382 (calc-embedded-subst): Use math-multi-subst-rec to substitute
20383 variables.
20384
20385 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
20386
20387 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
20388 Use message-box.
20389
20390 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
20391 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
20392 (tooltip-gud-tips): Simplify.
20393 (tooltip-gud-tips-p): Remove superfluous :set.
20394 (tooltip-gud-modes): Add fortran-mode.
20395 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
20396
20397 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
20398
20399 2005-03-09 Kim F. Storm <storm@cua.dk>
20400
20401 * play/animate.el (animate-place-char): Use forward-line instead
20402 of next-line to improve performance.
20403
20404 2005-03-09 Simon Josefsson <jas@extundo.com>
20405
20406 * net/browse-url.el (browse-url-default-browser): Doc fix.
20407
20408 2005-03-09 Miles Bader <miles@gnu.org>
20409
20410 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
20411 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
20412
20413 2005-03-09 Kenichi Handa <handa@m17n.org>
20414
20415 * international/latin-1.el: Set case and syntax for 255 only if
20416 set-case-syntax-set-multibyte is nil.
20417
20418 * textmodes/ispell.el (ispell-insert-word): New function.
20419 (ispell-word): Use ispell-insert-word to insert a new word.
20420 (ispell-process-line): Likewise.
20421 (ispell-complete-word): Likewise.
20422
20423 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
20424
20425 * calendar/calendar.el (redraw-calendar): Preserve point.
20426 Reported by Matt Hodges <MPHodges@member.fsf.org>.
20427 (calendar-week-start-day): Move after definition of
20428 redraw-calendar. Delete buffer test, since redraw-calendar has
20429 that now.
20430
20431 * calendar/diary-lib.el (mark-diary-entries): Only call
20432 redraw-calendar in the first of any recursive calls.
20433 Reported by Alan Shutko <ats@acm.org>.
20434
20435 2005-03-08 Juri Linkov <juri@jurta.org>
20436
20437 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
20438 (html-horizontal-rule, html-line, html-image, html-checkboxes)
20439 (html-radio-buttons): Add a space before the trailing `/>' where
20440 sgml-xml-mode is non-nil.
20441 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
20442 the subsequent tag of the empty XML tag.
20443 (html-href-anchor): Don't set initial input to "http:".
20444 (html-image): Ask for the image URL and set point inside alt="".
20445 (html-name-anchor): Duplicate the name in the `id' attribute when
20446 sgml-xml-mode is non-nil.
20447 (html-paragraph): Remove \n before <p>.
20448 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
20449 instead of `checked' when sgml-xml-mode is non-nil.
20450
20451 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
20452 Remove 1 space before #RRGGBB to not truncate it on terminal
20453 windows w/o fringes. Remove 1 space between bg and fg examples
20454 to get more space.
20455 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
20456 avoid byte-compile warnings.
20457
20458 * image-file.el (image-file-handler): Put `safe-magic' property to
20459 `image-file-handler'.
20460
20461 * info.el (Info-isearch-search): Emulate word search in
20462 isearching through multiple Info nodes with Info-search.
20463 (Info-isearch-wrap): Allow isearch-word.
20464
20465 2005-03-08 Lute Kamstra <lute@gnu.org>
20466
20467 * emacs-lisp/debug.el (debugger-step-through): Make sure that
20468 stepping into the debugger's code is not possible.
20469 (debugger-jumping-flag): Docstring update.
20470
20471 2005-03-08 Jay Belanger <belanger@truman.edu>
20472
20473 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
20474 embedded mode begins.
20475 (calc-embedded-language-alist): New variable.
20476 (calc-embedded-find-modes): Use calc-embedded-language-alist to
20477 set default language mode.
20478
20479 2005-03-08 Kenichi Handa <handa@m17n.org>
20480
20481 * international/ccl.el (define-ccl-program): Fix docstring about
20482 extra 256 bytes assured for the output buffer.
20483
20484 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
20485 Fix BUFFER_MAGNIFICATION to 2.
20486 (ccl-encode-mule-utf-16be-with-signature): Likewise.
20487
20488 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
20489
20490 * align.el (align-rules-list): Added an alignment rule for CSS
20491 declarations (applies to css-mode and html-mode buffers).
20492
20493 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
20494
20495 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
20496
20497 2005-03-07 Kim F. Storm <storm@cua.dk>
20498
20499 * simple.el (move-beginning-of-line): New command.
20500
20501 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
20502
20503 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
20504
20505 * emulation/cua-base.el: Put CUA move property on move-end-of-line
20506 and move-beginning-of-line.
20507
20508 * apropos.el (apropos-print): Omit command from M-x ... RET.
20509
20510 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
20511
20512 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
20513 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
20514
20515 2005-03-06 Richard M. Stallman <rms@gnu.org>
20516
20517 * bindings.el (esc-map): Bind M-g to goto-line.
20518
20519 * facemenu.el (global-map): Bind M-o, not M-g.
20520
20521 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20522
20523 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
20524 "Open Directory" as for "Open File".
20525
20526 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
20527
20528 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
20529 (push-mark-command): Run activate-mark-hook.
20530
20531 2005-03-06 Richard M. Stallman <rms@gnu.org>
20532
20533 * help-mode.el (help-mode-finish): Don't alter the element
20534 in view-return-to-alist if there already is one.
20535
20536 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
20537 make sure the current buffer is the expected one.
20538
20539 * novice.el (disabled-command-function): Output in *Disabled Command*.
20540 Explicitly ignore non-keyboard events, and explicitly handle C-g.
20541
20542 * textmodes/flyspell.el (flyspell-large-region):
20543 Pass args differently for aspell.
20544
20545 * files.el (mode-require-final-newline): Doc fix.
20546
20547 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
20548
20549 * progmodes/which-func.el (which-function):
20550 Specify NOERROR when calling imenu--make-index-alist.
20551
20552 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
20553
20554 * simple.el (normal-erase-is-backspace): Define default value.
20555
20556 * custom.el (custom-theme-set-variables): Remove unused var
20557 `immediate'.
20558 (custom-reevaluate-setting): Simple function to handle variables
20559 that are defined before their default value can really be
20560 computed.
20561
20562 * startup.el (command-line): Use it for temporary-file-directory,
20563 small-emporary-file-directory, auto-save-file-name-transforms,
20564 blink-cursor-mode, and normal-erase-is-backspace.
20565
20566 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
20567 progress, even with buggy anchored keywords.
20568
20569 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
20570
20571 * simple.el (goto-line): Remove unbalanced final parenthesis.
20572
20573 2005-03-05 Richard M. Stallman <rms@gnu.org>
20574
20575 * simple.el (goto-line): Use a number at point as the default.
20576 With C-u as arg, switch buffers.
20577
20578 2005-03-05 Juri Linkov <juri@jurta.org>
20579
20580 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
20581 with `no-blinking-cursor'.
20582
20583 * startup.el (no-blinking-cursor): New defvar.
20584 (command-line): Add `--no-blinking-cursor' to longopts.
20585 Set `no-blinking-cursor' to t for command line arguments
20586 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
20587 with `no-blinking-cursor' in the condition for calling
20588 `blink-cursor-mode'.
20589
20590 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
20591
20592 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
20593 (menu-bar-options-save): Add blink-cursor-mode.
20594 (menu-bar-options-menu): Add blink-cursor-mode.
20595
20596 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
20597
20598 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
20599 (icalendar-export-file, icalendar-export-region)
20600 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
20601 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
20602
20603 2005-03-04 Lute Kamstra <lute@gnu.org>
20604
20605 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
20606 (debug-function-list): Ditto.
20607
20608 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
20609
20610 * textmodes/texinfmt.el (texinfo-append-refill):
20611 Redefine the types of line to which @refill
20612 is not appended by replacing a search for `@refill\\|@bye' with
20613 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
20614 itemize@refill' bug and the unfilled long lines bug.
20615 (texinfmt-version): Update number and date.
20616
20617 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
20618
20619 * international/code-pages.el (windows-1250, windows-125[2-8])
20620 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
20621
20622 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
20623
20624 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
20625 bound yet.
20626
20627 2005-03-02 Romain Francoise <romain@orebokech.com>
20628
20629 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
20630 buffer after removing limits.
20631 (ibuffer-pop-filter): Ditto.
20632 Update copyright.
20633
20634 2005-03-02 Miles Bader <miles@gnu.org>
20635
20636 * button.el (make-text-button): If the user doesn't specify a
20637 type, use the default. Rewrite to use `add-text-properties' and
20638 plist functions.
20639
20640 2005-03-01 Lute Kamstra <lute@gnu.org>
20641
20642 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
20643 (debugger-jumping-flag): New var.
20644 (debug-entry-code): Use it.
20645 (debugger-jump): Use debugger-jumping-flag and add
20646 debugger-reenable to post-command-hook.
20647 (debugger-reenable): Use debugger-jumping-flag and remove itself
20648 from post-command-hook.
20649 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
20650 debugger-reenable.
20651
20652 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
20653
20654 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
20655 inclusion of "itemize\\|", which may be unnecessary, is certainly
20656 inelegant, and stops refilling in itemize lists when formatting
20657 Japanese Texinfo files to Info.
20658 Update copyright to 2005.
20659
20660 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
20661
20662 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
20663 of an error if GDB can't find the source file.
20664
20665 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
20666
20667 * calendar/calendar.el (redraw-calendar): Work from any buffer,
20668 not just the calendar.
20669
20670 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
20671 first.
20672 (diary-redraw-calendar): New function.
20673 (make-diary-entry): Add diary-redraw-calendar to local
20674 write-contents-functions. Turn off selective display before
20675 inserting in diary.
20676
20677 2005-03-01 Kim F. Storm <storm@cua.dk>
20678
20679 * emacs-lisp/copyright.el (copyright-fix-years): New command.
20680
20681 2005-03-01 Lute Kamstra <lute@gnu.org>
20682
20683 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
20684 that debug-entry-code can be safely removed from a function while
20685 this code is being evaluated. Revert the 2005-02-27 change as the
20686 new implementation no longer requires it. Make sure that a
20687 function body containing just a string is not mistaken for a docstring.
20688 (debug): Skip one more frame in case of debug on entry.
20689 (debugger-setup-buffer): Delete one more frame line in case of
20690 debug on entry.
20691 (debugger-frame-number): Update to use the new text introduced by
20692 the 1999-11-03 change. Skip one more frame in case of debug on entry.
20693
20694 2005-02-28 Kim F. Storm <storm@cua.dk>
20695
20696 * double.el (double-translate-key): Call force-window-update after
20697 read-event to avoid crash in redisplay.
20698
20699 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
20700
20701 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
20702 (debug): Use it. Move the inhibit-trace earlier.
20703 (debug-entry-code): New const.
20704 (debug-on-entry-1): Use it.
20705
20706 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
20707
20708 * international/utf-16.el (ccl-encode-mule-utf-16le):
20709 Fix BUFFER_MAGNIFICATION to 2.
20710 (ccl-encode-mule-utf-16be): Likewise.
20711
20712 2005-02-28 Kenichi Handa <handa@m17n.org>
20713
20714 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
20715 Fix BUFFER_MAGNIFICATION to 4.
20716 (ccl-encode-mule-utf-16be-with-signature): Likewise.
20717
20718 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
20719
20720 * speedbar.el (speedbar-update-flag): Doc fix.
20721 (speedbar-show-info-under-mouse): Give set-mouse-position the right
20722 argument.
20723
20724 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
20725
20726 * reveal.el (reveal-post-command): Don't try to reveal overlays which
20727 have a non-nil `invisible' property but are actually visible.
20728
20729 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
20730 for perldoc sections.
20731 (perl-outline-regexp, perl-outline-level): New var and function.
20732 (perl-mode): Use them.
20733
20734 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
20735
20736 * calendar/diary-lib.el (diary-remind): Discard any mark portion
20737 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
20738
20739 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
20740
20741 * cus-edit.el: Comment change.
20742 (custom-buffer-create-internal): Slightly reword text at top of
20743 Custom buffers. Mention there that saving an option edits the
20744 init file. Add link to Emacs manual node on `custom-file'.
20745 (custom-magic-alist): Rewrite individual State messages to use
20746 capitalized keywords. Doc fix.
20747
20748 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
20749
20750 * calendar/calendar.el (calendar-buffer): Move above
20751 calendar-week-start-day.
20752 (calendar-week-start-day): Doc fix. Add :set function.
20753 (calendar-minimum-window-height): New variable.
20754 (generate-calendar-window): Only resize window if selected-window
20755 is displaying the calendar buffer. Use new variable
20756 calendar-minimum-window-height.
20757 (generate-calendar): Reword error message.
20758 (calendar-mode-map): Bind DEL to scroll-other-window-down.
20759
20760 2005-02-27 Andreas Schwab <schwab@suse.de>
20761
20762 * vc.el (vc-do-command): Don't run command asynchronously when
20763 operating in a remote directory.
20764
20765 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
20766 change from sync with Tramp 2.0.47.
20767
20768 2005-02-27 Richard M. Stallman <rms@gnu.org>
20769
20770 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
20771
20772 * textmodes/flyspell.el (flyspell-mode-on):
20773 Call ispell-change-dictionary only if necessary.
20774
20775 * emacs-lisp/re-builder.el (regexp-builder): New function.
20776
20777 * register.el (describe-register-1): Explicitly handle
20778 yank-excluded-properties = t.
20779
20780 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
20781 (custom-magic-alist): Change the status descriptions again.
20782 (face widget-type): Total rewrite based on `restricted-sexp'
20783 to eliminate the confusing double hiding levels.
20784
20785 * emacs-lisp/debug.el (debug-on-entry-1):
20786 If function body is empty, add nil as body form.
20787
20788 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
20789
20790 * emacs-lisp/trace.el (inhibit-trace): New var.
20791 (trace-make-advice): Use it.
20792
20793 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
20794
20795 2005-02-26 Kim F. Storm <storm@cua.dk>
20796
20797 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
20798 (mouse-on-link-p, mouse-drag-region-1): Use it.
20799
20800 2005-02-25 Lute Kamstra <lute@gnu.org>
20801
20802 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
20803
20804 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
20805
20806 * frame.el (blink-cursor-mode): Add :group keyword.
20807
20808 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
20809
20810 * calendar/icalendar.el (icalendar--decode-isodatetime):
20811 New optional argument DAY-SHIFT.
20812 (icalendar-export-region): Fix coding-system-for-write.
20813 (icalendar--convert-ical-to-diary): Shift end-day of all-day
20814 events by one.
20815
20816 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
20817
20818 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
20819
20820 2005-02-24 Kim F. Storm <storm@cua.dk>
20821
20822 * international/iso-acc.el (iso-accents-compose): Fix crash
20823 during redisplay. Call force-window-update after read-event
20824 and delete-region to signal that window is not accurate.
20825
20826 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
20827
20828 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
20829 Remove unused and inexistent var `inhibit-trace'.
20830 (debugger-mode): Use run-mode-hooks.
20831 (debugger-list-functions): Add buttons; setup xref stack.
20832
20833 2005-02-23 Richard M. Stallman <rms@gnu.org>
20834
20835 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
20836 appointment says it was explicitly made.
20837 (appt-add): Set the 3rd element.
20838 (appt-make-list): Preserve explicit appointments.
20839
20840 * subr.el (find-tag-default): Catch errors in forward-sexp.
20841
20842 2005-02-23 Juri Linkov <juri@jurta.org>
20843
20844 * info.el (Info-isearch-search): New defcustom.
20845 (Info-isearch-search): Call the default isearch function
20846 when Info-isearch-search is nil.
20847 (Info-isearch-wrap): Use variable Info-isearch-search.
20848
20849 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
20850
20851 * cus-edit.el: Comment change.
20852
20853 2005-02-22 Kim F. Storm <storm@cua.dk>
20854
20855 * progmodes/hideif.el (hide-ifdef-use-define-alist):
20856 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
20857
20858 2005-02-22 Simon Josefsson <jas@extundo.com>
20859
20860 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
20861 New variable.
20862 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
20863 Oskarsson" <myrkraverk@users.sourceforget.net>.
20864
20865 2005-02-22 Kim F. Storm <storm@cua.dk>
20866
20867 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
20868 check that window of that event is the selected window.
20869 (mouse-drag-region-1): Compare mouse event window to selected
20870 window before setting point.
20871
20872 * tooltip.el (tooltip-show-help-function): Pass event to
20873 mouse-on-link-p so it can check selected window.
20874
20875 2005-02-22 Kenichi Handa <handa@m17n.org>
20876
20877 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
20878 (ps-mule-show-warning): New function.
20879 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
20880 characters are found.
20881
20882 * ps-print.el (ps-header-footer-string): Return a list of header
20883 and footer strings.
20884
20885 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
20886
20887 * pcvs.el (cvs-retrieve-revision): Fix thinko.
20888
20889 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
20890
20891 * frame.el (blink-cursor-mode): Use define-minor-mode.
20892
20893 * term/mac-win.el (function-key-map): Use char-names more consistently.
20894 (file-name-coding-system): Only set it for MacOS-9. The other case is
20895 already handled in mule-cmds.el (where it also works when mac-win.el
20896 is not used).
20897
20898 2005-02-21 Kenichi Handa <handa@m17n.org>
20899
20900 * international/mule.el (ctext-pre-write-conversion): Always use
20901 " *code-converting-work*" buffer for work.
20902
20903 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
20904
20905 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
20906
20907 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
20908
20909 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
20910
20911 * ses.el (undo-more): Restore defadvice, but only the part that
20912 allows changes outside the restricted area of the buffer.
20913
20914 2005-02-20 Kim F. Storm <storm@cua.dk>
20915
20916 * simple.el (line-move): Add fourth optional arg try-vscroll which
20917 must be set to perform auto-window-vscroll.
20918 When moving backwards and doing auto-window-vscroll, automatically
20919 vscroll to the last part of lines which are taller than the window.
20920 (next-line, previous-line): Set try-vscroll arg on line-move.
20921
20922 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
20923
20924 * replace.el (query-replace, query-replace-regexp)
20925 (replace-string, replace-regexp): When operating on region, make
20926 the minibuffer prompt say so.
20927
20928 * isearch.el (isearch-forward): Document isearch-query-replace and
20929 isearch-query-replace-regexp keybindings.
20930
20931 2005-02-19 Jay Belanger <belanger@truman.edu>
20932
20933 * calc/calc-aent.el (math-read-token): Add local variable.
20934
20935 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
20936 (calc-edit-top): Move declaration to earlier in file.
20937 (calc-edit-macro-repeats): Add local variables.
20938
20939 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
20940 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
20941 calcFunc-tanh.
20942 Adjust integration rule for calcFunc-tan.
20943
20944 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
20945
20946 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
20947 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
20948 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
20949 (viper-skip-separators): Bug fix.
20950 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
20951 particular major mode.
20952 (viper-del-backward-char-in-replace): Don't put deleted char on the
20953 kill ring.
20954
20955 * viper-ex.el (viper-color-display-p): New function.
20956 (viper-has-face-support-p): Use viper-color-display-p.
20957
20958 * viper-keym.el (viper-gnus-modifier-map): New keymap.
20959
20960 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
20961
20962 * viper-util.el (viper-glob-unix-files): Fix shell status check.
20963 (viper-file-remote-p): Make equivalent to file-remote-p.
20964
20965 * viper.el (viper-major-mode-modifier-list):
20966 Use viper-gnus-modifier-map.
20967
20968 2005-02-19 David Kastrup <dak@gnu.org>
20969
20970 * subr.el (subregexp-context-p): Fix garbled doc string by adding
20971 quoting.
20972
20973 2005-02-19 Jay Belanger <belanger@truman.edu>
20974
20975 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
20976 Remove extra definitions.
20977 (calc-coth): New function.
20978 (calcFunc-cot): Fix `let'.
20979
20980 2005-02-19 Eli Zaretskii <eliz@gnu.org>
20981
20982 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
20983 the reasons we use "type pc" in these faces.
20984
20985 * button.el (button): Ditto.
20986
20987 2005-02-19 Michael Mauger <mmaug@yahoo.com>
20988
20989 * replace.el (query-replace-read-from): Set the value of
20990 query-replace-from-history-variable to handle the case of an empty
20991 string entered to accept the suggested default.
20992
20993 * net/tramp.el (tramp-file-name-for-operation):
20994 Use dired-call-process instead of dired-call-process-command.
20995
20996 2005-02-19 Jay Belanger <belanger@truman.edu>
20997
20998 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
20999 (math-div-non-trig): New variables.
21000 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
21001 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
21002 (math-combine-prod, math-div-symb-fancy): Add simplifications for
21003 trig expressions.
21004
21005 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
21006
21007 * progmodes/gdb-ui.el (gdb-var-update-handler)
21008 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
21009 for watch expressions,
21010 (gdb-var-create-handler): Don't set speedbar-update-flag.
21011 (gdb-post-prompt): Simplify test for speedbar.
21012
21013 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
21014
21015 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
21016 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
21017 we use the syntax table of the correct buffer.
21018 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
21019 Felix Gatzemeier.
21020
21021 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
21022 (ediff-file-remote-p): Make synonymous with file-remote-p.
21023 In all deffaces ediff-*-face-*, use min-colors.
21024
21025 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
21026 ediff-recurse-to-subdirectories.
21027 (ediff-mark-if-equal): Check that the arguments are strings, use
21028 ediff-same-contents (after to Felix Gatzemeier).
21029
21030 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
21031 nil.
21032
21033 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
21034
21035 * log-view.el (log-view-message-re): Fix up Subversion regexp.
21036
21037 2005-02-18 David Kastrup <dak@gnu.org>
21038
21039 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
21040 use `mark-active' when defined.
21041
21042 2005-02-18 Kenichi Handa <handa@m17n.org>
21043
21044 * ps-print.el (ps-font-info-database): New entry
21045 ZapfChancery-MediumItalic with correct font name. Fix font name
21046 of the entry Zapf-Chancery-MediumItalic.
21047
21048 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
21049
21050 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
21051
21052 2005-02-16 Kim F. Storm <storm@cua.dk>
21053
21054 * ido.el (ido-fallback-command): Pass user input to fallback command.
21055
21056 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
21057
21058 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
21059 (gdb-find-file-hook): Add server prefix.
21060
21061 2005-02-16 Richard M. Stallman <rms@gnu.org>
21062
21063 * replace.el (perform-replace): Pass new args to replace-highlight.
21064 (replace-highlight): Take region args,
21065 and pass them to isearch-lazy-highlight-new-loop.
21066
21067 * novice.el (disabled-command-hook): Autoload the defalias
21068 and the make-obsolete-variable call.
21069
21070 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
21071
21072 * isearch.el (isearch-lazy-highlight-start-limit)
21073 (isearch-lazy-highlight-end-limit): New variables limit
21074 the region for highlighting.
21075 (isearch-lazy-highlight-new-loop): New args BEG and END.
21076 (isearch-lazy-highlight-search): Use the new vars.
21077 (isearch-lazy-highlight-update): Likewise.
21078
21079 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
21080
21081 * cus-start.el (all): Use default-boundp.
21082
21083 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
21084
21085 * menu-bar.el (menu-bar-select-frame): Handle current frame.
21086
21087 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
21088
21089 * autorevert.el (auto-revert-stop-on-user-input)
21090 (auto-revert-verbose): Doc fixes.
21091
21092 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
21093
21094 * international/mule-cmds.el (set-locale-environment): Remove call
21095 to set-selection-coding-system on Windows.
21096
21097 2005-02-15 Jay Belanger <belanger@truman.edu>
21098
21099 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
21100 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
21101 calcFunc-coth.
21102 (math-simplify-sqrt): Add simplifications.
21103
21104 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
21105 to list.
21106
21107 * calc/calc-ext.el: Add functions to autoloads.
21108
21109 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
21110 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
21111 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
21112 (math-csc-raw, math-cot-raw): New functions.
21113
21114 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
21115
21116 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
21117 the variable name in a message.
21118
21119 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
21120 calcFunc-csc, calcFunc-cot.
21121
21122 * calc/calcalg2.el: Add derivative and integration rules for
21123 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
21124 calcFunc-csch, calcFunc-coth.
21125 (math-do-integral-methods): Add to checks for when to use
21126 substitutions.
21127
21128 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
21129
21130 2005-02-15 Lute Kamstra <lute@gnu.org>
21131
21132 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21133 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
21134 <monnier@iro.umontreal.ca>
21135 (lisp-outline-level): Improve efficiency. Suggested by David
21136 Kastrup <dak@gnu.org>.
21137
21138 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
21139
21140 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
21141 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
21142 (gdb-set-gud-minor-mode-existing-buffers): New functions.
21143 (gdb-find-file-hook): New hook. Add it to find-file-hook.
21144 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
21145
21146 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
21147
21148 * cus-start.el (all): Comment change.
21149
21150 2005-02-14 Lute Kamstra <lute@gnu.org>
21151
21152 * cus-start.el (all): Check if symbol is void.
21153
21154 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
21155
21156 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
21157 optional argument to \cite.
21158
21159 2005-02-14 Richard M. Stallman <rms@gnu.org>
21160
21161 * cus-edit.el (custom-buffer-create-internal): Update help message.
21162 (custom-magic-alist): Update help messages.
21163
21164 * cus-start.el (all): Allow a var to specify a standard value.
21165
21166 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
21167
21168 * custom.el (custom-theme-set-variables): Handle variable aliases.
21169
21170 * frame.el (blink-cursor-timer): Doc fix.
21171 (blink-cursor): Make it an alias for `blink-cursor-mode' and
21172 declare obsolete.
21173 (blink-cursor-mode): Define with defcustom and use correct
21174 standard expression in that defcustom.
21175 * startup.el (command-line): Adapt to above changes in frame.el.
21176
21177 2005-02-11 Lute Kamstra <lute@gnu.org>
21178
21179 * apropos.el (apropos-score-doc): Prevent division by zero.
21180
21181 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
21182
21183 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
21184 (icalendar--get-event-property-attributes)
21185 (icalendar--get-event-properties)
21186 (icalendar--datetime-to-diary-date): New functions.
21187 (icalendar--split-value): Doc fix.
21188 (icalendar--datetime-to-noneuropean-date)
21189 (icalendar--datetime-to-european-date): New optional argument
21190 SEPARATOR. Return result as a string instead of a list.
21191 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
21192 (icalendar--convert-string-for-export): Rename arg S to STRING.
21193 (icalendar-export-region): Doc fix. Change name of error buffer.
21194 Save output buffer.
21195 (icalendar-import-file): Add blank at end of prompt.
21196 (icalendar-import-buffer): Doc fix. Do not switch to error
21197 buffer. Indicate status in return value.
21198 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
21199 buffer. Save output buffer. Handle exception from recurrence
21200 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
21201 events. Fix problems with weekly all-day events.
21202
21203 2005-02-10 Richard M. Stallman <rms@gnu.org>
21204
21205 * simple.el (eval-expression-print-format):
21206 Avoid warning about edebug-active.
21207
21208 * help.el (help-for-help-internal): Rename from help-for-help.
21209 (help-for-help): Define with defalias.
21210
21211 * font-core.el (font-lock-default-function): Use with-no-warnings.
21212
21213 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
21214
21215 * custom.el (defface): Doc fix.
21216
21217 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
21218
21219 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
21220 width 0" to prevent word wrapping problems.
21221
21222 2005-02-09 Kim F. Storm <storm@cua.dk>
21223
21224 * ido.el (ido-file-extensions-order): New defcustom.
21225 (ido-file-extension-lessp, ido-file-extension-aux)
21226 (ido-file-extension-order): New advanced file ordering.
21227 (ido-file-lessp): New simple file ordering.
21228 (ido-sort-list): Remove.
21229 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
21230 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
21231
21232 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
21233
21234 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
21235 that some versions of grep produce.
21236 (grep-mode-font-lock-keywords): Likewise.
21237
21238 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
21239
21240 * progmodes/gdb-ui.el (gdb-location-list): New variable.
21241 (gdb-cdir): Delete.
21242 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
21243 (gdb-source-info): Treat case when source file is in another
21244 directory properly.
21245 (gdb-get-location): New function.
21246
21247 2005-02-07 Jay Belanger <belanger@truman.edu>
21248
21249 * calc/calc-prog.el (calc-write-parse-table-part)
21250 (calc-fix-token-name): Fix a check for language type.
21251
21252 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
21253
21254 2005-02-07 Andre Spiegel <spiegel@gnu.org>
21255
21256 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
21257 as directory not writable.
21258
21259 2005-02-07 Kim F. Storm <storm@cua.dk>
21260
21261 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
21262 (cua--standard-movement-commands): Remove list.
21263 Instead, set CUA property value to move for movement commands.
21264 (cua-movement-commands): Remove. Users must set CUA prop instead.
21265 (cua--pre-command-handler): Check CUA property.
21266 (cua--init-keymaps): Don't remap undo commands.
21267 (cua-mode): Don't call cua--rectangle-on-off.
21268
21269 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
21270 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
21271 (cua--rect-undo-set-point): New var.
21272 (cua--rectangle-undo-boundary): Setup undo apply entry.
21273 (cua--rect-undo-handler): New function for rectangle undo.
21274 (cua--rect-start-position, cua--rect-end-position): Add.
21275 (cua--rectangle-post-command): Call cua--rectangle-set-corners
21276 for restored rectangle. Set point if cua--rect-undo-set-point.
21277
21278 2005-02-06 Jay Belanger <belanger@truman.edu>
21279
21280 * calc/calc-lang.el (calc-tex-language): Display more information
21281 in messages.
21282
21283 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
21284 in TeX mode.
21285
21286 2005-02-06 Richard M. Stallman <rms@gnu.org>
21287
21288 * emacs-lisp/lisp.el (buffer-end): Doc fix.
21289
21290 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
21291
21292 * net/ldap.el (ldap-search-internal): Support attributes with
21293 optional descriptions separated by a semi-colon, as in
21294 "userCertificate;binary".
21295
21296 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21297
21298 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
21299 isn't a cons (i.e. the version is 0).
21300
21301 2005-02-05 Eli Zaretskii <eliz@gnu.org>
21302
21303 * help.el (help-for-help): Doc fix.
21304
21305 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
21306
21307 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
21308 GDB-Windows on the menu-bar as this works better.
21309
21310 2005-02-04 Jay Belanger <belanger@truman.edu>
21311
21312 * calc/calc-embed.el (calc-embedded-update): Don't put in
21313 unnecessary newlines. Adjust the end of formula marker.
21314
21315 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
21316 (math-latex-parse-two-args): New function.
21317
21318 2005-02-03 Lute Kamstra <lute@gnu.org>
21319
21320 * help-fns.el (help-with-tutorial): Make sure that users cannot
21321 remove the entire text of the tutorial by means of `undo'.
21322
21323 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
21324
21325 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
21326 in recent changes, where the ispell process was repeatedly
21327 killed & restarted.
21328
21329 * international/mule-cmds.el (set-locale-environment): Set file-name
21330 coding system to utf-8 on Darwin systems.
21331 (set-default-coding-systems): Don't set default-file-name-coding-system
21332 on Darwin systems.
21333
21334 2005-02-03 Richard M. Stallman <rms@gnu.org>
21335
21336 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
21337
21338 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
21339
21340 * faces.el (list-faces-display): Add optional argument.
21341
21342 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
21343
21344 * font-core.el (font-lock-default-function): Handle the rare case where
21345 only font-lock-keywords is set.
21346
21347 2005-02-02 Kenichi Handa <handa@m17n.org>
21348
21349 * international/characters.el: Cancel previous change for
21350 I-WITH-DOT-ABOVE and DOTLESS-i.
21351
21352 * international/latin-5.el: Cancel previous change.
21353
21354 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
21355
21356 * progmodes/gud.el: Correction to syntax in gud-menu-map.
21357
21358 2005-02-02 Kenichi Handa <handa@m17n.org>
21359
21360 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
21361 DOTLESS-i.
21362
21363 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
21364 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
21365
21366 * case-table.el (get-upcase-table): New function.
21367 (copy-case-table): Copy upcaes table too if non-nil.
21368 (set-case-syntax-delims): Maintain upcase table too.
21369 (set-case-syntax-pair): Likewise.
21370 (set-upcase-syntax, set-downcase-syntax): New functions.
21371 (set-case-syntax): Maintain upcase table too.
21372
21373 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
21374
21375 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
21376
21377 * progmodes/gud.el (gud-goto-info): New function.
21378 (gud-tool-bar-map): Use correct icon.
21379
21380 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
21381
21382 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
21383 When delegating, order args in the funcall correctly.
21384
21385 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
21386
21387 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
21388
21389 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
21390
21391 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
21392 buffer not visiting a file.
21393
21394 2005-01-31 Jay Belanger <belanger@truman.edu>
21395
21396 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
21397 bound on the line with the formula.
21398
21399 2005-01-31 Kim F. Storm <storm@cua.dk>
21400
21401 * ses.el (ses-create-cell-variable-range)
21402 (ses-destroy-cell-variable-range, ses-reset-header-string)
21403 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
21404 (ses-insert-row): Fix format of apply undo entries.
21405
21406 2005-01-31 Jay Belanger <belanger@truman.edu>
21407
21408 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
21409 parts.
21410
21411 * calc/calc-embed.el (calc-embedded-open-formula)
21412 (calc-embedded-close-formula): Ignore matrix environments.
21413
21414 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
21415 TeX mode.
21416
21417 * calc/calc-lang.el (math-function-table, math-oper-table)
21418 (math-variable-table): Adjust the LaTeX portions.
21419
21420 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
21421 (math-latex-ignore-words): New constant.
21422
21423 2005-01-31 Richard M. Stallman <rms@gnu.org>
21424
21425 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
21426 (ispell-local-dictionary): Doc fix.
21427 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
21428 Don't reinitialize at run time. Don't defcustom.
21429 All uses changed to append ispell-local-dictionary-alist,
21430 or check it first.
21431 (ispell-current-dictionary): New variable for dictionary in use.
21432 (ispell-dictionary): Now used only for global default.
21433 (ispell-start-process): Set ispell-current-dictionary,
21434 not ispell-dictionary.
21435 (ispell-change-dictionary): Use this only for setting
21436 user preferences.
21437 (ispell-internal-change-dictionary): New function
21438 to change the current dictionary in use.
21439 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
21440 Use ispell-current-dictionary.
21441 Handle ispell-local-dictionary-overridden.
21442 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
21443
21444 2005-01-31 Jay Belanger <belanger@truman.edu>
21445
21446 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
21447
21448 * calc/calc-ext.el: Add calc-latex-language to autoloads.
21449 (calc-mode-map): Add calc-latex-language.
21450
21451 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
21452 (math-latex-print-frac): New functions.
21453 (math-oper-table, math-function-table, math-variable-table)
21454 (math-complex-format, math-input-filter): Add latex properties.
21455 (calc-set-language): Set math-expr-special-function-mapping.
21456
21457 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
21458 (calc-write-parse-table-part): Add LaTeX support.
21459
21460 * calc/calc.el (calc-language): Adjust docstring.
21461 (calc-set-mode-line): Add LaTeX support.
21462 (math-expr-special-function-mapping): New variable.
21463 (math-tex-ignore-words): Add to list.
21464
21465 * calc/calccomp.el (math-compose-expr, math-compose-rows):
21466 Add LaTeX support.
21467 (math-compose-expr): Add support for special functions.
21468
21469 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
21470
21471 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
21472
21473 * progmodes/gdb-ui.el (gdb-memory-address)
21474 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
21475 (gdb-memory-mode-map, gdb-memory-format-keymap)
21476 (gdb-memory-format-menu, gdb-memory-unit-keymap)
21477 (gdb-memory-unit-menu): New variables for a buffer
21478 that lets the user examine program memory.
21479 (gdb-memory-set-address, gdb-memory-set-repeat-count)
21480 (gdb-memory-format-binary, gdb-memory-format-octal)
21481 (gdb-memory-format-unsigned, gdb-memory-format-signed)
21482 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
21483 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
21484 (gdb-memory-unit-word, gdb-memory-unit-halfword)
21485 (gdb-memory-unit-byte, gdb-memory-unit-menu)
21486 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
21487 (gdb-memory-mode, gdb-memory-buffer-name)
21488 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
21489 New functions for above buffer.
21490
21491 2005-01-30 Richard M. Stallman <rms@gnu.org>
21492
21493 * cus-edit.el (custom-bury-buffer): Function deleted.
21494 (custom-buffer-done-function): Option deleted.
21495 (custom-buffer-done-kill): New replacement option.
21496 (Custom-buffer-done): Call quit-window.
21497 (custom-buffer-create-internal): Update for above changes.
21498
21499 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
21500
21501 * simple.el (undo-ask-before-discard): New var.
21502 (undo-outer-limit-truncate): Implement it.
21503 (undo-extra-outer-limit): Doc update.
21504
21505 2005-01-29 Richard M. Stallman <rms@gnu.org>
21506
21507 * ses.el (undo-more): Delete defadvice.
21508 (ses-begin-change): Doc fix.
21509
21510 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
21511 instead of rebinding C-x u and C-_.
21512
21513 * files.el (normal-backup-enable-predicate): Return nil for files
21514 in /tmp, regardless of temporary-file-directory.
21515
21516 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
21517
21518 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
21519 (open-rectangle, delete-whitespace-rectangle-line)
21520 (clear-rectangle-line): If FILL, pass t instead of FILL
21521 for move-to-column's 2nd arg.
21522
21523 * simple.el (undo): Fix the test for continuing a series of undos.
21524 (undo-more): Set pending-undo-list to t when we reach end.
21525 (pending-undo-list): Move up defvar.
21526
21527 * wid-edit.el (widget-button-click):
21528 Shorten the range of the track-mouse binding.
21529
21530 * comint.el (comint-insert-input): Undo previous changes;
21531 use last-input-event in interactive spec.
21532
21533 2005-01-29 Eli Zaretskii <eliz@gnu.org>
21534
21535 * progmodes/compile.el (compilation-start): Bind buffer-read-only
21536 to nil before invoking call-process. Reset buffer's modified flag
21537 after fontifying it in the no-async branch.
21538
21539 * wid-edit.el (widget-specify-button): If mouse pointer shape
21540 cannot be changed, use mouse face instead.
21541
21542 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
21543
21544 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
21545 (gdb-goto-breakpoint): Make breakpoint handling work on template
21546 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
21547 (gdb-assembler-custom): Update to recognize breakpoint information
21548 added on 2005-01-19.
21549
21550 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
21551
21552 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
21553 (dsssl-mode): Use define-derived-mode.
21554 (scheme-mode-initialize): Remove.
21555 (scheme-mode): Use run-mode-hooks.
21556
21557 * cus-edit.el (customize-group-other-window)
21558 (custom-buffer-create-other-window): Don't override special-display-*.
21559 (custom-mode-map): Make it dense.
21560
21561 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
21562 sets the default value.
21563
21564 2005-01-28 Eli Zaretskii <eliz@gnu.org>
21565
21566 * descr-text.el: Add more keywords.
21567
21568 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
21569
21570 * speedbar.el: Avoid unnecessary use of locate-library.
21571
21572 * international/mule-cmds.el (standard-display-european-internal):
21573 Don't fiddle with latin-1 non-break space any more since it's now
21574 special cased in the C code.
21575 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
21576
21577 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
21578
21579 * cus-start.el (all): Add `undo-outer-limit'.
21580
21581 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
21582
21583 * textmodes/bibtex.el (bibtex-format-entry):
21584 Use `bibtex-empty-field-re' only on the text of fields, not on entire
21585 field lines.
21586 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
21587 not on part of a buffer.
21588
21589 2005-01-25 Lute Kamstra <lute@gnu.org>
21590
21591 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
21592 nonempty field text strings like "{letters\\macro{}more letters}".
21593 Clarify docstring.
21594 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
21595 (bibtex-entry-offset, bibtex-parse-association)
21596 (bibtex-parse-field-name): Fix typos in docstrings.
21597 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
21598
21599 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
21600
21601 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
21602 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
21603 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
21604 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
21605
21606 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
21607 isearch minor mode.
21608
21609 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
21610
21611 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
21612
21613 2005-01-24 Lute Kamstra <lute@gnu.org>
21614
21615 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
21616 CASECHARS and NOT-CASECHARS regular expressions of the
21617 "nederlands" and "nederlands8" dictionaries to prevent a "Range
21618 striding over charsets" error.
21619
21620 2005-01-24 Jay Belanger <belanger@truman.edu>
21621
21622 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
21623 display variable name.
21624
21625 2005-01-24 Kenichi Handa <handa@m17n.org>
21626
21627 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
21628 Fix setting of the element of encoded-kbd-iso2022-invocations.
21629
21630 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
21631
21632 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
21633 (gdb-threads-select): Change to also accept mouse events.
21634 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
21635 (gdb-threads-mouse-select): Delete.
21636
21637 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
21638
21639 * files.el (insert-directory): Take care of empty directory,
21640 listed without -a switch.
21641
21642 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
21643
21644 * textmodes/refill.el (refill-post-command-function):
21645 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
21646 to the list of functions that we should be careful not to undo.
21647 (refill-late-fill-paragraph-function): Remove.
21648 (refill-saved-state): New var.
21649 (refill-mode): Use it to save fill-paragraph-function.
21650 Save also the value of auto-fill-function.
21651
21652 * term/w32-win.el: Simplify code.
21653
21654 2005-01-23 Kim F. Storm <storm@cua.dk>
21655
21656 * simple.el (line-move): Adapt to new return value from
21657 pos-visible-in-window-p.
21658
21659 * simple.el (line-move): Fix last change. Check partial
21660 visibility at point rather than at window-start.
21661
21662 2005-01-22 Jason Rumney <jasonr@gnu.org>
21663
21664 * term/w32-win.el (xw-defined-colors): Remove debug-message.
21665
21666 2005-01-22 David Kastrup <dak@gnu.org>
21667
21668 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
21669
21670 2005-01-22 Eli Zaretskii <eliz@gnu.org>
21671
21672 * type-break.el (type-break-mode): Add a test for
21673 type-break-file-name being non-nil.
21674
21675 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
21676
21677 * net/eudc.el (top level): Call (message "") via progn, so that
21678 eudc-options-file is loaded.
21679
21680 2005-01-22 Kim F. Storm <storm@cua.dk>
21681
21682 * simple.el (line-move-1): Rename from line-move.
21683 (line-move): New function that adjusts vscroll for partially
21684 visible rows, and calls line-move-1 otherwise.
21685
21686 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
21687
21688 * pcomplete.el: Define pcomplete-read-event instead of read-event,
21689 since it's not a complete read-event implementation
21690
21691 2005-01-20 Jay Belanger <belanger@truman.edu>
21692
21693 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
21694 for called function.
21695
21696 2005-01-20 Steven Tamm <steventamm@mac.com>
21697
21698 * term/mac-win.el (process-connection-type): Remove.
21699 Controlled now by s/darwin.h:PTY_ITERATION.
21700
21701 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
21702
21703 * window.el (handle-select-window): Don't switch window when we're
21704 in the minibuffer.
21705
21706 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
21707
21708 * subr.el (dotimes-with-progress-reporter): New macro.
21709
21710 * ses.el (ses-dotimes-msg): Remove macro.
21711 Use `dotimes-with-progress-reporter' instead.
21712
21713 2005-01-19 Steven Tamm <steventamm@mac.com>
21714
21715 * term/mac-win.el (process-connection-type): Use new
21716 operating-system-release variable to use ptys on Darwin 7 (OS X
21717 10.3) when using carbon build.
21718
21719 2005-01-19 Jay Belanger <belanger@truman.edu>
21720
21721 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
21722 flags if the last command was a tab or M-tab.
21723
21724 * calc/calc-prog.el (calc-user-define-edit): Put original formula
21725 in formula editing buffer.
21726
21727 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
21728
21729 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
21730 breakpoint image symbol in margin.
21731
21732 2005-01-19 Jay Belanger <belanger@truman.edu>
21733
21734 * calc/calc-prog.el (calc-execute-kbd-macro):
21735 Ignore calc-keep-arg-flag.
21736
21737 2005-01-19 Kenichi Handa <handa@m17n.org>
21738
21739 * textmodes/ispell.el (ispell-looking-at): New function.
21740 (ispell-process-line): Use ispell-looking-at to compare the ispell
21741 output and the buffer contents.
21742
21743 2005-01-18 Jay Belanger <belanger@truman.edu>
21744
21745 * calc/calc.el (calc-display-raw): Fix docstring.
21746
21747 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
21748
21749 * simple.el (blink-matching-open): Strip extra info from syntax.
21750
21751 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
21752 funny chars in the end-of-here-doc marker.
21753
21754 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
21755
21756 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
21757 that enable/disabled state of breakpoints is shown correctly in
21758 fringe and on ttys.
21759 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
21760 Add breakpoint information as text properties.
21761 (gdb-mouse-toggle-breakpoint):
21762 Rename to gdb-mouse-set-clear-breakpoint.
21763 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
21764 breakpoints in the margin.
21765 (gdb-remove-strings): Simplify.
21766
21767 2005-01-17 Jay Belanger <belanger@truman.edu>
21768
21769 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
21770 erasing buffer.
21771
21772 2005-01-17 Richard M. Stallman <rms@gnu.org>
21773
21774 * progmodes/grep.el (grep-find): Copy from `grep' the condition
21775 for calling grep-compute-defaults.
21776
21777 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
21778 if buffer is empty.
21779
21780 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
21781
21782 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
21783
21784 * hilit-chg.el (highlight-changes-mode): Don't autoload.
21785
21786 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
21787 non-preloaded variables.
21788
21789 2005-01-17 Steven Tamm <steventamm@mac.com>
21790
21791 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
21792 tex-shell cause to force interactivity when using pipes.
21793
21794 2005-01-17 Kim F. Storm <storm@cua.dk>
21795
21796 * simple.el (just-one-space): Make arg optional.
21797
21798 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
21799
21800 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
21801 posn-at-x-y to t to access left-margin.
21802
21803 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
21804
21805 Sync with Tramp 2.0.47.
21806
21807 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
21808 catching keep-date problems in cp/scp operations.
21809 (tramp-handle-copy-file): Don't call `set-file-modes'
21810 unconditionally. Specialized functions should know better what is
21811 necessary. This improves performance a little bit, and the
21812 functions could catch errors with `cp -p' and `scp -p'.
21813 (tramp-do-copy-or-rename-file-via-buffer)
21814 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
21815 when appropriate.
21816 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
21817 Call `set-file-modes' when appropriate.
21818 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
21819 Johnsson <isak@hypergene.com>
21820 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
21821 of both Tramp buffer and debug buffer. Reported by Joakim Verona
21822 <joakim@verona.se>
21823 (tramp-file-name-for-operation): Mark `shell-command' as magic for
21824 Emacs only.
21825
21826 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
21827 `find-file-hooks' and `dired-mode-hook'.
21828 (tramp-minor-mode-map): Respective map. Add remapping for
21829 `compile' and `recompile'.
21830 (tramp-remap-command, tramp-recompile): New defuns.
21831 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
21832 in buffer "*Compilation*". Call the commands asynchronously.
21833
21834 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
21835 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
21836 `shell-command', because it isn't magic in XEmacs. Reported by
21837 Adrian Aichner <adrian@xemacs.org>.
21838
21839 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
21840 `substitute-in-file-name.
21841 (tramp-smb-handle-substitute-in-file-name): New defun.
21842 (tramp-smb-advice-PC-do-completion): Delete advice.
21843
21844 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
21845
21846 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
21847 Fix error in deleting region.
21848
21849 2005-01-15 Richard M. Stallman <rms@gnu.org>
21850
21851 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
21852 In non-temp buffer, switch syntax table temporarily.
21853
21854 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
21855
21856 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
21857
21858 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
21859
21860 * imenu.el (imenu--split-menu): Copy menulist before sorting.
21861 (imenu--generic-function): Use START, not BEG, as pos of definition.
21862
21863 * simple.el (just-one-space): Argument specifies number of spaces.
21864
21865 * simple.el (eval-expression-print-format): Avoid warning
21866 about edebug-active.
21867
21868 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
21869
21870 * progmodes/sh-script.el: Code copied from make-mode.el
21871 with small changes,
21872 (sh-mode-map): Bind C-c C-\.
21873 (sh-backslash-column, sh-backslash-align): New variables.
21874 (sh-backslash-region, sh-append-backslash): New functions.
21875
21876 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
21877
21878 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
21879 (rmail-pop-password, rmail-pop-password-required): Move to
21880 rmail-obsolete group.
21881 (rmail-set-pop-password): Rename to rmail-set-remote-password.
21882 All callers updated.
21883 (rmail-get-pop-password): Rename to rmail-get-remote-password.
21884 Take an argument specifying whether it is POP or IMAP mailbox we
21885 are using. All callers updated.
21886 (rmail-pop-password-error): Rename to
21887 rmail-remote-password-error. Added mailutils-specific error message.
21888 (rmail-movemail-search-path)
21889 (rmail-movemail-variant-in-use): New variables.
21890 (rmail-remote-password, rmail-remote-password-required):
21891 New customization variables.
21892 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
21893 (rmail-parse-url): New function.
21894 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
21895 with GNU mailutils movemail.
21896
21897 2005-01-15 Kevin Ryde <user42@zip.com.au>
21898
21899 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
21900 suffix to space, $ or '$, to correctly position point when going
21901 to @table style constants like DBL_MAX.
21902
21903 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
21904
21905 * type-break.el (type-break-mode, type-break-file-time)
21906 (type-break-file-keystroke-count, type-break-choose-file):
21907 Don't store data in or load data from the file if type-break-file-name
21908 is nil.
21909 (type-break-file-name): Doc update as per the above.
21910
21911 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
21912
21913 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
21914 lookup-key might return nil; handle that.
21915
21916 2005-01-15 Alan Mackenzie <acm@muc.de>
21917
21918 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
21919 rather than the element found, thus enabling the tree to be setcar'd.
21920
21921 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
21922
21923 * textmodes/org.el (org-show-following-heading): New option.
21924 (org-show-hierarchy-above): Use `org-show-following-heading'.
21925 (org-cycle): Documentation fix.
21926
21927 * textmodes/org.el (orgtbl-optimized): New option
21928 (orgtbl-mode): New command, a minor mode.
21929 (orgtbl-mode-map): New variable.
21930 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
21931 (orgtbl-error, orgtbl-self-insert-command)
21932 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
21933
21934 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
21935 a local variable in each org-mode buffer.
21936
21937 * textmodes/org.el (org-set-regexps-and-options): Rename from
21938 `org-set-regexps'. Added checking for STARTUP keyword.
21939 (org-get-current-options): Add STARTUP options.
21940 (org-table-insert-row): Make mode intelligent about when
21941 realignment is needed.
21942 (org-self-insert-command, org-delete-backward-char, org-delete-char):
21943 New commands.
21944 (org-enable-table-editor): New default value `optimized'.
21945 (org-table-blank-field): Support blanking regions if active.
21946
21947 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
21948
21949 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
21950 if the year is not given.
21951
21952 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
21953 Add new escapes %m and %M, fixed bug with %F by adding
21954 save-match-data.
21955 (reftex-reference): Remove ?. from list of spaces.
21956 (reftex-label-info): Add automatic label prefix recognition.
21957
21958 * textmodes/reftex-index.el (reftex-index-next-phrase):
21959 Add slave parameter to call of `reftex-index-this-phrase'.
21960 (reftex-index-this-phrase): New optional argument.
21961 (reftex-index-region-phrases): Add slave parameter to call of
21962 `reftex-index-this-phrase'.
21963 (reftex-display-index): New argument redo.
21964 (reftex-index-rescan): Add `redo' to arguments of
21965 `reftex-display-index'.
21966 (reftex-index-Rescan, reftex-index-revert)
21967 (reftex-index-switch-index-tag): Add `redo' to arguments of
21968 `reftex-display-index'.
21969 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
21970 indexing. Fix bug with matching is there is a quote before or
21971 after the word.
21972
21973 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
21974 Fix bug when collecting citation keys in lines with comments.
21975 (reftex-citation): Prefix argument no longer rescans the document,
21976 but forces prompting for optional arguments of cite macros.
21977 (reftex-do-citation): Prompting for optional arguments implemented.
21978
21979 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21980 Add optional arguments to most cite commands.
21981 (reftex-cite-cleanup-optional-args): New option
21982 (reftex-cite-prompt-optional-args): New option.
21983 (reftex-trust-label-prefix): New option.
21984
21985 * textmodes/reftex-toc.el (reftex-toc-find-section):
21986 Add push-mark before changing the position in the buffer.
21987
21988 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
21989 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
21990
21991 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
21992
21993 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
21994 more carefully.
21995
21996 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
21997
21998 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
21999 (sgml-mode): Use it.
22000 (sgml-get-context): Better keep track of implicitly closed tags.
22001
22002 2005-01-13 Kenichi Handa <handa@m17n.org>
22003
22004 * textmodes/ispell.el: These changes are to fix misalignment error
22005 caused by equivalent characters of different Emacs charsets.
22006 (ispell-unified-chars-table): New variable.
22007 (ispell-get-decoded-string): New function.
22008 (ispell-get-casechars, ispell-get-not-casechars)
22009 (ispell-get-otherchars): Call ispell-get-decoded-string.
22010
22011 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
22012
22013 * custom.el (custom-declare-variable): Just put symbol instead
22014 of (defvar . symbol) in `current-load-list'.
22015
22016 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
22017
22018 * emacs-lisp/elint.el: Fixed typo in Commentary section.
22019
22020 2005-01-12 Jay Belanger <belanger@truman.edu>
22021
22022 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
22023 to create a Calc summary.
22024
22025 2005-01-12 Kim F. Storm <storm@cua.dk>
22026
22027 * mouse.el (mouse-on-link-p): Change functionality and doc
22028 string to comply with latest description in lisp ref.
22029
22030 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
22031
22032 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
22033 Enable mouse clicks on mode-line, header-line and margin.
22034 (event-type): Give mouse event symbols an `event-kind' property
22035 with value `mouse-click'.
22036
22037 2005-01-12 Juri Linkov <juri@jurta.org>
22038
22039 * facemenu.el (list-colors-display): Add new arg buffer-name.
22040 Use it. Fix docstring. Replace code for identifying duplicate
22041 colors by the name with call to `list-colors-duplicates' which
22042 identifies duplicate colors by the value unless the color
22043 is one of special Windows colors. Set truncate-lines to t.
22044 Print sorted duplicate color names on each line. Indent to 22
22045 \(the longest color name in rgb.txt) instead of 20. Optimize.
22046 (list-colors-duplicates): New function.
22047 (facemenu-color-name-equal): Delete function.
22048
22049 * facemenu.el (list-colors-print): New function created from code
22050 in list-colors-display. Print #RRGGBB at the window right edge.
22051 (list-colors-display): When temp-buffer-show-function is not
22052 defined, call list-colors-print from temp-buffer-show-hook
22053 to get the right value of window-width in list-colors-print
22054 after the buffer is displayed.
22055
22056 * simple.el (pop-mark): Move deactivate-mark out of conditional
22057 part to deactivate the active mark regardless of the state of the
22058 mark ring.
22059
22060 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
22061 variables line in desktop files.
22062
22063 2005-01-12 Juri Linkov <juri@jurta.org>
22064
22065 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
22066 Bring together isearch highlight related options.
22067 (lazy-highlight): Replace group `replace' by `matching'.
22068 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
22069 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
22070 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
22071 and declare them obsolete.
22072 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
22073 (isearch-faces): Remove defgroup.
22074 (isearch-overlay, isearch-highlight, isearch-dehighlight):
22075 Move isearch highlighting code closer to lazy highlighting code.
22076
22077 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
22078 (query-replace-highlight, query-replace-lazy-highlight)
22079 (query-replace): Move definitions to the beginning of the file.
22080
22081 2005-01-11 Juri Linkov <juri@jurta.org>
22082
22083 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
22084 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
22085 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
22086
22087 * info.el (Info-history-forward): New variable.
22088 (Info-select-node): Reset Info-history-forward to nil.
22089 (Info-last): Turn into defalias.
22090 (Info-history-back): Rename from Info-last.
22091 Add current node to Info-history-forward.
22092 (Info-history-forward): New fun.
22093 (Info-mode-map): Replace Info-last by Info-history-back.
22094 Bind Info-history-forward to "r".
22095 (Info-mode-menu): Replace Info-last by Info-history-back.
22096 Fix menu item text. Add menu item for Info-history-forward.
22097 (info-tool-bar-map): Replace Info-last by Info-history-back.
22098 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
22099 for Info-history-forward.
22100 (Info-mode): Replace Info-last by Info-history-back in docstring.
22101 Add local variable Info-history-forward.
22102 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
22103
22104 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
22105
22106 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
22107 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
22108 Ignore select-window events rather than fiddle with
22109 mouse-autoselect-window.
22110
22111 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
22112
22113 * type-break.el (type-break-mode): Fix previous change.
22114
22115 2005-01-10 Jay Belanger <belanger@truman.edu>
22116
22117 * calc/calc-ext.el (calc-reset): Reset when inside embedded
22118 calculator; only reset when point is inside a calculator.
22119 Don't adjust the window height if the window takes up the whole height
22120 of the frame.
22121
22122 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
22123
22124 * ebuff-menu.el (Electric-buffer-menu-mode):
22125 Preserve value of buffer-local var header-line-format.
22126
22127 2005-01-09 Jay Belanger <belanger@truman.edu>
22128
22129 * calc/calc.el (calc-mode-var-list-restore-saved-values):
22130 Make sure settings file exists before accessing it.
22131
22132 * calc/calc-embed.el (calc-embedded-subst):
22133 Replace math-multi-subst-rec, which is only supposed to be called
22134 by math-multi-subst, by math-multi-subst.
22135
22136 2005-01-09 Andre Spiegel <spiegel@gnu.org>
22137
22138 * vc.el (vc-allow-async-revert): New user option.
22139 (vc-disable-async-diff): New internal variable.
22140 (vc-revert-buffer): Use them to disable asynchronous diff.
22141
22142 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
22143 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
22144 asynchronously if vc-disable-async-diff is t.
22145
22146 2005-01-09 Jay Belanger <belanger@truman.edu>
22147
22148 * calc/calc.el (defcalcmodevar): New macro.
22149 (calc-mode-var-list-restore-default-values)
22150 (calc-mode-var-list-restore-saved-values): New functions.
22151 (calc-mode-var-list): Use defcalcmodevar to define it.
22152 (calc-always-load-extensions, calc-line-numbering)
22153 (calc-line-breaking, calc-display-just, calc-display-origin)
22154 (calc-number-radix, calc-leading-zeros, calc-group-digits)
22155 (calc-group-char, calc-point-char, calc-frac-format)
22156 (calc-prefer-frac, calc-hms-format, calc-date-format)
22157 (calc-float-format, calc-full-float-format, calc-complex-format)
22158 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
22159 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
22160 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
22161 (calc-matrix-brackets, calc-language, calc-language-option)
22162 (calc-left-label, calc-right-label, calc-word-size)
22163 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
22164 (calc-display-raw, calc-internal-prec, calc-angle-mode)
22165 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
22166 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
22167 (calc-window-height, calc-display-trail, calc-show-selections)
22168 (calc-use-selections, calc-assoc-selections)
22169 (calc-display-working-message, calc-auto-why, calc-timing)
22170 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
22171 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
22172 (calc-gnuplot-default-device, calc-gnuplot-default-output)
22173 (calc-gnuplot-print-device, calc-gnuplot-print-output)
22174 (calc-gnuplot-geometry, calc-graph-default-resolution)
22175 (calc-graph-default-resolution-3d, calc-invocation-macro)
22176 (calc-show-banner): Use defcalcmodevar to declare them and set
22177 their default values.
22178
22179 * calc/calc-ext.el (calc-reset): Restore saved values of variables
22180 instead of default values (but restore default values if there is
22181 an argument of 0).
22182
22183 2005-01-09 David Kastrup <dak@gnu.org>
22184
22185 * desktop.el (desktop-restore-eager): Fix typo in type.
22186
22187 2005-01-08 Richard M. Stallman <rms@gnu.org>
22188
22189 * cus-edit.el (customize): Delete :link.
22190
22191 2005-01-08 Jay Belanger <belanger@truman.edu>
22192
22193 * calc/calc.el (calc-mode): Remove the extension from the
22194 `calc-settings-file' file name when loading it.
22195
22196 2005-01-08 Kim F. Storm <storm@cua.dk>
22197
22198 * info.el (Info-mode-map, Info-next-link-keymap)
22199 (Info-prev-link-keymap, Info-up-link-keymap):
22200 Map follow-link to mouse-face.
22201 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
22202
22203 2005-01-08 Jay Belanger <belanger@truman.edu>
22204
22205 * calc/calc.el (calc-settings-file): Change default value.
22206 Suggested by cgw in a comment in calc-mode.el.
22207
22208 * calc/calc-mode.el (calc-settings-file-name):
22209 Compare calc-settings-file to user-init-file instead of ~/.emacs.
22210 Replace ~/.emacs in a prompt by calc-settings-file.
22211
22212 2005-01-07 Lars Hansen <larsh@math.ku.dk>
22213
22214 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
22215 (desktop-lazy-idle-delay): New customizable variables.
22216 (desktop-buffer-args-list): New variable.
22217 (desktop-append-buffer-args): New function.
22218 (desktop-save): Call desktop-append-buffer-args for some buffers.
22219 (desktop-lazy-create-buffer): New function.
22220 (desktop-idle-create-buffers): New function.
22221 (desktop-read): Add message about buffers to restore lazily.
22222 (desktop-lazy-abort): New command.
22223 (desktop-clear): Call desktop-lazy-abort.
22224 (desktop-lazy-complete): New command.
22225
22226 2005-01-06 Richard M. Stallman <rms@gnu.org>
22227
22228 * emacs-lisp/find-func.el (find-face-definition):
22229 Rename from find-face.
22230
22231 2005-01-06 Kim F. Storm <storm@cua.dk>
22232
22233 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
22234
22235 * man.el (Man-xref-man-page, Man-xref-header-file)
22236 (Man-xref-normal-file): Add follow-link property.
22237
22238 2005-01-06 Jay Belanger <belanger@truman.edu>
22239
22240 * calc/calc-units.el: Make sure the proper macro definitions are
22241 available when compiling.
22242
22243 2005-01-06 Juri Linkov <juri@jurta.org>
22244
22245 * isearch.el (isearch-lazy-highlight-update):
22246 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
22247
22248 2005-01-06 Miles Bader <miles@gnu.org>
22249
22250 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
22251 (isearch-lazy-highlight-face): Use new name.
22252
22253 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
22254
22255 * uniquify.el (uniquify-rationalize-file-buffer-names):
22256 Re-add an interactive spec.
22257 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
22258 to the same name.
22259
22260 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
22261 (isearch-update, isearch-done): Adjust calls accordingly.
22262
22263 2005-01-05 Richard M. Stallman <rms@gnu.org>
22264
22265 * custom.el (custom-set-variables, custom-theme-set-variables):
22266 Clarify documentation.
22267
22268 * emacs-lisp/find-func.el (find-variable)
22269 (find-variable-other-window, find-variable-other-frame):
22270 Fix the TYPE args to find-function-read and find-function-do-it.
22271 (find-function): Doc fix.
22272 (find-function-at-point): Replace function-at-point alias.
22273
22274 2005-01-04 Richard M. Stallman <rms@gnu.org>
22275
22276 * cus-face.el (custom-declare-face):
22277 Record defface in current-load-list.
22278
22279 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
22280
22281 * emacs-lisp/find-func.el: Doc fixes.
22282 (find-face-regexp): New variable.
22283 (find-function-regexp-alist): New variable.
22284 (find-function-C-source): Third arg is now TYPE.
22285 (find-function-search-for-symbol): Handle general TYPE.
22286 (find-function-read, find-function-do-it): Handle general TYPE.
22287 (find-definition-noselect, find-face): New functions.
22288 (function-at-point): Alias deleted.
22289
22290 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
22291
22292 * battery.el (display-battery-mode): Rename from display-battery.
22293 Handle the case where it gets turned off.
22294
22295 2005-01-04 Richard M. Stallman <rms@gnu.org>
22296
22297 * cus-edit.el (customize): Make :link point to user doc.
22298
22299 * man.el (Man-fontify-manpage): Turn off undo generation.
22300
22301 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
22302
22303 2005-01-04 Andreas Schwab <schwab@suse.de>
22304
22305 * files.el (insert-directory): Only look for error lines in
22306 inserted text. Don't move too far after processing --dired markers.
22307
22308 2005-01-04 Richard M. Stallman <rms@gnu.org>
22309
22310 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
22311 Don't expand if the character is @, period, dash, etc.
22312 (define-mail-abbrev): Quote names that contain problem characters.
22313
22314 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
22315
22316 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
22317
22318 2005-01-03 Richard M. Stallman <rms@gnu.org>
22319
22320 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
22321 (query-replace-highlight, query-replace-lazy-highlight)
22322 (query-replace): Definitions moved up. Doc fix.
22323
22324 2005-01-03 Richard M. Stallman <rms@gnu.org>
22325
22326 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
22327 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
22328 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
22329 (lazy-highlight-face): Rename from isearch-lazy-...
22330 Change all references to them.
22331
22332 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
22333
22334 * cus-edit.el (custom-file): Doc fix for defcustom.
22335 (custom-file): The function no longer sets the variable
22336 `custom-file' to its return value.
22337
22338 * startup.el (command-line): No longer load `custom-file'.
22339
22340 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
22341
22342 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
22343
22344 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
22345 Don't confuse module-prefixed identifiers for labels.
22346 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
22347
22348 2005-01-02 Richard M. Stallman <rms@gnu.org>
22349
22350 * files.el (basic-save-buffer-1): Fix previous change.
22351
22352 * loadhist.el (file-loadhist-lookup): New function.
22353 (file-provides, file-requires): Use it.
22354
22355 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
22356 instead of calculating the right size.
22357
22358 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
22359
22360 * vc-svn.el (vc-svn-diff): Stay local if possible.
22361
22362 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
22363
22364 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
22365
22366 * files.el (hack-local-variables): Fix last change.
22367
22368 2005-01-02 Jay Belanger <belanger@truman.edu>
22369
22370 * calc/calc-yank.el (calc-edit-top): New variable.
22371 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
22372 object. Change header properties.
22373 (calc-edit-finish, calc-edit-finish-stack-object)
22374 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
22375 edited object.
22376 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
22377 for the beginning of the edited object.
22378 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
22379 for the beginning of the edited object.
22380 * calc/calc-prog.el (calc-edit-macro-finish-edit)
22381 (calc-finish-formula-edit, calc-macro-repeats)
22382 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
22383 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
22384 beginning of the edited object.
22385 (calc-user-define-edit): Change the header for editing macros.
22386 Remove unnecessary variable.
22387
22388 2005-01-01 Jay Belanger <belanger@truman.edu>
22389
22390 * calc/calc-yank.el (calc-edit-mode): Change default header.
22391 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
22392 * calc/calc-store.el (calc-edit-variable): Change title to match new
22393 header.
22394 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
22395 mode to match new header.
22396 (calc-user-define-edit): Change titles to include names of commands.
22397 (calc-finish-formula-edit): Adjust to handle new header.
22398 (calc-finish-macro-edit): Remove.
22399 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
22400 (calc-edit-macro-command, calc-edit-macro-command-type)
22401 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
22402 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
22403 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
22404 (calc-edit-macro-finish-edit): New functions.
22405 (calc-user-define-edit): Use new functions to edit named calc macros.
22406
22407 2005-01-01 Stefan <monnier@iro.umontreal.ca>
22408
22409 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
22410
22411 * ses.el (copy-region-as-kill): Deactivate mark.
22412
22413 2005-01-01 Richard M. Stallman <rms@gnu.org>
22414
22415 * replace.el (occur-1): If the output buffer is also an input,
22416 don't kill it, rename it.
22417
22418 * faces.el (set-face-background, set-face-foreground): Doc fix.
22419
22420 * cus-face.el (custom-face-attributes): Fix :help-echo strings
22421 for :foreground and :background.
22422
22423 * dired.el (dired-view-command-alist): Variable deleted.
22424 (dired-view-file, dired-mouse-find-file-other-window):
22425 Delete the code to use it.
22426
22427 2005-01-01 Kim F. Storm <storm@cua.dk>
22428
22429 * image.el (insert-sliced-image): Use t for line-height property.
22430
22431 See ChangeLog.11 for earlier changes.
22432
22433 ;; Local Variables:
22434 ;; coding: iso-2022-7bit
22435 ;; End:
22436
22437 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
22438 Copying and distribution of this file, with or without modification,
22439 are permitted provided the copyright notice and this notice are preserved.
22440
22441 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1