]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Remove spurious * in custom docstrings.
[gnu-emacs] / lisp / ChangeLog
1 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
4 backquotes after each `read' rather than once per buffer.
5
6 * dframe.el: Remove spurious * in custom docstrings.
7 (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
8 (dframe-xemacs20p): Remove, inline at the sole use point.
9 (defface): Don't defvar the face, don't use old-style backquote.
10 (defcustom): Don't use old-style backquote.
11 (dframe-frame-parameter, dframe-mouse-event-p):
12 Make it obvious that it's always defined.
13 (dframe-popup-kludge): New function to replace
14 dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
15 (dframe-frame-mode, dframe-set-timer-internal)
16 (dframe-mouse-set-point): Remove use of with-no-warnings from
17 XEmacs-specific code.
18 (dframe-set-timer-internal): Fix very old bug with
19 post-command-idle-hook.
20
21 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
22
23 2007-08-22 Chong Yidong <cyd@stupidchicken.com>
24
25 * image-mode.el (image-minor-mode): Use image-mode-text-map.
26
27 2007-08-22 Reiner Steib <Reiner.Steib@gmx.de>
28
29 * sort.el (sort-fold-case, sort-numeric-base): Mark as
30 safe-local-variable.
31
32 2007-08-22 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
33
34 * net/browse-url.el (browse-url-emacs): New function.
35
36 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
37
38 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Display a big fat
39 warning if the file uses old style backquotes.
40
41 * emacs-lisp/bytecomp.el (byte-compile-log-file)
42 (byte-recompile-directory, byte-compile-file)
43 (byte-compile-from-buffer): Use with-current-buffer.
44
45 * simple.el (text-invisible-p): Rename from line-move-invisible-p.
46 (line-move-invisible-p): Keep as an obsolete alias, just to be safe.
47 (line-move-1, line-move-finish, line-move-to-column)
48 (move-end-of-line, move-beginning-of-line): Use new name.
49
50 2007-08-22 Glenn Morris <rgm@gnu.org>
51
52 * files.el (backup-buffer-copy): Check backup directory is
53 writable, to avoid infloop deleting old backup.
54
55 * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
56 movemail related variables.
57 (rmail-insert-inbox-text): Use only rmail-movemail-program, which
58 will now be set before this is called.
59
60 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * emacs-lisp/backquote.el (backquote-delay-process): Fix last change.
63
64 * progmodes/ada-mode.el: Fix up comment style in header.
65 (ada-check-emacs-version): Remove.
66 (ada-mode): Set parse-sexp-* even if they don't exist: can't hurt.
67 (ada-region-selected): Use (featurep 'xemacs) rather than contortions
68 to try and quieten the byte-compiler.
69 (ada-create-keymap): Use [(..)] keys, which work on both (X)Emacs.
70
71 * vc.el (vc-annotate-warp-version): Don't use previous-line.
72
73 2007-08-20 Johannes Weiner <hannes@saeurebad.de> (tiny change)
74
75 * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
76 extracted from `eval-last-sexp-1'.
77 (eval-last-sexp-1): Call `preceding-sexp'.
78
79 2007-08-19 Glenn Morris <rgm@gnu.org>
80
81 * Makefile.in (custom-deps, finder-data, autoloads, recompile)
82 (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
83 than $(EMACS), so that EMACSLOADPATH is set. Prevents any system
84 shadow files messing up the compilation.
85
86 2007-08-18 Glenn Morris <rgm@gnu.org>
87
88 * progmodes/scheme.el (scheme-mode-variables):
89 Set font-lock-comment-start-skip.
90
91 2007-08-18 Martin Rudalics <rudalics@gmx.at>
92
93 * progmodes/ada-mode.el (ada-create-syntax-table):
94 Move set-syntax-table from here to ...
95 (ada-mode): ... here. Don't change global value of comment-multi-line.
96 Call new function ada-initialize-syntax-table-properties.
97 Add ada-handle-syntax-table-properties to font-lock-mode-hook.
98 (ada-deactivate-properties, ada-initialize-properties):
99 Replace by new functions ...
100 (ada-handle-syntax-table-properties, ada-set-syntax-table-properties)
101 (ada-initialize-syntax-table-properties): ... to set up syntax-table
102 properties uniformly, independently from whether font-lock-mode
103 is enabled or not. Handle read-only buffers and do not change
104 undo-list when setting syntax-table properties.
105 (ada-after-change-function): Use ada-set-syntax-table-properties.
106
107 2007-08-17 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
108
109 * progmode/cperl-mode.el (cperl-look-at-leading-count)
110 (cperl-find-pods-heres): Fix an error when typing expressions like
111 `s{a}{b}'.
112
113 2007-08-17 Glenn Morris <rgm@gnu.org>
114
115 * progmodes/compile.el (compilation-get-file-structure): Make use
116 of the directory part when checking for an existing entry, to
117 handle files with same basename in different directories.
118
119 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
120
121 * ps-print.el (ps-header-font-size, ps-header-title-font-size)
122 (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
123 (ps-paragraph-spacing): Docstring fix.
124
125 2007-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
126
127 * smerge-mode.el (smerge-resolve): New arg `safe'.
128 (smerge-resolve-all, smerge-batch-resolve): New function.
129 (smerge-refine): Make sure `diff' returns the expected result.
130 (smerge-parsep-re): New const.
131 (smerge-mode): Use it to adjust paragraph-separate.
132
133 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
134 Correctly match / regexp matchers as first char on a line when
135 fontifying only that line.
136
137 * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
138
139 2007-08-16 Glenn Morris <rgm@gnu.org>
140
141 * ps-print.el (ps-font-size): Doc fix.
142
143 2007-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * vc-bzr.el: Don't fiddle with vc-handled-backend.
146 (vc-bzr-registered): Don't redundantly protect against
147 file-error. Actually use the format-specific code.
148 (vc-bzr-buffer-nonblank-p): Remove.
149 (vc-bzr-status): Change `kindchange' -> `kindchanged'.
150
151 2007-08-15 Glenn Morris <rgm@gnu.org>
152
153 * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
154 sloppier, for the sake of GNU Mailman.
155 (rmail-digest-rfc1153): Initialize `result' correctly.
156
157 2007-08-14 Glenn Morris <rgm@gnu.org>
158
159 * simple.el (bad-packages-alist): New constant.
160 (bad-package-check): New function. Together, these two add
161 elements to `after-load-alist' to check for problematic external
162 packages.
163 * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
164
165 2007-08-13 Stephen Leake <stephen_leake@stephe-leake.org>
166
167 * pcvs-parse.el (cvs-parse-table): Handle additional instance of
168 optional quotes around files in NEED-UPDATE . REMOVED case.
169
170 * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
171 (ada-treat-cmd-string): Improve error message.
172 (ada-do-file-completion): Call `ada-require-project-file', so
173 project variables are set properly.
174 (ada-prj-find-prj-file): Delete Emacs 20.2 support.
175 (ada-gnatfind-buffer-name): New constant.
176 (ada-find-any-references): Use new constant. Set buffer name
177 properly in compilation-start. Toggle read-only properly.
178 (ada-find-in-src-path): Fix spelling error in docstring.
179
180 * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
181 by zero error.
182
183 2007-08-13 Nick Roberts <nickrob@snap.net.nz>
184
185 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
186
187 2007-08-12 Richard Stallman <rms@gnu.org>
188
189 * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
190 (cvs-execute-single-file): Use new name split-string-and-unquote.
191 (cvs-header-msg): Use new name combine-and-quote-strings.
192
193 * emulation/vi.el (vi-next-line): Ignore return value of line-move.
194
195 * progmodes/gud.el (gud-common-init): Use new name
196 split-string-and-unquote.
197
198 * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
199 in javac regexp.
200
201 * pcvs-util.el (cvs-qtypedesc-strings): Use new names
202 combine-and-quote-strings and split-string-and-unquote.
203
204 * subr.el (combine-and-quote-strings): Rename from strings->string.
205 (split-string-and-unquote): Rename from string->strings.
206
207 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
208
209 * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
210 to buffer-local settings.
211
212 * emacs-lisp/backquote.el (backquote-delay-process): New function.
213 (backquote-process): Add internal arg `level'. Use the two to
214 correctly handle nested backquotes.
215
216 2007-08-09 Riccardo Murri <riccardo.murri@gmail.com>
217
218 * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
219 (vc-bzr-state-words): Add "kind changed" state word.
220 (vc-bzr-status): New function. Return Bzr idea of file status,
221 which is different from VC's.
222 (vc-bzr-state): Use vc-bzr-status.
223 (vc-workfile-unchanged-p): Use vc-bzr-status.
224 (vc-bzr-revert): Use synchronous process; expect exitcode 0.
225 (vc-dired-state): Process "kind changed" state word.
226
227 2007-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
228
229 * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
230
231 * vc-rcs.el (vc-rcs-find-file-not-found-hook):
232 Move from vc-default-find-file-not-found-hook.
233
234 2007-08-09 Edward O'Connor <hober0@gmail.com> (tiny change)
235
236 * url/url-auth.el (url-basic-auth): When prompting for username
237 and password, default to the username and password in the URL.
238
239 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
240
241 * man.el: Remove spurious * in docstrings.
242 Merge defvars and toplevel setq-defaults.
243 (Man-highlight-references0): Limit=nil rather than point-max.
244 (Man-mode-map): Move initialization into the declaration.
245 (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
246 (Man-view-header-file): Use expand-file-name rather than concat.
247 (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
248
249 * man.el (Man-next-section): Make sure we do not move backward.
250
251 2007-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
252
253 * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
254 (ps-begin-job): Use ps-default-fg and ps-default-bg only when
255 ps-print-color-p is neither nil nor black-white. Reported by Christian
256 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
257
258 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
259
260 * files.el (auto-mode-alist): Use the purecopied text (duh!).
261
262 2007-08-08 Andreas Schwab <schwab@suse.de>
263
264 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
265 self-insert-command, not self-insert.
266
267 2007-08-08 Glenn Morris <rgm@gnu.org>
268
269 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove `iff'.
270
271 * Replace `iff' in doc-strings and comments.
272
273 * help-mode.el (help-make-xrefs): Search for symbol constituents,
274 rather than just `-'.
275
276 2007-08-08 Martin Rudalics <rudalics@gmx.at>
277
278 * dired.el (dired-pop-to-buffer):
279 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
280 * calendar/calendar.el (generate-calendar-window):
281 * progmodes/compile.el (compilation-set-window-height):
282 * textmodes/two-column.el (2C-two-columns, 2C-merge):
283 Use window-full-width-p instead of comparing frame-width and
284 window-width.
285
286 * progmodes/compile.el (compilation-find-buffer): Remove extra
287 argument in call to compilation-buffer-internal-p.
288
289 2007-08-07 Michael Albinus <michael.albinus@gmx.de>
290
291 * net/tramp.el (tramp-handle-file-remote-p): Handle optional
292 parameters IDENTIFICATION and CONNECTED.
293 (tramp-handle-insert-file-contents): VISIT must be handled after
294 insertion of the local copy. Reported by Peter Gordon
295 <peter@pg-consultants.com>.
296 (tramp-file-name-handler): No special handling for
297 `expand-file-name'. But for `file-name-as-directory'.
298 (tramp-find-shell, tramp-open-connection-telnet)
299 (tramp-open-connection-rsh, tramp-open-connection-su)
300 (tramp-open-connection-multi)
301 (tramp-open-connection-setup-interactive-shell): Guard against
302 $PROMPT_COMMAND shell var. Reported by Steve Youngs
303 <steve@sxemacs.org>.
304 (tramp-append-tramp-buffers): Replace "sensible" by "sensitive" in
305 the hint.
306
307 * net/trampver.el: Update release number.
308
309 2007-08-07 Tom Tromey <tromey@redhat.com>
310
311 * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
312 Add safe-local-variable property.
313
314 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
315
316 * image-mode.el (image-toggle-display): Use image-refresh.
317
318 * longlines.el (longlines-decoded): New variable.
319 (longlines-mode): Avoid encoding or decoding the buffer twice.
320
321 2007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
322
323 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
324 unofficial version.
325 (vc-bzr-command): Remove redundant setting of process-connection-type.
326 (vc-bzr-admin-checkout-format-file): Add autoload.
327 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
328 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
329 (vc-bzr-registered): Compare dirstate format tag with known good
330 value, abort parsing if match fails. Warn user in docstring.
331 (vc-bzr-workfile-version): Case for different Bzr branch formats.
332 See bzrlib/branch.py in Bzr sources.
333 (vc-bzr-diff): First argument FILES may be a string rather than a list.
334 (vc-bzr-shell-command): Remove in favor of
335 vc-bzr-command-discarding-stderr.
336 (vc-bzr-command-discarding-stderr): New function.
337
338 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
339
340 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
341 program, and return nil
342 (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
343 (vc-bzr-state): Look for path names relative to the repository
344 root after status keyword.
345 (vc-bzr-file-name-relative): New function.
346 (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
347 depend on it.
348 (vc-bzr-admin-dirname, ...-checkout-format-file)
349 (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
350 files that we now parse directly for speed.
351 (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
352 (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
353 (vc-bzr-state): "bzr status" successful only if exitcode is 0
354 (vc-bzr-root): Use `vc-bzr-shell-command'. Stderr may contain
355 Bzr warnings, so we must discard it.
356 (vc-bzr-workfile-version): Speedup counting lines from
357 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
358 if that file doesn't exist.
359 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
360 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname'
361 (not ".bzr"!) to `vc-directory-exclusion-list'
362 (vc-bzr-shell-command): New function.
363
364 2007-08-06 Tom Tromey <tromey@redhat.com>
365
366 * diff-mode.el (diff-unified->context, diff-reverse-direction)
367 (diff-fixup-modifs): Typo in docstring.
368
369 2007-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
370
371 * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
372 count-screen-lines.
373 (tpu-edt-off): Disable relevant pieces of advice.
374
375 * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
376 tpu-write-file-hook. Activate it with add-hook on buffer-save-hook.
377 (newline, newline-and-indent, do-auto-fill): Use advice instead of
378 redefining the function.
379 (tpu-set-scroll-margins): Activate the pieces of advice.
380
381 2007-08-06 Michael Albinus <michael.albinus@gmx.de>
382
383 * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
384 process-filter.
385
386 2007-08-06 Martin Rudalics <rudalics@gmx.at>
387
388 * help.el (resize-temp-buffer-window): Use window-full-width-p
389 instead of comparing frame-width and window-width.
390
391 2007-08-05 Peter Povinec <ppovinec <at> yahoo.com> (tiny change)
392
393 * term.el: Honor term-default-fg-color and term-default-bg-color
394 settings when modifying term-current-face.
395 (term-default-fg-color, term-default-bg-color): Initialize from
396 default term-current-face.
397 (term-mode, term-reset-terminal): Set term-current-face with
398 term-default-fg-color and term-default-bg-color.
399 (term-handle-colors-array): term-current-face has term-default-fg-color
400 and term-default-bg-color after reset escape sequence.
401 (term-handle-colors-array): Set term-current-color with
402 term-default-fg/bg-color instead of ansi-term-color-vector when the
403 index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
404
405 2007-08-05 Michael Albinus <michael.albinus@gmx.de>
406
407 * files.el (set-auto-mode): Handle also remote files wrt
408 `auto-mode-alist'.
409
410 * net/tramp.el (tramp-handle-file-remote-p): Return a string as
411 remote identification.
412
413 2007-08-04 Glenn Morris <rgm@gnu.org>
414
415 * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
416 zero, not nil, when the library is first loaded. Check for a file
417 that has been modified on disk.
418
419 * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
420 Remove duplicate defvar preventing initialization.
421 (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
422
423 2007-08-03 Miles Bader <miles@gnu.org>
424
425 * vc-hooks.el (vc-handled-backends): Change capitalization of VC
426 backend names for new backends to `Git', `Hg', and `Bzr'.
427 * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
428 not `HG'.
429 * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
430 name, not `GIT'.
431 * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
432 (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
433
434 2007-08-03 Glenn Morris <rgm@gnu.org>
435
436 * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
437
438 2007-08-02 Richard Stallman <rms@gnu.org>
439
440 * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
441 to update deleted flag.
442
443 * cus-edit.el (customize-apropos, customize-apropos-options)
444 (customize-apropos-faces, customize-apropos-groups): Improve prompt.
445
446 * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
447
448 * startup.el (fancy-splash-head, startup-echo-area-message):
449 Change message text.
450
451 * emulation/tpu-edt.el (next-line-internal): Setting deleted.
452 All callers use line-move.
453
454 * progmodes/compile.el (compilation-find-buffer): Return current
455 buffer immediately if suitable.
456 (compile, compilation-buffer-name, compilation-start): Doc fixes.
457
458 2007-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
459
460 * vc-bzr.el (vc-bzr-admin-dirstate): Rename from `...-dirname'.
461 Make it more discriminating and more useful.
462 (vc-bzr-root-dir): Use new name.
463 (vc-bzr-registered): Use new name and look at the dirstate file to
464 determine if it's registered or not without running `bzr'.
465
466 2007-08-01 Eric Hanchrow <offby1@blarg.net> (tiny change)
467
468 * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
469
470 2007-07-31 Drew Adams <drew.adams@oracle.com>
471
472 * cus-edit.el (custom-group-value-create, custom-goto-parent):
473 Fix parent groups link.
474
475 2007-07-31 Daiki Ueno <ueno@unixuser.org>
476
477 * faces.el (face-normalize-spec): New function.
478 (frame-set-background-mode): Normalize face-spec before calling
479 face-spec-match-p.
480
481 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
482
483 * vc-bzr.el: New file (copied from the trunk).
484
485 * vc-hooks.el (vc-handled-backends): Add BZR.
486 (vc-find-file-hook): Failsafe if the backend's `registered'
487 function burps.
488
489 * server.el (server-window): Add switch-to-buffer-other-frame option.
490
491 2007-07-30 Dan Nicolaescu <dann@ics.uci.edu>
492
493 * vc-git.el (vc-directory-exclusion-list, vc-handled-backends): Remove.
494 (vc-git-revision-completion-table): Enable.
495
496 * vc-hooks.el (vc-handled-backends): Add GIT and HG.
497
498 * vc.el (vc-directory-exclusion-list): Add .git and .hg.
499
500 * vc-hg.el (vc-hg-revision-completion-table): Re-enable.
501 (vc-hg-registered): Set the vc-state property.
502
503 * diff-mode.el (diff-mode-menu): New entries.
504
505 2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
506
507 * diff-mode.el (diff-beginning-of-file-and-junk): New function.
508 (diff-file-kill): Use it.
509 (diff-beginning-of-hunk): Add arg `try-harder' using it.
510 (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
511 Use it so they find the hunk even when we're in the file header.
512
513 * vc.el: Add new VC operation `revision-completion-table'.
514 (vc-default-revision-completion-table): New function.
515 (vc-version-diff, vc-version-other-window): Use it to provide
516 completion of revision names if the backend provides it.
517
518 * vc-arch.el (vc-arch--version-completion-table)
519 (vc-arch-revision-completion-table): New functions to provide
520 completion of revision names.
521
522 * vc-cvs.el: Require CL.
523 (vc-cvs-revision-table, vc-cvs-revision-completion-table):
524 New functions to provide completion of revision names.
525
526 2007-07-29 Kimit Yada <kimitto@gmail.com> (tiny change)
527
528 * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
529 (copyright-fix-years, copyright): Correctly handle the case where
530 copyright-limit is nil.
531
532 2007-07-28 Konstantin Novitsky <knovitsk@Bear.com> (tiny change)
533
534 * progmodes/python.el (run-python): Fix path separator under w32.
535
536 2007-07-28 Dan Nicolaescu <dann@ics.uci.edu>
537
538 * vc-git.el: New File.
539
540 2007-07-28 Alan Mackenzie <acm@muc.de>
541
542 Fix problem with modes derived from CC Mode:
543 * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
544 macro to cc-langs.
545 (c-init-language-vars-for): Remove call to above macro.
546 * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
547 been moved to here.
548 (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
549
550 2007-07-28 Eli Zaretskii <eliz@gnu.org>
551
552 * net/trampver.el: Fix the `coding' cookie.
553
554 2007-07-25 Nick Roberts <nickrob@snap.net.nz>
555
556 * add-log.el (change-log-redate): Remove (not needed anymore and
557 doesn't appear to work).
558
559 2007-07-25 Glenn Morris <rgm@gnu.org>
560
561 * Relicense all FSF files to GPLv3 or later.
562
563 * COPYING: Switch to GPLv3.
564
565 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
566
567 * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
568 Replace it with another one which disables undo before calling
569 erase-buffer and then turns it back on if needed.
570
571 2007-07-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
572
573 * ps-print.el: Problem with foreground and background color when
574 printing a buffer with and without faces. Reported by Christian
575 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
576 (ps-print-version): New version 6.7.5.
577 (ps-default-fg): Change default value to nil, so black color is used
578 when a face does not specify a foreground color.
579 (ps-default-bg): Change default value to nil, so white color is used
580 for background color.
581 (ps-begin-job): Fix code.
582
583 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
584
585 * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
586
587 2007-07-24 Alan Mackenzie <acm@muc.de>
588
589 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
590 Initialise byte-compile-unresolved-functions before rather than
591 after a compilation.
592 (byte-compile-unresolved-functions): Amplify doc string.
593
594 2007-07-24 Glenn Morris <rgm@gnu.org>
595
596 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
597 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
598 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
599 (cal-tex-cursor-week, cal-tex-cursor-week2)
600 (cal-tex-cursor-week-iso, cal-tex-week-hours)
601 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
602 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
603 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
604
605 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
606
607 * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
608
609 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
610
611 * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
612 underlying file is uptodate.
613
614 2007-07-23 Richard Stallman <rms@gnu.org>
615
616 * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
617
618 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
619
620 * progmodes/sh-script.el (sh-font-lock-backslash-quote)
621 (sh-font-lock-flush-syntax-ppss-cache): New funs.
622 (sh-font-lock-syntactic-keywords): Use them to distinguish the
623 different possible cases for \'.
624 (sh-font-lock-paren): Mark the relevant text with font-lock-multiline.
625
626 * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
627 `file' from which to start the search and fix case where `file' is the
628 current directory and the root as well.
629
630 * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
631 name for buffer-file-name if it refers to a directory.
632
633 2007-07-22 Jason Rumney <jasonr@gnu.org>
634
635 * w32-fns.el (set-default-process-coding-system): Use dos line ends
636 for input to cmdproxy on all versions of Windows.
637 Use dos line ends for input to plink.
638
639 * comint.el (comint-simple-send): Concat newline before sending.
640 (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
641
642 2007-07-22 Juri Linkov <juri@jurta.org>
643
644 * isearch.el (isearch-edit-string): Save old point and
645 isearch-other-end to old-point and old-other-end before reading
646 the search string from minibuffer. After exiting minibuffer set
647 point to old-other-end if point and the search direction is the
648 same as before reading the search string.
649 (isearch-del-char): Don't set isearch-yank-flag to t. Put point
650 to isearch-other-end. Instead of isearch-search-and-update call
651 three functions isearch-search, isearch-push-state and isearch-update.
652
653 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
654
655 * textmodes/reftex.el (reftex-access-parse-file): Do not risk
656 destroying an existing buffer.
657
658 2007-07-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
659
660 * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
661
662 * term/x-win.el (x-handle-no-bitmap-icon): New function.
663
664 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
665
666 * textmodes/reftex.el (reftex-access-parse-file): Create parse
667 file in a way that does not interfere with recentf.
668
669 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
670
671 * image-dired.el (image-dired-sane-db-file): New func.
672 (image-dired-write-tags, image-dired-remove-tag)
673 (image-dired-list-tags, image-dired-write-comments)
674 (image-dired-get-comment, image-dired-mark-tagged-files)
675 (image-dired-create-gallery-lists): Call new func.
676 Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
677
678 2007-07-21 Dan Nicolaescu <dann@ics.uci.edu>
679
680 * vc-hg.el (vc-hg-diff): Use vc-hg-command.
681 (vc-hg-dir-state): Fix loop.
682 (vc-hg-print-log): Fix expected return value for vc-hg-command.
683 (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
684 (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
685 (vc-hg-revert): Likewise.
686 (vc-hg-revision-table, vc-hg-revision-completion-table): New functions.
687
688 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
689
690 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
691 case of alignment under a constant symbol, find and consider
692 the sexp actually at indentation to be the "last sexp".
693
694 2007-07-20 Eli Zaretskii <eliz@gnu.org>
695
696 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
697 (install): Use them to copy all *.el files before *.elc.
698 (clean): Don't delete *~.
699
700 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
701
702 * vc-hg.el (vc-hg-workfile-unchanged-p): New function.
703
704 2007-07-19 Dan Nicolaescu <dann@ics.uci.edu>
705
706 * vc-hg.el (vc-hg-registered): Replace if with when.
707 (vc-hg-state): Deal with nonexistent files.
708
709 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
710
711 * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
712 (follow-delete-other-windows-and-split, follow-recenter)
713 (follow-windows-aligned-p, follow-point-visible-all-windows-p)
714 (follow-redisplay, follow-estimate-first-window-start)
715 (follow-xemacs-scrollbar-support, follow-intercept-process-output):
716 Fix typos in docstrings.
717
718 2007-07-17 Thien-Thi Nguyen <ttn@gnuvola.org>
719
720 * bookmark.el (bookmark-show-all-annotations):
721 Make sure each inserted annotation ends with newline.
722
723 (bookmark-maybe-sort-alist): Don't modify
724 bookmark-alist. Instead, if not sorting, simply return it.
725 (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
726 for its return value, not for its side effect.
727
728 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
729
730 * vc.el: Add more info about the vc-registered function.
731
732 2007-07-16 David Kastrup <dak@gnu.org>
733
734 * emacs-lisp/advice.el (defadvice): Doc fix.
735
736 2007-07-16 Juanma Barranquero <lekktu@gmail.com>
737
738 * subr.el (when, unless): Doc fix.
739
740 2007-07-16 Dan Nicolaescu <dann@ics.uci.edu>
741
742 * vc-hg.el (vc-hg-state): Handle removed files.
743 (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
744 (vc-hg-checkout): Re-enable.
745
746 2007-07-15 Richard Stallman <rms@gnu.org>
747
748 * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
749
750 * tutorial.el (tutorial--find-changed-keys):
751 Handle C-x specially like ESC.
752
753 2007-07-15 Roland McGrath <roland@frob.com>
754
755 * add-log.el (add-change-log-entry): Check add-log-full-name
756 and add-log-mailing-address later, after change-log-mode-hook.
757
758 2007-07-15 Richard Stallman <rms@gnu.org>
759
760 * isearch.el (isearch-mode, isearch-done):
761 Delete unintended code in previous change.
762
763 * ps-print.el (ps-default-bg): Change to White.
764
765 2007-07-15 Aaron Hawley <aaronh@garden.org>
766
767 * tar-mode.el (tar-get-descriptor): No error for zero-length file.
768
769 2007-07-15 Martin Rudalics <rudalics@gmx.at>
770
771 * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
772 when handling the terminating event.
773
774 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change)
775
776 * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
777
778 2007-07-13 Eli Zaretskii <eliz@gnu.org>
779
780 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
781 (install): Use them to copy all *.el files before *.elc.
782
783 2007-07-13 Dan Nicolaescu <dann@ics.uci.edu>
784
785 * replace.el (match): Use yellow1 instead of yellow.
786
787 * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of red.
788
789 * pcvs-info.el (cvs-unknown): Likewise.
790
791 2007-07-12 Davis Herring <herring@lanl.gov>
792
793 * desktop.el (desktop-buffer-info, desktop-save):
794 Use `desktop-dirname' instead of `dirname'.
795
796 2007-07-10 Jim Meyering <jim@meyering.net> (tiny change)
797
798 * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
799
800 * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
801
802 2007-07-10 Richard Stallman <rms@gnu.org>
803
804 * emacs-lisp/lisp-mode.el (eval-defun):
805 Explain special handling of `defface'.
806
807 2007-07-09 Richard Stallman <rms@gnu.org>
808
809 * isearch.el (isearch-edit-string): Call to isearch-push-state
810 after the search.
811
812 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
813
814 * cus-start.el (file-coding-system-alist): Fix custom type.
815
816 2007-07-08 Chong Yidong <cyd@stupidchicken.com>
817
818 * longlines.el (longlines-wrap-region): Avoid marking buffer as
819 modified.
820 (longlines-auto-wrap, longlines-window-change-function):
821 Remove unnecessary calls to set-buffer-modified-p.
822
823 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * vc.el (vc-default-log-view-mode): New function.
826 (vc-print-log): Add new `log-view-mode' VC operation.
827
828 2007-07-08 Nick Roberts <nickrob@snap.net.nz>
829
830 * pcvs-util.el (cvs-strings->string, cvs-string->strings):
831 Rename and move to...
832
833 * subr.el (strings->string, string->strings): ...here.
834
835 * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
836 (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
837
838 * progmodes/gud.el (gud-common-init): Call string->strings instead
839 of split-string.
840
841 2007-07-07 Eli Zaretskii <eliz@gnu.org>
842
843 * term/w32-win.el (menu-bar-open): New function.
844 Bind <f10> to it.
845
846 2007-07-07 Dan Nicolaescu <dann@ics.uci.edu>
847
848 * log-view.el (log-view-mode-menu): New menu.
849
850 2007-07-06 Dan Nicolaescu <dann@ics.uci.edu>
851
852 * vc-hg.el: New file.
853
854 2007-07-06 Andreas Schwab <schwab@suse.de>
855
856 * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
857 dynamic bindings around the evaluation of the expression.
858 Reported by Jay Belanger <jay.p.belanger@gmail.com>.
859
860 2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
861
862 * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
863 file names.
864
865 2007-07-02 Martin Rudalics <rudalics@gmx.at>
866
867 * help-mode.el (help-make-xrefs): Skip spaces too when skipping tabs.
868
869 * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
870 event is not a cons cell. Do not unread drag-mouse-1 events.
871 Select right window in check whether space was stolen from
872 window above.
873
874 2007-07-01 Richard Stallman <rms@gnu.org>
875
876 * files.el (find-file-visit-truename): Fix safe-local-variable value.
877
878 2007-06-29 Juanma Barranquero <lekktu@gmail.com>
879
880 * generic-x.el (generic-define-mswindows-modes)
881 (generic-define-unix-modes, apache-log-generic-mode)
882 (bat-generic-mode-keymap, java-manifest-generic-mode)
883 (show-tabs-generic-mode): Fix typos in docstrings.
884
885 2007-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
886
887 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
888 replace-regexp-in-string.
889
890 2007-06-28 Andreas Schwab <schwab@suse.de>
891
892 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
893 $(lisp)/subdirs.el.
894
895 2007-06-28 Juanma Barranquero <lekktu@gmail.com>
896
897 * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
898 the speedbar frame if nil; that deletes the current frame or
899 causes an error if it is the only frame.
900 Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
901
902 2007-06-24 Juanma Barranquero <lekktu@gmail.com>
903
904 * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
905 directory where the desktop file was found, as the docstring says.
906 (desktop-kill): Use `read-directory-name'.
907
908 * desktop.el (desktop-load-locked-desktop): New option.
909 (desktop-read): Use it.
910 (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
911 Use `when'.
912
913 2007-06-24 Davis Herring <herring@lanl.gov>
914
915 * desktop.el (desktop-save-mode-off): New function.
916 (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
917 (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
918 (desktop-claim-lock, desktop-release-lock): New functions.
919 (desktop-kill): Tell `desktop-save' that this is the last save.
920 Release the lock afterwards.
921 (desktop-buffer-info): New function.
922 (desktop-save): Use it. Run `desktop-save-hook' where the doc
923 says to. Detect conflicts, and manage the lock.
924 (desktop-read): Detect conflicts. Manage the lock.
925
926 2007-06-23 Eli Zaretskii <eliz@gnu.org>
927
928 * ls-lisp.el (insert-directory): If an invalid regexp error is
929 thrown, try using FILE as a literal file name, not a wildcard.
930 Check for FILE as an existing file, not just a directory.
931
932 2007-06-23 Juanma Barranquero <lekktu@gmail.com>
933
934 * ruler-mode.el (ruler-mode): Prevent clobbering the original
935 `header-line-format' when reentering ruler mode.
936
937 2007-06-23 Eli Zaretskii <eliz@gnu.org>
938
939 * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
940 FILE exists as a directory.
941
942 2007-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
943
944 * vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
945 (vera-font-lock-match-item): Fix doc string.
946 (vera-in-comment-p): Remove unused function.
947 (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
948 use `syntax-ppss'.
949 (vera-forward-syntactic-ws): Fix argument order.
950 (vera-prepare-search): Use `with-syntax-table'.
951 (vera-indent-line): Fix doc string.
952 (vera-electric-tab): Fix doc string.
953 (vera-expand-abbrev): Define alias instead of using `fset'.
954 (vera-comment-uncomment-region): Use `comment-start-skip'.
955
956 2007-06-20 Reto Zimmermann <reto@gnu.org>
957
958 * progmodes/vera-mode.el: New file.
959
960 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
961
962 * ido.el (ido-find-file-in-dir): Don't signal an error for
963 empty directories.
964
965 2007-06-18 Alan Mackenzie <acm@muc.de>
966
967 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
968 When removing lines, also remove the \n. Correction of patch of
969 2007-04-21.
970
971 2007-06-17 Glenn Morris <rgm@gnu.org>
972
973 * lpr.el (lpr-page-header-switches): Move %s to separate element
974 for correct quoting. Doc fix.
975
976 2007-06-13 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
977
978 * term/xterm.el (terminal-init-xterm): Escape parens in character
979 constants.
980
981 2007-06-12 Ralf Angeli <angeli@caeruleus.net>
982
983 * scroll-lock.el (scroll-lock-mode): Doc fix.
984
985 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
986
987 * font-lock.el (font-lock-add-keywords): In case font-lock was only
988 half-activated, forcefully activate it completely.
989
990 2007-06-11 Richard Stallman <rms@gnu.org>
991
992 * cus-edit.el (custom-variable-type): Doc fix.
993
994 2007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
995
996 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
997
998 2007-06-09 Davis Herring <herring@lanl.gov>
999
1000 * desktop.el (desktop-minor-mode-table): Doc fix.
1001
1002 2007-06-08 Chong Yidong <cyd@stupidchicken.com>
1003
1004 * image-mode.el (image-forward-hscroll, image-backward-hscroll)
1005 (image-next-line, image-previous-line, image-scroll-up)
1006 (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
1007 New functions.
1008 (image-mode-map): Remap motion commands.
1009 (image-mode-text-map): New keymap for viewing images as text.
1010 (image-mode): Use image-mode-map.
1011 (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
1012
1013 2007-06-07 Michael Albinus <michael.albinus@gmx.de>
1014
1015 Sync with Tramp 2.0.56.
1016
1017 * net/tramp.el:
1018 * net/tramp-ftp.el:
1019 * net/tramp-smb.el:
1020 * net/tramp-util.el:
1021 * net/tramp-vc.el:
1022 Don't load cl.el, because that pollutes the namespace. Replace cl
1023 macros by their implementations where necessary. Requested by
1024 Richard Stallman <rms@gnu.org>.
1025
1026 * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
1027 doesn't exist.
1028 (with-parsed-tramp-file-name): Protect debug spec during compilation.
1029 (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
1030 (tramp-file-name-p, tramp-file-name-multi-method)
1031 (tramp-file-name-method, tramp-file-name-user)
1032 (tramp-file-name-host, tramp-file-name-localname): New defuns,
1033 replacing defstruct `tramp-file-name'.
1034 (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
1035 (tramp-dissect-file-name, tramp-dissect-multi-file-name):
1036 Apply `vector' instead of `make-tramp-file-name'.
1037 (tramp-handle-make-auto-save-file-name):
1038 Apply `tramp-temporary-file-directory' for compatibility reasons.
1039 (tramp-completion-mode): Use `natnump' instead of `wholenump'
1040 because of XEmacs.
1041 (tramp-completion-mode): `last-input-event' is nil when XEmacs is
1042 started.
1043
1044 2007-06-07 David Kastrup <dak@gnu.org>
1045
1046 * dired.el (dired-recursive-deletes, dired-recursive-copies):
1047 Change default to `top'.
1048
1049 2007-06-07 Chong Yidong <cyd@stupidchicken.com>
1050
1051 * dired.el (dired-mode-map): Remove spurious separator.
1052
1053 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
1054
1055 * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
1056
1057 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
1058 * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
1059
1060 2007-06-07 Alfred M. Szmidt <ams@gnu.org> (tiny change)
1061
1062 * mail/rmailsum.el (rmail-summary-save-buffer): New command.
1063 (rmail-summary-mode-map): Add rmail-summary-save-buffer.
1064
1065 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
1066
1067 * progmodes/ebrowse.el (ebrowse-member-table):
1068 * textmodes/org.el (org-export-ascii-bullets): Fix typos in docstrings.
1069
1070 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
1071
1072 * pgg.el (pgg-sign-region, pgg-sign):
1073 * ses.el (ses-call-printer):
1074 * calendar/icalendar.el (icalendar--diarytime-to-isotime):
1075 * textmodes/org.el (org-cycle): Fix typos in docstrings.
1076
1077 2007-06-06 Eli Zaretskii <eliz@gnu.org>
1078
1079 * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
1080 (tar-get-descriptor): Handle type 55, an extended pax header.
1081
1082 2007-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1083
1084 * textmodes/css-mode.el: New file.
1085
1086 2007-06-06 Michael Albinus <michael.albinus@gmx.de>
1087
1088 * net/socks.el: New file, taken from w3 repository.
1089 (top): Update Copyright. Don't load cl.el.
1090 (all): Replace `case' by `cond', `string-to-int' by
1091 `string-to-number', and `process-kill-without-query' by
1092 `set-process-query-on-exit-flag'.
1093 (socks-char-int): Remove defalias and all occurrences.
1094
1095 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
1096
1097 * international/mule-cmds.el (toggle-enable-multibyte-characters)
1098 (sort-coding-systems, search-unencodable-char): Doc fixes.
1099 (coding-system-change-eol-conversion, set-default-coding-systems)
1100 (prefer-coding-system, find-multibyte-characters, princ-list)
1101 (leim-list-entry-regexp, set-input-method, locale-language-names)
1102 (input-method-exit-on-first-char, exit-language-environment-hook)
1103 (locale-charset-language-names): Fix typos in docstrings.
1104
1105 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
1106
1107 * bs.el (bs-cycle-previous): Don't modify the cycle list until
1108 `switch-to-buffer' has returned succesfully.
1109 (bs-cycle-next): Ditto. Also, don't bury the buffer when the
1110 window is dedicated (it could iconify the frame).
1111
1112 2007-06-05 Glenn Morris <rgm@gnu.org>
1113
1114 * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
1115
1116 2007-06-05 Chong Yidong <cyd@stupidchicken.com>
1117
1118 * files.el (auto-mode-alist): Add lower-priority match for names
1119 like ChangeLog.old.
1120
1121 2007-06-04 Andreas Schwab <schwab@suse.de>
1122
1123 * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
1124
1125 2007-06-04 Davis Herring <herring@lanl.gov>
1126
1127 * calendar/timeclock.el: Update version number.
1128 (timeclock-modeline-display): Mention timeclock-use-display-time
1129 in explanatory message.
1130 (timeclock-log): Suppress warnings when finding the log.
1131 Don't check for a nil project twice. Run hooks after killing the
1132 buffer (if applicable).
1133 (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
1134 was geometric). All uses changed.
1135 (timeclock-generate-report): Support prefix argument.
1136
1137 2007-06-04 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1138
1139 * man.el (Man-next-section): Don't consider the last line of the
1140 page as being part of any section.
1141
1142 2007-06-04 Martin Rudalics <rudalics@gmx.at>
1143
1144 * hilit-chg.el (highlight-changes-rotate-faces): Don't set
1145 modified flag of buffer. Use `inhibit-modification-hooks'.
1146
1147 2007-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
1148
1149 * mail/mail-extr.el (mail-extract-address-components):
1150 Recognize non-ASCII characters except for NBSP as words.
1151
1152 2007-06-04 Ryan Yeske <rcyeske@gmail.com>
1153
1154 * net/webjump.el (webjump-sample-sites): Add Wikipedia query.
1155
1156 2007-06-04 Michael Olson <mwolson@gnu.org>
1157
1158 * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
1159 died and we are trying to send a signal to it.
1160
1161 2007-06-04 Juanma Barranquero <lekktu@gmail.com>
1162
1163 * emacs-lisp/easy-mmode.el (define-minor-mode)
1164 (easy-mmode-define-navigation): Fix typos in docstrings.
1165
1166 * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
1167 Fix typos in docstrings.
1168 (compilation-search-path, compilation-buffer-name-function): Doc fixes.
1169 (compilation-finish-function): Fix typo in obsolescence declaration.
1170
1171 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
1172
1173 2007-06-04 Chong Yidong <cyd@stupidchicken.com>
1174
1175 * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
1176 (magic-fallback-mode-alist): Add image-type-auto-detected-p.
1177
1178 * image.el (image-type-auto-detected-p): Don't scan auto-mode-alist.
1179
1180 * longlines.el (longlines-mode): Make longlines-auto-wrap
1181 buffer-local. Add hooks unconditionally.
1182 (longlines-auto-wrap): Toggle wrapping.
1183 (longlines-after-change-function)
1184 (longlines-post-command-function): Check longlines-auto-wrap.
1185
1186 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
1187
1188 * Version 22.1 released.
1189
1190 2007-06-01 Chong Yidong <cyd@stupidchicken.com>
1191
1192 * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
1193 changes.
1194
1195 2007-05-31 Richard Stallman <rms@gnu.org>
1196
1197 * dired.el (dired-do-delete, dired-do-flagged-delete): Doc fixes.
1198
1199 2007-05-29 Martin Rudalics <rudalics@gmx.at>
1200
1201 * textmodes/table.el (table--point-entered-cell-function)
1202 (table--point-left-cell-function):
1203 Bind `inhibit-point-motion-hooks' to t.
1204
1205 2007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
1206
1207 * emacs-lisp/rx.el (rx): Doc fix.
1208
1209 2007-05-28 Chong Yidong <cyd@stupidchicken.com>
1210
1211 * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
1212
1213 2007-05-27 Tetsurou Okazaki <okazaki@be.to> (tiny change)
1214
1215 * log-edit.el (log-edit-changelog-paragraph): Return point-max
1216 as the end of the ChangeLog paragraph when it ends without a line
1217 termination.
1218
1219 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1220
1221 * textmodes/fill.el (canonically-space-region): Make the second arg
1222 a marker if it's not already the case.
1223
1224 * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
1225 (xterm-mouse-event): Use it.
1226
1227 2007-05-25 Miles Bader <miles@fencepost.gnu.org>
1228
1229 * vc-hooks.el (vc-find-root): Fix file attribute test.
1230
1231 2007-05-24 Richard Stallman <rms@gnu.org>
1232
1233 * textmodes/flyspell.el (flyspell-correct-word-before-point):
1234 Don't let opoint be nil.
1235 (flyspell-emacs-popup): Explicit error if no dialogs.
1236
1237 2007-05-23 Eli Zaretskii <eliz@gnu.org>
1238
1239 * tar-mode.el (tar-file-name-handler): New function.
1240 (tar-extract): Bind file-name-handler-alist to it to force
1241 find-buffer-file-type-coding-system behave as if the file being
1242 extracted existed. Use last-coding-system-used to force
1243 buffer-file-coding-system to what decode-coding-region actually
1244 used to decode the file.
1245
1246 2007-05-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
1247
1248 * progmodes/compile.el (compilation-handle-exit):
1249 `compilation-finish-function' may change the current buffer.
1250
1251 2007-05-22 Richard Stallman <rms@gnu.org>
1252
1253 * files.el (set-auto-mode): Doc fix.
1254
1255 2007-05-22 Eli Zaretskii <eliz@gnu.org>
1256
1257 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
1258
1259 2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
1260
1261 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
1262 (rcirc-print): Handle `window-width'.
1263 (rcirc-buffer-maximum-lines): Doc fix.
1264
1265 2007-05-19 Kevin Ryde <user42@zip.com.au>
1266
1267 * info.el (Info-fontify-node): Match https also.
1268
1269 2007-05-18 Richard Stallman <rms@gnu.org>
1270
1271 * simple.el (push-mark): Doc fix.
1272
1273 2007-05-18 Rob Riepel <riepel@Stanford.EDU>
1274
1275 * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
1276 tpu-global-map.
1277 (tpu-original-global-map): Delete variable.
1278 (tpu-control-keys-map): New keymap variable.
1279 (tpu-set-control-keys): Use tpu-reset-control-keys rather than
1280 setting keymapping directly.
1281 (tpu-reset-control-keys): Use tpu-control-keys-map instead of
1282 tpu-global-map.
1283 (tpu-edt-on): Activate the tpu-global-map.
1284 (tpu-edt-off): Deactivate the tpu-global-map.
1285
1286 2007-05-18 Ryan Yeske <rcyeske@gmail.com>
1287
1288 * textmodes/ispell.el (ispell-get-word): Return markers
1289 for start and end positions.
1290 (ispell-word): Assume END is a marker.
1291
1292 2007-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1293
1294 * ps-print.el: Use default color when foreground or background color
1295 are unspecified. Reported by Leo <sdl.web@gmail.com>.
1296 (ps-print-version): New version 6.7.4.
1297 (ps-rgb-color): New argument. Use default color when color is
1298 unspecified.
1299 (ps-begin-job): Fix code.
1300
1301 2007-05-17 Martin Rudalics <rudalics@gmx.at>
1302
1303 * textmodes/ispell.el (ispell-start-process): Defend against bad
1304 default-directory.
1305
1306 2007-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1307
1308 * vc-hooks.el (vc-find-root): Stop searching when the user changes.
1309
1310 2007-05-16 Richard Stallman <rms@gnu.org>
1311
1312 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
1313
1314 2007-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
1315
1316 * files.el (magic-mode-alist, magic-fallback-mode-alist):
1317 Move the *ml, Postscript, and XmCD entries to the fallback part.
1318
1319 * files.el (magic-fallback-mode-alist):
1320 Rename from file-start-mode-alist.
1321
1322 2007-05-16 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
1323
1324 * progmodes/compile.el (compilation-handle-exit): Quote first
1325 argument of `run-hook-with-args'.
1326
1327 2007-05-16 Juanma Barranquero <lekktu@gmail.com>
1328
1329 * buff-menu.el (Buffer-menu-sort-column):
1330 * dabbrev.el (dabbrev-upcase-means-case-search):
1331 * dired.el (dired-recursive-deletes, dired-recursive-copies):
1332 * info.el (Info-current-subfile):
1333 * ls-lisp.el (ls-lisp-verbosity):
1334 * msb.el (msb-menu-cond):
1335 * pcvs.el (cvs-dired-use-hook):
1336 * simple.el (set-mark-command-repeat-pop):
1337 * time.el (display-time-24hr-format, display-time-mail-file):
1338 Doc fixes.
1339
1340 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
1341 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
1342
1343 * view.el (view-inhibit-help-message): Fix typo in docstring.
1344 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
1345
1346 2007-05-14 Eli Zaretskii <eliz@gnu.org>
1347
1348 * mail/rmail.el (rmail-convert-to-babyl-format):
1349 Check content-transfer-encoding _last_, because we need its position
1350 in base64-header-field-end.
1351
1352 2007-05-14 Juanma Barranquero <lekktu@gmail.com>
1353
1354 * files.el (mode-require-final-newline, require-final-newline)
1355 (enable-local-variables, enable-local-eval): Doc fixes.
1356
1357 2007-05-10 Edward O'Connor <hober0@gmail.com> (tiny change)
1358
1359 * progmodes/python.el (python-font-lock-keywords)
1360 (python-open-block-statement-p, python-mode): Add support for the new
1361 "with" keyword.
1362
1363 2007-05-10 Richard Stallman <rms@gnu.org>
1364
1365 * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
1366 (iso-cvt-write-only): Likewise.
1367
1368 * emacs-lisp/easy-mmode.el (define-minor-mode):
1369 Fix generated doc string.
1370
1371 * startup.el (fancy-splash-text): Add URL of guided tour.
1372 Adjust horizontal and vertical whitespace.
1373
1374 * progmodes/compile.el (compilation-handle-exit):
1375 Use run-hook-with-args to run compilation-finish-functions.
1376
1377 * files.el (file-start-mode-alist): New variable.
1378 (magic-mode-regexp-match-limit): Doc fix.
1379 (set-auto-mode): Handle file-start-mode-alist.
1380 A little cleanup of structure.
1381
1382 2007-05-10 Davis Herring <herring@lanl.gov>
1383
1384 * calendar/timeclock.el (timeclock-in): Fix non-interactive
1385 workday specifications.
1386 (timeclock-log): Don't kill the log buffer if it already existed.
1387
1388 2007-05-08 Richard Stallman <rms@gnu.org>
1389
1390 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
1391 Don't include non-self-insert commands in the exception for `-'.
1392
1393 2007-05-08 David Reitter <david.reitter@gmail.com>
1394
1395 * progmodes/python.el (python-guess-indent): Check non-nullness
1396 before comparing indent against the 2..8 interval.
1397
1398 2007-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1399
1400 * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
1401 available.
1402
1403 2007-05-06 Richard Stallman <rms@gnu.org>
1404
1405 * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
1406
1407 2007-05-03 Ryan Yeske <rcyeske@gmail.com>
1408
1409 * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
1410 disconnections.
1411
1412 2007-05-01 Romain Francoise <romain@orebokech.com>
1413
1414 * dired-x.el: Revert 2007-04-06 change.
1415
1416 2007-04-30 Nick Roberts <nickrob@snap.net.nz>
1417
1418 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
1419 don't put stop on toolbar.
1420
1421 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net>
1422
1423 * find-dired.el (find-dired-filter): Propertize all text down to eob.
1424
1425 2007-04-29 Richard Stallman <rms@gnu.org>
1426
1427 * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
1428
1429 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1430
1431 * progmodes/cc-mode.el (c-before-change): Use point-min rather
1432 than 1.
1433
1434 2007-04-28 Richard Stallman <rms@gnu.org>
1435
1436 * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
1437
1438 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
1441
1442 2007-04-28 Eli Zaretskii <eliz@gnu.org>
1443
1444 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
1445 instead of $(lisp)/mh-e.
1446
1447 * textmodes/fill.el (fill-paragraph): Doc fix.
1448
1449 2007-04-28 Glenn Morris <rgm@gnu.org>
1450
1451 * image-dired.el (image-dired-cmd-create-thumbnail-options)
1452 (image-dired-cmd-create-temp-image-options): Replace option
1453 +profile "*" with -strip.
1454
1455 2007-04-27 Chong Yidong <cyd@stupidchicken.com>
1456
1457 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
1458 Use window-start and window-end.
1459
1460 2007-04-26 Glenn Morris <rgm@gnu.org>
1461
1462 * progmodes/python.el: Restore file pending consideration of legal
1463 status.
1464
1465 2007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
1466
1467 * locate.el (locate-in-alternate-database): Doc fix.
1468
1469 2007-04-26 Glenn Morris <rgm@gnu.org>
1470
1471 * button.el (button): Use underline if supported, else fall back
1472 to color.
1473
1474 2007-04-25 Richard Stallman <rms@gnu.org>
1475
1476 * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
1477
1478 2007-04-25 J.D. Smith <jdsmith@as.arizona.edu>
1479
1480 * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
1481 (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
1482 pushing mark.
1483 (idlwave-current-routine): Don't push mark.
1484
1485 2007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
1486
1487 * image-dired.el (image-dired-display-image): Derive image-type from
1488 filename rather than assuming jpeg, in case no resizing was needed.
1489
1490 2007-04-25 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1491
1492 * custom.el (defface): Doc fix.
1493
1494 2007-04-24 Chong Yidong <cyd@stupidchicken.com>
1495
1496 * progmodes/python.el: Remove due to unclear legal issues.
1497
1498 2007-04-24 J.D. Smith <jdsmith@as.arizona.edu>
1499
1500 * progmodes/idlw-shell.el (idlwave-shell-clear-all-bp):
1501 Don't re-query for each cleared BP.
1502 (idlwave-shell-clear-bp): Optionally skip BP query.
1503 (idlwave-shell-update-bp-overlays): Use set-window-margins instead
1504 of set-window-buffer, which incorrectly moves displayed region.
1505
1506 2007-04-23 Jay Belanger <jay.p.belanger@gmail.com>
1507
1508 * calc/calc.el (calc-bug-address): Update maintainer's address.
1509 * calc/*: Update maintainer's address.
1510
1511 2007-04-23 Richard Stallman <rms@gnu.org>
1512
1513 * simple.el (set-mark-command-repeat-pop): Doc fix.
1514 Put in `editing-basics' group.
1515
1516 2007-04-23 Chong Yidong <cyd@stupidchicken.com>
1517
1518 * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down):
1519 New functions.
1520 (Info-mode-line-node-keymap): Bind mouse commands to
1521 Info-mouse-scroll-up/down instead of Info-scroll-up/down.
1522
1523 2007-04-23 Luc Teirlinck <teirllm@auburn.edu>
1524
1525 * locate.el (locate-local-prompt): New var.
1526 (locate-prompt-for-command): Doc fix.
1527 (locate-prompt-for-search-string): New function.
1528 (locate): New optional arg. Make locate-local-prompt
1529 buffer-local. Use locate-prompt-for-search-string.
1530 (locate-with-filter): New optional arg.
1531 Use locate-prompt-for-search-string.
1532 (locate-update): Bind locate-prompt-for-command.
1533
1534 2007-04-23 Glenn Morris <rgm@gnu.org>
1535
1536 * files.el (magic-mode-alist): `<!DOCTYPE HTML' in html-mode.
1537
1538 2007-04-23 Nick Roberts <nickrob@snap.net.nz>
1539
1540 * button.el (button): Inherit from link face on a tty.
1541
1542 2007-04-23 Glenn Morris <rgm@gnu.org>
1543
1544 * button.el (button): Use color for this face on a tty.
1545
1546 * files.el (magic-mode-alist): Allow for carriage-returns in
1547 html-mode and sgml-mode entries.
1548
1549 2007-04-22 Richard Stallman <rms@gnu.org>
1550
1551 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1552 Improve doc string of generated command.
1553
1554 * subr.el (read-number): Catch errors.
1555
1556 * hi-lock.el (hi-lock-file-patterns-policy): Doc fix.
1557
1558 2007-04-22 Chong Yidong <cyd@stupidchicken.com>
1559
1560 * image-dired.el: Rename from thumbnails.el. All instances of
1561 "thumbnails" replaced with "image-dired".
1562
1563 * dired.el (dired-mode-map): Rename "thumbnails" again, to
1564 "image-dired".
1565
1566 2007-04-22 Kim F. Storm <storm@cua.dk>
1567
1568 * ido.el (ido-kill-buffer-at-head, ido-delete-file-at-head):
1569 Don't use kill-line.
1570
1571 2007-04-22 Nick Roberts <nickrob@snap.net.nz>
1572
1573 * t-mouse.el (t-mouse-make-event): Pass on mev's more informative
1574 error message.
1575
1576 2007-04-22 Chong Yidong <cyd@stupidchicken.com>
1577
1578 * dired.el: Rename "tumme" to "thumbnails".
1579
1580 * thumbnails.el: Rename from tumme.el. All instances of "tumme"
1581 replaced with "thumbnails".
1582
1583 2007-04-22 Glenn Morris <rgm@gnu.org>
1584
1585 * hi-lock.el (hi-lock-file-patterns-policy): Make it a defcustom,
1586 and give it the risky-local-variable property.
1587
1588 * textmodes/flyspell.el (flyspell-define-abbrev): Downcase abbrev
1589 before defining it.
1590
1591 2007-04-21 Martin Rudalics <rudalics@gmx.at>
1592
1593 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
1594 Use delete-region instead of kill-line.
1595
1596 2007-04-21 Alan Mackenzie <acm@muc.de>
1597
1598 * progmodes/cc-cmds.el (c-electric-slash): Replace wrong use of
1599 `kill-region' by `delete-region'.
1600
1601 2007-04-21 Chong Yidong <cyd@stupidchicken.com>
1602
1603 * progmodes/perl-mode.el (perl-indent-command): Use delete-region
1604 instead of kill-region.
1605
1606 * progmodes/mantemp.el (mantemp-make-mantemps-region)
1607 (mantemp-insert-cxx-syntax, mantemp-sort-and-unique-lines)
1608 (mantemp-remove-memfuncs): Use delete-region instead of kill-word
1609 and kill-line.
1610
1611 * progmodes/vhdl-mode.el (vhdl-template-type)
1612 (vhdl-template-record, vhdl-template-nature)
1613 (vhdl-template-configuration-spec, vhdl-template-component-inst)
1614 (vhdl-template-break, vhdl-regress-line, vhdl-electric-tab):
1615 Use delete-region instead of kill-word and kill-line.
1616
1617 2007-04-21 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1618
1619 * dired-x.el (dired-virtual-mode): Doc fix.
1620
1621 2007-04-21 Richard Stallman <rms@gnu.org>
1622
1623 * font-lock.el (font-lock-keywords-alist): Mark as risky.
1624
1625 * subr.el (read-number): Doc fix.
1626
1627 * simple.el (pop-to-mark-command): Display message "mark popped"
1628 if point does not move.
1629 (set-mark-command): Doc fix.
1630
1631 2007-04-21 Luc Teirlinck <teirllm@auburn.edu>
1632
1633 * locate.el: Revert 2006-09-09 and 2007-04-20 changes.
1634 (locate-local-filter, locate-local-search): New vars.
1635 (locate): Make variables local.
1636 (locate-update): Bind locate-buffer-name. Call locate using
1637 locate-local-filter and locate-local-search.
1638
1639 2007-04-20 David Koppelman <koppel@ece.lsu.edu>
1640
1641 * hi-lock.el (hi-lock-file-patterns-policy): New var.
1642 (hi-lock-find-patterns): Use hi-lock-file-patterns-policy.
1643 (hi-lock-mode): Update docstring.
1644
1645 2007-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1646
1647 * textmodes/fill.el (fill-move-to-break-point): Don't inhibit
1648 fill-nobreak-predicate when the break is past fill-column.
1649
1650 2007-04-20 Francesco Potort\e,Al\e(B <pot@gnu.org>
1651
1652 * locate.el (locate): Output from shell-command should go in the
1653 current buffer rather than *Shell Command Output*.
1654
1655 2007-04-20 Chong Yidong <cyd@stupidchicken.com>
1656
1657 * paren.el (show-paren-function): Fix last fix.
1658
1659 2007-04-19 Kevin Ryde <user42@zip.com.au>
1660
1661 * arc-mode.el (archive-find-type): lzh-exe for lzh self-extracting exe.
1662 (archive-lzh-summarize): Add optional start arg for where to start
1663 looking at the archive.
1664 (archive-lzh-exe-summarize, archive-lzh-exe-extract): New functions.
1665
1666 * international/mule.el (auto-coding-alist): no-conversion for .exe
1667 and .EXE.
1668
1669 2007-04-19 Alan Mackenzie <acm@muc.de>
1670
1671 * progmodes/cc-cmds.el (c-in-function-trailer-p): Fix this: when a
1672 function return type contains "struct", "union", etc.
1673 c-end-of-defun goes too far forward.
1674
1675 2007-04-19 Chong Yidong <cyd@stupidchicken.com>
1676
1677 * paren.el (show-paren-function): Reset window-start to avoid
1678 recentering.
1679
1680 2007-04-19 Glenn Morris <rgm@gnu.org>
1681
1682 * calendar/todo-mode.el: Fix typo: "threshhold" -> "threshold".
1683
1684 2007-04-18 Glenn Morris <rgm@gnu.org>
1685
1686 * calendar/diary-lib.el (diary-header-line-format): Add a custom
1687 :set function.
1688 (diary-list-entries): Only switch to diary-mode from
1689 default-major-mode (reverts 2007-03-21 change). Otherwise, if in
1690 diary-mode set header-line-format, in case of any customization.
1691
1692 2007-04-18 Levin Du <zslevin@gmail.com> (tiny change)
1693
1694 * calendar/parse-time.el (parse-time-string-chars): Check if CHAR
1695 is less than the length of parse-time-syntax.
1696
1697 2007-04-17 David Kastrup <dak@gnu.org>
1698
1699 * replace.el (query-replace-regexp-eval): Deprecate.
1700
1701 2007-04-17 Alan Mackenzie <acm@muc.de>
1702
1703 * progmodes/cc-cmds.el (c-beginning-of-defun): With -ve arg and
1704 point too close to EOB, leave point at EOB rather than last `}'.
1705
1706 2007-04-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1707
1708 * textmodes/bibtex.el (bibtex-include-OPTkey)
1709 (bibtex-user-optional-fields, bibtex-entry-field-alist):
1710 Fix defcustom.
1711
1712 2007-04-17 Glenn Morris <rgm@gnu.org>
1713
1714 * calendar/cal-dst.el (calendar-dst-find-startend): If YEAR cannot
1715 be encoded, fall back to current year.
1716
1717 2007-04-14 Kevin Ryde <user42@zip.com.au>
1718
1719 * arc-mode.el (archive-lzh-summarize): Only apply the "downcase if
1720 all upcase" rule to OS-ID 0 "generic". Always downcase for OS-ID
1721 M "MSDOS".
1722
1723 2007-04-16 Chong Yidong <cyd@stupidchicken.com>
1724
1725 * progmodes/python.el (python-end-of-block): Avoid looping forever
1726 if python-next-statement fails.
1727
1728 2007-04-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1729
1730 * textmodes/bibtex.el (bibtex-entry-field-alist): Use defcustom.
1731
1732 2007-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1733
1734 * progmodes/perl-mode.el (perl-indent-level): Mark as safe local var.
1735 * progmodes/cperl-mode.el (cperl-indent-level): Likewise.
1736
1737 2007-04-15 Jay Belanger <belanger@truman.edu>
1738
1739 * calc/calc.el (calc-version): New function.
1740 (calc-trail-mode): Shorten the title.
1741
1742 2007-04-15 Chong Yidong <cyd@stupidchicken.com>
1743
1744 * mail/footnote.el (footnote-style): Clarify docstring to state
1745 that customizing this only applies to future footnotes.
1746
1747 2007-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1748
1749 * textmodes/bibtex.el (bibtex-field-list): Use functionp.
1750 (bibtex-make-field): Check that INIT is a string. Use functionp.
1751
1752 2007-04-14 Glenn Morris <rgm@gnu.org>
1753
1754 * complete.el (PC-goto-end): New buffer-local variable.
1755 (PC-do-completion-end): Make buffer-local.
1756 (partial-completion-mode) <choose-completion-string-functions>:
1757 Do not go to the end of the minibuffer if PC-goto-end is non-nil.
1758 (PC-do-completion): New optional fourth argument GOTO-END. Add a
1759 doc string. Set PC-goto-end for choose-completion.
1760 (PC-lisp-complete-symbol): Pass non-nil GOTO-END arg to
1761 PC-do-completion.
1762
1763 * textmodes/bibtex.el (bibtex-insert-kill): Pass non-nil NODELIM
1764 arg to bibtex-make-field.
1765 (bibtex-make-field): Add optional fourth arg NODELIM.
1766 Insert delimiters around INIT unless this arg is non-nil.
1767
1768 2007-04-14 Nick Roberts <nickrob@snap.net.nz>
1769
1770 * tmm.el (tmm-get-keybind): Use copy-sequence to ensure that the
1771 global map isn't modified.
1772
1773 2007-04-14 Glenn Morris <rgm@gnu.org>
1774
1775 * calendar/appt.el (appt-disp-window): Do not split small windows.
1776 Suggested by Jeff Miller <jmiller@cablespeed.com>.
1777
1778 2007-04-13 Chong Yidong <cyd@stupidchicken.com>
1779
1780 * progmodes/compile.el (compilation-start): Revert 2007-03-25 change.
1781
1782 * files.el: Ditto.
1783
1784 2007-04-13 Juanma Barranquero <lekktu@gmail.com>
1785
1786 * cus-edit.el (minibuffer, auto-save): Fix typos in docstrings.
1787
1788 * term.el (term-buffer-maximum-size, term-exec, term-escape-char)
1789 (term-set-escape-char, term-termcap-format, term-get-old-input-default)
1790 (term-skip-prompt, term-send-string, term-send-region, term-pager-page)
1791 (term-pager-help): Fix typos in docstrings.
1792
1793 * wid-edit.el (widget-documentation): Fix typo in docstring.
1794
1795 * progmodes/ebnf2ps.el (ebnf-insert-style, ebnf-merge-style):
1796 Fix typos in error messages.
1797
1798 2007-04-13 Martin Rudalics <rudalics@gmx.at>
1799
1800 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't select
1801 window marked as dedicated.
1802
1803 * mail/footnote.el (footnote-latin-string): New variable.
1804 (footnote-latin-regexp): Redefine as regexp alternative.
1805 (Footnote-latin): Use footnote-latin-string instead of
1806 footnote-latin-regexp.
1807
1808 2007-04-13 Glenn Morris <rgm@gnu.org>
1809
1810 * tmm.el (tmm-get-keybind): Use car-safe to avoid errors with
1811 inherited keymaps.
1812
1813 2007-04-12 Chong Yidong <cyd@stupidchicken.com>
1814
1815 * outline.el (outline-get-next-sibling): Clarify docstring.
1816 (outline-get-last-sibling): Handle case where we are at the first
1817 heading. Clarify docstring.
1818
1819 2007-04-12 Nick Roberts <nickrob@snap.net.nz>
1820
1821 * progmodes/gud.el (gud-minor-mode-map): Make go button same
1822 length as stop button to lessen flicker.
1823 (jdb): Add gud-print.
1824 (gud-find-expr): Jdb prints the expression with the value, so
1825 don't insert it in the output.
1826
1827 2007-04-11 Jason Rumney <jasonr@gnu.org>
1828
1829 * dnd.el (dnd-get-local-file-name): Decode both upper and lower
1830 case hex. Do not try to decode non-hex letters.
1831
1832 2007-04-11 Markus Triska <markus.triska@gmx.at>
1833
1834 * emacs-lisp/byte-opt.el (byte-optimize-backward-char)
1835 (byte-optimize-backward-word): Remove (move to bytecomp.el).
1836 (byte-optimize-form-code-walker): Evaluate pure function calls if
1837 possible.
1838 (byte-optimize-all-constp): New function.
1839
1840 * emacs-lisp/bytecomp.el (byte-compile-char-before):
1841 Improve numeric argument case.
1842 (byte-compile-backward-char, byte-compile-backward-word):
1843 New functions, performing rewriting previously done in byte-opt.el.
1844 Fix their "Fixme" item (restriction to numeric arguments).
1845
1846 2007-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1847
1848 * desktop.el (desktop-save, desktop-create-buffer): Replace mapcar
1849 with dolist.
1850 (after-init-hook): Don't quote lambda.
1851 (desktop-first-buffer): Don't wrap it in eval-when-compile.
1852 (desktop-internal-v2s): Remove unused var `el'.
1853 (desktop-buffer-major-mode, desktop-buffer-locals): Move out of
1854 desktop-restore-file-buffer.
1855 (desktop-buffer-ok-count, desktop-buffer-fail-count): Move out of
1856 desktop-create-buffer.
1857
1858 2007-04-10 Chong Yidong <cyd@stupidchicken.com>
1859
1860 * woman.el (woman-decode-buffer): Postpone macro-set check...
1861 (woman-decode-region): ...to here.
1862
1863 2007-04-10 Thien-Thi Nguyen <ttn@gnu.org>
1864
1865 * startup.el (tty-handle-args): Use %S to log ARGS.
1866
1867 2007-04-10 Glenn Morris <rgm@gnu.org>
1868
1869 * dframe.el (dframe-frame-mode): Do not set auto-show-mode, since
1870 it is obsolete and has no effect.
1871
1872 * dos-w32.el (default-buffer-file-type): Add defvar to quieten
1873 byte-compiler.
1874
1875 * progmodes/cperl-mode.el (cperl-mode): Remove unnecessary call to
1876 obsolete function make-local-hook.
1877
1878 * progmodes/dcl-mode.el (top-level): Move (require 'tempo) to
1879 start to quieten byte-compiler.
1880
1881 2007-04-10 Markus Triska <markus.triska@gmx.at>
1882
1883 * emacs-lisp/byte-opt.el (byte-optimize-char-before): Remove (move
1884 to bytecomp.el as byte-compile-char-before).
1885 * emacs-lisp/bytecomp.el (byte-compile-char-before):
1886 New function (modified replacement for byte-optimize-char-before in
1887 byte-opt.el).
1888
1889 2007-04-09 Alan Mackenzie <acm@muc.de>
1890
1891 * startup.el (inhibit-splash-screen): Emphatically state that it
1892 can't be set in site-start.el.
1893
1894 2007-04-09 Masatake YAMATO <jet@gyve.org>
1895
1896 * progmodes/cc-subword.el (c-capitalize-subword): More closely
1897 mimic the behavior of `capitalize-word'. Do not move point with a
1898 negative argument. Based on tiny change by Paul Curry.
1899
1900 2007-04-09 Paul Curry <dashteacup@gmail.com> (tiny change)
1901
1902 * progmodes/cc-subword.el (c-downcase-subword, c-upcase-subword):
1903 Don't move point if ARG is negative.
1904
1905 2007-04-09 Alan Mackenzie <acm@muc.de>
1906
1907 Changes to make `narrow-to-defun' and `mark-defun' work properly
1908 in CC Mode:
1909
1910 * progmodes/cc-defs.el (c-beginning-of-defun-1):
1911 * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
1912 Bind beginning/end-of-defun-function to nil around calls to
1913 beginning/end-of-defun.
1914
1915 * progmodes/cc-langs.el (beginning-of-defun-function)
1916 (end-of-defun-function): New c-lang-setvar's.
1917
1918 * progmodes/cc-awk.el (c-awk-beginning-of-defun): Add "(or arg
1919 (setq arg 1))" to enable non-interactive call.
1920
1921 2007-04-09 Eli Zaretskii <eliz@gnu.org>
1922
1923 * simple.el (set-mark-command): Doc fix.
1924
1925 2007-04-09 Nick Roberts <nickrob@snap.net.nz>
1926
1927 * progmodes/gud.el (gdb): Restore existing session if user
1928 tries to start a second one in graphical mode.
1929
1930 2007-04-08 Martin Rudalics <rudalics@gmx.at>
1931
1932 * cus-start.el <scroll-preserve-screen-position>: Add choices.
1933
1934 2007-04-08 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1935
1936 * term/xterm.el (terminal-init-xterm): Fix key definitions.
1937 Add binding for C-M-SPC.
1938
1939 2007-04-08 Richard Stallman <rms@gnu.org>
1940
1941 * pcomplete.el (pcomplete-read-event): One single definition,
1942 and not a defsubst.
1943
1944 2007-04-08 Chong Yidong <cyd@stupidchicken.com>
1945
1946 * progmodes/cc-cmds.el (c-end-of-defun): Tidy up, to eliminate
1947 byte-compiler warning "value unused".
1948
1949 2007-04-08 Andreas Schwab <schwab@suse.de>
1950
1951 * term/xterm.el (terminal-init-xterm): Add bindings for keypad keys.
1952
1953 2007-04-07 Glenn Morris <rgm@gnu.org>
1954
1955 * calendar/calendar.el (diary-font-lock-keywords, diary-live-p):
1956 Autoload these functions.
1957 (diary-date-forms): Add a custom :set form.
1958
1959 * calendar/diary-lib.el (diary-set-maybe-redraw): Move definition
1960 before first use.
1961 (diary-font-lock-keywords): New function with old code for
1962 initialization of variable of same name.
1963
1964 2007-04-07 David Hansen <david.hansen@gmx.net> (tiny change)
1965
1966 * progmodes/cc-cmds.el (c-electric-paren): Fix space-before-funcall
1967 clean-up: only insert space when on identifier, etc.
1968
1969 2007-04-07 Chong Yidong <cyd@stupidchicken.com>
1970
1971 * progmodes/grep.el (grep-find-use-xargs): Rewrite docstring.
1972
1973 * net/tls.el (open-tls-stream): Properly handle case where there
1974 is no associated buffer.
1975
1976 2007-04-07 Glenn Morris <rgm@gnu.org>
1977
1978 * ffap.el (ffap-file-at-point): Lower the priority of the
1979 ffap-ftp-sans-slash-regexp check.
1980
1981 2007-04-06 Alan Mackenzie <acm@muc.de>
1982
1983 Fix fontification of labels, and other things with ":".
1984
1985 * progmodes/cc-engine.el (c-forward-label): The function now
1986 returns 'goto-target, 'qt-2kwds-colon, 'qt-1kwd-colon, as well as
1987 the former t.
1988
1989 * progmodes/cc-fonts.el (c-font-lock-declarations): Interpret the
1990 new return code from c-forward-label, fontifying tokens properly.
1991 Add some general comments throughout the file.
1992
1993 2007-04-06 Chong Yidong <cyd@stupidchicken.com>
1994
1995 * textmodes/flyspell.el (flyspell-duplicate, flyspell-incorrect):
1996 Revert 2006-01-27 change.
1997
1998 * diff-mode.el (diff-mode): Revert 2007-03-04 change.
1999
2000 * menu-bar.el (menu-bar-tools-menu): Revert 2003-07-25 change.
2001
2002 * desktop.el (desktop-create-buffer, desktop-save):
2003 Revert 2004-11-12 change for lack of copyright papers.
2004
2005 * dired-x.el (dired-guess-shell-case-fold-search): Delete var.
2006 (dired-guess-default): Respect case.
2007
2008 * isearch.el (isearch-forward): Revert 1998-08-26 doc change.
2009
2010 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Remove function;
2011 was originally checked in as byte-optimize-concat on 1997-11-02.
2012
2013 * mail/sendmail.el (mail-text, mail-mode): Revert extant pieces of
2014 1995-05-19 doc changes.
2015
2016 2007-04-06 Kim F. Storm <storm@cua.dk>
2017
2018 * loadhist.el (read-feature): Reimplement. New optional arg LOADED-P.
2019 (unload-feature): Update interactive spec accordingly.
2020
2021 * progmodes/grep.el (grep-program): Remove commentary about zgrep.
2022
2023 2007-04-06 John Paul Wallington <jpw@pobox.com>
2024
2025 * subr.el (with-case-table): Use `make-symbol' to avoid variable
2026 capture. Restore the table in the same buffer.
2027
2028 * font-lock.el (lisp-font-lock-keywords-2): Add `with-case-table'.
2029
2030 2007-04-05 Chong Yidong <cyd@stupidchicken.com>
2031
2032 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
2033 Print entire form.
2034
2035 2007-04-05 Nick Roberts <nickrob@snap.net.nz>
2036
2037 * progmodes/gdb-ui.el (breakpoint-disabled): Tweak face (again)
2038 for low-color displays.
2039
2040 2007-04-05 Glenn Morris <rgm@gnu.org>
2041
2042 * play/5x5.el, play/animate.el, play/dissociate.el, play/doctor.el,
2043 * play/gomoku.el, play/landmark.el, play/tetris.el, play/zone.el:
2044 Seed random number generator on loading.
2045
2046 * emacs-lisp/authors.el (top-level): Provide self.
2047
2048 * play/animate.el (top-level): Provide self.
2049
2050 2007-04-04 Alan Mackenzie <acm@muc.de>
2051
2052 * progmodes/cc-vars.el (c-special-indent-hook): Amend doc-string
2053 to mention c-syntactic-indentation.
2054
2055 2007-04-04 Chong Yidong <cyd@stupidchicken.com>
2056
2057 * subr.el (with-case-table): New macro.
2058
2059 * international/mule.el (ascii-case-table): New var.
2060
2061 * mail/smtpmail.el (smtpmail-via-smtp): Use ascii-case-table when
2062 downcasing.
2063
2064 2007-04-03 Nick Roberts <nickrob@snap.net.nz>
2065
2066 * progmodes/gud.el (gud-minor-mode-map): Simplify.
2067
2068 * t-mouse.el (t-mouse-make-event-element): Don't use the left edge
2069 of the window if we're outside it e.g menu-bar.
2070
2071 * xt-mouse.el (xterm-mouse-event): Don't use the left edge of the
2072 window if we're outside it e.g menu-bar.
2073
2074 2007-04-03 Eli Zaretskii <eliz@gnu.org>
2075
2076 * mail/rmail.el (rmail-convert-to-babyl-format): Don't try to
2077 decode base-64 encoded body if its content-type is something other
2078 than text/* or message/*.
2079
2080 2007-04-03 Juanma Barranquero <lekktu@gmail.com>
2081
2082 * simple.el (activate-mark-hook): Fix typo in docstring.
2083
2084 2007-04-03 Nick Roberts <nickrob@snap.net.nz>
2085
2086 * tmm.el (tmm-c-prompt): Initialize.
2087 (tmm-menubar): Deal with extended menu-items at top level.
2088 (tmm-get-keybind): Handle bindings redefined/undefined locally.
2089 (tmm-prompt): Handle visibility of top level menu-items.
2090
2091 * progmodes/gud.el (gud-menu-map): Simplify.
2092 (gud-minor-mode-map): Add tool-bar like bindings to the text mode
2093 menubar.
2094
2095 2007-04-02 Chong Yidong <cyd@stupidchicken.com>
2096
2097 * mail/smtpmail.el (smtpmail-via-smtp): Revert last change.
2098
2099 * comint.el (comint-send-input): Widen the buffer first.
2100
2101 * info.el (Info-fontify-maximum-menu-size): Revert to 100000.
2102
2103 2007-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
2104
2105 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Only obey
2106 emacs-lisp-docstring-fill-column in emacs-lisp-mode.
2107
2108 * newcomment.el (comment-search-forward): Discard comment starters
2109 before point.
2110
2111 2007-04-01 Guanpeng Xu <herberteuler@hotmail.com>
2112
2113 * mouse.el (mouse-set-secondary): Update mouse-secondary-overlay.
2114
2115 2007-04-01 Chong Yidong <cyd@stupidchicken.com>
2116
2117 * mail/smtpmail.el (smtpmail-via-smtp): Use standard case table
2118 when downcasing.
2119
2120 * button.el (previous-button): Rewrite to account for adjacent buttons.
2121
2122 2007-04-01 J.D. Smith <jdsmith@as.arizona.edu>
2123
2124 * progmodes/idlwave.el (idlwave-auto-fill):
2125 Revert paragraph-separate change.
2126
2127 * progmodes/idlw-shell.el (idlwave-shell-break-in):
2128 Simplify module calc.
2129 (idlwave-shell-set-bp-in-module): Compute module.
2130
2131 2007-03-31 Glenn Morris <rgm@gnu.org>
2132
2133 * emacs-lisp/timer.el (run-at-time): Doc fix.
2134
2135 * emacs-lisp/warnings.el (display-warning): If we create the
2136 buffer displaying the warning, disable undo there.
2137
2138 2007-03-31 Michael Albinus <michael.albinus@gmx.de>
2139
2140 * net/tramp.el (tramp-register-file-name-handler)
2141 (tramp-register-completion-file-name-handler): New defsubst,
2142 derived from `tramp-register-file-name-handlers'. The split is
2143 necessary because Tramp's file name handlers must be registered at
2144 different startup places.
2145
2146 2007-03-31 Chong Yidong <cyd@stupidchicken.com>
2147
2148 * progmodes/hideshow.el (turn-off-hideshow): New function.
2149 (hs-minor-mode): Use it instead of a lambda expression in
2150 change-major-mode-hook.
2151
2152 2007-03-31 David Kastrup <dak@gnu.org>
2153
2154 * woman.el (woman-Cyg-to-Win): Don't convert cons cells
2155 corresponding to MANPATH_MAP entries.
2156 (woman-man.conf-path, woman-parse-man.conf): Doc fix.
2157 (woman-parse-man.conf): Use more discriminating man.conf name.
2158 (woman-parse-man.conf): Parse MANPATH_MAP entries.
2159 (woman-manpath): Doc fix and type fix.
2160 (woman-cached-data): Check for MANPATH_MAP entries.
2161 (woman-expand-directory-path): Treat MANPATH_MAP entries.
2162
2163 2007-03-31 Stuart Herring <herring@lanl.gov>
2164
2165 * emacs-lisp/sregex.el (sregexq): Doc fix.
2166
2167 2007-03-31 Markus Triska <markus.triska@gmx.at>
2168
2169 * flymake.el (flymake-err-line-patterns): Doc fix.
2170
2171 2007-03-30 Reiner Steib <Reiner.Steib@gmx.de>
2172
2173 * info.el (info-tool-bar-map): Use "exit" for Info-exit.
2174 Move to the right.
2175
2176 2007-03-30 Alan Mackenzie <acm@muc.de>
2177
2178 * progmodes/cc-cmds.el (c-forward-to-nth-EOF-}): Fix EOB bug.
2179
2180 2007-03-30 Thien-Thi Nguyen <ttn@gnu.org>
2181
2182 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Take additional arg DLL.
2183 Use it, passed in explicitly, instead of from the dynamic binding.
2184 (ewoc-create, ewoc-enter-before): Update to use new call sequence.
2185
2186 2007-03-30 Juanma Barranquero <lekktu@gmail.com>
2187
2188 * simple.el (blink-matching-open): When in minibuffer, don't
2189 search for a match inside the prompt.
2190
2191 2007-03-30 Nick Roberts <nickrob@snap.net.nz>
2192
2193 * tmm.el (tmm-menubar): Select the right menu item with the mouse.
2194 (tmm-prompt): Don't make the mouse user select the first menu
2195 item twice.
2196
2197 2007-03-30 Chong Yidong <cyd@stupidchicken.com>
2198
2199 * eshell/esh-proc.el (eshell/kill): Tweak regexp to recognize
2200 SIGUSR1 and SIGUSR2.
2201
2202 2007-03-29 Kim F. Storm <storm@cua.dk>
2203
2204 * ido.el (ido-read-internal): When reading file or dir, only override
2205 minibuffer-local-filename-completion-map, otherwise only override
2206 minibuffer-local-completion-map.
2207
2208 2007-03-29 Glenn Morris <rgm@gnu.org>
2209
2210 * complete.el (partial-completion-mode): Set PC-do-completion-end
2211 to nil after use.
2212 (PC-lisp-complete-symbol): Create and use a marker at `end',
2213 rather than using point-marker.
2214
2215 2007-03-28 Chong Yidong <cyd@stupidchicken.com>
2216
2217 * simple.el (next-error-highlight): Doc fix.
2218 (compose-mail): Revert 2007-03-19 change.
2219
2220 2007-03-28 Richard Stallman <rms@gnu.org>
2221
2222 * emacs-lisp/edebug.el (edebug-display): Don't go to
2223 edebug-outside-buffer if it is dead.
2224
2225 2007-03-28 Juanma Barranquero <lekktu@gmail.com>
2226
2227 * view.el (view-mode): Fix typos in docstring.
2228
2229 2007-03-28 Stephen Berman <Stephen.Berman@gmx.net>
2230
2231 * recentf.el (recentf-save-file): Add a custom :set function.
2232
2233 2007-03-28 Glenn Morris <rgm@gnu.org>
2234
2235 * complete.el (PC-do-completion-end): New variable.
2236 (partial-completion-mode) <choose-completion-string-functions>:
2237 Use PC-do-completion-end in the non-minibuffer case to replace the
2238 correct amount of text.
2239 (PC-do-completion): Set PC-do-completion-end for c-c-s-f.
2240 (PC-lisp-complete-symbol): Give marker the after-insertion type,
2241 to deal with improvements inserted after point.
2242
2243 2007-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
2244
2245 * button.el (make-text-button): Add explicit `button' property.
2246 (default-button): Don't put a `button' property on it.
2247
2248 * progmodes/python.el (python-mode): Skip comments when parsing.
2249
2250 * vc-arch.el (vc-with-current-file-buffer): New macro.
2251 (vc-arch-file-source-p): Use it to avoid infloop.
2252
2253 2007-03-28 David Hansen <david.hansen@gmx.net> (tiny change)
2254
2255 * emacs-lisp/lisp.el (lisp-complete-symbol):
2256 Fix call to get-buffer-window to find windows in other frames.
2257
2258 2007-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
2259
2260 * comint.el (comint-proc-query, comint-dynamic-list-completions):
2261 Fix calls to get-buffer-window to find windows in other frames.
2262 Reported by David Hansen <david.hansen@gmx.net>.
2263
2264 2007-03-27 Kevin Ryde <user42@zip.com.au>
2265
2266 * info.el (Info-display-images-node): On a text-only terminal,
2267 show the "text" or "alt" parts of the image blobs.
2268
2269 2007-03-27 Glenn Morris <rgm@gnu.org>
2270
2271 * complete.el (PC-do-completion): Compute completion-base-size in
2272 the non-filename case, rather than setting to nil.
2273 (PC-lisp-complete-end): New variable.
2274 (PC-lisp-complete-symbol): Use PC-lisp-complete-end to store the
2275 original end in a series of consecutive invocations.
2276
2277 * calendar/calendar.el (calendar-mode-hook): Declare it.
2278
2279 * calendar/diary-lib.el (diary-live-p): Do not check for
2280 diary-selective-display.
2281
2282 2007-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2283
2284 * replace.el (occur-next-error): *Occur* might not be displayed in the
2285 selected frame. Reported by David Hansen <david.hansen@gmx.net>.
2286
2287 2007-03-26 Richard Stallman <rms@gnu.org>
2288
2289 * textmodes/flyspell.el (flyspell-large-region):
2290 Use ispell-call-process-region.
2291
2292 2007-03-26 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
2293
2294 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
2295 Use prin1 instead of princ.
2296
2297 2007-03-25 Chong Yidong <cyd@stupidchicken.com>
2298
2299 * faces.el (face-set-after-frame-default): Revert 2007-03-10 change.
2300 Merge in X resources before global face.
2301
2302 * progmodes/compile.el (compilation-start): Save compilation-directory
2303 rather than default-directory as local var.
2304 (compilation-directory): Mark as safe local var.
2305
2306 * files.el: Don't mark default-directory as a safe local var.
2307
2308 2007-03-25 Alan Mackenzie <acm@muc.de>
2309
2310 * progmodes/cc-mode.el (c-before-change): Fix BOB bug.
2311 * progmodes/cc-engine.el: Fix typo.
2312
2313 2007-03-25 Juri Linkov <juri@jurta.org>
2314
2315 * compare-w.el (compare-windows): Rename customization group
2316 `compare-w' to `compare-windows'.
2317 (compare-windows-whitespace, compare-ignore-whitespace)
2318 (compare-ignore-case, compare-windows-sync)
2319 (compare-windows-sync-string-size, compare-windows-recenter)
2320 (compare-windows-highlight, compare-windows): Change group name in
2321 the `group' tag from `compare-w' to `compare-windows'.
2322 (compare-windows-sync): Add option `nil' for no sync. Doc fix.
2323
2324 2007-03-24 Markus Triska <markus.triska@gmx.at>
2325
2326 * expand.el: Change example to always enable abbrev-mode,
2327 and remove redundant `function'.
2328 (expand-abbrev-hook): Add autoload cookie.
2329
2330 2007-03-24 Ryan Yeske <rcyeske@gmail.com>
2331
2332 * emacs-lisp/testcover.el (testcover-start, testcover-end)
2333 (testcover-mark-all, testcover-unmark-all): Add prompts to
2334 interactive specs.
2335
2336 2007-03-24 Jason Rumney <jasonr@gnu.org>
2337
2338 * autorevert.el (find-file-hook, auto-revert-tail-mode):
2339 Use file size in bytes for auto-revert-tail-pos not characters.
2340
2341 2007-03-24 Thien-Thi Nguyen <ttn@gnu.org>
2342
2343 * vc-rcs.el (vc-rcs-annotate-command):
2344 Set text property :vc-annotate-prefix on the annotation text.
2345 (vc-rcs-annotate-time): Instead of searching for ": ",
2346 search for end of text propertized with :vc-annotate-prefix.
2347
2348 2007-03-24 Martin Rudalics <rudalics@gmx.at>
2349
2350 * whitespace.el (top level): Remove calls putting
2351 permanent-local nil property since these are no-ops.
2352
2353 * man.el (Man-support-local-filenames): Assure that
2354 default-directory exists when doing call-process.
2355
2356 2007-03-23 David Vazquez <xeos00@gmail.com> (tiny change)
2357
2358 * progmodes/m4-mode.el (m4-m4-buffer, m4-m4-region):
2359 Fix omission bug: Use m4-program-options to construct shell command.
2360
2361 2007-03-23 David Kastrup <dak@gnu.org>
2362
2363 * progmodes/cc-mode.el (c-make-emacs-variables-local):
2364 Use `mapcar' rather than `mapcan' to silence compiler warning.
2365
2366 2007-03-22 Ralf Angeli <angeli@caeruleus.net>
2367
2368 * textmodes/reftex.el, textmodes/reftex-vars.el,
2369 * textmodes/reftex-toc.el, textmodes/reftex-sel.el,
2370 * textmodes/reftex-ref.el, textmodes/reftex-parse.el,
2371 * textmodes/reftex-index.el, textmodes/reftex-global.el,
2372 * textmodes/reftex-dcr.el, textmodes/reftex-cite.el,
2373 * textmodes/reftex-auc.el: Add maintainer address.
2374
2375 2007-03-22 Carsten Dominik <dominik@science.uva.nl>
2376
2377 * textmodes/org.el (org-agenda-mode, org-table-edit-formulas):
2378 Make sure that `global-font-lock-mode' does not turn on font-lock
2379 in these buffers.
2380
2381 2007-03-21 Kim F. Storm <storm@cua.dk>
2382
2383 * xt-mouse.el (xt-mouse-epoch): New variable.
2384 (xterm-mouse-event): Use float-time.
2385
2386 2007-03-21 Nick Roberts <nickrob@snap.net.nz>
2387
2388 * xt-mouse.el (xterm-mouse-event): Compute a timestamp using
2389 current-time.
2390
2391 2007-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2392
2393 * complete.el (read-file-name-internal): Don't add the final > if the
2394 completion is not finished (re-application of this patch, which was
2395 accidentally undone by Eli).
2396
2397 2007-03-21 Chong Yidong <cyd@stupidchicken.com>
2398
2399 * emulation/viper.el (viper-non-hook-settings): Handle mouse
2400 clicks in describe-key and describe-key-briefly advice a little better.
2401
2402 2007-03-21 Juanma Barranquero <lekktu@gmail.com>
2403
2404 * server.el (server-process-filter): Cancel any pending isearch.
2405
2406 2007-03-21 Ulf Jasper <ulf.jasper@web.de>
2407
2408 * calendar/icalendar.el (icalendar-version): Increase to 0.15.
2409 (icalendar--get-unfolded-buffer): Define actual arguments rather
2410 than just using &rest. Check replace-in-string is fbound.
2411 (icalendar-import-buffer): Doc fix.
2412 (icalendar--convert-ical-to-diary): Set diary-file.
2413 Check diary-file before inserting final newline.
2414 (icalendar--add-diary-entry): Return diary-file.
2415
2416 2007-03-21 Glenn Morris <rgm@gnu.org>
2417
2418 * calendar/calendar.el (diary-set-maybe-redraw): Autoload it.
2419 (diary-display-hook): Add custom :set function.
2420
2421 * calendar/diary-lib.el (diary-header-line-flag): Doc fix.
2422 Add custom :set function.
2423 (diary-header-line-format): Doc fix.
2424 (diary-set-maybe-redraw): New function.
2425 (number-of-diary-entries): Change :set to use diary-set-maybe-redraw.
2426 (diary-list-entries): Always run diary-mode.
2427
2428 2007-03-20 Kenichi Handa <handa@m17n.org>
2429
2430 * international/quail.el (quail-setup-completion-buf): Make the
2431 completion buffer read-only.
2432 (quail-completion): Adjusted for the above change. Leave the
2433 modified flag nil.
2434
2435 2007-03-20 David Kastrup <dak@gnu.org>
2436
2437 * files.el (magic-mode-alist): Require literal "%!PS" string for
2438 magic postscript file detection.
2439
2440 2007-03-20 Richard Stallman <rms@gnu.org>
2441
2442 * textmodes/ispell.el (ispell-call-process): New function.
2443 Defends against bad `default-directory.'
2444 (ispell-check-version, ispell-find-aspell-dictionaries)
2445 (ispell-get-aspell-config-value, lookup-words): Call it.
2446 (ispell-call-process-region): New function.
2447 (ispell-send-string): Call it.
2448
2449 2007-03-20 Andreas Schwab <schwab@suse.de>
2450
2451 * Makefile.in (custom-deps): Depend on $(lisp)/subdirs.el.
2452 (finder-data): Likewise.
2453 (autoloads): Likewise.
2454
2455 2007-03-20 Martin Rudalics <rudalics@gmx.at>
2456
2457 * files.el (basic-save-buffer): Do not set visited filename when
2458 the corresponding directory does not exist or the specified
2459 filename is that of an existing directory.
2460
2461 2007-03-20 Glenn Morris <rgm@gnu.org>
2462
2463 * calendar/diary-lib.el (diary-live-p): New function.
2464 (number-of-diary-entries): Add a :set function to redisplay diary
2465 when necessary.
2466
2467 2007-03-19 Nick Roberts <nickrob@snap.net.nz>
2468
2469 * t-mouse.el (t-mouse-make-event-element): Use timestamp output
2470 from client program, mev, to compute mouse event.
2471
2472 2007-03-19 Chong Yidong <cyd@stupidchicken.com>
2473
2474 * faces.el (momentary): Face removed; unused due to reversion of
2475 2007-01-04 changes by Kevin Rodgers.
2476
2477 * mouse.el (mouse-drag-track): Remove spurious input-pending-p test.
2478 Suggested by Johan Bockg\e,Ae\e(Brd.
2479
2480 2007-03-19 Martin Rudalics <rudalics@gmx.at>
2481
2482 * font-lock.el (lisp-font-lock-keywords-1):
2483 Highlight define-globalized-minor-mode as a keyword.
2484
2485 2007-03-19 Kim F. Storm <storm@cua.dk>
2486
2487 * calc/calc-forms.el (math-std-daylight-savings)
2488 (math-std-daylight-savings-old): Doc fix.
2489
2490 2007-03-19 Juanma Barranquero <lekktu@gmail.com>
2491
2492 * progmodes/python.el (python-default-template): Doc fix.
2493 (python-buffer): Fix typo in docstring.
2494
2495 * isearchb.el (isearchb-follow-char):
2496 * subr.el (def-edebug-spec): Fix typo in docstring.
2497
2498 2007-03-19 Richard Stallman <rms@gnu.org>
2499
2500 * files.el (default-directory): Mark safe.
2501 (basic-save-buffer-2): Put proper dir name in error message.
2502
2503 * simple.el (compose-mail): Run switch-function after
2504 setting up the mail buffer.
2505
2506 * startup.el (inhibit-splash-screen, initial-major-mode): Doc fixes.
2507
2508 2007-03-18 Jay Belanger <belanger@truman.edu>
2509
2510 * calc/calc-forms.el (math-parse-date): Fix a regular expression.
2511 (math-std-daylight-savings-new): Rename from
2512 `math-std-daylight-savings'.
2513 (math-std-daylight-savings-old): Rename from old value of
2514 `math-std-daylight-savings'.
2515 (math-std-daylight-savings): Use `math-std-daylight-savings-new' or
2516 `math-std-daylight-savings-old' depending on the year.
2517
2518 2007-03-18 Detlev Zundel <dzu@gnu.org>
2519
2520 * emacs-lisp/re-builder.el (reb-update-overlays): Do not mark
2521 zero-width regexps as invalid but rather at least count them correctly.
2522
2523 2007-03-18 Thien-Thi Nguyen <ttn@gnu.org>
2524
2525 * net/tls.el (open-tls-stream): In handshake-waiting loop,
2526 don't wait more if there is output available to process.
2527
2528 2007-03-18 Nick Roberts <nickrob@snap.net.nz>
2529
2530 * progmodes/compile.el (compilation-find-file): Revert change
2531 from 2006-07-18 to allow completion of directory names.
2532 Reported by John Carter <john.carter@tait.co.nz>.
2533
2534 2007-03-18 Kim F. Storm <storm@cua.dk>
2535
2536 * subr.el (when, unless): Doc fix.
2537
2538 2007-03-17 Thien-Thi Nguyen <ttn@gnu.org>
2539
2540 * net/tls.el (tls-program): Doc fix.
2541
2542 2007-03-17 Denis Bueno <dbueno@gmail.com> (tiny change)
2543
2544 * autorevert.el (auto-revert-tail-handler):
2545 Call after-revert-hook.
2546
2547 2007-03-17 Ryan Yeske <rcyeske@gmail.com>
2548
2549 * simple.el (switch-to-completions): No error if search for \n\n fails.
2550
2551 2007-03-17 Chong Yidong <cyd@stupidchicken.com>
2552
2553 * simple.el (line-move-1):
2554 Respect `inhibit-line-move-field-capture' property.
2555
2556 2007-03-13 Chong Yidong <cyd@stupidchicken.com>
2557
2558 * comint.el (comint-arguments): Mark backslash-escaped chars.
2559 (comint-delim-arg): Don't treat them as delimiters.
2560
2561 2007-03-12 Kim F. Storm <storm@cua.dk>
2562 * ido.el (ido-init-completion-maps): Remap delete-backward-char.
2563
2564 2007-03-12 Lawrence Mitchell <wence@gmx.li> (tiny change)
2565
2566 * tempo.el (tempo-insert): Deal with 'r> if it appears
2567 specified with a prompt argument.
2568
2569 2007-03-12 Carsten Dominik <dominik@science.uva.nl>
2570
2571 * textmodes/org.el (org-set-font-lock-defaults):
2572 Handle narrow table columns correctly.
2573
2574 2007-03-12 Mark A. Hershberger <mah@everybody.org>
2575
2576 * xml.el (xml-parse-tag, xml-parse-string, xml-parse-attlist)
2577 (xml-parse-dtd, xml-parse-elem-type, xml-substitute-special):
2578 Return to use of the -no-properties variants. There was
2579 consensus on emacs-devel that the speed of these variants was
2580 prefered since we are usually parsing files (from the internet
2581 or on disk) instead of XML created in Emacs.
2582
2583 * eshell/esh-mode.el (eshell-handle-ansi-color): New function.
2584 Add customize option.
2585
2586 2007-03-12 Glenn Morris <rgm@gnu.org>
2587
2588 * calc/calc-forms.el (math-std-daylight-savings): Switch to new
2589 North American rule. Replace "daylight savings" with "daylight
2590 saving" in doc.
2591
2592 * calendar/cal-china.el, cal-dst.el, calendar.el, diary-lib.el:
2593 * calendar/lunar.el, solar.el: Replace "daylight savings" with
2594 "daylight saving" in text.
2595
2596 * woman.el (woman-change-fonts): Tweak previous change by using
2597 woman-request-regexp rather than "^\\.".
2598
2599 * startup.el (command-line-1): Make insertion of
2600 initial-scratch-message not depend on scratch being selected.
2601
2602 2007-03-11 Juri Linkov <juri@jurta.org>
2603
2604 * replace.el (match): Use yellow background on light-bg terminals.
2605
2606 2007-03-11 Richard Stallman <rms@gnu.org>
2607
2608 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
2609 Correctly compute line number.
2610
2611 2007-03-11 Guanpeng Xu <herberteuler@hotmail.com>
2612
2613 * type-break.el (type-break-get-previous-count):
2614 Repeat previous change here.
2615
2616 2007-03-11 Dan Nicolaescu <dann@ics.uci.edu>
2617
2618 * progmodes/grep.el (grep-find-ignored-directories):
2619 Add .git and .bzr to list.
2620
2621 2007-03-11 Andreas Schwab <schwab@suse.de>
2622
2623 * diff-mode.el (diff-apply-hunk): Use proper format string for error.
2624
2625 2007-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * mail/emacsbug.el (report-emacs-bug): Don't hard code the "X" name.
2628
2629 2007-03-10 Chong Yidong <cyd@stupidchicken.com>
2630
2631 * faces.el (face-set-after-frame-default): Recalculate face
2632 customizations after applying X resources.
2633
2634 2007-03-10 Ryan Yeske <rcyeske@gmail.com>
2635
2636 * net/rcirc.el (rcirc-timeout-seconds): New variable.
2637 (rcirc-keepalive-seconds): Remove variable.
2638 (rcirc-server-name, rcirc-timeout-timer, rcirc-connecting)
2639 (rcirc-process, rcirc-user-disconnect): New variables.
2640 (rcirc-connect): Initalize new variables.
2641 (rcirc-keepalive): Don't send keepalive pings before connection
2642 is completed.
2643 (rcirc-sentinel): Do mark all channels with activity when
2644 connection is dropped. Run hook with process buffer local.
2645 (rcirc-reschedule-timeout, rcirc-delete-process): New functions.
2646 (rcirc-buffer-process): Return value of rcirc-process if
2647 rcirc-server-buffer is nil.
2648 (rcirc-server-name): Return the reported server name.
2649 (rcirc-update-prompt): Simplify computation of the server name.
2650 (rcirc-format-response-string): Likewise.
2651 (rcirc-handler-001): Mark server as connected, record the reported
2652 server name, and schedule a timeout.
2653 (rcirc-track-nick): Add a spec for the tty class.
2654 (rcirc-user-non-nick): Remove function.
2655 (rcirc-nick-prefix-chars): Add variable.
2656 (rcirc-user-nick): Use above variable.
2657
2658 2007-03-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
2659
2660 * icomplete.el (icomplete-tidy, icomplete-exhibit):
2661 Bind deactivate-mark to nil.
2662
2663 2007-03-10 Martin Rudalics <rudalics@gmx.at>
2664
2665 * complete.el (PC-do-completion): Bind dirlength to nil to avoid
2666 that buffer contents get erased during completion.
2667
2668 2007-03-10 Glenn Morris <rgm@gnu.org>
2669
2670 * woman.el (woman-change-fonts): Add a hack to deal with
2671 font-escape followed by "." at start of a line.
2672 (woman2-IP): Add a hack to deal with consecutive requests.
2673 (woman2-tagged-paragraph): Extend existing hack to handle "sp".
2674
2675 2007-03-10 Alan Mackenzie <acm@muc.de>
2676
2677 * progmodes/cc-mode.el (c-before-change): Wrap in save-match-data.
2678
2679 2007-03-09 Richard Stallman <rms@gnu.org>
2680
2681 * abbrev.el (abbrev): Add `provide'.
2682
2683 2007-03-09 Thien-Thi Nguyen <ttn@gnu.org>
2684
2685 * net/ange-ftp.el (ange-ftp-try-passive-mode): Doc fix.
2686
2687 2007-03-09 Martin Rudalics <rudalics@gmx.at>
2688
2689 * complete.el (PC-try-completion): New function.
2690 (PC-do-completion, read-file-name-internal): Use it instead of
2691 try-completion.
2692
2693 2007-03-08 Alan Mackenzie <acm@muc.de>
2694
2695 Remove stale tokens from `c-found-types' cache.
2696
2697 * progmodes/cc-mode.el (c-unfind-enclosing-token)
2698 (c-unfind-coalesced-tokens, c-before-change): New functions.
2699 (c-maybe-stale-found-type): New variable.
2700
2701 * progmodes/cc-engine.el (c-partial-ws-p, c-unfind-type)
2702 (c-trim-found-types): New functions.
2703
2704 2007-03-08 Stefan Monnier <monnier@iro.umontreal.ca>
2705
2706 * smerge-mode.el (smerge-remove-props): Don't mark the buffer modified.
2707 (debug-ignored-errors): Add entry from smerge-match-conflict.
2708
2709 2007-03-08 J.D. Smith <jdsmith@as.arizona.edu>
2710
2711 * progmodes/idlw-help.el (idlwave-do-context-help1): Don't visit
2712 special help topics for keywords.
2713 (idlwave-help-assistant-command): Include ".exe" for ms-dos
2714 etc. Assistant command.
2715
2716 2007-03-08 Chong Yidong <cyd@stupidchicken.com>
2717
2718 * replace.el (occur-engine): Move buffer-undo-list binding...
2719 (occur-1): ...to here.
2720
2721 * complete.el (PC-bindings): Rebind M-TAB in read-expression-map.
2722
2723 * simple.el (minibuffer-completing-symbol): New var.
2724 (eval-expression): Use it.
2725 (completion-setup-function): Don't bind completion-base-size when
2726 completing a symbol in the minibuffer.
2727
2728 2007-03-08 Nick Roberts <nickrob@snap.net.nz>
2729
2730 * progmodes/gud.el (gdb): Pop up current GUD buffer if user
2731 tries to start a second session in graphical mode.
2732
2733 2007-03-07 Miles Bader <miles@gnu.org>
2734
2735 * international/isearch-x.el
2736 (isearch-process-search-multibyte-characters):
2737 Strip text-properties from PROMPT to avoid an error from read-string.
2738
2739 2007-03-07 Kim F. Storm <storm@cua.dk>
2740
2741 * complete.el (PC-bindings): Remap lisp-complete-symbol to
2742 PC-lisp-complete-symbol instead of binding M-TAB in global-map.
2743
2744 2007-03-07 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2745
2746 * complete.el (PC-do-completion): Delete duplicates in the list of
2747 possible completions.
2748
2749 2007-03-07 Glenn Morris <rgm@gnu.org>
2750
2751 * ses.el (ses-mode): Doc fix.
2752
2753 2007-03-06 Kim F. Storm <storm@cua.dk>
2754
2755 * isearch.el (isearch-message-prefix): Undo 2007-03-01 change.
2756
2757 2007-03-06 Kenichi Handa <handa@m17n.org>
2758
2759 * term/x-win.el (x-select-utf8-or-ctext): Improve the strategy.
2760
2761 2007-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
2762
2763 * simple.el (completion-setup-function): Improve last fix so it doesn't
2764 set it to a relative directory name either.
2765
2766 2007-03-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2767
2768 * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
2769
2770 2007-03-05 Richard Stallman <rms@gnu.org>
2771
2772 * emacs-lisp/re-builder.el (reb-re-syntax): Fix custom type.
2773
2774 * files.el (find-file-noselect): No error if file no longer exists.
2775 Display a message and avoid other questions.
2776
2777 2007-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2778
2779 * pcomplete.el (pcomplete-show-completions): Improve last change, so
2780 as not to use an invisible window and to create a window if none exist.
2781
2782 * progmodes/python.el (python-send-command): Restart proc if necessary.
2783 (python-proc): Simplify.
2784
2785 2007-03-05 David Hansen <david.hansen@gmx.net> (tiny change)
2786
2787 * pcomplete.el (pcomplete-show-completions): Search all frames for
2788 completions buffer.
2789
2790 2007-03-05 Chong Yidong <cyd@stupidchicken.com>
2791
2792 * cus-edit.el (customize-save-variable): Clear customized-value
2793 property (saved values are now put in theme-value property).
2794 (customize-set-variable): Doc fix.
2795
2796 * complete.el (PC-do-completion): If completion-ignore-case is
2797 non-nil, replace field with completion string before exiting.
2798
2799 2007-03-05 Michael Albinus <michael.albinus@gmx.de>
2800
2801 * net/tramp.el (tramp-make-temp-file): New parameter FILENAME.
2802 Append its extension to the resulting temporary file name.
2803 (tramp-handle-file-local-copy, tramp-handle-write-region): Apply it.
2804
2805 * net/tramp-smb.el (tramp-smb-handle-file-local-copy)
2806 (tramp-smb-handle-write-region): Apply it.
2807
2808 2007-03-05 Alin C. Soare <alinsoar@voila.fr> (tiny change)
2809
2810 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
2811 Redo previous change.
2812
2813 2007-03-04 Kevin Rodgers <kevin.d.rodgers@gmail.com> (tiny change)
2814
2815 * diff-mode.el (diff-mode): Doc fix.
2816
2817 2007-03-05 Kenichi Handa <handa@m17n.org>
2818
2819 * international/characters.el: Set category `l' (latin)
2820 for more characters.
2821
2822 2007-03-04 Kim F. Storm <storm@cua.dk>
2823
2824 * emacs-lisp/authors.el (authors-aliases): Add alias.
2825
2826 2007-03-04 Glenn Morris <rgm@gnu.org>
2827
2828 * progmodes/hideshow.el (hs-minor-mode): Turn mode off and show
2829 all when switching major mode.
2830 (hs-minor-mode, hs-c-start-regexp, hs-block-start-regexp)
2831 (hs-block-start-mdata-select, hs-block-end-regexp)
2832 (hs-forward-sexp-func, hs-adjust-block-beginning):
2833 Do not make these variables permanent-local.
2834
2835 2007-03-04 Richard Stallman <rms@gnu.org>
2836
2837 * progmodes/cperl-mode.el (cperl-mode):
2838 Modify cperl-compilation-error-regexp-alist by appending.
2839
2840 * emacs-lisp/edebug.el (edebug-kill-buffer): New function.
2841 (edebug-mode): Add the hook.
2842 (edebug-recursive-edit): Remove the hook on exiting.
2843
2844 * type-break.el (type-break-get-previous-time):
2845 Handle end-of-file errors specially
2846 so they don't get reported wrong in .emacs.
2847
2848 * startup.el (fancy-splash-text): Clarify text.
2849
2850 * simple.el (beginning-of-buffer, end-of-buffer):
2851 Avoid treating plain C-u like numeric arg.
2852
2853 * simple.el (completion-setup-function): Don't set
2854 default-directory to nil.
2855
2856 * shell.el (shell-dirstack-query): Doc fix.
2857
2858 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
2859 Don't select the window -- pass it to primitives instead.
2860
2861 * faces.el (minibuffer-prompt): Use medium blue by default.
2862
2863 2007-03-04 David Kastrup <dak@gnu.org>
2864
2865 * jit-lock.el (jit-lock-stealth-time): Change default to nil.
2866 Preserve 16 as default value for "seconds" when customizing.
2867
2868 2007-03-04 Carsten Dominik <dominik@science.uva.nl>
2869
2870 * textmodes/org.el (org-self-insert-command)
2871 (orgtbl-self-insert-command, org-delete-char)
2872 (org-delete-backward-char): Set the `flyspell-delayed' property.
2873
2874 2007-03-03 Chong Yidong <cyd@stupidchicken.com>
2875
2876 * international/mule.el (find-auto-coding): Don't search for
2877 line-ending characters past the end of the tail.
2878
2879 2007-03-03 Christopher Allan Webber <cwebber@dustycloud.org> (tiny change)
2880
2881 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
2882 Jump to the line where new score has been uploaded.
2883
2884 * play/tetris.el (tetris-move-bottom, tetris-move-left)
2885 (tetris-move-right, tetris-rotate-prev, tetris-rotate-next):
2886 Do nothing when the game is paused.
2887
2888 2007-03-03 Carsten Dominik <dominik@science.uva.nl>
2889
2890 * textmodes/org.el (org-set-tags): Prevent slipping of point
2891 during completion.
2892
2893 2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se>
2894
2895 * isearch.el (isearch-message-prefix):
2896 Use minibuffer-prompt-properties.
2897
2898 2007-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2899
2900 * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
2901 (ps-setup): Print which Emacsen is running ps-print package.
2902
2903 2007-03-01 Stuart Herring <herring@lanl.gov>
2904
2905 * files.el (set-auto-mode-0): Use `indirect-function'.
2906 (hack-one-local-variable): Don't reapply current major mode.
2907
2908 2007-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
2909
2910 * progmodes/python.el (python-quote-syntax): Don't bother with
2911 syntax-ppss-context.
2912 (python-fill-paragraph): Make sure that fenced-string delimiters that
2913 stand on their own line stay there.
2914
2915 2007-03-01 Lennart Borgman <lennart.borgman.073@student.lu.se>
2916
2917 * replace.el (perform-replace): Propertize message.
2918
2919 2007-03-01 Carsten Dominik <dominik@science.uva.nl>
2920
2921 * textmodes/org.el (org-prepare-agenda-buffers): Also check for
2922 invisible heading.
2923
2924 2007-02-28 Chong Yidong <cyd@stupidchicken.com>
2925
2926 * net/tramp.el (tramp-file-name-handler): Revert last change.
2927
2928 2007-02-28 Nick Roberts <nickrob@snap.net.nz>
2929
2930 * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump):
2931 Correct doc strings.
2932
2933 2007-02-28 Chong Yidong <cyd@stupidchicken.com>
2934
2935 * replace.el (perform-replace): Undo forward-char immediately if
2936 non-adjacent search fails.
2937
2938 2007-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
2939
2940 * version.el (emacs-major-version, emacs-minor-version):
2941 string-to-int -> string-to-number.
2942
2943 2007-02-28 Juanma Barranquero <lekktu@gmail.com>
2944
2945 * help.el (where-is): Fail gracefully when not passed a command.
2946
2947 2007-02-28 Stuart Herring <herring@lanl.gov>
2948
2949 * find-lisp.el (find-lisp-default-directory-predicate):
2950 Fix bug: Do symlink check on expanded filename.
2951
2952 2007-02-28 Carsten Dominik <dominik@science.uva.nl>
2953
2954 * textmodes/org.el (org-set-tags, org-table-get-field): Avoid case
2955 changes during replacement.
2956 (org-agenda-mode-map): Add default binding for `org-agenda-archive'.
2957
2958 2007-02-28 Lars Hansen <larsh@soem.dk>
2959
2960 * desktop.el: Delete header line listing me as maintainer.
2961
2962 2007-02-28 Glenn Morris <rgm@gnu.org>
2963
2964 * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in
2965 the menus case.
2966
2967 2007-02-28 Chong Yidong <cyd@stupidchicken.com>
2968
2969 * net/tramp.el (tramp-file-name-handler): Inhibit modification
2970 hooks to avoid confusion when combining after-change calls.
2971
2972 2007-02-27 Ken Manheimer <ken.manheimer@gmail.com>
2973
2974 * allout.el (allout-encrypt-string): Remove inhibition of gpg-agent,
2975 now that pgg-gpg-process-region correctly honors passed-in passphrase.
2976 (allout-distinctive-bullets-string): Add info about bullet conventions.
2977 (allout-mode): Add info about distinctive vs plain bullets.
2978
2979 2007-02-27 Carsten Dominik <dominik@science.uva.nl>
2980
2981 * textmodes/org.el (org-archive-subtree): Quote variable name.
2982 (org-agenda-get-todos): Make sure skip properties are checked correctly.
2983
2984 2007-02-26 Nick Roberts <nickrob@snap.net.nz>
2985
2986 * progmodes/gud.el (gud-bashdb-history, gud-bashdb-marker-filter)
2987 (gud-bashdb-command-name, bashdb): Remove.
2988 (gud, gud-menu-map): Remove references to bash/bashdb.
2989
2990 2007-02-26 Andrey Zhdanov <susuman@hotmail.com> (tiny change)
2991
2992 * progmodes/gud.el (gud-pdb-marker-regexp): Add optional <module>
2993 keyword for Python 2.5.
2994
2995 2007-02-26 Romain Francoise <romain@orebokech.com>
2996
2997 * net/net-utils.el (whois-server-tld): Update server for .org.
2998 (whois-server-list): Add whois.publicinterestregistry.net.
2999 (whois-guess-server): Fix formatting in docstring.
3000
3001 2007-02-26 Kim F. Storm <storm@cua.dk>
3002
3003 * mouse.el (mouse-show-mark): Run hooks and perform command
3004 remapping for mouse-region-delete-keys.
3005
3006 2007-02-26 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3007
3008 * font-core.el (font-lock-mode): Doc fix.
3009
3010 2007-02-25 Kim F. Storm <storm@cua.dk>
3011
3012 * ido.el (ido-buffer-internal): Set this-command to fallback command.
3013 Add selected buffer to buffer-name-history.
3014 (ido-file-internal): Set this-command to fallback command.
3015 Add file names to file-name-history.
3016
3017 * emacs-lisp/map-ynp.el (map-y-or-n-p):
3018 Apply minibuffer-prompt-properties.
3019
3020 2007-02-25 Andreas Schwab <schwab@suse.de>
3021
3022 * files.el (hack-one-local-variable-eval-safep): Correct handling
3023 of edebug-form-spec property value. Reported by Johan Bockg\e,Ae\e(Brd.
3024
3025 2007-02-25 Carsten Dominik <dominik@science.uva.nl>
3026
3027 * textmodes/org.el (org-table-overlay-coordinates)
3028 (org-table-toggle-coordinate-overlays): New functions.
3029 (org-table-overlay-coordinates, org-table-coordinate-overlays):
3030 New variables.
3031 (org-startup-with-deadline-check): Remove option.
3032 (org-mode): Remove deadline check on startup.
3033 (org-table-limit-column-width): Remove option.
3034 (org-table-formula-numbers-only): Remove option.
3035 (org-link-style, org-link-format): Remove options.
3036 (org-select-agenda-window, org-fit-agenda-window): Remove options.
3037 (org-export-ascii-show-new-buffer)
3038 (org-export-html-show-new-buffer): Remove options.
3039 (org-activate-links): Remove camel option.
3040 (org-file-link-context-use-camel-case): Remove option.
3041 (org-camel-regexp): Remove variable.
3042 (org-activate-camels): Remove function.
3043 (org-store-link): Remove Camel stuff.
3044 (org-make-org-heading-camel): Remove function.
3045 (org-open-at-point): Remove camel stuff.
3046 (org-link-search): Remove camel stuff.
3047 (org-camel-to-words): Function removed.
3048 (org-get-agenda-file-buffer): Make sure we prepare the base
3049 buffers, not any indirect buffers.
3050 (org-sort-entries): Sort top-level when not on a headline, and no
3051 active region.
3052 (org-in-regexp): New function.
3053 (org-search-not-self): Rename from `org-search-not-link'.
3054 (org-open-link-marker): New variable.
3055 (org-open-at-point): Set `org-open-link-marker'.
3056 (org-print-icalendar-entries): Fixe bug with excluding DONE
3057 entries from the exported list.
3058 (org-edit-formula-lisp-indent): New command.
3059 (orgtbl-to-texinfo, orgtbl-to-html): New functions.
3060 (orgtbl-to-latex, orgtbl-insert-radio-table)
3061 (orgtbl-toggle-comment, orgtbl-send-table): New functions.
3062 (orgtbl-radio-table-templates): New option.
3063 (org-store-link-props):
3064 (org-remember-templates): More possibilities to insert info
3065 into templates.
3066 (org-remember-apply-template): Make use of the extended
3067 template capabilities.
3068 (org-remember-redo-template): New command.
3069 (org-upgrade-old-links)
3070 (org-table-modify-formulas, org-table-replace-in-formulas)
3071 (org-table-find-dataline)
3072 (org-table-get-vertical-vector): Remove functions.
3073 (org-table-remove-rectangle-highlight)
3074 (org-time-stamp-format, org-toggle-log-option)
3075 (org-table-highlight-rectangle)
3076 (org-table-iterate, org-table-make-reference):
3077 (org-translate-time, org-tree-to-indirect-buffer)
3078 (org-table-field-info, org-table-fix-formulas)
3079 (org-table-force-dataline, org-table-get-descriptor-line)
3080 (org-table-get-range)
3081 (org-skip-comments, org-sort)
3082 (org-sort-entries, org-sublist, org-table-add-rectangle-overlay)
3083 (org-table-current-dline, org-table-current-field-formula)
3084 (org-table-edit-backward-field)
3085 (org-table-edit-formulas-post-command)
3086 (org-table-edit-line-down, org-table-edit-line-up)
3087 (org-agenda-archive)
3088 (org-agenda-clock-cancel)
3089 (org-agenda-clock-out, org-agenda-list-stuck-projects)
3090 (org-agenda-open-link, org-agenda-show-new-time)
3091 (org-agenda-skip-subtree-when-regexp-matches)
3092 (org-agenda-tree-to-indirect-buffer, org-agenda-undo)
3093 (org-at-regexp-p, org-auto-repeat-maybe, org-check-log-option)
3094 (org-do-sort, org-file-image-p, org-find-overlays)
3095 (org-find-row-type, org-get-indirect-buffer, org-get-repeat)
3096 (org-highlight-until-next-command, org-isearch-end)
3097 (org-match-any-p, org-next-link, org-previous-link):
3098 (org-remove-subtree-entries-from-agenda, org-replace-escapes)
3099 (org-rewrite-old-row-references)
3100 (org-isearch-post-command)
3101 (org-table-edit-move, org-table-edit-next-field)
3102 (org-table-edit-scroll, org-table-edit-scroll-down)
3103 (org-set-frame-title, org-show-reference)
3104 (org-unhighlight-once, org-verify-change-for-undo): New functions.
3105 (org-show-variable): Remove command.
3106 (org-add-log-maybe): New arguments STATE, FINDPOS
3107 (org-table-sort-lines): Rewrite from scratch.
3108 (org-link-search): New argument AVOID-POS.
3109 (org-print-icalendar-entries): Remove argument CATEGORY.
3110 (org-run-agenda-series): Remove argument WONDOW.
3111 (org-next-link, org-previous-link): New commands.
3112 (org-agenda-date-format): New option.
3113 (org-table-iterate): New command.
3114 (org-table-modify-formulas)
3115 (org-table-replace-in-formulas): Remove functions.
3116 (org-table-fix-formulas): New function.
3117 (org-table-insert-column, org-table-delete-column)
3118 (org-table-move-column): Use `org-table-fix-formulas'.
3119 (org-follow-gnus-link): Patch from Bastien/Leo.
3120 (org-table-current-field-formula): New function.
3121 (org-file-image-p): New function.
3122 (org-agenda-show-new-time): New function.
3123 (org-agenda-date-later): Call `org-agenda-show-new-time'.
3124 (org-with-remote-undo): New macro.
3125 (org-agenda-undo): New command.
3126 (org-verify-change-for-undo): New function.
3127 (org-time-stamp-format): New function.
3128 (org-agenda-get-timestamps): Skip scheduled if DONE and requested
3129 by user.
3130 (org-match-any-p): New function.
3131 (org-make-tags-matcher): Handle regular expressions for tag and
3132 todo matches.
3133 (org-read-date): Accept "+N" as input for a date relative to the
3134 current date.
3135 (org-remove-subtree-entries-from-agenda): New function.
3136 (org-agenda-archive, org-agenda-kill):
3137 Use `org-remove-subtree-entries-from-agenda'.
3138 (org-do-sort, org-sort-entries): New functions.
3139 (org-sort): New command.
3140 (org-table-sort-lines): Use `org-do-sort'.
3141 (org-fix-decoded-time): New function.
3142 (org-table-number-regexp): Require 0x... to identify as number
3143 in tables.
3144 (org-startup-options): New keywords for note taking.
3145 (org-upgrade-old-links): Remove function.
3146 (org-get-repeat): New function.
3147 (org-show-context): Also show siblings on current level.
3148 (org-show-siblings): New function.
3149 (org-isearch-end, org-isearch-post-command): New functions.
3150 (org-show-siblings): New option.
3151 (org-show-context): Use `org-show-siblings'.
3152 (org-table-maybe-recalculate-line): No longer require `calc-eval'
3153 to be bound, because user may just use elisp.
3154
3155 2007-02-24 Kim F. Storm <storm@cua.dk>
3156
3157 * emulation/cua-base.el (cua-paste): Handle x-clipboard-yank.
3158 (cua--init-keymaps): Remap x-clipboard-yank to cua-paste.
3159
3160 2007-02-24 Dan Nicolaescu <dann@ics.uci.edu>
3161
3162 * startup.el (command-line): Also check if the abbrev file is readable.
3163
3164 2007-02-24 John Paul Wallington <jpw@pobox.com>
3165
3166 * net/tls.el (tls-certtool-program): Fix custom type.
3167
3168 * mail/feedmail.el (feedmail-message-id-generator)
3169 (feedmail-date-generator): Fix custom types.
3170
3171 * mail/rmail.el (rmail-message-filter): Fix custom type.
3172
3173 2007-02-24 Eli Zaretskii <eliz@gnu.org>
3174
3175 * startup.el (command-line): If simple.el cannot be found, proceed
3176 with a warning message.
3177
3178 2007-02-24 Kenichi Handa <handa@m17n.org>
3179
3180 * international/utf-8.el (utf-8-pre-write-conversion): Handle the
3181 case that BEG is a string.
3182
3183 2007-02-24 Chris Moore <dooglus@gmail.com>
3184
3185 * pgg-pgp5.el (pgg-pgp5-encrypt-region):
3186 * pgg-pgp.el (pgg-pgp-encrypt-region):
3187 * pgg-gpg.el (pgg-gpg-encrypt-region):
3188 Check pgg-encrypt-for-me if no other recipients.
3189
3190 2007-02-23 Eli Zaretskii <eliz@gnu.org>
3191
3192 * mail/rmailedit.el (rmail-cease-edit): Restore the Rmail toolbar.
3193
3194 * textmodes/sgml-mode.el (sgml-validate): Quote the file name with
3195 shell-quote-argument.
3196
3197 2007-02-23 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3198
3199 * comint.el (comint-read-input-ring): Use comint-input-ring-size
3200 from the comint buffer instead of the temporary one.
3201
3202 2007-02-23 David Reitter <david.reitter@gmail.com>
3203
3204 * cus-edit.el (custom-save-all): Canonicalize custom-file before
3205 storing it in recentf-exclude.
3206
3207 2007-02-23 Chong Yidong <cyd@stupidchicken.com>
3208
3209 * startup.el (fancy-splash-screens): Make cursor-type buffer-local
3210 in splash screen.
3211
3212 2007-02-22 J.D. Smith <jdsmith@as.arizona.edu>
3213
3214 * progmodes/idlw-shell.el (idlwave-shell-mode): Clean up pending
3215 commands, for restart.
3216 (idlwave-shell-current-module): Fix handling of module name by type.
3217 (idlwave-shell-break-in): Update type handling.
3218 (idlwave-shell-bp-get): Encode type in BP structure.
3219 (idlwave-shell-set-bp): Fix setting condition/count on disabled BPs.
3220 (idlwave-shell-module-source-query): Query routine info based on type.
3221 Fix path parsing for non-compiled files.
3222 (idlwave-shell-module-source-filter): Don't signal error in filter
3223 if no source found.
3224 (idlwave-shell-set-bp-in-module): Use fallback source to prevent
3225 filter race.
3226
3227 2007-02-22 Kim F. Storm <storm@cua.dk>
3228
3229 * wid-edit.el (widget-default-create): Undo 2007-02-04 change.
3230 (editable-field): Document need to put some text before the %v
3231 escape in :format string.
3232
3233 2007-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
3234
3235 * vc-svn.el: Remove the code inherited from CVSREAD and `cvs edit'.
3236 (vc-svn-use-edit): Remove unused config var.
3237 (vc-svn-update, vc-svn-revert): Checkout is always implicit.
3238
3239 * outline.el (hide-sublevels): Keep empty last line, if available.
3240
3241 * buff-menu.el (list-buffers-noselect): Use explicit unicode code
3242 rather than the corresponding unicode char, to make the code
3243 more readable.
3244
3245 2007-02-19 Juanma Barranquero <lekktu@gmail.com>
3246
3247 * speedbar.el (speedbar-frame-mode, speedbar-frame-width)
3248 (speedbar-show-unknown-files, speedbar-item-info-file-helper)
3249 (speedbar-item-info-tag-helper): Doc fixes.
3250
3251 2007-02-19 Kenichi Handa <handa@m17n.org>
3252
3253 * international/mule-cmds.el (locale-language-names):
3254 Map "eo" to "Esperanto".
3255
3256 * language/european.el ("Esperanto"): New language environment.
3257
3258 2007-02-17 Sven Joachim <svenjoac@gmx.de> (tiny change)
3259
3260 * simple.el (kill-line): Doc fix.
3261
3262 2007-02-17 Kim F. Storm <storm@cua.dk>
3263
3264 * emacs-lisp/bindat.el (bindat--unpack-u*): Optimize.
3265 (bindat--unpack-item, bindat--length-group, bindat--pack-item)
3266 (bindat--unpack-group, bindat--pack-group):
3267 Handle vectors with optional element type.
3268
3269 2007-02-17 Daiki Ueno <ueno@unixuser.org>
3270
3271 * pgg-gpg.el (pgg-gpg-process-region): Make USE-AGENT nil
3272 if PASSPHRASE is given.
3273
3274 2007-02-17 Chris Moore <dooglus@gmail.com>
3275
3276 * jka-cmpr-hook.el (jka-compr-compression-info-list):
3277 Recognize backups of bz2 compressed files.
3278
3279 2007-02-17 Eli Zaretskii <eliz@gnu.org>
3280
3281 * info-look.el (info-lookup): Bind Info-fontify-maximum-menu-size
3282 to nil to speed up lookup of the symbol in index nodes.
3283
3284 2007-02-17 Alin C. Soare <alinsoar@voila.fr> (tiny change)
3285
3286 * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
3287 Add indentation for the constants of Lisp.
3288
3289 2007-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
3290
3291 * ps-print.el: Use (defvar <foo>) where applicable.
3292 (ps-print-emacs-type): Remove.
3293 (ps-x-frame-property, ps-e-frame-parameter): Remove.
3294 (ps-frame-parameter): Align its call-convention with frame-parameter.
3295 (ps-begin-job): Adjust calls to it appropriately.
3296 (ps-setup): Don't print ps-print-emacs-type.
3297 (ps-e-find-composition, ps-mark-active-p, ps-color-device):
3298 Define in such a way that it's obvious that it's defined.
3299 (ps-prsc, ps-c-prsc, ps-s-prsc): Remove.
3300 (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
3301 (ps-jts-ps-setup): Use flavor-neutral syntax instead.
3302
3303 2007-02-15 Alan Mackenzie <acm@muc.de>
3304
3305 * progmodes/cc-cmds.el (c-indent-new-comment-line): When splitting
3306 an empty one-line C-style comment, post-position point properly.
3307
3308 2007-02-15 Chris Moore <dooglus@gmail.com>
3309
3310 * isearch.el (isearch-lazy-highlight-space-regexp): New variable.
3311 (isearch-lazy-highlight-new-loop): Bind it.
3312 (isearch-lazy-highlight-search): Use it.
3313
3314 * replace.el (replace-highlight): Bind search-whitespace-regexp to nil.
3315
3316 2007-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
3317
3318 * font-lock.el (font-lock-extend-region-wholelines):
3319 Only return non-nil if the region has really been changed.
3320 Reported by David Hansen <david.hansen@physik.fu-berlin.de>
3321
3322 2007-02-15 Juanma Barranquero <lekktu@gmail.com>
3323
3324 * play/5x5.el (5x5-crack-xor-mutate): Doc fix.
3325 (5x5-draw-grid-end, 5x5-make-xor-with-mutation, 5x5-mode, 5x5-crack)
3326 (5x5-play-solution, 5x5-y-or-n-p): Fix typos in docstrings.
3327
3328 2007-02-14 Juanma Barranquero <lekktu@gmail.com>
3329
3330 * faces.el (color-values): Revert changes to docstring from
3331 2007-01-31 and 2000-09-07.
3332
3333 * textmodes/ispell.el (ispell-keep-choices-win, ispell-word)
3334 (ispell-begin-skip-region-regexp): Fix typos in docstrings.
3335 (ispell-dictionary-alist, ispell-process-line): Doc fixes.
3336 (ispell-help): Fix typos in docstring and output message.
3337
3338 2007-02-14 Kim F. Storm <storm@cua.dk>
3339
3340 * progmodes/grep.el (grep-files-aliases): Add tex and texi aliases.
3341 (lgrep): Add DIR arg to start grep in specific directory, like rgrep.
3342 (grep): Fix lgrep reference.
3343
3344 * disp-table.el (make-glyph-code, glyph-char, glyph-face): New defuns.
3345 (standard-display-underline): Use make-glyph-code.
3346
3347 * descr-text.el (describe-char): Use glyph-char and glyph-face.
3348
3349 * international/latin1-disp.el (latin1-display-char):
3350 Use make-glyph-code.
3351
3352 2007-02-13 Juanma Barranquero <lekktu@gmail.com>
3353
3354 * ehelp.el (with-electric-help, electric-help-exit)
3355 (electric-help-retain): Doc fixes.
3356
3357 * emacs-lisp/bytecomp.el (byte-compile-dest-file)
3358 (byte-compile-file): Doc fixes.
3359
3360 2007-02-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3361
3362 * term/mac-win.el: Change all uses of
3363 mac-set-font-panel-visibility to mac-set-font-panel-visible-p.
3364 (mac-ae-number): Return integer 0 if coerced result is float 0.0.
3365 (mac-ae-get-url): Call select-frame-set-input-focus.
3366 (mac-dnd-handle-drag-n-drop-event): Don't call
3367 select-frame-set-input-focus.
3368
3369 2007-02-13 Kenichi Handa <handa@m17n.org>
3370
3371 * international/characters.el: Fix documentation of category `a'.
3372
3373 2007-02-11 Dan Nicolaescu <dann@ics.uci.edu>
3374
3375 * progmodes/grep.el (grep): Mention lgrep and rgrep in the docstring.
3376
3377 2007-02-12 Michael Albinus <michael.albinus@gmx.de>
3378
3379 * net/tramp.el (tramp-get-ls-command, tramp-get-file-exists-command)
3380 (tramp-get-remote-ln): Handle error case.
3381 Reported by Chris Moore <dooglus@gmail.com>.
3382
3383 2007-02-11 Kim F. Storm <storm@cua.dk>
3384
3385 * bindings.el (ctl-x-map): Remove register compatibility bindings
3386 C-x /, C-x j, C-x x, and C-x g (deprecated since Emacs 19).
3387
3388 2007-02-11 Richard Stallman <rms@gnu.org>
3389
3390 * loadhist.el (unload-feature): Handle (t . SYMBOL) entries
3391 in load history.
3392
3393 * emacs-lisp/lisp-mode.el (indent-sexp): Clean up termination
3394 condition -- don't fail to stop at endpos.
3395
3396 2007-02-11 Carsten Dominik <dominik@science.uva.nl>
3397
3398 * textmodes/org.el (org-agenda-get-todos)
3399 (org-agenda-get-timestamps, org-agenda-get-closed)
3400 (org-agenda-get-deadlines, org-agenda-get-scheduled)
3401 (org-agenda-get-blocks, org-format-agenda-item)
3402 (org-agenda-change-all-lines, org-scan-tags): Rename text property
3403 from `category' to `org-category'.
3404
3405 2007-02-11 Kenichi Handa <handa@m17n.org>
3406
3407 * international/titdic-cnv.el (titdic-convert): Force files be written
3408 with Unix-like eol format. Read files under CXTERM-DIC by raw-text.
3409 (miscdic-convert): Force files be written with Unix-like eol format.
3410
3411 2007-02-11 Juanma Barranquero <lekktu@gmail.com>
3412
3413 * files.el (change-major-mode-with-file-name): Fix typo in docstring.
3414
3415 * calculator.el (calculator-prompt): Doc fix.
3416 (calculator-mode-map): Fix typo in menu entry.
3417
3418 2007-02-10 Jay Belanger <belanger@truman.edu>
3419
3420 * calculator.el (calculator): Do more extensive checking for when
3421 3 lines should be used for the calculator.
3422
3423 2007-02-10 Eli Zaretskii <eliz@gnu.org>
3424
3425 * info-look.el (info-lookup-make-completions):
3426 Bind Info-fontify-maximum-menu-size to nil to speed up lookup of
3427 index nodes.
3428
3429 * info.el (Info-fontify-maximum-menu-size): Document the effect
3430 of a nil value.
3431 (Info-fontify-node): Make sure Info-fontify-maximum-menu-size is
3432 non-nil before using it as size.
3433
3434 2007-02-09 Chong Yidong <cyd@stupidchicken.com>
3435
3436 * subr.el (insert-for-yank-1): Prevent read-only properties from
3437 interfering with text property operations.
3438
3439 * image-mode.el (image-mode): Revert 2007-01-30 changes.
3440
3441 * image.el (image-type-auto-detectable): Don't autodetect x[pb]m.
3442 (image-type-auto-detected-p): Fail if another match is found in
3443 auto-mode-alist.
3444
3445 * files.el (magic-mode-alist): Call image-mode instead of
3446 image-mode-maybe for autodetected images.
3447
3448 2007-02-09 Juanma Barranquero <lekktu@gmail.com>
3449
3450 * mail/smtpmail.el (smtpmail-smtp-service, smtpmail-queue-index-file):
3451 Fix typos in docstrings.
3452 (smtpmail-local-domain, smtpmail-queue-mail): Doc fixes.
3453
3454 2007-02-09 Kim F. Storm <storm@cua.dk>
3455
3456 * emacs-lisp/float-sup.el: Remove obsolete comment.
3457
3458 2007-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
3459
3460 * diff-mode.el (diff-sanity-check-hunk): Fix last fix.
3461
3462 2007-02-08 Karl Fogel <kfogel@red-bean.com>
3463
3464 * simple.el: Revert previous change, at request of RMS:
3465 (fundamental-mode-hook): Remove.
3466 (fundamental-mode): Run after-change-major-mode-hooks manually,
3467 and don't run the now-nonexistent fundamental-mode-hook.
3468
3469 2007-02-08 Karl Fogel <kfogel@red-bean.com>
3470
3471 * simple.el (fundamental-mode-hook): Declare new hook.
3472 (fundamental-mode): Run the new dedicated hook, and don't run
3473 after-change-major-mode-hooks manually anymore.
3474
3475 2007-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
3476
3477 * vc-svn.el (vc-svn-merge-news): Understand the new format with two
3478 added columns of chars. Remove support for the "no-meta-info" format.
3479 Prompted by Romain Francoise <romain@orebokech.com>.
3480
3481 2007-02-07 Nick Roberts <nickrob@snap.net.nz>
3482
3483 * progmodes/gdb-ui.el (gdb-if-arrow): New macro.
3484 (gdb-mouse-until, gdb-mouse-jump): Use it.
3485
3486 2007-02-07 Nick Roberts <nickrob@snap.net.nz>
3487
3488 * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump): Make them
3489 work when there is just an assembler buffer (no source buffer).
3490
3491 2007-02-07 Per Cederqvist <ceder@lysator.liu.se> (tiny change)
3492
3493 * diff-mode.el (diff-sanity-check-hunk): Don't reject the hunk
3494 just because the diff was produced using "-p" (--show-c-function).
3495
3496 2007-02-07 Juanma Barranquero <lekktu@gmail.com>
3497
3498 * faces.el (frame-set-background-mode): Use `color-values' and
3499 `display-color-p', not `x-color-values' and `x-display-color-p'.
3500 (face-valid-attribute-values): Use `defined-colors' instead of
3501 `x-defined-colors'.
3502
3503 2007-02-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3504
3505 * ps-print.ps: The ps-print commands without face printing should not
3506 print background color. Reported by Leo <sdl.web@gmail.com>.
3507 (ps-print-version): New version 6.7.3.
3508 (ps-begin-job): New arg. Fix ps-default-background and
3509 ps-default-foreground initialization.
3510 (ps-face-attributes): Fix doc string.
3511 (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
3512
3513 * printing.el: Fix ps-print link.
3514
3515 2007-02-06 Chong Yidong <cyd@stupidchicken.com>
3516
3517 * faces.el (face-set-after-frame-default): Compile attributes to
3518 be set by frame parameters before merging in X resources.
3519
3520 2007-02-06 Juanma Barranquero <lekktu@gmail.com>
3521
3522 * simple.el (blink-matching-paren-dont-ignore-comments):
3523 (blink-matching-paren-on-screen): Doc fixes.
3524
3525 2007-02-06 Nick Roberts <nickrob@snap.net.nz>
3526
3527 * progmodes/gdb-ui.el (gdb-frames-mode): Truncate lines in stack buffer.
3528
3529 2007-02-05 Juanma Barranquero <lekktu@gmail.com>
3530
3531 * loadhist.el (unload-feature): Silently ignore `load-history' entries
3532 of the form `(defface . SYMBOL)', and treat `(autoload . SYMBOL)'
3533 entries like `defun'. Return nil.
3534
3535 2007-02-05 Kim F. Storm <storm@cua.dk>
3536
3537 * ido.el: Doc fixes.
3538
3539 2007-02-04 David Kastrup <dak@gnu.org>
3540
3541 * play/mpuz.el (mpuz-random-puzzle): Fix potential lockup when
3542 `mpuz-allow-double-multiplicator' is non-zero, and correct
3543 calculation of `min'.
3544
3545 2007-02-04 Per Abrahamsen <abraham@dina.kvl.dk>
3546
3547 * wid-edit.el (widget-default-create): Insert new text at the
3548 :from marker _after_ the marker, not before it.
3549
3550 2007-02-04 Alan Mackenzie <acm@muc.de>
3551
3552 * progmodes/cc-cmds.el (c-indent-line): Don't erase ^L when a line
3553 containing it is re-indented.
3554
3555 2007-02-03 Chong Yidong <cyd@stupidchicken.com>
3556
3557 * net/newsticker.el (newsticker--insert-image): Update docstring,
3558 and insert the image directly.
3559 (newsticker--buffer-redraw): Update docstring.
3560
3561 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3562 Rename from define-global-minor-mode.
3563
3564 * progmodes/cwarn.el (global-cwarn-mode):
3565 * emacs-lisp/autoload.el (make-autoload):
3566 * hi-lock.el (global-hi-lock-mode):
3567 * font-core.el (global-font-lock-mode): All callers changed.
3568
3569 2007-02-03 Eli Zaretskii <eliz@gnu.org>
3570
3571 * textmodes/texnfo-upd.el (texinfo-menu-copy-old-description):
3572 Don't copy @ignore lines into menu descriptions.
3573 (texinfo-multi-file-update): Goto the @node line before attempting
3574 to pluck the node name.
3575 (texinfo-multiple-files-update): Reverse the optional arguments'
3576 order, as per the doc string and the `interactive' form.
3577
3578 2007-02-03 Chong Yidong <cyd@stupidchicken.com>
3579
3580 * image-mode.el: Use autoload to avoid overriding disabled setting
3581 applied in .emacs.
3582
3583 2007-02-03 Alan Mackenzie <acm@muc.de>
3584
3585 * progmodes/cc-engine.el (c-in-knr-argdecl): Slight correction
3586 for, e.g. "void (*hdone)();" in a k&r list. (No WS between
3587 adjacent paren groups).
3588
3589 2007-02-02 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3590
3591 * progmodes/ebnf2ps.el: Doc fixes.
3592 (ebnf-eps-buffer, ebnf-eps-region, ebnf-syntax-alist): Doc fixes.
3593
3594 2007-02-02 Eli Zaretskii <eliz@gnu.org>
3595
3596 * dired-x.el (dired-do-relsymlink): Add reference to
3597 dired-do-symlink. Add an autoload cookie.
3598
3599 * dired-aux.el (dired-do-symlink): Add reference to
3600 dired-do-relsymlink.
3601
3602 2007-02-02 Doug Maxey <dwm@enoyolf.org> (tiny change)
3603
3604 * mouse.el <left-fringe mouse-2, right-fringe mouse-3>:
3605 <left-fringe mouse-3>: New bindings.
3606
3607 2007-02-02 Ulf Jasper <ulf.jasper@web.de>
3608
3609 * newsticker.el (newsticker-version): Changed to "1.10".
3610 (newsticker--set-customvar): Doc string.
3611 (newsticker-new-item-face): Doc string.
3612 (newsticker-mode): Initialize `invisibility-spec' with t.
3613 (newsticker-mode-map): Added
3614 `newsticker-mark-all-items-at-point-as-read'.
3615 (newsticker-menu): Added narrow-to-item and narrow-to-feed.
3616 (newsticker-w3m-show-inline-images): Do not call
3617 `w3m-remove-image'.
3618 (newsticker--buffer-after-w3m-insert-image): New advice for
3619 w3m-insert-image to cache images.
3620 (newsticker-next-item-same-feed): New.
3621 (newsticker-mark-all-items-at-point-as-read-and-redraw): New.
3622 (newsticker-mark-all-items-of-feed-as-read): New.
3623 (newsticker-mark-all-items-at-point-as-read): Use new functions.
3624 (newsticker-mark-item-at-point-as-read): Doc string.
3625 (newsticker-mark-item-at-point-as-read): Use new functions.
3626 (newsticker--do-mark-item-at-point-as-read): New, extracted from
3627 `newsticker-mark-item-at-point-as-read'.
3628 (newsticker-hide-entry): Use (t) instead of t for invisibility.
3629 (newsticker--sentinel): Yet another xml-parser workaround.
3630 (newsticker--decode-iso8601-date): Bugfix for datestrings without
3631 days.
3632 (newsticker--buffer-do-insert-text): Fix.
3633 (newsticker--buffer-insert-enclosure): Fix. length might be missing.
3634 (newsticker--buffer-make-item-completely-visible):
3635 `switch-to-buffer' not necessary.
3636
3637 2007-02-02 Eli Zaretskii <eliz@gnu.org>
3638
3639 * progmodes/ebnf2ps.el (ebnf-eps-buffer, ebnf-eps-region)
3640 (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-region)
3641 (ebnf-style-database, ebnf-apply-style, ebnf-reset-style)
3642 (ebnf-push-style, ebnf-pop-style, ebnf-eps-production-list)
3643 (ebnf-directory, ebnf-file, ebnf-syntax-alist): Doc fixes.
3644
3645 2007-02-02 Kenichi Handa <handa@m17n.org>
3646
3647 * international/quail.el (quail-show-key): Fix an error message.
3648
3649 2007-02-01 Juanma Barranquero <lekktu@gmail.com>
3650
3651 * faces.el (set-face-underline-p, modify-face): Rename arg
3652 UNDERLINE-P to UNDERLINE (it is not a flag).
3653
3654 2007-02-01 Nick Roberts <nickrob@snap.net.nz>
3655
3656 * progmodes/gdb-ui.el (gdb-speedbar-update): Avoid duplication
3657 when adding gdb-speedbar-update to gdb-input-queue.
3658
3659 2007-02-01 Kenichi Handa <handa@m17n.org>
3660
3661 * international/quail.el (quail-show-key): Signal an error if the
3662 current input method is not using Quail.
3663
3664 2007-02-01 J.D. Smith <jdsmith@as.arizona.edu>
3665
3666 * progmodes/idlwave.el (idlwave-xml-create-sysvar-alist):
3667 Trim leading whitespace in sysvar names.
3668
3669 2007-02-01 Juanma Barranquero <lekktu@gmail.com>
3670
3671 * faces.el (internal-find-face, internal-get-face): Doc fixes.
3672
3673 2007-01-31 Juanma Barranquero <lekktu@gmail.com>
3674
3675 * ido.el (ido-set-common-completion): Use `let', not `let*'.
3676
3677 2007-01-31 Romain Francoise <romain@orebokech.com>
3678
3679 * comint.el: Delete extra copy of `comint-copy-old-input' added in
3680 previous change to this file.
3681
3682 2007-01-31 Jason Rumney <jasonr@gnu.org>
3683
3684 * files.el (magic-mode-alist): Use image-mode-maybe rather than
3685 image-mode.
3686
3687 * image-mode.el (image-mode-maybe): Prevent magic-mode-alist from
3688 interfering with attempt to set major mode from modified
3689 auto-mode-alist.
3690
3691 2007-01-31 Juanma Barranquero <lekktu@gmail.com>
3692
3693 * faces.el (color-values): Doc fix.
3694 (face-differs-from-default-p): Don't check :foreground twice.
3695
3696 2007-01-31 J.D. Smith <jdsmith@as.arizona.edu>
3697
3698 * comint.el (comint-mode): Prevent non-keyword fontification by default.
3699
3700 2007-01-31 Kenichi Handa <handa@m17n.org>
3701
3702 * international/quail.el (quail-store-decode-map-key): Store a
3703 translated character too.
3704 (quail-char-equal-p): New function.
3705 (quail-find-key1): Check character equality by quail-char-equal-p.
3706 (quail-decode-map-generated): New variable.
3707 (quail-find-key): Check quail-decode-map-generated and re-generate
3708 a decode map if necessary.
3709
3710 2007-01-30 Richard Stallman <rms@gnu.org>
3711
3712 * tutorial.el (tutorial--detailed-help): Make the list of
3713 changed keys look nicer.
3714
3715 2007-01-30 Nick Roberts <nickrob@snap.net.nz>
3716
3717 * progmodes/gdb-ui.el (gdb-var-delete-1): New function.
3718 (gdb-var-delete): Use it.
3719 (gdb-var-update-handler-1): Handle value "invalid" for MI field
3720 `in_scope'.
3721
3722 2007-01-30 Michael Albinus <michael.albinus@gmx.de>
3723
3724 * files.el (get-free-disk-space): Return nil for remote directories.
3725
3726 * net/ange-ftp.el (ange-ftp-ls): In case of wildcards, use "ls"
3727 instead of "dir".
3728
3729 2007-01-30 Chong Yidong <cyd@stupidchicken.com>
3730
3731 * type-break.el (type-break-catch-up-event): New function.
3732 (type-break-demo-hanoi, type-break-demo-life)
3733 (type-break-demo-boring): Use it.
3734
3735 * image-mode.el (image-mode): Don't automatically view as image.
3736 (image-toggle-display): Add `disabled' property.
3737
3738 2007-01-29 Juanma Barranquero <lekktu@gmail.com>
3739
3740 * isearchb.el (isearchb-iswitchb):
3741 * ps-print.el (ps-build-face-reference):
3742 * emacs-lisp/shadow.el (list-load-path-shadows):
3743 * eshell/esh-cmd.el (eshell-rewrite-for-command):
3744 * international/mule.el (find-auto-coding):
3745 * mail/supercite.el (sc-attrib-selection-list):
3746 * progmodes/cc-defs.el (c-emacs-features):
3747 * progmodes/cc-vars.el (c-offsets-alist):
3748 * progmodes/flymake.el
3749 (flymake-init-create-temp-source-and-master-buffer-copy):
3750 Fix typos in docstrings (some suggested by Chris Moore).
3751
3752 * progmodes/vhdl-mode.el (vhdl-components-package-name)
3753 (vhdl-get-library-unit, vhdl-corresponding-begin)
3754 (vhdl-skip-case-alternative, vhdl-backward-skip-label)
3755 (vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word)
3756 (vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func)
3757 (vhdl-font-lock-match-item): Fix typos in docstrings.
3758 (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist)
3759 (vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents)
3760 (vhdl-speedbar-insert-project-hierarchy):
3761 Improve argument/docstring consistency.
3762
3763 2007-01-29 Kenichi Handa <handa@m17n.org>
3764
3765 * international/titdic-cnv.el (py-converter): Fix previous change.
3766
3767 2007-01-29 Chong Yidong <cyd@stupidchicken.com>
3768
3769 * jka-compr.el (jka-compr-partial-uncompress)
3770 (jka-compr-call-process): Rebind default-directory if it is
3771 invalid. Suggested by Chris Moore.
3772
3773 * comint.el (comint-insert-input): Handle situation where the
3774 selected buffer is not the clicked buffer.
3775
3776 2007-01-29 Kenichi Handa <handa@m17n.org>
3777
3778 * international/ja-dic-cnv.el (skkdic-convert):
3779 Add byte-compile-disable-print-circle:t at the head.
3780
3781 * international/titdic-cnv.el (tit-process-header):
3782 Add byte-compile-disable-print-circle:t at the head.
3783 (miscdic-convert): Likewise.
3784 (py-converter): Skip the header comments.
3785
3786 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle):
3787 New variable.
3788 (byte-compile-output-file-form): Bing print-circle to nil if
3789 byte-compile-output-file-form is not nil.
3790 (byte-compile-output-docform): Likewise.
3791
3792 2007-01-28 Kim F. Storm <storm@cua.dk>
3793
3794 * emulation/cua-base.el (cua-global-keymap, cua--region-keymap):
3795 Declare earlier to avoid byte compiler warnings.
3796
3797 2007-01-28 Markus Triska <markus.triska@gmx.at>
3798
3799 * speedbar.el (speedbar-make-specialized-keymap): Doc fix.
3800
3801 2007-01-28 Chong Yidong <cyd@stupidchicken.com>
3802
3803 * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly.
3804 (gamegrid-add-score-with-update-game-score-1): Allow local quits
3805 when calling update-game-score program. Remove unnecessary
3806 save-excursion.
3807
3808 * play/tetris.el (tetris-new-shape): Stop drawing if game is over.
3809
3810 2007-01-28 Nick Roberts <nickrob@snap.net.nz>
3811
3812 * progmodes/gdb-ui.el (gdb-breakpoint-regexp): Declare earlier to
3813 avoid compiler warning.
3814 (gdb-var-update-handler-1): Consider that the MI field `in_scope'
3815 might have values other than "true" or "false".
3816
3817 2007-01-28 Richard Stallman <rms@gnu.org>
3818
3819 * textmodes/fill.el (fill-paragraph-function): Doc fix.
3820 (fill-paragraph): Bind fill-paragraph-function to t to avoid recursion.
3821
3822 * emacs-lisp/pp.el (pp-eval-last-sexp): Don't eval here.
3823
3824 * image.el (image-type-header-regexps): Make GIF regex more specific.
3825
3826 * tutorial.el (tutorial--default-keys): Check M-DEL, not `M-backspace'.
3827 Don't check `backspace'.
3828 (tutorial--find-changed-keys): Look up bindings in a temp buffer
3829 in Fundamental mode.
3830
3831 * startup.el (fancy-splash-text, normal-splash-screen):
3832 Mention C-g.
3833
3834 * simple.el (eval-expression): Don't use eval-last-sexp-print-value
3835 when inserting in buffer.
3836
3837 * vc-arch.el (vc-arch-file-id): Move with-current-buffer
3838 inside the if.
3839
3840 2007-01-27 Richard Stallman <rms@gnu.org>
3841
3842 * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do".
3843
3844 2007-01-27 Guanpeng Xu <herberteuler@hotmail.com>
3845
3846 * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for
3847 enum/union/struct/class definition.
3848 Revert change to call `forward-sexp' multiple times.
3849
3850 2007-01-27 Chong Yidong <cyd@stupidchicken.com>
3851
3852 * files.el (hack-local-variables-confirm): Don't keep trying to
3853 read an event from an empty kbd macro.
3854
3855 2007-01-27 Eli Zaretskii <eliz@gnu.org>
3856
3857 * server.el (server-start): Mention LEAVE-DEAD arg in the doc string.
3858
3859 2007-01-27 Ben North <ben@redfrontdoor.org>
3860
3861 * outline.el (outline-promote, outline-demote): Doc fix. Rename
3862 the arg CHILDREN -> WHICH.
3863
3864 2007-01-27 Michael Albinus <michael.albinus@gmx.de>
3865
3866 * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set
3867 default-directory to a sane value when calling start-process.
3868
3869 2007-01-27 Eli Zaretskii <eliz@gnu.org>
3870
3871 * ls-lisp.el (ls-lisp-use-localized-time-format): New defcustom.
3872 (ls-lisp-format-time-list): Doc fix. Mention
3873 ls-lisp-use-localized-time-format.
3874 (ls-lisp-format-time): Use ls-lisp-format-time-list if
3875 ls-lisp-use-localized-time-format is non-nil, even if a valid
3876 locale is defined.
3877
3878 2007-01-27 Juanma Barranquero <lekktu@gmail.com>
3879
3880 * jka-compr.el (jka-compr-shell): Doc fix.
3881
3882 * jka-cmpr-hook.el (jka-compr-compression-info-list): Doc fix.
3883
3884 2007-01-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3885
3886 * ps-print.ps: Fix background height.
3887 (ps-print-version): New version 6.7.2.
3888
3889 2007-01-26 Eli Zaretskii <eliz@gnu.org>
3890
3891 * makefile.w32-in (finder-data, custom-deps): Depend on
3892 $(lisp)/loaddefs.el.
3893
3894 2007-01-24 Dan Nicolaescu <dann@ics.uci.edu>
3895
3896 * Makefile.in (custom-deps, finder-data): Add dependency to loaddefs.el.
3897
3898 2007-01-24 Miles Bader <miles@gnu.org>
3899
3900 * emacs-lisp/bytecomp.el (byte-compile-output-file-form)
3901 (byte-compile-output-docform): Bind `print-circle' to t.
3902
3903 2007-01-24 Kenichi Handa <handa@m17n.org>
3904
3905 * international/ja-dic-cnv.el (skkdic-convert): Insert a related
3906 file name of the original SKK dictionary file.
3907
3908 2007-01-24 Kim F. Storm <storm@cua.dk>
3909
3910 * ido.el (ido-initial-position): New variable.
3911 (ido-read-internal): Set it if default item is specified.
3912 (ido-minibuffer-setup): Position cursor accordingly if set.
3913 (ido-edit-input): C-e moves to end of input if not already there.
3914 (ido-magic-backward-char): C-b does like M-b if prev char is /.
3915 Don't switch to buffer mode if repeating C-b at start of input.
3916 (ido-toggle-ignore): C-a only toggles ignore at start or end of
3917 input; else it moves to start of input.
3918 (ido-kill-buffer-at-head, ido-delete-file-at-head): If cursor is
3919 not at end of input, delete rest of input, rather than normal op.
3920
3921 2007-01-23 Michael Kifer <kifer@cs.stonybrook.edu>
3922
3923 * viper-keym.el (viper-insert-basic-map): Delete binding for S-TAB.
3924
3925 * ediff-util.el (ediff-clone-buffer-for-region-comparison): Change text
3926 of message. Activate mark.
3927 (ediff-activate-mark): Set transient-mark-mode to t.
3928
3929 * ediff.el (ediff-regions-wordwise, ediff-regions-linewise): Doc fix.
3930
3931 2007-01-23 Martin Rudalics <rudalics@gmx.at>
3932
3933 * help-fns.el (describe-variable): Don't suppress display of
3934 buffer local value when the value is "large".
3935
3936 2007-01-22 Kim F. Storm <storm@cua.dk>
3937
3938 * ido.el (ido-active): Add XEmacs test from ido-minibuffer-setup.
3939 (ido-initiate-auto-merge, ido-exhibit, ido-minibuffer-setup)
3940 (ido-tidy): Use ido-active.
3941
3942 2007-01-22 Chris Moore <christopher.ian.moore@gmail.com>
3943
3944 * hexl.el (hexl-mode-exit): Add missing quote.
3945
3946 2007-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3947
3948 * term/mac-win.el (mac-keyboard-modifier-mask-alist): New constant.
3949 (mac-ae-keyboard-modifiers): New function.
3950 (mac-handle-toolbar-switch-mode): Use it.
3951 (mac-dnd-handle-drag-n-drop-event): Likewise. Set action to `copy'
3952 if keyboard modifiers on drop contain option key.
3953 (mac-dnd-drop-data): Add optional argument `action'.
3954 (special-event-map): Remove binding for M-drag-n-drop.
3955
3956 2007-01-21 Guanpeng Xu <herberteuler@hotmail.com>
3957
3958 * add-log.el (add-log-current-defun): Use CC Mode functions to
3959 find the beginning and end of a defun.
3960
3961 2007-01-21 Nick Roberts <nickrob@snap.net.nz>
3962
3963 * progmodes/gdb-ui.el (gdb-var-create-regexp)
3964 (gdb-var-create-handler): Handle value field in GDB output of
3965 -var-create.
3966 (gdb-max-frames): New variable.
3967 (gdb-stack-buffer, gdb-frames-select): Use it.
3968 (gdb-info-stack-custom): Help user customize gdb-max-frames,
3969 if necessary.
3970 (gdb-get-frame-number): Simplify.
3971
3972 2007-01-21 Glenn Morris <rgm@gnu.org>
3973
3974 * net/tramp.el (tramp-perl-encode, tramp-perl-decode):
3975 Update copyrights.
3976
3977 2007-01-21 Alan Mackenzie <acm@muc.de>
3978
3979 * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Correct the
3980 handling of K&R stuff.
3981
3982 2007-01-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3983
3984 * textmodes/bibtex.el (bibtex-files): Fix customization type.
3985
3986 2007-01-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3987
3988 * ps-print.el: Handle frame parameters (background and/or foreground
3989 colors) changing dynamically. Reported by Leo <sdl.web@gmail.com>.
3990 (ps-print-version): New version 6.7.1.
3991 (ps-x-frame-property, ps-e-frame-parameter): New aliases.
3992 (ps-frame-parameter): New fun.
3993 (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
3994 Fix doc and customization.
3995 (ps-begin-job): Get frame parameters (background and/or foreground
3996 colors).
3997 (ps-do-despool): Ensure ps-printer-name has a valid value.
3998
3999 2007-01-21 Nick Roberts <nickrob@snap.net.nz>
4000
4001 * progmodes/gdb-ui.el (gdb-debug-log): Rename from gdb-debug-ring.
4002 (gdb-debug-log-max): Rename from gdb-debug-ring-max.
4003 (gud-gdba-marker-filter): Make a value of nil for gdb-debug-ring-max
4004 mean unlimited.
4005
4006 2007-01-20 Alan Mackenzie <acm@muc.de>
4007
4008 * progmodes/cc-engine.el (c-in-knr-argdecl): Reformulate to do
4009 much more rigorous analysis of putative K&R regions.
4010
4011 2007-01-20 Alan Mackenzie <acm@muc.de>
4012
4013 * progmodes/cc-defs.el (c-go-list-forward, c-go-list-backward):
4014 New functions.
4015
4016 2007-01-20 Alan Mackenzie <acm@muc.de>
4017
4018 * progmodes/cc-align.el, progmodes/cc-cmds.el,
4019 * progmodes/cc-defs.el, progmodes/cc-engine.el,
4020 * progmodes/cc-langs.el, progmodes/cc-styles.el,
4021 * progmodes/cc-vars.el: Add my name.
4022
4023 2007-01-20 Chong Yidong <cyd@stupidchicken.com>
4024
4025 * files.el (find-alternate-file): Revert query message to Emacs 21
4026 version.
4027
4028 2007-01-20 Eric Hanchrow <offby1@blarg.net> (tiny change)
4029
4030 * progmodes/cperl-mode.el (cperl-electric-keywords): Document in
4031 the doc string how to use personal abbrevs without electric
4032 keywords.
4033
4034 2007-01-20 Alin C. Soare <alinsoar@voila.fr> (tiny change)
4035
4036 * lisp/emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
4037 Fixed cursor position when toggle abbreviated display.
4038
4039 2007-01-20 Nick Roberts <nickrob@snap.net.nz>
4040
4041 * t-mouse.el: Update copyright following assignment by
4042 Alessandro Rubini.
4043
4044 2007-01-20 Chong Yidong <cyd@stupidchicken.com>
4045
4046 * type-break.el (type-break-demo-hanoi, type-break-demo-life)
4047 (type-break-demo-boring): Call read-event instead of read-char.
4048
4049 2007-01-19 Daniel Pfeiffer <occitan@esperanto.org> (tiny change)
4050
4051 * progmodes/compile.el: Add handling for makepplog.
4052
4053 2007-01-19 Reiner Steib <Reiner.Steib@gmx.de>
4054
4055 * textmodes/ispell.el (ispell-change-dictionary): Ensure that
4056 aspell dictionaries are initialized when called non-interactively.
4057
4058 2007-01-19 Chong Yidong <cyd@stupidchicken.com>
4059
4060 * progmodes/compile.el (compilation-loop): New arg limit.
4061 Handle case where the first error is at point-min.
4062 (compilation-next-error): New arg to compilation-loop call.
4063
4064 2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
4065
4066 * info.el (Info-default-dirs): Change default info dir to
4067 share/info.
4068
4069 * paths.el (Info-default-directory-list): Ditto.
4070
4071 2007-01-18 Chris Moore <christopher.ian.moore@gmail.com>
4072
4073 * hexl.el (hexl-before-revert-hook): New function.
4074 (hexl-mode): Use it.
4075 (hexl-after-revert-hook): Just call hexl-mode.
4076 (hexl-mode-exit): Remove before-revert-hook.
4077
4078 2007-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
4079
4080 * isearch.el (isearch-no-upper-case-p): Look for [:upper:] as well.
4081
4082 2007-01-16 Martin Rudalics <rudalics@gmx.at>
4083
4084 * textmodes/ispell.el (ispell-dictionary-alist-3): Replace "---"
4085 by "-" in francais7 otherchars entry.
4086 (ispell-dictionary-alist-5): Replace "." by "[.]" for polish
4087 otherchars entry.
4088
4089 2007-01-15 Karl Fogel <kfogel@red-bean.com>
4090
4091 * bookmark.el (bookmark-buffer-file-name): Abbreviate the bookmark
4092 path. Rewrite function in `cond' style for readability.
4093
4094 Suggested by: Stephen Eglen <S.J.Eglen{_AT_}damtp.cam.ac.uk>.
4095 (The path shortening, that is, not the rearrarangement.)
4096
4097 2007-01-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4098
4099 * term/mac-win.el (mac-ae-quit-application): New function.
4100 (mac-apple-event-map): Bind "quit application" Apple event to it.
4101
4102 2007-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4103
4104 * vc-svn.el (vc-svn-parse-status): Trust the filename argument more
4105 than the program's output.
4106
4107 2007-01-14 Juanma Barranquero <lekktu@gmail.com>
4108
4109 * kmacro.el (kmacro-insert-counter, kmacro-set-counter)
4110 (kmacro-start-macro-or-insert-counter)
4111 (kmacro-step-edit-prefix-commands): Fix typos in docstrings.
4112 (kmacro-call-ring-2nd, kmacro-call-ring-2nd-repeat): Doc fixes.
4113
4114 * longlines.el (longlines-show-hard-newlines):
4115 * ruler-mode.el (ruler-mode-ruler):
4116 * emulation/keypad.el (keypad-setup):
4117 * progmodes/antlr-mode.el (antlr-indent-at-bol-alist):
4118 Fix typo in docstring.
4119
4120 2007-01-13 Mathias Dahl <mathias.dahl@gmail.com>
4121
4122 * tumme.el (tumme-cmd-rotate-original-options): Add -outfile option.
4123 Remove redirect character ">".
4124
4125 2007-01-13 Juanma Barranquero <lekktu@gmail.com>
4126
4127 * replace.el (perform-replace): Remove leftover code.
4128
4129 2007-01-12 Richard Stallman <rms@gnu.org>
4130
4131 * replace.el (perform-replace): Don't clear NODENT when computing
4132 the replacement string.
4133
4134 2007-01-11 Michael Albinus <michael.albinus@gmx.de>
4135
4136 * net/tramp.el (tramp-handle-file-local-copy):
4137 Set `enable-multibyte-characters' to nil. Reported by Chris Moore
4138 <christopher.ian.moore@gmail.com>.
4139
4140 2007-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
4141
4142 * diff-mode.el (diff-sanity-check-context-hunk-half)
4143 (diff-sanity-check-hunk): New functions.
4144 (diff-find-source-location): Use'em to check the hunks are well-formed.
4145
4146 * hexl.el (hexlify-buffer, dehexlify-buffer): Don't complain and don't
4147 activate undo when undo is not active.
4148 Reported by Chris Moore <christopher.ian.moore@gmail.com>.
4149
4150 2007-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
4151
4152 * ffap.el (ffap-next-regexp, ffap-machine-p, ffap-newsgroup-regexp)
4153 (ffap-newsgroup-p, ffap-alist, ffap-string-at-point-mode-alist)
4154 (ffap-url-at-point): Use char-classes rather than "a-z".
4155
4156 2007-01-10 Juanma Barranquero <lekktu@gmail.com>
4157
4158 * ediff-init.el (ediff-autostore-merges):
4159 * textmodes/fill.el (fill-region): Doc fix.
4160
4161 2007-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
4162
4163 * server.el (server-ensure-safe-dir): UIDs may be floats.
4164
4165 2007-01-10 Richard Stallman <rms@gnu.org>
4166
4167 * battery.el (battery-linux-proc-acpi): Use ignore-errors
4168 around calls to directory-files.
4169
4170 * subr.el (momentary-string-display): Use save-excursion.
4171
4172 * emacs-lisp/pp.el (pp-eval-expression): Once again eval the
4173 argument, but read it as `X' does.
4174
4175 2007-01-09 Juri Linkov <juri@jurta.org>
4176
4177 * info.el (Info-fontify-node): Don't hide node names of index entries.
4178
4179 * faces.el (momentary): Change :group to basic-faces where all
4180 basic faces belong to. Add :version.
4181
4182 2007-01-09 Lennart Borgman <lennart.borgman.073@student.lu.se>
4183
4184 * tutorial.el (tutorial--display-changes): Show M-x sequence if no
4185 keybinding is found.
4186 (tutorial--find-changed-keys): Never treat null keybinding as a
4187 remapping.
4188
4189 2007-01-09 Martin Rudalics <rudalics@gmx.at>
4190
4191 * wdired.el (wdired-xcase-word): Skip non-word read-only characters.
4192
4193 2007-01-09 Kenichi Handa <handa@m17n.org>
4194
4195 * international/mule-cmds.el
4196 (select-safe-coding-system-interactively): Fix message.
4197
4198 2007-01-09 Michael Albinus <michael.albinus@gmx.de>
4199
4200 * net/tramp.el (tramp-process-one-action): Remove `with-timeout'.
4201 (tramp-process-actions): Add optional parameter TIMEOUT.
4202 (tramp-open-connection-telnet, tramp-open-connection-rsh)
4203 (tramp-open-connection-su): Add timeout of 60".
4204
4205 2007-01-09 Richard Stallman <rms@gnu.org>
4206
4207 * progmodes/compile.el (compile): Doc fix.
4208
4209 2007-01-09 Markus Triska <markus.triska@gmx.at>
4210
4211 * tumme.el (tumme-display-thumb): Doc fix.
4212
4213 2007-01-08 Juanma Barranquero <lekktu@gmail.com>
4214
4215 * battery.el (battery-search-for-one-match-in-files):
4216 * bindings.el (mode-line-minor-mode-help):
4217 * x-dnd.el (x-dnd-types-alist):
4218 * calendar/icalendar.el (icalendar-import-buffer):
4219 * term/mac-win.el (mac-dnd-types-alist): Fix typo in docstring.
4220
4221 * progmodes/vhdl-mode.el (vhdl-save-caches): Fix typo in error message.
4222
4223 2007-01-07 Chris Moore <christopher.ian.moore@gmail.com>
4224
4225 * replace.el (replace-regexp): Fix typo in docstring.
4226
4227 2007-01-07 Alan Mackenzie <acm@muc.de>
4228
4229 * progmodes/cc-langs.el (c-operators, c-filter-ops):
4230 Amend doc-string and comments.
4231
4232 2007-01-06 Eli Zaretskii <eliz@gnu.org>
4233
4234 * files.el (abbreviate-file-name): Doc fix.
4235
4236 2007-01-06 Markus Triska <triska@gmx.at>
4237
4238 * subr.el (split-string): Remove spurious ")" from doc string.
4239
4240 2007-01-05 Takaaki Ota <Takaaki.Ota@am.sony.com>
4241
4242 * textmodes/table.el (table--warn-incompatibility):
4243 Use display-warning instead of momentary-string-display.
4244
4245 2007-01-05 Richard Stallman <rms@gnu.org>
4246
4247 * image.el (image-type-header-regexps): Recognize xbm more strictly.
4248
4249 * simple.el (backward-kill-word): Doc fix.
4250
4251 2007-01-05 Romain Francoise <romain@orebokech.com>
4252
4253 * international/mule.el (sgml-html-meta-auto-coding-function):
4254 Ensure that the buffer contains a HTML document.
4255
4256 2007-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4257
4258 * faces.el (momentary): Move here ...
4259 * subr.el (momentary): ... from here.
4260
4261 2007-01-05 Nick Roberts <nickrob@snap.net.nz>
4262
4263 * progmodes/gdb-ui.el (gdb-max-children): New customizable variable.
4264 (gdb-speedbar-expand-node): Ask user for confirmation before expanding
4265 large structures/arrays.
4266
4267 2007-01-04 Juanma Barranquero <lekktu@gmail.com>
4268
4269 * files.el (find-file-noselect-1, set-visited-file-name):
4270 Allow backup-enable-predicate to be nil.
4271
4272 2007-01-04 Andreas Schwab <schwab@suse.de>
4273
4274 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Fix typo in
4275 last change.
4276
4277 2007-01-03 Richard Stallman <rms@gnu.org>
4278
4279 * woman.el (woman-decode-buffer): Clarify error message.
4280
4281 2007-01-03 Alan Mackenzie <acm@muc.de>
4282
4283 * progmode/cc-cmds.el (c-mask-paragraph): Fix yesterday's buggy patch.
4284
4285 2007-01-03 Chris Moore <christopher.ian.moore@gmail.com>
4286
4287 * tutorial.el (tutorial--describe-nonstandard-key): Fix typo.
4288
4289 2007-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4290
4291 * iswitchb.el (iswitchb-global-map): Use command-remapping if available.
4292
4293 2007-01-02 Juanma Barranquero <lekktu@gmail.com>
4294
4295 * emulation/viper.el (viper-custom-file-name, viper-mode):
4296 Fix typos in docstrings.
4297
4298 * subr.el (momentary-string-display): After moving point, set POS
4299 variable to it to avoid later errors once the buffer is modified.
4300 Doc fix.
4301
4302 2007-01-02 Alan Mackenzie <acm@muc.de>
4303
4304 * progmodes/cc-cmds.el (c-mask-paragraph): In a block comment,
4305 check that the "*/" is present before trying to manipulate it.
4306
4307 2007-01-02 Richard Stallman <rms@gnu.org>
4308
4309 * wid-edit.el (widget-choose): Avoid ugly error for function keys.
4310
4311 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords):
4312 Fix format of value.
4313
4314 * cus-edit.el (customize-unsaved): Rename from customize-customized.
4315 Change messages accordingly.
4316 (customize-customized): Now alias.
4317
4318 2007-01-02 Juanma Barranquero <lekktu@gmail.com>
4319
4320 * files.el (version-control): Doc fix.
4321
4322 2007-01-01 Alan Mackenzie <acm@muc.de>
4323
4324 * progmodes/cc-engine.el (c-guess-basic-syntax, case 5N):
4325 Check the format of c-state-cache is valid for an optimisation before
4326 using it.
4327
4328 * progmodes/cc-engine.el (c-guess-basic-syntax): New case 5Q "we
4329 are at a statement within a macro". Other changes so that only
4330 the first continuation line in a macro gets the symbol
4331 `cpp-define-intro', the others getting `statement', or whatever.
4332
4333 * progmodes/cc-cmds.el (c-context-line-break): When invoked within
4334 a string, preserve whitespace. Add a backslash only when also in
4335 a macro.
4336
4337 * progmodes/cc-defs.el: Correct typos.
4338
4339 * progmodes/cc-cmds.el (c-context-line-break): Don't indent the
4340 new line after an escaped EOL in a string.
4341
4342 * progmodes/cc-engine.el (c-forward-label): Recognise "foo:" as a
4343 label when it directly follows "else", "do", ....
4344
4345 * progmodes/cc-engine.el (c-backward-<>-arglist): Tolerate empty
4346 angle brackets (as seen in "explicit specialisations" of C++
4347 templates).
4348
4349 * progmodes/cc-vars.el (c-indentation-style): Mention c-file-style
4350 in the doc-string.
4351
4352 * progmodes/cc-cmds.el (c-mask-paragraph): Fix for C comments,
4353 when the comment ender looks like "=========*/" and is alone on
4354 its line.
4355
4356 * progmodes/cc-langs.el, progmodes/cc-engine.el: Correct the
4357 spelling of c-opt-op-identiTier-prefix, t -> f. Leave an alias
4358 for the old name.
4359
4360 * progmodes/cc-mode.el: Bind C-M-a and C-M-e to
4361 c-\(beginning\|end\)-of-defun by default.
4362
4363 * progmodes/cc-align.el (c-lineup-gnu-DEFUN-intro-cont):
4364 New line-up function, for the DEFUN macro in the Emacs C sources.
4365 Only used in "gnu" style.
4366
4367 * progmodes/cc-styles.el (c-style-alist): Use this new function in
4368 the "gnu" style.
4369
4370 * progmodes/cc-cmds.el (c-electric-slash): Extend the handling of
4371 clean-up comment-close-slash also to work when there's a comment
4372 terminator on the line.
4373 (c-beginning-of-defun, c-end-of-defun): Refactor and optimise
4374 these for large arg - only take account of top level {..}, except
4375 for initial and final adjustments. M-- C-M-[ae] now go to the
4376 right defuns when the starting point is between defuns. They use
4377 the four new functions:
4378 (c-in-function-trailer-p, c-where-wrt-brace-construct)
4379 (c-backward-to-nth-BOF-{, c-forward-to-nth-EOF-}): New functions to
4380 support c-\(beginning\|end\)-of-defun.
4381
4382 * progmodes/cc-engine.el (c-forward-label): Analyze ":"
4383 expressions more rigorously, to exclude bit-field specifiers from
4384 being classed as labels.
4385 (c-forward-label): When analyzing a ":" within a macro, be careful
4386 about using c-forward-syntactic-ws at the macro beginning.
4387 (c-beginning-of-decl-1): Whilst searching for "=" as evidence of a
4388 stmt boundary, check for "operator=", etc.
4389
4390 * progmodes/cc-mode.el (c-postprocess-file-styles):
4391 Bind inhibit-read-only to t, around the call to
4392 c-remove-any-local-eval-or-mode-variables, so that it works on a
4393 RO file.
4394
4395 * progmodes/cc-defs.el (c-version): Update the version number to
4396 "5.31.4".
4397
4398 2007-01-01 Richard Stallman <rms@gnu.org>
4399
4400 * isearch.el (isearch-done): Use FOUND-POINT or FOUND-START
4401 only if we restored isearch-window-configuration.
4402
4403 2006-12-31 Romain Francoise <romain@orebokech.com>
4404
4405 * net/tramp.el (tramp-default-method): Don't use `symbol-function'.
4406
4407 2006-12-31 Kim F. Storm <storm@cua.dk>
4408
4409 * files.el (auto-mode-case-fold): New defcustom.
4410 (set-auto-mode): If non-nil, perform second case-sensitive pass
4411 through auto-mode-alist if first pass failed.
4412
4413 2006-12-30 Richard Stallman <rms@gnu.org>
4414
4415 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Doc fix.
4416
4417 2006-12-30 Ken Manheimer <ken.manheimer@gmail.com>
4418
4419 * allout.el (allout-encrypt-string): Handle symmetric-key
4420 passphrase caching but leave keypair caching to pgg.
4421
4422 2006-12-30 Michael Albinus <michael.albinus@gmx.de>
4423
4424 Sync with Tramp 2.0.55.
4425
4426 * net/tramp.el (tramp-completion-mode): Use `wholenump' instead of
4427 `integerp'. `char-equal' could fail else in case of negative
4428 numbers. Reported by Toby Speight <T.M.Speight.90@cantab.net>.
4429 (top): Check for `font-lock-add-keywords' before calling; it
4430 doesn't exist under XEmacs.
4431 (tramp-yn-prompt-regexp): Fix regexp. Add question from plink.
4432 (tramp-completion-mode): Remove clause (not
4433 tramp-unified-filenames), because the function is called in other
4434 context too, where this check results in wrong results in the
4435 XEmacs case on Windows.
4436 (tramp-touch): UTC handling is not possible for XEmacs.
4437
4438 2006-12-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4439
4440 * scroll-bar.el (previous-scroll-bar-mode): New variable
4441 (set-scroll-bar-mode): Set previous-scroll-bar-mode.
4442 (scroll-bar-mode): Use previous-scroll-bar-mode if set.
4443
4444 * term/x-win.el: Set scroll bar mode to right if set by X resources.
4445
4446 2006-12-30 Richard Stallman <rms@gnu.org>
4447
4448 * files.el (make-backup-file-name-1): Precompute abs name
4449 but don't lose the relative name.
4450
4451 * international/mule-cmds.el (select-safe-coding-system-interactively):
4452 Fix message.
4453
4454 2006-12-30 Kevin Rodgers <kevin.d.rodgers@gmail.com> (tiny change)
4455
4456 * files.el (backup-buffer): Show entire backup file name in msg.
4457
4458 2006-12-30 Juanma Barranquero <lekktu@gmail.com>
4459
4460 * image.el (image-type-header-regexps, image-type-from-data)
4461 (image-type-from-buffer, image-type-from-file-header):
4462 Revert changes from 2006-12-26.
4463 (image-type-auto-detectable): New variable.
4464 (image-type-auto-detected-p): New function.
4465
4466 * files.el (magic-mode-alist): Detect image files with
4467 `image-type-auto-detected-p' instead of `image-type-from-buffer'.
4468
4469 2006-12-29 Nick Roberts <nickrob@snap.net.nz>
4470
4471 * dired.el (dired-sort-other): Move test for dired-mode...
4472 (dired-sort-set-modeline): ...to here.
4473
4474 2006-12-29 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4475
4476 * textmodes/fill.el (fill-comment-paragraph): Document 2006-12-24
4477 change. Suggested by Stefan Monnier.
4478
4479 2006-12-29 Kim F. Storm <storm@cua.dk>
4480
4481 * emacs-lisp/bindat.el (bindat--unpack-group, bindat--length-group)
4482 (bindat--pack-group): Let-bind COUNT during repeat block evaluation.
4483
4484 2006-12-27 Kim F. Storm <storm@cua.dk>
4485
4486 * emacs-lisp/authors.el (authors-aliases): Anchor FSF alias regexp,
4487 so it doesn't accidentally match an fsf.org mail address.
4488 (authors-renamed-files-alist): Add tcover-*.el.
4489
4490 2006-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
4491
4492 * vc-arch.el (vc-arch-find-version): New function.
4493
4494 * vc-hooks.el (vc-version-backup-file-name): Revision names may be
4495 composed of arbitrary characters (even /) in some systems.
4496
4497 2006-12-27 Eli Zaretskii <eliz@gnu.org>
4498
4499 * international/mule-cmds.el (select-safe-coding-system-interactively):
4500 Improve the message in the *Warning* buffer.
4501
4502 2006-12-27 Kim F. Storm <storm@cua.dk>
4503
4504 * ido.el (ido-set-matches-1): Fix last change. If default item is
4505 current buffer, it is ok to be first.
4506
4507 2006-12-27 Kenichi Handa <handa@m17n.org>
4508
4509 * international/mule-cmds.el (select-safe-coding-system-interactively):
4510 Use face `link' for problematic chars.
4511
4512 2006-12-27 Kenichi Handa <handa@m17n.org>
4513
4514 * international/mule-cmds.el (select-safe-coding-system-interactively):
4515 Improve the message in *Warning* buffer.
4516
4517 2006-12-27 Kim F. Storm <storm@cua.dk>
4518
4519 * ido.el (ido-set-matches-1): Never put current buffer first if
4520 there are other matches.
4521
4522 2006-12-26 Nick Roberts <nickrob@snap.net.nz>
4523
4524 * progmodes/gdb-ui.el (gud-watch): Allow duplicate names for watch
4525 expressions.
4526 (gdb-var-delete): Handle duplicate names. Print message for non
4527 root expressions.
4528 (gdb-partial-output-name): Start buffer name with a space.
4529 (gdb-info-breakpoints-custom, gdb-reset): Handle space in above
4530 buffer name.
4531
4532 2006-12-26 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4533
4534 * mail/footnote.el (Footnote-insert-footnote): Fix the search of the
4535 last footnote when `footnote-spaced-footnotes' is nil.
4536
4537 2006-12-26 Richard Stallman <rms@gnu.org>
4538
4539 * cus-edit.el (custom-browse-sort-alphabetically)
4540 (custom-buffer-sort-alphabetically)
4541 (custom-menu-sort-alphabetically): Doc fixes. Add autoloads.
4542
4543 * image.el (image-type-header-regexps): Change element format
4544 to include third item NOT-ALWAYS.
4545 (image-type-from-data): Handle new format.
4546 (image-type-from-buffer): Handle new format. New arg INCLUDE-MAYBES.
4547 (image-type-from-file-header): Pass t for INCLUDE-MAYBES.
4548
4549 2006-12-26 Guanpeng Xu <herberteuler@hotmail.com>
4550
4551 * add-log.el (add-log-current-defun): Call `forward-sexp'
4552 multiple times to pick a member function name defined as
4553 part of nested classes/namespaces.
4554
4555 2006-12-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4556
4557 * emacs-lisp/easymenu.el (easy-menu-change): New arg MAP to indicate
4558 which keymap should be used to change menu. It does not affect any
4559 existent code.
4560
4561 2006-12-26 Richard Stallman <rms@gnu.org>
4562
4563 * textmodes/fill.el (fill-paragraph): Check for a minibuffer
4564 rather than for being in a minibuffer window.
4565
4566 2006-12-25 Daiki Ueno <ueno@unixuser.org>
4567
4568 * pgg-def.el (pgg-passphrase-coding-system): Default to nil instead of
4569 locale-coding-system.
4570 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with eol-type
4571 LF.
4572
4573 2006-12-25 Michael R. Mauger <mmaug@yahoo.com>
4574
4575 * progmodes/sql.el (sql-mode-abbrev-table): Correct initialization.
4576 (sql-mode-syntax-table): Disable double quoted strings.
4577 (sql-mode-font-lock-object-name): Add TYPE and TYPE BODY.
4578
4579 2006-12-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4580
4581 * startup.el (fancy-splash-last-input-event): New variable.
4582 (fancy-splash-special-event-action): New function.
4583 (fancy-splash-screens): Temporarily bind special events to it.
4584 Execute command for saved special event before exiting from
4585 recursive editing.
4586
4587 * term/mac-win.el (mac-keyboard-translate-char, mac-unread-string):
4588 New functions.
4589 (mac-ts-update-active-input-area, mac-ts-unicode-for-key-event):
4590 Use mac-unread-string.
4591
4592 2006-12-24 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4593
4594 * textmodes/fill.el (fill-comment-paragraph): Prevent the use of
4595 an optimized comment regexp if `comment-start-skip' uses a ^.
4596 * bs.el (bs--up): Remove interactive spec.
4597
4598 2006-12-24 Chong Yidong <cyd@stupidchicken.com>
4599
4600 * woman.el (woman-decode-buffer): Signal error for alien macro sets.
4601 Suggested by James Cloos.
4602
4603 2006-12-24 Kevin Ryde <user42@zip.com.au>
4604
4605 * calendar/cal-dst.el (calendar-dst-starts): Default to second Sunday
4606 in March.
4607 (calendar-dst-ends): Default to first Sunday in November.
4608
4609 2006-12-24 Ken Manheimer <ken.manheimer@gmail.com>
4610
4611 * allout.el (allout-encrypt-string): Inhibit use of agent within
4612 body of let form where encryption happens. Acknowledge non-use of
4613 gpg-agent in docstring.
4614 (allout-toggle-subtree-encryption): Acknowledge non-use of
4615 gpg-agent in docstring.
4616
4617 2006-12-24 Chong Yidong <cyd@stupidchicken.com>
4618
4619 * custom.el (custom-add-frequent-value): Alias for custom-add-option.
4620
4621 2006-12-23 Michael Kifer <kifer@cs.stonybrook.edu>
4622
4623 * ediff-diff.el (ediff-diff-options): Clarify docstring.
4624 (ediff-setup-diff-regions): Disallow -u in ediff-diff-options.
4625
4626 * viper-cmd.el (viper-post-command-sentinel): Protect against errors
4627 in hooks.
4628 (viper-add-newline-at-eob-if-necessary): Add newline only if we
4629 actually modify buffer; ignore errors if occur.
4630
4631 2006-12-23 Chong Yidong <cyd@stupidchicken.com>
4632
4633 * calendar/calendar.el (calendar-mode-map): Switch < and >.
4634 (calendar-mode-line-format): Use mouse-1 bindings, and tweak
4635 formatting.
4636
4637 2006-12-23 Richard Stallman <rms@gnu.org>
4638
4639 * simple.el (delete-horizontal-space): Doc fix.
4640
4641 2006-12-23 Eli Zaretskii <eliz@gnu.org>
4642
4643 * makefile.w32-in (bootstrap-clean): Run bootstrap-clean-$(SHELLTYPE)
4644 explicitly in a recursive Make, not implicitly through prerequisites,
4645 since the latter is wrong under parallel builds.
4646
4647 2006-12-22 Eli Zaretskii <eliz@gnu.org>
4648
4649 * w32-fns.el (convert-standard-filename): Wrap in save-match-data.
4650
4651 2006-12-22 Kevin Rodgers <kevin.d.rodgers@gmail.com> (tiny change)
4652
4653 * progmodes/sh-script.el (sh-make-vars-local): Fix a typo in
4654 message string.
4655
4656 2006-12-22 Ben North <ben@redfrontdoor.org> (tiny change)
4657
4658 * outline.el (outline-next-visible-heading): Fix the case with a
4659 header at end-of-file with no final newline.
4660
4661 2006-12-22 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
4662
4663 * indent.el (tab-always-indent): Doc fix.
4664
4665 2006-12-22 Chong Yidong <cyd@stupidchicken.com>
4666
4667 * info.el (Info-fontify-maximum-menu-size): Bump to 1000000.
4668 (Info-fontify-node): Do fontify indices.
4669
4670 * tutorial.el (tutorial--detailed-help): Remove unnecessary link
4671 to the Emacs Lisp reference manual.
4672 (tutorial--tab-map): Remove. All callers changed.
4673 (tutorial--find-changed-keys): New elt QUIET, used to...
4674 (tutorial--display-changes): ...ensure that warning messages are
4675 only issued once per changed key.
4676 (tutorial--remove-remarks): Delete unused code-path.
4677 (lang-strings): Remove extraneous formatting.
4678 (tutorial--save-tutorial): Prompt before saving tutorial state.
4679
4680 2006-12-21 Chong Yidong <cyd@stupidchicken.com>
4681
4682 * tutorial.el: Remove `cl' requirement. Clean up whitespace.
4683 Replace '?\ ' by '?\s' throughout.
4684 (tutorial-warning-face): Inherit font-lock-warning-face. Move to
4685 `help' custom group.
4686 (tutorial--key-description): New function.
4687 (tutorial--display-changes): Remove redundant arg. Scan for all
4688 key sequences to avoid false matches. Cleanup.
4689 (tutorial--saved-dir): Save to a subdirectory in .emacs.d to
4690 reduce homedir pollution.
4691 (help-with-tutorial): Call tutorial--display-changes with no arg.
4692
4693 2006-12-21 Carsten Dominik <dominik@science.uva.nl>
4694
4695 * textmodes/org.el (org-mode-map): Bind org-complete also to M-\t.
4696
4697 2006-12-20 Michael Albinus <michael.albinus@gmx.de>
4698
4699 * net/tramp.el (tramp-default-method): We still need to check for
4700 `executable-find', because it is not bound under Emacs 20.
4701 (tramp-handle-file-name-completion)
4702 (tramp-completion-handle-file-name-completion): Handle optional
4703 parameter PREDICATE.
4704 (tramp-find-default-method): Add code for default values.
4705
4706 2006-12-20 Nick Roberts <nickrob@snap.net.nz>
4707
4708 * progmodes/gdb-ui.el (gdb-stopped): After attaching to a process
4709 make gud-go send "continue".
4710
4711 2006-12-19 Juanma Barranquero <lekktu@gmail.com>
4712
4713 * image.el (image-type-header-regexps): Be more specific detecting `pbm'
4714 and `png' files. Use non-capturing parenthesis for `tiff' regexp.
4715
4716 2006-12-19 Kim F. Storm <storm@cua.dk>
4717
4718 * bindings.el: Bind sigusr1 and sigusr2 in special-event-map
4719 instead of global-map.
4720
4721 * files.el (magic-mode-alist): Allow matching file type by
4722 calling a function at bob. Check for image types by calling
4723 image-type-from-buffer. Suggested by Juanma Barranquero.
4724 (set-auto-mode): Do it.
4725
4726 2006-12-19 Michael Albinus <michael.albinus@gmx.de>
4727
4728 * net/tramp.el (tramp-methods): Introduce new method `scpc'.
4729 Remove "ControlMaster" option from the other `scp*' methods.
4730 (tramp-default-method): Check for ssh-agent before setting to `scp'.
4731
4732 2006-12-18 Carsten Dominik <dominik@science.uva.nl>
4733
4734 * textmodes/org.el (org-mode): Show context after isearch.
4735 (org-show-siblings): New function.
4736 (org-show-context): Use `org-show-siblings'.
4737
4738 2006-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
4739
4740 * emacs-lisp/syntax.el (syntax-ppss-flush-cache, syntax-ppss):
4741 Use syntax-ppss-toplevel-pos.
4742
4743 2006-12-18 Carsten Dominik <dominik@science.uva.nl>
4744
4745 * textmodes/org.el (org-current-line): Make sure that lines are
4746 counted from beginning of buffer.
4747 (org-table-copy-region, org-table-paste-rectangle): Make sure that
4748 lines are counted from beginning of buffer.
4749
4750 2006-12-17 Chong Yidong <cyd@stupidchicken.com>
4751
4752 * info.el (Info-build-node-completions): Signal error if tag-table
4753 marker is not found.
4754
4755 * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
4756
4757 2006-12-17 Alan Mackenzie <acm@muc.de>
4758
4759 * emacs-lisp/lisp.el (beginning-of-defun-raw): Optimise (for
4760 speed) the case when open-paren-in-column-0-is-defun-start is nil.
4761 Based on code by Martin Rudalics.
4762
4763 * progmodes/cc-mode.el (c-basic-common-init): Don't set
4764 open-paren-in-column-0-is-defun-start to nil any more.
4765
4766 2006-12-17 Richard Stallman <rms@gnu.org>
4767
4768 * simple.el (delete-horizontal-space): Use prefix arg.
4769
4770 * help-fns.el (describe-variable): Improve blank separator lines.
4771
4772 * files.el (magic-mode-alist): Mark as risky.
4773
4774 * files.el (make-backup-file-name-1):
4775 Expand backup-directory explicitly.
4776
4777 2006-12-17 Michael Albinus <michael.albinus@gmx.de>
4778
4779 * net/tramp.el (tramp-default-method): Before setting to "pscp",
4780 check whether package password.el is loaded, or Pageant is running.
4781
4782 2006-12-17 Ulf Jasper <ulf.jasper@web.de>
4783
4784 * calendar/icalendar.el (icalendar-version): Increase to "0.14".
4785 (icalendar--rris): First try Emacs, then XEmacs.
4786 (icalendar--convert-ical-to-diary): Doc fix.
4787 Insert newline at end of target file.
4788
4789 2006-12-17 Kim F. Storm <storm@cua.dk>
4790
4791 * outline.el (outline-isearch-open-invisible-function): New defvar.
4792 (outline-flag-region): Use it if non-nil for isearch-open-invisible
4793 overlay property instead of outline-isearch-open-invisible.
4794
4795 2006-12-16 Kim F. Storm <storm@cua.dk>
4796
4797 * ido.el (ido-completion-help): Build ido-cur-list and ido-matches
4798 if ido-directory-too-big is set on entry.
4799 (ido-toggle-ignore, ido-completion-help): Print message while
4800 reading big directory.
4801
4802 2006-12-15 Richard Stallman <rms@gnu.org>
4803
4804 * shell.el (shell): Doc fix.
4805
4806 2006-12-15 Kevin Gallagher <Kevin.Gallagher@boeing.com>
4807
4808 * emulation/edt.el (edt-xserver):
4809 * emulation/edt-mapper.el (edt-xserver): Replace `/' with a `-',
4810 to fix a problem on Cygwin.
4811
4812 * emulation/edt.el
4813 * emulation/edt-mapper.el
4814 * emulation/edt-lk201.el
4815 * emulation/edt-pc.el
4816 * emulation/edt-vt100.el: Update maintainer's email address.
4817
4818 2006-12-15 Simon Marshall <simon@gnu.org>
4819
4820 * progmodes/cc-fonts.el (c-font-lock-declarations): Fix previous change.
4821
4822 2006-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4823
4824 * term/mac-win.el (mac-atsu-font-table): Remove defvar.
4825 (mac-handle-font-selection): Use mac-atsu-font-face-attributes
4826 instead of mac-atsu-font-table.
4827 (fontset-default): Specify argument MAXIMUM in x-list-fonts calls.
4828
4829 2006-12-14 Stephen Leake <stephen_leake@member.fsf.org>
4830
4831 * align.el (align-match-tex-pattern): Fix a rare bug which
4832 hanged Emacs.
4833
4834 2006-12-14 Richard Stallman <rms@gnu.org>
4835
4836 * startup.el (use-fancy-splash-screens-p): Use frame-height
4837 instead of window-height. Pass frame to image-size.
4838
4839 2006-12-13 Kenichi Handa <handa@m17n.org>
4840
4841 * international/mule-cmds.el (set-locale-environment):
4842 Set default-sendmail-coding-system too.
4843
4844 2006-12-12 J.D. Smith <jdsmith@as.arizona.edu>
4845
4846 * progmodes/idlw-help.el: Fix copyright notice.
4847
4848 2006-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
4849
4850 * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos): New fun.
4851
4852 2006-12-11 Juanma Barranquero <lekktu@gmail.com>
4853
4854 * subr.el (unread-command-char): Reformat obsolescence info.
4855
4856 2006-12-11 Richard Stallman <rms@gnu.org>
4857
4858 * emacs-lisp/cl-macs.el (defstruct): Suppress warnings
4859 about calls to cl-struct-setf-expander.
4860
4861 2006-12-11 Juanma Barranquero <lekktu@gmail.com>
4862
4863 * ediff-merg.el (ediff-show-clashes-only): Doc fix.
4864 (ediff-combination-pattern): Fix typo in docstring.
4865
4866 * textmodes/refer.el (refer-find-entry): Doc fix.
4867 (refer-bib-files-regexp, refer-bib-directory, refer-bib-files)
4868 (refer-cache-bib-files, refer-find-next-entry, refer-yank-key):
4869 Fix tipos in docstrings.
4870
4871 * progmodes/idlwave.el (idlwave-library-path): Fix typos in docstring.
4872
4873 2006-12-10 Kim F. Storm <storm@cua.dk>
4874
4875 * ido.el (ido-init-completion-maps): Remap backward-kill-word
4876 instead of binding M-backspace.
4877
4878 2006-12-10 Juanma Barranquero <lekktu@gmail.com>
4879
4880 * replace.el (replace-match-data, replace-match-maybe-edit):
4881 * calc/calc-aent.el (calc-eval-error):
4882 * emulation/vi.el (vi-char-argument):
4883 * progmodes/cc-langs.el (c-at-vsemi-p-fn)
4884 (c-vsemi-status-unknown-p-fn): Doc fixes.
4885
4886 2006-12-10 Chong Yidong <cyd@stupidchicken.com>
4887
4888 * menu-bar.el (menu-bar-showhide-menu, menu-bar-tools-menu)
4889 (menu-bar-help-menu): Tooltip fixes. Suggested by Francis Wright.
4890
4891 2006-12-10 Masatake YAMATO <jet@gyve.org>
4892
4893 * progmodes/ld-script.el (ld-script-keywords): Fix a typo.
4894
4895 2006-12-09 Chong Yidong <cyd@stupidchicken.com>
4896
4897 * mouse-sel.el (mouse-sel-mode): Register mouse-2 as a click type.
4898
4899 * man.el (Man-xref-button-action): New function. If the
4900 `Man-target-string' button property is a function, assume it
4901 accepts a position argument.
4902 (Man-abstract-xref-man-page): Use it.
4903 (Man-default-man-entry): New optional arg POS.
4904
4905 * wdired.el (wdired-preprocess-symlinks): Make the spaces after
4906 symlink arrows read-only and non-rear-sticky.
4907
4908 2006-12-09 Martin Rudalics <rudalics@gmx.at>
4909
4910 * wdired.el (wdired-change-to-wdired-mode, wdired-finish-edit)
4911 (wdired-search-and-rename): Simplify code.
4912 (wdired-preprocess-files, wdired-preprocess-perms): Make
4913 read-only property of preceding character rear-nonsticky to
4914 avoid that it can be modified. Put old-name and old-link
4915 properties on character preceding name and replace
4916 put-text-property by add-text-properties.
4917 (wdired-get-filename, wdired-get-previous-link): Get old-name
4918 and old-link properties from character preceding name and
4919 simplify code.
4920 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit)
4921 (wdired-perms-to-number): Make local-map property
4922 rear-nonsticky to avoid that text following permissions may be
4923 modified. Use add-text-properties instead of put-text-property
4924 when changing a permission bit.
4925 (wdired-change-to-dired-mode): Remove stickiness properties.
4926
4927 2006-12-09 Juanma Barranquero <lekktu@gmail.com>
4928
4929 * international/mule-cmds.el (register-input-method): Doc fix.
4930
4931 2006-12-09 Masayuki Ataka <masayuki.ataka@gmail.com> (tiny change)
4932
4933 * cmuscheme.el (scheme-start-file): Use `let*', not `let'.
4934
4935 2006-12-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4936
4937 * textmodes/flyspell.el (flyspell-hack-local-variables-hook): New.
4938 Force buffer local defs evaluation on local variables loading.
4939 (flyspell-mode-on, flyspell-mode-off): Use it in
4940 `hack-local-variables-hook'.
4941
4942 2006-12-09 Eli Zaretskii <eliz@gnu.org>
4943
4944 * emacs-lisp/find-func.el (find-variable): Doc fix.
4945
4946 * help-fns.el (variable-at-point): Doc fix.
4947
4948 * w32-fns.el (w32-append-code-lines): New function.
4949
4950 2006-12-09 Romain Francoise <romain@orebokech.com>
4951
4952 * comint.el (comint-insert-input): Delete obsolete comment.
4953
4954 2006-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4955
4956 * net/browse-url.el (browse-url): Set DISPLAY to the one of the
4957 current frame, in case we're connected to several displays.
4958
4959 2006-12-08 Juanma Barranquero <lekktu@gmail.com>
4960
4961 * frame.el (other-frame): Doc fix.
4962 (set-frame-parameter): Fix typo in docstring.
4963
4964 2006-12-07 Kim F. Storm <storm@cua.dk>
4965
4966 * info.el (Info-index): Strip leading colon from topic.
4967
4968 2006-12-07 Nick Roberts <nickrob@snap.net.nz>
4969
4970 * progmodes/gud.el (gud-speedbar-buttons): Deal with references
4971 to pointers.
4972
4973 2006-12-05 J.D. Smith <jdsmith@as.arizona.edu>
4974
4975 * progmodes/idlwave.el (idlwave-xml-create-class-method-lists):
4976 Trim out spurious class inheritance "None" entries.
4977
4978 2006-12-05 Kim F. Storm <storm@cua.dk>
4979
4980 * emulation/cua-base.el (cua-paste-pop-rotate-temporarily): Doc fix.
4981 (cua-paste-pop): Rework last change for
4982 cua-paste-pop-rotate-temporarily, so first M-y and C-y works alike,
4983 pasting the head of the kill-ring, and prefix arg C-u M-y inserts the
4984 text inserted by the last M-y command.
4985
4986 2006-12-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4987
4988 * cmuscheme.el (run-scheme, scheme-start-file): Search the start
4989 file in ~/.emacs.d as `init_SCHEMENAME.scm' instead.
4990
4991 * shell.el (shell): Search the start file in ~/.emacs.d as
4992 `init_SHELLNAME.sh' instead.
4993
4994 2006-12-05 Glenn Morris <rgm@gnu.org>
4995
4996 * progmodes/cperl-mode.el (cperl-mode)
4997 * progmodes/f90.el (f90-mode-abbrev-table)
4998 * progmodes/fortran.el (fortran-mode-abbrev-table)
4999 * progmodes/octave-mod.el (octave-abbrev-table)
5000 * progmodes/sql.el (sql-mode-abbrev-table): Define abbrevs even
5001 if abbrev-table is non-nil (saved user abbrevs may have been restored).
5002
5003 * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init): Do not
5004 clear abbrev table, else saved abbrevs will not be restored.
5005
5006 2006-12-04 Juanma Barranquero <lekktu@gmail.com>
5007
5008 * facemenu.el (facemenu-unlisted-faces): Put obsolescence info in
5009 the call to `make-obsolete-variable', not in the docstring.
5010
5011 2006-12-04 Chong Yidong <cyd@stupidchicken.com>
5012
5013 * facemenu.el (facemenu-unlisted-faces): Define as obsolete variable.
5014
5015 2006-12-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5016
5017 * progmodes/ebnf-abn.el:
5018 * progmodes/ebnf-bnf.el:
5019 * progmodes/ebnf-dtd.el:
5020 * progmodes/ebnf-ebx.el:
5021 * progmodes/ebnf-iso.el:
5022 * progmodes/ebnf-otz.el:
5023 * progmodes/ebnf-yac.el:
5024 * progmodes/ebnf2ps.el:
5025 * delim-col.el:
5026 * printing.el:
5027 * ps-bdf.el:
5028 * ps-mule.el:
5029 * ps-print.el: Remove 'Time-stamp' comment mark.
5030
5031 * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
5032 'easy-menu-add-item' when called in Emacs 21 or higher.
5033
5034 2006-12-04 Stephen Leake <stephen_leake@stephe-leake.org>
5035
5036 * progmodes/ada-xref.el (ada-check-current): Doc fix.
5037 (ada-make-body-gnatstub): Doc fix. Remove redundant `progn'.
5038
5039 2006-12-04 Kim F. Storm <storm@cua.dk>
5040
5041 * bindings.el (global-map): Bind [signal t] to ignore, to have
5042 user signals ignored by default.
5043
5044 2006-12-04 Juanma Barranquero <lekktu@gmail.com>
5045
5046 * descr-text.el (describe-char-unicode-data): Use a hidden buffer for
5047 Unicode data file pointed to by `describe-char-unicodedata-file'.
5048
5049 2006-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
5050
5051 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Fix pathological
5052 O(n^2) regexp-search by anchoring the search.
5053
5054 2006-12-04 Dan Nicolaescu <dann@ics.uci.edu>
5055
5056 * whitespace.el (whitespace-cleanup-internal): Use current
5057 argument for recursive call.
5058
5059 2006-12-04 Michael Albinus <michael.albinus@gmx.de>
5060
5061 * net/tramp.el (tramp-methods): Add "ControlPath" and
5062 "ControlMaster" to scp, scp1 and scp2 methods. Suggested by
5063 Andreas Schwab <schwab@suse.de>.
5064 (tramp-do-copy-or-rename-file-out-of-band)
5065 (tramp-open-connection-rsh): Compute format spec for ?t.
5066 (tramp-process-actions): Trace command parameters.
5067
5068 2006-12-04 Nick Roberts <nickrob@snap.net.nz>
5069
5070 * simple.el (toggle-truncate-lines): Clarify doc string.
5071
5072 * progmodes/gdb-ui.el (gdb-var-delete-children): New function.
5073 (gdb-speedbar-expand-node): Use it.
5074
5075 2006-12-04 Richard Stallman <rms@gnu.org>
5076
5077 * progmodes/python.el (python-indent): Add safe-local-variable prop.
5078
5079 * dired.el (dired-revert): Turn off dired-after-readin-hook
5080 around call to dired-readin.
5081
5082 * menu-bar.el (menu-bar-make-toggle): Add "globally"
5083 to echo area messages.
5084 <indicate-empty-lines, case-fold-search>:
5085 Add "globally" to Help string.
5086 <case-fold-search>: MESSAGE arg need not say "globally".
5087 (menu-bar-edit-menu <paste-from-menu>): Rename from select-and-paste.
5088
5089 2006-12-03 Liam Healy <lnp@healy.washington.dc.us> (tiny change)
5090
5091 * outline.el (outline-end-of-subtree): Don't leave an empty
5092 line hidden as we would a real next heading.
5093
5094 2006-12-03 Ken Manheimer <ken.manheimer@gmail.com>
5095
5096 * allout.el (allout-ascend): Add an optional argument to preserve
5097 original position of point when unsuccessful. Also, fix a
5098 docstring error.
5099 (allout-yank-processing): Fix depth shift of multiple-topic so yanks
5100 work again, using allout-ascend's new option.
5101 (allout-setup-mode-map): Extract from allout-mode to initialize
5102 allout-mode-map. Call it on file load, so the mode docstring
5103 substitutions work even if allout mode has not yet been invoked.
5104 (allout-mode): Use new allout-setup-mode-map to track any keybinding
5105 customizations since the map was last processed. Also, refine the
5106 docstring so it's ship-shape for release.
5107 (allout-default-layout, allout-beginning-of-line-cycles)
5108 (allout-distinctive-bullets-string, allout-use-mode-specific-leader)
5109 (allout-encrypt-unencrypted-on-saves, allout-inhibit-auto-fill)
5110 (allout-version, allout-layout, allout-infer-body-reindent)
5111 (allout-infer-header-lead-and-primary-bullet, allout-view-change-hook)
5112 (allout-init, allout-mode, allout-next-heading, allout-chart-subtree)
5113 (allout-previous-heading, allout-goto-prefix-doublechecked)
5114 (allout-current-bullet-pos, allout-next-sibling-leap)
5115 (allout-pre-command-business, allout-encrypted-type-prefix)
5116 (allout-make-topic-prefix, allout-open-topic, allout-rebullet-heading)
5117 (allout-rebullet-topic, allout-rebullet-topic-grunt)
5118 (allout-flag-region, allout-expose-topic, allout-expose-topic)
5119 (allout-old-expose-topic, allout-listify-exposed)
5120 (allout-process-exposed, allout-latex-verb-quote)
5121 (allout-latex-verbatim-quote-curr-line, allout-adjust-file-variable)
5122 (allout-toggle-current-subtree-encryption)
5123 (allout-toggle-subtree-encryption, allout-bullet-isearch):
5124 Remove extraneous open-paren and close paren string escapes.
5125
5126 2006-12-03 Juanma Barranquero <lekktu@gmail.com>
5127
5128 * progmodes/ada-xref.el (is-windows, ada-find-in-src-path): Doc fixes.
5129 (ada-xref-pos-ring-max, ada-xref-project-files, ada-xref-initialize)
5130 (ada-prj-default-comp-cmd, ada-quote-cmd, ada-compile-current):
5131 Fix typos in docstrings.
5132
5133 2006-12-03 Glenn Morris <rgm@gnu.org>
5134
5135 * progmodes/cc-align.el
5136 * progmodes/cc-awk.el
5137 * progmodes/cc-cmds.el
5138 * progmodes/cc-compat.el
5139 * progmodes/cc-defs.el
5140 * progmodes/cc-engine.el
5141 * progmodes/cc-langs.el
5142 * progmodes/cc-menus.el
5143 * progmodes/cc-mode.el
5144 * progmodes/cc-styles.el
5145 * progmodes/cc-vars.el
5146 * progmodes/vhdl-mode.el: Fix Copyright format.
5147
5148 2006-12-02 Chong Yidong <cyd@stupidchicken.com>
5149
5150 * mouse.el (mouse-drag-track): Suppress automatic hscrolling for
5151 initial down event.
5152
5153 2006-12-02 Kim F. Storm <storm@cua.dk>
5154
5155 * emulation/cua-base.el (cua-toggle-set-mark): Doc fix.
5156 (cua-repeat-replace-region): Make M-v more robust.
5157 (cua-paste-pop-rotate-temporarily): New defcustom.
5158 (cua-paste-pop): Use it.
5159 (cua-auto-mark-last-change): New defcustom.
5160 (cua-pop-to-last-change): New helper function.
5161 (cua-set-mark): Use them.
5162
5163 2006-12-01 Nick Roberts <nickrob@snap.net.nz>
5164
5165 * menu-bar.el (toggle-case-fold-search): Clarify doc/help string and
5166 mini-buffer message.
5167
5168 2006-12-01 Juanma Barranquero <lekktu@gmail.com>
5169
5170 * descr-text.el (describe-char-unicodedata-file): Fix typo in docstring.
5171
5172 2006-12-01 Ben North <ben@redfrontdoor.org>
5173
5174 * paren.el: Fix the highlight overlay extension when the user types a
5175 sequence of char very fast just before the open parenthesis.
5176
5177 2006-12-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5178
5179 * ps-mule.el: Eliminate Emacs 20 compatibility.
5180
5181 * ps-print.el: Eliminate Emacs 20 & 21 compatibility.
5182 (ps-print-version): New version 6.7.
5183 (ps-print-quote): Replace '?\ ' by '?\s'.
5184
5185 2006-11-30 Juanma Barranquero <lekktu@gmail.com>
5186
5187 * hexl.el (hexl-goto-address, hexl-forward-char, hexl-forward-short)
5188 (hexl-forward-word, hexl-previous-line, hexl-beginning-of-1k-page)
5189 (hexl-end-of-1k-page): Doc fixes.
5190 (hexl-address-region, hexl-ascii-region, hexl-highlight-line-range):
5191 Fix typos in docstrings.
5192
5193 2006-11-30 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
5194
5195 * ido.el (ido-local-file-exists-p): New. Tell if a file exists
5196 locally, i.e. without using file name handlers.
5197 (ido-read-internal): Allow mono letter host names, avoiding the
5198 `c:' problem by testing if the file exists locally.
5199 (ido-complete, ido-make-file-list, ido-exhibit): Ditto.
5200
5201 2006-11-30 Masatake YAMATO <jet@gyve.org>
5202
5203 * hexl.el (hl-line-range-function, hl-line-face): Declare variables
5204 to avoid bytecomp warnings.
5205 (hexl-mode-old-ruler-function): New variable.
5206 (hexl-follow-line): Bind `hexl-mode-old-hl-line-range-function'
5207 and `hl-line-range-function' after `require' hl-line.
5208 Then bind `hl-line-range-function' and `hl-line-face'.
5209 Don't require frame. Don't use `with-no-warnings'.
5210 (hexl-activate-ruler): Store the original value of
5211 `ruler-mode-ruler-function' to `hexl-mode-old-ruler-function'.
5212 (hexl-mode-exit): Restore the original value of
5213 `ruler-mode-ruler-function'.
5214
5215 2006-11-30 Alin C. Soare <alinsoar@voila.fr> (tiny change)
5216
5217 * hexl.el (hexl-mode-old-hl-line-range-function): New variable.
5218 (hexl-mode-old-hl-line-face): New variable.
5219 (hexl-mode, hexl-mode-exit): Fix the highlighting of the current
5220 line when exit from the hexl-mode.
5221
5222 2006-11-30 Juanma Barranquero <lekktu@gmail.com>
5223
5224 * emacs-lisp/bytecomp.el (byte-optimize, byte-compile-warnings):
5225 Doc fixes.
5226
5227 * international/fontset.el (create-fontset-from-ascii-font)
5228 (create-fontset-from-fontset-spec, x-compose-font-name): Doc fixes.
5229 (fontset-name-p): Fix typo in docstring.
5230
5231 * progmodes/cc-cmds.el (c-indent-exp): Fix typo in docstring.
5232
5233 2006-11-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5234
5235 * ps-bdf.el: Fix maintainer email.
5236
5237 * ps-mule.el: Fix maintainer email. Define functions for Emacs 20
5238 compatibility.
5239
5240 * ps-print.el: Fix maintainer email. Define functions for Emacs 20 &
5241 21 compatibility.
5242 (ps-print-quote): Replace '?\s' by '?\ ' to keep compatibility with
5243 Emacs 20 & 21.
5244
5245 2006-11-29 J.D. Smith <jdsmith@as.arizona.edu>
5246
5247 * progmodes/idlwave.el (idlwave-auto-fill):
5248 Remove paragraph-start let to prevent auto-fill giving up.
5249
5250 2006-11-28 Juanma Barranquero <lekktu@gmail.com>
5251
5252 * vt100-led.el (led-state): Fix typo in previous change.
5253
5254 2006-11-27 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
5255
5256 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5257 Fix interactive spec of the functions getting defined to make them
5258 work as documented.
5259
5260 2006-11-28 Chong Yidong <cyd@stupidchicken.com>
5261
5262 * startup.el (fancy-splash-screens): Hide initial splash buffer.
5263
5264 2006-11-28 Kim F. Storm <storm@cua.dk>
5265
5266 * icomplete.el (icomplete-tidy, icomplete-exhibit): Check that
5267 icomplete-mode is enabled.
5268
5269 2006-11-28 Carsten Dominik <dominik@science.uva.nl>
5270
5271 * textmodes/org.el (require): Require gnus-sum during compilation
5272 to avoid problem with a macro call.
5273
5274 2006-11-28 Glenn Morris <rgm@gnu.org>
5275
5276 * emacs-lisp/authors.el (authors-aliases): Add new alias.
5277
5278 * progmodes/fortran.el (fortran-font-lock-keywords-4): Add `min'.
5279 (fortran-window-create-momentarily): Do not need string-to-char.
5280
5281 2006-11-28 Richard Stallman <rms@gnu.org>
5282
5283 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
5284 Replace incorrect use of assoc-default with a loop.
5285
5286 * term.el (term-exec-1): Set envvar INSIDE_EMACS.
5287
5288 * simple.el (next-error-find-buffer): Improve messages.
5289
5290 * files.el (revert-buffer): Special error message if file
5291 is now not readable.
5292
5293 * facemenu.el (facemenu-add-new-face): Improve doc strings of
5294 constructed commands.
5295
5296 * comint.el (comint-exec-1): Provide Emacs version and `comint'
5297 in INSIDE_EMACS.
5298
5299 2006-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
5300
5301 * diff-mode.el (diff-mode-map): Add a binding for unified->context.
5302
5303 * server.el: Remove spurious * in docstrings.
5304 (server-process-filter): Exit from recursive editing before processing
5305 a new request.
5306
5307 2006-11-27 J.D. Smith <jdsmith@as.arizona.edu>
5308
5309 * progmodes/hideshow.el (hs-already-hidden-p): Move to end of
5310 line so hidden blocks will be correctly identified.
5311
5312 2006-11-27 Juanma Barranquero <lekktu@gmail.com>
5313
5314 * ledit.el (ledit-save-defun, ledit-mode):
5315 * resume.el (resume-emacs-args-buffer):
5316 * rot13.el (rot13-display-table, rot13-translate-table, rot13)
5317 (rot13-string, rot13-region, rot13-other-window, toggle-rot13-mode):
5318 * vmsproc.el (subprocess-input, start-subprocess, subprocess-command)
5319 (command-send-input, command-kill-line):
5320 * vt100-led.el (led-state, led-on): Fix typos in docstrings.
5321
5322 * autoarg.el (autoarg-kp-mode): Doc fix.
5323
5324 * emacs-lock.el (toggle-emacs-lock): Doc fix. Simplify.
5325 (emacs-lock-check-buffer-lock): Doc fix. Use `when'.
5326 (check-emacs-lock): Doc fix. Simplify.
5327
5328 * iimage.el (iimage-mode-image-regex-alist): Doc fix.
5329 (iimage-mode-buffer): Fix typos in docstring.
5330
5331 * misc.el (zap-up-to-char): Doc fix.
5332
5333 * time-stamp.el: Fix comment and obsolescence string for old
5334 functions. Use `dolist' instead of `while'.
5335
5336 * userlock.el (ask-user-about-lock-help): Fix typos in output message.
5337
5338 * disp-table.el (standard-display-8bit, standard-display-default):
5339 * ebuff-menu.el (electric-buffer-list):
5340 * ehelp.el (electric-help-command-loop):
5341 * font-core.el (font-lock-mode):
5342 * help-macro.el (make-help-screen):
5343 * help.el (describe-minor-mode-completion-table-for-indicator)
5344 (lookup-minor-mode-from-indicator):
5345 * indent.el (tab-to-tab-stop, move-to-tab-stop):
5346 * info-look.el (info-lookup-guess-custom-symbol):
5347 * locate.el (locate-main-listing-line-p, locate-mode, locate-do-setup):
5348 * longlines.el (longlines-wrap-line):
5349 * macros.el (insert-kbd-macro):
5350 * menu-bar.el (menu-bar-update-buffers):
5351 * misc.el (copy-from-above-command):
5352 * mouse.el (mouse-popup-menubar, mouse-buffer-menu-alist):
5353 * newcomment.el (comment-indent):
5354 * novice.el (disabled-command-function):
5355 * sort.el (sort-fields-syntax-table):
5356 * subr.el (momentary-string-display):
5357 * tar-mode.el (tar-header-block-summarize)
5358 (tar-clear-modification-flags):
5359 * terminal.el (terminal-cease-edit, te-more-break-unwind, te-newline)
5360 (te-clear-rest-of-line, te-clear-rest-of-screen, te-clear-screen)
5361 (te-insert-lines, te-delete-lines, te-delete, te-insert-spaces)
5362 (te-delete-char, te-down-vertically-or-scroll):
5363 * time-stamp.el (time-stamp-string-preprocess):
5364 * tmm.el (tmm-add-one-shortcut): "?\ " -> "?\s".
5365
5366 2006-11-26 Nick Roberts <nickrob@snap.net.nz>
5367
5368 * speedbar.el (speedbar-timer-fn): Revert to old behaviour when not
5369 in GUD mode.
5370
5371 * progmodes/gud.el (gud-install-speedbar-variables): Remove bindings:
5372 speedbar-expand-line-descendants, speedbar-contract-line-descendants.
5373
5374 2006-11-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5375
5376 * progmodes/cc-vars.el (c-backslash-column): Add . at end of sentence.
5377
5378 2006-11-26 Stephen Leake <stephen_leake@stephe-leake.org>
5379
5380 * progmodes/ada-mode.el (ada-which-compiler): Fix typo in docstring.
5381 (ada-compile-goto-error): Adapt to new argument profile of
5382 compilation-goto-locus in Emacs 22. Don't check if the various
5383 compile functions are defined; we already do "(require 'compile)".
5384
5385 2006-11-26 Kim F. Storm <storm@cua.dk>
5386
5387 * kmacro.el: Fix commentary.
5388
5389 2006-11-26 Nick Roberts <nickrob@snap.net.nz>
5390
5391 * progmodes/gud.el (gdb): Explain how to run in text command mode
5392 more clearly. Say in error message that multiple debugging
5393 requires restarting GDB.
5394
5395 2006-11-25 Juanma Barranquero <lekktu@gmail.com>
5396
5397 * international/fontset.el (create-fontset-from-fontset-spec): Doc fix.
5398
5399 2006-11-25 Pavel Kobiakov <pk_at_work@yahoo.com>
5400
5401 * progmodes/flymake.el (flymake-posn-at-point-as-event): New function.
5402 (flymake-popup-menu): Use it instead of posn-at-point.
5403
5404 2006-11-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5405
5406 * progmodes/cc-vars.el (c-backslash-column):
5407 Mention c-backslash-max-column in documentation for c-backslash-column.
5408
5409 2006-11-24 Lars Hansen <larsh@soem.dk>
5410
5411 * net/tramp.el (tramp-default-method): Under Windows, change from
5412 plink to pscp.
5413 (tramp-copy-failed-regexp, tramp-action-copy-failed): Add.
5414 (tramp-actions-copy-out-of-band):
5415 Add pair (tramp-copy-failed-regexp tramp-action-copy-failed).
5416 (tramp-action-out-of-band): Move "Permission denied" handling to
5417 tramp-action-copy-failed.
5418 (tramp-do-copy-or-rename-file-out-of-band): unwind-protect killing of
5419 process buffer.
5420
5421 2006-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
5422
5423 * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
5424 strings to a single string. Quote `errors-file-name'.
5425 (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
5426 (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
5427 Adjust calls. Use `shell-quote-argument'.
5428
5429 * international/mule.el (load-with-code-conversion)
5430 (with-category-table): Use with-current-buffer.
5431 (after-insert-file-set-coding): Use restore-buffer-modified-p.
5432
5433 2006-11-24 Eli Zaretskii <eliz@gnu.org>
5434
5435 * mail/smtpmail.el (smtpmail-send-it):
5436 Copy buffer-file-coding-system from the mail buffer. Possibly add a
5437 MIME header for the message encoding.
5438 Bind coding-system-for-write around the call to mail-do-fcc.
5439 Use smtpmail-code-conv-from to encode queued mail messages.
5440
5441 2006-11-24 Juanma Barranquero <lekktu@gmail.com>
5442
5443 * tabify.el (tabify-regexp): Doc fix.
5444
5445 * net/rcirc.el (rcirc-buffer-maximum-lines):
5446 * progmodes/gud.el (jdb): Fix space/tab mixup in docstrings.
5447
5448 * play/gomoku.el (gomoku-terminate-game, gomoku-human-takes-back)
5449 (gomoku-prompt-for-move, gomoku-human-plays, gomoku-offer-a-draw):
5450 Fix typos in output messages.
5451 (gomoku-vector-length, gomoku-init-board): Fix typos in docstrings.
5452
5453 2006-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
5454
5455 * hexl.el (hexl-mode): Don't try to guess the max-address: get it from
5456 the horse's mouth.
5457 (hexlify-buffer): Don't re-encode an arg that's already encoded.
5458
5459 2006-11-23 Michael Kifer <kifer@cs.stonybrook.edu>
5460
5461 * ediff-diff.el (ediff-exec-process, ediff-same-file-contents):
5462 Remove condition-case.
5463
5464 2006-11-23 Glenn Morris <rgm@gnu.org>
5465
5466 * progmodes/f90.el (f90-comment-indent): Do not move point in
5467 default case.
5468
5469 2006-11-21 Romain Francoise <romain@orebokech.com>
5470
5471 * emacs-lisp/find-func.el (find-library-name): Don't strip ".el"
5472 from library name (reverts change of 2005-10-25).
5473
5474 2006-11-21 Lennart Borgman <lennart.borgman.073@student.lu.se>
5475
5476 * tutorial.el (tutorial--default-keys): Add newline and
5477 delete-backward-char bindings.
5478 (tutorial--detailed-help): Save excursion when finding keys.
5479 Correct warning string for M-x FOO case.
5480 (tutorial--display-changes): Print special keys in tutorial style.
5481 Tweak search regexp for changed keys.
5482
5483 2006-11-21 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
5484
5485 * thingatpt.el (thing-at-point-url-at-point): Don't add a
5486 redundant scheme.
5487
5488 2006-11-21 Diane Murray <disumu@x3y2z1.net> (tiny change)
5489
5490 * thingatpt.el (thing-at-point-uri-schemes): Add schemes that
5491 are new to the list at IANA. Also added irc, mms, mmsh.
5492
5493 2006-11-20 J.D. Smith <jdsmith@as.arizona.edu>
5494
5495 * progmodes/idlw-help.el (idlwave-html-help-location):
5496 Fail gracefully for missing help packages.
5497 (idlwave-help-assistant-open-link): Open full links.
5498 (idlwave-help-assistant-help-with-topic): Direct help link.
5499
5500 * progmodes/idlwave.el (idlwave-mode):
5501 Set add-log-current-defun-function.
5502 (idlwave-current-routine-fullname): Add, to support add-log.
5503 (idlwave-convert-xml-system-routine-info): Simplify XML parsing
5504 to reflect improvements to xml-parse-file.
5505 (idlwave-mode-menu-def): New binding for help-with-topic.
5506
5507 * progmodes/idlw-shell.el (idlwave-shell-filter-directory):
5508 Handle extra newlines and spaces.
5509 (idlwave-shell-mode-map): Add help-with-topic.
5510
5511 2006-11-20 Chong Yidong <cyd@stupidchicken.com>
5512
5513 * tutorial.el (tutorial-warning-face): New face.
5514 (tutorial--detailed-help, tutorial--display-changes): Use it.
5515 (tutorial--find-changed-keys): Check ESC-prefix binding specially.
5516 Improve search pattern for occurrences of changed keys.
5517
5518 2006-11-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5519
5520 * term/x-win.el (x-last-cut-buffer-coding): New variable.
5521 (x-select-text): Set it.
5522 (x-cut-buffer-or-selection-value): Check also x-last-cut-buffer-coding
5523 when checking for newness.
5524
5525 2006-11-19 Juanma Barranquero <lekktu@gmail.com>
5526
5527 * subr.el (posn-image):
5528 * progmodes/ebnf2ps.el (ebnf-stop-on-error): Fix typos in docstrings.
5529
5530 * emacs-lisp/regexp-opt.el (regexp-opt): Doc fix.
5531
5532 2006-11-19 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
5533
5534 * progmodes/glasses.el (glasses-separate-parentheses-exceptions): New.
5535 Exceptions to the rule "add a space between an identifier and an
5536 opening parenthesis". Defaulted to the `#define' problem of cpp.
5537 (glasses-parenthesis-exception-p): New. Check if the region is an
5538 exception regarding to that.
5539 (glasses-make-readable): Use it.
5540 (glasses-convert-to-unreadable): Ditto. Modify the file also if
5541 `glasses-convert-on-write-p' and `glasses-separate-parentheses-p' are t.
5542
5543 2006-11-19 Chong Yidong <cyd@stupidchicken.com>
5544
5545 * emacs-lisp/bytecomp.el (byte-compile-if): Revert last change.
5546
5547 2006-11-19 Stephen Leake <stephen_leake@stephe-leake.org>
5548
5549 * progmodes/ada-mode.el (ada-make-body): Fix typo.
5550
5551 * progmodes/ada-xref.el (ada-make-body-gnatstub): Fix typo.
5552 (ada-xref-initialize): Fix typo. Use add-hook and remove-hook.
5553
5554 2006-11-18 Chong Yidong <cyd@stupidchicken.com>
5555
5556 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Check `and'
5557 conditions for function or variable bindings.
5558
5559 * comint.el (comint-exec-1): Set EMACS and INSIDE_EMACS to t.
5560
5561 * progmodes/compile.el (compilation-start): Ditto.
5562
5563 2006-11-18 Michael Albinus <michael.albinus@gmx.de>
5564
5565 * net/tramp.el (top): cl and custom are always required.
5566
5567 2006-11-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5568
5569 * term/x-win.el (x-cut-buffer-or-selection-value): Decode text from
5570 cut-buffers with next-selection-coding-system if not nil.
5571
5572 2006-11-17 Carsten Dominik <dominik@science.uva.nl>
5573
5574 * textmodes/org.el (org-fix-decoded-time): New function.
5575 (org-display-custom-time): Use `org-fix-decoded-time'.
5576
5577 2006-11-17 Chong Yidong <cyd@stupidchicken.com>
5578
5579 * menu-bar.el (menu-bar-games-menu): Remove yow.
5580
5581 2006-11-17 Carsten Dominik <dominik@science.uva.nl>
5582
5583 * textmodes/org.el (org-scan-tags): Re-align code fixed.
5584 (org-detach-overlay): Rename from `org-detatch-overlay'.
5585 (org-table-convert-region): Insert space after column separator.
5586 (org-agenda-kill): New command.
5587 (org-metaleft): Call `org-outdent-item' on bullets.
5588 (org-metaright): Call `org-indent-item' on bullets.
5589 (org-timestamp-change): Set `org-last-changed-timestamp'.
5590 (org-current-line): Make sure (bolp) returns correct result.
5591 (org-agenda-change-all-lines): Make sure TODO are highlighted.
5592
5593 2006-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
5594
5595 * pcvs.el (cvs-retrieve-revision): Set buffer-file-coding-system.
5596
5597 2006-11-16 Chong Yidong <cyd@stupidchicken.com>
5598
5599 * mouse.el (global-map): Change 2006-08-16 fix to call
5600 mouse-yank-at-click explicitly, since mouse events are not carried
5601 over into keyboard macros.
5602
5603 2006-11-16 Kim F. Storm <storm@cua.dk>
5604
5605 * ido.el (ido-file-internal): Use current buffer's file name as default
5606 choice for ido-find-alternate-file. Suggested by Matt Hodges.
5607
5608 2006-11-15 Ken Manheimer <ken.manheimer@gmail.com>
5609
5610 * allout.el (allout-doublecheck-at-and-shallower): Clarify docstring.
5611 (allout-inhibit-aberrance-doublecheck): Rename from
5612 allout-during-yank-processing. All callers changed.
5613 (allout-ascend): Provide for unusual case where some topic after
5614 the first in file is at lower depth than the first.
5615 (allout-shift-in): Ensure the offspring of the new containing
5616 topic are exposed.
5617 (allout-encrypt-string): Preserve the coding-system of the text,
5618 according to that of the containing buffer.
5619 (allout-toggle-subtree-encryption): When the text being encrypted
5620 requires a different coding system, offer to preserve the coding
5621 system using a file local var.
5622
5623 2006-11-15 Simon Marshall <simon@gnu.org>
5624
5625 * progmodes/cc-fonts.el (c-font-lock-declarators): Use c-at-toplevel-p
5626 to recognise "T t()" as a function declaration, rather than a
5627 variable instantiation, iff at the top-level or inside a class
5628 declaration. Suggested by Feng Li <fengli@gmail.com>.
5629
5630 2006-11-14 Stephen Leake <stephen_leake@stephe-leake.org>
5631
5632 * progmodes/ada-xref.el (ada-parse-prj-file):
5633 Don't delete project buffer; user may want to edit it.
5634 (ada-xref-set-project-field, ada-xref-current-project-file)
5635 (ada-xref-current-project, ada-show-current-project)
5636 (ada-set-main-compile-application): New functions.
5637 (ada-xref-get-project-field, ada-require-project-file):
5638 Normalize use of ada-prj-default-project-file.
5639 (ada-gdb-application, ada-get-ada-file-name, ada-make-body-gnatstub):
5640 Normalize use of ada-require-project-file.
5641 (ada-prj-find-prj-file): Improve doc string, comments.
5642
5643 * progmodes/ada-mode.el (ada-mode-version): Bump version.
5644 (ada-create-keymap): Add \C-c\C-m 'ada-set-main-compile-application.
5645 (ada-create-menu): Add ada-set-main-compile-application,
5646 ada-show-current-main, ada-show-current-project.
5647
5648 2006-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
5649
5650 * progmodes/python.el (inferior-python-mode-syntax-table): New var.
5651 (inferior-python-mode): Use it.
5652
5653 2006-11-14 Andreas Schwab <schwab@suse.de>
5654
5655 * term/xterm.el (terminal-init-xterm): Add more key bindings.
5656
5657 2006-11-13 Kim F. Storm <storm@cua.dk>
5658
5659 * ido.el (ido-copy-current-word): C-o copies region if active.
5660
5661 2006-11-13 Carsten Dominik <dominik@science.uva.nl>
5662
5663 * textmodes/org.el (org-emph-face): Fix typo in variable name.
5664
5665 2006-11-13 Juanma Barranquero <lekktu@gmail.com>
5666
5667 * ediff.el (ediff-revision):
5668 * files.el (set-visited-file-name):
5669 * mail/rmailout.el (rmail-output-body-to-file):
5670 Use `format', not `message', in `y-or-n-p' call.
5671
5672 2006-11-13 Carsten Dominik <dominik@science.uva.nl>
5673
5674 * textmodes/org.el (org-metaleft): Call `org-outdent-item' on bullets.
5675 (org-metaright): Call `org-indent-item' on bullets.
5676 (org-timestamp-change): Set `org-last-changed-timestamp'.
5677 (org-current-line): Make sure (bolp) returns correct result.
5678 (org-agenda-change-all-lines): Make sure highlighting TODO always works.
5679
5680 2006-11-12 Richard Stallman <rms@gnu.org>
5681
5682 * language/european.el (turkish-case-conversion-enable)
5683 (turkish-case-conversion-disable): New functions.
5684 ("Turkish" lang env): Use them.
5685
5686 * international/characters.el (case table):
5687 Do nothing special for i and I.
5688
5689 * subr.el (remove-overlays): Fix last change.
5690
5691 * cus-edit.el (custom-save-all): Use find-file-visit-truename
5692 for visiting the custom file.
5693
5694 2006-11-12 Markus Triska <triska@gmx.at>
5695
5696 * play/handwrite.el (handwrite): Also process lines not ending
5697 with newline. Replace some position-fiddling with different
5698 logic. Improve performance.
5699
5700 2006-11-12 Stephen Leake <stephen_leake@stephe-leake.org>
5701
5702 * progmodes/ada-xref.el (ada-prj-default-check-cmd): New variable,
5703 replacing deleted variable `ada-check-switch'.
5704 (ada-project-file-extension): Rename to `ada-prj-file-extension'.
5705 (ada-xref-project-files): Improve doc string.
5706 (ada-find-executable): New function.
5707 (ada-initialize-runtime-library): Use `ada-find-executable'.
5708 (ada-xref-set-default-prj-values): In compile commands, don't need
5709 `ada-cd-command'; `compile' does that more portably.
5710 Use ada-prj-default-check-cmd.
5711 (ada-parse-prj-file): Don't set 'debug_post_cmd, 'debug_pre_cmd
5712 properties if not specified in project file.
5713 (ada-goto-declaration): Display useful message for new error
5714 'error-file-not-found.
5715 (ada-get-ada-file-name, ada-find-in-src-path): Signal new error
5716 'error-file-not-found.
5717 (ada-get-all-references): Match latest ali syntax. Signal new
5718 error 'error-file-not-found.
5719 (ada-find-in-ali): Match latest ali syntax.
5720 (ada-make-filename-from-adaname): Handle different semantics of
5721 gnatkr in GNAT 3.15p vs later.
5722
5723 * progmodes/ada-stmt.el (ada-func-or-proc-name): Match changes to
5724 ada-procedure-start-regexp.
5725 (ada-or-accept, ada-or-delay, ada-or-terminate): Improve doc string.
5726
5727 * progmodes/ada-mode.el: Replace conditional (require 'ispell)
5728 with defvar.
5729 (ada-language-version): Rename ada05 -> ada2005.
5730 (ada-align-region-separate): Add `eval-when-compile'.
5731 (ada-name-regexp): Remove unneeded escapes in regexp character
5732 alternative.
5733 (ada-compile-goto-error-file-linenr-re): New constant.
5734 (ada-matching-start-re): Handle additional cases `declare',
5735 `procedure', `function'.
5736 (ada-compile-goto-error): Handle "... at line nn".
5737 (ada-mode): Clearer syntax, comments for ff-special-constructs.
5738 Delete support for old versions of `align'.
5739 (ada-search-prev-end-stmt): Handle additional keyword `private'.
5740 (ada-check-defun-name): Simplify handling of `declare'.
5741 (ada-goto-matching-start): Handle nested `begin ... end'.
5742 Handle `declare', `protected', `procedure', `function'.
5743 (ada-create-menu): Presence of arm95 is not conditional on using
5744 GNAT compiler.
5745
5746 2006-11-12 Juanma Barranquero <lekktu@gmail.com>
5747
5748 * emacs-lisp/re-builder.el (reb-mode): Set `blink-matching-paren' to
5749 nil in the *RE-Builder* buffer (it causes spurious error messages).
5750
5751 * server.el (server-visit-files): If `minibuffer-auto-raise' has
5752 been set to t, respect it.
5753
5754 2006-11-11 Stephen Leake <stephen_leake@stephe-leake.org>
5755
5756 * progmodes/ada-mode.el: Delete `eval-and-compile' around `require'.
5757 Delete commented out code for old Emacs versions. Autoloading of
5758 "ada-xref", "ada-prj" is useful even if compiler is not GNAT.
5759 (ada-mode-version): Bump version number.
5760 (ada-95-string-keywords, ada-2005-string-keywords)
5761 (ada-2005-keywords, ada-name-regexp): New constant.
5762 (ada-language-version, ada-procedure-start-regexp, ada-mode)
5763 (ada-font-lock-keywords): Add support for Ada 2005 keywords.
5764 (ada-package-start-regexp): Support private packages, include package
5765 name (for ada-set-point-accordingly).
5766 (ada-next-procedure, ada-previous-procedure)
5767 (ada-which-function-are-we-in): Match changes to
5768 ada-procedure-start-regexp.
5769 (ada-make-body): Make non-interactive; not a user function.
5770 (ada-make-subprogram-body): Improve doc string.
5771
5772 2006-11-11 Romain Francoise <romain@orebokech.com>
5773
5774 * progmodes/cperl-mode.el (cperl-mode): Before adding to it, make
5775 `compilation-error-regexp-alist' buffer-local, since we changed
5776 `compilation-error-regexp-alist-alist' locally.
5777
5778 2006-11-11 Juanma Barranquero <lekktu@gmail.com>
5779
5780 * server.el (server-visit-files): Bind `minibuffer-auto-raise'
5781 to the value of `server-raise-frame'.
5782
5783 2006-11-11 Glenn Morris <rgm@gnu.org>
5784
5785 * ido.el (ido-enable-prefix)
5786 * ses.el (ses-call-printer-return)
5787 * net/tramp.el (tramp-unified-filenames)
5788 * progmodes/cc-align.el (c-lineup-string-cont)
5789 * progmodes/compile.el (compilation-directory-matcher)
5790 * progmodes/ebnf2ps.el (ebnf-stop-on-error)
5791 * progmodes/vhdl-mode.el (vhdl-reset-active-high)
5792 (vhdl-clock-rising-edge)
5793 * textmodes/org.el (org-export-with-timestamps)
5794 (org-export-remove-timestamps-from-toc)
5795 (org-export-with-tags): Improve previous doc fixes.
5796
5797 2006-11-11 Richard Stallman <rms@gnu.org>
5798
5799 * textmodes/flyspell.el (flyspell-mode-map):
5800 Bind C-c $ instead of M-RET.
5801
5802 2006-11-10 Simon Marshall <simon@gnu.org>
5803
5804 * progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite
5805 fontification for "case" and "default" keywords.
5806
5807 2006-11-10 Andreas Schwab <schwab@suse.de>
5808
5809 * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
5810 Avoid starting sentence with "nil".
5811
5812 2006-11-10 Juanma Barranquero <lekktu@gmail.com>
5813
5814 * server.el (server-raise-frame): New option.
5815 (server-switch-buffer): Use it.
5816
5817 2006-11-10 Nick Roberts <nickrob@snap.net.nz>
5818
5819 * progmodes/gdb-ui.el (gdb-many-windows): Start doc string
5820 with a capital.
5821
5822 2006-11-10 Carsten Dominik <carsten.dominik@gmail.com>
5823
5824 * textmodes/org.el (org-show-hierarchy-above)
5825 (org-show-following-heading): Fix typo in default value.
5826 (org-scan-tags): Make the search case-sensitive.
5827 (org-tags-sparse-tree): Don't overrule
5828 `org-show-following-heading' and `org-show-hierarchy-above'.
5829 (org-reveal): New command.
5830 (org-show-context): Rename from `org-show-hierarchy-above'.
5831 (org-fast-tag-selection-single-key): New option.
5832 (org-fast-tag-show-exit, org-set-current-tags-overlay): New functions.
5833 (org-tags-overlay): New variable.
5834 (org-agenda-todo-ignore-deadlines): New option.
5835 ("session"): Add circular data structure `org-mark-ring' to
5836 exceptions list in session.el.
5837 (org-agenda-window-setup, org-agenda-restore-windows-after-quit):
5838 New options.
5839 (org-agenda-quit): Use `org-agenda-restore-windows-after-quit'.
5840 (org-prepare-agenda, org-agenda-quit): Use `org-agenda-window-setup'.
5841 (org-pre-agenda-window-conf, org-blank-before-new-entry): New vars.
5842 (org-finalize-agenda): Activate bracket links in agenda.
5843 (org-at-timestamp-p, org-at-date-range-p): Additional argument
5844 INACTIVE-OK.
5845 (org-show-hierarchy-above, org-show-following-heading):
5846 List values allowed for fine-tuned configuration.
5847 (org-show-hierarchy-above): New argument CONTEXT, use the
5848 fine-tuned settings in `org-show-hierarchy-above' and
5849 `org-show-following-heading'.
5850 (org-display-custom-time): New function.
5851 (org-toggle-time-stamp-overlays, org-insert-time-stamp): New function.
5852 (org-display-custom-times, org-time-stamp-custom-formats):
5853 (org-maybe-intangible): New macro.
5854 (org-activate-bracket-links, org-hide-wide-columns):
5855 Use `org-maybe-intangible'.
5856 (org-open-file): Use `shell-quote-argument'.
5857 (org-display-internal-link-with-indirect-buffer): New option.
5858 (org-file-remote-p): Get regexp from list.
5859 (org-link-expand-abbrev): New function.
5860 (org-link-abbrev-alist): New option.
5861 (org-open-at-point, org-cleaned-string-for-export):
5862 Call `org-link-expand-abbrev'.
5863 (org-timeline, org-agenda-list, org-todo-list)
5864 (org-tags-view): Remove the KEEP-MODES argument.
5865 (org-finalize-agenda-hook): New hook.
5866 (org-get-alist-option): New function.
5867 (org-follow-timestamp-link): New function.
5868 (org-open-at-point): Call `org-follow-timestamp-link'.
5869 (org-log-note-marker, org-log-note-purpose)
5870 (org-log-note-window-configuration): New variables.
5871 (org-add-log-maybe, org-add-log-note, org-store-log-note): New funs.
5872 (org-log-note-headings): New option.
5873 (org-dblock-write:clocktable): Bug fix, removed infinite loop.
5874 (org-store-link): Support for dired-mode.
5875 (org-open-file): Substitute environment variables into filename.
5876 (org-last): New defsubst.
5877 (org-agenda-re-align-tags): New function.
5878 (org-agenda-align-tags-to-column): New option.
5879 (org-agenda-timeline): Group removed.
5880 (org-prepare-agenda, org-prepare-agenda-buffers)
5881 (org-run-agenda-series, org-timeline, org-agenda-list)
5882 (org-todo-list, org-tags-view): Call `org-agenda-prepare' and set
5883 the text property inticating the agenda type.
5884 (org-agenda-post-command-hook): Get agenda type from text property
5885 at point.
5886 (org-agenda): Handle command sets. Set `org-agenda-last-arguments'
5887 and obey `org-agenda-overriding-arguments'.
5888 (org-agenda-overriding-arguments, org-agenda-last-arguments): New vars.
5889 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
5890 (org-agenda-week-view, org-agenda-day-view):
5891 Use `org-agenda-overriding-arguments' to make updating work with
5892 multi-block agendas.
5893 (org-agenda-prefix-format): Allow different formats for the
5894 different agenda entry types.
5895 (org-timeline-prefix-format): Option removed, use
5896 `org-agenda-prefix-format' instead.
5897 (org-prepare-agenda): New function.
5898 (org-select-timeline-window): Option removed, use
5899 `org-select-agenda-window' instead.
5900 (org-respect-restriction): Variable removed.
5901 (org-cmp-tag): New function.
5902 (org-agenda-sorting-strategy, org-entries-lessp):
5903 Implement sorting by last tag.
5904 (org-complete): Better completion in in-buffer option lines.
5905 (org-in-item-p): New function.
5906 (org-org-menu): Add entries for checkboxes.
5907 (org-cycle): Extra brouping in outline-regexp, because it is used
5908 in a search with "^" prepended.
5909 (org-provide-checkbox-statistics): New option.
5910 (org-set-font-lock-defaults): Highlight checkbox statistics.
5911 (org-update-checkbox-count-maybe)
5912 (org-get-checkbox-statistics-face): New functions.
5913 (org-update-checkbox-count): New command.
5914 (org-insert-item, org-toggle-checkbox):
5915 Call `org-update-checkbox-count-maybe'.
5916 (org-export-as-html): XEmacs compatibility for coding system.
5917 (org-force-cycle-archived): New command.
5918 (org-cycle-hide-archived-subtrees): Display message when ARCHIVE
5919 overrules cycling.
5920 (org-fix-position-after-promote): If the line contains only a todo
5921 keyword, add a final space.
5922 (org-promote-subtree, org-demote-subtree):
5923 Call `org-fix-position-after-promote'.
5924
5925 2006-11-10 Glenn Morris <rgm@gnu.org>
5926
5927 * calendar/cal-dst.el: Do not assume DST starts/ends on the same
5928 date in every year.
5929 (calendar-dst-check-each-year-flag): New customizable variable.
5930 (calendar-dst-find-data): New function, extracted from
5931 calendar-current-time-zone.
5932 (calendar-current-time-zone): Use calendar-dst-find-data.
5933 (calendar-dst-transition-cache): New variable.
5934 (calendar-dst-find-startend, calendar-dst-starts)
5935 (calendar-dst-ends): New functions.
5936 (calendar-daylight-savings-starts)
5937 (calendar-daylight-savings-ends): Change value to use
5938 calendar-dst-starts, calendar-dst-ends; respectively.
5939
5940 * progmodes/f90.el (f90-indent-region): Bind case-fold-search to t.
5941
5942 * ido.el (ido-enable-prefix)
5943 * ses.el (ses-call-printer-return)
5944 * net/tramp.el (tramp-unified-filenames)
5945 * progmodes/cc-align.el (c-lineup-string-cont)
5946 * progmodes/compile.el (compilation-directory-matcher)
5947 * progmodes/ebnf2ps.el (ebnf-stop-on-error)
5948 * progmodes/gdb-ui.el (gdb-many-windows)
5949 * progmodes/vhdl-mode.el (vhdl-reset-active-high)
5950 (vhdl-clock-rising-edge)
5951 * textmodes/org.el (org-export-with-timestamps)
5952 (org-export-remove-timestamps-from-toc, org-export-with-tags)
5953 (org-read-date): Doc fix (Nil -> nil).
5954
5955 2006-11-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5956
5957 * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
5958 Encode/decode text to/from cut buffers to/from iso-latin-1 only.
5959
5960 2006-11-10 Juanma Barranquero <lekktu@gmail.com>
5961
5962 * bs.el (bs--window-for-buffer): Remove.
5963 (bs--show-with-configuration): Use `get-window-with-predicate'
5964 instead of `bs--window-for-buffer'.
5965
5966 2006-11-10 Kenichi Handa <handa@m17n.org>
5967
5968 * files.el (revert-buffer): Fix previous change.
5969
5970 2006-11-09 Juanma Barranquero <lekktu@gmail.com>
5971
5972 * bs.el (bs--redisplay): Fix typo in docstring.
5973 (bs--window-config-coming-from): Make frame-local.
5974 (bs--restore-window-config): New function.
5975 (bs-kill, bs-select, bs-select-other-window)
5976 (bs-select-other-frame): Use it.
5977 (bs--window-for-buffer): Return as soon as a matching buffer is found.
5978 (bs--show-with-configuration): Save the window configuration as a
5979 frame local var, and only if *buffer-selection* is not already
5980 visible on this frame.
5981
5982 2006-11-08 Chong Yidong <cyd@stupidchicken.com>
5983
5984 * vc-svn.el (vc-svn-admin-directory): New var.
5985 (vc-svn-registered, vc-svn-responsible-p)
5986 (vc-svn-repository-hostname): Use it.
5987 Suggested by arit93@yahoo.com.
5988
5989 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
5990
5991 * ldefs-boot.el: Regenerate.
5992
5993 2006-11-08 Alan Mackenzie <acm@muc.de>
5994
5995 * emacs-lisp/lisp.el (beginning-of-defun-raw): Code up the
5996 case (eq open-paren-in-column-0-is-defun-start nil) by searching
5997 for least nested open-paren.
5998
5999 2006-11-08 Romain Francoise <romain@orebokech.com>
6000
6001 * subr.el (remove-overlays): Fix typo in last change.
6002
6003 2006-11-08 Richard Stallman <rms@gnu.org>
6004
6005 * subr.el (remove-overlays): Call overlay-recenter.
6006
6007 2006-11-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6008
6009 * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
6010 (pr-ps-name-custom-set, pr-txt-name-custom-set): Return back the old
6011 behaviour.
6012 (pr-menu-bind): Act on global-map instead of menu-bar-file-menu
6013 directly.
6014
6015 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
6016
6017 * ido.el (ido-ignore-extensions, ido-show-dot-for-dired)
6018 (ido-max-dir-file-cache, ido-decorations)
6019 (ido-rewrite-file-prompt-functions, ido-use-mycompletion-depth)
6020 (ido-magic-backward-char, ido-enter-dired)
6021 (ido-enter-insert-buffer, ido-enter-insert-file, ido-dired)
6022 (ido-list-directory, ido-first-match, ido-only-match)
6023 (ido-subdir, ido-indicator): Fix typos in docstrings.
6024 (ido-buffer-internal, ido-completion-help): Fix typos in messages.
6025 (ido-read-internal): Fix typo in error message.
6026
6027 2006-11-08 Kenichi Handa <handa@m17n.org>
6028
6029 * international/mule-cmds.el (set-default-coding-systems):
6030 Always set default-file-name-coding-system to utf-8 for Mac Darwin.
6031
6032 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
6033
6034 * makefile.w32-in (setwins): Remove.
6035 (WINS_ALMOST): New macro.
6036 (WINS): Use it.
6037 (autoloads): Don't extract autoloads from files in obsolete/.
6038
6039 2006-11-07 Chong Yidong <cyd@stupidchicken.com>
6040
6041 * whitespace.el (whitespace-buffer): Call remove-overlays after
6042 overlay-recenter for performance. Suggested by Martin Rudalics.
6043
6044 2006-11-07 Michael Albinus <michael.albinus@gmx.de>
6045
6046 * net/tramp.el (tramp-default-method): scp is the default method.
6047
6048 2006-11-07 Juanma Barranquero <lekktu@gmail.com>
6049
6050 * server.el (server-start): Save also the Emacs pid in the server file.
6051
6052 2006-11-07 Carsten Dominik <dominik@science.uva.nl>
6053
6054 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Preserve
6055 point when displaying a bibtex cross reference in the echo area.
6056
6057 2006-11-06 Juanma Barranquero <lekktu@gmail.com>
6058
6059 * international/mule.el (make-char): Fix typo in docstring.
6060 (load-with-code-conversion, charsetp): Doc fixes.
6061
6062 * international/ja-dic-cnv.el (skkdic-convert):
6063 * cus-edit.el (hook): Fix typo in docstring.
6064
6065 2006-11-06 Chong Yidong <cyd@stupidchicken.com>
6066
6067 * cus-edit.el (custom-mode-map): Move defvar above code using it.
6068 (custom-mode-link-map): New variable.
6069 (custom-group-link, custom-manual): Use follow-link.
6070
6071 2006-11-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6072
6073 * textmodes/bibtex.el: Fix typo in name of author of bibtex.el,
6074 "Mark Shapiro" -> "Marc Shapiro". Update his email address.
6075
6076 2006-11-06 Richard Stallman <rms@gnu.org>
6077
6078 * textmodes/flyspell.el (flyspell-correct-word-before-point):
6079 New function broken out of flyspell-correct-word.
6080 (flyspell-mode-map): Bind it to M-RET.
6081 (flyspell-correct-word): Call it.
6082
6083 * textmodes/fill.el (fill-minibuffer-function): New function.
6084 (fill-paragraph): Bind fill-paragraph-function to
6085 fill-minibuffer-function.
6086
6087 * ruler-mode.el (ruler-mode-map): Add bindings for up-events
6088 so that they aren't undefined.
6089
6090 * dired.el (dired-readin): Locally bind file-name-coding-system.
6091
6092 * bindings.el: Shorten and clarify usual mode line mouse help string.
6093
6094 * Makefile.in (autoloads): Don't include `obsolete'.
6095
6096 2006-11-06 Chong Yidong <cyd@stupidchicken.com>
6097
6098 * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
6099 (pr-ps-name-custom-set, pr-txt-name-custom-set): Don't update the
6100 Printing menu if it's not initialized.
6101 (pr-menu-bind): Act on menu-bar-file-menu directly.
6102
6103 2006-11-06 Juanma Barranquero <lekktu@gmail.com>
6104
6105 * help.el (view-emacs-news): Fix typo in error message.
6106
6107 * menu-bar.el (menu-bar-update-buffers): Fix typo in menu entry.
6108
6109 * shadowfile.el (shadow-define-regexp-group)
6110 (shadow-literal-groups, shadow-insert-var): Doc fixes.
6111 (shadow-read-files): Fix typo in message.
6112 (shadow-inhibit-overload, shadow-find, shadow-suffix)
6113 (shadow-site-match, shadow-write-todo-file, shadow-insert-var)
6114 (shadow-suffix, shadow-site-match, shadow-expand-file-name)
6115 (shadow-file-match): Fix typos in docstrings.
6116
6117 * terminal.el (terminal-emulator): Fix typo in message.
6118
6119 * emacs-lisp/authors.el (authors-fixed-entries): Fix typo.
6120
6121 * emacs-lisp/lselect.el (x-kill-primary-selection)
6122 (x-delete-primary-selection, x-copy-primary-selection):
6123 Fix typos in error messages.
6124
6125 * emulation/edt-mapper.el: Fix typo in interactive message.
6126
6127 * mail/emacsbug.el (report-emacs-bug): Fix typos in output message.
6128
6129 * textmodes/ispell.el (ispell, ispell-local-dictionary-alist)
6130 (ispell-help): Fix typos in docstrings.
6131 (ispell-help): Fix typo in output message.
6132
6133 * allout.el (allout-adjust-file-variable)
6134 (allout-passphrase-verifier-string)
6135 (allout-passphrase-hint-string)
6136 (allout-toggle-current-subtree-encryption):
6137 * apropos.el (apropos-synonyms):
6138 * cus-edit.el (hook):
6139 * emacs-lock.el (emacs-lock-from-exiting):
6140 * follow.el (follow-avoid-tail-recenter-p):
6141 * hexl.el (hexl-mode):
6142 * mouse-copy.el (mouse-copy-work-around-drag-bug):
6143 * mouse.el (mouse-set-font):
6144 * resume.el (resume-emacs-args-file):
6145 * rfn-eshadow.el (file-name-shadow-tty-properties):
6146 * t-mouse.el (t-mouse-process, t-mouse-mode):
6147 * emacs-lisp/cust-print.el (custom-print-install)
6148 (custom-print-uninstall, custom-format):
6149 * emacs-lisp/shadow.el (list-load-path-shadows):
6150 * emulation/tpu-edt.el (tpu-help-text)
6151 (tpu-save-all-buffers-kill-emacs, tpu-emacs-replace)
6152 (tpu-reset-control-keys):
6153 * emulation/vip.el (vip-emacs-local-map)
6154 (vip-change-mode-to-emacs):
6155 * emulation/viper.el (viper-mode, viper-set-hooks)
6156 (viper-major-mode-modifier-list):
6157 * emulation/viper-init.el (viper-emacs-state-cursor-color):
6158 * emulation/viper-keym.el (viper-emacs-kbd-map)
6159 (viper-toggle-key):
6160 * mail/feedmail.el (feedmail-queue-reminder)
6161 (feedmail-queue-reminder-alist, feedmail-confirm-outgoing)
6162 (feedmail-confirm-outgoing-timeout, feedmail-nuke-bcc)
6163 (feedmail-nuke-resent-bcc, feedmail-fill-to-cc-fill-column)
6164 (feedmail-sender-line, feedmail-force-binary-write)
6165 (feedmail-from-line, feedmail-deduce-envelope-from)
6166 (feedmail-x-mailer-line, feedmail-message-id-generator)
6167 (feedmail-date-generator, feedmail-fiddle-plex-user-list)
6168 (feedmail-enable-spray, feedmail-spray-this-address)
6169 (feedmail-spray-address-fiddle-plex-list, feedmail-enable-queue)
6170 (feedmail-queue-runner-confirm-global)
6171 (feedmail-ask-before-queue-prompt)
6172 (feedmail-ask-before-queue-reprompt)
6173 (feedmail-prompt-before-queue-standard-alist)
6174 (feedmail-prompt-before-queue-user-alist)
6175 (feedmail-prompt-before-queue-help-supplement)
6176 (feedmail-queue-use-send-time-for-message-id)
6177 (feedmail-queue-default-file-slug, feedmail-queue-fqm-suffix)
6178 (feedmail-mail-send-hook-splitter, feedmail-mail-send-hook)
6179 (feedmail-mail-send-hook-queued)
6180 (feedmail-confirm-addresses-hook-example)
6181 (feedmail-last-chance-hook, feedmail-before-fcc-hook)
6182 (feedmail-queue-runner-mode-setter)
6183 (feedmail-queue-alternative-mail-header-separator)
6184 (feedmail-queue-runner-message-sender)
6185 (feedmail-buffer-eating-function, feedmail-binmail-template)
6186 (feedmail-run-the-queue-no-prompts)
6187 (feedmail-run-the-queue-global-prompt)
6188 (feedmail-queue-subject-slug-maker, feedmail-fiddle-header)
6189 (feedmail-envelope-deducer, feedmail-fiddle-date)
6190 (feedmail-default-message-id-generator)
6191 (feedmail-fiddle-message-id, feedmail-fiddle-x-mailer)
6192 (feedmail-fiddle-spray-address, feedmail-deduce-address-list):
6193 * mail/vms-pmail.el (vms-pmail-save-and-exit, vms-pmail-abort)
6194 (vms-pmail-setup):
6195 * play/dunnet.el (dun-help):
6196 * play/handwrite.el (handwrite):
6197 * play/hanoi.el (hanoi-unix-64):
6198 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
6199 * textmodes/enriched.el (fixed):
6200 * textmodes/org.el (org-file-apps)
6201 (org-emphasis-regexp-components, org-emphasis-alist):
6202 * textmodes/texinfmt.el (batch-texinfo-format):
6203 Fix typos in docstrings.
6204
6205 2006-11-05 Juanma Barranquero <lekktu@gmail.com>
6206
6207 * loadhist.el (read-feature): Don't complete features not loaded
6208 from a file (which make `unload-feature' to fail).
6209
6210 2006-11-05 Reiner Steib <Reiner.Steib@gmx.de>
6211
6212 * add-log.el (add-log-time-zone-rule): Mark as safe-local-variable.
6213
6214 2006-11-05 Chong Yidong <cyd@stupidchicken.com>
6215
6216 * startup.el (command-line-1): Kill emacs if the last frame is
6217 deleted while evaluating the command-line arguments.
6218
6219 2006-11-05 Richard Stallman <rms@gnu.org>
6220
6221 * startup.el (init-file-had-error): Add doc string.
6222 (fancy-splash-text, fancy-splash-head, fancy-splash-tail):
6223 Use fixed-width font for keyboard key descriptions.
6224
6225 * cus-edit.el (custom-save-all): Error if saving in .emacs
6226 and it had an error when loaded.
6227
6228 * dired-aux.el (dired-copy-file-recursive): Catch errors
6229 from recursive copies in the loop, around the recursive call.
6230
6231 2006-11-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
6232
6233 * battery.el (battery-linux-proc-acpi): Search an ac_adapter in
6234 `/proc/acpi/ac_adapter/*'. Ditto for the thermometers in
6235 `/proc/acpi/thermal_zone/*'.
6236 (battery-search-for-one-match-in-files): New. Search a regexp in
6237 the content of some files.
6238
6239 2006-11-05 Martin Rudalics <rudalics@gmx.at>
6240
6241 * window.el (mouse-autoselect-window-now): Remove variable.
6242 (mouse-autoselect-window-state): New variable.
6243 (mouse-autoselect-window-start, mouse-autoselect-window-cancel)
6244 (mouse-autoselect-window-select, handle-select-window):
6245 Rewritten to make mouse-autoselect-window-timer a one-shot timer.
6246 Suspend delayed autoselection during menu or popup dialog.
6247
6248 * info-look.el (info-lookup-guess-custom-symbol): New function
6249 for retrieving symbol at point in custom buffers.
6250 (top level) <info-lookup-maybe-add-help>: Add backquote and
6251 comma to ignored characters in regexps of help specifications
6252 for emacs-lisp-mode and lisp-interaction-mode. This permits
6253 looking up symbols in `...' and after a comma. Add help
6254 specifications for custom-mode and help-mode.
6255
6256 2006-11-04 Eli Zaretskii <eliz@gnu.org>
6257
6258 * mail/rmail.el (rmail-redecode-body): New optional argument RAW.
6259 Don't encode body if RAW is non-nil, or if the old encoding is
6260 identical to the new encoding, or if the body contains only
6261 eight-bit-* characters.
6262
6263 2006-11-04 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
6264
6265 * faces.el (faces-sample-overlay, describe-face): Revert last changes.
6266 (faces-sample-overlay): Remove variable.
6267 (describe-face): Insert sample text in the face being described.
6268
6269 2006-11-04 Martin Rudalics <rudalics@gmx.at>
6270
6271 * whitespace.el (whitespace-indent-regexp): Make this match any
6272 multiples of eight spaces near the beginning of a line.
6273 (whitespace-buffer): Use `remove-overlays' instead of
6274 `whitespace-unhighlight-the-space' and `overlay-recenter' to
6275 speed up overlay handling.
6276 (whitespace-buffer-leading, whitespace-buffer-trailing):
6277 Make these functions highlight the text removed by
6278 `whitespace-buffer-leading-cleanup' and
6279 `whitespace-buffer-trailing-cleanup' respectively.
6280 (whitespace-buffer-search): Use `with-local-quit'.
6281 Move `format' out of loop to speed up scanning larger buffers.
6282 (whitespace-unhighlight-the-space): Remove `remove-hook' since
6283 that function is never added to a hook.
6284 (whitespace-spacetab-regexp, whitespace-ateol-regexp)
6285 (whitespace-buffer-leading-cleanup)
6286 (whitespace-refresh-rescan-list): Fix docstrings.
6287
6288 2006-11-03 Ken Manheimer <ken.manheimer@gmail.com>
6289
6290 * allout.el (allout-during-yank-processing): Cue for inhibiting
6291 aberrance processing during yanks.
6292 (allout-doublecheck-at-and-shallower): Reduce the limit to reduce
6293 the amount of yanked topics that can be aberrant.
6294 (allout-do-doublecheck): Encapsulate this multiply-used recipe in
6295 a function, and supplement with inihibition of doublechecking
6296 during yanks.
6297 (allout-beginning-of-line, allout-next-heading)
6298 (allout-previous-heading, allout-goto-prefix-doublechecked)
6299 (allout-back-to-current-heading, allout-next-visible-heading)
6300 (allout-next-sibling): Use new allout-do-doublecheck function.
6301 (allout-next-sibling): Ensure we made progress when returning
6302 other than nil.
6303 (allout-rebullet-heading): Preserve text property annotations
6304 indicating the text was hidden, if it was.
6305 (allout-kill-line): Remove any added was-hidden annotations.
6306 (allout-kill-topic): Remove any added was-hidden annotations.
6307 (allout-annotate-hidden): Inhibit adding was-hidden text
6308 properties to the undo list.
6309 (allout-deannotate-hidden): New function to remove was-hidden
6310 annotation.
6311 (allout-hide-by-annotation): Use new allout-deannotate-hidden.
6312 (allout-remove-exposure-annotation): Replace by
6313 allout-deannotate-hidden.
6314 (allout-yank-processing): Signal that yank processing is happening
6315 with allout-during-yank-processing. Also, wrap
6316 allout-unprotected's closer to the text changes, for easier
6317 debugging. We need to inhibit-field-text-motion explicitly, in
6318 lieu of the encompassing allout-unprotected.
6319 (outlineify-sticky): Adjust criteria for triggering new outline
6320 decorations to presence or absence of any topics, not just a topic
6321 at the beginning of the buffer.
6322
6323 2006-11-03 Juanma Barranquero <lekktu@gmail.com>
6324
6325 * bs.el (bs--show-all, bs--redisplay):
6326 * cus-edit.el (custom-unlispify-menu-entries)
6327 (custom-unlispify-tag-names, custom-prompt-variable):
6328 * expand.el (expand-pos):
6329 * speedbar.el (speedbar-generic-list-tag-p):
6330 * wid-edit.el (widget-image-enable):
6331 * emacs-lisp/checkdoc.el (checkdoc-rogue-space-check-engine):
6332 * emacs-lisp/find-func.el (find-function-noselect)
6333 (find-function, find-variable-noselect, find-variable)
6334 (find-definition-noselect, find-face-definition):
6335 * mail/rmail-spam-filter.el (rsf-scanning-messages-now):
6336 * net/eudc-vars.el (eudc-expansion-overwrites-query):
6337 * progmodes/ada-xref.el (ada-find-in-ali):
6338 * textmodes/flyspell.el (flyspell-check-tex-math-command):
6339 * textmodes/org.el (org-copy-subtree):
6340 * textmodes/table.el (table--row-column-insertion-point-p):
6341 Use "non-nil" in docstrings.
6342
6343 2006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
6344
6345 * sort.el (sort-columns): Set the field separator to tab; on
6346 NetBSD, sort complains if "\n" is used as field separator.
6347
6348 2006-11-03 NIIMI Satoshi <sa2c@sa2c.net>
6349
6350 * emacs-lisp/pp.el (pp-eval-last-sexp): Evaluate target sexp.
6351
6352 2006-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
6353
6354 * server.el (server-auth-key): Remove. Replace by a process-property.
6355 (server-start): Don't remove the file of the previous process, but
6356 instead clear out the place for the new file.
6357 (server-start): Set the :auth-key property.
6358 (server-process-filter): Use the :auth-key property.
6359
6360 2006-11-02 Carsten Dominik <dominik@science.uva.nl>
6361
6362 * textmodes/org.el (org-mode-map): No longer copy
6363 `outline-mode-map' explicitly - this is already done by
6364 `define-derived-mode'.
6365
6366 2006-11-02 Juanma Barranquero <lekktu@gmail.com>
6367
6368 * server.el (server-visit-files): Use `when'.
6369 (server-process-filter): When authentication fails, send error
6370 message to client. Wrap `process-send-region' in `ignore-errors'
6371 instead of `condition-case', and remove misleading comment.
6372
6373 2006-11-01 Juri Linkov <juri@jurta.org>
6374
6375 * simple.el (yank): Doc fix.
6376
6377 2006-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
6378
6379 * server.el: Try and fit within 80 columns.
6380 (server-start): Make the auth file unreadable by other users.
6381
6382 2006-10-31 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
6383
6384 * battery.el (battery-linux-proc-acpi): Prevent range error when
6385 `full-capacity' is 0.
6386
6387 2006-10-31 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
6388
6389 * faces.el (faces-sample-overlay): New defvar.
6390 (faces-sample-overlay): New function to show face sample text.
6391 (describe-face): Use it.
6392
6393 2006-10-31 Stephen Leake <stephen_leake@stephe-leake.org>
6394
6395 * progmodes/ada-stmt.el: Change maintainer, apply
6396 whitespace-cleanup, checkdoc.
6397 (ada-func-or-proc-name): Add doc string.
6398
6399 * progmodes/ada-prj.el (ada-prj-new): Change maintainer, apply
6400 whitespace-cleanup, checkdoc. Minor improvements to many doc
6401 strings and comments.
6402 (ada-prj-display-page): Change buffer name to more accurately
6403 reflect function.
6404
6405 * progmodes/ada-xref.el: Change maintainer, apply
6406 whitespace-cleanup, checkdoc. Minor improvements to many doc
6407 strings and comments. Don't look for `gvd' or `ddd' debuggers.
6408 (ada-compile-current): Don't add newlines to commands.
6409
6410 2006-10-31 Juanma Barranquero <lekktu@gmail.com>
6411
6412 * server.el: Add support for TCP sockets.
6413 (server-use-tcp, server-host, server-auth-dir): New options.
6414 (server-auth-key): New variable.
6415 (server-ensure-safe-dir): Create nonexistent parent dirs.
6416 Ignore Unix-style file modes on Windows.
6417 (server-start): Crete a TCP or Unix socket according to the value
6418 of `server-use-tcp'. For TCP sockets, create the id/auth file in
6419 `server-auth-dir' directory.
6420 (server-process-filter): Delete process if authentication
6421 fails (which never happens for Unix sockets).
6422
6423 2006-10-30 David Kastrup <dak@gnu.org>
6424
6425 * subr.el (add-to-list): Don't continue checking if a match has
6426 been found.
6427
6428 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
6429
6430 * tutorial.el: Move defvars to avoid bytecomp warnings.
6431 (tutorial--find-changed-keys): Check if viper-current-state is
6432 bound before using it.
6433 (help-with-tutorial): Check if viper-tutorial is defined before
6434 using it.
6435
6436 2006-10-30 Lennart Borgman <lennart.borgman.073@student.lu.se>
6437
6438 * help-fns.el (help-with-tutorial): Move to tutorial.el.
6439
6440 * tutorial.el: New file.
6441 (help-with-tutorial): Move here from help-fns.el. Added help for
6442 rebound keys. Fixed resume of tutorial.
6443 (tutorial--describe-nonstandard-key, tutorial--sort-keys)
6444 (tutorial--find-changed-keys, tutorial--display-changes)
6445 (tutorial--saved-dir, tutorial--saved-file)
6446 (tutorial--save-tutorial): New functions to support the changes in
6447 help-with-tutorial.
6448
6449 2006-10-30 Kenichi Handa <handa@m17n.org>
6450
6451 * files.el (revert-buffer): If a unibyte buffer is being reverted
6452 with a coding system for multibyte, set buffer multibyte before
6453 calling insert-file-contents.
6454
6455 2006-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6456
6457 * server.el (server-select-display): Use a dummy buffer to detect when
6458 the frame is later used.
6459 (server-select-display): New function.
6460 (server-process-filter): Use it to detect unused temp frames.
6461
6462 2006-10-29 Stephen Leake <stephen_leake@stephe-leake.org>
6463
6464 * progmodes/ada-mode.el: Change maintainer, apply
6465 whitespace-clean, checkdoc. Minor improvements to many doc strings.
6466 (ada-mode-version): New function.
6467 (ada-create-menu): Menu operations are available for all supported
6468 compilers.
6469
6470 2006-10-29 Lars Hansen <larsh@soem.dk>
6471
6472 * net/tramp.el (with-parsed-tramp-file-name): Correct debug spec.
6473 Highlight as keyword.
6474 (tramp-do-copy-or-rename-file): Correct data for 'file-already-exists.
6475 Don't call tramp-method-out-of-band-p for local files.
6476 (tramp-touch): Quote file name.
6477
6478 2006-10-28 Glenn Morris <rgm@gnu.org>
6479
6480 * calendar/calendar.el (cal-html-cursor-month)
6481 (cal-html-cursor-year): Add autoloads for this new package.
6482 (calendar-mode-map): Bind cal-html-cursor-month, cal-html-cursor-year.
6483
6484 2006-10-28 Anna M. Bigatti <bigatti@dima.unige.it>
6485
6486 * calendar/cal-html.el: New file.
6487
6488 2006-10-28 Chong Yidong <cyd@stupidchicken.com>
6489
6490 * emacs-lisp/authors.el (authors-aliases): Update.
6491
6492 2006-10-27 Chong Yidong <cyd@stupidchicken.com>
6493
6494 * version.el (emacs-version): Bump version number to 22.0.90.
6495
6496 2006-10-26 John W. Eaton <jwe@octave.org>
6497
6498 * progmodes/octave-inf.el (inferior-octave-has-built-in-variables):
6499 New defvar.
6500 (inferior-octave-resync-dirs): Check to see whether Octave has
6501 built-in variables and set inferior-octave-has-built-in-variables.
6502 Check inferior-octave-has-built-in-variables to decide whether to
6503 send commands that set built-in variables or call functions to
6504 change Octave's behavior.
6505 Send "disp (pwd ())" to Octave instead of just "pwd".
6506 (inferior-octave-startup): Send "more off" to Octave instead of
6507 "page_screen_output = 0".
6508
6509 2006-10-26 Chong Yidong <cyd@stupidchicken.com>
6510
6511 * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
6512 pattern normally.
6513
6514 2006-10-26 Nick Roberts <nickrob@snap.net.nz>
6515
6516 * bindings.el (mode-line-mode-menu): Remove bindings for global
6517 minor modes (line/column number) as they are on the menubar.
6518
6519 2006-10-25 Juanma Barranquero <lekktu@gmail.com>
6520
6521 * term/w32-win.el (x-handle-name-switch): Doc fix.
6522 (w32-standard-fontset-spec): Fix typo in docstring.
6523
6524 * midnight.el (midnight-buffer-display-time): Doc fix.
6525 (clean-buffer-list-kill-never-buffer-names): Add "*server*".
6526
6527 2006-10-23 Michael Kifer <kifer@cs.stonybrook.edu>
6528
6529 * viper-cmd.el (viper-prefix-arg-com): Define gg as G0.
6530
6531 * viper-ex.el (ex-read): Quote file argument.
6532
6533 * ediff-diff.el (ediff-same-file-contents): Expand file names.
6534
6535 * ediff-mult.el (ediff-append-custom-diff): Quote shell file arguments.
6536
6537 2006-10-22 Martin Rudalics <rudalics@gmx.at>
6538
6539 * textmodes/flyspell.el (flyspell-check-region-doublons):
6540 Fix last fix.
6541
6542 2006-10-23 Nick Roberts <nickrob@snap.net.nz>
6543
6544 * bindings.el (mode-line-mode-menu): List global minor modes
6545 before local ones.
6546
6547 2006-10-23 Kim F. Storm <storm@cua.dk>
6548
6549 * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'.
6550 (sit-for): If last command was a prefix arg, add the read-ahead
6551 event to unread-command-events as (t . EVENT) so it will be added
6552 to this-command-keys by read-key-sequence.
6553
6554 2006-10-22 Martin Rudalics <rudalics@gmx.at>
6555
6556 * textmodes/flyspell.el (flyspell-word): Skip past all previous
6557 whitespace when checking doublons.
6558 (flyspell-check-region-doublons): Fix doublon regexp.
6559 (flyspell-highlight-incorrect-region): Highlight doublons using
6560 flyspell-duplicate face.
6561
6562 * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom.
6563
6564 2006-10-22 John Wiegley <johnw@newartisans.com>
6565
6566 * progmodes/python.el (python-use-skeletons): python-mode was
6567 auto-inserting templates (for those with abbrev-mode on), not only
6568 by default -- *but without a configuration variable to disable
6569 it*. This rendered python-mode completely useless for me, so I
6570 have added `python-use-skeletons', which is now off by default.
6571
6572 2006-10-22 Chong Yidong <cyd@stupidchicken.com>
6573
6574 * progmodes/cperl-mode.el (cperl-mode): Don't assume
6575 font-lock-multiline is auto-local (it's not).
6576 (cperl-windowed-init): Ensure that cperl-font-lock-multiline is
6577 initialized before calling cperl-init-faces.
6578
6579 2006-10-22 Nick Roberts <nickrob@snap.net.nz>
6580
6581 * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give
6582 gdb-stack-position a value when there is no fringe.
6583
6584 * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode
6585 indicator if not visiting a file.
6586
6587 2006-10-20 David Kastrup <dak@gnu.org>
6588
6589 * window.el (kill-buffer-and-window): Fix a bug where an aborted
6590 operation would still cause some window to collapse later.
6591
6592 2006-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6593
6594 * vc.el (vc-switch-backend): Try to be more careful with unwanted
6595 side-effect due to mixing various backends's file properties.
6596
6597 * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'.
6598 Add arg `filename' instead. Don't set vc-backend if `filename' is set.
6599 Return `filename's status if applicable. Update callers.
6600
6601 2006-10-19 Kenichi Handa <handa@m17n.org>
6602
6603 * international/kkc.el (kkc-region): When a key sequence is not
6604 defined, append (this-single-command-raw-keys) to
6605 unread-input-method-events.
6606
6607 2006-10-19 Juanma Barranquero <lekktu@gmail.com>
6608
6609 * progmodes/ada-mode.el (ada-in-string-p): Doc fix.
6610
6611 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6612
6613 * version.el (emacs-version): Use mac-carbon-version-string.
6614
6615 * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el.
6616
6617 2006-10-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6618
6619 * select.el (ccl-check-utf-8, string-utf-8-p): New functions (by
6620 Kenichi Handa).
6621 (xselect-convert-to-string): Decline requests for UTF8_STRING if
6622 the selection is not UTF-8.
6623
6624 2006-10-18 Juanma Barranquero <lekktu@gmail.com>
6625
6626 * progmodes/ada-mode.el (ada-83-string-keywords)
6627 (ada-last-which-function-line ada-no-auto-case, ada-indent-region)
6628 (ada-which-compiler, ada-align-modes, ada-adjust-case-buffer)
6629 (ada-looking-at-semi-private, ada-get-body-name):
6630 Fix typos in docstrings.
6631 (ada-create-case-exception, ada-create-case-exception-substring):
6632 Fix typos in error messages.
6633 (ada-goto-matching-end, ada-narrow-to-defun): Doc fixes.
6634
6635 2006-10-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6636
6637 * term/x-win.el (res-geometry): Don't set geometry from Xresources
6638 to default-frame-alist if default-frame-alist already contains
6639 width/height.
6640
6641 2006-10-18 Richard Stallman <rms@gnu.org>
6642
6643 * emacs-lisp/pp.el (pp-eval-expression): Use `X' to read value.
6644 Non-interactive arg is the value, not the expression.
6645
6646 * simple.el (read-expression-map): Just set it, no defvar.
6647
6648 * subr.el (insert-for-yank-1): If last inserted char has
6649 properties, mark them as rear-nonsticky.
6650
6651 * recentf.el (recentf-mode): Doc fix.
6652
6653 * facemenu.el (facemenu-add-new-face): Defend against symbol
6654 that isn't a face name.
6655
6656 * dired-aux.el (dired-do-copy): Doc fix.
6657
6658 2006-10-18 Chong Yidong <cyd@stupidchicken.com>
6659
6660 * simple.el (line-move-1): Ignore fields when moving to the
6661 beginning of line to avoid getting point stuck.
6662
6663 2006-10-18 Martin Rudalics <rudalics@gmx.at>
6664
6665 * textmodes/flyspell.el (flyspell-word-search-backward):
6666 Set inhibit-point-motion-hooks to avoid looping due to intangibile
6667 text.
6668
6669 2006-10-16 Richard Stallman <rms@gnu.org>
6670
6671 * help-fns.el (describe-function-1): Special case optimization
6672 for self-insert-command.
6673
6674 2006-10-16 Kim F. Storm <storm@cua.dk>
6675
6676 * ido.el (ido-reread-directory): Work in `dir' mode too.
6677
6678 2006-10-15 Martin Rudalics <rudalics@gmx.at>
6679
6680 * textmodes/table.el: Require 'regexp-opt.
6681
6682 2006-10-15 Lennart Borgman <lennart.borgman.073@student.lu.se>
6683
6684 * progmodes/flymake.el (flymake-get-project-include-dirs-imp):
6685 Use shell-quote-argument.
6686
6687 * shell.el (explicit-bash-args): Likewise.
6688
6689 * progmodes/ada-xref.el (ada-find-in-src-path): Likewise.
6690 Use grep -E rather than egrep.
6691
6692 2006-10-15 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
6693
6694 * ido.el (ido-exhibit): Allow `-', `_', and trailing `$' in user id.
6695
6696 2006-10-15 Kim F. Storm <storm@cua.dk>
6697
6698 * filesets.el (filesets-run-cmd--repl-fn): Use shell-quote-argument.
6699
6700 2006-10-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
6701
6702 * filesets.el (filesets-cmd-shell-command): Quote buffer-file-name
6703 to protect whitespace and metacharacters from the shell.
6704
6705 2006-10-13 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6706
6707 * apropos.el (apropos-pattern-quoted): Fix a typo in a doc string.
6708
6709 2006-10-13 Eli Zaretskii <eliz@gnu.org>
6710
6711 * subr.el (start-process-shell-command): Doc fix.
6712
6713 2006-10-13 Andrea Russo <rastandy@salug.it> (tiny change)
6714
6715 * info-look.el <maxima-mode, inferior-maxima-mode>: Allow [0-9] in
6716 the regexp for Maxima symbols.
6717
6718 2006-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
6719
6720 * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom.
6721 (vc-find-root): Don't walk higher up than ~.
6722
6723 2006-10-12 Chong Yidong <cyd@stupidchicken.com>
6724
6725 * international/utf-8.el (utf-translate-cjk-load-tables):
6726 Avoid clobbering last-coding-system-used during load.
6727
6728 2006-10-12 Carsten Dominik <dominik@science.uva.nl>
6729
6730 * textmodes/reftex-global.el (reftex-create-tags-file):
6731 Quote file arguments.
6732
6733 2006-10-12 Richard Stallman <rms@gnu.org>
6734
6735 * files.el (file-name-history): Add defvar.
6736 (save-some-buffers-action-alist): Improve description strings.
6737
6738 2006-10-12 Andreas Schwab <schwab@suse.de>
6739
6740 * files.el (auto-mode-alist): Match change log file name also with
6741 a dash before a numeric extension.
6742
6743 2006-10-11 Ilya Zakharevich <ilyaz@cpan.org>
6744
6745 * progmodes/cperl-mode.el: Merge from upstream, upto version 5.22.
6746 After 5.0:
6747 (cperl-add-tags-recurse-noxs-fullpath): New function (for -batch mode).
6748
6749 After 5.1: Major edit. Summary of most visible changes:
6750
6751 - Multiple <<HERE per line allowed.
6752 - Handles multiline subroutine declaration headers (with comments).
6753 (The exception is `cperl-etags' - but it is not used in the rest
6754 of the mode.)
6755 - Fontifies multiline my/our declarations (even with comments,
6756 and with legacy `font-lock').
6757 - Major speedup of syntaxification, both immediate and postponed
6758 (3.5x to 15x [for different CPUs and versions of Emacs] on the
6759 huge real-life document I tested).
6760 - New bindings, edits to imenu.
6761 - "_" is made into word-char during fontification/syntaxification;
6762 some attempts to recognize non-word "_" during other operations too.
6763 - Detect bug in Emacs with `looking-at' inside `narrow' and bulk out.
6764 - autoload some more perldoc-related stuff
6765 - New convenience features: ISpell POD/HEREDOCs, narrow-to-HEREDOC.
6766 - Attempt to incorporate XEmacs edits which reached me.
6767
6768 Fine-grained changelog:
6769 (cperl-hook-after-change): New configuration variable.
6770 (cperl-vc-sccs-header): Likewise.
6771 (cperl-vc-sccs-header): Likewise.
6772 (cperl-vc-header-alist): Default via two preceding variables.
6773 (cperl-invalid-face): Remove double quoting under XEmacs
6774 (still needed under 21.2).
6775 (cperl-tips): Update URLs for resources.
6776 (cperl-problems): Likewise.
6777 (cperl-praise): Mention new features.
6778 New C-c key bindings: for `cperl-find-bad-style',
6779 `cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
6780 `cperl-perdoc', and `cperl-perldoc-at-point'.
6781 CPerl Mode menu changes: "Fix style by spaces", "Imenu on Perl Info"
6782 moved, new submenu of Tools with Ispell entries and narrowing.
6783 (cperl-after-sub-regexp): New defsubst.
6784 (cperl-imenu--function-name-regexp-perl): Use `cperl-after-sub-regexp'.
6785 Allows heads up to head4.
6786 Allow "package;".
6787 (defun-prompt-regexp): Use `cperl-after-sub-regexp'.
6788 (paren-backwards-message): ??? Something for XEmacs???
6789 (cperl-mode): Never auto-switch abbrev-mode off.
6790 Try to allow '_' be non-word char.
6791 Do not use `font-lock-unfontify-region-function' on XEmacs.
6792 Reset syntax cache on mode start.
6793 Support multiline facification (even on legacy `font-lock').
6794 (cperl-facemenu-add-face-function): ??? Some contributed code ???
6795 (cperl-after-change-function): Since `font-lock' and `lazy-lock'
6796 refuse to inform us whether the fontification is due to lazy
6797 calling or due to edit to a buffer, install our own hook
6798 (controlled by `cperl-hook-after-change').
6799 (cperl-electric-pod): =cut may have been recognized as start.
6800 (cperl-block-p): Move, updatedfor attributes.
6801 (cperl-calculate-indent): Try to allow '_' be non-word char
6802 Support subs with attributes.
6803 (cperl-where-am-i): Quiet (?) a warning.
6804 (cperl-cached-syntax-table): New function.
6805 (cperl-forward-re): Use `cperl-cached-syntax-table'.
6806 (cperl-unwind-to-safe): Recognize `syntax-type' property
6807 changing in a middle of line.
6808 (cperl-find-sub-attrs): New function.
6809 (cperl-find-pods-heres): Allow many <<EOP per line.
6810 Allow subs with attributes.
6811 Major speedups (3.5x..15x on a real-life test file nph-proxy.pl).
6812 Recognize "extproc " (OS/2) case-folded and only at start.
6813 /x on s///x with empty replacement was not recognized.
6814 Better comments.
6815 (cperl-after-block-p): Remarks on diff with `cperl-block-p'.
6816 Allow subs with attributes, labels.
6817 Do not confuse "else::foo" with "else".
6818 Minor optimizations...
6819 (cperl-after-expr-p): Try to allow '_' be non-word char.
6820 (cperl-fill-paragraph): Try to detect a major bug in Emacs
6821 with `looking-at' inside `narrow' and bulk out if found.
6822 (cperl-imenu--create-perl-index): Updates for new
6823 `cperl-imenu--function-name-regexp-perl'.
6824 (cperl-outline-level): Likewise.
6825 (cperl-init-faces): Allow multiline subroutine headers
6826 and my/our declarations, and ones with comments.
6827 Allow subroutine attributes.
6828 (cperl-imenu-on-info): Better docstring.
6829 (cperl-etags): Rudimentary support for attributes.
6830 Support for packages and "package;".
6831 (cperl-add-tags-recurse-noxs): Better (?) docstring.
6832 (cperl-add-tags-recurse-noxs-fullpath): Likewise.
6833 (cperl-tags-hier-init): Misprint for `fboundp' fixed.
6834 (cperl-not-bad-style-regexp): Try to allow '_' be non-word char.
6835 (cperl-perldoc): Add autoload.
6836 (cperl-perldoc-at-point): Likewise.
6837 (cperl-here-doc-spell): New function.
6838 (cperl-pod-spell): Likewise.
6839 (cperl-map-pods-heres): Likewise.
6840 (cperl-get-here-doc-region): Likewise.
6841 (cperl-font-lock-fontify-region-function): Likewise (backward
6842 compatibility for legacy `font-lock').
6843 (cperl-font-lock-unfontify-region-function): Fix style.
6844 (cperl-fontify-syntaxically): Recognize and optimize away deferred
6845 calls with no-change. Governed by `cperl-hook-after-change'.
6846 (cperl-fontify-update): Recognize that syntaxification region
6847 can be larger than fontification one.
6848 XXXX we leave `cperl-postpone' property, so this is quadratic...
6849 (cperl-fontify-update-bad): Temporary placeholder until
6850 it is clear how to implement `cperl-fontify-update'.
6851 (cperl-time-fontification): New function.
6852 (attrib-group): New text attribute.
6853 (multiline): New value: `syntax-type' text attribute.
6854
6855 After 5.2:
6856 (cperl-emulate-lazy-lock): New function.
6857 (cperl-fontify-syntaxically): Would skip large regions.
6858 Add `cperl-time-fontification', `cperl-emulate-lazy-lock' to menu.
6859 Some globals were declared, but uninitialized.
6860
6861 After 5.3, 5.4:
6862 (cperl-facemenu-add-face-function): Add docs, fix U<>.
6863 Copyright message updated.
6864 (cperl-init-faces): Work around a bug in `font-lock'. May slow
6865 facification down a bit.
6866 Misprint for my|our|local for old `font-lock'
6867 "our" was not fontified same as "my|local".
6868 Highlight variables after "my" etc even in
6869 a middle of an expression.
6870 Do not facify multiple variables after my etc
6871 unless parentheses are present.
6872
6873 After 5.5, 5.6
6874 (cperl-fontify-syntaxically): after-change hook could reset.
6875 (cperl-syntax-done-to) to a middle of line; unwind to BOL.
6876
6877 After 5.7:
6878 (cperl-init-faces): Allow highlighting of local ($/).
6879 (cperl-problems-old-emaxen): New variable (for the use of DOCSTRING).
6880 (cperl-problems): Remove fixed problems.
6881 (cperl-find-pods-heres): Recognize #-comments in m##x too.
6882 Recognize charclasses (unless delimiter is \).
6883 (cperl-fontify-syntaxically): Unwinding to safe was done in wrong order.
6884 (cperl-regexp-scan): Update docs.
6885 (cperl-beautify-regexp-piece): Use information got from regexp scan.
6886
6887 After 5.8:
6888 Major user visible changes:
6889 Recognition and fontification of character classes in RExen.
6890 Variable indentation of RExen according to groups.
6891
6892 (cperl-find-pods-heres): Recognize POSIX classes in REx charclasses.
6893 Fontify REx charclasses in variable-name face.
6894 Fontify POSIX charclasses in "type" face.
6895 Fontify unmatched "]" in function-name face.
6896 Mark first-char of HERE-doc as `front-sticky'.
6897 Reset `front-sticky' property when needed.
6898 (cperl-calculate-indent): Indents //x -RExen accordning to parens level.
6899 (cperl-to-comment-or-eol): Recognize ends of `syntax-type' constructs.
6900 (cperl-backward-to-noncomment): Recognize stringy `syntax-type'
6901 constructs. Support `narrow'ed buffers.
6902 (cperl-praise): Remove a reservation.
6903 (cperl-make-indent): New function.
6904 (cperl-indent-for-comment): Use `cperl-make-indent'.
6905 (cperl-indent-line): Likewise.
6906 (cperl-lineup): Likewise.
6907 (cperl-beautify-regexp-piece): Likewise.
6908 (cperl-contract-level): Likewise.
6909 (cperl-toggle-set-debug-unwind): New function.
6910 New menu entry for this.
6911 (fill-paragraph-function): Use when `boundp'.
6912 (cperl-calculate-indent): Take into account groups when indenting RExen.
6913 (cperl-to-comment-or-eol): Recognize # which end a string.
6914 (cperl-modify-syntax-type): Make only syntax-table property non-sticky.
6915 (cperl-fill-paragraph): Return t: needed for `fill-paragraph-function'.
6916 (cperl-fontify-syntaxically): More clear debugging message.
6917 (cperl-pod2man-build-command): Check (XEmacs) `Man-filter-list'.
6918 (cperl-init-faces): More complicated highlight even on XEmacs (new).
6919 Merge cosmetic changes from XEmacs.
6920
6921 After 5.9:
6922 (cperl-1+): Move to before the first use.
6923 (cperl-1-): Likewise.
6924
6925 After 5.10:
6926
6927 This code may lock Emacs hard!!! Use at your own risk!
6928
6929 (cperl-font-locking): New internal variable.
6930 (cperl-beginning-of-property): New function.
6931 (cperl-calculate-indent): Use `cperl-beginning-of-property'
6932 instead of `previous-single-property-change'.
6933 (cperl-unwind-to-safe): Likewise.
6934 (cperl-after-expr-p): Likewise.
6935 (cperl-get-here-doc-region): Likewise.
6936 (cperl-font-lock-fontify-region-function): Likewise.
6937 (cperl-to-comment-or-eol): Do not call `cperl-update-syntaxification'
6938 recursively.
6939 Bound `next-single-property-change' via `point-max'.
6940 (cperl-unwind-to-safe): Bound likewise
6941 (cperl-font-lock-fontify-region-function): Likewise.
6942 (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol'
6943 Initialization of `cperl-font-lock-multiline-start' could be
6944 missed if the "main" fontification did not run due to the
6945 keyword being already fontified.
6946 (cperl-pod-spell): Return t from do-one-chunk function.
6947 (cperl-map-pods-heres): Stop when the worker returns nil.
6948 Call `cperl-update-syntaxification'.
6949 (cperl-get-here-doc-region): Call `cperl-update-syntaxification'.
6950 (cperl-get-here-doc-delim): Remove unused function.
6951
6952 After 5.11:
6953
6954 The possible lockup of Emacs (introduced in 5.10) fixed.
6955
6956 (cperl-unwind-to-safe): `cperl-beginning-of-property' won't return nil.
6957 (cperl-syntaxify-for-menu): New customization variable.
6958 (cperl-select-this-pod-or-here-doc): New function.
6959 (cperl-get-here-doc-region): Extra argument.
6960 Do not adjust pos by 1.
6961
6962 New menu entries
6963 (Perl/Tools): Selection of current POD or HERE-DOC section.
6964 (Debugging CPerl:) backtrace on fontification.
6965
6966 After 5.12:
6967 (cperl-cached-syntax-table): Use `car-safe'.
6968 (cperl-forward-re): Remove spurious argument SET-ST.
6969 Add documentation.
6970 (cperl-forward-group-in-re): New function.
6971 (cperl-find-pods-heres): Find and highlight (?{}) blocks in RExen
6972 (XXXX Temporary (?) hack is to syntax-mark them as comment).
6973
6974 After 5.13:
6975 (cperl-string-syntax-table): Make { and } not-grouping
6976 (Sometimes they ARE grouping in RExen, but matching them would only
6977 confuse in many situations when they are not)
6978 (beginning-of-buffer): Replace two occurrences with goto-char...
6979 (cperl-calculate-indent): `char-after' could be nil...
6980 (cperl-find-pods-heres): REx can start after "[" too.
6981 Hightlight (??{}) in RExen too.
6982 (cperl-maybe-white-and-comment-rex): New constant
6983 (cperl-white-and-comment-rex): Likewise.
6984 XXXX Not very efficient, but hard to make
6985 better while keeping 1 group.
6986
6987 After 5.13:
6988 (cperl-find-pods-heres): $foo << identifier() is not a HERE-DOC.
6989 Likewise for 1 << identifier.
6990
6991 After 5.14:
6992 (cperl-find-pods-heres): Different logic for $foo .= <<EOF etc.
6993 Error-less condition-case could fail.
6994 (cperl-font-lock-fontify-region-function): Likewise.
6995 (cperl-init-faces): Likewise.
6996
6997 After 5.15:
6998 (cperl-find-pods-heres): Support property REx-part2.
6999 (cperl-calculate-indent): Likewise.
7000 Don't special-case REx with non-empty 1st line.
7001 (cperl-find-pods-heres): In RExen, highlight non-literal backslashes.
7002 Invert highlighting of charclasses:
7003 now the envelop is highlighted.
7004 Highlight many others 0-length builtins.
7005 (cperl-praise): Mention indenting and highlight in RExen.
7006
7007 After 5.15:
7008 (cperl-find-pods-heres): Highlight capturing parens in REx.
7009
7010 After 5.16:
7011 (cperl-find-pods-heres): Highlight '|' for alternation
7012 Initialize `font-lock-warning-face' if not present.
7013 (cperl-find-pods-heres): Use `font-lock-warning-face' instead of
7014 `font-lock-function-name-face'.
7015 (cperl-look-at-leading-count): Likewise.
7016 (cperl-find-pods-heres): Localize `font-lock-variable-name-face',
7017 `font-lock-keyword-face' (needed for
7018 batch processing), etc...
7019 Use `font-lock-builtin-face' for builtin in REx
7020 Now `font-lock-variable-name-face'
7021 is used for interpolated variables
7022 Use "talking aliases" for faces inside REx
7023 Highlight parts of REx (except in charclasses)
7024 according to the syntax and/or semantic
7025 Syntax-mark a {}-part of (?{}) as "comment"
7026 (it was the ()-part)
7027 Better logic to distinguish what is what in REx
7028 (cperl-tips-faces): Document REx highlighting
7029 (cperl-praise): Mention REx syntax highlight etc.
7030
7031 After 5.17:
7032 (cperl-find-sub-attrs): Would not always manage to print error message.
7033 (cperl-find-pods-heres): Localize `font-lock-constant-face'.
7034
7035 After 5.18:
7036 (cperl-find-pods-heres): Misprint in REx for parsing REx.
7037 Very minor optimization.
7038 `my-cperl-REx-modifiers-face' got quoted.
7039 Recognize "print $foo <<END" as HERE-doc.
7040 Put `REx-interpolated' text attribute if needed.
7041 (cperl-invert-if-unless-modifiers): New function.
7042 (cperl-backward-to-start-of-expr): Likewise.
7043 (cperl-forward-to-end-of-expr): Likewise.
7044 (cperl-invert-if-unless): Works in "the opposite way" too.
7045 Cursor position on return is on the switch-word.
7046 Indents comments better.
7047 (REx-interpolated): New text attribute.
7048 (cperl-next-interpolated-REx): New function.
7049 (cperl-next-interpolated-REx-0): Likewise.
7050 (cperl-next-interpolated-REx-1): Likewise.
7051 "\C-c\C-x", "\C-c\C-y", "\C-c\C-v": New keybinding for these functions.
7052 Perl/Regexp menu: 3 new entries for `cperl-next-interpolated-REx'.
7053 (cperl-praise): Mention finded interpolated RExen.
7054
7055 After 5.19:
7056 (cperl-init-faces): Highlight %$foo, @$foo too.
7057 (cperl-short-docs): Better docs for system, exec.
7058 (cperl-find-pods-heres): Better detect << after print {FH} <<EOF etc.
7059 Would not find HERE-doc ended by EOF without NL.
7060 (cperl-short-docs): Correct not-doubled \-escapes.
7061 start block: Put some `defvar' for stuff gone from XEmacs.
7062
7063 After 5.20:
7064 initial comment: Extend copyright, fix email address.
7065 (cperl-indent-comment-at-column-0): New customization variable.
7066 (cperl-comment-indent): Indentation after $#a would increasy by 1.
7067 (cperl-mode): Make `defun-prompt-regexp' grok BEGIN/END etc.
7068 (cperl-find-pods-heres): Mark CODE of s///e as `syntax-type' `multiline'
7069 (cperl-at-end-of-expr): Would fail if @BAR=12 follows after ";".
7070 (cperl-init-faces): If `cperl-highlight-variables-indiscriminately'
7071 highlight $ in $foo too (UNTESTED).
7072 (cperl-set-style): Docstring missed some available styles.
7073 toplevel: Menubar/Perl/Indent-Styles had FSF, now K&R.
7074 Change "Current" to "Memorize Current".
7075 (cperl-indent-wrt-brace): New customization variable; the default is
7076 as for pre-5.2 version.
7077 (cperl-styles-entries): Keep `cperl-extra-newline-before-brace-multiline'.
7078 (cperl-style-alist): Likewise.
7079 (cperl-fix-line-spacing): Support `cperl-merge-trailing-else' being nil,
7080 and `cperl-extra-newline-before-brace' etc
7081 being t
7082 (cperl-indent-exp): Plans B and C to find continuation blocks even
7083 if `cperl-extra-newline-before-brace' is t.
7084
7085 After 5.21:
7086 Improve some docstrings concerning indentation.
7087 (cperl-indent-rules-alist): New variable.
7088 (cperl-sniff-for-indent): New function name
7089 (separated from `cperl-calculate-indent').
7090 (cperl-calculate-indent): Separate the sniffer and the indenter;
7091 uses `cperl-sniff-for-indent' now.
7092 (cperl-comment-indent): Test for `cperl-indent-comment-at-column-0'
7093 was inverted;
7094 Support `comment-column' = 0.
7095
7096 2006-10-11 Martin Rudalics <rudalics@gmx.at>
7097
7098 * dnd.el (dnd-handle-one-url): Fix typo in doc-string.
7099 * help-at-pt.el (scan-buf-move-to-region): Likewise.
7100 * longlines.el (longlines-window-change-function): Likewise.
7101 * simple.el (undo-ask-before-discard): Likewise.
7102 * wid-edit.el (widget-field-prompt-internal)
7103 (widget-documentation-link-p): Likewise.
7104
7105 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7106
7107 * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
7108 for a keyword.
7109
7110 2006-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
7111
7112 * newcomment.el (comment-valid-prefix-p): Make the check
7113 more thorough. From an idea by Martin Rudalics <rudalics@gmx.at>.
7114 (comment-indent-new-line): Adjust call.
7115
7116 2006-10-09 Ken Manheimer <ken.manheimer@gmail.com>
7117
7118 * allout.el (allout-back-to-current-heading): Base on lower-level
7119 routines to get proper disqualification of aberrant topics.
7120
7121 2006-10-09 Richard Stallman <rms@gnu.org>
7122
7123 * textmodes/two-column.el (2C-two-columns): Doc fix.
7124
7125 2006-10-09 Kim F. Storm <storm@cua.dk>
7126
7127 * shell.el (explicit-csh-args, explicit-bash-args): Add comment
7128 about implicit use.
7129
7130 2006-10-08 Richard Stallman <rms@gnu.org>
7131
7132 * textmodes/two-column.el (2C-two-columns): Doc fix.
7133
7134 2006-10-08 Reiner Steib <Reiner.Steib@gmx.de>
7135
7136 * files.el: Mark `buffer-read-only' as safe-local-variable.
7137
7138 2006-10-08 Nick Roberts <nickrob@snap.net.nz>
7139
7140 * progmodes/gdb-ui.el (gdb-speedbar-expand-node):
7141 Burp if GUD buffer has been killed.
7142
7143 2006-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * completion.el (add-completions-from-c-buffer):
7146 Don't presume an error's second element is a string.
7147 Use looking-at rather than buffer-substring + member.
7148
7149 2006-10-07 Eli Zaretskii <eliz@gnu.org>
7150
7151 * mail/rmail.el (rmail-redecode-body): If the old encoding is
7152 `undecided', call find-coding-systems-region to find a proper
7153 non-trivial encoding.
7154 (rmail-mime-charset-pattern): Allow a TAB between "Content-Type"
7155 and "text/plain".
7156
7157 2006-10-07 Kevin Ryde <user42@zip.com.au>
7158
7159 * textmodes/reftex-vars.el (defgroup reftex): Update home page
7160 url-link.
7161
7162 * strokes.el (defgroup strokes): Remove invalid url-link.
7163
7164 2006-10-07 Magnus Henoch <mange@freemail.hu>
7165
7166 * autoinsert.el (auto-insert-alist): Doc fix.
7167
7168 2006-10-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
7169
7170 * mouse-sel.el (mouse-insert-selection-internal):
7171 Use insert-for-yank, so that yank handlers are run.
7172
7173 2006-10-07 Kim F. Storm <storm@cua.dk>
7174
7175 * ido.el (ido-file-extension-aux): Fix comparison.
7176
7177 2006-10-06 Kim F. Storm <storm@cua.dk>
7178
7179 * ido.el (ido-wide-find-dirs-or-files): Use shell-quote-argument.
7180
7181 2006-10-05 Juanma Barranquero <lekktu@gmail.com>
7182
7183 * emacs-lisp/advice.el (ad-remove-advice, ad-parse-arglist)
7184 (ad-make-mapped-call): Use `let', not `let*'.
7185
7186 2006-10-05 Chong Yidong <cyd@stupidchicken.com>
7187
7188 * international/mule-cmds.el (coding-system-change-eol-conversion):
7189 Ensure the coding system is initialized before calling
7190 coding-system-eol-type.
7191
7192 2006-10-04 Carsten Dominik <dominik@science.uva.nl>
7193
7194 * textmodes/org.el (org-rm-props, org-activate-plain-links)
7195 (org-activate-angle-links, org-activate-dates)
7196 (org-activate-target-links, org-activate-camels)
7197 (org-activate-tags): Add `rear-nonsticky' text property to avoid
7198 textproperty keymaps from being active beyond the end of a line.
7199 (org-unfontify-region): Also remove `rear-nonsticky' property.
7200
7201 2006-10-04 Kenichi Handa <handa@m17n.org>
7202
7203 * international/code-pages.el (next): Table fixed.
7204
7205 2006-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
7206
7207 * progmodes/sh-script.el (sh-prev-thing): Remove (forward-char 1) now
7208 that it's been made unnecessary by removing narrowing.
7209
7210 2006-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
7211
7212 * progmodes/sh-script.el (sh-prev-thing): Massage to untangle the
7213 control flow a bit, simplify another bit, and add comments.
7214
7215 2006-10-03 David Kastrup <dak@gnu.org>
7216
7217 * help.el (describe-mode): For clicks on mode-line, use "@"
7218 interactive argument to get the major mode of the click instead of
7219 the current buffer.
7220
7221 * isearch.el (isearch-mouse-2): Use new semantics of `key-binding'
7222 in order to better redirect mouse-2 clicks. Also allow default
7223 bindings to apply.
7224
7225 2006-10-03 Kim F. Storm <storm@cua.dk>
7226
7227 * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
7228 (pushnew): Fix last change.
7229
7230 2006-10-03 Denis St\e,A|\e(Bnkel <dstuenkel@googlemail.com> (tiny change)
7231
7232 * ibuf-ext.el (eval, view-and-eval) <define-ibuffer-op>:
7233 Use the interactive spec of `eval-expression'.
7234
7235 2006-10-02 Michael Welsh Duggan <md5i@cs.cmu.edu>
7236
7237 * progmodes/sh-script.el (sh-prev-thing): Fix last change.
7238
7239 2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
7240
7241 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
7242 2006-09-28 commit.
7243
7244 2006-10-02 Kenichi Handa <handa@m17n.org>
7245
7246 * international/code-pages.el (iso-8859-6): Table fixed.
7247
7248 2006-10-01 Chris Moore <christopher.ian.moore@gmail.com>
7249
7250 * dired.el (dired-build-subdir-alist): Fix previous change.
7251
7252 2006-10-01 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
7253
7254 * simple.el (undo-elt-crosses-region): Fix the inequalities.
7255
7256 2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
7257
7258 * emacs-lisp/find-func.el (find-function-regexp): Don't match
7259 "define-button-type".
7260
7261 * pcvs.el (cvs-update-header): Fix handling of extra newlines so that
7262 they don't keep accumulating.
7263
7264 2006-10-01 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
7265
7266 * ffap.el (ffap-rfc-path): Change the address of the RFC
7267 repository to ftp.rfc-editor.org, as ds.internic.net seems to be gone.
7268
7269 2006-10-01 Stephen Berman <Stephen.Berman@gmx.net>
7270
7271 * allout.el (allout-expose-topic): Rectify implementation of "+"
7272 spec, so that bodies are not exposed with headlines.
7273
7274 2006-10-01 Ken Manheimer <ken.manheimer@gmail.com>
7275
7276 * allout.el (allout-current-depth): Do aberrent check only at or
7277 below doublecheck depth.
7278 (allout-chart-subtree): Make it explicit that LEVELS being nil
7279 means unlimited depth. Drop undocumented support for LEVELS value
7280 t meaning unlimited depth. (This is consistent with
7281 allout-chart-to-reveal, but contrary to allout-show-children,
7282 which needs to use nil to default to depth of 1.)
7283 (allout-goto-prefix-doublechecked): Wrap long docstring line.
7284 (allout-chart-to-reveal): Be explicit in docstring about meaning
7285 of nil LEVELS, and drop support for LEVELS value t.
7286 (allout-show-children): Translate the level spec used by this
7287 routine to that used by allout-chart-subtree and
7288 allout-chart-to-reveal.
7289 (allout-show-to-offshoot): Retry once when stuck, after opening
7290 subtree - improvements in discontinuity handling likely will
7291 enable progress.
7292
7293 2006-09-30 Chong Yidong <cyd@stupidchicken.com>
7294
7295 * wid-edit.el (widget-button-click-moves-point): New variable.
7296 (widget-button-click): If widget-button-click-moves-point is
7297 non-nil, set point after performing the button action.
7298
7299 * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
7300
7301 2006-09-30 Martin Rudalics <rudalics@gmx.at>
7302
7303 * files.el (find-file-existing): Modify to not allow wildcards.
7304
7305 2006-09-30 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
7306
7307 * simple.el (undo-more): When undo information for the region is
7308 exhausted, say "No further undo information FOR REGION".
7309
7310 2006-09-30 Michael Welsh Duggan <md5i@cs.cmu.edu>
7311
7312 * progmodes/sh-script.el (sh-prev-thing):
7313 Take `sh-leading-keywords' into account.
7314
7315 2006-09-29 Glenn Morris <rgm@gnu.org>
7316
7317 * custom.el (defcustom): Doc fix.
7318
7319 * calendar/calendar.el (european-calendar-style):
7320 Call european-calendar or american-calendar as needed when set.
7321 (diary-view-entries, list-calendar-holidays): Move autoloads
7322 before use.
7323
7324 2006-09-29 Juri Linkov <juri@jurta.org>
7325
7326 * progmodes/cperl-mode.el (cperl-after-expr-p): Don't move point
7327 to nil if there is no previous property change.
7328
7329 2006-09-29 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
7330
7331 * cus-edit.el (custom-save-all): Switch to emacs-lisp mode before
7332 saving anything to be sure that `forward-sexp' behaves correctly.
7333
7334 2006-09-29 Chong Yidong <cyd@stupidchicken.com>
7335
7336 * simple.el (line-move-finish): Ignore field boundaries if the
7337 initial and final points have the same `field' property.
7338
7339 2006-09-29 Kim F. Storm <storm@cua.dk>
7340
7341 * ido.el (ido-file-internal): Only bind minibuffer-completing-file-name
7342 to t while calling ido-read-internal.
7343
7344 2006-09-29 Carsten Dominik <dominik@science.uva.nl>
7345
7346 * textmodes/org.el (org-file-remote-p): Get regexp from list.
7347 (org-archive-subtree): Remove erraneous `]' from character list.
7348
7349 2006-09-28 Jonathan Yavner <jyavner@member.fsf.org>
7350
7351 * ses.el (ses-in-print-area, ses-goto-data, ses-load)
7352 (ses-reconstruct-all): Make undo of "insert row" work by keeping
7353 markers for data-area and parameters-area.
7354
7355 2006-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
7356
7357 * progmodes/make-mode.el (makefile-mode): Don't disable jit-lock.
7358
7359 * font-lock.el (font-lock-after-change-function): Refontify next line
7360 as well if end is at BOL.
7361 (font-lock-extend-jit-lock-region-after-change): Be more careful to
7362 only extend the region as much as needed.
7363
7364 2006-09-28 Richard Stallman <rms@gnu.org>
7365
7366 * comint.el (comint-mode): Bind font-lock-defaults non-nil.
7367
7368 * subr.el (insert-for-yank-1): Handle `font-lock-face' specially.
7369
7370 * international/mule.el (after-insert-file-set-coding):
7371 If VISIT, don't let set-buffer-multibyte make undo info.
7372
7373 2006-09-28 Osamu Yamane <yamane@green.ocn.ne.jp> (tiny change)
7374
7375 * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
7376 lines in base64-encoded authentication response.
7377
7378 2006-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7379
7380 * progmode/ebnf2ps.el: Doc fix. Implement arrow spacing and scaling.
7381 (ebnf-version): New version 4.3.
7382 (ebnf-arrow-extra-width, ebnf-arrow-scale): New options.
7383 (ebnf-prologue): Adjust PostScript programming.
7384 (ebnf-begin-file, ebnf-insert-ebnf-prologue, ebnf-terminal-dimension1)
7385 (ebnf-repeat-dimension, ebnf-except-dimension): Adjust code.
7386
7387 2006-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
7388
7389 * jit-lock.el (jit-lock-force-redisplay): Rename from
7390 jit-lock-fontify-again, and undo the mistaken change I've just done.
7391
7392 * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
7393 (jit-lock-fontify-again): Don't refontify text that's not displayed.
7394
7395 2006-09-26 Kenichi Handa <handa@m17n.org>
7396
7397 * startup.el (display-splash-screen): Allow a prefix argument.
7398
7399 2006-09-25 Jason Rumney <jasonr@gnu.org>
7400
7401 * subr.el (shell-quote-argument): Use DOS logic for Windows
7402 shells with DOS semantics.
7403
7404 2006-09-24 Richard Stallman <rms@gnu.org>
7405
7406 * progmodes/compile.el (compilation-goto-locus-delete-o): New fn.
7407 (compilation-goto-locus): Use compilation-goto-locus-delete-o
7408 to delete the overlay. Put it on pre-command-hook.
7409
7410 * emacs-lisp/timer.el (timer-max-repeats): Doc fix.
7411
7412 * startup.el (fancy-splash-screens, normal-splash-screen):
7413 Call the splash buffer *About GNU Emacs*.
7414
7415 * simple.el (next-error-highlight, next-error-highlight-no-select):
7416 Default to 0.5.
7417 (yank-excluded-properties): Add `fontified'.
7418
7419 * font-lock.el (font-lock-compile-keywords): Allow value of
7420 syntax-begin-function to enable paren-column-0 highlighting.
7421
7422 2006-09-24 Chris Moore <christopher.ian.moore@gmail.com>
7423
7424 * dired.el (dired-build-subdir-alist): When file ends in colon,
7425 don't exit the loop, just disregard that file.
7426
7427 2006-09-24 Chong Yidong <cyd@stupidchicken.com>
7428
7429 * simple.el (line-move-finish): Handle corner case for fields in
7430 continued lines.
7431 (line-move-1): Remove flawed test for that case.
7432
7433 2006-09-24 Ken Manheimer <ken.manheimer@gmail.com>
7434
7435 * icomplete.el (icomplete-simple-completing-p): Use the correct
7436 name for the new variable, `icomplete-with-completion-tables'.
7437 (file local variables): Remove superfluous setting.
7438
7439 2006-09-23 Jeff Miller <jmiller@cablespeed.com> (tiny change)
7440
7441 * calendar/appt.el (appt-check): Fix typo for appointments just
7442 after midnight.
7443
7444 2006-09-23 Chong Yidong <cyd@stupidchicken.com>
7445
7446 * help.el (describe-key-briefly, describe-key): Don't expect an
7447 extra up event if a down-event is generated by a popup menu.
7448
7449 2006-09-23 Michal Nazarewicz <mnazarewicz@gmail.com> (tiny change)
7450
7451 * textmodes/ispell.el (ispell-change-dictionary): Don't check the
7452 local dictionary when changing the global dictionary.
7453
7454 2006-09-23 Ken Manheimer <ken.manheimer@gmail.com>
7455
7456 * icomplete.el (icomplete-with-completion-tables): List of
7457 specialized completion tables with which icomplete should
7458 operate. Include the new `internal-complete-buffer', so icomplete
7459 works with interactive buffer-selection.
7460 (icomplete-simple-completing-p): Add acceptance of specialized
7461 completion tables listed in icomplete-with-completion-tables.
7462
7463 2006-09-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7464
7465 * frame.el (focus-follows-mouse): Set default to nil on Mac.
7466
7467 * startup.el (command-line): Use `custom-reevaluate-setting' for
7468 `focus-follows-mouse'.
7469
7470 2006-09-22 Richard Stallman <rms@gnu.org>
7471
7472 * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
7473 explain why Save is not available.
7474
7475 2006-09-22 Juanma Barranquero <lekktu@gmail.com>
7476
7477 * woman.el (woman0-so): Use `let*', not `let'.
7478 (woman-horizontal-line): Remove unbalanced parenthesis.
7479
7480 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7481
7482 * woman.el: Make sure all the end-of-region markers we use have
7483 a non-nil insertion-type.
7484 (woman0-so): Move things around so we can use copy-marker.
7485 (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
7486 Adjust marker type.
7487 (woman2-process-escapes): Check marker type.
7488 (woman-horizontal-line): Dispense with the use of a marker.
7489
7490 2006-09-22 Jay Belanger <belanger@truman.edu>
7491
7492 * calc/calc-lang.el: Add Greek letters to math-variable-table
7493 property of tex.
7494
7495 2006-09-22 Chong Yidong <cyd@stupidchicken.com>
7496
7497 * files.el (save-some-buffers-action-alist): Display diff in view-mode.
7498
7499 2006-09-22 Masatake YAMATO <jet@gyve.org>
7500
7501 * add-log.el (add-log-current-defun): Use `forward-sexp'
7502 instead of `forward-word' to pick c++::symbol.
7503 Reported by Guanpeng Xu <herberteuler@hotmail.com>.
7504
7505 2006-09-22 Kenichi Handa <handa@m17n.org>
7506
7507 * bindings.el: Fix setting self-insert-command for multibyte
7508 characters in global-map.
7509
7510 2006-09-21 David Kastrup <dak@gnu.org>
7511
7512 * mouse.el (mouse-posn-property): Fix typo for `event-start' in
7513 doc string.
7514
7515 2006-09-21 Kenichi Handa <handa@m17n.org>
7516
7517 * language/european.el ("Latin-1"): Add windows-1252 to
7518 coding-priority.
7519 ("German"): Likewise.
7520
7521 2006-09-21 Kim F. Storm <storm@cua.dk>
7522
7523 * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
7524 Suggested by Miles Bader.
7525
7526 * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
7527 instead of add-to-list in the simple case.
7528
7529 2006-09-20 Kenichi Handa <handa@m17n.org>
7530
7531 * isearch.el (isearch-process-search-char): Cancel the previous change.
7532 (isearch-search-string): New function.
7533 (isearch-search): Use isearch-search-string.
7534 (isearch-lazy-highlight-search): Likewise.
7535
7536 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7537
7538 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of doc
7539 string to become an option.
7540
7541 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7542
7543 * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
7544
7545 2006-09-20 Kim F. Storm <storm@cua.dk>
7546
7547 * simple.el (line-move-partial): Call pos-visible-in-window-p with
7548 position t instead of trying both window-end and window-end - 1.
7549
7550 2006-09-20 Carsten Dominik <dominik@science.uva.nl>
7551
7552 * textmodes/org.el (org-scan-tags): Find end of subtrees also in
7553 hidden trees.
7554
7555 2006-09-20 David Kastrup <dak@gnu.org>
7556
7557 * mouse.el (mouse-posn-property): Improve doc string.
7558 (mouse-on-link-p): Change buffers for function calls on links.
7559
7560 * menu-bar.el (clipboard-yank): Bomb out in interactive use if
7561 buffer is read-only.
7562
7563 2006-09-20 Ken Manheimer <ken.manheimer@gmail.com>
7564
7565 * allout.el (allout-unprotected): Let inhibit-read-only only when
7566 buffer-read-only isn't set.
7567 (allout-annotate-hidden): Enable topic annotation during copies even
7568 when the buffer is read-only, eg for topic copies. Ensure that the loop
7569 advances, even when the span extends beyond the deletion region.
7570 (allout-toggle-subtree-encryption): Use allout-structure-added-hook
7571 rather than allout-exposure-changed-hook, as a stronger assertion.
7572 (allout-keybindings-list): Add bindings for
7573 allout-copy-line-as-kill and allout-copy-topic-as-kill.
7574 (allout-copy-line-as-kill, allout-copy-topic-as-kill):
7575 Copy wrappers for allout-kill-line and allout-kill-topic.
7576 (allout-listify-exposed): Position correctly to accumulate lines.
7577
7578 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
7579
7580 * simple.el (line-move-1): Escape field boundaries occurring
7581 exactly at point. Update goal column if constrained to a field.
7582 (line-move-finish): Escape field boundaries occurring exactly at point.
7583
7584 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7585
7586 * mouse.el (mouse-on-link-p): Tentatively fix last change.
7587 (mouse-drag-vertical-line): Remove unused var `wconfig'.
7588
7589 2006-09-19 Kim F. Storm <storm@cua.dk>
7590
7591 * help.el (describe-key-briefly, describe-key): Simplify printing
7592 of descriptions by using format and %S. Fix "is undefined"
7593 messages to say "at that spot" for mouse events.
7594
7595 * simple.el (line-move-partial): Optimize. Try window-line-height
7596 before posn-at-point to get vpos of current line.
7597
7598 2006-09-18 Michael Kifer <kifer@cs.stonybrook.edu>
7599
7600 * viper.el: Bump up version/date of update to reflect the substantial
7601 changes done in August 2006.
7602
7603 * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
7604 are defined.
7605
7606 * ediff-util.el (ediff-add-to-history): New function.
7607
7608 * ediff.el: Use ediff-add-to-history instead of add-to-history.
7609
7610 2006-09-18 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
7611
7612 * textmodes/conf-mode.el (conf-space-mode): Doc fix.
7613 Delete duplicate make-local-variable form.
7614 (conf-space-keywords): Add autoload cookie.
7615 Fix typo (`keywords', not `keyword').
7616
7617 2006-09-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7618
7619 * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
7620 x-gtk-file-dialog-help-text. Rename x-use-old-gtk-file-dialog
7621 to x-gtk-use-old-file-dialog.
7622
7623 2006-09-18 Richard Stallman <rms@gnu.org>
7624
7625 * wid-edit.el (widget-button-click): Handle non-mouse-motion events
7626 that might come in during mouse tracking.
7627
7628 2006-09-18 Kim F. Storm <storm@cua.dk>
7629
7630 * simple.el (line-move-partial): Rework 2006-09-15 change to use
7631 new window-line-height function. Further optimize by not calling
7632 pos-visible-in-window-p for window-end when window-line-height
7633 returns useful information.
7634
7635 2006-09-16 Richard Stallman <rms@gnu.org>
7636
7637 * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
7638 (conf-space-mode): Don't handle prefix arg.
7639 Delete conf-space-keywords-override code.
7640 Use add-hook.
7641 (conf-space-keywords): New command.
7642 (conf-space-mode-internal): Be careful with imenu-generic-expression.
7643 Delete conf-space-keywords-override code.
7644 (conf-space-keywords-alist): Doc fix.
7645 (conf-space-font-lock-keywords): Doc fix.
7646 (conf-space-keywords-override): Var deleted.
7647
7648 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
7649
7650 * startup.el (fancy-splash-screens): Don't switch to the scratch
7651 buffer; it may not be the next buffer.
7652
7653 2006-09-16 Romain Francoise <romain@orebokech.com>
7654
7655 * saveplace.el (load-save-place-alist-from-file): Use expanded name
7656 in both messages.
7657
7658 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se>
7659
7660 * progmodes/python.el (python-preoutput-filter):
7661 Fix arg order to string-match.
7662
7663 2006-09-16 Richard Stallman <rms@gnu.org>
7664
7665 * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
7666 font-lock-compile-keywords.
7667
7668 * font-lock.el (font-lock-compile-keywords): Rename optional arg
7669 to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed.
7670
7671 2006-09-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7672
7673 * cus-start.el (all): Add x-gtk-show-chooser-help-text.
7674
7675 * select.el (xselect-convert-to-string): If UTF8_STRING is requested
7676 and the data doesn't look like UTF8, send STRING instead.
7677
7678 2006-09-16 Agust\e,Am\e(Bn Mart\e,Am\e(Bn <agustin.martin@hispalinux.es>
7679
7680 * textmodes/flyspell.el (flyspell-check-region-doublons):
7681 New function to detect duplicated words.
7682 (flyspell-large-region): Use it.
7683
7684 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
7685
7686 * simple.el (line-move-to-column): Revert 2006-08-03 change.
7687
7688 2006-09-16 Eli Zaretskii <eliz@gnu.org>
7689
7690 * help.el (describe-prefix-bindings): Use let, not let*.
7691
7692 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
7693
7694 * allout.el (allout-regexp, allout-line-boundary-regexp)
7695 (allout-bob-regexp): Correct grouping and boundaries to fix
7696 backwards traversal.
7697 (allout-depth-specific-regexp, allout-depth-one-regexp):
7698 New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
7699 worse time in allout-ascend.
7700 (allout-doublecheck-at-and-shallower): Identify depth threshold
7701 below which topics are checked for and disqualified by containment
7702 discontinuities.
7703 (allout-hotspot-key-handler): Correctly handle multiple-key
7704 strokes. Remove some unused variables.
7705 (allout-mode-leaders): Clarify that mode-specific comment-start
7706 will be used.
7707 (set-allout-regexp): Correctly regexp-quote allout regexps to
7708 properly accept alternative header-leads and primary bullets with
7709 regexp-specific characters (eg, C "/*", mathematica "(*").
7710 Include new regular expressions among those configured.
7711 (allout-infer-header-lead-and-primary-bullet):
7712 Rename allout-infer-header-lead.
7713 (allout-recent-depth): Manifest as a variable as well as a function.
7714 (allout-prefix-data): Simplify into an inline instead of a macro,
7715 assuming current match data rather than being explicitly passed
7716 it. Establish allout-recent-depth value as well as
7717 allout-recent-prefix-beginning and allout-recent-prefix-end.
7718 (allout-aberrant-container-p): True when an item's immediate
7719 offspring discontinuously contained. Useful for disqualifying
7720 unintended topic prefixes, likely at low depths.
7721 (allout-goto-prefix-doublechecked): Elaborate version of
7722 allout-goto-prefix which disqualifies aberrant pseudo-items.
7723 (allout-pre-next-prefix): Layer on top of lower-level routines, to
7724 get disqualification of aberrant containers.
7725 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
7726 containers.
7727 (allout-beginning-of-current-entry): Position at start of buffer
7728 when in container (depth 0) entry.
7729 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
7730 (allout-current-bullet): Strip text properties.
7731 (allout-get-prefix-bullet): Use right match groups.
7732 (allout-beginning-of-line, allout-next-heading):
7733 Disqualify aberrant containers.
7734 (allout-previous-heading): Disqualify aberrant containers, and
7735 change to regular (rather than inline) function, to allow
7736 self-recursion.
7737 (allout-get-invisibility-overlay): Increment so progress is made
7738 when the first overlay is not the sought one.
7739 (allout-end-of-prefix): Disqualify aberrant containers.
7740 (allout-end-of-line): Cycle something like allout-beginning-of-line.
7741 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
7742 outline.el outlines) functional again. Change the primary bullet
7743 along with the header-lead - level 1 new-style bullets now work.
7744 Engage allout-before-change-handler in mainline Emacs, not just
7745 XEmacs, to do undo handling.
7746 (allout-before-change-handler): Expose undo changes occurring in
7747 hidden regions. Use allout-get-invisibility-overlay instead of
7748 reimplementing it inline.
7749 (allout-chart-subtree): Use start rather than end of prefix in
7750 charts. Use allout-recent-depth variable.
7751 (allout-chart-siblings): Disqualify aberrant topics.
7752 (allout-beginning-of-current-entry): Position correctly.
7753 (allout-ascend): Use new allout-depth-specific-regexp and
7754 allout-depth-one-regexp for linear instead of O(N^2) or worse
7755 behavior.
7756 (allout-ascend-to-depth): Depend on allout-ascend, rather than
7757 reimplementing an algorithm.
7758 (allout-up-current-level): Depend on allout-ascend, rather than
7759 reimplementing an algorithm. Return to start-point if we fail.
7760 (allout-descend-to-depth): Use allout-recent-depth variable
7761 instead of function.
7762 (allout-next-sibling): On traversal of numerous intervening
7763 topics, resort to economical allout-next-sibling-leap.
7764 (allout-next-sibling-leap): Specialized version of
7765 allout-next-sibling that uses allout-ascend cleverly, to depend on
7766 a regexp search to leap large numbers of contained topics, rather
7767 than arbitrarily many one-by-one traversals.
7768 (allout-next-visible-heading): Disqualify aberrant topics.
7769 (allout-previous-visible-heading): Position consistently when
7770 interactive.
7771 (allout-forward-current-level): Base on allout-previous-sibling
7772 rather than (differently) reimplmenting the algorithm. Remove some
7773 unused variables.
7774 (allout-solicit-alternate-bullet): Present default choice stripped
7775 of text properties.
7776 (allout-rebullet-heading): Use bullet stripped of text properties.
7777 Register changes using allout-exposure-change-hook.
7778 Disregard aberrant topics.
7779 (allout-shift-in): With universal-argument, make topic a peer of
7780 it's former offspring. Simplify the code by separating out
7781 allout-shift-out functionality.
7782 (allout-shift-out): With universal-argument, make offspring peers
7783 of their former container, and its siblings. Implement the
7784 functionality here, rather than inappropriately muddling the
7785 implementation of allout-shift-in.
7786 (allout-rebullet-topic): Respect additional argument for new
7787 parent-child separation function.
7788 (allout-yank-processing): Use allout-ascend directly.
7789 (allout-show-entry): Disqualify aberrant topics.
7790 (allout-show-children): Handle discontinuous children gracefully,
7791 extending the depth being revealed to expose them and posting a
7792 message indicating the situation.
7793 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
7794 Leave cursor in correct position.
7795 (allout-hide-current-subtree): Use allout-ascend directly.
7796 Disqualify aberrant topics.
7797 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
7798 a way that the yanks can restore it, as used to happen.
7799 (allout-yank-processing): Restore exposure layout as recorded by
7800 allout-kill-*, as used to happen.
7801 (allout-annotate-hidden, allout-hide-by-annotation): New routines
7802 for preseving and restoring exposure layout across kills.
7803 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
7804 (allout-encrypt-string): Strip text properties.
7805 Rearranged order and outline-headings for some of the
7806 miscellaneous functions.
7807 (allout-resolve-xref): No need to quote the error name in the
7808 condition-case handler section.
7809 (allout-flatten): Classic recursive (and recursively intensive,
7810 without tail-recursion) list-flattener, needed by allout-shift-out
7811 when confronted with discontinuous children.
7812
7813 2006-09-16 Jason Rumney <jasonr@gnu.org>
7814
7815 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
7816 on ms-windows.
7817 (dnd-open-unc-file): Remove.
7818 (dnd-open-local-file): Mention in doc string that it also handles
7819 remote files if the system natively supports unc file-names.
7820
7821 2006-09-15 Kim F. Storm <storm@cua.dk>
7822
7823 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
7824 all necessary information about the event before erasing *Help*.
7825
7826 * simple.el (line-move-partial): Use window-line-visiblity to
7827 quickly check whether last line is partially visible, and only do
7828 the hard (and slow) part in that case.
7829
7830 2006-09-15 Jay Belanger <belanger@truman.edu>
7831
7832 * COPYING: Replace "Library Public License" by "Lesser Public
7833 License" throughout.
7834
7835 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7836
7837 * term/x-win.el (x-menu-bar-open): New function for F10.
7838
7839 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
7840
7841 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7842 Disallow filenames containing " -" to avoid confusion with libtool
7843 compilation messages. Suggested by Stefan Monnier.
7844
7845 2006-09-15 David Kastrup <dak@gnu.org>
7846
7847 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
7848 instead of buffer position for `mouse-on-link-p'.
7849
7850 * mouse.el (mouse-posn-property): New function looking up the
7851 properties at a click position in overlays and text properties in
7852 either buffer or strings.
7853 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
7854 of both `follow-link' as well as `mouse-face' properties.
7855 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
7856 buffer position.
7857
7858 * help.el (describe-key-briefly): When reading a down-event on
7859 mode lines or scroll bar, swallow the following up event, too.
7860 Use the new mouse sensitity of `key-binding' for lookup.
7861 (describe-key): The same here.
7862
7863 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
7864
7865 * play/life.el (life-patterns): Add a few more interesting patterns.
7866 (life-setup): Force `show-trailing-whitespace' to nil.
7867
7868 2006-09-14 Richard Stallman <rms@gnu.org>
7869
7870 * startup.el (fancy-splash-text): Change text to improve alignment.
7871 (fancy-splash-screens): Don't set non-standard tab width.
7872 Bind cursor-type temporarily, and make it easy to patch to
7873 preserve the splash buffer.
7874 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
7875 (fancy-splash-screens): Display echo-area message explicitly.
7876 Don't set fancy-splash-help-echo.
7877
7878 * simple.el (line-number-mode): Group mode-line instead of
7879 editing-basics.
7880 (column-number-mode, size-indication-mode): Likewise.
7881
7882 * faces.el (mode-line-faces): Group mode-line instead of modeline.
7883
7884 * time.el (display-time): Group mode-line instead of modeline.
7885
7886 * cus-edit.el (mode-line): Rename from modeline. All uses changed.
7887
7888 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
7889
7890 * startup.el (fancy-splash-text): Move editing instructions to
7891 fancy-splash-head.
7892 (fancy-splash-head): Issue editing instructions.
7893 (fancy-splash-screens): Fixup whitespace.
7894
7895 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7896
7897 * bindings.el (mode-line-buffer-identification-keymap):
7898 Remove duplicate line.
7899
7900 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
7901
7902 * ido.el (ido-ignore-item-p): Allow any kind of functions in
7903 ignore lists.
7904
7905 2006-09-14 Kim F. Storm <storm@cua.dk>
7906
7907 * jit-lock.el (jit-lock-fontify-again): New function.
7908 (jit-lock-fontify-now): Use it instead of lambda form.
7909
7910 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
7911
7912 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
7913 (flyspell-auto-correct-word): Make ispell-filter local to these
7914 functions. Check that ispell-filter has new stuff before calling
7915 ispell-parse-output.
7916
7917 2006-09-13 Kim F. Storm <storm@cua.dk>
7918
7919 * simple.el (line-move-partial): Optimize.
7920
7921 2006-09-13 Richard Stallman <rms@gnu.org>
7922
7923 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
7924 Delete spurious backquote.
7925
7926 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
7927
7928 * net/rcirc.el (rcirc-print): Fix last change.
7929
7930 2006-09-12 Jay Belanger <belanger@truman.edu>
7931
7932 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
7933
7934 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
7935
7936 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
7937 rcirc-show-maximum-output.
7938 (rcirc-mode): Remove window-scroll-function hook.
7939 (rcirc-scroll-to-bottom): Remove function.
7940 (rcirc-print): Recenter so point stays at the bottom of the window
7941 if point was already there.
7942
7943 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7944
7945 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
7946 not to "t".
7947 * progmodes/compile.el (compilation-start): Likewise.
7948 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
7949 Don't use expand-file-name on invocation-directory, since this
7950 might mishandle special characters in invocation-directory.
7951
7952 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7953
7954 * pcvs-defs.el: Remove * in defcustom's docstrings.
7955
7956 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
7957
7958 * progmodes/compile.el (compilation-directory-properties):
7959 Doc fix for help-echo.
7960
7961 2006-09-12 Lars Hansen <larsh@soem.dk>
7962
7963 * desktop.el (desktop-read): Add comment.
7964
7965 2006-09-12 Kim F. Storm <storm@cua.dk>
7966
7967 * simple.el (next-error-highlight, next-error-highlight-no-select):
7968 Fix spelling error.
7969
7970 * subr.el (sit-for): Rework to use input-pending-p and cond.
7971 Return nil input is pending on entry also for SECONDS <= 0.
7972 (while-no-input): Use input-pending-p instead of sit-for.
7973
7974 2006-09-11 Richard Stallman <rms@gnu.org>
7975
7976 * simple.el (next-error-highlight, next-error-highlight-no-select):
7977 Fix custom type and doc strings.
7978
7979 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
7980
7981 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
7982 (diff-apply-hunk): Use it to ask for confirmation.
7983
7984 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
7985
7986 * emacs-lisp/cl.el (pushnew): Add missing `,'.
7987
7988 2006-09-11 David Kastrup <dak@gnu.org>
7989
7990 * help.el (string-key-binding, describe-key-briefly)
7991 (describe-key): Remove `string-key-binding' and its callers since
7992 `key-binding' already caters for the proper lookup now.
7993
7994 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
7995
7996 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
7997 (cfengine-mode): Use it. Fix \ syntax to be like /.
7998
7999 * bindings.el (mode-line-buffer-identification-keymap):
8000 Move initialization into declaration.
8001
8002 2006-09-10 Kim F. Storm <storm@cua.dk>
8003
8004 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
8005 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
8006 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
8007 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
8008
8009 2006-09-10 Richard Stallman <rms@gnu.org>
8010
8011 * dired-aux.el: Handle errors in recursive copy usefully.
8012 (dired-create-files-failures): New variable.
8013 (dired-copy-file): Remove condition-case.
8014 (dired-copy-file-recursive): Check for errors on all file
8015 operations, and add them to dired-create-files-failures.
8016 Check file file-date-erorr here too.
8017 (dired-create-files): Check dired-create-files-failures
8018 and report those errors too.
8019
8020 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
8021
8022 * subr.el (add-to-list): New argument COMPARE-FN.
8023
8024 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
8025
8026 * filecache.el (file-cache-add-directory)
8027 (file-cache-add-directory-list, file-cache-add-file)
8028 (file-cache-add-directory-using-find)
8029 (file-cache-add-directory-using-locate)
8030 (file-cache-add-directory-recursively): Add autoloads.
8031
8032 2006-09-09 Richard Stallman <rms@gnu.org>
8033
8034 * textmodes/conf-mode.el (conf-space-mode):
8035 Use hack-local-variables-hook instead of calling hack-local-variables.
8036 (conf-space-keywords-override): New variable.
8037 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
8038 (conf-space-mode): Always make conf-space-keywords and
8039 conf-space-keywords-override local.
8040 Call conf-space-mode-internal directly as well as via hook.
8041
8042 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
8043
8044 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
8045 quasi-keywords.
8046
8047 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
8048
8049 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
8050 (python-send-string): Be slightly more careful about adding \n.
8051
8052 * startup.el (normal-splash-screen): Don't display the buffer if we'll
8053 kill it right away anyway.
8054
8055 2006-09-09 Eli Zaretskii <eliz@gnu.org>
8056
8057 * international/codepage.el (cp850-decode-table): Fix a few codes.
8058 (cp858-decode-table): New variable.
8059
8060 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
8061
8062 * net/ldap.el (ldap-search-internal): Doc fix.
8063
8064 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
8065
8066 * play/life.el (life-display-generation): Test for input manually if
8067 `sleeptime' is negative or null.
8068
8069 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
8070 (print-region-1): Substitute `%s' with the page title.
8071
8072 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
8073
8074 * locate.el (locate-current-search): New variable.
8075 (locate): Set buffer local value. Use current buffer if it is
8076 in Locate mode.
8077 (locate-mode): Disable undo here.
8078 (locate-do-setup): Use locate-current-filter from buffer to be killed.
8079 (locate-update): Use locate-current-search and locate-current-filter.
8080
8081 2006-09-08 David Kastrup <dak@gnu.org>
8082
8083 * desktop.el (desktop-read): When loading a desktop, disable
8084 saving it while the load progresses, and switch off a pending lazy
8085 load by calling `desktop-lazy-abort'.
8086
8087 2006-08-27 Martin Rudalics <rudalics@gmx.at>
8088
8089 * window.el (mouse-autoselect-window-timer)
8090 (mouse-autoselect-window-position)
8091 (mouse-autoselect-window-window)
8092 (mouse-autoselect-window-now): New vars.
8093 (mouse-autoselect-window-cancel)
8094 (mouse-autoselect-window-select)
8095 (mouse-autoselect-window-start): New functions.
8096 (handle-select-window): Call `mouse-autoselect-window-start' when
8097 delayed window autoselection is enabled.
8098
8099 * cus-start.el (mouse-autoselect-window): Handle delayed window
8100 autoselection.
8101
8102 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
8103 commands after which it is allowed to print in the echo area.
8104
8105 2006-09-08 Richard Stallman <rms@gnu.org>
8106
8107 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
8108
8109 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
8110 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
8111
8112 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
8113 (cancel-timer-internal): Add doc string.
8114 (cancel-function-timers): Doc fix.
8115 (with-timeout-handler, timer-event-last*): Add doc strings.
8116
8117 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
8118
8119 * files.el (risky-local-variable-p): Match ...-bindat-spec.
8120
8121 * dired.el (dired-log-summary): Add doc string.
8122
8123 * cus-edit.el (custom-menu-create): Bind deactivate-mark here.
8124 (custom-group-menu-create): Not here.
8125
8126 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
8127
8128 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
8129
8130 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8131
8132 * term/mac-win.el (show-hide-font-panel): New HI command ID symbol.
8133 (mac-apple-event-map): Define its handler.
8134
8135 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
8136
8137 * net/ldap.el (ldap-search-internal): Handle `auth' key.
8138
8139 2006-09-07 Magnus Henoch <mange@freemail.hu>
8140
8141 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
8142 clause.
8143
8144 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
8145
8146 * info.el (Info-index): Bind completion-ignore-case.
8147
8148 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
8149
8150 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
8151 previous commit.
8152 (inferior-prolog-guess-flavor): New fun left out of previous commit.
8153 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
8154 burp in dedicated windows.
8155 (inferior-prolog-self-insert-command): New command.
8156 (inferior-prolog-mode-map): Use it.
8157
8158 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
8159
8160 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
8161
8162 * international/code-pages.el: Add cp858.
8163
8164 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8165
8166 * dnd.el: Fix bootstrapping.
8167
8168 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8169
8170 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
8171 (dnd-open-remote-url): New function.
8172 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
8173 not windows-nt.
8174
8175 2006-09-07 Jason Rumney <jasonr@gnu.org>
8176
8177 * dnd.el (dnd-open-remote-file-function): New variable.
8178 (dnd-open-unc-file): New function.
8179 (dnd-open-file): Call dnd-open-remote-file-function if set.
8180
8181 2006-09-06 Daiki Ueno <ueno@unixuser.org>
8182
8183 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
8184 pgg-passphrase-coding-system rather than locale-coding-system.
8185 * pgg-def.el (pgg-passphrase-coding-system): New user option.
8186
8187 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
8188
8189 * progmodes/prolog.el: Remove * in docstrings.
8190 (prolog-program-name): Add SWI prolog.
8191 (prolog-mode-menu): New menu.
8192 (prolog-mode): Set comment-add.
8193 (prolog-indent-line): Simplify. Use indent-line-to.
8194 (inferior-prolog-buffer): New var.
8195 (inferior-prolog-run, inferior-prolog-process): New funs.
8196 (run-prolog, switch-to-prolog): Rewrite, using them.
8197 (prolog-consult-region): Use inferior-prolog-buffer.
8198 (inferior-prolog-load-file): New function.
8199 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
8200
8201 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
8202 last word, if it's not the end of the paragraph.
8203
8204 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
8205 file name.
8206
8207 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
8208
8209 * frame.el (display-mm-dimensions-alist): New defcustom.
8210 (display-mm-height, display-mm-width): Use it.
8211
8212 2006-09-06 Simon Josefsson <jas@extundo.com>
8213
8214 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
8215
8216 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
8217
8218 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
8219 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
8220 string values.
8221
8222 2006-09-06 Kim F. Storm <storm@cua.dk>
8223
8224 * simple.el (line-move-partial): New function to do vscrolling for
8225 partially visible images / tall lines. Rewrite based on code
8226 previously in line-move. Simplify backwards vscrolling.
8227 (line-move): Use it. Simplify.
8228
8229 2006-09-05 Kim F. Storm <storm@cua.dk>
8230
8231 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
8232
8233 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
8234
8235 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8236 Process the `gcc-include' after the `gnu' rule.
8237
8238 2006-09-05 Kim F. Storm <storm@cua.dk>
8239
8240 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
8241
8242 2006-09-05 Daiki Ueno <ueno@unixuser.org>
8243
8244 * pgg.el (pgg-clear-string): Alias to clear-string for backward
8245 compatibility.
8246
8247 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
8248 inhibit-redisplay; encode passphrase with locale-coding-system.
8249
8250 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
8251
8252 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
8253
8254 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
8255
8256 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
8257 (gdb-var-list-children-regexp): Make type field optional.
8258
8259 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
8260 e.g public, protected in C++.
8261
8262 2006-09-04 John Paul Wallington <jpw@pobox.com>
8263
8264 * simple.el (completion-show-help): New defcustom.
8265 (completion-setup-function): Heed it.
8266
8267 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
8268
8269 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
8270
8271 2006-09-04 Richard Stallman <rms@gnu.org>
8272
8273 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
8274 (rsf-min-region-to-spam-list): Doc fix.
8275 (rsf-add-content-type-field): Doc fix.
8276
8277 * simple.el (kill-region): Explicitly test there is a region.
8278
8279 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
8280
8281 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
8282 sendmail in several common directories.
8283
8284 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
8285
8286 * paths.el (sendmail-program): Removed.
8287
8288 2006-09-04 Daiki Ueno <ueno@unixuser.org>
8289
8290 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
8291 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
8292 http://article.gmane.org/gmane.emacs.gnus.general/50457
8293
8294 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
8295
8296 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
8297 mark after running the menu filter.
8298
8299 2006-09-03 Juri Linkov <juri@jurta.org>
8300
8301 * international/quail.el (quail-defrule-internal): Add a check
8302 if a key is a vector.
8303
8304 2006-09-02 Juri Linkov <juri@jurta.org>
8305
8306 * man.el (Man-topic-history): New variable.
8307 (man): Use it.
8308
8309 * woman.el (woman-topic-history): Change defvar to defvaralias
8310 for symbol `Man-topic-history'.
8311
8312 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
8313 `comint-last-output-start' is a marker by using `markerp' and
8314 check if it has a position by using `marker-position', and use
8315 this position for `goto-char'.
8316
8317 * international/quail.el (quail-defrule-internal): Add missing
8318 `error' call for null key.
8319
8320 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
8321
8322 * rcirc.el (rcirc-keywords): New variable.
8323 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
8324 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
8325 variables.
8326 (rcirc-responses-no-activity): New function.
8327 (rcirc-handler-generic): Check for responses in above.
8328 (rcirc-process-command): Add ?: character to arguments of raw
8329 server commands.
8330 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
8331 `rcirc-dim-nicks'.
8332 (rcirc-gray-toggle): Remove unused variable.
8333 (rcirc-print): Remove some tracking logic, which is moved into
8334 markup functions.
8335 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
8336 types.
8337 (rcirc-activity-string): Look for 'keyword in activity-types.
8338 (rcirc-window-configuration-change): Don't erase overlay-arrow
8339 unnecessarily.
8340 (rcirc-add-or-remove): New function.
8341 (rcirc-cmd-ignore): Use it.
8342 (rcirc-message-leader): Remove unused function.
8343 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
8344 (rcirc-add-face): New function.
8345 (rcirc-facify): Use rcirc-add-face.
8346 (rcirc-url-regexp): Add parens.
8347 (rcirc-map-regexp): Remove function.
8348 (rcirc-mangle-regexp): Remove function.
8349 (rcirc-markup-text-functions): New variable.
8350 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
8351 (rcirc-markup-body-text, rcirc-markup-attributes)
8352 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
8353 (rcirc-markup-bright-nicks): New markup handler functions.
8354 (rcirc-nick-in-message-full-line): New face.
8355 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
8356 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
8357
8358 2006-09-02 Martin Rudalics <rudalics@gmx.at>
8359
8360 * cus-start.el (hscroll-margin, hscroll-step)
8361 (mode-line-in-non-selected-windows, mouse-autoselect-window)
8362 (x-use-underline-position-properties): Change version to "22.1"
8363 since they will appear there for the first time.
8364
8365 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
8366
8367 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
8368
8369 2006-08-31 Richard Stallman <rms@gnu.org>
8370
8371 * cus-edit.el (custom-save-variables): Slight cleanup.
8372 (Custom-no-edit): Renamed from custom-no-edit.
8373 (Custom-newline): Renamed from custom-newline.
8374 (custom-mode-map): Use new names.
8375
8376 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
8377 about customization, rather than M-x customize, in the doc string
8378 made for the defcustom.
8379
8380 * emacs-lisp/trace.el (trace-function-background): Doc fix.
8381
8382 2006-08-31 Romain Francoise <romain@orebokech.com>
8383
8384 * dired-x.el (dired-guess-shell-alist-default): Update.
8385
8386 2006-08-31 Michael Mauger <mmaug@yahoo.com>
8387
8388 * custom.el (custom-theme-set-variables): Autoload packages before
8389 sorting the variables.
8390
8391 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
8392
8393 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
8394 chars if XEmacs.
8395 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
8396
8397 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
8398
8399 * progmodes/python.el (python-eldoc-function): Re-enable quit while
8400 waiting for process.
8401
8402 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8403
8404 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
8405 results in ASCII-only string, encode original one directly.
8406
8407 2006-08-29 Romain Francoise <romain@orebokech.com>
8408
8409 * startup.el (normal-splash-screen, fancy-splash-screens):
8410 Make buffer read-only and arrange to enter view mode if necessary.
8411
8412 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
8413
8414 * hl-line.el (hl-line): New face.
8415 (hl-line-face): Use it.
8416
8417 * image-mode.el (image-mode): Fix last fix.
8418 Suggested by Kim F. Storm.
8419
8420 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
8421
8422 Sync with Tramp 2.0.54.
8423
8424 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
8425 of `=', because `tramp-get-remote-gid' might not always return an
8426 integer when expected.
8427 (tramp-register-file-name-handlers): `partial-completion-mode' is
8428 unknown to XEmacs.
8429 (tramp-time-diff): Don't use `floor', it might fail for large
8430 differences.
8431 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
8432 `tramp-auto-save-directory' if unset in order to guarantee unique
8433 auto-save file names.
8434
8435 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
8436
8437 * image-mode.el (image-mode): Display image as text on a terminal.
8438
8439 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * progmodes/python.el (python-send-command): Simplify.
8442 (run-python): Don't generate a new buffer unless `new' was specified.
8443 Make sure we send `import emacs' to the proper process.
8444
8445 * progmodes/python.el (python-send-command): Don't wait for the command
8446 to terminate. Don't fiddle with compilation-parsing-end.
8447
8448 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
8449
8450 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
8451 Insert commentary after first line summary.
8452
8453 * woman.el (woman-follow): New function, based on `man-follow'.
8454 (woman-mode-map): Use it.
8455
8456 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
8457 since ibuffer-do-sort-by-recency does not define a sorter.
8458
8459 2006-08-28 Kim F. Storm <storm@cua.dk>
8460
8461 * find-dired.el (find-dired): Use shell-quote-argument to properly
8462 escape ( and ) args. Also use it on {} and ; args in default
8463 value of find-ls-option string.
8464 (find-grep-dired): Use shell-quote-argument on {} and ; args.
8465
8466 2006-08-27 Michael Olson <mwolson@gnu.org>
8467
8468 * emacs-lisp/tq.el: Small grammar fix in comments.
8469 (tq-enqueue): Check for existence of queue rather than the
8470 head queue item's question, which was a no-op.
8471 (tq-filter, tq-process-buffer): Make sure the process buffer
8472 exists before making it the current buffer.
8473
8474 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8475
8476 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
8477 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
8478 (special-event-map): Apply 2006-08-16 change for x-win.el.
8479
8480 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
8481
8482 * progmodes/python.el (python-send-receive): Wait in the
8483 process's buffer so as to check the right buffer-local variables.
8484
8485 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
8486
8487 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
8488 (defgroup checkdoc): Move to beginning.
8489
8490 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
8491 (python-preoutput-continuation): Remove.
8492 (python-preoutput-filter): Simplify correspondingly.
8493 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
8494 Loop around to catch embedded _emacs_out output.
8495 (run-python): Send the import&print command on a single line.
8496 (python-send-command): Send command&print on a single line.
8497 (python-send-string): Only add double \n if needed.
8498 (python-send-receive): Loop until the result comes.
8499 (python-mode-running): Defvar it.
8500 (python-setup-brm): Remove unused var `menu'.
8501 Only bind py-mode-map and `features' around brm-init.
8502 (python-calculate-indentation): Remove unused var `point'.
8503 (python-beginning-of-defun): Remove unused var `def-line'.
8504
8505 2006-08-25 Richard Stallman <rms@gnu.org>
8506
8507 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
8508
8509 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
8510
8511 * viper.el (viper-set-hooks): Use frame bindings for
8512 viper-vi-state-cursor-color.
8513 (viper-non-hook-settings): Don't set default
8514 mode-line-buffer-identification.
8515
8516 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
8517 (viper-set-cursor-color-according-to-state)
8518 (viper-get-saved-cursor-color-in-replace-mode)
8519 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
8520 viper-emacs-state-cursor-color.
8521
8522 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
8523 (viper-undo): Use point if undo-beg-posn is nil.
8524 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
8525 (viper-after-change-undo-hook): Don't use
8526 viper-emacs-state-cursor-color by default.
8527 (viper-undo): More sensible positioning after undo.
8528
8529 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
8530 (viper-emacs-state-cursor-color): Default to nil, since this feature
8531 doesn't work well yet.
8532
8533 * ediff-mult.el (ediff-intersect-directories)
8534 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
8535 always expand filenames.
8536
8537 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
8538
8539 * tumme.el: Remove * in defcustoms's docstrings.
8540
8541 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
8542
8543 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
8544 Accept internal time format for SECS arg.
8545 (timer-relative-time): Doc fix.
8546
8547 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
8548 adapted from Martin Rudalics.
8549 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
8550 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
8551 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
8552 using sit-for.
8553
8554 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
8555
8556 * cus-start.el (all): Add `overline-margin' and
8557 `x-underline-at-descent-line'.
8558
8559 2006-08-24 Kim F. Storm <storm@cua.dk>
8560
8561 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
8562 to mean "use find -exec"; nil now unambiguously means auto-detect.
8563 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
8564 Use shell-quote-argument to build grep-find-command and
8565 grep-find-template.
8566 (rgrep): Use shell-quote-argument to properly quote arguments to find.
8567 Reported by Tom Seddon.
8568
8569 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
8570
8571 * startup.el (fancy-splash-head): Give instructions for dismissing
8572 the splash screen for default startup too.
8573 (display-startup-echo-area-message, fancy-splash-screens)
8574 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
8575 all splash text at once and keep the splash buffer around.
8576 (command-line-1): Give display-startup-echo-area-message a t arg.
8577
8578 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
8579
8580 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
8581 gnus frame is selected.
8582
8583 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
8584
8585 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
8586
8587 2006-08-22 Kim F. Storm <storm@cua.dk>
8588
8589 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
8590 Add suffix matching for subdirs.
8591
8592 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
8593
8594 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
8595 mouse-yank-at-point is non-nil.
8596
8597 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
8598
8599 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
8600 a bit wider and remove fringes to fit initial output on line.
8601
8602 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8603
8604 * frame.el (blink-cursor-end): Only ignore the error we care about.
8605 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
8606
8607 2006-08-21 Richard Stallman <rms@gnu.org>
8608
8609 * whitespace.el (whitespace-cleanup): Doc fix.
8610
8611 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
8612
8613 * net/rcirc.el (rcirc-show-maximum-output): New var.
8614 (rcirc-buffer-process): If no buffer argument is supplied, use
8615 current-buffer.
8616 (rcirc-complete-nick): Complete to the last completed nick first.
8617 (rcirc-mode): Preserve the value of `rcirc-urls' across
8618 connections. Setup scroll function.
8619 (rcirc-scroll-to-bottom): New function.
8620 (rcirc-print): Use nick syntax around regexp work.
8621 Notice dim-nicks speaking only if they say our nick.
8622 (rcirc-update-activity-string): Do not show the modeline indicator
8623 if there are no live rcirc processes.
8624 (rcirc-cmd-ignore): Ignore case.
8625 (rcirc-browse-url-at-point): Fix off-by-one error.
8626
8627 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
8628
8629 * progmodes/python.el: Remove * in defcustom docstrings.
8630 (run-python, python-proc, python-try-complete): Use derived-mode-p.
8631 (python-mode): Set tab-width and indent-tabs-mode.
8632
8633 2006-08-20 Dave Love <fx@gnu.org>
8634
8635 * progmodes/python.el: Update to Dave Love's latest version.
8636 (python-font-lock-keywords, python-mode): Don't use
8637 font-lock-syntax-table, but match symbol elements explicitly instead.
8638 (python-mode-map): Add help, and a few more key bindings.
8639 (python-skip-comments/blanks): Move out of comments as well.
8640 (python-continuation-line-p): Behave better with unbalanced parens.
8641 (python-blank-line-p): New fun.
8642 (python-open-block-statement-p): Don't use a heuristic.
8643 (python-outdent-p): Better handle blocks-in-the-same-line.
8644 (python-calculate-indentation): Misc improvements.
8645 (python-comment-indent): Remove.
8646 (python-block-pairs): New var.
8647 (python-first-word): New fun.
8648 (python-indentation-levels): Handle more common cases.
8649 (python-indent-line-1): Add `leave' argument.
8650 (python-indent-region): New fun.
8651 (python-skip-out): New fun.
8652 (python-beginning-of-statement, python-end-of-statement): Use it.
8653 (python-next-statement): Return correct count even at eob.
8654 (python-end-of-block): Fix paren-typo.
8655 (python-imenu-create-index): Add module variables.
8656 (run-python): Add `new' arg.
8657 Check we're at a prompt before returning.
8658 (python-send-command): Move to end of buffer.
8659 Wait for prompt to return.
8660 (python-set-proc): New fun.
8661 (python-imports): New var.
8662 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
8663 (python-eldoc-function): Try to move out of arg list.
8664 (python-outline-level): Offset by 1.
8665 (python-find-imports): New fun.
8666 (python-symbol-completions): Use python-imports.
8667 (python-module-path, ffap-alist): Add support for ffap.
8668 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
8669 (python-insert-*, python-default-template, python-expand-template):
8670 Add templates/skeletons.
8671 (python-setup-brm): Support for Bicycle Repair Man.
8672 (python-abbrev-syntax-table): New var.
8673 (python-abbrev-pc-hook, python-pea-hook): New funs.
8674
8675 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
8676
8677 * frame.el (blink-cursor-start): Set timer first.
8678 (blink-cursor-end): Ignore timer cancelling errors.
8679 Suggested by Ken Manheimer.
8680
8681 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
8682
8683 * newcomment.el (comment-box): Call `comment-normalize-vars'.
8684 Add autoload cookie.
8685
8686 2006-08-20 Richard Stallman <rms@gnu.org>
8687
8688 * simple.el (line-number-at-pos): Doc fix.
8689
8690 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
8691 timer-activate-when-idle, so timer can run before Emacs becomes
8692 non-idle again.
8693
8694 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
8695
8696 * whitespace.el (whitespace-cleanup-internal): New optional arg
8697 REGION-ONLY. If it's non-nil, modify the message to the user
8698 accordingly.
8699 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
8700 a non-nil argument.
8701
8702 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
8703
8704 * rect.el (spaces-string): Simplify and add doc string.
8705
8706 2006-08-17 Romain Francoise <romain@orebokech.com>
8707
8708 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
8709
8710 2006-08-17 Richard Stallman <rms@gnu.org>
8711
8712 * compare-w.el (compare-windows): lambda's take an arg and pass
8713 it to compare-windows-skip-whitespace.
8714
8715 2006-08-17 Martin Rudalics <rudalics@gmx.at>
8716
8717 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
8718 the right buffer.
8719
8720 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
8721
8722 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
8723 removed files.
8724
8725 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
8726
8727 * progmodes/gdb-ui.el (gdb-locals-watch-map)
8728 (gdb-locals-watch-map-1): Suppress keymap first.
8729 (gdb-edit-locals-map-1): New variable.
8730 (gdb-edit-locals-value): New function.
8731 (gdb-stack-list-locals-handler): Use them.
8732
8733 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
8736 cursor would normally be drawn in the fringe.
8737
8738 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
8739 Reported by Martin Rudalics <rudalics@gmx.at>.
8740
8741 2006-08-16 Richard Stallman <rms@gnu.org>
8742
8743 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
8744 (special-event-map): Process drag-n-drop events this way.
8745
8746 * simple.el (move-beginning-of-line): Test whether fields
8747 would prevent motion back to line's first visible character.
8748 If so, stop where the fields would stop the motion.
8749
8750 * newcomment.el (comment-indent): Fully update INDENT
8751 before checking to see if it will change the text.
8752
8753 * cus-edit.el (custom-newline): New function.
8754 (custom-mode-map): Bind newline to custom-newline.
8755
8756 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
8757 into ignore-whitespace.
8758 Check each buffer for its skip-function.
8759 Handle compare-windows-skip-whitespace special-case test
8760 by returning t from default skip function.
8761
8762 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
8763
8764 * textmodes/org.el (org-clock-special-range)
8765 (org-clock-update-time-maybe): New functions.
8766 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
8767 not only a-z.
8768 (org-agenda-get-blocks): Allow multiple blocks per headline.
8769 (org-timestamp-change): Call `org-clock-update-time-maybe'.
8770 (org-export-html-title-format)
8771 (org-export-html-toplevel-hlevel): New options.
8772 (org-export-language-setup): Add support for Czech.
8773 (org-mode, org-insert-todo-heading, org-find-visible)
8774 (org-find-invisible, org-invisible-p, org-invisible-p2)
8775 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
8776 (org-show-subtree, org-show-entry, org-make-options-regexp):
8777 Remove compatibility support for old outline-mode.
8778 (org-check-occur-regexp): Funtion removed.
8779 (org-on-heading-p, org-back-to-heading): Made defalias.
8780 (org-set-local): New defsubst.
8781 (org-set-regexps-and-options, org-mode)
8782 (org-set-font-lock-defaults, org-edit-agenda-file-list)
8783 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
8784 (org-remember-apply-template, org-table-edit-field)
8785 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
8786 (org-set-autofill-regexps): Use `org-set-local'.
8787 (org-table-eval-formula): Fix bug with parsing of display flags.
8788
8789 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
8790
8791 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
8792 frame with fringe arrow. Suggested by Simon Marshall
8793 <simon.marshall@misys.com>.
8794 (gdb-stack-position): New variable.
8795 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
8796 (gdb-frames-mode): Set gdb-stack-position to nil.
8797 Add to overlay-arrow-variable-list
8798 (gdb-reset): Delete gdb-stack-position from above list.
8799
8800 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8801
8802 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
8803 read only.
8804
8805 2006-08-13 Romain Francoise <romain@orebokech.com>
8806
8807 * cus-theme.el (customize-create-theme)
8808 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
8809
8810 * filesets.el (filesets-add-buffer): Ditto.
8811
8812 * pcvs.el (cvs-change-cvsroot): Ditto.
8813
8814 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
8815
8816 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
8817 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
8818 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
8819 expressions.
8820 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
8821 Only search till end of line.
8822 Add face to function names in case of no filename.
8823 Add face to variable names of watchpoints.
8824
8825 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
8826
8827 * cus-start.el <indent-tabs-mode>: Move to the `indent'
8828 customization group.
8829
8830 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
8831
8832 * allout.el (allout-prior-bindings, allout-added-bindings):
8833 Remove, after long deprecation.
8834 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
8835 Add customization vars controlling allout-beginning-of-line and
8836 allout-end-of-line conveniences.
8837 (allout-header-prefix, allout-use-mode-specific-leader)
8838 (allout-use-mode-specific-leader, allout-mode-leaders):
8839 Revise docstrings.
8840 (allout-infer-header-lead): Change to be an alias for
8841 allout-infer-header-lead-and-primary-bullet.
8842 (allout-infer-header-lead-and-primary-bullet): New version of
8843 allout-infer-header-lead which assigns the primary bullet to the
8844 same as the header lead, when its being changed.
8845 (allout-infer-body-reindent): Apply regexp-quote instead of
8846 unconditionally prepending "\\", so that all literal
8847 allout-header-prefix and allout-primary-bullet strings are
8848 properly handled.
8849 (allout-add-resumptions): Add optional qualifier for extending or
8850 appending to existing values, rather than replacing them.
8851 (allout-view-change-hook): Clarify docstring.
8852 (allout-exposure-change-hook): Take explicit arguments, via
8853 run-hook-with-args.
8854 (allout-structure-added-hook)
8855 (allout-structure-deleted-hook)
8856 (allout-structure-shifted-hook): New hooks analogous to
8857 allout-exposure-change-hook for other kinds of structural outline
8858 edits.
8859 (allout-encryption-plaintext-sanitization-regexps): New encryption
8860 customization variable, by which cooperating modes can provde
8861 massage of the plaintext without actually being passed it.
8862 (allout-encryption-ciphertext-rejection-regexps)
8863 (allout-encryption-ciphertext-rejection-ceiling): New encryption
8864 customization variables, by which cooperating modes can prohibit
8865 rare but possible ciphertext patterns from fouling their
8866 operation, with actually being passed the ciphertext.
8867 (allout-mode): Run activation and deactivation hooks after the
8868 minor-mode variable has been toggled, to clarify the mode
8869 disposition. The new encryption ciphertext rejection variable is
8870 used to ensure that the ciphertext does not contain text that
8871 would be recognized as outline structural elements by allout.
8872 Substite allout-beginning-of-line and allout-end-of-line for
8873 conventionall beginning-of-line and end-of-line bindings.
8874 If allout-old-style-prefixes is non-nil, don't nullify it on mode
8875 activation!
8876 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
8877 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
8878 (allout-chart-subtree): Implement new mode, charting only the
8879 visible items in the subtree, when new 'visible' parameter is non-nil.
8880 (allout-end-of-subtree): Properly handle the last item in the buffer.
8881 (allout-pre-command-business, allout-command-counter):
8882 Increment an advertised counter so that cooperating enhancements can
8883 track revisions of items.
8884 (allout-open-topic): Run allout-structure-added-hook with suitable
8885 arguments.
8886 (allout-shift-in): Run allout-structure-shifted-hook with suitable
8887 arguments.
8888 (allout-shift-out): Fix doubling for negative args and ensure call
8889 of allout-structure-shifted-hook by solely using allout-shift-in.
8890 (allout-kill-line, allout-kill-topic):
8891 Run allout-structure-deleted-hook with suitable arguments.
8892 (allout-yank-processing): Run allout-structure-added-hook with
8893 proper arguments.
8894 (allout-yank): Enclose activity in allout-unprotected.
8895 (allout-flag-region): Run allout-exposure-change-hook with
8896 suitable arguments, instead of making the callee infer the arguments.
8897 (allout-encrypt-string):
8898 Support allout-encryption-plaintext-sanitization-regexps,
8899 allout-encryption-ciphertext-rejection-regexps, and
8900 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
8901 en/de cryption mode in symmetric encryption failure message.
8902 (allout-obtain-passphrase): Use copy-sequence to get a distinct
8903 copy of the passphrase, and don't zero it or we'll corrupt the
8904 stashed copy.
8905 (allout-create-encryption-passphrase-verifier)
8906 (allout-verify-passphrase): Respect the new signature for
8907 allout-encrypt-string.
8908 (allout-get-configvar-values): Convenience for getting a
8909 configuration variable value and handling its absence gracefully.
8910
8911 2006-08-11 Romain Francoise <romain@orebokech.com>
8912
8913 * obsolete/zone-mode.el: Delete.
8914
8915 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
8916
8917 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
8918
8919 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
8920
8921 * emacs-lisp/bindat.el (bindat-ip-to-string):
8922 Use `format-network-address' if possible.
8923
8924 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8925
8926 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
8927
8928 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
8929
8930 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
8931 restore unread-command-events here.
8932 (edebug-display): Do it here, to detect sit-for interruptions.
8933
8934 2006-08-10 Romain Francoise <romain@orebokech.com>
8935
8936 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
8937 (dns-mode-soa-auto-increment-serial): New user option.
8938 (dns-mode-soa-maybe-increment-serial): New function.
8939 (dns-mode): Add the latter to `write-contents-functions'.
8940
8941 * obsolete/zone-mode.el: Move to obsolete/ from net/.
8942 Delete autoload cookies.
8943
8944 2006-08-10 John Wiegley <johnw@newartisans.com>
8945
8946 * eshell/em-glob.el (eshell-glob-chars-list)
8947 (eshell-glob-translate-alist): Add support for [^g] in character globs.
8948
8949 2006-08-10 Richard Stallman <rms@gnu.org>
8950
8951 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
8952 (facemenu-set-face): Doc fix.
8953 (facemenu-listed-faces): Doc fix.
8954
8955 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
8956
8957 * avoid.el (mouse-avoidance-animating-pointer): New var.
8958 (mouse-avoidance-nudge-mouse): Use it.
8959 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
8960 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
8961 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
8962 Don't activate if currently animating. All callers changed.
8963
8964 2006-08-09 John Wiegley <johnw@newartisans.com>
8965
8966 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
8967 variable, which causes timeclock to report elapsed time worked,
8968 instead of just work remaining.
8969
8970 2006-08-09 Kenichi Handa <handa@m17n.org>
8971
8972 * international/latexenc.el (latexenc-find-file-coding-system):
8973 Fix for the case that the 2nd element of arg-list is a cons.
8974
8975 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
8976
8977 * info.el (Info-fontify-node): Handle preceding `in' for note
8978 reference hiding rules.
8979
8980 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8981
8982 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
8983 mistake a closing " for an opening one.
8984
8985 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
8986
8987 * term/xterm.el (terminal-init-xterm): Add more key bindings.
8988
8989 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
8990
8991 * complete.el (PC-do-completion): Filter out completions matching
8992 completion-ignored-extensions before checking whether there are
8993 multiple completions.
8994 Don't use `list' unnecessarily when building completion tables.
8995
8996 2006-08-06 Richard Stallman <rms@gnu.org>
8997
8998 * help.el (describe-mode): Make minor mode list more concise.
8999
9000 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
9001
9002 * bindings.el: Give mode-line-format, mode-line-modes, and
9003 mode-line-position `standard-value' properties.
9004
9005 2006-08-05 Eli Zaretskii <eliz@gnu.org>
9006
9007 * buff-menu.el (list-buffers-noselect): For Info buffers, use
9008 "(file)node" instead of the file name.
9009
9010 2006-08-05 Richard Stallman <rms@gnu.org>
9011
9012 * faces.el (escape-glyph): Doc fix.
9013
9014 2006-08-04 Kenichi Handa <handa@m17n.org>
9015
9016 * international/mule-diag.el (describe-font): Improve docstring
9017 and error message. Use frame-parameter (not frame-parameters).
9018
9019 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9020
9021 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
9022 Correctly mark the end-of-docstring char.
9023
9024 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
9025
9026 * simple.el (line-move-to-column): Constrain move-to-column to
9027 current field.
9028
9029 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9030
9031 * font-lock.el (font-lock-beg, font-lock-end)
9032 (font-lock-extend-region-functions): New vars.
9033 (font-lock-extend-region-multiline)
9034 (font-lock-extend-region-wholelines): New functions.
9035 (font-lock-default-fontify-region): Use them.
9036 (font-lock-extend-jit-lock-region-after-change): Only round up
9037 if font-lock-default-fontify-region will do it as well.
9038
9039 * font-lock.el (font-lock-extend-after-change-region-function):
9040 Rename from font-lock-extend-region-function.
9041 (font-lock-extend-region): Remove by inlining at call sites.
9042 (font-lock-after-change-function): Don't needlessly round up to a whole
9043 number of lines.
9044 (font-lock-extend-jit-lock-region-after-change): Be more careful about
9045 the boundary conditions and the interactions between the various ways
9046 to extend the region.
9047
9048 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9049
9050 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
9051 modification status when forcing the second redisplay.
9052
9053 2006-08-03 Kim F. Storm <storm@cua.dk>
9054
9055 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
9056
9057 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
9058
9059 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
9060 doesn't look like a file name.
9061
9062 * complete.el (PC-expand-many-files): Avoid signalling an error when
9063 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
9064
9065 2006-08-02 Andreas Schwab <schwab@suse.de>
9066
9067 * bindings.el (mode-line-format): Simplify reference to vc-mode.
9068
9069 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
9070
9071 * bindings.el (map): Make mode-line-buffer-identification-keymap
9072 before defining propertized-buffer-identification.
9073
9074 2006-08-01 Richard Stallman <rms@gnu.org>
9075
9076 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
9077
9078 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
9079
9080 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
9081 default value.
9082 (gdb-find-source-frame): New function.
9083 (menu): Add to menu bar.
9084
9085 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
9086
9087 * font-core.el (font-lock-extend-region-function)
9088 (font-lock-extend-region): Move to font-lock.el.
9089
9090 * font-lock.el (font-lock-extend-region-function)
9091 (font-lock-extend-region): Move from font-core.el. Simplify.
9092
9093 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
9094 if needed.
9095 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
9096 (jit-lock-after-change-extend-region-functions): New hook.
9097 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
9098
9099 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
9100 (font-lock-turn-on-thing-lock): Use it.
9101
9102 * longlines.el (longlines-show-region): Make it work on read-only
9103 buffers as well.
9104
9105 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
9106
9107 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
9108
9109 2006-07-31 Richard Stallman <rms@gnu.org>
9110
9111 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
9112 (vhdl-speedbar-display-projects): Update old obsolete
9113 speedbar variable names.
9114
9115 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
9116
9117 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
9118 (gdb-stopped): Use it.
9119
9120 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
9121
9122 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
9123
9124 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
9125 for load-history elements.
9126
9127 2006-07-29 Eli Zaretskii <eliz@gnu.org>
9128
9129 * files.el (convert-standard-filename): For Cygwin, replace
9130 characters not allowed in Windows file names.
9131 (make-auto-save-file-name): Add Cygwin to the list of systems
9132 where the auto-save file name needs to be run through
9133 convert-standard-filename.
9134
9135 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
9136
9137 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
9138
9139 2006-07-28 Richard Stallman <rms@gnu.org>
9140
9141 * bindings.el (mode-line-frame-identification)
9142 (propertized-buffer-identification): Centralize the code
9143 to initialize the variable.
9144
9145 * progmodes/grep.el (grep-default-command): Catch errors from
9146 wildcard-to-regexp.
9147
9148 2006-07-29 Kim F. Storm <storm@cua.dk>
9149
9150 * progmodes/grep.el (grep-tag-default): New function.
9151 (grep-default-command, grep-read-regexp): Use it.
9152 (grep-read-files): Use car of grep-files-history or grep-files-aliases
9153 as default if nothing else applies.
9154
9155 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
9156
9157 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
9158 Throw error if buffer is not in Dired and Wdired mode, respectively.
9159
9160 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
9161
9162 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
9163 self-insert-command keys don't activate buttons.
9164 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
9165
9166 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
9167
9168 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
9169 faces for enable character.
9170
9171 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
9172
9173 * Makefile.in (recompile): Update comment to reflect change
9174 on 2004-04-21.
9175
9176 2006-07-27 Richard Stallman <rms@gnu.org>
9177
9178 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
9179 (customize-package-emacs-version): Change msg when pkg has no entry.
9180 (custom-no-edit): On a button, do like widget-button-press.
9181
9182 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
9183
9184 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
9185 S-tab and C-S-tab.
9186
9187 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
9188
9189 * progmodes/which-func.el (which-function): Fix documentation/
9190 comment typo.
9191
9192 2006-07-26 Richard Stallman <rms@gnu.org>
9193
9194 * textmodes/ispell.el (ispell-word): If we replace the word,
9195 move point to the end. Insert before deleting.
9196
9197 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
9198
9199 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
9200 a timer.
9201
9202 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
9203
9204 * tumme.el (tumme-backward-image): Add prefix argument. Add error
9205 when at first image.
9206 (tumme-forward-image): Add prefix argument. Add error when at last
9207 image.
9208
9209 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
9210
9211 * tabify.el (tabify-regexp): Use more specific regexps.
9212 (tabify): Avoid modifying the buffer unnecessarily.
9213
9214 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
9215
9216 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
9217 (tumme-format-properties-string): Handle empty `buf'.
9218 (tumme-get-comment): Change variable names inside `let'.
9219 Add missing `let' variable that cause font-lock problems.
9220 (tumme-write-comments): Change variable names inside `let'.
9221 Add missing `let' variable that cause font-lock problems.
9222 (tumme-forward-image): Rename from `tumme-forward-char'.
9223 (tumme-backward-image): Rename from `tumme-backward-char'.
9224
9225 2006-07-25 Masatake YAMATO <jet@gyve.org>
9226
9227 * progmodes/ld-script.el (ld-script-keywords)
9228 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
9229 and add comments.
9230
9231 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
9232
9233 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
9234 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
9235 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
9236 for status indicator.
9237
9238 2006-07-24 Richard Stallman <rms@gnu.org>
9239
9240 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
9241
9242 * subr.el (dolist, dotimes): Use interned symbols for locals.
9243 (--dotimes-limit--, --dolist-tail--): New defvars.
9244 (looking-back): Doc fix.
9245
9246 * replace.el (replace-match-string-symbols): Handle dotted lists.
9247
9248 2006-07-24 Mathias Dahl <mathias.dahl@gmail.com>
9249
9250 * tumme.el (tumme-write-tags): Add.
9251 (tumme-write-comments): Add.
9252 (tumme-tag-files): Change to use `tumme-write-tags'.
9253 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
9254 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
9255 (tumme-save-information-from-widgets): Change to use
9256 `tumme-write-comments' and `tumme-write-tags'.
9257 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
9258 (tumme-write-tag): Remove.
9259 (tumme-write-comment): Remove.
9260 (tumme-display-previous-thumbnail-original): Remove empty line.
9261 (tumme-widget-list): Add punctuation.
9262
9263 2006-07-24 Mathias Dahl <mathias.dahl@gmail.com>
9264
9265 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
9266
9267 2006-07-24 Daiki Ueno <ueno@unixuser.org>
9268
9269 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
9270 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
9271 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
9272
9273 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
9274
9275 * mouse.el (mouse-on-link-p): Doc fix.
9276
9277 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
9278
9279 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9280 Handle "C-h f `".
9281
9282 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9283
9284 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
9285 column.
9286
9287 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
9288
9289 * textmodes/table.el: Add move-beginning-of-line and
9290 move-end-of-line to Point Motion Only Group.
9291
9292 2006-07-22 Eric Hanchrow <offby1@blarg.net> (tiny change)
9293
9294 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
9295
9296 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
9297
9298 * startup.el (user-mail-address): Initialize from the `EMAIL'
9299 environment variable first. Document this.
9300 (command-line): Ditto.
9301
9302 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
9303
9304 * help-mode.el (help-function-def, help-variable-def)
9305 (help-face-def): Print a message in the minibuffer.
9306
9307 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
9308
9309 * term/xterm.el (terminal-init-xterm): Fix key bindings
9310 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
9311
9312 2006-07-21 Eli Zaretskii <eliz@gnu.org>
9313
9314 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
9315 where `(nth 1 command)' is a cons cell. Doc fix.
9316
9317 * textmodes/po.el (po-find-charset): Doc fix.
9318
9319 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
9320
9321 * allout.el (allout-unprotected, allout-e-o-prefix-p)
9322 (allout-beginning-of-current-line, allout-end-of-current-line)
9323 (allout-next-visible-heading, allout-open-topic)
9324 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
9325 (allout-flag-current-subtree, allout-show-to-offshoot)
9326 (allout-hide-current-entry, allout-show-current-branches)
9327 (allout-hide-region-body, allout-old-expose-topic)
9328 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
9329 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
9330 containing `beginning-of-line' and `end-of-line' with
9331 `inhibit-field-text-motion' t.
9332
9333 2006-07-21 Eli Zaretskii <eliz@gnu.org>
9334
9335 * frame.el (focus-follows-mouse): Document that it doesn't have
9336 any effect on MS-Windows.
9337
9338 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
9339
9340 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
9341
9342 2006-07-20 Jay Belanger <belanger@truman.edu>
9343
9344 * calc.el (calc-previous-alg-entry): Remove variable.
9345
9346 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
9347 New variables.
9348 (calc-alg-entry): Use `calc-alg-entry-history'.
9349 (calc-do-quick-calc): Use `calc-quick-calc-history'.
9350 Remove reference to `calc-previous-alg-entry'.
9351 (calcAlg-edit, calcAlg-enter): Remove reference to
9352 `calc-previous-alg-entry'.
9353 (calcAlg-previous): Use `previous-history-element' instead of
9354 `calc-previous-alg-entry'.
9355 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
9356 Change keybinding for `calcAlg-plus-minus', add keybindings for
9357 `previous-history-element' and `next-history-element'.
9358
9359 * calc-rewr.el (calc-match): Remove reference to
9360 `calc-previous-alg-entry'.
9361
9362 * calc-sel.el (calc-selection-history): New variable.
9363 (calc-enter-selection, calc-sel-mult-both-sides)
9364 (calc-sel-add-both-sides): Use `calc-selection-history'.
9365
9366 * calc-map.el (calc-get-operator-history): New variable.
9367 (calc-get-operator): Use `calc-get-operator-history'.
9368
9369 * calcalg3.el (calc-curve-fit-history): New variable.
9370 (calc-curve-fit): Use `calc-curve-fit-history'.
9371
9372 2006-07-20 Kenichi Handa <handa@m17n.org>
9373
9374 * international/mule-cmds.el (select-safe-coding-system): Fix the
9375 way of deciding eol-type of the coding system.
9376
9377 2006-07-20 Alan Mackenzie <acm@muc.de>
9378
9379 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
9380 (c-lang-setvar): New macro.
9381 (c-make-init-lang-vars-fun): Use the initialization forms in
9382 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
9383 (comment-start, comment-end, comment-start-skip): Change these from
9384 c-lang-defvar's to c-lang-setvar's.
9385
9386 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
9387 which calls make-local-variable on the elements of
9388 c-emacs-variable-inits.
9389 (c-init-language-vars-for): Call this new macro.
9390
9391 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9392
9393 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
9394 Try to rule out false positives due to time stamps.
9395 (compilation-mode-font-lock-keywords): Remove rules made redundant
9396 because of the above change. Add `segmentation fault' to the known and
9397 highlighted compilation termination messages.
9398
9399 2006-07-19 Kim F. Storm <storm@cua.dk>
9400
9401 * progmodes/grep.el (grep-find-ignored-directories):
9402 Add .svn and _darcs to list.
9403
9404 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
9405
9406 * dired.el (dired-mode-map): Add key binding `C-te' for
9407 `tumme-dired-edit-comment-and-tags'.
9408
9409 * tumme.el (tumme-display-thumbnail-original-image): Make sure
9410 image display buffer is displayed before call to
9411 `tumme-display-image.
9412 (tumme-dired-display-image): Make sure image display buffer is
9413 displayed before call to `tumme-display-image.
9414 (tumme-mouse-display-image): Make sure image display buffer is
9415 displayed before call to `tumme-display-image.
9416 (tumme-widget-list): Add.
9417 (tumme-dired-edit-comment-and-tags): Add.
9418 (tumme-save-information-from-widgets): Add.
9419
9420 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9421
9422 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
9423
9424 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9425
9426 * progmodes/sh-script.el (sh-font-lock-keywords-1):
9427 Revert inadvertently installed patch hunk.
9428
9429 * progmodes/compile.el (compilation-find-file): Handle the
9430 cases where the user selects a non-existent file.
9431
9432 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9433
9434 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
9435
9436 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
9437
9438 * subr.el (sit-for): Just sleep-for if noninteractive.
9439
9440 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9441
9442 * emacs-lisp/autoload.el (make-autoload): Use new arg.
9443
9444 * custom.el (custom-autoload): Add `noset' argument.
9445 (custom-push-theme): Don't autoload the variable, let callers do it.
9446 (custom-theme-set-variables): Autoload the variable if necessary.
9447
9448 * cus-edit.el (custom-variable-state-set): If the variable was
9449 originally set outside custom, but to the same value as the default,
9450 consider it to be standard.
9451
9452 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
9453 file *before* telling Emacs to add the autoloads, in case it fails.
9454
9455 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
9456 Use `cond', push', and `dolist'.
9457
9458 2006-07-17 Richard Stallman <rms@gnu.org>
9459
9460 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
9461 Add defvars to silence warnings.
9462
9463 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
9464
9465 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9466 Don't highlight "Compiling file" messages as error.
9467
9468 * dired-aux.el (dired-compress-file): Confirm again if gzipped
9469 file already exists.
9470
9471 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
9472
9473 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
9474 entry, don't assign to free var; simply return the extracted filename.
9475 (ff-treat-as-special): Incorporate common preamble from callers.
9476 (ff-other-file-name, ff-find-the-other-file):
9477 Update call to ff-treat-as-special.
9478
9479 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
9480
9481 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
9482
9483 * tumme.el (tumme-get-comment): Fix bug.
9484
9485 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
9486
9487 * files.el: Remove spurious * in docstrings.
9488
9489 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
9490
9491 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
9492 grammar.
9493 (allout-beginning-of-current-line): Beware beginning of buffer.
9494 Also, a comment is simplified.
9495 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
9496 when appropriate. (This fix enables use for other than
9497 bullet-hotspot operation.)
9498 (allout-hide-current-subtree): While escalating to sibling-close,
9499 make sure to situate on a topic.
9500
9501 2006-07-14 Kim F. Storm <storm@cua.dk>
9502
9503 * emulation/cua-base.el (cua-delete-selection)
9504 (cua-toggle-set-mark): New defcustoms.
9505 (cua-rectangle-modifier-key): Add `alt' modifier.
9506 (cua-replace-region): Don't delete if cua-delete-selection is nil.
9507 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
9508 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
9509
9510 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
9511
9512 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
9513
9514 * allout.el: Require 'cl during byte-compilation/interactive load,
9515 for the `assert' macro.
9516 (allout-mode-deactivate-hook): New hook, run when allout mode
9517 deactivates.
9518 (allout-developer): New allout customization subgroup.
9519 (allout-run-unit-tests-on-load): New allout-developer
9520 customization variable, when true allout unit tests are run towards
9521 end of file load/eval.
9522 (allout-inhibit-auto-fill): Disable auto-fill activity even during
9523 auto-fill-mode.
9524 (allout-resumptions): Remove, to be replaced by...
9525 (allout-add-resumptions): Register variable settings to be
9526 reinstated by `allout-do-resumptions'. The settings are made
9527 buffer-local, but the locality/globality of the suspended setting
9528 is restored on resumption.
9529 (allout-do-resumptions): Reinstate all settings suspended using
9530 `allout-add-resumptions'.
9531 (allout-test-resumptions): Unit tests (and intermediate variables)
9532 for resumptions.
9533 (allout-tests-globally-unbound, allout-tests-globally-true)
9534 (allout-tests-locally-true): Intermediate variables for
9535 resumptions unit tests.
9536 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
9537 (allout-exposure-category): Replaces 'allout-overlay-category variable.
9538 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
9539 instead of retired `allout-resumptions'. For hook functions, use
9540 `local' parameter so hook settings are created and removed as
9541 buffer-local settings. Revise (resumptions) setting
9542 auto-fill-function so it is set only if already active. (The
9543 related fill-function settings are all made in either case, so
9544 that activating auto-fill-mode activity will have the custom
9545 allout-mode behaviors (hanging indent on topics, if configured for it).
9546 Remove all allout-exposure-category overlays on mode deactivation.
9547 (allout-hotspot-key-handler): New function extracted from
9548 `allout-pre-command-business', so the functionality can be used
9549 for other purposes, eg as a binding in an overlay.
9550 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
9551 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
9552 customization variable.
9553 (allout-run-unit-tests): Run the (currently quite small)
9554 repertoire of unit tests. Called just before the provide iff user
9555 has customized `allout-run-unit-tests-on-load' non-nil.
9556
9557 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
9558
9559 * emacs-lisp/authors.el (authors-aliases): Update.
9560
9561 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
9562
9563 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
9564 gdb-source-window. Add dedicated argument.
9565 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
9566 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
9567 (gdb-display-threads-buffer, gdb-display-memory-buffer)
9568 (gdb-display-locals-buffer): Use it.
9569
9570 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
9571 Set gdb-source-window.
9572
9573 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
9574
9575 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
9576 minor modes, redundant with the custom-autoload line above.
9577
9578 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
9579
9580 * longlines.el (longlines-post-command-function): Handle open-line too.
9581
9582 2006-07-12 Richard Stallman <rms@gnu.org>
9583
9584 * progmodes/grep.el (grep-last-buffer): Doc fix.
9585
9586 * info.el (Info-try-follow-nearest-node): Doc fix.
9587
9588 * emacs-lisp/edebug.el (edebug-instrument-function):
9589 Err if find-function-noselect gives no position.
9590
9591 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9592 If can't find definition, return nil for position.
9593 (find-function-do-it): Handle new return value
9594 of find-definition-noselect.
9595 (find-definition-noselect, find-variable-noselect): Doc fix.
9596 (find-function-noselect): Doc fix.
9597
9598 * help-mode.el (help-variable-def): Handle find-variable-noselect
9599 returning no position.
9600 (help-function-def): Likewise for find-function-search-for-symbol.
9601 (help-face-def): Likewise.
9602
9603 * help-fns.el (describe-variable): Handle find-variable-noselect
9604 returning no position.
9605
9606 * files.el (locate-file-completion): Avoid duplicates in result.
9607
9608 * cus-edit.el (custom-no-edit): New command.
9609 (custom-mode-map): Remap to custom-no-edit instead of
9610 using suppress-keymap.
9611
9612 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
9613
9614 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
9615 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
9616 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
9617
9618 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
9619
9620 2006-07-11 Kim F. Storm <storm@cua.dk>
9621
9622 * ido.el (ido-copy-current-file-name): Use buffer-name if
9623 buffer-file-name is nil.
9624
9625 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
9626
9627 * simple.el (undo-ask-before-discard): Set to nil.
9628
9629 * vc.el (vc-exec-after): Don't delete process manually.
9630 (vc-print-log): Run log-view-mode in process sentinel inside
9631 inhibit-read-only. Don't shrink window due to timing issues.
9632
9633 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
9634 Avoid using with-output-to-temp-buffer, which clobbers local vars.
9635
9636 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9637
9638 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9639 Fix ambiguity introduced by last change.
9640 (compilation-find-file): Move save-excursion to where it may
9641 make sense. Fix a left over `find-file'.
9642
9643 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
9644
9645 * textmodes/texinfmt.el (texinfo-format-separate-node):
9646 Insert a string before point, which fits documentation, not after.
9647 (texinfo-multitable-item): In a multitable row, insert any
9648 additional needed @tabs and spaces.
9649
9650 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
9651
9652 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
9653 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
9654 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
9655 instead of shell-command.
9656 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
9657 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
9658 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
9659 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
9660 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
9661 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
9662
9663 2006-07-11 Kim F. Storm <storm@cua.dk>
9664
9665 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
9666 Remove special case for seconds < 0. Use (redisplay t) instead.
9667
9668 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
9669
9670 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
9671 avoid compilation error.
9672
9673 * subr.el (sit-for): New function.
9674
9675 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
9676
9677 2006-07-10 Richard Stallman <rms@gnu.org>
9678
9679 * ldefs-boot.el (edebug): Update page.
9680
9681 2006-07-10 Kim F. Storm <storm@cua.dk>
9682
9683 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
9684 to FOR-RELEASE and TODO.
9685
9686 2006-07-10 Romain Francoise <romain@orebokech.com>
9687
9688 * emacs-lisp/authors.el (authors-aliases): Update.
9689
9690 2006-07-10 Alan Mackenzie <acm@muc.de>
9691
9692 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
9693 * cc-mode.el: Changes to eradicate eval-after-load.
9694
9695 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
9696
9697 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
9698 on non-char events.
9699
9700 2006-07-09 Romain Francoise <romain@orebokech.com>
9701
9702 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9703 Don't highlight start/end markers as compilation messages.
9704
9705 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
9706 to t.
9707
9708 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
9709
9710 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
9711
9712 2006-07-08 Richard Stallman <rms@gnu.org>
9713
9714 * term/x-win.el (x-handle-display): Add doc string.
9715
9716 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
9717
9718 * subr.el (def-edebug-spec): Move here.
9719 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
9720
9721 * imenu.el (imenu-choose-buffer-index): Doc fix.
9722
9723 2006-07-08 Romain Francoise <romain@orebokech.com>
9724
9725 * term/x-win.el (x-display-name): Fix typo.
9726
9727 2006-07-08 Eli Zaretskii <eliz@gnu.org>
9728
9729 * hexl.el (hexl-find-file): Doc fix.
9730
9731 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
9732
9733 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
9734
9735 * term/x-win.el (x-display-name): Doc fix.
9736
9737 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
9738
9739 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
9740 long prefixes.
9741 (fill-region-as-paragraph): Don't round up to a whole line.
9742 (fill-comment-paragraph): Don't include the code-before-the-comment
9743 when calling fill-region-as-paragraph.
9744
9745 * international/mule.el (make-char): Remove redundancy.
9746
9747 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
9748 property may contain an anonymous function rather than a symbol.
9749
9750 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
9751
9752 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
9753 Use shy regexp. Fix incorrect backref to potentially unmatched group.
9754
9755 * dirtrack.el (dirtrack-default-directory-function): Remove.
9756 (dirtrack-directory-function): Use file-name-as-directory.
9757 (dirtrack-windows-directory-function): Simplify.
9758 (dirtrack-forward-slash, dirtrack-backward-slash)
9759 (dirtrack-replace-slash): Remove.
9760 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
9761 (dirtrack): Fix wrong parenthesizing; use match-string.
9762
9763 * progmodes/octave-inf.el: Remove spurious * in docstrings.
9764 (inferior-octave-mode): Only change the buffer-local value of
9765 comint-dynamic-complete-functions.
9766 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
9767 Move the initialization to the declaration.
9768 (inferior-octave-complete): Remove unused var `filter'.
9769
9770 * shell.el (shell-mode): Only change the buffer-local value of
9771 comint-dynamic-complete-functions.
9772
9773 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
9774
9775 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
9776 entry is skipped because it has been scheduled.
9777 (org-prepare-agenda-buffers): Don't mark buffers as modified when
9778 changing `:org-archived' and `:org-comment' properties.
9779
9780 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
9781
9782 * server.el (server-select-display): Don't make the temp frame
9783 minibuffer-only, in case it's not a temp frame.
9784 (server-process-filter): Don't delete the temp frame if it's the
9785 only one we have on that display.
9786
9787 * files.el (find-alternate-file): Doc fix.
9788
9789 2006-07-05 Richard Stallman <rms@gnu.org>
9790
9791 * files.el (abbreviate-file-name): Add save-match-data.
9792
9793 2006-07-03 Richard Stallman <rms@gnu.org>
9794
9795 * faces.el (read-face-name): Doc fix.
9796
9797 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
9798
9799 * net/goto-addr.el (goto-address): Mark as safe for local evals.
9800
9801 2006-07-05 Andre Spiegel <spiegel@gnu.org>
9802
9803 * vc.el (vc-diff-internal): Fix prev change.
9804
9805 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
9806
9807 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
9808 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
9809
9810 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9811
9812 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
9813 fails if the symbol contains chars like ( or '.
9814 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
9815 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
9816 `short'.
9817
9818 2006-07-04 Kenichi Handa <handa@m17n.org>
9819
9820 * international/mule-cmds.el (set-language-info): If LANG-ENV is
9821 the current one, don't call set-language-environment, but call one
9822 of set-language-environment-XXX to make INFO effective now.
9823 (set-language-environment): Call set-language-environment-XXX
9824 functions instead of doing the various setups directly.
9825 (set-language-environment-coding-systems): Delete argument eol-type.
9826 (set-language-environment-input-method)
9827 (set-language-environment-nonascii-translation)
9828 (set-language-environment-charset)
9829 (set-language-environment-fontset)
9830 (set-language-environment-unibyte): New functions.
9831
9832 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
9833
9834 * locate.el (locate-update-when-revert): New option.
9835 (locate-update-path): New option (suggested by Michael Albinus).
9836 (locate-prompt-for-command): Whitespace change.
9837 (locate-update): No longer offer to update the locate database by
9838 default. Implement the two new options.
9839
9840 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
9841
9842 * tooltip.el: Move comment about track-mouse...
9843
9844 * progmodes/gud.el: ...to here.
9845
9846 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
9847
9848 * facemenu.el (facemenu-listed-faces): New var.
9849 (facemenu-unlisted-faces): Variable deleted.
9850 (facemenu-add-new-face): Use facemenu-listed-faces.
9851
9852 * emulation/viper-init.el, calendar/calendar.el:
9853 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
9854
9855 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
9856
9857 * textmodes/org.el (org-mode): Remove no invalid settings for
9858 calc embedded mode.
9859 (org-mode-p): New defsubst.
9860 (org-save-all-org-buffers): New function.
9861 (org-first-headline-recenter): Enclose outline-regexp in group
9862 delimiters.
9863 (org-set-tags): Keep single space after stars.
9864
9865 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9866
9867 * window.el (set-window-text-height): Only set window-min-height to
9868 1 if that's the requested size.
9869
9870 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
9871 (diff-unified->context, diff-context->unified)
9872 (diff-reverse-direction): Make sure the end marker stays at the end.
9873 (diff-mode): Add the keymap table at the end of docstring.
9874 Use lexical-let rather than constructing a closure manually.
9875
9876 * files.el (find-file-noselect-1): Remove unused var assignment.
9877 (hack-local-variables-confirm): Print lists of strings as lists of
9878 strings rather than lists of symbols.
9879 (abbreviate-file-name, hack-local-variables-prop-line):
9880 Use match-string.
9881 (hack-one-local-variable): Move `make-local-variable' nearer its use.
9882 (recover-session-finish): Use line-end-position.
9883
9884 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
9885
9886 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
9887
9888 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
9889
9890 * progmodes/make-mode.el (makefile-macroassign-regex):
9891 Accept preceding keyword.
9892 (makefile-gmake-statements): Reorganize, now that makepp has
9893 "override" and also handle forgotten "override define".
9894 (makefile-makepp-statements): Add new "global", "override export"
9895 and "override global".
9896
9897 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
9898
9899 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
9900 (ada-compile-mouse-goto-error, ada-deactivate-properties)
9901 (ada-no-auto-case): Fix typos in docstrings.
9902
9903 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
9904
9905 * info.el (Info-find-node-2): Search for makeinfo version more
9906 carefully.
9907
9908 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
9909
9910 * textmodes/org.el (org-prepare-agenda-buffers):
9911 Use `invisible-OK' argument for `org-end-of-subtree'.
9912 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
9913 (org-beginning-of-item): Fix bug in regular expression for white line.
9914 (org-export-as-html): Enforce space after bullet in plain list items.
9915 (org-set-autofill-regexps): Require space after plain list bullet
9916 for paragraph-start.
9917 (org-ts-regexp3): New constant.
9918 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
9919 (org-timestamp-up-day, org-timestamp-down-day)
9920 (org-timestamp-change): Work with inactive timestamps.
9921 (org-ts-regexp1): Don't allow brackets in time stamps.
9922
9923 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
9924
9925 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
9926 for ignoring links.
9927
9928 * faces.el (read-face-name): Use it.
9929
9930 2006-06-28 Juri Linkov <juri@jurta.org>
9931
9932 * buff-menu.el (list-buffers-noselect): Compare Info file
9933 with the string "dir" to detect Info directory.
9934
9935 * complete.el (partial-completion-mode): In lambda for
9936 `choose-completion-string-functions' use full function signature
9937 with 4 args, and move point to the end of the minibuffer only if arg
9938 `mini-p' is non-nil.
9939
9940 2006-06-28 John Paul Wallington <jpw@pobox.com>
9941
9942 * ibuffer.el (ibuffer-mode): Doc fix.
9943
9944 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
9945
9946 * textmodes/org.el (org-context): New contexts :item-bullet,
9947 :latex-fragment, :latex-preview.
9948 (org-overlays-at, org-overlay-start, org-overlay-end):
9949 New compatibility functions.
9950 (org-inside-LaTeX-fragment-p): More accurate matching, using the
9951 exact regexp that will be used during export.
9952 (org-latex-regexps): New variable.
9953 (org-cdlatex-mode): Improve advice for `texmathp'.
9954 (turn-on-org-cdlatex): New function.
9955
9956 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9957
9958 * term/mac-win.el (mac-handle-font-selection): Change keys of
9959 mac-atsu-font-table from strings to numbers.
9960 (mac-ts-caret-position): Use also when cursor-type is nil.
9961 (mac-ts-update-active-input-area): Add Mac OS Classic support.
9962 Relax condition for using overlay strings.
9963 Use mac-ts-caret-position face when cursor-type is nil.
9964
9965 2006-06-26 Kim F. Storm <storm@cua.dk>
9966
9967 * help.el (view-emacs-news): Declare `res' in the right let* form.
9968
9969 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
9970
9971 * net/rcompile.el (remote-compile): Replace ange-ftp based
9972 implementation by Tramp functions.
9973 Suggested by Marc Abramowitz <msabramo@gmail.com>.
9974
9975 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
9976
9977 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
9978
9979 * international/fontset.el (setup-default-fontset): Fix a typo in
9980 the "Oriya-Akruti" registry name.
9981
9982 2006-06-23 Lars Hansen <larsh@soem.dk>
9983
9984 * desktop.el (desktop-full-file-name): New function.
9985 (desktop-kill, desktop-save, desktop-remove, desktop-read)
9986 (desktop-revert): Use it.
9987 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
9988 (desktop-after-read-hook): Add option list-buffers.
9989 (desktop-locals-to-save): Add tab-width.
9990 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
9991 Fix docstring.
9992
9993 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
9994
9995 * textmodes/org.el (org-cdlatex-mode-map)
9996 (org-cdlatex-texmathp-advice-is-done): New variables.
9997 (org-cdlatex-mode): New minor mode.
9998 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
9999 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
10000 (org-export-with-archived-trees): New option.
10001 (org-open-file): Remove the call to `convert-standard-filename'.
10002 (org-archive-tag, org-agenda-skip-archived-trees)
10003 (org-cycle-open-archived-trees)
10004 (org-sparse-tree-open-archived-trees): New options.
10005 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
10006 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
10007 New functions.
10008 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
10009 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
10010 (org-mode-map): Add binding for `org-toggle-archive-tag'.
10011 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
10012 Call `org-prepare-agenda-buffers'.
10013 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
10014 (org-file-apps, org-file-apps-defaults-gnu)
10015 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
10016 Handle remote files by forcing them to be opened in Emacs.
10017
10018 2006-06-23 Andre Spiegel <spiegel@gnu.org>
10019
10020 * vc.el (vc-diff-knows-L): New variable.
10021 (vc-diff-internal): Use it to handle "diff" programs that don't
10022 understand -L. This works automatically, no user action is necessary.
10023
10024 2006-06-23 Daniel Brockman <daniel@brockman.se>
10025
10026 * net/rcirc.el (rcirc-default-user-full-name): Default to
10027 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
10028 longer exists).
10029 (rcirc-process-list): Check `buffer-live-p' before attempting to
10030 switch to a buffer.
10031
10032 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
10033
10034 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
10035 based on rcirc-coding-system-alist.
10036
10037 2006-06-23 Martin Rudalics <rudalics@gmx.at>
10038
10039 * cus-edit.el (customize-apropos): A better error message.
10040 (top level) <debug-ignored-errors>: Extend and update the list of
10041 ignored error messages.
10042
10043 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
10044
10045 * complete.el (PC-do-completion): Retain capitalization of user
10046 input, when possible, even if completion-ignore-case is set.
10047
10048 2006-06-23 Eli Zaretskii <eliz@gnu.org>
10049
10050 * generic-x.el (bat-generic-mode): Support .cmd files.
10051
10052 * dos-w32.el (top level): Use find-file-not-found-functions
10053 instead of the obsolete find-file-not-found-hooks.
10054
10055 2006-06-22 Kim F. Storm <storm@cua.dk>
10056
10057 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
10058 to recognize mode name containing submodes, such as Grep/lw.
10059
10060 2006-06-21 Kim F. Storm <storm@cua.dk>
10061
10062 * simple.el (line-move-1): Check for move-end-of-line instead of
10063 end-of-line when setting temporary-goal-column.
10064
10065 2006-06-21 Miles Bader <miles@gnu.org>
10066
10067 * play/cookie1.el (cookie): Work properly when there's only one entry.
10068
10069 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
10070
10071 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
10072 (gdb-frame-handler): Generalize frame regexp for templates.
10073
10074 2006-06-20 Glenn Morris <rgm@gnu.org>
10075
10076 * calendar/appt.el (appt-display-format): Default value must be
10077 one of the customize options.
10078
10079 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
10080
10081 * term/xterm.el (terminal-init-xterm): Update key availability info.
10082 Bind C-return.
10083
10084 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
10085
10086 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
10087
10088 * files.el (hack-local-variables): Run `hack-local-variables-hook'
10089 whether or not a local variables list is defined.
10090
10091 * msb.el (msb): Move `sit-for' hack here to handle both
10092 "mouse-down and drag" and "mouse-up and select" situations.
10093 (mouse-select-buffer): Move `sit-for' hack to `msb'.
10094
10095 2006-06-20 Kenichi Handa <handa@m17n.org>
10096
10097 * international/characters.el (word-combining-categories):
10098 Add entries for 2-byte Han characters.
10099
10100 2006-06-19 Richard Stallman <rms@gnu.org>
10101
10102 * bindings.el (mode-line-format): Save some mode line space.
10103
10104 * files.el (find-file-noselect): Improve the question wording.
10105 (basic-save-buffer-2): Mask UMASK against 666.
10106
10107 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
10108 (mouse-drag-vertical-line): Call it.
10109
10110 * cus-edit.el (customize-option, customize-option-other-window):
10111 Error if SYMBOL is nil.
10112
10113 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
10114
10115 * textmodes/org.el: Require noutline, also on XEmacs.
10116 (org-end-of-subtree): Return point.
10117 (org-dblock-start-re, org-dblock-end-re): New constants.
10118 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
10119 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
10120 (org-update-all-dblocks, org-find-dblock): New functions.
10121 (org-collect-clock-time-entries): New function.
10122 (org-html-handle-time-stamps): Never export CLOCK timeranges.
10123 (org-fixup-indentation): Modify to deal correctly with lines
10124 starting with TAB. Only one argument DIFF now.
10125 (org-demote, org-promote): Call `org-fixup-indentation' with just
10126 one argument, DIFF.
10127 (org-mode): Don't mark buffer as modified when aligning tables.
10128 (org-clock-sum): Don't mark buffer modified when adding time sum
10129 properties.
10130 (org-export-as-html): Add support for a link validation function.
10131 (org-archive-all-done): New function.
10132 (org-archive-subtree): New prefix argument. When set, archive all
10133 done subtrees in this buffer.
10134 (org-remove-clock-overlays)
10135 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
10136 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
10137 (org-put-clock-overlay): Don't swallow last headline character
10138 when displaying overlay.
10139 (org-store-link): Link to `image-mode' with just the file name.
10140
10141 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
10142
10143 * viper-cmd.el (viper-special-read-and-insert-char):
10144 Use read-key-sequence.
10145 (viper-after-change-undo-hook): Misc enhancements.
10146 (viper-after-change-undo-hook): New hook.
10147 (viper-undo): Use viper-after-change-undo-hook.
10148 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
10149 (viper-next-line-at-bol): If point is on a widget or a button, simulate
10150 clicking on that widget/button.
10151
10152 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
10153
10154 * ediff-diff (ediff-test-patch-utility): Catch errors.
10155 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
10156 (ediff-set-actual-diff-options): New function.
10157 (ediff-reset-diff-options, ediff-toggle-ignore-case):
10158 Use ediff-set-actual-diff-options.
10159 (ediff-extract-diffs): Catch errors.
10160 (ediff-whitespace): Add non-breakable space.
10161 (ediff-same-file-contents): Catch errors.
10162
10163 * ediff-mult.el (ediff-collect-custom-diffs):
10164 Save coding-system-for-read.
10165
10166 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
10167 (ediff-vc-internal, ediff-vc-merge-internal):
10168 Use ediff-delete-version-file.
10169 (ediff-delete-version-file): New function.
10170
10171 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
10172
10173 * ediff.el (ediff-directories, ediff-directory-revisions)
10174 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
10175 (ediff-directories-internal, ediff-merge-directory-revisions)
10176 (ediff-merge-directory-revisions-with-ancestor)
10177 (ediff-directories3): Use read-directory-name.
10178
10179 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
10180
10181 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
10182 Remove superfluous part of regexp for brace matching which is handled
10183 by `scan-lists' call.
10184
10185 2006-06-16 Richard Stallman <rms@gnu.org>
10186
10187 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
10188
10189 * files.el (basic-save-buffer-2): For a new precious file,
10190 use the default modes in the return value.
10191
10192 * facemenu.el (facemenu-color-alist): Doc fix.
10193
10194 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
10195
10196 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10197
10198 * cus-start.el (all): Add mac-ts-script-language-on-focus.
10199
10200 * term/mac-win.el (mac-text-encoding-ascii): New constant.
10201 (mac-utxt-to-string): Use it.
10202 (mac-ts-update-active-input-area): Use mac-ae-number.
10203
10204 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
10205
10206 * term.el (term-handle-scroll, term-delete-lines)
10207 (term-insert-lines): Fix off by one errors.
10208
10209 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org>
10210
10211 * net/tramp.el (tramp-touch): Use UTC to express time.
10212
10213 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
10214
10215 * mail/sendmail.el (mail-send): Search explicitly for
10216 mail-header-separator when checking for corrupted header lines.
10217
10218 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
10219
10220 * progmodes/gdb-ui.el (gdb-same-frame): New option.
10221 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
10222 (gdb-init-1): Initialise them.
10223 (gdb-starting): Reset gdb-printing
10224 (gdb-starting): Save value of gud-overlay-arrow-position.
10225 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
10226 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
10227 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
10228 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
10229
10230 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10231
10232 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
10233
10234 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
10235
10236 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
10237 (ldap-search-internal): Keep error messages, and a regexp fix.
10238
10239 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
10240
10241 * files.el (hack-local-variables-confirm):
10242 Display string value using its printed representation.
10243
10244 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
10245
10246 * server.el (server-edit): No-op if no server buffers exist.
10247
10248 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
10249
10250 * textmodes/page-ext.el (pages-directory-for-addresses):
10251 Including `pages-directory-address-mode' in the function results
10252 in the message "Buffer in which pages were found is deleted".
10253
10254 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
10255
10256 * textmodes/org.el (org-agenda-mode-map): Add bindings for
10257 clocking functions.
10258
10259 (org-agenda-clock-in, org-check-running-clock)
10260 (org-clock-out-if-current, org-remove-clock-overlays)
10261 (org-put-clock-overlay): New functions.
10262 (org-clock-marker, org-clock-file-total-minutes)
10263 (org-clock-overlays): New variables.
10264 (org-clock-display, org-clock-sum, org-clock-cancel)
10265 (org-clock-out, org-clock-in): New commands.
10266 (org-export): New function.
10267 (org-emph-re): New constant.
10268 (org-set-emph-re, org-do-emphasis-faces): New functions.
10269 (org-emphasis-regexp-components, org-emphasis-alist): New options.
10270 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
10271 (org-export-html-convert-emphasize): Use the configurable emphasis.
10272 (org-cleaned-string-for-export): Make multiline emphasis visible
10273 to the exporter. New optional argument PARAMETERS.
10274 (org-export-as-html): Specify :emph-multiline parameter to
10275 `org-cleaned-string-for-export'.
10276
10277 2006-06-10 Richard Stallman <rms@gnu.org>
10278
10279 * help.el (help-for-help-internal): Clean up help text.
10280
10281 2006-06-10 Andreas Schwab <schwab@suse.de>
10282
10283 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
10284 in doc string.
10285
10286 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
10287
10288 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
10289
10290 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
10291 spaces after the comment start.
10292
10293 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
10294
10295 * play/pong.el (pong-init-buffer):
10296 Fill buffer with spaces instead of ^A.
10297
10298 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
10299 launched asynchronously, delete its process instead of being cool.
10300 (ispell-async-processp): Check for `delete-process' existence
10301 instead of `kill-process' one for consistency.
10302
10303 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
10304
10305 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
10306 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
10307 in mode line at startup.
10308
10309 2006-06-08 Kim F. Storm <storm@cua.dk>
10310
10311 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
10312 (ido-init-completion-maps): Bind them to M-SPC and M-v.
10313 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
10314 (ido-file-internal): Pass full file name to write-file.
10315 (ido-read-internal): Only pop stack elements automatically if they
10316 actually match an existing directory or file name.
10317
10318 2006-06-07 Kenichi Handa <handa@m17n.org>
10319
10320 * international/mule.el (find-auto-coding): Don't handle the short
10321 name `char-trans'.
10322
10323 * files.el (hack-local-variables-prop-line)
10324 (hack-local-variables): Cancel the previous change.
10325
10326 2006-06-06 Jesper Harder <harder@phys.au.dk>
10327
10328 * ediff-diff.el (ediff-test-utility): Protect against file-error.
10329
10330 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
10331
10332 * diff-mode.el (diff-mode): Set buffer-read-only to t when
10333 diff-default-read-only is non-nil.
10334 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
10335 (diff-refine-hunk): Set inhibit-read-only to t.
10336
10337 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
10338 modifying the *Diff* buffer.
10339 (diff-process-filter): New filter function for diff process that
10340 sets inhibit-read-only to t when modifying the *Diff* buffer.
10341
10342 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
10343
10344 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
10345 insertion point and control the number of empty lines.
10346 (org-paste-subtree): Limit the number of empty lines at the end of
10347 the inserted tree.
10348 (org-agenda): Use buffer name of current file for narrowing.
10349 (org-export-as-xml): Command removed.
10350 (org-export-xml-type): Option removed.
10351 (org-mode-map): Call `org-export-as-xoxo' directly.
10352 (org-get-indentation): New optional argument LINE.
10353 (org-fix-indentation, org-remove-tabs): New functions.
10354 (org-export-as-ascii, org-ascii-level-start): Determine and apply
10355 correct indentation for headlines that are converted it items.
10356 (org-skip-comments): Remove table lines that contain narrowing
10357 cookies but no other non-empty fields.
10358 (org-set-tags): Allow groups of mutually exclusive tags.
10359 (org-cmp-time): Sort 24:21 before items without time.
10360 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
10361 (org-open-at-point): Require double colon also for numbers.
10362
10363 2006-06-06 Kim F. Storm <storm@cua.dk>
10364
10365 * ido.el (ido-default-file-method, ido-default-buffer-method):
10366 Make choice values consistent with corresponding command names.
10367 (ido-visit-buffer): Update accordingly. Default to selected-window.
10368
10369 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
10370
10371 * progmodes/gud.el (gud-running): Fix doc string.
10372 (gud-menu-map): Use :visible instead fo :enable for debugger test.
10373 (gud-tooltip-modes): Add python-mode.
10374 (gud-tooltip-print-command): Add pdb. Remove perldb.
10375
10376 2006-06-05 Eli Zaretskii <eliz@gnu.org>
10377
10378 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
10379 Quote $(EMACS).
10380
10381 2006-06-05 Richard Stallman <rms@gnu.org>
10382
10383 * faces.el (defined-colors): Doc fix.
10384
10385 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
10386
10387 * vc.el (vc-process-filter): Inhibit undo info collection around
10388 call to insert.
10389 (vc-setup-buffer): Likewise for call to erase-buffer.
10390 (vc-do-command): Likewise for call to process-file.
10391
10392 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
10393
10394 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
10395 for gud-go.
10396 (gud-common-init): Other debuggers may trigger error.
10397
10398 2006-06-05 Kenichi Handa <handa@m17n.org>
10399
10400 * international/mule.el (find-auto-coding):
10401 Handle enable-character-translation in file header.
10402
10403 2006-06-04 Kim F. Storm <storm@cua.dk>
10404
10405 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
10406 (authors-fixed-entries): Fix spelling.
10407 (authors-canonical-file-name): Don't report error for wildcards.
10408
10409 * help.el (view-emacs-news): Rewrite to support new NEWS,
10410 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
10411 e.g. version 10 matches 1.10, and don't be confused by version 1.1
10412 being a prefix of 1.12 (etc). A numeric prefix arg also works.
10413
10414 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
10415
10416 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
10417 exec constructs like `foo bar`.
10418 (sh-quoted-subshell): New helper function to search for a possibly
10419 nested subshell (like `` or $()) within a "" quoted string.
10420 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
10421 (sh-apply-quoted-subshell): Flag quote characters inside a
10422 subshell, which is itself already in a quoted region, as
10423 punctuation, since this is the closest to what they actually are.
10424 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
10425 sh-apply-quoted-subshell.
10426 (sh-font-lock-syntactic-face-function): Apply the new face for
10427 text inside `` instead of the old font-lock-string-face.
10428
10429 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10430
10431 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
10432 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
10433 (mac-bytes-to-text-range, mac-ae-text-range-array)
10434 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
10435 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
10436 (mac-ts-unicode-for-key-event): New functions.
10437 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
10438 (mac-handle-font-selection): Use mac-ae-number.
10439 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
10440 New variables.
10441 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
10442 (mac-ts-converted-text, mac-ts-selected-converted-text)
10443 (mac-ts-block-fill-text, mac-ts-outline-text)
10444 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
10445 (mac-ts-hilite-style-faces): New constant.
10446 (mac-apple-event-map): Bind text input events.
10447 (mac-dispatch-apple-event): Use command-execute instead of
10448 call-interactively.
10449 (global-map): Don't bind mac-apple-event.
10450 (special-event-map): Bind mac-apple-event.
10451
10452 2006-06-02 Eli Zaretskii <eliz@gnu.org>
10453
10454 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
10455 file name.
10456 (emacs): Enclose the value of $(EMACS) in quotes.
10457
10458 2006-06-02 Juri Linkov <juri@jurta.org>
10459
10460 * international/mule.el (sgml-html-meta-auto-coding-function):
10461 Remove the condition `(search-forward "<html" size t)'.
10462 Replace `\"' with `[\"']?' in `re-search-forward'.
10463
10464 2006-06-02 Kenichi Handa <handa@m17n.org>
10465
10466 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
10467 as well as `coding'.
10468 (hack-local-variables): Likewise.
10469
10470 * international/mule.el (enable-character-translation):
10471 Put permanent-local and safe-local-variable properties.
10472 (find-auto-coding): Handle char-trans: tag.
10473
10474 2006-06-02 Juri Linkov <juri@jurta.org>
10475
10476 * international/mule.el (sgml-html-meta-auto-coding-function):
10477 Limit the search by the end of the HTML header (if any).
10478
10479 2006-06-01 Richard Stallman <rms@gnu.org>
10480
10481 * subr.el (with-current-buffer): Doc fix.
10482
10483 2006-06-02 Masatake YAMATO <jet@gyve.org>
10484
10485 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
10486 Almost rewrite. Underlines over all lines of gcov output are too
10487 uncomfortable to read. Suggested by Dan Nicolaescu.
10488
10489 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
10490
10491 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
10492
10493 * shell.el (shell-mode): Use shell-mode-map in docstring.
10494
10495 * comint.el (comint-send-input): Do not add help-echo and
10496 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
10497
10498 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10499
10500 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
10501
10502 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
10503
10504 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
10505 (gdb-stopped, gdb-info-stack-custom): If there is no source info
10506 look up the stack and pop up GUD buffer if necessary.
10507 (gdb-frames-select): Remove redundant call to gud-display-frame.
10508 (gdb-info-threads-custom): Keep point at start of buffer.
10509 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
10510
10511 2006-05-31 Juri Linkov <juri@jurta.org>
10512
10513 * replace.el (query-replace-read-from, query-replace-read-to):
10514 Bind `history-add-new-input' to nil. Call `add-to-history'.
10515
10516 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
10517
10518 * textmodes/table.el: Convert all HTML tags to lower case for
10519 XHTML compatibility.
10520
10521 2006-05-31 Masatake YAMATO <jet@gyve.org>
10522
10523 * progmodes/compile.el:
10524 (compilation-error-regexp-alist-alist::gcov-called-line):
10525 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
10526
10527 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
10528
10529 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
10530 Revert inadvertent changes made with last commit.
10531
10532 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
10533
10534 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
10535 New functions.
10536
10537 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
10538
10539 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
10540
10541 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
10542 only matches in the right place.
10543 (org-upcoming-deadline): New face.
10544 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
10545 (org-export-ascii-underline): Rename constant `org-ascii-underline'
10546 and make it an option.
10547 (org-export-ascii-bullets): New option.
10548 (org-export-as-html): Many changes to emit valid XHTML.
10549 (org-par-open): New variable.
10550 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
10551 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
10552 (org-timeline): Pass `org-timeline-show-empty-dates' to
10553 `org-get-all-dates'. Interpret empty dates returned by
10554 `org-get-all-dates'.
10555 (org-get-all-dates): New argument EMPTY. Add dates without
10556 entries to the list, mark large ranges of empty dates.
10557 (org-point-in-group, org-context): New functions.
10558
10559 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
10560
10561 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
10562
10563 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
10564 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
10565 to C-mouse-3 (for 2 button mice).
10566 (gdb-send): Do the right thing for C-d.
10567
10568 * speedbar.el (speedbar-detach): Delete.
10569 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
10570 it breaks things.
10571 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
10572
10573 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
10574
10575 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
10576 Makeppfile.
10577
10578 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10579 Add makepp diagnostic.
10580
10581 2006-05-29 Richard Stallman <rms@gnu.org>
10582
10583 * window.el (fit-window-to-buffer): Doc fix.
10584
10585 * help.el (temp-buffer-max-height): Doc fix.
10586
10587 * subr.el (with-current-buffer): Doc fix.
10588
10589 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10590
10591 * term/x-win.el: Bind F10 to menu-bar-start if available.
10592
10593 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
10594
10595 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
10596 uses with a simple test.
10597 (term-set-escape-char, term-mode, term-check-kill-echo-list)
10598 (term-send-raw-string, term-send-raw, term-mouse-paste)
10599 (term-char-mode, term-line-mode, term-exec, term-sentinel)
10600 (term-handle-exit, term-read-input-ring)
10601 (term-previous-matching-input-string)
10602 (term-previous-matching-input-string-position)
10603 (term-previous-matching-input-from-input)
10604 (term-replace-by-expanded-history, term-send-input)
10605 (term-skip-prompt, term-bol, term-send-invisible)
10606 (term-kill-input, term-delchar-or-maybe-eof)
10607 (term-backward-matching-input, term-check-source)
10608 (term-proc-query, term-emulate-terminal)
10609 (term-handle-colors-array, term-process-pager, term-pager-line)
10610 (term-pager-bob, term-unwrap-line, term-word)
10611 (term-dynamic-complete-filename)
10612 (term-dynamic-complete-as-filename)
10613 (term-dynamic-simple-complete): Replace one arm ifs with whens or
10614 unlesses.
10615
10616 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10617
10618 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
10619 during bootstrapping.
10620
10621 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
10622 Basically undo the change of 2006-05-26: use extra arguments instead of
10623 dynamic scoping.
10624 (ewoc-locate): Remove unused var `footer'.
10625
10626 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10627
10628 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
10629
10630 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
10631 (generate-file-autoloads): Obey it. Return whether autoloads were
10632 added at point or not.
10633 (update-file-autoloads): Use this new return value.
10634 Remove redundant test for the presence of an autoload cookie.
10635
10636 * emacs-lisp/autoload.el (autoload-find-file): New fun.
10637 This one calls hack-local-variables.
10638 (generate-file-autoloads, update-file-autoloads): Use it.
10639
10640 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
10641 (bibtex-sort-entry-class): Add safe-local-variable predicate.
10642 (bibtex-sort-entry-class-alist): Don't set the global value.
10643 (bibtex-init-sort-entry-class-alist): New fun.
10644 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
10645 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
10646 of bibtex-init-sort-entry-class.
10647
10648 2006-05-28 Richard Stallman <rms@gnu.org>
10649
10650 * subr.el (load-history-regexp): If FILE is relative, insist
10651 entire last name component must match it.
10652 (load-history-filename-element, load-history-regexp): Doc fixes.
10653
10654 2006-05-29 Kim F. Storm <storm@cua.dk>
10655
10656 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
10657 `pos' and `raw-data' for clarity, as eval forms may access these.
10658
10659 2006-05-28 Kim F. Storm <storm@cua.dk>
10660
10661 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
10662
10663 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10664
10665 * progmodes/make-mode.el (makefile-browser-map)
10666 (makefile-mode-syntax-table): Move initialization inside declaration.
10667 (makefile-fill-paragraph): Use the default comment-filling code.
10668
10669 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
10670
10671 * replace.el (query-replace-defaults): New variable.
10672 (query-replace-read-from): Use `query-replace-defaults' for
10673 default value, instead of history list.
10674 (query-replace-read-to): Update `query-replace-defaults'.
10675
10676 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
10677
10678 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
10679 with no X toolkit.
10680
10681 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
10682
10683 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
10684 (tumme-show-all-from-dir): Add autoload.
10685
10686 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
10687
10688 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
10689 (tumme-remove-tag): Fix bug.
10690
10691 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
10692
10693 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
10694 FOOTER args. Update unique caller.
10695 (ewoc-delete): Compute last node once before looping.
10696 (ewoc--node-branch): Merge into unique caller.
10697 (ewoc--node): Don't define constructor make-ewoc--node for this
10698 structure.
10699 (ewoc): Add member `hf-pp' to this structure.
10700 (ewoc--wrap): New func.
10701 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
10702 header/footer pretty-printers. Save header/footer pretty-printer.
10703 (ewoc-set-hf): Use ewoc's header/footer pretty-printer.
10704
10705 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
10706
10707 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
10708
10709 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
10710 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
10711 Tag'. Change "Compare directories..." to "Change Directories...".
10712 Move tumme commands to Operate, Regexp and Immediate menus.
10713 Change "Add Comment" to "Add Image Comment". Change "Add Image
10714 Tag" to "Add Image Tags".
10715
10716 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
10717 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
10718 `tumme-delete-tag'.
10719
10720 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
10721
10722 * shell.el (shell-mode): Call shell-dirtrack-mode after
10723 list-buffers-directory is made a local variable, to avoid setting
10724 the default value.
10725
10726 2006-05-26 Kevin Ryde <user42@zip.com.au>
10727
10728 * info.el (Info-index-next): Use where-is-internal to report
10729 actual binding of Info-index-next, rather than hard-coded `,'.
10730
10731 2006-05-26 Eli Zaretskii <eliz@gnu.org>
10732
10733 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
10734 and "Find Command in Manual" to here.
10735
10736 * buff-menu.el (list-buffers-noselect): For Info buffers, use
10737 Info-current-file as the file name.
10738
10739 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
10740
10741 * ses.el (defadvice undo-more): Delete this defadvice. The undo
10742 overrides will now be done a different way.
10743 (ses-set-parameter): Reapply this function for undo.
10744 (ses-set-header-row): Reconstruct header row during undo.
10745 (ses-widen): New function.
10746 (ses-goto-data, ses-reconstruct-all): Use new function.
10747 (ses-command-hook): Widen buffer during undo, before unupdating
10748 the cells.
10749 (ses-insert-row, ses-delete-row): Widen buffer during undo.
10750 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
10751 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
10752 formula hasn't been executed yet.
10753
10754 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
10755
10756 * comint.el (comint-kill-whole-line): Rename arg to count.
10757 Fix doc string.
10758
10759 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
10760
10761 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
10762 to copy-file.
10763
10764 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
10765
10766 * simple.el (toggle-truncate-lines): Make arg optional for
10767 backward compatibility.
10768
10769 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
10770
10771 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
10772 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
10773 DLL arg. Instead, use ewoc--current-dll. Update all callers.
10774 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
10775 (ewoc--adjust): Use ewoc--current-dll.
10776 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
10777
10778 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
10779
10780 * textmodes/org.el (org-next-item, org-previous-item): Emit more
10781 compact error message.
10782 (org-tags-view): Refresh category table in each file.
10783 (org-table-justify-field-maybe): Remove superfluous arguments to
10784 `format'.
10785 (org-export-as-html): Insert "<p>" before postamble.
10786 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
10787
10788 2006-05-26 Kenichi Handa <handa@m17n.org>
10789
10790 * textmodes/po.el (po-find-charset): Pay attention to the case
10791 FILENAME is a cons (NAME . BUFFER).
10792 (po-find-file-coding-system-guts): Likewise.
10793
10794 * arc-mode.el (archive-set-buffer-as-visiting-file):
10795 Call find-operation-coding-system with (FILENAME . BUFFER).
10796
10797 * tar-mode.el (tar-extract): Call find-operation-coding-system
10798 with (FILENAME . BUFFER).
10799
10800 * international/mule.el (decode-coding-inserted-region):
10801 Call find-operation-coding-system with (FILENAME . BUFFER).
10802
10803 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
10804
10805 * image-mode.el (image-toggle-display): Use buffer contents to
10806 generate image for a remote file.
10807
10808 2006-05-25 Juri Linkov <juri@jurta.org>
10809
10810 * replace.el (query-replace-read-from, query-replace-read-to):
10811 Remove 8th arg KEEP-ALL in read-from-minibuffer.
10812
10813 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
10814
10815 * whitespace.el (whitespace-cleanup): Change to cleanup
10816 region if one is active.
10817 * whitespace.el (whitespace-cleanup-internal): New internal method.
10818
10819 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
10820
10821 * dired.el (dired-mode-map): Add help-echo strings to tumme
10822 commands. Bind `tumme-dired-display-image' to C-t i.
10823
10824 * tumme.el (tumme-display-image): Change documentation string slightly.
10825 (tumme-dired-display-image): Add call to `display-buffer'.
10826
10827 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
10828
10829 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
10830 Signal error if RAW-DATA is a multibyte string.
10831
10832 2006-05-24 Richard Stallman <rms@gnu.org>
10833
10834 * subr.el (with-local-quit): When handling `quit' signal,
10835 make a chance for quit-flag to cause a quit.
10836
10837 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
10838 (ad-disable-advice): Add autoloads.
10839
10840 * subr.el (read-passwd): Copy PROMPT before changing its properties.
10841
10842 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
10843
10844 * dired.el (dired-mode-map): Change menu items for tumme as per
10845 suggestions in emacs-devel.
10846
10847 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
10848
10849 * dired.el (dired-mode-map): Fix breakage.
10850
10851 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
10852
10853 * tumme.el (tumme-display-dired-image): Rename to...
10854 (tumme-dired-display-image): ...this.
10855 (tumme-track-movement): Change default value to t.
10856 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
10857 used from `tumme-next-line-and-display' and similar commands.
10858
10859 * dired.el (dired-mode-map): Add Thumbnail submenu under the
10860 Immediate menu. Add some tumme commands there.
10861
10862 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
10863
10864 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
10865
10866 2006-05-24 Chong Yidong <cyd@mit.edu>
10867
10868 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
10869 menu entries that open submenus.
10870
10871 2006-05-24 Alan Mackenzie <acm@muc.de>
10872
10873 * startup.el (command-line): For names of preloaded files, don't
10874 append ".elc" (now done in Fload), and call file-truename on the
10875 lisp directory.
10876
10877 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
10878 match ANY loaded file with the right name, not just those in
10879 load-path. Put a regexp matching the file name into
10880 after-load-alist, rather than the name itself.
10881
10882 * subr.el (load-history-regexp, load-history-filename-element)
10883 (do-after-load-evaluation): New functions.
10884
10885 * international/mule.el (load-with-code-conversion): Do the
10886 eval-after-load stuff by calling do-after-load-evaluation.
10887
10888 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
10889
10890 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
10891 has not been killed.
10892
10893 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10894
10895 * term/mac-win.el: Set idle timer to clean up expired Apple events.
10896 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
10897 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
10898 Optionally set error message in reply.
10899
10900 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
10901
10902 * textmodes/org.el (org-open-at-point): Use renamed variable
10903 `org-confirm-shell-link-function'.
10904 (org-confirm-shell-link-function): Rename from
10905 `org-confirm-shell-links'.
10906 (org-export-directory): New function.
10907 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
10908 (org-export-icalendar): Use `org-export-directory'.
10909 (org-indent-item): Keep cursor position.
10910 (org-link-file-path-type): New option.
10911 (org-export-as-html): Fix bug with plain lists starting in
10912 column 0.
10913 (org-export-as-html): Remove deadline formatting, this happens
10914 now already in `org-html-handle-time-stamps'.
10915 (org-export-html-style): Deadline class removed.
10916 (org-insert-labeled-timestamps-at-point): New option.
10917 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
10918 of `hide-sublevels 1', in case the first headline is not level 1.
10919 (org-overview, org-content): New fuction.
10920 (org-cycle-global-status, org-cycle-subtree-status): Make these
10921 variables buffer-local.
10922 (org-global-cycle): New command.
10923 (org-shifttab): Use `org-global-cycle'.
10924 (org-insert-heading, org-insert-item): Go to end of new
10925 headline/item after creating it.
10926 (org-export-visible): Rename from `org-export-copy-visible'.
10927 Now creates a temporary org-file and applies an exporting command
10928 to it.
10929 (org-table-eval-formula): Support for lisp forms.
10930 (org-agenda-todo-ignore-scheduled): New option.
10931 (org-agenda-get-todos): Use new option
10932 `org-agenda-todo-ignore-scheduled'.
10933 (org-export-html-inline-images): New value `maybe'.
10934 (org-export-as-html): Inlining of images dependent on link description.
10935 (org-archive-subtree): Check for end-of-buffer before trying
10936 `kill-line'.
10937 (org-agenda-follow-mode): New option.
10938 (org-export-with-tags, org-export-with-timestamps): New options.
10939 (org-html-handle-time-stamps): New function.
10940 (org-keyword-time-regexp): New variable.
10941 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
10942 (org-agenda-todo-list-sublevels): New option.
10943 (org-html-level-start): When TITLE is nil, just close all levels.
10944 (org-parse-key-lines, org-parse-export-options): Remove functions,
10945 replaced by `org-infile-export-plist'.
10946 (org-combine-plists, org-infile-export-plist)
10947 (org-default-export-plist): New functions.
10948 (org-export-html-preamble, org-export-html-postamble)
10949 (org-export-html-auto-preamble, org-export-html-auto-postamble):
10950 New variables.
10951 (org-export-publishing-directory): New option.
10952 (org-export-as-html, org-export-as-ascii): Use the new property
10953 lists for settings.
10954 (org-export-copy-visible, org-export-as-xoxo):
10955 Respect `org-export-publishing-directory'.
10956 (org-link-search, org-store-link, org-file-apps): Support for
10957 links to BibTeX database entries..
10958 (org-get-current-options, org-set-regexps-and-options):
10959 Implement logging as a startup option.
10960 (org-store-link): Make sure context string is never empty
10961 (org-insert-link): Use relative path when possible.
10962 (org-at-item-checklet-p): New function.
10963 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
10964 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
10965 (org-metaright, org-metaup, org-metadown, org-shiftup)
10966 (org-shiftdown, org-shiftright, org-shiftleft)
10967 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
10968 Dispatch using `call-interactively'.
10969 (org-call-with-arg): New defsubst.
10970 (org-tag-alist, org-use-fast-tag-selection): New options.
10971 (org-complete): Use `org-tag-alist'.
10972 (org-fast-tag-insert, org-fast-tag-selection): New functions.
10973 (org-next-item, org-previous-item): New commands.
10974 (org-beginning-of-item, org-end-of-item): Add (interactive) to
10975 make command.
10976 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
10977
10978 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
10979
10980 * emacs-lisp/ewoc.el (ewoc-delete): New function.
10981 (ewoc-filter): Use `ewoc-delete'.
10982
10983 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
10984
10985 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10986
10987 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
10988 Signal more user-friendly error messages.
10989
10990 * complete.el (PC-do-completion): Undo the addition of implicit
10991 wildcards if they did not lead to finding any match.
10992 (read-file-name-internal): Don't add the final > if the completion is
10993 not finished.
10994
10995 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
10996
10997 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
10998 Quote safe-local-variable predicate.
10999
11000 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
11001
11002 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
11003
11004 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11005
11006 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
11007
11008 * progmodes/make-mode.el (makefile-special-targets-list)
11009 (makefile-macro-table, makefile-target-table): Mark as risky.
11010 (makefile-query-one-target-method): Make this the alias for the
11011 following variable.
11012 (makefile-query-one-target-method-function): Make this the real name.
11013
11014 * textmodes/artist.el (artist-text-renderer): Make this the alias
11015 for the following variable.
11016 (artist-text-renderer-function): Make this the real name.
11017
11018 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
11019 the alias for the following variable.
11020 (flyspell-generic-check-word-predicate): Make this the real name.
11021
11022 * textmodes/ispell.el (ispell-format-word): Make this the alias
11023 for the following variable.
11024 (ispell-format-word-function): Make this the real name.
11025 (ispell-message-text-end): Mark as risky.
11026
11027 * skeleton.el (skeleton-transformation, skeleton-filter)
11028 (skeleton-pair-filter): Make these the aliases for the following
11029 variables.
11030 (skeleton-transformation-function, skeleton-filter-function)
11031 (skeleton-pair-filter-function): Make these the real names.
11032
11033 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
11034 and skeleton-pair-filter-function.
11035
11036 * textmodes/sgml-mode.el (sgml-transformation): Make this the
11037 alias for the following variable.
11038 (sgml-transformation-function): Make this the real name.
11039 (sgml-tag-alist): Mark as risky.
11040
11041 2006-05-21 Richard Stallman <rms@gnu.org>
11042
11043 * simple.el (kill-region): Interactively, pass point, then mark.
11044
11045 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
11046
11047 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
11048
11049 2006-05-21 Romain Francoise <romain@orebokech.com>
11050
11051 * dired-x.el (dired-mode-map): Don't bind M-g.
11052
11053 2006-05-20 Richard Stallman <rms@gnu.org>
11054
11055 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
11056 (dired-goto-file): Doc fix.
11057
11058 2006-05-21 Kim F. Storm <storm@cua.dk>
11059
11060 * emulation/cua-base.el: Mention customizing cua-mode as alternative
11061 way to enable built-in cua-mode if user loads older CUA-mode package.
11062
11063 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
11064 if default-filename is specified.
11065
11066 2006-05-20 Eli Zaretskii <eliz@gnu.org>
11067
11068 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
11069
11070 * info.el (info-apropos): Make sure current-file and current-node
11071 have non-nil values. Speed up by using add-to-list instead of
11072 manual consing.
11073
11074 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
11075
11076 * progmodes/make-mode.el (makefile-mode): Doc fix.
11077
11078 2006-05-20 Eli Zaretskii <eliz@gnu.org>
11079
11080 * dired-aux.el (dired-do-shell-command): Doc fix.
11081
11082 2006-05-20 Kevin Ryde <user42@zip.com.au>
11083
11084 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
11085 ``(custom-manual :tag "Foo" "(foo)Node")''.
11086
11087 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
11088
11089 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
11090 value is an integer.
11091
11092 2006-05-20 Eli Zaretskii <eliz@gnu.org>
11093
11094 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
11095 "format".
11096 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
11097
11098 2006-05-20 Martin Rudalics <rudalics@gmx.at>
11099
11100 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
11101 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
11102
11103 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
11104
11105 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
11106 regexp for keywords.
11107
11108 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
11109
11110 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
11111 replace-regexp-in-string.
11112
11113 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
11114 encode, and escape file name on conversion to URL.
11115
11116 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11117
11118 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
11119 Don't unescape URL.
11120 (dnd-get-local-file-name): Unescape URL on conversion to file name.
11121
11122 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
11123 on conversion to URLs.
11124
11125 * net/browse-url.el (browse-url-file-url): Encode file name on
11126 conversion to URL.
11127
11128 * term/mac-win.el (mac-ae-open-documents): Escape file name on
11129 conversion to URL.
11130
11131 2006-05-19 Eli Zaretskii <eliz@gnu.org>
11132
11133 * progmodes/cc-styles.el (c-style-alist): Doc fix.
11134
11135 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11136
11137 * term/mac-win.el (mac-bytes-to-digits): Remove function.
11138 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
11139
11140 2006-05-19 Glenn Morris <rgm@gnu.org>
11141
11142 * calendar/diary-lib.el (diary-bahai-date)
11143 (list-bahai-diary-entries, mark-bahai-diary-entries)
11144 (mark-bahai-calendar-date-pattern): Not interactive.
11145 (add-to-diary-list): New optional arg LITERAL. Doc fix.
11146 (diary-entries-list): Change format of 4th element in each entry.
11147 (diary-list-entries): Use add-to-diary-list.
11148 (diary-goto-entry): Handle the case where the buffer visiting the
11149 diary has been killed.
11150 (fancy-diary-display): Add 'locator to button rather than 'marker.
11151 Only generate temp-face when there are marks to apply.
11152 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
11153 (diary-fancy-date-pattern): New variable.
11154 (diary-time-regexp): Doc fix.
11155 (diary-anniversary, diary-time): New faces.
11156 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
11157 diary-time-regexp. Add font-lock-multiline property where needed.
11158 Use new faces diary-anniversary and diary-time.
11159 (diary-fancy-font-lock-fontify-region-function): New function, to
11160 handle multiline font-lock pattern in fancy diary.
11161 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
11162 (diary-font-lock-keywords): Tweak time regexp. Use new face
11163 diary-time.
11164
11165 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
11166
11167 * international/code-pages.el (mik): Table corrected.
11168
11169 2006-05-18 Kim F. Storm <storm@cua.dk>
11170
11171 * progmodes/grep.el (grep-find): Don't check grep-find-command
11172 before running command (breaks non-interactive usage).
11173
11174 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
11175
11176 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
11177 (ewoc--insert-new-node): Don't insert trailing newline.
11178 Instead, adjust successor nodes's start markers.
11179 (ewoc--refresh-node): Delete all text from current node's start
11180 marker to the next one's; adjust successor nodes's start markers.
11181 (ewoc--create): Doc fixes.
11182 (ewoc--refresh): Don't insert newline.
11183 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
11184 * pcvs.el (cvs-make-cvs-buffer):
11185 Specify extra newline for ewoc's header and footer.
11186 (cvs-update-header): Update initial header recognition.
11187 Append newline to final header and footer values.
11188 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
11189
11190 2006-05-17 Richard Stallman <rms@gnu.org>
11191
11192 * files.el (file-name-extension): Doc fix.
11193
11194 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11195
11196 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
11197 we can explicitly enable/disable rather than toggle.
11198 (shell-mode): Use it.
11199 (shell-cd): Don't try to reproduce what `cd' does.
11200
11201 2006-05-17 Kim F. Storm <storm@cua.dk>
11202
11203 * ido.el (ido-read-internal): Use only nondirectory part of
11204 default item.
11205
11206 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
11207
11208 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
11209 (ewoc-nth): Doc fix.
11210
11211 (ewoc-map, ewoc-invalidate): Compute PP before looping.
11212
11213 2006-05-16 Eli Zaretskii <eliz@gnu.org>
11214
11215 * international/mule.el (auto-coding-alist): Add .lha to files
11216 read with no-conversion.
11217
11218 * files.el (auto-mode-alist): Add .lha files to archive file
11219 extensions.
11220
11221 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
11222 Convert csize to integer when computing offsets within the
11223 compressed archive file.
11224
11225 2006-05-16 Kim F. Storm <storm@cua.dk>
11226
11227 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
11228 with read-from-minibuffer.
11229
11230 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
11231
11232 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
11233 (byte-compile-warnings): Fix safe-local-variable property.
11234
11235 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
11236
11237 * allout.el (allout-show-bodies, allout-old-style-prefixes)
11238 (allout-stylish-prefixes, allout-numbered-bullet)
11239 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
11240 predicates to qualify `safe-local-variable' property, when
11241 available, else use equivalent lambda.
11242 (allout-current-topic-collapsed-p): Do the right thing regarding
11243 trailing blank lines.
11244
11245 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11246
11247 * server.el (server-start): Only create a directory if needed.
11248 (server-edit, server-unload-hook): server-start => server-mode.
11249 (kill-emacs-hook): Cleanup upon exit.
11250
11251 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11252
11253 * hexl.el (hexlify-buffer): Encode process arguments manually.
11254
11255 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
11256
11257 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
11258 call to gdb-tooltip-print.
11259
11260 2006-05-15 Romain Francoise <romain@orebokech.com>
11261
11262 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
11263 systems, default to "tar" since those systems probably have GNU tar.
11264
11265 2006-05-14 Lars Hansen <larsh@soem.dk>
11266
11267 * desktop.el (desktop-missing-file-warning): Fix docstring.
11268 (desktop-restore-file-buffer): Correct question asked on missing file.
11269
11270 2006-05-14 Kim F. Storm <storm@cua.dk>
11271
11272 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
11273 Add CUA move property.
11274
11275 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
11276
11277 * custom.el (custom-push-theme): Load the variable before checking
11278 its `standard-value'.
11279
11280 2006-05-13 Lars Hansen <larsh@soem.dk>
11281
11282 * desktop.el (desktop-save): Use with-temp-buffer.
11283
11284 2006-05-12 Glenn Morris <rgm@gnu.org>
11285
11286 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
11287 * calendar/calendar.el (calendar-mode-map):
11288 * calendar/diary-lib.el (include-other-diary-files, diary-mail-entries):
11289 * calendar/appt.el (appt-check, appt-make-list): Refer to
11290 diary-view-entries, diary-list-entries, diary-show-all-entries
11291 rather than obsolete aliases.
11292
11293 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
11294
11295 * simple.el (line-move-finish): Avoid calling point motion hooks
11296 while processing intangibility.
11297
11298 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
11299
11300 * term/xterm.el (terminal-init-xterm): Fix typo.
11301
11302 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
11303
11304 * allout.el (allout-view-change-hook): Mark as being deprecated,
11305 to be replaced by `allout-exposure-change-hook'.
11306 (allout-exposure-change-hook): New, replacing
11307 `allout-view-change-hook'.
11308 (allout-flag-region): Run new hook `allout-exposure-change-hook',
11309 in addition to `allout-view-change-hook'.
11310 (allout-show-bodies, allout-old-style-prefixes)
11311 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
11312 lambda forms to prevent their showing up in variable help
11313 presentations as inscrutable byte-compiled code.
11314 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
11315 Use string-or-null-p to qualify safe-local-variable values.
11316 (allout-reindent-bodies): Use memq to qualify matches against
11317 valid safe-local-variable values. Also, quote the lambda as above.
11318 (allout-use-mode-specific-leader): Add missing candidate-value
11319 symbols, use memq, and quote the lambda.
11320 (allout-overlay-interior-modification-handler): Remove unused
11321 variables `msg' and 'opened'.
11322 (allout-hidden-p): Constrain invisibility consideration to allout's
11323 invisibility spec, disregarding invisibility for other reasons.
11324
11325 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
11326
11327 * files.el (version-control): Correct safe values.
11328
11329 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
11330
11331 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
11332
11333 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
11334 (ewoc--insert-new-node): New func.
11335 Update callers of deleted funcs to use it, instead.
11336
11337 2006-05-11 Glenn Morris <rgm@gnu.org>
11338
11339 * calendar/calendar.el (diary-show-all-entries): Do not refer to
11340 obsolete alias `show-all-diary-entries'.
11341 (make-diary-entry): Not interactive.
11342 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
11343 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
11344 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
11345 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
11346 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
11347 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
11348
11349 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11350
11351 * calendar/calendar.el (calendar-french-date-string)
11352 (calendar-mayan-date-string, calendar-chinese-date-string)
11353 (calendar-astro-date-string, calendar-iso-date-string)
11354 (calendar-islamic-date-string, calendar-bahai-date-string)
11355 (calendar-hebrew-date-string, calendar-coptic-date-string)
11356 (calendar-ethiopic-date-string, calendar-persian-date-string):
11357 These functions are not interactive.
11358
11359 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
11360
11361 * files.el: Balance parentheses.
11362
11363 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
11364
11365 * files.el, newcomment.el, outline.el, simple.el,
11366 * emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
11367 * progmodes/cc-vars.el, progmodes/compile.el:
11368 Move `safe-local-variable' declarations to the respective files.
11369
11370 * help-fns.el (describe-variable): Don't print safe-var if it is
11371 byte-code. Improve wording as suggested by Luc Teirlinck.
11372
11373 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
11374
11375 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
11376 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
11377 Use a token for pending-triggers to ensure gdb-var-update
11378 gets called once per user input again for pre-GDB 6.4.
11379 (gdb-var-delete): Match on more complex expressions.
11380 (gdb-var-list-children-handler, gdb-var-create-handler):
11381 Use a token for consistency.
11382
11383 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
11384
11385 * textmodes/org.el (org-read-date, org-goto-calendar)
11386 (org-agenda-goto-calendar):
11387 Bind `view-calendar-holidays-initially' to nil.
11388
11389 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
11390
11391 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
11392 Update all callers to do it there, instead.
11393
11394 2006-05-10 Glenn Morris <rgm@gnu.org>
11395
11396 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
11397 prefix arg case, to avoid view-diary-entries-initially error.
11398 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
11399 (calendar-date-is-legal-p): Handle dates with no day part.
11400
11401 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
11402
11403 * comint.el (comint-insert-input): Just make it when
11404 comint-use-prompt regexp is nil (default) and with the mouse.
11405 (comint-copy-old-input): Reinstate from 2004-06-23.
11406 (comint-mode-map): Bind C-c C-m to it.
11407
11408 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
11409
11410 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
11411 Remove spurious move to point-max (new comint behavior fixes).
11412
11413 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
11414 compatibility function (Emacs 18/19).
11415 (idlwave-is-continuation-line): Always return point at start of
11416 previous non-blank continuation line.
11417 (keyword-parameters): Fix continued comment font-lock matcher.
11418 (idlwave-font-lock-fontify-region): Written, use as
11419 font-lock-fontify-region-function, to fix continued keyword
11420 fontification issues.
11421
11422 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11423
11424 * term/mac-win.el (mac-font-panel-mode): Doc fix.
11425 (mac-service-selection, mac-service-open-file)
11426 (mac-service-open-selection, mac-service-mail-selection)
11427 (mac-service-mail-to, mac-service-insert-text): Rename from
11428 mac-services-*. All uses changed.
11429 (mac-apple-event-map): Rename event symbol `services' to `service'.
11430
11431 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
11432
11433 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
11434 (ewoc--node-enter-first, ewoc--node-enter-last)
11435 (ewoc--delete-node-internal): Merge funcs into unique callers.
11436
11437 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
11438
11439 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
11440 return value of read-from-minibuffer for empty input.
11441
11442 2006-05-09 Miles Bader <miles@gnu.org>
11443
11444 * comint.el (comint-insert-input): Remove redundant calls to setq
11445 and goto-char.
11446
11447 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
11448
11449 * comint.el (comint-insert-input): Make it work when
11450 comint-use-prompt-regexp is t.
11451
11452 2006-05-10 Miles Bader <miles@gnu.org>
11453
11454 * subr.el (field-at-pos): New function.
11455
11456 * comint.el (comint-insert-input): Use it.
11457
11458 2006-05-09 Juri Linkov <juri@jurta.org>
11459
11460 * battery.el (battery-linux-proc-acpi): Also try
11461 `/proc/acpi/thermal_zone/THR2/temperature'.
11462
11463 * files.el <safe-local-variable>: Remove `eval' and `let' binding
11464 for now unused lambda `string-or-null'.
11465
11466 * add-log.el (change-log-default-name): Put `string-or-null-p'
11467 instead of lambda on `safe-local-variable' property.
11468
11469 * diff-mode.el (diff-context->unified): Use `region-beginning' and
11470 `region-end' instead of `mark' and `point'.
11471 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
11472 Operate on region in Transient Mark mode when the mark is active.
11473 Use `region-beginning' and `region-end' instead of `mark' and
11474 `point'.
11475 (diff-hunk-text, diff-goto-source): Doc fix.
11476
11477 * startup.el (fancy-splash-screens, normal-splash-screen): Use
11478 face `mode-line-buffer-id' for mode-line buffer face instead of
11479 hard-coded `(:weight bold)'.
11480
11481 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
11482 buffer-undo-list to t (undo-ask is reproducible by visiting
11483 nested archives).
11484
11485 2006-05-09 Kim F. Storm <storm@cua.dk>
11486
11487 * progmodes/grep.el (rgrep): Set default directory of *grep*
11488 buffer if we start M-x rgrep in the *grep* buffer and choose
11489 a different base directory.
11490
11491 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
11492
11493 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
11494 completion also when ido is loaded.
11495
11496 2006-05-09 Masatake YAMATO <jet@gyve.org>
11497
11498 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
11499 "warning" and "import".
11500 (cpp-font-lock-keywords): Added "warning".
11501
11502 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
11503
11504 * term/xterm.el (terminal-init-xterm): Add more key bindings.
11505
11506 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11507
11508 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
11509 pages at a time, if we signal the end, we should indeed reach that end.
11510
11511 2006-05-08 David Reitter <david.reitter@gmail.com>
11512
11513 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
11514 output during execution of the body.
11515
11516 2006-05-08 Kim F. Storm <storm@cua.dk>
11517
11518 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
11519
11520 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
11521
11522 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
11523 Use with-current-buffer.
11524
11525 2006-05-07 Kim F. Storm <storm@cua.dk>
11526
11527 * subr.el (add-to-history): Remove keep-dups arg.
11528
11529 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
11530 to nil around call to add-to-history.
11531
11532 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11533
11534 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
11535 than after a buffer modification.
11536
11537 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
11538
11539 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
11540 call to...
11541 (gud-watch): ...here so speedbar is raised for already watched
11542 expressions.
11543 (gdb-speedbar-refresh): Delete function.
11544 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
11545 Use speedbar-timer-fn instead of speedbar-refresh (reverting
11546 earlier change).
11547 (gdb-var-evaluate-expression-handler)
11548 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
11549
11550 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
11551 Update localized contents for all buffers except ignored modes.
11552
11553 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11554
11555 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
11556 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
11557 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
11558 (mac-handle-font-panel-closed, mac-handle-font-selection):
11559 New functions.
11560 (mac-font-panel-mode): New minor mode.
11561 (mac-apple-event-map): Add bindings for toolbar toggle button and
11562 font panel.
11563 (menu-bar-showhide-menu): Add mac-font-panel-mode.
11564
11565 2006-05-07 John Paul Wallington <jpw@pobox.com>
11566
11567 * ibuffer.el (ibuffer-compressed-file-name-regexp):
11568 Avoid `regexp-opt'; simplify regexp for readability.
11569
11570 2006-05-06 Eli Zaretskii <eliz@gnu.org>
11571
11572 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
11573 * files.el (buffer-stale-function):
11574 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
11575 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
11576 links to the main manual, not to emacs-xtra.
11577
11578 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11579
11580 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
11581 MacJapanese if text is ASCII-only.
11582
11583 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
11584
11585 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
11586 unless so nil isn't returned.
11587 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
11588
11589 2006-05-06 Kim F. Storm <storm@cua.dk>
11590
11591 * subr.el (add-to-history): New function.
11592
11593 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
11594 (ediff-merge-files-with-ancestor):
11595 * env.el (setenv):
11596 * isearch.el (isearch-update-ring):
11597 * server.el (server-visit-files):
11598 * progmodes/grep.el (lgrep, rgrep):
11599 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
11600 * progmodes/xscheme.el (xscheme-insert-expression):
11601 Use add-to-history.
11602
11603 * kmacro.el (kmacro-push-ring): Use add-to-history.
11604 (kmacro-ring-length): Remove unused defun.
11605 (kmacro-start-macro): Use kmacro-push-ring.
11606
11607 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
11608
11609 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
11610 directly instead of a lambda expression that calls it.
11611
11612 2006-05-06 Kim F. Storm <storm@cua.dk>
11613
11614 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
11615 instead of compute-motion.
11616
11617 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
11618
11619 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
11620 change.
11621
11622 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
11623
11624 * startup.el (command-line-1): Refer to "Pure Storage" on
11625 pure-space-overflow.
11626
11627 2006-05-05 Martin Rudalics <rudalics@gmx.at>
11628
11629 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
11630 provided faces once they all have been used up.
11631
11632 2006-05-05 Eli Zaretskii <eliz@gnu.org>
11633
11634 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
11635 reference to the Lisp manual to the warning about pure space
11636 overflow.
11637
11638 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
11639
11640 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
11641 argument to avoid the call to `ispell-internal-change-dictionary'
11642 when not needed.
11643 (ispell-change-dictionary): Use this argument and call
11644 `ispell-internal-change-dictionary' after the possible change
11645 to `ispell-local-dictionary'.
11646 (ispell-internal-change-dictionary): Check for a change in
11647 personal dictionary use too.
11648
11649 2006-05-05 Eli Zaretskii <eliz@gnu.org>
11650
11651 * startup.el (command-line): On MS-Windows, probe "~", not
11652 "~USER", for warning about non-existent home directory.
11653
11654 * arc-mode.el (archive-l-e): New optional argument `float' means
11655 generate a float value.
11656 (archive-arc-summarize, archive-lzh-summarize)
11657 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
11658 with 3rd argument non-nil when file's size is being computed.
11659 Format the file sizes with %8.0f instead of %8d.
11660
11661 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11662
11663 * cus-start.el (all): Add mac-dnd-known-types.
11664
11665 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
11666 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
11667 (mac-TIFF-to-string): New functions.
11668 (x-get-selection, x-selection-value)
11669 (mac-select-convert-to-string): Use them.
11670 (mac-text-encoding-mac-japanese-basic-variant): New constant.
11671 (mac-dnd-types-alist): New customization variable.
11672 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
11673 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
11674 (mac-dnd-handle-drag-n-drop-event): New functions.
11675 (mac-drag-n-drop): Remove function.
11676 (global-map): Bind drag-n-drop and M-drag-n-drop to
11677 mac-dnd-handle-drag-n-drop-event.
11678
11679 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
11680
11681 * progmodes/perl-mode.el (perl-beginning-of-function):
11682 Skip anonymous subs.
11683
11684 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
11685
11686 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
11687 regexp-opt at run time.
11688
11689 * term.el (term-handle-ansi-escape): Fix off by one error.
11690
11691 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
11692
11693 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
11694 (gdb-init-1, gdb-post-prompt): ...and references to it.
11695 (gdb-frame-handler): Strip directory name from filename if present.
11696
11697 * progmodes/gud.el (gdb-force-update): Delete defvar
11698 (gud-speedbar-buttons): ...and references to it. Use window-start
11699 to try to keep positon in watch expression.
11700
11701 2006-05-03 Richard Stallman <rms@gnu.org>
11702
11703 * simple.el (next-history-element, previous-history-element): Doc fix.
11704
11705 * isearch.el (isearch-update-ring): Doc fix.
11706
11707 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
11708
11709 * isearch.el (isearch-update-ring): Take history-delete-duplicates
11710 into consideration. Replace one arm ifs with whens.
11711
11712 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
11713
11714 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
11715 (menu): Fix typo.
11716
11717 2006-05-02 Miles Bader <miles@gnu.org>
11718
11719 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
11720
11721 2006-05-02 Jay Belanger <belanger@truman.edu>
11722
11723 * calc/calc-embed.el (calc-override-minor-modes-map)
11724 (calc-override-minor-modes): New variables.
11725 (calc-do-embedded): Make sure that Calc keystrokes aren't
11726 overwritten by minor modes.
11727
11728 2006-05-02 Chong Yidong <cyd@mit.edu>
11729
11730 * msb.el (msb): If EVENT is a down event, read and discard the up event.
11731
11732 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
11733
11734 * startup.el (command-line-1): Refer to Lisp manual when
11735 pure-space-overflow occurs.
11736
11737 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
11738 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
11739 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
11740 (version-control): Don't use `t' for safe-local-variable declarations.
11741
11742 2006-05-01 Richard Stallman <rms@gnu.org>
11743
11744 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
11745 M-r, M-R, M-A, M-SPC or M-DEL.
11746 (diff-mode-map): diff-refine-hunk now on C-c C-w
11747 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
11748
11749 * help-mode.el (help-mode): view-exit-action calls delete-window
11750 only when it is safe and possible.
11751
11752 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
11753 in messages.
11754
11755 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
11756
11757 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
11758 in the default tool-bar-map.
11759
11760 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
11761
11762 * net/tramp.el (tramp-completion-file-name-handler-alist)
11763 (tramp-run-real-handler, tramp-completion-run-real-handler)
11764 (tramp-completion-handle-file-name-all-completions)
11765 (tramp-completion-handle-file-name-completion): Autoload them.
11766 (tramp-completion-handle-file-exists-p)
11767 (tramp-completion-handle-file-name-directory)
11768 (tramp-completion-handle-file-name-nondirectory)
11769 (tramp-completion-handle-expand-file-name): Remove them.
11770 (tramp-handle-file-name-directory): Return the real directory name.
11771 Returning "/" only doesn't need to be necessary any longer.
11772 (tramp-file-name-handler): Make special attention when in hostname
11773 completion mode.
11774 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
11775 (tramp-register-file-name-handlers):
11776 Register `tramp-completion-file-name-handler' only when
11777 `partial-completion-mode' is enabled.
11778 (tramp-completion-handle-file-name-all-completions):
11779 Delete directory part from results.
11780 (tramp-get-completion-methods, tramp-get-completion-user-host):
11781 Discard deleting "/", it doesn't work after the change of
11782 `tramp-handle-file-name-directory' above.
11783
11784 2006-05-01 Kim F. Storm <storm@cua.dk>
11785
11786 * progmodes/grep.el (grep-expand-template): Use save-match-data
11787 and symbol-value.
11788
11789 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11790
11791 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
11792 Use select-frame-set-input-focus instead of raise-frame.
11793 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
11794
11795 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
11796
11797 * progmodes/gud.el (gud-def): Add %c case.
11798 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
11799 (gud-format-command): Make match case sensitive. Match on %F.
11800
11801 2006-04-30 Glenn Morris <rgm@gnu.org>
11802
11803 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
11804 (cal-tex-preamble): Use cal-tex-preamble-extra.
11805 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
11806 than alias `list-diary-entries'.
11807
11808 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
11809
11810 * help-fns.el (describe-variable): Add info about safe local variables.
11811
11812 2006-04-29 Richard Stallman <rms@gnu.org>
11813
11814 * bindings.el (mode-line-format): help-echo doc fixes.
11815
11816 * net/tramp.el (tramp-file-name-handler-alist): Delete
11817 expand-file-name and other operations that can cause spurious loading.
11818
11819 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11820
11821 * files.el (safe-local-variable-p): Remove support for the special
11822 value t.
11823
11824 * textmodes/paragraphs.el (sentence-end-without-space):
11825 Fix safety predicate.
11826 (sentence-end-double-space, sentence-end-without-period)
11827 (paragraph-ignore-fill-prefix):
11828 * textmodes/fill.el (colon-double-space):
11829 * abbrev.el (abbrev-mode): Tighten the safety predicate.
11830
11831 * subr.el (booleanp): New fun.
11832
11833 * textmodes/reftex-vars.el (reftex-guess-label-type):
11834 Tighten the safety predicate.
11835
11836 2006-04-28 Kim F. Storm <storm@cua.dk>
11837
11838 * progmodes/grep.el (defgroup grep): Doc fix.
11839 (grep-auto-highlight): Remove.
11840 (grep-template): New defcustom.
11841 (grep-find-template): Rename from grep-tree-template.
11842 (grep-files-aliases): Rename from grep-tree-files-aliases.
11843 Remove "all" alias, add "l" alias.
11844 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
11845 (grep-find-ignored-directories): New defcustom to replace
11846 grep-tree-ignore-CVS-directories, to facilitate ignoring
11847 subdirectories for multiple version control systems.
11848 (grep-mode-map): Add Recursive grep item to GREP menu.
11849 (grep-regexp-history, grep-files-history): New defvars.
11850 (grep-probe): New helper function.
11851 (grep-compute-defaults): Use it to simplify code.
11852 Adapt to name changes.
11853 Use `.' as base in grep-find-template rather than <D>.
11854 (grep): Remove superfluous highlight-regexp arg. Fix doc.
11855 Call grep-compute-defaults unconditionally.
11856 (grep-expand-keywords): New defconst.
11857 (grep-expand-template): Rename from grep-expand-command-macros.
11858 Simplify via grep-expand-keywords. Look at case-fold-search instead
11859 of grep-tree-ignore-case to add -i option.
11860 Bind case-fold-search to nil while matching keywords.
11861 (grep-tree-last-regexp, grep-tree-last-files): Remove.
11862 (grep-read-regexp, grep-read-files): New helper functions.
11863 (rgrep): Rename from grep-tree. Rework to use proper histories.
11864 Adapt to changes in defcustoms and functions above.
11865 (lgrep): New command, as grep, but using same interactive UI as rgrep.
11866
11867 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
11868
11869 * net/tramp.el (tramp-completion-file-name-handler):
11870 Disable Tramp's functionality while loading Tramp itself.
11871 (tramp-register-file-name-handlers): That's a defsubst now.
11872 Code from `tramp-repair-jka-compr' moved here. Apply it via
11873 `after-init-hook'.
11874 (tramp-repair-jka-compr): Remove.
11875
11876 2006-04-27 Jay Belanger <belanger@truman.edu>
11877
11878 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
11879 read expression when `math-read-big-expr' doesn't work.
11880
11881 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
11882
11883 * startup.el (command-line-1): Display warning when
11884 pure-space-overflow is non-nil.
11885
11886 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11887
11888 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
11889 risky.
11890
11891 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11892
11893 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
11894 Return the URL or nil if none can be generated.
11895
11896 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
11897
11898 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
11899 byte compiler warnings.
11900 (gud-basic-call, gud-find-expr): Let user select an expression
11901 for printing. Print expression as well as value in GUD buffer.
11902
11903 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
11904
11905 * allout.el: Remove local autoload declaration for
11906 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
11907 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
11908 (allout-plain-bullets-string, allout-distinctive-bullets-string)
11909 (allout-use-mode-specific-leader, allout-old-style-prefixes)
11910 (allout-stylish-prefixes, allout-numbered-bullet)
11911 (allout-file-xref-bullet, allout-presentation-padding)
11912 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
11913 safe-local-variable with suitable value spec, and add autoload
11914 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
11915 (move-beginning-of-line, move-end-of-line): Repair so these compat
11916 functions now actually resituate the point, when appropriate.
11917
11918 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11919
11920 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
11921
11922 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
11923 (add-log-iso8601-time-string): Fix call to format-time-string.
11924
11925 2006-04-26 Kim F. Storm <storm@cua.dk>
11926
11927 * subr.el (posn-string, posn-image, posn-object): Doc fix.
11928
11929 2006-04-26 Masatake YAMATO <jet@gyve.org>
11930
11931 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
11932 Add support for "//" style comments. Remove `b' flag
11933 from ?* in `asm-mode-syntax-table'.
11934
11935 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11936
11937 * follow.el: Use (featurep 'xemacs) everywhere.
11938 (follow-mode): Use define-minor-mode.
11939 (follow-mode-map): Move initialization into the declaration.
11940 Use command remapping.
11941 (follow-emacs-version-xemacs-p): Remove.
11942 (follow-submit-feedback): Remove.
11943
11944 * allout.el (allout-layout, allout-passphrase-verifier-string)
11945 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
11946
11947 * textmodes/reftex-vars.el (reftex-vref-is-default)
11948 (reftex-fref-is-default, reftex-guess-label-type):
11949 Tighten up a bit the safety predicate.
11950
11951 * textmodes/paragraphs.el (sentence-end-double-space)
11952 (sentence-end-without-period, sentence-end-without-space)
11953 (page-delimiter, paragraph-ignore-fill-prefix):
11954 Tighten up a bit the safety predicate.
11955
11956 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
11957
11958 * progmodes/python.el (python-continuation-line-p)
11959 (python-beginning-of-statement): syntax-ppss may return
11960 a negative depth.
11961 (python-mode): Don't forcefully enable font-lock.
11962
11963 * time-stamp.el (time-stamp-start, time-stamp-end)
11964 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
11965
11966 * add-log.el: Remove spurious * in docstrings.
11967 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
11968 (add-change-log-entry): Use it here, since it's not specific
11969 to iso8601.
11970 (add-log-iso8601-time-string): Don't use it here any more.
11971 (change-log-indent-text, change-log-indent): Rename from add-log-*.
11972
11973 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
11974
11975 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
11976
11977 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
11978 (rcirc-toggle-low-priority): Doc fix.
11979 (rcirc-handler-NOTICE): Remove beginning of line anchor in
11980 ChanServ regexp.
11981 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
11982 #emacs.
11983 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
11984 (rcirc-decode-coding-system): Use utf-8 as the default.
11985 (rcirc-multiline-minor-mode): Set the fill-column.
11986 (rcirc-format-response-string): Display bright and dim nicks.
11987 (rcirc-browse-url): Update interactive spec to fill ARG.
11988 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
11989 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
11990
11991 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
11992
11993 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
11994 case for @Article, etc.
11995
11996 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
11997
11998 * net/tramp.el (tramp-register-file-name-handlers): New defun.
11999 Added with autoload cookie.
12000 (tramp-unload-file-name-handlers): Rename from
12001 `tramp-unload-file-name-handler-alist'.
12002
12003 2006-04-23 Romain Francoise <romain@orebokech.com>
12004
12005 * comint.el (comint-match-partial-filename): Doc fix.
12006
12007 2006-04-21 Glenn Morris <rgm@gnu.org>
12008
12009 * calendar/cal-menu.el (calendar-mode-map): Refer to
12010 `diary-view-entries' rather than alias `view-diary-entries'.
12011 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
12012
12013 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
12014
12015 * progmodes/antlr-mode.el (antlr-default):
12016 * cus-edit.el (custom-documentation):
12017 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
12018 in defface.
12019
12020 2006-04-21 Kim F. Storm <storm@cua.dk>
12021
12022 * image.el (image-type): New defun split out of create-image.
12023 (create-image): Use it.
12024
12025 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
12026
12027 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
12028 (org-open-at-point): Remove the "...done" message to keep output
12029 in the echo area visible.
12030 (org-export-as-xoxo): Fix call to `indent-region'.
12031
12032 2006-04-21 Kevin Ryde <user42@zip.com.au>
12033
12034 * international/mule.el (keyboard-coding-system): defcustom
12035 info-link fixes: "Specify Coding" has been split, keyboard now in
12036 "Terminal Coding", and "Single-Byte Character Support" is now
12037 "Unibyte Mode".
12038
12039 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
12040
12041 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
12042 Use font-lock-warning-face for any errors e.g. no stack.
12043 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
12044
12045 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
12046
12047 * progmodes/sh-script.el (sh-shell): Mark as safe.
12048
12049 * newcomment.el (comment-start, comment-start-skip)
12050 (comment-end-skip, comment-end): Mark as safe.
12051
12052 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
12053
12054 * textmodes/org.el (org-deadline-announce): Face removed.
12055 (org-level-faces, org-n-levels): Convert to constant.
12056 (org-compatible-face): New function.
12057 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
12058 (org-level-5, org-level-6, org-level-7, org-level-8)
12059 (org-special-keyword, org-warning, org-headline-done, org-link)
12060 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
12061 (org-scheduled-today, org-scheduled-previously, org-time-grid):
12062 Face definition revised for better color tty support.
12063 (org-bold-re, org-italic-re, org-underline-re): New constants.
12064 (org-set-font-lock-defaults): Use the new constants.
12065 (org-agenda-highlight-todo): New function.
12066 (org-agenda-todo): Fix bug with point at end of line.
12067 (org-agenda-change-all-lines, org-finalize-agenda-entries):
12068 Fontify TODO keywords.
12069 (org-insert-link): Preserve relative path in ../ links.
12070 (org-export-as-html): Convert links pointing to .org files into
12071 links that will work beteen the exported HTML files.
12072 (org-todo-list): Fix bug when arg=0.
12073 (org-insert-heading): More fine-tuning.
12074
12075 2006-04-19 Romain Francoise <romain@orebokech.com>
12076
12077 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
12078 from `rmail-mime-charset-pattern'.
12079
12080 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
12081
12082 * progmodes/python.el (python-mode): Fix typo.
12083
12084 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
12085
12086 * comint.el (comint-previous-input): Don't clobber input line
12087 when moving off either end of the input history ring.
12088 (comint-delete-input): New function, used by
12089 `comint-previous-input' and others.
12090 (comint-previous-matching-input):
12091 Use `coming-delete-input'. Save the partial input if leaving the
12092 edit line. Goto point-max before deleting input to avoid
12093 partial input fragments hanging around.
12094 (comint-restore-input): New function, used by `comint-previous-input'.
12095
12096 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
12097
12098 * imenu.el (imenu--index-alist): Balance parentheses.
12099
12100 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
12101
12102 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
12103
12104 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
12105
12106 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
12107 file is nil.
12108
12109 2006-04-18 Richard Stallman <rms@gnu.org>
12110
12111 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
12112
12113 * imenu.el (imenu-create-index-function, imenu--index-alist)
12114 (imenu--last-menubar-index-alist, imenu--make-index-alist)
12115 (imenu-default-create-index-function, imenu--generic-function):
12116 Doc fixes.
12117
12118 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
12119
12120 * help-mode.el (help-mode): Set view-exit-action to delete window.
12121
12122 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
12123 now works by passing nil as arg.
12124
12125 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
12126
12127 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
12128 (read-abbrev-file): Provide default when reading filename.
12129
12130 * files.el (enable-local-variables): Allow :all as value.
12131 (hack-local-variables): Implement that value.
12132 (safe-local-variable-values, safe-local-eval-forms)
12133 (enable-local-variables): Mark as risky.
12134 (find-file-visit-truename, kept-old-versions): Mark safe.
12135
12136 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
12137 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
12138 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
12139
12140 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
12141
12142 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
12143 Use forward-line so as to get to BOL even in the presence of fields.
12144 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
12145 in return.
12146 (inferior-tcl): Tell tclsh to work in interactive mode.
12147
12148 * complete.el (partial-completion-mode):
12149 Use 'choose-completion-string-functions to make sure that
12150 choose-completion fills the minibuffer properly.
12151
12152 * complete.el (PC-old-read-file-name-internal): Remove.
12153 (PC-read-include-file-name-internal): Remove. Turn it into an advice
12154 of read-file-name-internal.
12155 (partial-completion-mode): Enable/disable this advice.
12156
12157 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
12158
12159 * net/tramp.el (tramp-completion-file-name-handler): Revert change
12160 of 2006-04-17.
12161
12162 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
12163
12164 * textmodes/org.el (org-insert-heading): Insert heading before
12165 current if at beginning of line.
12166 (org-todo, org-date): New faces.
12167 (org-table-align): Make sure tooltip window contains full text.
12168 (org-no-properties): New defsubst.
12169 (org-set-font-lock-defaults): Use new faces.
12170
12171 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
12172
12173 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
12174 for root variables.
12175
12176 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
12177 (gdb-frame-address): Re-use to identify frame for watch expression.
12178 (gdb-var-list, gdb-var-create-handler): Add frame address for root
12179 variables.
12180 (gdb-init-1, gdb-source, gdb-post-prompt)
12181 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
12182 (gdb-frame-handler): Get gdb-frame-address.
12183
12184 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
12185
12186 Sync with Tramp 2.0.53.
12187
12188 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
12189 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
12190 (tramp-completion-file-name-handler): Add autoload cookie for
12191 adding to `file-name-handler-alist'.
12192
12193 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
12194 the prompt. If it returns earlier (when detecting an error
12195 message), the rest of the output will merge accidently with the
12196 output of the next command. Reported by M Jared Finder
12197 <jared@hpalace.com>.
12198
12199 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
12200 for `process-file', in order to let it work for older Emacsen too.
12201
12202 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
12203
12204 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
12205 (tex-font-lock-keywords-3): Use it.
12206
12207 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
12208
12209 * newcomment.el (comment-add): New function.
12210 (comment-region-default, comment-dwim): Use it.
12211
12212 2006-04-15 Michael Olson <mwolson@gnu.org>
12213
12214 * emacs-lisp/tq.el: Improve comments.
12215 (tq-queue-head-question): New accessor function.
12216 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
12217 Update for modified queue structure.
12218 (tq-queue-add): Accept `question' argument.
12219 (tq-queue-pop): If a question is pending, send it.
12220 (tq-enqueue): Accept new optional argument `delay-question'.
12221 If this is non-nil, and at least one other question is pending a
12222 response, queue the question rather than sending it immediately.
12223
12224 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12225
12226 * calendar/appt.el (appt-add): Check whether an appointment is
12227 already present in appt-time-msg-list. Simplify code.
12228
12229 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12230
12231 * progmodes/cc-langs.el (c-mode-menu):
12232 Don't presume c-subword-mode is bound.
12233
12234 2006-04-13 Bill Wohler <wohler@newt.com>
12235
12236 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
12237 (customize-package-emacs-version): Use cdr instead of cadr now
12238 that alists use dotted pairs.
12239
12240 * custom.el (defcustom): Fix docstring for :package-version.
12241
12242 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
12243
12244 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
12245 (tramp-handle-shell-command): Display output buffer only when
12246 `tramp-display-shell-command-buffer' is true.
12247 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
12248
12249 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
12250
12251 * textmodes/org.el (org-set-autofill-regexps): Set only the local
12252 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
12253
12254 2006-04-13 Romain Francoise <romain@orebokech.com>
12255
12256 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
12257 leaving temporary .cvsignore buffers behind.
12258
12259 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
12260
12261 * textmodes/org.el (org-set-regexps-and-options)
12262 (org-get-current-options): Better names for the startup folding
12263 options.
12264
12265 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
12266
12267 * vc.el (vc-annotate): Arrange for point to end up at the same
12268 line number as in the original, but only when using a new buffer.
12269
12270 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
12271
12272 * files.el (hack-one-local-variable-eval-safep):
12273 Recognize `edebug-form-spec' for `put', but only if it passes
12274 `edebug-basic-spec'. Generalize `put' handling.
12275
12276 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
12277 vetting file-local form specs.
12278
12279 * allout.el (allout-layout): Autoload its `safe-local-variable'
12280 property.
12281
12282 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
12283
12284 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
12285 (org-agenda-mouse-1-follows-link)
12286 (org-mouse-1-follows-link): New options.
12287 (org-format-agenda-item): Fix bug if TAGS is nil.
12288 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
12289
12290 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
12291
12292 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
12293 GDB 6.1+ gives full filename for "info sources" so use
12294 file-name-nondirectory.
12295
12296 2006-04-12 Romain Francoise <romain@orebokech.com>
12297
12298 * subr.el (read-passwd): Bind `message-log-max' to nil.
12299
12300 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12301
12302 * progmodes/perl-mode.el (perl-indent-new-calculate):
12303 Recompute parse-start after jumping backward by a whole sexp.
12304
12305 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12306
12307 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
12308 window configuration.
12309 (vc-annotate-display-select): Select the buffer so that current-buffer
12310 (and selected-window) is the output buffer at the end of vc-annotate.
12311
12312 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
12313
12314 * vc.el (vc-annotate-color-map): Add custom TTY color map for
12315 8-color terminals, to use all of the colors in a sensible order.
12316 256-color terminals work well with the standard map.
12317 (vc-annotate-lines): Only strip the first color character if it
12318 is "#", to allow for terminal-style named colors.
12319 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
12320 the correct buffer is scrolled.
12321
12322 2006-04-11 Richard Stallman <rms@gnu.org>
12323
12324 * emacs-lisp/bytecomp.el (byte-compile-file):
12325 Bind enable-local-variables to :safe, and make normal-mode obey it.
12326
12327 * files.el (enable-local-variables): Allow value :safe.
12328 (normal-mode): Doc fix.
12329 (hack-local-variables): Implement enable-local-variables = :safe.
12330 (hack-local-variables-confirm): Don't prevent quitting.
12331
12332 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12333
12334 * loadhist.el (unload-feature): A bit of sanity check of
12335 load-history entries. Cancel timer-vars before unbinding them.
12336
12337 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
12338 quote special chars, and make the trick work on the hex part of the
12339 buffer as well.
12340 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
12341 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
12342
12343 * startup.el (normal-splash-screen): Fix last change so we don't wait
12344 2 minutes if we don't show the splash screen.
12345
12346 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
12347
12348 * textmodes/org.el (org-export-plain-list-max-depth)
12349 (org-table-spaces-around-separators)
12350 (org-radio-targets, org-activate-camels)
12351 (org-table-spaces-around-invisible-separators): Options removed.
12352 (org-time-stamp-rounding-minutes, org-remember-templates)
12353 (org-ellipsis, org-activate-links, org-descriptive-links):
12354 New options.
12355 (org-remember-apply-template, org-current-time)
12356 (org-finish-edit-table-field)
12357 (org-link-unescape, org-link-escape)
12358 (org-string-width, org-table-clean-line, org-html-do-expand)
12359 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
12360 (org-read-agenda-file-list): New functions.
12361 (org-table-edit-field)
12362 (org-table-create-or-convert-from-region): New commands
12363 (org-table-toggle-vline-visibility): Command removed.
12364 (org-table-convert-region): Made a command.
12365 (orgtbl-deleta-backward-char, orgtbl-delete-char): Remove commands.
12366 Replace with the normal org- functions.
12367 (org-self-insert-command): Don't trigger realign unnecessarily
12368 when blanking a field that is not full.
12369 (org-mode): `Set buffer-invisibility-spec' for links.
12370 (org-activate-links2): Hide link part and only show descriptive
12371 part of the link.
12372 (org-insert-link): Modify for new linking system.
12373 (org-store-link): Store description separately, for use by
12374 `org-insert-link'.
12375 (org-table-align): Use `org-string-width'.
12376 (defgroup): Completely new group structure for custom variables.
12377 (org-agenda-files): Option: Single file name allowed. Function:
12378 Optional argument unrestrited means ignore any restricitons.
12379 (org-install-agenda-files-menu): Find a buffer in Org-mode before
12380 trying to modify the menu. Use generalized access to
12381 `org-agenda-files.'
12382 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
12383 (org-agenda-file-to-front, org-remove-file, org-diary)
12384 (org-tags-view, org-export-icalendar-all-agenda-files)
12385 (org-export-icalendar-combine-agenda-files): Use generalized
12386 access to `org-agenda-files'.
12387 (org-remember-handler): Correctly preserve heading if present.
12388 (org-table-insert-row, org-table-insert-hline): Deal with
12389 invisible characters.
12390
12391 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
12392
12393 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
12394 (vc-annotate-color-map): New 18 element constant
12395 value/saturation, rotating hue colormap, from red->blue.
12396 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
12397 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
12398 (vc-annotate): To avoid killing the required local variables,
12399 set them before the end of `with-output-to-temp-buffer', and
12400 after first switching to annotate-mode.
12401 (vc-annotate-warp-version): Add buffer argument in goto-line to
12402 ensure annotation, not source, is scrolled.
12403
12404 2006-04-10 Bill Wohler <wohler@newt.com>
12405
12406 * custom.el (defcustom, custom-handle-keyword):
12407 Add :package-version keyword.
12408 (custom-add-package-version): New function. Sets value of new
12409 property 'custom-package-version from :package-version keyword.
12410 (defcustom): Create Common Keywords section in docstring.
12411 (defface, defgroup): Replace definitions of a select few keywords
12412 with a reference to the Common Keywords in defcustom.
12413 (defcustom, defface, defgroup): Replace reference to Customization
12414 chapter in manual with hyperlink.
12415
12416 * cus-edit.el (customize-package-emacs-version-alist): New variable.
12417 (customize-changed-options): Add check for custom-package-version.
12418 (customize-package-emacs-version): New function to look up Emacs
12419 version corresponding to the given package version.
12420
12421 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
12422 defun name, in similar fashion to find-variable-regexp.
12423
12424 2006-04-10 Eli Zaretskii <eliz@gnu.org>
12425
12426 * international/mule-cmds.el (set-locale-environment): Fix last
12427 change for when the locale's preferences don't specify any encoding.
12428
12429 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12430
12431 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
12432 so the defined var/fun doesn't need to be quoted.
12433
12434 2006-04-10 Richard Stallman <rms@gnu.org>
12435
12436 * finder.el (finder-mode-map): Add n and p bindings.
12437
12438 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
12439
12440 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
12441 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
12442 (gdb-setup-windows): Put something in source window if we can't find
12443 the source file.
12444 (gdb-frame-handler): Make it work again with just assembly.
12445 (gdb-data-list-register-values-handler): Make it work when there is
12446 no stack.
12447
12448 2006-04-09 Richard Stallman <rms@gnu.org>
12449
12450 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
12451 specs while looking for charset.
12452
12453 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
12454
12455 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
12456 Make them faces.
12457 (lm-font-lock-keywords): Update appropriately.
12458
12459 2006-04-10 Kim F. Storm <storm@cua.dk>
12460
12461 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
12462 it can also replace buffer-substring-no-properties.
12463
12464 * emulation/cua-base.el (cua-delete-region, cua-paste)
12465 (cua-repeat-replace-region): Use filter-buffer-substring.
12466
12467 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
12468 (cua-cut-region-to-global-mark): Likewise.
12469
12470 * emulation/cua-rect.el (cua--extract-rectangle)
12471 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
12472
12473 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12474
12475 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
12476 entry-type. Add field delimiters to numerical fields if they are
12477 not present.
12478
12479 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12480
12481 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
12482 string-const to return value.
12483 (bibtex-remove-delimiters): Use it.
12484
12485 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12486
12487 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
12488 cl-byte-compile-compiler-macro unless it exists.
12489
12490 2006-04-08 Eli Zaretskii <eliz@gnu.org>
12491
12492 * files.el (hack-local-variables-confirm) <offer-save>:
12493 Clarify message text. Suggested by Ralf Angeli.
12494
12495 2006-04-08 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
12496
12497 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
12498 (delete-extract-rectangle-line): Use `filter-buffer-substring'
12499 instead of `buffer-substring' and `delete-region'. (Most of the
12500 code actually copied from `kill-region'.)
12501
12502 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
12503
12504 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
12505 (rcirc-default-port): Rename from rcirc-port.
12506 (rcirc-default-nick): Rename from rcirc-nick.
12507 (rcirc-default-user-name): Rename from rcirc-user-name.
12508 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
12509 (rcirc-low-priority-flag): New variable.
12510 (rcirc-decode-coding-system): New defcustom.
12511 (rcirc-encode-coding-system): New defcustom.
12512 (rcirc-coding-system-alist): New defcustom.
12513 (rcirc-multiline-major-mode): New defcustom.
12514 (rcirc-nick): New internal variable.
12515 (rcirc-process): Remove variable.
12516 (rcirc-server-buffer): New variable.
12517 (rcirc): Update to use rcirc-default-* variables above.
12518 (rcirc-connect): Do not add window-configuration-hook-here.
12519 (rcirc-server): New internal variable.
12520 (rcirc-connect): Do not send keepalive pings if
12521 rcirc-keepalive-seconds is nil.
12522 (with-rcirc-server-buffer): New macro.
12523 (rcirc-send-string): Encode with rcirc-encode-coding-system.
12524 (rcirc-server-name): Rename from rcirc-server.
12525 (rcirc-buffer-process): New function.
12526 (rcirc-buffer-nick): New function.
12527 (rcirc-buffer-target): Remove function.
12528 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
12529 New commands.
12530 (rcirc-mode-map): Change binding of C-c C-l to
12531 rcirc-toggle-low-priority.
12532 (rcirc-mode): Initialize coding system based on
12533 rcirc-coding-system-alist. New change-major-mode-hook to part the
12534 channel on a mode change. Make kill-buffer-hook buffer-local.
12535 (rcirc-change-major-mode-hook): New function.
12536 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
12537 (rcirc-last-post-time): New variable.
12538 (rcirc-process-message): Store the last time user posted a message
12539 to this target.
12540 (rcirc-multiline-minor-mode): New mode.
12541 (rcirc-multiline-minor-mode-map): New mode map.
12542 (rcirc-edit-multiline): Put multiline-edit buffer in
12543 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
12544 (rcirc-print): Ignore any line starting with an ignored nick.
12545 (rcirc-print): Decode using rcirc-decode-coding-system.
12546 (rcirc-track-minor-mode): Update global-mode-string when disabling
12547 this mode.
12548 (minor-mode-alist): Add LowPri indicator.
12549 (rcirc-toggle-low-priority): New function.
12550 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
12551 next lowpriority buffer with activity.
12552 (rcirc-record-activity): Sort buffers in rcirc-activity by the
12553 last time the user posted a message in to the target.
12554 (rcirc-update-activity-string): New formatting for low priority
12555 buffers.
12556 (rcirc-split-activity): New function.
12557 (rcirc-handler-PART, rcirc-handler-KICK)
12558 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
12559 (rcirc-nick-away-alist): New variable.
12560 (rcirc-handler-301): New handler. Away messages are printed once
12561 per change.
12562
12563 2006-04-08 Eli Zaretskii <eliz@gnu.org>
12564
12565 * info.el (Info-follow-nearest-node): Doc fix.
12566
12567 * international/mule-cmds.el (set-locale-environment): Make sure
12568 the coding-system preferred by the locale's language has the same
12569 EOL conversion type as the original buffer-file-coding-system.
12570 (locale-language-names): Add a few MS Windows language codes.
12571
12572 2006-04-07 Richard Stallman <rms@gnu.org>
12573
12574 * simple.el (eval-expression): Doc fix.
12575
12576 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
12577 (eval-defun): Doc fixes.
12578
12579 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
12580
12581 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
12582
12583 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
12584
12585 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
12586 GDB list command without argument for greater generality.
12587
12588 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
12589
12590 * subr.el (string-or-null-p): New function.
12591
12592 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
12593
12594 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
12595
12596 * files.el: Update comment about safe-local-variable declarations.
12597
12598 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
12599
12600 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
12601 See idlwave.org.
12602
12603 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
12604 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
12605
12606 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
12607 See idlwave.org.
12608
12609 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
12610 version 6.0 (minimal changes). See idlwave.org.
12611
12612 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
12613 6.0 (minimal changes). See idlwave.org.
12614
12615 * progmodes/idlw-rinfo.el: File obsoleted and removed.
12616
12617 2006-04-06 Romain Francoise <romain@orebokech.com>
12618
12619 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
12620 symmetric encryption features and a new asynchronous interface to
12621 GnuPG. This new version is version 1.4, plus whitespace changes.
12622
12623 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
12624
12625 * files.el: Move some `safe-local-variable' declarations to the
12626 respective files.
12627
12628 * textmodes/ispell.el (ispell-check-comments)
12629 (ispell-local-dictionary): Mark as safe.
12630
12631 * abbrev.el (abbrev-mode): Mark as safe.
12632
12633 * add-log.el (change-log-default-name): Mark as safe.
12634
12635 * textmodes/reftex-vars.el (reftex-vref-is-default)
12636 (reftex-fref-is-default, reftex-level-indent)
12637 (reftex-guess-label-type): Mark as safe.
12638
12639 * textmodes/fill.el (colon-double-space): Mark as safe.
12640
12641 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
12642 (sentence-end-double-space, sentence-end-without-period)
12643 (sentence-end-without-space, sentence-end, sentence-end-base)
12644 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
12645
12646 2006-04-06 Kim F. Storm <storm@cua.dk>
12647
12648 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
12649 the :set-after list.
12650 (ido-downcase-unc-hosts): New user option. Default on.
12651 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
12652 when it is set, as regexps are now applied on the fly.
12653 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
12654 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
12655 on the fly, but only when ido-process-ignore-lists is set.
12656 Do case insensitive filtering if ido-downcase-unc-hosts is set.
12657 Only downcase names if ido-downcase-unc-hosts is set.
12658
12659 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
12660
12661 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
12662
12663 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
12664
12665 2006-04-05 Kim F. Storm <storm@cua.dk>
12666
12667 * ido.el (ido-mode): Set after ido-unc-hosts and
12668 ido-ignore-unc-host-regexps.
12669 (ido-save-history): Save ido-unc-hosts-cache.
12670 (ido-load-history): Load ido-unc-hosts-cache.
12671 (ido-reread-directory): Refresh unc hosts cache in // dir.
12672
12673 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
12674 to nil while displaying slash screen.
12675
12676 2006-04-05 Daiki Ueno <ueno@unixuser.org>
12677
12678 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
12679 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
12680
12681 2006-04-05 Kenichi Handa <handa@m17n.org>
12682
12683 * international/characters.el: Setup cases of Latin, Greek, and
12684 Cyrillic characters in CJK charsets.
12685
12686 2006-03-29 Daiki Ueno <ueno@unixuser.org>
12687
12688 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
12689 default-enable-multibyte-characters. This reverts the change from
12690 revision 6.17 which is no longer necessary because the passphrase
12691 is sent separately now. GnuPG messages are unreadable under
12692 multibyte locales with default-enable-multibyte-characters set to nil.
12693
12694 2006-04-04 Andreas Schwab <schwab@suse.de>
12695
12696 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
12697 and `byte-compile-warnings' as `safe-local-variable'.
12698
12699 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
12700
12701 * man.el (Man-mode-map): Restore the \r binding.
12702 (Man-abstract-xref-man-page): If Man-target-string is a function,
12703 call it.
12704 (Man-highlight-references): Use Man-default-man-entry to get the
12705 target. Deal with xrefs too.
12706 (Man-highlight-references0): Don't call the target function.
12707
12708 * woman.el (WoMan-xref-man-page): Strip the section number, woman
12709 cannot deal with it.
12710
12711 2006-04-04 Daiki Ueno <ueno@unixuser.org>
12712
12713 * pgg-gpg.el: Clean up process buffers every time gpg processes
12714 complete.
12715
12716 2006-04-04 Kenichi Handa <handa@m17n.org>
12717
12718 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
12719 here.
12720 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
12721 Temporarily bind inhibit-field-text-motion to t.
12722
12723 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12724
12725 * startup.el (normal-splash-screen): Only set mode-line-format in the
12726 splash buffer, so as not to interfere when debugging the code.
12727 Ignore errors when switching buffer.
12728
12729 2006-04-03 Romain Francoise <romain@orebokech.com>
12730
12731 * dired.el (dired-dnd-protocol-alist): Fix typo.
12732
12733 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
12734
12735 * savehist.el (savehist): Add :version.
12736 (savehist-ignored-variables): New variable.
12737 (savehist-minibuffer-hook): Don't save variables listed in
12738 `savehist-ignored-variables'.
12739
12740 * dired.el (dired-dnd-protocol-alist): Mention that change does
12741 only apply to new buffers in doc string.
12742
12743 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
12744
12745 * recentf.el (recentf-open-files-item): Include newline in button
12746 field, so opening a file will work, when the point is at the end
12747 of the file name. Allow, for example, to [i]search a file by
12748 extension and just push RET to open it.
12749
12750 2006-04-03 Daiki Ueno <ueno@unixuser.org>
12751
12752 * pgg-gpg.el (pgg-gpg-process-filter)
12753 (pgg-gpg-wait-for-completion): Check if buffer is alive.
12754
12755 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
12756 lines, temporary fix.
12757
12758 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
12759
12760 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
12761
12762 2006-04-02 Richard Stallman <rms@gnu.org>
12763
12764 * progmodes/compile.el (compilation-message-face): Make it defcustom.
12765
12766 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
12767
12768 * ibuf-macs.el (define-ibuffer-column): Add a new key:
12769 header-mouse-map.
12770
12771 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
12772 (ibuffer-mode-header-map): New keymaps.
12773 (ibuffer-update-title-and-summary): Enable mouse face highlighting
12774 and keybindings for column headers.
12775 (name, size, mode) <define-ibuffer-column>: Add a header-mouse-map
12776 property.
12777
12778 2006-04-02 Drew Adams <drew.adams@oracle.com>
12779
12780 * speedbar.el (speedbar-after-create-hook): Doc fix.
12781
12782 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
12783
12784 * shell.el (shell-directory-tracker)
12785 (shell-dynamic-complete-command): Doc fixes.
12786
12787 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
12788
12789 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
12790 terminals.
12791
12792 2006-04-01 Kim F. Storm <storm@cua.dk>
12793
12794 * ido.el (ido-unc-hosts-cache): New defvar.
12795 (ido-unc-hosts): If value of defcustom is a function, call it to
12796 get list of UNC hosts. Add function-item choices to specify
12797 ido-unc-hosts-net-view or user function.
12798 (ido-ignore-unc-host-regexps): New defcustom.
12799 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
12800 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
12801 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
12802
12803 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
12804
12805 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
12806 wwidth.
12807
12808 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
12809
12810 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
12811 (ido-max-work-file-list, ido-switch-buffer)
12812 (ido-read-file-name-as-directory-commands):
12813 Fix typos in docstrings.
12814
12815 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12816
12817 * term/mac-win.el (mac-system-coding-system): Define and use after
12818 Mac-specific coding systems are ready.
12819
12820 2006-03-27 Romain Francoise <romain@orebokech.com>
12821
12822 * net/rcirc.el (rcirc-connect): Add autoload cookie.
12823
12824 * ldefs-boot.el: Update.
12825
12826 2006-03-27 Daiki Ueno <ueno@unixuser.org>
12827
12828 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
12829 passphrases when it is not needed.
12830 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
12831 passphrase stuff from gpg, should only be necessary when you use
12832 gpg with a smartcard.
12833
12834 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
12835
12836 * comint.el (comint-dynamic-list-completions): Allow user to
12837 select *Completions* buffer.
12838
12839 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
12840
12841 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
12842
12843 2006-03-26 Andreas Schwab <schwab@suse.de>
12844
12845 * progmodes/gud.el (gdb): Only complain about multiple debugging
12846 when the gdb process is still running.
12847
12848 2006-03-25 Eli Zaretskii <eliz@gnu.org>
12849
12850 * mail/rmail.el (tool-bar-map): Defvar it.
12851 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
12852 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
12853
12854 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
12855
12856 * help.el (print-help-return-message): Suggest to use
12857 display-buffer instead of switch-to-buffer-other-window to restore
12858 the previous window without selecting it.
12859
12860 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12861
12862 * frame.el (select-frame-by-name): Call x-focus-frame also when
12863 window-system is mac.
12864
12865 * term/mac-win.el: Adjust Courier font specifications in
12866 x-fixed-font-alist.
12867 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
12868 when directly encoding to UTF-16 in native byte order, no BOM.
12869
12870 2006-03-25 Kim F. Storm <storm@cua.dk>
12871
12872 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
12873 (cua--init-keymaps): Use it instead of fixed C-return.
12874 (cua-mode): Set after it.
12875
12876 * emulation/cua-rect.el (cua--init-rectangles):
12877 Use cua-rectangle-mark-key instead of fixed C-return.
12878
12879 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
12880
12881 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
12882 "run" in .gdbinit.
12883 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
12884
12885 2006-03-24 Romain Francoise <romain@orebokech.com>
12886
12887 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
12888 `display-buffer-other-frame'.
12889
12890 2006-03-24 Kim F. Storm <storm@cua.dk>
12891
12892 * apropos.el (apropos-synonyms): Add selection => region.
12893
12894 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
12895
12896 * progmodes/gdb-ui.el (gdb-var-create-regexp)
12897 (gdb-var-list-children-regexp, gdb-var-update-regexp)
12898 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
12899 (gdb-data-list-register-values-regexp)
12900 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
12901 Future proof against new fields being added to MI output.
12902 (gdb-send): Don't treat backslashes for program input as
12903 continuations.
12904 (gdb-assembler-handler): Don't use window-start for this handler.
12905 (gdb-frame-handler): Don't change to hollow arrow if overlay
12906 arrow doesn't move to new frame.
12907
12908 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
12909
12910 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
12911 prevent compiler warnings.
12912 (gdb-stopped): Check for gud-last-last-frame (case: signal).
12913 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
12914 (gdb-assembler-custom): Use hollow-right-triangle for assembler
12915 buffer too.
12916
12917 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
12918
12919 * pgg-gpg.el (pgg-gpg-update-agent): Check for
12920 make-network-process, so we can use the same code in Gnus v5-10
12921 too and have this file fully synchronized with that release.
12922
12923 2006-03-23 Romain Francoise <romain@orebokech.com>
12924
12925 * ibuf-ext.el (ibuffer-read-filter-group-name):
12926 Use `ibuffer-generate-filter-groups' to make completion list match
12927 the filter groups that are really displayed in the Ibuffer buffer.
12928 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
12929
12930 2006-03-23 Kenichi Handa <handa@m17n.org>
12931
12932 * international/mule-cmds.el (sort-coding-systems): Describe that
12933 the argument is modified in docstring.
12934
12935 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
12936
12937 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
12938 (pgg-gpg-update-agent): New function.
12939 (pgg-gpg-use-agent-p): New function.
12940 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
12941 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12942 (pgg-gpg-sign-region): Use it.
12943
12944 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
12945
12946 * cus-edit.el (custom-face-set): Call custom-push-theme before
12947 face-spec set so that `changed' theme is correctly saved.
12948 (custom-face-reset-standard): Reset to recalculated face rather
12949 than defface spec.
12950
12951 * custom.el (custom-push-theme): Only save `changed' theme if the
12952 current face does not match the defface specs.
12953
12954 2006-03-21 Simon Josefsson <jas@extundo.com>
12955
12956 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
12957 <wilde@sha-bang.de>.
12958 (pgg-gpg-use-agent): New variable.
12959 (pgg-gpg-process-region): Use it.
12960 (pgg-gpg-encrypt-region): Likewise.
12961 (pgg-gpg-encrypt-symmetric-region): Likewise.
12962 (pgg-gpg-decrypt-region): Likewise.
12963 (pgg-gpg-sign-region): Likewise.
12964 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
12965
12966 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
12967
12968 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
12969 bracket links.
12970
12971 2006-03-21 Kim F. Storm <storm@cua.dk>
12972
12973 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
12974 fringe-indicator-alist instead of modifying global value.
12975 (gdb-frame-handler): Likewise.
12976
12977 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
12978
12979 * diff-mode.el (diff-function): Make it inherit from diff-header
12980 instead of diff-context.
12981
12982 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
12983 bitmap.
12984 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
12985 change names in macro above for consistency.
12986 (gdb-frame-handler): Use hollow-right-triangle for all selected
12987 frames which except the innermost (where execution has stopped).
12988 (gdb-reset): Reset buffer-local values of overlay-arrow.
12989
12990 2006-03-20 Richard Stallman <rms@gnu.org>
12991
12992 * simple.el (set-mark-command): Doc fix.
12993
12994 * files.el (display-buffer-other-frame): New command.
12995 (ctl-x-4-map): Bind C-x 5 C-o to it.
12996
12997 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12998
12999 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
13000 rather than just defer-time, in case defer-time has been changed but
13001 the timer isn't running yet.
13002 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
13003
13004 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
13005
13006 * help-mode.el (help-follow-symbol): New function.
13007 Essentially identical to the old `help-follow', but do not let
13008 `push-button' do the work when on an xref.
13009 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
13010
13011 2006-03-19 Richard Stallman <rms@gnu.org>
13012
13013 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
13014 preceded by the word `program'.
13015 (help-follow-mouse, help-follow): Throw error if not on xref.
13016 Delete no longer used args.
13017
13018 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
13019
13020 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
13021 annotation ensure gud-overlay-arrow-position is redisplayed.
13022
13023 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13024
13025 * textmodes/bibtex.el (bibtex-include-OPTkey)
13026 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
13027 (bibtex-autokey-name-case-convert)
13028 (bibtex-autokey-titleword-case-convert): Make these the aliases
13029 for the following two variables.
13030 (bibtex-autokey-name-case-convert-function)
13031 (bibtex-autokey-titleword-case-convert-function): Make these the
13032 real names.
13033 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
13034 bibtex-font-lock-crossref sublists.
13035 (bibtex-mode): Revert 2005-12-30 change (which made
13036 completion-ignore-case buffer-local).
13037 (bibtex-url): Simplify.
13038
13039 2006-03-19 Kim F. Storm <storm@cua.dk>
13040
13041 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
13042 cursor property value to 2 (to align with C level change).
13043
13044 2006-03-19 Bill Wohler <wohler@newt.com>
13045
13046 * image.el (image-load-path-for-library): Shorten first line in
13047 docstring.
13048
13049 2006-03-18 Richard Stallman <rms@gnu.org>
13050
13051 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
13052
13053 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
13054
13055 * isearch.el (isearch-other-meta-char): Handle user bindings for
13056 shifted control characters.
13057
13058 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
13059
13060 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
13061 part that matches email addresses, file names, etc.
13062
13063 2006-03-18 Eli Zaretskii <eliz@gnu.org>
13064
13065 * term/w32-win.el (mouse-set-font):
13066 Mention w32-list-proportional-fonts in the doc string.
13067
13068 2006-03-18 Kim F. Storm <storm@cua.dk>
13069
13070 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
13071 (ido-unc-hosts): New user option to explicitly define list of know
13072 UNC-style hosts for completion.
13073 (ido-cache-unc-host-shares-time): New user option.
13074 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
13075 New helper functions for UNC file-name support.
13076 (ido-may-cache-directory): Check for UNC host. Simplify.
13077 (ido-wash-history): Clean out old UNC hosts.
13078 (ido-nonreadable-directory-p): UNC hosts are always readable.
13079 (ido-directory-too-big-p): UNC hosts are never too big.
13080 (ido-set-current-directory): Handle UNC root path.
13081 (ido-file-name-all-completions): Complete UNC host names from
13082 ido-unc-hosts list. Cache UNC host shares.
13083 (ido-make-file-list-1): Don't filter UNC root.
13084 (ido-exhibit): Check for // in root directory, and switch to UNC
13085 mode by setting ido-current-directory to //.
13086
13087 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
13088
13089 * cus-edit.el (customize-changed-options): Mention explicit
13090 version number as default in prompt.
13091
13092 2006-03-17 Bill Wohler <wohler@newt.com>
13093
13094 * image.el (image-load-path-for-library): Minor docstring fix.
13095
13096 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
13097
13098 * textmodes/org.el (org-read-date): Include subgroup 5 into
13099 replacement text.
13100 (org-popup-calendar-for-date-prompt): Fix customization type.
13101
13102 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
13103
13104 * progmodes/gdb-ui.el (gud-watch): Provide completion.
13105 (gdb-continuation): New variable.
13106 (gdb-send): Deal with continuation lines.
13107
13108 * progmodes/gud.el (gud-gdb-complete-command)
13109 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
13110 expressions.
13111 (gud-tooltip-mode): Use buffer-local value.
13112
13113 2006-03-16 Kim F. Storm <storm@cua.dk>
13114
13115 * ido.el (ido-edit-input): Use selected match, if any.
13116
13117 2006-03-16 Bill Wohler <wohler@newt.com>
13118
13119 * image.el (image-load-path-for-library): Prefer user's images in
13120 image-load-path.
13121
13122 2006-03-16 Martin Rudalics <rudalics@gmx.at>
13123
13124 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
13125 when checking for attempt to drag leftmost or rightmost scrollbar.
13126
13127 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
13128
13129 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
13130 (gdb-force-mode-line-update): New function.
13131 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
13132 (gdb-exited): Use them.
13133 (gdb-signal): New function.
13134 (gdb-annotation-rules): Provide a rule for it.
13135
13136 2006-03-16 Kenichi Handa <handa@m17n.org>
13137
13138 * international/mule.el (auto-coding-regexp-alist): Add entries
13139 for Unicode BOM.
13140
13141 * sort.el (sort-build-lists): Temporarily bind
13142 inhibit-field-text-motion to t.
13143
13144 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
13145
13146 * locate.el (locate-command, locate-make-command-line)
13147 (locate-fcodes-file, locate-update-command)
13148 (locate-prompt-for-command, locate, locate-with-filter)
13149 (locate-get-file-positions): Doc fixes.
13150 (locate-buffer-name, locate-header-face): Remove leading `*' in
13151 defcustom.
13152 (locate-filter-output): Use `keep-lines' instead of its alias
13153 `delete-non-matching-lines'.
13154 (locate-get-filename, locate-get-dirname): Add introductory comment.
13155 (locate-find-directory-other-window): Give appropriate error
13156 message if used outside main listing.
13157
13158 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13159
13160 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
13161 the new extend-region feature.
13162 (font-lock-after-change-function): Update correspondingly.
13163 * jit-lock.el (jit-lock-after-change): Update correspondingly.
13164 * progmodes/grep.el (font-lock-lines-before): Don't disable.
13165
13166 2006-03-15 Bill Wohler <wohler@newt.com>
13167
13168 * image.el (image-load-path-for-library): Fix example by not
13169 recommending that one binds image-load-path. Just defvar it to
13170 placate compiler and only use it if previously defined.
13171
13172 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
13173
13174 * textmodes/org.el (org-insert-centered): Use `string-width' to
13175 make underlining work for wide characters.
13176 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
13177 TAB to `org-cycle', to make sure that no binding in
13178 `outline-mode-map' can supercede it.
13179
13180 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
13181
13182 * allout.el: Increment version to 2.2.1 in file commentary.
13183
13184 (allout-version): Increment to 2.2.1.
13185
13186 (allout-default-layout): New customization variable, used when the
13187 file lacks a specific allout-layout. Uses allout-layout-type for
13188 recursively nested definition.
13189
13190 (allout-layout-type): Widget defining allout layouts, necessary for
13191 self-recursive definition.
13192
13193 (allout-mode): Incorporate allout-default-layout as fallback for
13194 allout-layout.
13195
13196 (allout-layout): Mark as 'safe-local-variable', and refer mention
13197 fallback to `allout-default-layout' in absence of a specified value.
13198 (allout-passphrase-verifier-string)
13199 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
13200
13201 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
13202
13203 (allout-get-encryption-passphrase-verifier): Use correct name of
13204 passphrase verifier in docstring.
13205
13206 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
13207
13208 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
13209 elements.
13210 (gdb-find-watch-expression): Make it work for arrays too.
13211 Follow change to gdb-var-list.
13212 (gud-watch): Allow the user to enter variable name with a prexix
13213 arg. Create keybindings.
13214 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
13215 (gdb-var-list-children-handler, gdb-var-update-handler)
13216 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
13217 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
13218 Follow change to gdb-var-list.
13219 (gdb-starting): Don't show the overlay arrows when program is running.
13220
13221 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
13222 gdb-var-list.
13223
13224 2006-03-14 Bill Wohler <wohler@newt.com>
13225
13226 * image.el (image-load-path-for-library): Pass value of path
13227 rather than symbol. Always return list of directories.
13228 Guarantee that image directory comes first.
13229
13230 2006-03-14 Alan Mackenzie <acm@muc.de>
13231
13232 * font-core.el (font-lock-extend-region\(-function\)?.):
13233 New function/variable.
13234
13235 * font-lock.el (font-lock-after-change-function):
13236 Call font-lock-extend-region. Obey font-lock-lines-before.
13237 (font-lock-default-fontify-region): Remove reference to
13238 font-lock-lines-before.
13239
13240 * jit-lock.el (jit-lock-after-change):
13241 Call font-lock-extend-region. Obey font-lock-lines-before.
13242
13243 2006-03-14 David Ponce <david@dponce.com>
13244
13245 * tree-widget.el (tree-widget-themes-load-path)
13246 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
13247
13248 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
13249
13250 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
13251 (rcirc-print): Mark the start of text at the end of the prompt.
13252 (rcirc-track-minor-mode): Add autoload cookie.
13253 (rcirc-update-activity-string): Add space to front of mode-line
13254 indicator.
13255
13256 2006-03-13 Miles Bader <miles@gnu.org>
13257
13258 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
13259 (rcirc-abbrev-nick): Remove function.
13260 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
13261
13262 2006-03-13 David Ponce <david@dponce.com>
13263
13264 * tree-widget.el: Handle themes across all occurrences of the main
13265 themes sub-directory found in tree-widget-themes-load-path.
13266 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
13267 (tree-widget--locate-sub-directory): Return all occurrences.
13268 (tree-widget-themes-path): New function.
13269 Replace tree-widget-themes-directory, and return a list of directories.
13270 (tree-widget-set-parent-theme)
13271 (tree-widget-lookup-image): Use it.
13272
13273 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
13274
13275 * textmodes/org.el (org-link-search): Avoid self-matching of
13276 links, allow target text to be distributed over several lines.
13277 (org-search-not-link): New function.
13278 (org-set-regexps-and-options, org-get-current-options):
13279 New startup options.
13280 (org-export-as-html): Take odd-level setting from local variable.
13281 (org-fontify-emphasized-text): New option.
13282 (org-set-font-lock-defaults): Include emphasized text.
13283 (org-follow-mhe-link): Allow folder-only links, fix folder name.
13284 (org-font-lock): Customize group renamed from `org-faces'.
13285
13286 2006-03-13 John Paul Wallington <jpw@pobox.com>
13287
13288 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
13289 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
13290
13291 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
13292
13293 * cus-start.el (all): Delete :version keyword for members of the
13294 fringe group, since the entire group is new in 22.1.
13295
13296 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
13297
13298 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
13299 map if value is hexadecimal (an address).
13300 (gud-watch): Only search roots for existing watch expressions.
13301 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
13302 prevent caching problems with speedbar-update-directory-contents.
13303
13304 2006-03-12 Juri Linkov <juri@jurta.org>
13305
13306 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
13307 before comparing with `low' and `warn'.
13308
13309 * info.el (Info-dir-remove-duplicates): Move point to the
13310 beginning of the current line after deleting the entries from
13311 redundant heading. Use marker for `limit' and compare it with
13312 point before calling `re-search-forward'.
13313
13314 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
13315
13316 * simple.el (yank): Fix typo in docstring.
13317
13318 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
13319
13320 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
13321 messages, where "D" is the 6th character.
13322
13323 2006-03-11 Eli Zaretskii <eliz@gnu.org>
13324
13325 * simple.el (yank): Fix last change.
13326
13327 2006-03-11 David Ponce <david@dponce.com>
13328
13329 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
13330 merging elements from the standard ispell-dictionary-alist.
13331 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
13332 alist, and return the new alist.
13333
13334 2006-03-11 Richard Stallman <rms@gnu.org>
13335
13336 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
13337
13338 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
13339 the way it is implemented is too unclean.
13340
13341 * simple.el (kill-region, yank): Doc fix.
13342
13343 * battery.el (battery-echo-area-format): Doc fix.
13344 (battery-mode-line-format): Likewise.
13345 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
13346 (battery-linux-proc-acpi): Ignore batteries that say "charged".
13347
13348 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
13349
13350 * progmodes/octave-mod.el (octave-indent-for-comment):
13351 Behave according to do string.
13352
13353 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
13354
13355 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
13356 Be visible only if major mode is Mail Mode.
13357
13358 * textmodes/flyspell.el (flyspell-external-point-words)
13359 (flyspell-process-localwords): Fix last changes.
13360
13361 2006-03-11 Eli Zaretskii <eliz@gnu.org>
13362
13363 * calendar/holidays.el (list-holidays): Doc fix.
13364
13365 * international/mule.el (auto-coding-alist): Add .odt
13366 (OpenOffice's open document) files.
13367
13368 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
13369 document) files. Mention in the doc string the need to sync with
13370 auto-coding-alist.
13371
13372 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
13373
13374 * files.el (hack-local-variables-confirm): Don't prompt for ! if
13375 enable-local-variables is set to always query, or there is no
13376 savable variable.
13377
13378 2006-03-10 Bill Wohler <wohler@newt.com>
13379
13380 * image.el (image-load-path-for-library): Merge at least three
13381 functions from Gnus and MH-E into this one function that can now
13382 be shared.
13383
13384 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
13385
13386 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
13387 gdb-remove-mouse-face and remove help-echo too.
13388 (gdb-enqueue-input): Correct conditional clause.
13389
13390 2006-03-10 Glenn Morris <rgm@gnu.org>
13391
13392 * calendar/calendar.el (calendar-holidays): Doc fix.
13393 * calendar/holidays.el (list-holidays): Doc fix.
13394
13395 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
13396
13397 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
13398 it gets called in gdb-prompt anyway.
13399 (gdb-use-separate-io-buffer): Only restore window arrangement for
13400 gdb-many-windows.
13401 (gdb-enqueue-input): Make it harder to send GDB input when program
13402 is running.
13403 (gdb-buffer-list): New variable.
13404 (gdb-remove-mouse-face): New function.
13405 (gdb-starting): Use it when GDB input won't get sent.
13406
13407 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
13408
13409 * help.el (view-lossage): Remove trailing whitespace before
13410 inserting "\n".
13411
13412 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
13413
13414 * files.el (hack-local-variables-confirm):
13415 Set coding-system-for-read to nil before writing to .emacs.
13416
13417 * arc-mode.el (archive-extract): Check if an existing buffer name
13418 comes from a different archive.
13419
13420 * help.el (describe-key-briefly): If KEY is a down event, read and
13421 discard the up event.
13422
13423 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
13424
13425 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
13426 be edited and use font-lock-warning-face for any changes.
13427
13428 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
13429 (gdb-edit-value): Use it to report any errors.
13430
13431 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
13432
13433 * help.el (describe-key): Remove leftover test code.
13434
13435 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
13436
13437 * textmodes/org.el: Move defvars out of eval-when-compile.
13438 Use buffer-file-name variable.
13439 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
13440 arg `file'.
13441 (org-level-faces): Remove startup dependency.
13442 (org-cycle, org-map-tree, org-scan-tags)
13443 (org-remember-handler): Don't call `outline-level' directly.
13444 (org-mhe-search-all-folders): New option.
13445 (org-mhe-get-message-folder-from-index)
13446 (org-mhe-get-message-folder): Fix indexing search.
13447 (org-format-agenda-item): Handle nil TAGS argument.
13448 (org-cleaned-string-for-export, org-activate-target-links)
13449 (org-make-target-link-regexp): Deal with empty radio target list.
13450 (org-tag): New face.
13451 (org-get-level-face): New function.
13452 (org-set-font-lock-defaults): Simplify setup for headlines.
13453 (org-complete): Pass common substring to `display-completion-list'.
13454
13455 2006-03-06 David Ponce <david@dponce.com>
13456
13457 * tree-widget.el: Update Commentary header.
13458 (tree-widget-theme-name): Ignore parent themes.
13459 (tree-widget-set-parent-theme): New function.
13460 (tree-widget-set-theme): Use it.
13461 (tree-widget-set-image-properties): Move definition. Does nothing
13462 if image properties have already been set.
13463 (tree-widget-image-properties): Move definition. Receive an image
13464 name. Set the :pointer property.
13465 (tree-widget-lookup-image): Doc fix. Search in parent themes.
13466 Don't set the :pointer image property.
13467 (tree-widget-convert-widget): New function. Handle :dynargs
13468 compatibility here.
13469 (tree-widget): Use it to :convert-widget. Add the :expander-p
13470 predicate to control when the :expander function is entered.
13471 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
13472 (tree-widget-value-create): Handle :expander-p. widget-apply
13473 :expander.
13474 (tree-widget-expander-p): New function. Default value of the
13475 :expander-p property.
13476
13477 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
13478
13479 * help.el (describe-key): Properly handle the return value of
13480 read-key-sequence when grabbing an up-event. Cleanup mouse-1
13481 remaps. Handle string and vector `follow-link' values.
13482
13483 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
13484
13485 * complete.el (PC-expand-many-files): Try be more careful when parsing
13486 the shell's output.
13487
13488 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
13489
13490 * outline.el (hide-sublevels): Provide better interactive default.
13491
13492 2006-03-06 Kenichi Handa <handa@m17n.org>
13493
13494 * international/fontset.el (create-fontset-from-fontset-spec):
13495 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
13496
13497 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
13498
13499 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
13500 backslashes instead of one in regexp.
13501 (gud-tooltip-dereference): Add missing optional argument.
13502
13503 2006-03-04 John Paul Wallington <jpw@pobox.com>
13504
13505 * wdired.el (toplevel): Require `cl' at compile-time.
13506
13507 2006-03-04 Andreas Schwab <schwab@suse.de>
13508
13509 * server.el (server-process-filter): Handle errors during
13510 evaluation of the argument.
13511
13512 2006-03-03 John Paul Wallington <jpw@pobox.com>
13513
13514 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
13515 escape parentheses at beginning of line.
13516 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
13517 (t-mouse-mode): Remove period from end of error message.
13518
13519 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
13520
13521 * textmodes/flyspell.el (flyspell-process-localwords):
13522 Be case-sensitive.
13523
13524 2006-03-03 Martin Rudalics <rudalics@gmx.at>
13525
13526 * cus-edit.el (custom-quote): Remove function, since it has been
13527 moved to custom.el.
13528
13529 * font-lock.el (lisp-font-lock-keywords-2)
13530 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
13531 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
13532 they have no special meaning.
13533
13534 * midnight.el (clean-buffer-list): Handle case where base-buffer of
13535 indirect buffer gets killed before indirect buffer. Use dolist.
13536
13537 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
13538
13539 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
13540 value instead of a literal constant (1) on more pauses.
13541
13542 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
13543
13544 * textmodes/flyspell.el (flyspell-external-point-words):
13545 Be case-sensitive.
13546
13547 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
13548
13549 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
13550 with "www".
13551
13552 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
13553
13554 * allout.el: Restablish intermediate missing comment header to
13555 preserve outline structure.
13556 (allout-beginning-of-current-entry): Skip invisible text.
13557 (allout-open-topic): Fix opening a topic at end-of-buffer.
13558 (allout-minor-mode): Move nearer to allout-mode function.
13559
13560 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
13561
13562 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
13563
13564 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
13565
13566 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
13567 is nil.
13568
13569 * progmodes/gud.el (gud-speedbar-menu-items):
13570 Use buffer-local-value and add missing :visible keyword.
13571
13572 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
13573
13574 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
13575
13576 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
13577 must be `follow-link'.
13578
13579 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
13580
13581 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
13582 formatting: No nested anchors.
13583 (org-all-targets): Fix bug with XEmacs compatibility.
13584 (org-read-date): Add (require 'parse-time).
13585 (org-set-tags): Fix bug with extra inserted space.
13586 (org-export-html-style): Define a style class for targets.
13587 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
13588 (org-hide-leading-stars): New option.
13589 (org-hide): New face.
13590 (org-set-font-lock-defaults): Allow to hide leading stars.
13591 (org-get-legal-level, org-tr-level): New functions.
13592 (org-odd-levels-only): New option.
13593 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
13594 (org-demote, org-promote): Deal with double-star levels.
13595 (org-convert-to-odd-levels): New command.
13596
13597 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
13598
13599 * speedbar.el (speedbar-update-localized-contents): Try to
13600 preserve window-start.
13601 (speedbar-update-directory-contents): Try to preserve window-start
13602 and window-point.
13603 (speedbar-update-special-contents): Don't move back to start of window.
13604
13605 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
13606 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
13607 speedbar-timer-fn.
13608 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
13609 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
13610 instead of gdb-speedbar-timer-fn.
13611
13612 2006-02-28 Jay Belanger <belanger@truman.edu>
13613
13614 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
13615 (math-compose-expr): Use latex option when calling
13616 `math-compose-tex-matrix' for latex mode.
13617
13618 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
13619
13620 * speedbar.el: Re-instate comments about developing for speedbar
13621 [this is what info and gdb-ui use even if better methods exist now].
13622
13623 * t-mouse.el: New file.
13624 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
13625 (t-mouse-lispy-buffer-posn-from-coords): Remove.
13626 (t-mouse-make-event-element): Use posn-at-x-y instead.
13627 (t-mouse-make-event): Deal with Fedora Core 3.
13628 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
13629 (t-mouse-mouse-position-function): New function. Use it instead
13630 of advising mouse-position.
13631 (t-mouse-mode): New minor mode.
13632 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
13633
13634 2006-02-27 Glenn Morris <rgm@gnu.org>
13635
13636 * calendar/calendar.el (calendar-holidays): Doc fix.
13637
13638 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
13639
13640 * progmodes/gdb-ui.el (gdb-source-window): New variable.
13641 Re-introduce the concept of a source window.
13642 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
13643 consistency with get-buffer-create.
13644 (def-gdb-auto-update-handler, gdb-info-locals-handler)
13645 (gdb-data-list-register-values-handler)
13646 (gdb-stack-list-locals-handler): Try to preserve window-start as
13647 well as window-point.
13648 (gdb-display-source-buffer): New function (old concept).
13649 (gdb-goto-breakpoint): Use it.
13650
13651 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
13652 for gdb-ui/gdb-mi (old concept).
13653
13654 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
13655
13656 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
13657 binding.
13658
13659 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
13660
13661 * textmodes/reftex-sel.el (reftex-select-label-map)
13662 (reftex-select-bib-map): Add `follow-mouse' binding.
13663
13664 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
13665
13666 * jka-cmpr-hook.el (jka-compr-compression-info-list)
13667 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
13668 Give :set functions to provide automatic updating.
13669 Update docstring. Give compiler defvars early in the file
13670 and move the defcustoms to a later spot where all called functions
13671 are defined.
13672 (jka-compr-file-name-handler-entry): Doc fix.
13673 (jka-compr-compression-info-list--internal)
13674 (jka-compr-mode-alist-additions--internal)
13675 (jka-compr-load-suffixes--internal): New variables.
13676 (jka-compr-install): Set the three above variables.
13677 Update `load-file-rep-suffixes' instead of `load-suffixes'.
13678 (jka-compr-update, jka-compr-set): New functions.
13679 (auto-compression-mode): Doc fix.
13680
13681 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
13682 Update `load-file-rep-suffixes' instead of `load-suffixes'.
13683 Use jka-compr-compression-info-list--internal,
13684 jka-compr-mode-alist-additions--internal and
13685 jka-compr-load-suffixes--internal.
13686
13687 * files.el (load-library):
13688 * loadhist.el (file-loadhist-lookup):
13689 * startup.el (command-line):
13690 * subr.el (locate-library):
13691 * emacs-lisp/autoload.el (update-directory-autoloads):
13692 * emacs-lisp/find-func.el (find-library-suffixes):
13693 Use `get-load-suffixes' instead of `load-suffixes'.
13694
13695 * subr.el (locate-library):
13696 * emacs-lisp/find-func.el (find-library-name):
13697 Use `load-file-rep-suffixes' instead of '("").
13698
13699 2006-02-26 Kim F. Storm <storm@cua.dk>
13700
13701 * ido.el (ido-save-history, ido-load-history): Simplify.
13702 Don't use find-file-noselect to avoid interference from other modes.
13703
13704 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
13705
13706 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
13707 to use the default shell if filename is not available.
13708 Reported by Giorgos Keramidas.
13709
13710 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
13711
13712 * progmodes/etags.el (tags-completion-table): Do completion from
13713 all the tables in the current list, as documented in the manual.
13714
13715 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13716
13717 * CC Mode Update to 5.31.3.
13718
13719 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13720
13721 * progmodes/cc-mode.el (c-postprocess-file-styles):
13722 Bind inhibit-read-only to t, around the call to
13723 c-remove-any-local-eval-or-mode-variables, so that it works on a
13724 RO file.
13725
13726 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13727
13728 * progmodes/cc-awk.el: Correct a typo.
13729
13730 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13731
13732 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
13733 c-hungry-delete-backwards, at the request of RMS. Leave the old
13734 name as an alias.
13735
13736 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13737
13738 * progmodes/cc-mode.el: Correct a typo.
13739
13740 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13741
13742 * progmodes/cc-defs.el: Update the version number to 5.31.3.
13743
13744 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13745
13746 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
13747 brace-else-brace (error due to mbeg, mend being undefined).
13748
13749 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13750
13751 * progmodes/cc-mode.el: File Local variables: Solve the problem
13752 where both `mode' and c-file-offsets are specified: `mode' will
13753 overwrite c-f-o's settings:
13754 (c-remove-any-local-eval-or-mode-variables): New function.
13755 (c-postprocess-file-styles): Call the above new function, within
13756 c-tentative-buffer-change, to splat `mode' and `eval' before the
13757 second hack-local-variables.
13758
13759 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13760
13761 * progmodes/cc-mode.el:
13762 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
13763 (c-after-change): Protect the match data with save-match-data.
13764 It was getting corrupted by c-after-change-check-<>-operators.
13765
13766 * cc-defs.el: [Supersedes patch V1.38]:
13767 (top level): Check for a buggy font-lock-compile-keywords ONLY in
13768 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
13769
13770 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
13771 with save-match-data. It was being corrupted when Font Lock was
13772 not enabled.
13773
13774 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
13775
13776 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
13777 Mode and Subword Mode.
13778
13779 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
13780 real labels ("case 1:" or "foo:") from non-labels ("public:").
13781 (c-forward-objc-directive): Replace c-forward-token-2 with crude
13782 coding; c-f-t-2 doesn't move over a token at EOB.
13783
13784 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
13785
13786 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
13787 (c-update-modeline): Concatenate the minor mode indicators
13788 directly onto mode-name, removing c-submode-indicators.
13789 Sometimes, c-s-i got separated from the mode name on the mode line.
13790
13791 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
13792 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
13793
13794 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
13795
13796 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
13797 error message when there's an evaluation error to show whether
13798 it's loaded from source or not.
13799 (c-filter-ops): Make it available at runtime too to work when
13800 `c-make-init-lang-vars-fun' needs to evaluate from source.
13801
13802 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
13803
13804 * help.el (help): Revert last part of 2006-02-23 change (deletion
13805 of the `provide' call).
13806
13807 2006-02-23 Juri Linkov <juri@jurta.org>
13808
13809 * compare-w.el (compare-windows-highlight): Add new value
13810 `persistent' and change :type from `boolean' to `choice'.
13811 (compare-windows-overlays1, compare-windows-overlays2):
13812 New internal variables.
13813 (compare-windows-highlight): If compare-windows-highlight is
13814 `persistent', add current overlays to compare-windows-overlays[12]
13815 instead of adding compare-windows-dehighlight to pre-command-hook.
13816 (compare-windows-dehighlight): Delete all overlays from
13817 compare-windows-overlays[12].
13818
13819 * info.el (Info-search): Don't bind search-spaces-regexp to
13820 Info-search-whitespace-regexp in non-regexp isearch mode.
13821
13822 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13823
13824 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
13825
13826 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
13827
13828 * textmodes/org.el (org-xemacs-p)
13829 (org-export-html-show-new-buffer, org-table-may-need-update)
13830 (org-insert-item, org-mhe-get-message-real-folder)
13831 (org-mhe-get-message-folder-from-index)
13832 (org-mhe-get-message-folder, org-mhe-get-message-num)
13833 (org-mhe-get-header, org-make-org-heading-search-string)
13834 (org-make-org-heading-camel, org-table-sort-lines)
13835 (org-format-org-table-html, org-format-table-table-html):
13836 Fix typos in docstrings.
13837
13838 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
13839
13840 * textmodes/org.el (org-cleaned-string-for-export)
13841 (org-solidify-link-text): New function.
13842 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
13843 XEmacs, just to silence the compiler.
13844 (org-export-as-ascii, org-export-as-html-and-open):
13845 Use `org-cleaned-string-for-export' and create internal links.
13846 (org-follow-mhe-link): Require mh-e, use folder.
13847
13848 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
13849
13850 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
13851
13852 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
13853 gdb-debug-log-length.
13854 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
13855 it a real ring but...
13856 (gud-gdba-marker-filter): ...make it work like mark-ring.
13857 (gdb-enable-debug): Rename from gdb-enable-debug-log.
13858 (gdb-mouse-jump): New function. Add bindings.
13859
13860 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
13861
13862 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
13863 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
13864 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
13865 (gdb-debug-log-length): Customize it's length.
13866 (gud-watch, gdb-var-create-handler): Display function::var format
13867 but don't use to create variable object.
13868 (gdb-var-create-handler): Use message-box in place of message.
13869 (gdb-stopped): Call gdb-exited if signalled.
13870
13871 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
13872
13873 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
13874
13875 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
13876
13877 * textmodes/reftex.el (reftex-locate-file): Search all extensions
13878 if `reftex-try-all-extensions' is set.
13879
13880 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
13881 fail silently when there is no valid argument at point.
13882 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
13883 `fail-silently' argument. From a patch by David Reiter.
13884
13885 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
13886 New commands.
13887 (org-mark-ring): New variable.
13888 (org-mark-ring-length): New option.
13889 (org-open-at-point, org-goto, org-open-file): Push old position
13890 onto the mark ring.
13891 (org-add-hook): New function.
13892 (org-export-table-remove-special-lines): New option.
13893 (org-skip-comments, org-format-org-table-html): Respect new
13894 option `org-export-table-remove-special-lines'.
13895 (org-open-file): Allow special command configuration for
13896 directory link.
13897 (org-file-apps): Fix bugs in customize type, added setting
13898 for directories.
13899 (org-activate-tags, org-format-agenda-item, org-complete)
13900 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
13901 (org-get-tags, org-get-buffer-tags, org-open-at-point)
13902 (org-link-search, org-make-org-heading-search-string)
13903 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
13904 (org-radio-targets, org-file-link-context-use-camel-case)
13905 (org-activate-camels): New options.
13906 (org-update-radio-target-regexp, org-all-targets)
13907 (org-make-target-link-regexp, org-activate-target-links):
13908 New functions.
13909 (org-make-org-heading-search-string): New function.
13910 (org-store-link, org-insert-link): Use new option
13911 `org-file-link-context-use-camel-case'.
13912 (org-activate-camels): Use new option `org-activate-camels'.
13913 (org-link-regexp): Add mhe prefix.
13914 (org-open-at-point, org-store-link): Support for mhe links.
13915 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
13916 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
13917 (org-mhe-get-header, org-follow-mhe-link): New functions.
13918 (org-remove-angle-brackets, org-add-angle-brackets):
13919 New functions.
13920 (org-bracket-link-regexp): New constant.
13921 (org-read-date): Fix bug that was rejecting all typed dates.
13922 (org-link-search): Make hierarchy above visible after a match.
13923 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
13924 (org-store-link): Fix bug with link creation when cursor is in
13925 an empty line.
13926 (org-open-at-point): Fix bug with matching a link.
13927 Fixed buggy argument sequence in call to `org-view-tags'.
13928 (org-compile-prefix-format): Set `org-prefix-has-tag'.
13929 (org-prefix-has-tag): New variable.
13930 (org-format-agenda-item): Remove tags from headline
13931 if appropriate.
13932 (org-agenda-remove-tags-when-in-prefix): New option.
13933
13934 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
13935
13936 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
13937 Fix the regular expressions.
13938
13939 2006-02-21 Richard M. Stallman <rms@gnu.org>
13940
13941 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
13942 if there's no other specific basis.
13943
13944 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
13945 as variables at all.
13946 (unsafep-variable): Rename arg; doc fix.
13947
13948 * abbrevlist.el (list-one-abbrev-table): Add autoload.
13949
13950 * calendar/appt.el (diary-selective-display): Add defvar.
13951
13952 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
13953
13954 * isearch.el (search-whitespace-regexp): Fix custom type.
13955
13956 * help.el (describe-key-briefly): Compute interactive args
13957 in same was as before previous change.
13958
13959 * files.el (enable-local-variables): Doc fix.
13960
13961 2006-02-21 Kim F. Storm <storm@cua.dk>
13962
13963 * fringe.el: Cleanup as file is now pre-loaded.
13964 (fringe-bitmaps): Initialize unconditionally.
13965 (fringe-mode, set-fringe-style): Remove autoload cookies.
13966
13967 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
13968
13969 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
13970 `horizontal-bar'.
13971 (fringe-cursor-alist): Use `horizontal-bar'.
13972
13973 2006-02-20 Kim F. Storm <storm@cua.dk>
13974
13975 * fringe.el (fringe-bitmaps): Update to new bitmap names.
13976 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
13977
13978 * loadup.el: Load "fringe" on window systems.
13979
13980 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
13981
13982 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
13983 out of scope components.
13984
13985 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
13986 default.
13987
13988 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
13989
13990 * custom.el (customize-mark-to-save, customize-mark-as-set):
13991 Load the symbol first.
13992
13993 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
13994
13995 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
13996 strech spec so it doesn't display as "^J" on the header line
13997 when `Buffer-menu-use-header-line' is t.
13998
13999 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
14000
14001 * speedbar.el (speedbar-make-button): Keep text properties
14002 of string arguments if desired.
14003
14004 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
14005 expessions.
14006
14007 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
14008 of speedbar.
14009
14010 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
14011
14012 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
14013 to value of `read-file-name-completion-ignore-case'.
14014
14015 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
14016
14017 * custom.el (customize-mark-as-set): Push to `user' theme.
14018
14019 * cus-edit.el (custom-save-variables): Allow unthemed values.
14020 (customize-set-variable): Push setting to `user' theme.
14021
14022 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
14023
14024 * progmodes/gud.el: Don't require font-lock as it's now
14025 automatically loaded.
14026 (gud-speedbar-buttons): Replace gdb-var-changed with
14027 gdb-force-update.
14028
14029 * progmodes/gdb-ui.el (gdb-force-update): Rename from
14030 gdb-var-changed.
14031 (gdb-post-prompt): Use it.
14032 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
14033 (gdb-var-update-handler, gdb-var-delete)
14034 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
14035 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
14036 gdb-force-update in gdb-post-prompt.
14037 (gdb-reset): Clear watch expressions from speedbar when quitting.
14038
14039 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
14040
14041 * viper-cmd.el (viper-insert-state-post-command-sentinel)
14042 (viper-change-state-to-vi, viper-change-state-to-emacs):
14043 Make aware of cursor coloring in the Emacs state.
14044 (viper-special-read-and-insert-char): Use read-char-exclusive.
14045 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
14046
14047 * viper-init.el (viper-emacs-state-cursor-color): New variable.
14048
14049 * viper-util.el (viper-save-cursor-color)
14050 (viper-get-saved-cursor-color-in-replace-mode)
14051 (viper-get-saved-cursor-color-in-insert-mode)
14052 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
14053 state.
14054 (viper-get-saved-cursor-color-in-emacs-mode): New function.
14055
14056 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
14057 (ediff-ignore-case-option3, ediff-actual-diff-options)
14058 (ediff-actual-diff3-options): New variables to control case sensitivity.
14059 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
14060 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
14061 (ediff-toggle-ignore-case): New function.
14062 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
14063
14064 * ediff-help.el (ediff-long-help-message-narrow2)
14065 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
14066 (ediff-long-help-message-word-mode): Add ignore-case command.
14067 (ediff-help-for-quick-help): Add ignore-case command.
14068
14069 * ediff-merg.el: Move provide to the end.
14070
14071 * ediff-ptch.el: Move provide to the end.
14072
14073 * ediff-wind.el: Move provide to the end.
14074
14075 * ediff-mult.el: Move provide to the end.
14076 (ediff-set-meta-overlay): Enable follow-link.
14077
14078 * ediff.el: Move provide to the end.
14079 Break recursive load cycle in eval-when-compile.
14080 (ediff-patch-buffer): Better heuristics.
14081
14082 * ediff-util.el: Move provide to the end.
14083 Break recursive load cycle in eval-when-compile.
14084 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
14085 defuns.
14086 (ediff-submit-report): Pass the values of ediff-diff3-program,
14087 ediff-diff3-options.
14088
14089 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
14090
14091 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
14092 the opening bracket of the following bracketing pairs: {}, [], (), <>,
14093 `' (for example, in the docstring of `windmove-default-keybindings').
14094
14095 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
14096
14097 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
14098 shadow face. Don't provide binding to edit variable when it is
14099 out of scope.
14100
14101 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
14102 (gdb-var-update-handler): Detect out of scope variables with pre
14103 GDB 6.4 too.
14104 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
14105 Reset status of variable objects to nil in update handlers.
14106 (gdb-var-update-handler-1): Detect when a variable object comes
14107 in scope. setcar on var changes gdb-var-list directly.
14108
14109 2006-02-17 Juri Linkov <juri@jurta.org>
14110
14111 * ffap.el (ffap) <defface>: Add explicit face declaration.
14112 (ffap-highlight): Use face `ffap' directly instead of checking
14113 for its existence.
14114
14115 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
14116 `visible-ok' of `other-buffer' to find the right original buffer.
14117
14118 * info.el (Info-search): Skip `Local Variables' node.
14119
14120 2006-02-17 Juri Linkov <juri@jurta.org>
14121
14122 * info.el (Info-find-file): Check for symbols `apropos', `history',
14123 `toc' in the input filename, and return these symbols as is.
14124 (Info-find-node-2): Set Info-current-file to symbols `apropos',
14125 `history', `toc' instead of strings.
14126 (Info-set-mode-line): For non-string Info-current-file use the
14127 symbol's name inside **.
14128 (Info-isearch-push-state): Add quote before Info-current-file and
14129 Info-current-node.
14130 (Info-isearch-pop-state): Use `equal' instead of `string='.
14131 (Info-extract-pointer, Info-following-node-name): Use
14132 `match-string-no-properties' instead of `match-string'.
14133 (Info-up): Check `old-file' for `stringp'.
14134 (Info-history): Use `equal' instead of `string-equal'.
14135 Check `file' for `stringp'.
14136 (Info-history): Use symbol `history' instead of string as first arg
14137 of `Info-find-node'.
14138 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
14139 `toc' instead of string.
14140 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
14141 instead of `buffer-substring', and `match-string-no-properties'
14142 instead of `match-string'.
14143 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
14144 instead of strings.
14145 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
14146 Use symbol `apropos' instead of string.
14147 (Info-copy-current-node-name): Check `Info-current-file' for
14148 `stringp' and construct a command with `Info-find-node' from it.
14149 (Info-fontify-node): Use `match-string-no-properties' instead of
14150 `match-string' and check file names for `stringp'.
14151 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
14152 `history', `toc' instead of strings.
14153
14154 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
14155
14156 * files.el: Rearrange functions and variables in the file local
14157 variables section.
14158
14159 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
14160
14161 * files.el: Add truncate-lines, ispell-check-comments and
14162 ispell-local-dictionary as safe local variables.
14163
14164 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
14165
14166 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
14167 out of scope variables.
14168 (gud-speedbar-buttons): Use unless.
14169
14170 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
14171 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
14172 (gdb-show-changed-values): Also use for out of scope variables.
14173 (gdb-var-update-handler-1): Note if variable goes out of scope.
14174
14175 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
14176
14177 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
14178 default to global variable values for unsupplied args.
14179 (rcirc-get-buffer-create): Fix bug with setting the target.
14180 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
14181 test for rcirc-always-use-server-buffer-flag here.
14182 (rcirc-response-formats): Add %N, which is a facified nick. %n
14183 uses the default face. Change the ACTION format string. If the
14184 "nick" is the server, don't print anything for that field.
14185 Comment fixes.
14186 (rcirc-target-buffer): Don't test
14187 rcirc-always-use-server-buffer-flag here.
14188 (rcirc-print): Squeeze extra spaces out of the text before message.
14189 (rcirc-put-nick-channel): Strip potential "@" char from nick
14190 before adding them to nick table.
14191 (rcirc-url-regexp): Improve to match address like "foo.com".
14192
14193 2006-02-17 Eli Zaretskii <eliz@gnu.org>
14194
14195 * allout.el (allout-hidden-p): Move this defsubst before
14196 allout-overlay-interior-modification-handler, where it is first
14197 used.
14198
14199 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
14200
14201 * allout.el: Use allout invisible-text overlays instead of
14202 selective display for concealed text. Also, lots of general
14203 cleanup, and improved compatibility code.
14204
14205 (allout-version): Incremented, corrected, revised, and refined
14206 module commentary.
14207
14208 (provide 'allout): Moved to the bottom, added a require of overlay.
14209
14210 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
14211 `except-current'.
14212 (allout-write-file-hook-handler): Minimize delay.
14213 (count-trailing-whitespace-region): New function so
14214 auto-encryption of current topic can resituate cursor exactly.
14215 PGP/GPG encryption trims trailing whitespace from lines, which
14216 must be accounted for across encryption then decryption.
14217
14218 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
14219 just plain "\C-c", to avoid intruding on user's keybinding space.
14220
14221 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
14222 parameter, so user request to provide a new password is done.
14223
14224 (allout-outside-normal-auto-fill-function, allout-auto-fill):
14225 Refined mechanism for auto-filling behavior while in allout mode.
14226
14227 (allout-mode): Explicitly specify the mode map in the docstring.
14228 Clarify provision for various write-file hook var names.
14229 Adjusted for invisible-text overlays instead of selective-display.
14230
14231 (allout-depth): Really return 0 if not within any topic. This
14232 rectifies `allout-beginning-of-level' and sequence numbering
14233 errors that occur when cutting and pasting numbered topics.
14234 Changed from a in-line subst to a regular function, as well.
14235
14236 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
14237
14238 (allout-end-of-subtree, allout-end-of-subtree)
14239 (allout-end-of-entry, allout-end-of-current-heading)
14240 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
14241 (allout-show-children, allout-show-to-offshoot)
14242 (allout-hide-current-entry, allout-show-current-entry): Rectified
14243 handling of trailing blank lines between items.
14244
14245 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
14246 (allout-current-depth, allout-unprotected, allout-hidden-p)
14247 (allout-on-current-heading-p, allout-listify-exposed)
14248 (allout-chart-subtree, allout-goto-prefix)
14249 (allout-back-to-current-heading, allout-get-body-text)
14250 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
14251 (allout-hide-region-body, allout-toggle-subtree-encryption)
14252 (allout-encrypt-string, allout-encrypted-key-info)
14253 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
14254 (allout-file-vars-section-data): Adjusted for use with
14255 invisible-text overlays instead of selective-display.
14256
14257 (allout-kill-line, allout-kill-topic, allout-yank-processing):
14258 Reworked for use with invisible text overlays.
14259
14260 (allout-current-topic-collapsed-p): New function.
14261
14262 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
14263 to know when to close the containing topic.
14264
14265 (allout-pre-command-business, allout-post-command-business):
14266 Simplify undo-batching and dynamic isearch exposure.
14267
14268 (allout-set-overlay-category): New for invisible-text overlays.
14269 Sets properties of allout-overlay-category, used by
14270 allout-flag-region to set invisible-text overlay properties.
14271 (allout-get-invisibility-overlay): Get the first qualifying
14272 invisibility overlay, so we can find the extent of it.
14273 (allout-back-to-visible-text): Get to just before the beginnining
14274 of the current invisibility overlay, if any.
14275
14276 (allout-overlay-insert-in-front-handler)
14277 (allout-overlay-interior-modification-handler)
14278 (allout-before-change-handler, allout-isearch-end-handler): New
14279 functions to handle extraordinary actions affecting concealed
14280 text.
14281
14282 (allout-flag-region): Use overlays instead of selective-display
14283 for invisible text - by inheritence from the properties of
14284 allout-overlay-category in mainline Emacs, and applied
14285 property-by-property in XEmacs, some recent versions of which
14286 don't inherit the properties from the category. Provisions to
14287 respond to concealed-text edits simplified drastically.
14288
14289 (allout-isearch-rectification, allout-isearch-was-font-lock)
14290 (allout-isearch-expose, allout-enwrap-isearch)
14291 (allout-isearch-abort, allout-pre-was-isearching)
14292 (allout-isearch-prior-pos, allout-isearch-did-quit)
14293 (allout-isearch-dynamic-expose)
14294 (allout-hide-current-entry-completely): Functions deleted.
14295
14296 (allout-undo-aggregation): Explicit undo aggregation no longer
14297 necessary due to transition away from selective-display.
14298
14299 (set-allout-regexp, allout-up-current-level)
14300 (allout-next-visible-heading, allout-forward-current-level)
14301 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
14302 (allout-kill-line, allout-yank-processing, allout-show-children)
14303 (allout-expose-topic, allout-old-expose-topic)
14304 (allout-listify-exposed, allout-insert-latex-header)
14305 (allout-toggle-subtree-encryption, allout-encrypt-string)
14306 (remove-from-invisibility-spec, allout-hide-current-subtree):
14307 Ditched unused variables.
14308
14309 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
14310
14311 * textmodes/ispell.el (ispell-change-dictionary): Call
14312 ispell-buffer-local-dict instead of
14313 ispell-accept-buffer-local-defs.
14314 (ispell-local-dictionary-alist): Accept as valid any coding-system
14315 supported by Emacs.
14316 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
14317 changed to iso-8859-3.
14318
14319 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
14320
14321 * speedbar.el (speedbar-frame-width): Make an inline function
14322 instead of a macro. Use frame-width.
14323 (speedbar-try-completion, speedbar-update-contents)
14324 (speedbar-timer-fn): Use consp.
14325 (speedbar-update-localized-contents): Try to preserve point.
14326
14327 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
14328 (menu): Re-order menu items.
14329 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
14330 field.
14331 (gdb-var-update-handler-1): Use it for GDB 6.4+.
14332 (gdb-post-prompt): Speed things by not forcing update.
14333
14334 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
14335
14336 * wid-edit.el (widget-button-click): For mouse-1, cancel button
14337 press and perform default action if we get a mouse movement event.
14338
14339 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
14340
14341 * calendar/icalendar.el (icalendar--get-event-property)
14342 (icalendar--get-event-property-attributes): Fix typos in
14343 docstrings.
14344
14345 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
14346 docstring.
14347
14348 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
14349
14350 * bs.el (bs-mode): Use `buffer-disable-undo'.
14351 (bs--get-file-name): Simplify.
14352 (bs-show-in-buffer): Mark the buffer as not modified.
14353
14354 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
14355
14356 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
14357 widget-button-click.
14358
14359 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
14360 (custom-mode): Update docstring.
14361
14362 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
14363 binding.
14364
14365 * files.el (hack-local-variables-confirm): Allow scrolling if the
14366 file variable list is too long. Kill temp buffer after use.
14367
14368 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
14369
14370 * progmodes/gud.el (gdb): Improve doc string.
14371 (gdb-script-font-lock-keywords): Expand allowed character set.
14372
14373 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
14374 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
14375 (gdb-separate-io-interrupt, gdb-separate-io-quit)
14376 (gdb-separate-io-stop, gdb-separate-io-eof):
14377 Rename from gdb-inferior-* to gdb-separate-*.
14378 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
14379
14380 2006-02-14 Jay Belanger <belanger@truman.edu>
14381
14382 * calc/calc-arith.el (math-check-known-scalarp): Make sure
14383 expression is a symbol before checking that it is bound.
14384
14385 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
14386 test to see if equation can be solved.
14387
14388 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
14389
14390 * wid-edit.el (widget-button-click): Use :pressed-face property
14391 for overlay face, if it exists.
14392
14393 * cus-edit.el (custom-manual, custom-add-see-also)
14394 (custom-add-parent-links, custom-group-link): Add :pressed-face
14395 property to links.
14396
14397 * files.el (hack-local-variables): Remove ignored variables before
14398 checking if any variables need setting.
14399
14400 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14401
14402 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
14403
14404 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
14405
14406 * help.el (where-is): Fix message for remapped commands.
14407
14408 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
14409 Fix typos in docstrings.
14410
14411 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
14412
14413 * files.el (safe-local-variable-values): New option.
14414 (hack-local-variables-prop-line): Return a list of variable-value
14415 pairs if MODE-ONLY is non-nil.
14416 (hack-local-variables): Construct list of variable-value pairs,
14417 and apply or reject them in one go. Ask for confirmation if
14418 variables are not known safe.
14419 (hack-local-variables-confirm): Complete rewrite. Support
14420 `safe-local-variable-values'.
14421 (enable-local-variables): Update docstring to reflect new
14422 behavior.
14423 (ignored-local-variables): Ignore ignored-local-variables and
14424 safe-local-variable-values.
14425 (safe-local-variable-p): New function.
14426 (risky-local-variable-p): `safe-local-variable' property check
14427 moved to safe-local-variable-p.
14428 (hack-one-local-variable): Checks moved to hack-local-variables.
14429
14430 (byte-compile-dynamic, c-basic-offset, c-file-style)
14431 (c-indent-level, comment-column, fill-column, fill-prefix)
14432 (indent-tabs-mode, kept-new-versions, no-byte-compile)
14433 (no-update-autoloads, outline-regexp, page-delimiter)
14434 (paragraph-start, paragraph-separate, sentence-end)
14435 (sentence-end-double-space tab-width, version-control):
14436 Add `safe-local-variable' property.
14437
14438 * find-lisp.el: Delete nonexistent `autocompile' file variable.
14439
14440 * icomplete.el, play/landmark.el: Change nonexistent
14441 `outline-layout' file variable to `allout-layout'.
14442
14443 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
14444
14445 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
14446 (gdb-get-changed-registers): Test value of gud-minor-mode relative
14447 to gud-comint-buffer.
14448 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
14449 gdb-ui.el for gdb-mi.el.
14450 (gdb-post-prompt, gdb-get-changed-registers): Move test for
14451 registers buffer to gdb-get-changed-registers.
14452 (gdb-breakpoint-regexp): New regexp. Allow toggling and
14453 deletion of catchpoints (throw and catch).
14454 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
14455 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
14456 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
14457 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
14458 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
14459
14460 2006-02-13 Jay Belanger <belanger@truman.edu>
14461
14462 * calc/calc-arith.el (math-check-known-matrixp): Make sure
14463 expression is a symbol before checking that it is bound.
14464
14465 2006-02-13 Richard M. Stallman <rms@gnu.org>
14466
14467 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
14468 for the minibuffer too, but not if resize-mini-windows will interfere.
14469
14470 * help.el (describe-key-briefly, describe-key): Do all arg-reading
14471 inside `interactive' spec.
14472 (describe-key-briefly-internal, describe-key-internal):
14473 Functions merged back into their callers.
14474
14475 2006-02-13 Martin Rudalics <rudalics@gmx.at>
14476
14477 * info.el (info-xref-visited): Inherit from info-xref too.
14478 (Info-set-mode-line): Replace occurrences of `%' by `%%'
14479 when propertizing Info-current-file and Info-current-node.
14480
14481 2006-02-13 Juri Linkov <juri@jurta.org>
14482
14483 * tumme.el (tumme-thumbnail-storage): Fix docstring.
14484 (tumme-thumb-name): Fix per-directory format.
14485
14486 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
14487
14488 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
14489
14490 2006-02-12 Miles Bader <miles@gnu.org>
14491
14492 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
14493
14494 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
14495
14496 * tumme.el: Remove history section. If someone needs the it, it
14497 can always be found in CVS.
14498
14499 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
14500
14501 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
14502 about the Thumbnail Managing Standard option.
14503
14504 2006-02-12 Richard M. Stallman <rms@gnu.org>
14505
14506 * subr.el (substitute-key-definition): Doc fix.
14507
14508 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
14509
14510 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
14511
14512 * info.el (Info-mode): Doc fix.
14513
14514 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
14515
14516 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
14517
14518 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
14519 because on Solaris a POSIX compatible "id" is needed. Reported by
14520 Magnus Henoch <mange@freemail.hu>.
14521
14522 2006-02-12 Juri Linkov <juri@jurta.org>
14523
14524 * tumme.el: Remove todo item about Thumbnail Managing Standard.
14525 (tumme) <defgroup>: Change :group to `multimedia'.
14526 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
14527 Managing Standard.
14528 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
14529 Fix dostring.
14530 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
14531 and %y. Fix docstring.
14532 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
14533 (tumme-cmd-create-standard-thumbnail-command): New user options.
14534 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
14535 is `standard'. Fix docstring.
14536 (tumme-thumb-width, tumme-thumb-height): New user options.
14537 (tumme-external-viewer): Try to find various viewers.
14538 (tumme-get-thumbnail-image): Use `create-image' instead of
14539 constructing the `image' structure.
14540 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
14541 `standard'.
14542 (tumme-thumb-name): Add file name generation for standard storage.
14543 Simplify code for other storages.
14544 (tumme-thumb-name): Use width %w and height %h instead of size %s.
14545 Add modification time %m and thumbnail-nq8 %q.
14546 Use `tumme-cmd-create-standard-thumbnail-command' if
14547 tumme-thumbnail-storage is `standard'.
14548 (tumme-dired-insert-marked-thumbs): New autoload command.
14549 (tumme-dired-after-readin-hook): New function.
14550 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
14551 `tumme-thumb-size'.
14552 (tumme-display-image): Replace size-x %x and size-y %y with
14553 width %w and height %h.
14554
14555 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
14556 `tumme-dired-insert-marked-thumbs'.
14557
14558 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
14559
14560 * tumme.el (tumme-write-tag): Fix small bug (file name did not
14561 include path).
14562 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
14563 matching tag.
14564
14565 2006-02-12 Miles Bader <miles@gnu.org>
14566
14567 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
14568 New variables.
14569 (rcirc-abbrev-nick): New function.
14570 (rcirc-format-response-string): Rewrite to use the formats in
14571 `rcirc-response-formats' and expand escape sequences therein.
14572 A text-property `rcirc-text' is added over the actual response
14573 text to make easy to find inside the returned string.
14574 (rcirc-print): When filling, just look for the `rcirc-text'
14575 text-property to find the appropriate fill prefix, instead of
14576 using hardwired patterns.
14577
14578 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
14579
14580 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
14581 Managing Standard.
14582
14583 2006-02-11 Kim F. Storm <storm@cua.dk>
14584
14585 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
14586 Don't use insert-buffer; do insert-buffer-substring directly.
14587 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
14588
14589 2006-02-11 Martin Rudalics <rudalics@gmx.at>
14590
14591 * files.el (revert-buffer, recover-file): Replace buffer-read-only
14592 with inhibit-read-only. Suggested by Stefan Monnier.
14593 (revert-buffer): Let insert-file-contents discard
14594 buffer-undo-list. Simplify code.
14595 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
14596
14597 2006-02-11 Eli Zaretskii <eliz@gnu.org>
14598
14599 * menu-bar.el (menu-bar-select-yank): Add a doc string.
14600
14601 * help.el (describe-key-briefly): Now a wrapper for
14602 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
14603 to t. Populate yank-menu if empty.
14604 (describe-key-briefly-internal): Renamed from describe-key-briefly.
14605 (describe-key): Now a wrapper for describe-key-internal. Bind
14606 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
14607 (describe-key-internal): Renamed from describe-key.
14608
14609 2006-02-11 Milan Zamazal <pdm@zamazal.org>
14610
14611 * progmodes/glasses.el (glasses-separator): Doc fix.
14612 (glasses-original-separator): New defcustom.
14613 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
14614
14615 2006-02-11 Martin Rudalics <rudalics@gmx.at>
14616
14617 * mwheel.el (mouse-wheel-up-event): Doc fix.
14618
14619 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
14620
14621 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
14622 (tumme-dir): New function. Copied from thumbs.el.
14623
14624 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
14625
14626 * desktop.el (desktop-outvar): Fix typo.
14627 (desktop-save-buffer-p): Doc fix.
14628
14629 * subr.el (substitute-key-definition): Fix typo.
14630
14631 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14632
14633 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
14634 when window-system is mac.
14635
14636 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
14637
14638 2006-02-10 Kim F. Storm <storm@cua.dk>
14639
14640 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
14641 indirect-function instead of using condition-case.
14642
14643 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
14644
14645 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
14646 less `colloquial'...
14647
14648 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
14649
14650 * tumme.el: Add a couple of todo items.
14651
14652 2006-02-09 Lars Hansen <larsh@soem.dk>
14653
14654 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
14655 (highlight-changes-mode): Don't change desktop-locals-to-save.
14656
14657 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
14658
14659 * image-mode.el (image-toggle-display): Clear image cache if using
14660 filename.
14661
14662 2006-02-09 Masatake YAMATO <jet@gyve.org>
14663
14664 * dired-x.el (dired-guess-shell-alist-default): Add .man as
14665 a `dired-man' target.
14666
14667 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
14668 boundary of symbols.
14669
14670 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
14671
14672 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
14673
14674 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
14675
14676 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
14677 `mapcar'; return nil.
14678
14679 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
14680
14681 * mouse.el (mouse-drag-track): Don't change window if we rebind to
14682 some other event.
14683
14684 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
14685
14686 * net/rcirc.el (rcirc-startup-channels-alist):
14687 Add irc.freenode.net and #emacs as defaults.
14688 (rcirc-ignore-all-activity-flag): Remove variable.
14689 (rcirc-authinfo): New variable.
14690 (rcirc-authinfo-filename): Remove variable.
14691 (rcirc-always-use-server-buffer-flag): New flag.
14692 (rcirc): M-x rcirc will automatically connect without prompting.
14693 C-u M-x rcirc will prompt. Use rcirc-connect to create a
14694 connection in lisp.
14695 (rcirc-process-server-response-1): Remove everything but the nick
14696 portion of the sender so it doesn't need to be done everywhere
14697 else. Update related code.
14698 (global-map): Remove global keybindings.
14699 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
14700 (rcirc-send-input): Split into several functions.
14701 (rcirc-process-input-line, rcirc-process-message)
14702 (rcirc-process-command): New functions.
14703 (rcirc-target-buffer): New function to determine where to route
14704 messages.
14705 (rcirc-user-nick): Save match data.
14706 (rcirc-toggle-ignore-buffer-activity)
14707 (rcirc-update-activity-string): Remove global ignore functionality,
14708 which can be done now by toggling rcirc-track-minor-mode.
14709 (rcirc-track-minor-mode-map): New keymap.
14710 (rcirc-track-minor-mode): New minor-mode.
14711 (ignore): Make the ignore output nicer. Always print it when
14712 adding or removing nicks.
14713 (rcirc-url-regexp): Improve.
14714 (rcirc-mangle-text): Remove properties before using text in the
14715 modeline.
14716 (rcirc-authenticate): Authentication data comes from
14717 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
14718 (rcirc-server-prefix): Inherit from rcirc-server.
14719
14720 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
14721
14722 * Makefile.in (compile): Append "|| true" to the end of the `find'
14723 command, like compile-always does.
14724
14725 2006-02-08 Sam Steingold <sds@gnu.org>
14726
14727 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
14728 output from a dead connection.
14729
14730 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
14731
14732 * dired.el (dired-mode-map): Add more bindings for tumme.
14733
14734 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
14735
14736 * wdired.el (wdired-mode-map): Use remap.
14737 (wdired-get-filename): Massage.
14738 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
14739 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
14740 `keymap' property rather than `local-map'.
14741
14742 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
14743
14744 * tumme.el (tumme-get-thumbnail-image): New utility function.
14745 Suggested by from Chong Yidong.
14746 (tumme-dired-with-window-configuration): Rename from
14747 `tumme-dired'. Add code to save window configuration.
14748 (tumme-restore-window-configuration): New command to restore the
14749 window configuration that `tumme-dired-with-window-configuration'
14750 saves before it changes the window configuration.
14751 (tumme-show-all-from-dir): New command to display thumbnails for
14752 all files in a directory entered by the user, like M-x thumbs.
14753 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
14754 have been created.
14755 (tumme-display-thumbnail-original-image): Call `display-buffer'.
14756 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
14757 Remove obsolete test function.
14758
14759 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
14760
14761 * vc.el (small-temporary-file-directory): Remove defvar; there's
14762 a defcustom for it in files.el.
14763
14764 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
14765 Fix typo in message.
14766 (tumme-gallery-generate): Fix typo in `error' message.
14767 (tumme-display-window-height-correction)
14768 (tumme-display-window-width-correction, tumme-line-up-dynamic)
14769 (tumme-line-up-interactive): Dox fixes.
14770 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
14771 (tumme-restore-window-configuration, tumme-format-properties-string)
14772 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
14773 Fix typos in docstrings.
14774
14775 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com>
14776
14777 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
14778
14779 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
14780
14781 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
14782 User should use hook if desired.
14783
14784 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
14785 buffer if necessary.
14786 (gdb-delete-frame-or-window): New function.
14787 (gdb-breakpoints-mode-map): Bind "q" to it.
14788
14789 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
14790
14791 * textmodes/nroff-mode.el: Clean up name space.
14792 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
14793 (nroff-mode): Obey the global setting of nroff-electric-mode.
14794 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
14795
14796 * calendar/calendar.el (calendar-increment-month): Typo in last change.
14797
14798 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
14799
14800 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
14801
14802 2006-02-06 Lars Hansen <larsh@soem.dk>
14803
14804 * generic-x.el (etc-fstab-generic-mode): Add file system types
14805 cifs and usbdevfs. Allow special chars in file names.
14806
14807 2006-02-05 Jay Belanger <belanger@truman.edu>
14808
14809 Update copyright notices of the files in lisp/calc.
14810
14811 2006-02-05 Romain Francoise <romain@orebokech.com>
14812
14813 Update copyright notices of all files in the lisp/play directory.
14814
14815 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
14816
14817 * ldefs-boot.el: Regenerate.
14818
14819 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
14820
14821 2006-02-05 Kim F. Storm <storm@cua.dk>
14822
14823 * files.el (magic-mode-regexp-match-limit): New defvar.
14824 (set-auto-mode): Use it to limit magic-mode-alist matching.
14825
14826 2006-02-04 Eli Zaretskii <eliz@gnu.org>
14827
14828 * info.el (Info-index, Info-mode): Improve the description of the
14829 `i' command.
14830
14831 * ldefs-boot.el: Regenerate.
14832
14833 2006-02-03 Werner Lemberg <wl@gnu.org>
14834
14835 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
14836 greedy to find the closing bracket in \*[...] and similar
14837 expressions. This is a first rough fix -- many additional
14838 refinements are necessary to make nroff mode really usable with groff.
14839
14840 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
14841
14842 * international/mule-cmds.el (set-locale-environment):
14843 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
14844 libX11.
14845
14846 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
14847
14848 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
14849 archive are created in archive-tmpdir.
14850
14851 2006-02-02 John Paul Wallington <jpw@pobox.com>
14852
14853 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
14854 (ibuffer-fontification-alist): Use it.
14855 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
14856 to "* z" and the Ibuffer Mark menu.
14857
14858 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
14859
14860 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
14861
14862 * textmodes/table.el (*table--cell-describe-mode)
14863 (*table--cell-describe-bindings): Undo last change since
14864 print-help-return-message is not obsoleted by anything at all.
14865
14866 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
14867
14868 * emulation/cua-base.el (cua-mode): Doc fix.
14869
14870 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
14871
14872 * dframe.el (dframe-handle-make-frame-visible)
14873 (dframe-handle-iconify-frame, dframe-get-focus)
14874 (dframe-select-attached-frame, dframe-power-click)
14875 (dframe-frame-mode): Fix typos in docstrings.
14876
14877 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
14878 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
14879 Fix typos in docstrings.
14880
14881 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
14882 (hi-lock-face-buffer, hi-lock-font-lock-hook)
14883 (hi-lock-archaic-interface-message-used)
14884 (hi-lock-file-patterns-range): Fix typos in docstrings.
14885
14886 * savehist.el (savehist-loaded, savehist-load, savehist-install)
14887 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
14888
14889 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
14890 Fix typo in docstring.
14891
14892 * net/newsticker.el (newsticker--decode-iso8601-date)
14893 (newsticker--set-customvar, newsticker--buffer-insert-item)
14894 (newsticker--do-run-auto-mark-filter)
14895 (newsticker--parse-generic-feed): Doc fixes.
14896 (newsticker--retrieval-timer-list, newsticker-url-list)
14897 (newsticker-hide-immortal-items-in-echo-area)
14898 (newsticker-hide-obsolete-items-in-echo-area)
14899 (newsticker-new-item-face, newsticker--enclosure)
14900 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
14901 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
14902 (newsticker--parse-generic-feed, newsticker--cache-contains)
14903 (newsticker--stat-num-items, newsticker-download-enclosures):
14904 Fix typos in docstrings.
14905
14906 * net/rcirc.el (rcirc-debug): Doc fix.
14907 (rcirc-fill-column, rcirc-receive-message-hooks)
14908 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
14909 (rcirc-mode, rcirc-generate-new-buffer-name)
14910 (rcirc-startup-channels, rcirc-ignore-update-automatic)
14911 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
14912 Fix typos in docstrings.
14913 (rcirc-print): "?\ " -> "?\s".
14914 (rcirc-cmd-join): Improve argument/docstring consistency.
14915
14916 2006-02-01 Mark A. Hershberger <mah@everybody.org>
14917
14918 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
14919 before narrow-to-region.
14920
14921 2006-02-01 Richard M. Stallman <rms@gnu.org>
14922
14923 * simple.el (move-beginning-of-line): Scan properly for invis change.
14924
14925 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
14926
14927 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
14928
14929 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
14930 change bit only when id-format is 'integer. Reported by Matt
14931 Hodges <M.P.Hodges@rl.ac.uk>.
14932
14933 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
14934
14935 * hilit-chg.el (highlight-changes-initial-state)
14936 (highlight-changes-global-initial-state): Doc fixes.
14937 (highlight-changes-global-modes, global-highlight-changes):
14938 Fix typos in docstrings.
14939
14940 2006-02-01 Kim F. Storm <storm@cua.dk>
14941
14942 * emulation/cua-base.el (cua-mode): Mention that CUA enables
14943 transient-mark-mode in doc string.
14944
14945 2006-01-31 Richard M. Stallman <rms@gnu.org>
14946
14947 * replace.el (multi-occur): Doc fix.
14948 (multi-occur-in-matching-buffers): Rename from
14949 multi-occur-by-filename-regexp. Prefix arg says match
14950 buffer names instead of file names.
14951
14952 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
14953
14954 * bs.el: Allow non-default values of `bs-header-lines-length'.
14955 (bs--running-in-xemacs): Remove (not needed anymore).
14956 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
14957 instead of `shrink-window', thus avoiding having to compute the
14958 height of the window.
14959 (bs--up): Wrap around even when there's no header.
14960 (bs--down): Use `forward-line' instead of `next-line'.
14961
14962 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
14963
14964 * image-mode.el (image-toggle-display): Use file name if possible,
14965 instead of unnecessarily allocating a (possibly huge) lisp string.
14966
14967 2006-01-30 John Paul Wallington <jpw@pobox.com>
14968
14969 * subr.el (toplevel): Define `cl-assertion-failed' condition here
14970 because the `assert' macro signals it at runtime.
14971
14972 * emacs-lisp/cl.el (toplevel): Remove definition of
14973 `cl-assertion-failed' condition.
14974
14975 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
14976
14977 * thumbs.el (thumbs-marked-list): Make buffer-local and
14978 permanent-local.
14979 (thumbs-insert-thumb): Make help-echo non-sticky.
14980 (thumbs-file-alist): Use eolp as check for (non)-image.
14981
14982 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
14983
14984 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
14985 (ediff-before-session-group-setup-hooks)
14986 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
14987 Fix typos in docstrings.
14988
14989 * window.el (bw-dir, bw-eqdir, balance-windows)
14990 (split-window-keep-point): Fix typos in docstrings.
14991
14992 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
14993 (org-quote-string, org-calendar-to-agenda-key)
14994 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
14995 (org-show-following-heading, org-tags-column)
14996 (org-use-tag-inheritance, org, org-allow-space-in-links)
14997 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
14998 (org-enable-table-editor, org-calc-default-modes)
14999 (org-table-allow-automatic-line-recalculation)
15000 (org-export-html-style, org-export-with-fixed-width)
15001 (org-export-with-sub-superscripts, org-special-keyword)
15002 (org-formula, org-time-grid, org-table-may-need-update)
15003 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
15004 (org-goto-quit, org-get-indentation, org-end-of-item)
15005 (org-move-item-down, org-move-item-up)
15006 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
15007 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
15008 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
15009 (org-agenda-log-mode, org-agenda-toggle-diary)
15010 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
15011 (org-agenda-file-to-end, org-agenda-no-heading-message)
15012 (org-agenda-get-closed, org-format-agenda-item)
15013 (org-cmp-priority, org-cmp-category, org-cmp-time)
15014 (org-agenda-change-all-lines, org-agenda-diary-entry)
15015 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
15016 (org-link-search, org-camel-to-words, org-open-file)
15017 (org-remember-handler, org-table-convert-region)
15018 (org-table-move-row-down, org-table-move-row-up)
15019 (org-table-copy-region, org-table-wrap-region)
15020 (org-table-toggle-vline-visibility)
15021 (org-table-get-vertical-vector, org-table-modify-formulas)
15022 (org-table-get-specials, org-recalc-commands)
15023 (org-table-rotate-recalc-marks, org-table-eval-formula)
15024 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
15025 (org-level-color-stars-only, org-insert-heading):
15026 Fix typos in docstrings.
15027 (last-arg): Add defvar.
15028
15029 * makefile.w32-in (WINS): Add erc.
15030 (MH_E_SRC): Update (copied from lisp/Makefile.in).
15031
15032 2006-01-29 Bill Wohler <wohler@newt.com>
15033
15034 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
15035 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
15036 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
15037 (mh-autoloads): Don't use comments on otherwise empty lines.
15038
15039 2006-01-29 Edward O'Connor <ted@oconnor.cx>
15040
15041 * emulation/viper.el (viper-major-mode-modifier-list):
15042 Add insert-state and vi-state entries for erc-mode.
15043 (viper-go-away, viper-set-hooks): Add and remove
15044 viper-comint-mode-hook from erc-mode-hook as appropriate.
15045
15046 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
15047
15048 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
15049
15050 * bs.el (bs--format-aux): Implement `middle' alignment as
15051 described in the docstring for `bs-attributes-list'.
15052 (bs--get-name): Simplify. Don't pad the buffer name.
15053
15054 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
15055
15056 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
15057 English aspell dictionary is installed, use the first entry of
15058 ispell-dictionary-alist-1.
15059
15060 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
15061
15062 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
15063 Doc fix.
15064
15065 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
15066
15067 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
15068 for `process-file', in order to let it work for older Emacsen too.
15069
15070 2006-01-27 Eli Zaretskii <eliz@gnu.org>
15071
15072 * international/latexenc.el: Add a suitable `coding:' tag.
15073 (latexenc-find-file-coding-system): Undo last change.
15074
15075 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
15076
15077 * international/latexenc.el (latexenc-find-file-coding-system):
15078 Make sure latexenc-main-file is a regular file and is readable.
15079
15080 2006-01-27 Andre Spiegel <spiegel@gnu.org>
15081
15082 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
15083 Pass FILE to vc-user-login-name.
15084
15085 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
15086
15087 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
15088
15089 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
15090 there are no more images to display.
15091 (thumbs-mark, thumbs-unmark): Revert change so that they move to
15092 the next image.
15093
15094 2006-01-26 Richard M. Stallman <rms@gnu.org>
15095
15096 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
15097
15098 * wid-edit.el (advertised-widget-backward): New alias.
15099 (widget-keymap): Use advertised-widget-backward for S-TAB.
15100
15101 * tumme.el: Correct the keywords.
15102 (tumme-dir-max-size): Use defvar.
15103 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
15104
15105 * simple.el (move-beginning-of-line): Take account of fields.
15106 (clone-indirect-buffer-other-window): Take args like
15107 clone-indirect-buffer, and work like it.
15108
15109 * help-fns.el (describe-function): Don't pass `nil' as default.
15110
15111 * files.el (risky-local-variable-p): Follow var aliases.
15112
15113 * subr.el (lazy-completion-table): Doc fix.
15114
15115 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
15116 global binding of `line'.
15117
15118 2006-01-25 Andre Spiegel <spiegel@gnu.org>
15119
15120 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
15121 Tramp.
15122
15123 * vc.el (vc-default-dired-state-info): Pass FILE to
15124 vc-user-login-name.
15125 (vc-default-update-changelog): Don't use vc-user-login-name, we
15126 don't need it here.
15127
15128 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
15129 no longer necessary.
15130
15131 2006-01-25 Kenichi Handa <handa@m17n.org>
15132
15133 * international/mule.el (decode-char): Avoid the overhead of
15134 calling utf-lookup-subst-table-for-decode if
15135 utf-translate-cjk-mode is nil.
15136 (encode-char): Avoid the overhead of calling
15137 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
15138 nil.
15139
15140 2006-01-22 Kenichi Handa <handa@m17n.org>
15141
15142 * international/mule.el (make-subsidiary-coding-system): Reset
15143 `coding-system-define-form' property of subsidiaries to nil.
15144 Avoid duplicated entry in coding-system-alist.
15145 (make-coding-system): Avoid duplicated entry in
15146 coding-system-alist.
15147 (define-coding-system-alias): Likewise.
15148
15149 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
15150
15151 * completion.el: Minor fixes in introductory comment.
15152 (completion-def-wrapper): Fix alist.
15153
15154 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
15155
15156 * thumbs.el (thumbs-new-image-size): New function.
15157 (thumbs-increment-image-size-element)
15158 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
15159 (thumbs-decrement-image-size): Delete.
15160 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
15161 temp files and use to resize.
15162 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
15163 Use increment argument to enlarge/shrink. Preserve point.
15164 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
15165 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
15166 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
15167 (thumbs-mark, thumbs-unmark): Preserve point.
15168 (thumbs-modify-image): Keep old temp files and use to modify.
15169 Cleanup old temp files at load time. Preserve point.
15170 (thumbs-view-image-mode-map): Use new command names.
15171
15172 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
15173
15174 * log-view.el (log-view-minor-wrap): First rev is the one at point.
15175
15176 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
15177 the nastiest part of the cyclic dependency.
15178 (cal-menu-update): Use dotimes and calendar-increment-month.
15179
15180 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
15181 (calendar-week-start-day): Add an :initializer.
15182 (calendar-mode-map): Use suppress-keymap, and command remapping.
15183 (describe-calendar-mode): Setup xref-stack info for the back button.
15184 (calendar-star-date): Insert before delete.
15185 (calendar-set-mode-line): Add file-modified info if applicable.
15186 (calendar-increment-month): New function.
15187
15188 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
15189
15190 * font-lock.el (lisp-font-lock-keywords-2):
15191 Recognize "& keywords" only at word boundaries.
15192
15193 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
15194
15195 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
15196 and permanent-local.
15197 (thumbs-max-image-number): New variable.
15198 (thumbs-do-thumbs-insertion): Use them.
15199 (thumbs-per-line): Change default to 4.
15200 (thumbs-marked-list): Rename from thumbs-markedL.
15201 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
15202 (thumbs-rename-images): Use -list instead of L for internal variables.
15203 (thumbs-call-convert): Use call-process instead of shell-command.
15204 (thumbs-insert-thumb): Add filename as help-echo to each image.
15205 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
15206 Give dir to thumbs-show-thumbs-list.
15207 (thumbs-show-thumbs-list): Set default-directory to that of images.
15208 (thumbs-dired-show): Rename from thumbs-dired-show-all.
15209 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
15210 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
15211 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
15212
15213 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
15214
15215 * ses.el (ses-read-cell): Provide a default value.
15216
15217 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
15218
15219 * term/w32-win.el (image-library-alist): Add additional names for
15220 GIF library.
15221
15222 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
15223
15224 * international/latexenc.el (latexenc-find-file-coding-system):
15225 Add file-regular-p check.
15226
15227 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
15228
15229 * simple.el (clone-buffer): Don't show the new buffer in the same
15230 window.
15231
15232 2006-01-23 Juri Linkov <juri@jurta.org>
15233
15234 * faces.el (link, link-visited): New faces based on default values
15235 of `info-xref' and `info-xref-visited'.
15236
15237 * info.el (info-xref): Inherit from `link'.
15238 (info-xref-visited): Inherit from `link-visited'.
15239
15240 * cus-edit.el (custom-buffer-create-internal): Use widget type
15241 `custom-manual' instead of `info-link' and don't set properties
15242 `button-face' and `mouse-face' explicitly.
15243 (custom-browse-group-tag, custom-browse-variable-tag)
15244 (custom-browse-face-tag): Inherit from widget class
15245 `custom-group-link' instead of `push-button'.
15246 (custom-button-unraised): Inherit from `underline' face.
15247 (custom-link): Inherit from `link' face. Fix doc and group.
15248 (custom-add-parent-links, custom-group-value-create): Don't set
15249 properties `button-face' and `mouse-face' explicitly for
15250 `custom-group-link' widget.
15251 (custom-group-link): Add properties `button-face' and `mouse-face'
15252 to widget definition.
15253 (custom-field-keymap): New variable. Put `custom-field-keymap' to
15254 editable-field's :keymap property.
15255 (custom-mode): Fix docstring: substitute keybindings for
15256 `widget-forward' and `widget-backward' from `widget-keymap',
15257 `widget-complete' from `custom-field-keymap', replace old
15258 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
15259
15260 * desktop.el (desktop-load-file): Check for `fboundp' before
15261 calling `symbol-function'.
15262
15263 * simple.el (clone-buffer, clone-indirect-buffer)
15264 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
15265 `read-string'. Fix prompts.
15266
15267 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
15268
15269 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
15270
15271 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
15272
15273 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
15274
15275 * startup.el (inhibit-splash-screen, initial-scratch-message):
15276 Doc fixes.
15277
15278 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
15279
15280 Sync with Tramp 2.0.52.
15281
15282 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
15283 * net/tramp-vc.el: Add code for unloading Tramp. See comment before
15284 `tramp-unload-tramp' for checklist.
15285
15286 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
15287 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
15288 (tramp-unload-file-name-handler-alist)
15289 (tramp-unload-tramp): New defuns.
15290 (tramp-advice-PC-expand-many-files): New defadvice.
15291 (tramp-save-PC-expand-many-files, tramp-setup-complete): Defuns
15292 removed.
15293 (tramp-handle-expand-file-name): Remove double slash.
15294 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
15295 It doesn't matter, because it will be converted later on.
15296 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
15297 implementation was just heuristic.
15298 (tramp-post-connection): Set uid and gid properties.
15299 (tramp-convert-file-attributes): Set file's gid change bit.
15300 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
15301 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
15302 in case of su(do)? methods. The home directory of the local user
15303 will be taken else.
15304 (tramp-open-connection-telnet)
15305 (tramp-open-connection-rsh, tramp-open-connection-su)
15306 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
15307 local shell prompt could hurt. Reported by Romain Francoise
15308 <romain@orebokech.com>.
15309 (tramp-let-maybe): Add `edebug-form-spec' property.
15310 (tramp-handle-expand-file-name): Bind `default-directory' locally
15311 to "/" in order to avoid problems with UNC shares or Cygwin
15312 mounts.
15313 (tramp-md5-function): Fix typo in error message.
15314
15315 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
15316
15317 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
15318 for byte-compiler pacification.
15319
15320 2006-01-22 Andre Spiegel <spiegel@gnu.org>
15321
15322 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
15323 ID-FORMAT `string'. This allows us to get rid of
15324 `vc-user-login-name UID'.
15325
15326 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
15327
15328 2006-01-22 John Paul Wallington <jpw@pobox.com>
15329
15330 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
15331
15332 2006-01-21 Martin Rudalics <rudalics@gmx.at>
15333
15334 * emacs-lisp/find-func.el (find-definition-noselect)
15335 (find-variable-noselect): Search variables in C source code too.
15336 (find-function-C-source, find-function-noselect, find-function)
15337 (find-function-other-frame, find-variable-noselect, find-variable)
15338 (find-variable-other-frame, find-variable-at-point):
15339 Fix docstrings.
15340
15341 2006-01-21 Francesco Potort\e,Al\e(B <pot@gnu.org>
15342
15343 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
15344
15345 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
15346
15347 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
15348 Default to disabling the "Save affix" question.
15349
15350 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
15351
15352 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
15353 the first arg to run-python.
15354
15355 2006-01-21 Eli Zaretskii <eliz@gnu.org>
15356
15357 * startup.el (command-line-1): Handle --no-desktop if desktop.el
15358 is not loaded.
15359
15360 2006-01-20 Jay Belanger <belanger@truman.edu>
15361
15362 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
15363 limit is 0.
15364
15365 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
15366 the correct variable.
15367
15368 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
15369
15370 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
15371 link. Fixed buggy argument sequence in call to `org-view-tags'.
15372 (org-compile-prefix-format): Set `org-prefix-has-tag'.
15373 (org-prefix-has-tag): New variable.
15374 (org-format-agenda-item): Remove tags from headline if
15375 appropriate.
15376 (org-agenda-remove-tags-when-in-prefix): New option.
15377 (org-get-tags-at): New function.
15378
15379 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
15380
15381 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
15382 (thumbs-find-image): Move image name and number from buffer name
15383 to mode name. Set thumbs-buffer. Preserve point so that large
15384 images remain visible.
15385 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
15386 order.
15387 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
15388 mode name.
15389 (thumbs-next-image, thumbs-previous-image): Make them work.
15390
15391 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
15392
15393 * cus-edit.el (custom-buffer-create-internal): State in the text above
15394 the whole buffer buttons that they do not operate on hidden items.
15395 (custom-face-menu): Use `custom-face-save' instead of
15396 `custom-face-save-command'.
15397 (custom-face-save-command): Make it an alias for `custom-face-save'
15398 and declare it obsolete.
15399 (custom-face-save): Doc fix.
15400
15401 * dired.el (dired-no-confirm): Add quote.
15402 (dired-subdir-alist-pre-R): Add quote in
15403 `make-variable-buffer-local' form and remove unbalanced parenthesis.
15404
15405 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
15406
15407 * textmodes/table.el (table-mode-indicator): Typo in last change.
15408
15409 2006-01-19 Richard M. Stallman <rms@gnu.org>
15410
15411 * outline.el (hide-leaves): Don't call outline-end-of-heading.
15412 Fixes bug reported in Nov 2005.
15413
15414 * isearch.el (isearch-forward): Doc fix.
15415
15416 * dired.el (dired-move-to-filename-regexp): Define as alias.
15417 (dired-no-confirm): Use defcustom.
15418 (dired-subdir-alist-pre-R): Put defvar at top level.
15419
15420 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
15421
15422 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
15423 Mark as risky.
15424
15425 * simple.el (set-mark-command): Doc fix.
15426 (clone-indirect-buffer-other-window):
15427 Read arg like clone-indirect-buffer.
15428 (move-beginning-of-line): Skip invisible newlines.
15429
15430 2006-01-19 Masatake YAMATO <jet@gyve.org>
15431
15432 * progmodes/cpp.el (cpp-edit-load): Make the order of
15433 listed conditions in a base C code buffer and its associate
15434 CPP Edit buffer the same.
15435
15436 2006-01-19 Kenichi Handa <handa@m17n.org>
15437
15438 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
15439 (rmail-mime-feature): Likewise.
15440 (rmail-require-mime-maybe): Use display-warning to show a warning
15441 message.
15442
15443 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
15444 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
15445
15446 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
15447
15448 * array.el: Move defvars out of eval-when-compile.
15449 (array-make-template): Replace undeclared global var with a local one.
15450 (array-mode): Inline initialization functions.
15451 (array-init-local-variables, array-init-max-row)
15452 (array-init-max-column, array-init-columns-per-line)
15453 (array-init-field-width, array-init-rows-numbered)
15454 (array-init-line-length, array-init-lines-per-row): Remove.
15455
15456 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
15457 (doc-mode-map): Define explicitly.
15458 (doctor-txtype): Use mapc.
15459
15460 * textmodes/table.el: Move defvars out of eval-when-compile.
15461 Remove harmful code meant to avoid byte-compiler warnings.
15462 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
15463 specification that checks table-fixed-width-mode directly.
15464 (table-recognize-region, table-recognize-cell):
15465 Use restore-buffer-modified-p.
15466 (table-fixed-width-mode): Remove code that refreshes
15467 table-fixed-mode-indicator.
15468 (*table--cell-describe-bindings, *table--cell-describe-mode):
15469 Avoid obsolete name print-help-return-message.
15470 (table--test-cell-list): Don't use replace-regexp from elisp.
15471 (table--point-entered-cell-function, table--point-left-cell-function):
15472 Don't set table-fixed-mode-indicator, use force-mode-line-update.
15473
15474 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
15475 that was after the end of file. Use buffer-file-name variable.
15476 (org-timestamp-change): Use with-current-buffer.
15477 (org-todo-list): Don't unnecessarily define a new buffer-local var.
15478 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
15479 `file'.
15480
15481 * progmodes/fortran.el: Move defvars out of eval-when-compile.
15482 (fortran-break-line): Remove unused var `opoint'.
15483 (fortran-abbrev-start): Obey help-event-list.
15484
15485 2006-01-18 Jesper Harder <harder@phys.au.dk>
15486
15487 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
15488
15489 2006-01-18 Masatake YAMATO <jet@gyve.org>
15490
15491 * progmodes/make-mode.el (makefile-imake-mode): New mode
15492 derived from makefile-mode.
15493 (makefile-imake-mode-syntax-table): New syntax table
15494 derived from makefile-mode-syntax-table.
15495 (makefile-mode): Write about makefile-imake-mode in doc string.
15496 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
15497 (makefile-imake-font-lock-keywords): New font lock keywords.
15498
15499 * files.el (auto-mode-alist): Add Imakefile.
15500
15501 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
15502
15503 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
15504 loading the file rather than when turning on flyspell-mode.
15505
15506 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
15507
15508 * cus-edit.el (customize-rogue): Minor doc fix.
15509
15510 2006-01-17 Juri Linkov <juri@jurta.org>
15511
15512 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
15513 instead of the file at the mark as default if the file at the mark
15514 is the same as the file at point or if dired-dwim-target-directory
15515 is not the same as the current directory and the mark is not active.
15516
15517 * log-view.el (log-view-minor-wrap): Use the same logic to get
15518 revisions as `log-view-diff'.
15519
15520 * info.el (Info-revert-find-node): Check for Info-current-file
15521 before preserving new-history.
15522
15523 * man.el (Man-heading-regexp): Add `/'.
15524
15525 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
15526 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
15527
15528 2006-01-16 Juri Linkov <juri@jurta.org>
15529
15530 * faces.el (mode-line-faces): New defgroup.
15531 (mode-line-highlight): Move definition after new defgroup.
15532 (mode-line, mode-line-inactive, mode-line-highlight):
15533 Replace :group `modeline' with `mode-line-faces'.
15534 (mode-line-buffer-id): New face.
15535 (modeline-buffer-id): New face alias.
15536 (vertical-border): Remove :group `modeline'.
15537
15538 * bindings.el (propertized-buffer-identification): Use face
15539 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
15540 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
15541 (mode-line-buffer-identification-keymap): For mouse-1 replace
15542 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
15543 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
15544 mouse-3.
15545
15546 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
15547 Buffer-menu-buffer. Doc fix.
15548 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
15549 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
15550 `Buffer-menu-buffer'.
15551
15552 * info.el (Info-mode-line-node-keymap): New defvar.
15553 (Info-set-mode-line): Use `stringp' to check Info-current-file.
15554 Propertize Info-current-node with `mode-line-buffer-id' and
15555 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
15556
15557 * time.el (display-time-mail-face): Replace :group `faces' with
15558 `mode-line-faces'.
15559
15560 2006-01-16 Kenichi Handa <handa@m17n.org>
15561
15562 * international/code-pages.el: Add autoload cookies for cp125[0345678].
15563
15564 * language/european.el (cp1252): New alias for windows-1252.
15565
15566 * international/mule.el (autoload-coding-system): Prepare for EOL
15567 variants.
15568
15569 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
15570
15571 * term.el (term-raw-map): Add mapping for insert.
15572 (term-send-insert): New.
15573 (term-mode): Make variables local here instead of doing it in
15574 `term-emulate-terminal'.
15575 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
15576 Scroll reverse needs to take into account the scroll region.
15577 Saving and restoring the cursor should save the color attributes too.
15578 (term-reset-terminal): Reset the scroll region.
15579 (term-handle-ansi-escape): Cursor up and down should take into
15580 account the scroll region.
15581 (term-set-scroll-region): Rename from `term-scroll-region'.
15582 Move to 0,0 after setting the region.
15583 (term-handle-scroll): Handle scroll up.
15584 (term-down): Fix off by one error.
15585 (term-delete-lines): Do not delete outside the scroll region.
15586 (term-insert-lines): Take into account the scroll region.
15587
15588 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
15589
15590 * textmodes/ispell.el (ispell-internal-change-dictionary)
15591 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
15592 (start, end): Move declaration outside of eval-when-compile.
15593
15594 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
15595 (flyspell-mode-on): Use it.
15596
15597 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
15598 ispell-kill-ispell-hook.
15599
15600 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
15601
15602 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
15603 (Custom-reset-saved): Do not ask for confirmation in single option
15604 buffers.
15605
15606 2006-01-13 Richard M. Stallman <rms@gnu.org>
15607
15608 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
15609
15610 2006-01-13 Romain Francoise <romain@orebokech.com>
15611
15612 * add-log.el (add-change-log-entry, change-log-merge):
15613 Conditionally use `hard-newline'.
15614
15615 2006-01-13 Martin Rudalics <rudalics@gmx.at>
15616
15617 * wid-edit.el (widget-field-end): If the overlay is no longer
15618 associated with a buffer, behave as if the overlay didn't exist.
15619
15620 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
15621 Make sure the links use the `custom-link' face.
15622
15623 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
15624
15625 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
15626 (ld-script-mode): Don't set indent-line-function since we don't
15627 have one.
15628
15629 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
15630
15631 * textmodes/org.el (org-open-file): Use mailcap for selecting an
15632 application.
15633 (org-file-apps-defaults-gnu): Use mailcap as the default for
15634 selecting an application on a UNIX system.
15635 (org-agenda-show-tags): New command.
15636 (org-table-insert-hline): Keep cursor in current table line.
15637 (org-table-convert): Offset effect of modifying
15638 `org-table-insert-hline'.
15639 (org-format-agenda-item): New optional argument TAG.
15640 (org-compile-prefix-format): Handle %T format for the tag.
15641 (org-expand-wide-chars): New function.
15642 (org-table-insert-row, org-table-insert-hline):
15643 Use `org-expand-wide-chars'.
15644 (org-open-file): Fix bug in program launch.
15645 (org-get-time-of-day): Fix bug with times before 1am.
15646 (org-agenda-menu): Add tags commands.
15647
15648 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
15649
15650 * textmodes/ispell.el (ispell-init-process): Include the used
15651 dictionary in ispell process start message.
15652 (ispell-internal-change-dictionary): When flyspell-mode is active
15653 and dictionary is changed, make sure ispell process is restarted
15654 and flyspell word cache cleared out for the current buffer.
15655 (ispell-change-dictionary): Make sure flyspell word cache is
15656 cleared out in all buffers with active flyspell mode when
15657 dictionary is globally changed.
15658 Call ispell-internal-change-dictionary after dictionary change.
15659
15660 2006-01-13 Eli Zaretskii <eliz@gnu.org>
15661
15662 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
15663
15664 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
15665 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
15666 years. Fix small differences wrt Makefile.in.
15667 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
15668 Makefile.in does.
15669
15670 2006-01-12 Bill Wohler <wohler@newt.com>
15671
15672 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
15673 mh-search.el.
15674
15675 2006-01-12 Masatake YAMATO <jet@gyve.org>
15676
15677 * progmodes/ld-script.el: Update copyright year.
15678
15679 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
15680
15681 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
15682 Don't add widget if setting undefined.
15683
15684 2006-01-12 John Paul Wallington <jpw@pobox.com>
15685
15686 * help-fns.el (describe-variable): Remove newlines from void
15687 variable output.
15688
15689 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
15690
15691 * wdired.el (wdired-mode-map): Add help echo for
15692 wdired-abort-changes.
15693
15694 * man.el (Man-file-name-regexp): Adjust for a list of files.
15695
15696 2006-01-12 Masatake YAMATO <jet@gyve.org>
15697
15698 * progmodes/ld-script.el (auto-mode-alist): Support
15699 suffix conventions used in netbsd and eCos.
15700
15701 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
15702
15703 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
15704 (custom-variable-menu, custom-face-menu, custom-group-menu)
15705 (Custom-mode-menu): Change names of menu items. (As discussed on
15706 emacs-devel.)
15707 (custom-face-menu): Add "Undo Edits" item.
15708
15709 * startup.el (init-file-user): defcustom -> defvar.
15710
15711 * tooltip.el (tooltip-mode): Doc fix.
15712
15713 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
15714
15715 * reveal.el (reveal-post-command): window-buffer signals an error on
15716 dead windows rather than returning nil.
15717 (reveal-open-new-overlays): An overlay might die while we open others.
15718
15719 2006-01-11 Bill Wohler <wohler@newt.com>
15720
15721 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
15722 phrasing in docstring.
15723
15724 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
15725 can give some systems gas. Add new file mh-buffers.el.
15726
15727 2006-01-06 Masatake YAMATO <jet@gyve.org>
15728
15729 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
15730 C preprocessor forward ported from GNU Emacs 21.2.
15731
15732 * progmodes/asm-mode.el (asm-font-lock-keywords):
15733 Use `cpp-font-lock-keywords'.
15734
15735 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
15736
15737 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
15738 of $ for "\\.ld[s]?".
15739
15740 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
15741
15742 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
15743 (tcl-indent-line): Return `noindent' if inside a string.
15744
15745 * progmodes/flymake.el (flymake-split-string): Remove more than one
15746 empty string at beg/end of the result.
15747 (flymake-find-buildfile, flymake-find-possible-master-files):
15748 Use expand-file-name.
15749 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
15750 since expand-file-name does it for us. Use directory-file-name.
15751 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
15752 (flymake-ler-get-type, flymake-ler-get-text)
15753 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
15754 (flymake-current-line-no): Remove spurious interactive spec.
15755 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
15756 (flymake-check-include): Remove arg inc-path merged into inc-name.
15757 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
15758 Arg regexp-list replaced by a simple regexp.
15759 (flymake-master-make-header-init, flymake-master-tex-init):
15760 Correspondingly replace regexp-list with a regexp. Fix regexp.
15761
15762 2006-01-10 Simon Josefsson <jas@extundo.com>
15763
15764 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
15765 describing AUTH PLAIN fix.
15766
15767 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
15768
15769 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
15770 (report-emacs-bug): Don't record initial prompt text.
15771 Instead, add text properties to prompting text.
15772 (report-emacs-bug-hook): Delete prompting text.
15773
15774 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
15775
15776 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
15777 `dirs'. Adjust callers.
15778
15779 2006-01-09 John Paul Wallington <jpw@gnu.org>
15780
15781 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
15782
15783 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
15784
15785 * reveal.el (reveal-open-new-overlays): New extracted fun.
15786 (reveal-close-old-overlays): Idem. Check overlays's liveness before
15787 using them. Simplify the code.
15788 (reveal-post-command): Use them. Fix up obsolete windows in
15789 reveal-open-spots.
15790
15791 * progmodes/flymake.el: Use `require' rather than autoload for
15792 XEmacs's overlays.
15793 (flymake-get-common-file-prefix, flymake-build-relative-filename):
15794 Delete. Use file-relative-name instead.
15795 (flymake-get-syntax-check-program-args, flymake-perl-init):
15796 Simplify the resulting code.
15797
15798 * log-view.el (log-view-file-re, log-view-message-re): Add support
15799 for DaRCS output.
15800
15801 2006-01-09 Alex Schroeder <alex@gnu.org>
15802
15803 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
15804 identifiers sometimes added in square brackets at the beginning of
15805 subject lines.
15806
15807 2006-01-07 Richard M. Stallman <rms@gnu.org>
15808
15809 * cus-edit.el (Custom-set, Custom-save): Doc fix.
15810 (Custom-reset-current, Custom-reset-saved): Change question text.
15811 (Custom-reset-standard): Likewise.
15812 (custom-variable-reset-saved): Doc fix.
15813
15814 2006-01-07 Eli Zaretskii <eliz@gnu.org>
15815
15816 * startup.el (init-file-user): Doc fix.
15817
15818 2006-01-07 Alex Schroeder <alex@gnu.org>
15819
15820 * mail/rmail.el (rmail-current-subject): New function.
15821 (rmail-current-subject-regexp): New function.
15822 (rmail-next-same-subject): Use it.
15823
15824 * mail/rmailsum.el (rmail-summary-by-topic):
15825 Use rmail-current-subject and rmail-current-subject-regexp.
15826 (rmail-summary-next-same-subject): Ditto.
15827
15828 * net/rcirc.el (rcirc-send-input): No longer check whether the
15829 process is open, since not all commands need an open process.
15830 (rcirc-send-string): Check whether the process is open before
15831 sending anything.
15832 (rcirc-ignore-list): New option.
15833 (rcirc-ignore-list-automatic): New variable.
15834 (rcirc-print): Take rcirc-ignore-list into account.
15835 (rcirc-cmd-ignore): New command.
15836 (rcirc-ignore-update-automatic): New function.
15837 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
15838 list if ignored nicks.
15839 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
15840
15841 2006-01-06 David Reitter <david.reitter@gmail.com>
15842
15843 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
15844 reflect the address to which the report will be sent.
15845
15846 2006-01-06 Eli Zaretskii <eliz@gnu.org>
15847
15848 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
15849 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
15850
15851 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
15852
15853 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
15854
15855 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
15856 the doc string: "functoin" => "function".
15857 * ldefs-boot.el: Likewise.
15858
15859 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
15860 message text: "Duplicat" => "Duplicate".
15861
15862 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
15863
15864 * files.el (basic-save-buffer-2): If backing-up failed, reset
15865 buffer-backed-up to nil.
15866
15867 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
15868
15869 * progmodes/gud.el (gdb-script-skip-to-head)
15870 (gdb-script-calculate-indentation): Indent for breakpoint command
15871 lists also.
15872
15873 2006-01-05 Bill Wohler <wohler@newt.com>
15874
15875 * Makefile.in (compile-always): Add mh-autoloads dependency.
15876 (bootstrap): Remove mh-autoloads dependency, as compile dependency
15877 provides it.
15878 (updates): Remove mh-autoloads dependency, since it probably has
15879 already run recently (via recompile).
15880
15881 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
15882
15883 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
15884 argument `force' to disable the flyspell-last-buffer optimization.
15885 (flyspell-mode-on): Use it.
15886
15887 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
15888 flymake-simple-cleanup.
15889 (flymake-allowed-file-name-masks): Use this new default.
15890 All the functions are now called in the right buffer rather than
15891 passing the buffer as argument.
15892 (flymake-process-sentinel): Switch to buffer before calling cleanup.
15893 (flymake-parse-err-lines): Remove redundant buffer arg.
15894 (flymake-get-program-dir): Comment out unused function.
15895 (flymake-start-syntax-check, flymake-start-syntax-check-process):
15896 Remove redundant buffer argument.
15897 (flymake-get-real-file-name, flymake-simple-java-cleanup)
15898 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
15899
15900 2006-01-05 Richard M. Stallman <rms@gnu.org>
15901
15902 * info.el (Info-find-node): Don't record previous node if have none.
15903 (info): Go to directory only if history is empty.
15904
15905 * simple.el (mark): Doc fix.
15906
15907 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15908
15909 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
15910 already of desired type.
15911 (mac-ae-list): Coerce parameter to "list" type.
15912 (mac-dispatch-apple-event): Replace cadr part of event with a
15913 dummy position so that event-start returns it.
15914
15915 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
15916
15917 * textmodes/org.el (org-end-of-subtree): New function.
15918 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
15919 Use `org-end-of-subtree'.
15920 (org-agenda, org-agenda-convert-date): Protect calls to
15921 `fit-window-to-buffer'.
15922 (org-tags-view): Force matching of sublevels when doing a
15923 todo-only search. Define the correct redo command, including the
15924 arguments.
15925 (org-agenda-redo): Display message.
15926 (org-check-for-org-mode): New function.
15927 (org-agenda-type): New variable.
15928 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
15929 Set `org-agenda-type'.
15930 (org-agenda-check-type): New function.
15931 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
15932 (org-agenda-week-view, org-agenda-day-view)
15933 (org-agenda-next-date-line, org-agenda-previous-date-line)
15934 (org-agenda-log-mode, org-agenda-toggle-diary)
15935 (org-agenda-toggle-time-grid, org-agenda-date-later)
15936 (org-agenda-date-prompt, org-agenda-diary-entry)
15937 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
15938 (org-agenda-convert-date, org-agenda-menu):
15939 Use `org-agenda-check-type'.
15940 (org-make-overlay, org-delete-overlay)
15941 (org-detatch-overlay, org-move-overlay, org-overlay-put):
15942 New compatibility functions.
15943 (org-calendar-select-mouse): New command.
15944
15945 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
15946
15947 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
15948 (Custom-reset-standard): Fix y-or-n-p messages.
15949 (custom-link): New face for links.
15950 (custom-buffer-create-internal, custom-manual): Use it.
15951 (custom-face-save): Push to theme-face before setting face spec.
15952
15953 * wid-edit.el (widget-default-mouse-face-get): New function.
15954 (widget-specify-button): Handle mouse-face like button-face.
15955
15956 * custom.el (load-theme): Clear old theme settings if reloading.
15957
15958 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
15959
15960 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
15961 "Erase Customization" button back to same position it occupies in
15962 the individual State menus.
15963
15964 2006-01-04 Kim F. Storm <storm@cua.dk>
15965
15966 * wid-edit.el (key-sequence): Rework widget to read key binding
15967 using `kbd' syntax. Use C-q to insert literal key, event, or code.
15968 (widget-key-sequence-default-value): Default value for empty sequence.
15969 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
15970 (widget-key-sequence-read-event): New command for C-q.
15971 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
15972 (widget-key-sequence-value-to-external): New functions.
15973
15974 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
15975
15976 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
15977 Use expand-file-name.
15978 (flymake-delete-temp-directory): Use expand-file-name,
15979 file-name-directory, and directory-file-name.
15980 (flymake-strrchr): Delete.
15981 (flymake-start-syntax-check): Don't pass the redundant buffer argument
15982 to the init-f function.
15983 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
15984 (flymake-init-find-buildfile-dir)
15985 (flymake-init-create-temp-source-and-master-buffer-copy)
15986 (flymake-simple-make-init-impl, flymake-simple-make-init)
15987 (flymake-master-make-init, flymake-master-make-header-init)
15988 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
15989 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
15990 (flymake-xml-init): Remove corresponding redundant buffer argument.
15991 (flymake-allowed-file-name-masks): Remove last elems that are equal to
15992 the default anyway. Clean up regexps.
15993
15994 * progmodes/flymake.el (flymake-temp-source-file-name)
15995 (flymake-master-file-name, flymake-temp-master-file-name)
15996 (flymake-base-dir): New buffer-local vars.
15997 (flymake-buffer-data, flymake-get-buffer-value)
15998 (flymake-set-buffer-value): Replace those hash-tables by the new
15999 buffer-local vars. Update callers.
16000
16001 * progmodes/flymake.el (flymake-check-start-time)
16002 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
16003 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
16004 Move definition, so we can remove redundant earlier declaration.
16005 (flymake-replace-regexp-in-string, flymake-split-string)
16006 (flymake-get-temp-dir): Use defalias.
16007 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
16008 (flymake-xemacs-window-edges): Remove unused function.
16009 (flymake-get-point-pixel-pos): Move.
16010 (flymake-pid-to-names, flymake-reg-names)
16011 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
16012 Replace by a simple list flymake-processes and by process-buffer.
16013 Update callers. Other than simplify the code, it uses buffers rather
16014 than buffer-names so it doesn't get confused by uniquify.
16015 (flymake-buffer-data): The global value should just be nil.
16016
16017 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
16018 Optimize the body of a defalias like any other code.
16019
16020 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
16021 Make sure we've setup font-lock's vars. It may influence which
16022 function we then call.
16023 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
16024 here since it's too late anyway.
16025
16026 2006-01-03 Romain Francoise <romain@orebokech.com>
16027
16028 * startup.el (fancy-splash-tail, normal-splash-screen):
16029 Update copyright year.
16030
16031 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
16032
16033 * mouse.el (mouse-drag-track): Rename, from
16034 `mouse-drag-region-1'. Includes optional argument required to
16035 enable post-drag event processing (e.g. delete region keys).
16036 Can be used without this argument to track a mouse region and operate
16037 on it as soon as the drag completes.
16038 (mouse-drag-region): Use `mouse-drag-track'.
16039
16040 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
16041
16042 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
16043 Move to `custom-buffer' group.
16044
16045 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
16046 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
16047 (custom-theme-insert-face-marker, custom-theme-variable-menu)
16048 (custom-theme-face-menu): New variables.
16049 (custom-theme-add-variable, custom-theme-variable-action)
16050 (custom-variable-reset-theme, custom-theme-delete-variable)
16051 (custom-face-reset-theme, custom-theme-face-action)
16052 (custom-theme-delete-face, custom-theme-merge-theme)
16053 (custom-theme-add-face, custom-theme-visit-theme): New functions.
16054
16055 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
16056
16057 * custom.el: Move Custom Themes commentary to start of theme code.
16058 (custom-known-themes): Rename `standard' theme to `changed'.
16059 (custom-push-theme): Caller no longer specifies what theme to use
16060 when doing `reset'---the setting is simply removed from the theme.
16061 Delete MODE from `theme-value' and `theme-settings' properties.
16062 (custom-declare-theme): Ignore &rest args since we don't use them.
16063
16064 (custom-loaded-themes): Delete variable.
16065 (custom-theme-load-themes, custom-theme-loaded-p)
16066 (custom-theme-value): Delete functions.
16067
16068 (custom-declare-theme): Signal error on invalid theme names.
16069 (provide-theme): custom-loaded-themes was deleted.
16070 (load-theme): Load the file unconditionally.
16071 (enable-theme): Call `load-theme' if theme is undefined.
16072 (custom-enabled-themes): Only update value for successful loads.
16073 (disable-theme): Complete from enabled themes when interactive.
16074 (custom-variable-theme-value): Calculate theme value directly.
16075
16076 (custom-theme-reset-variables, custom-reset-variables): Mark as
16077 XEmacs compatibility functions. We don't actually use these.
16078
16079 * cus-edit.el (custom-variable-state-set):
16080 Use custom-variable-theme-value instead of custom-theme-value.
16081 (custom-face-state-set): Rename `standard' theme to `changed'.
16082 (custom-save-variables, custom-save-faces): Delete unneeded
16083 references to custom-reset-variables.
16084 (custom-save-resets): Delete function.
16085 (custom-save-variables, custom-save-faces): MODE argument deleted.
16086 (custom-save-variables, custom-save-faces): Ignore theme values.
16087
16088 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
16089 compatibility function.
16090
16091 2006-01-01 Richard M. Stallman <rms@gnu.org>
16092
16093 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
16094 (Custom-reset-current, Custom-reset-saved): Likewise.
16095 (Custom-reset-standard): Show message if aborted.
16096 (custom-mode): Doc fix, describing those commands.
16097
16098 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
16099 put on event-kind property.
16100
16101 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
16102
16103 * custom.el (provide-theme): Ban `user' theme name.
16104 (custom-enabling-themes): New variable.
16105 (enable-theme): Don't enable user if custom-enabling-themes is t.
16106 (custom-enabled-themes): Make it a defcustom.
16107 (custom-theme-recalc-face): No-op if face is undefined.
16108
16109 * cus-edit.el (custom-button-mouse): New variable.
16110 (custom-button-mouse): New face.
16111 (custom-raised-buttons, custom-mode): Use it.
16112
16113 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
16114
16115 2005-12-31 Eli Zaretskii <eliz@gnu.org>
16116
16117 * progmodes/gud.el (gud-display-line): Support hl-line in the
16118 source buffer.
16119
16120 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
16121
16122 * mouse.el (mouse-drag-window-above): Verify that the found window
16123 overlaps with the given window in the horizontal dimension.
16124
16125 2005-12-31 Eli Zaretskii <eliz@gnu.org>
16126
16127 * Makefile.in (cvs-update): New target.
16128
16129 * makefile.w32-in (cvs-update): Ditto.
16130
16131 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
16132
16133 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
16134 (custom-new-theme-mode-map): New variable.
16135
16136 2005-12-30 Richard M. Stallman <rms@gnu.org>
16137
16138 * custom.el (custom-load-themes): Function deleted.
16139
16140 * cus-edit.el (custom-save-loaded-themes): Function deleted.
16141 (custom-save-variables): Don't delete or add custom-load-themes call.
16142
16143 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
16144
16145 * cus-start.el: Add `visible-cursor'.
16146
16147 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
16148 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
16149 (flymake-process-filter): Switch to buffer before calling it instead.
16150 (flymake-post-syntax-check, flymake-highlight-err-lines)
16151 (flymake-delete-own-overlays, flymake-parse-err-lines)
16152 (flymake-start-syntax-check, flymake-start-syntax-check-process)
16153 (flymake-count-lines, flymake-parse-residual):
16154 Remove constant buffer argument.
16155 (flymake-start-syntax-check-for-current-buffer): Remove.
16156 Update callers to use flymake-start-syntax-check instead.
16157 (flymake-display-err-menu-for-current-line):
16158 Remove unused var `mouse-pos'.
16159 (flymake-restore-formatting): Comment out unused function.
16160 (flymake-report-status, flymake-report-fatal-status): Remove buffer
16161 argument, use current-buffer instead. Update callers.
16162
16163 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16164
16165 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
16166 buffer-local because choose-completion-delete-max-match requires
16167 that we set completion-ignore-case (i.e., binding via let is not
16168 sufficient).
16169 (bibtex-complete): Always set completion-ignore-case and
16170 choose-completion-string-functions. The latter is needed because
16171 choose-completion-string-functions keeps its value if we quit the
16172 *Completions* buffer without requesting a completion.
16173
16174 2005-12-30 Andreas Schwab <schwab@suse.de>
16175
16176 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
16177
16178 2005-12-30 Eli Zaretskii <eliz@gnu.org>
16179
16180 * jit-lock.el (jit-lock-chunk-size): Doc fix.
16181
16182 2005-12-30 Juri Linkov <juri@jurta.org>
16183
16184 * locate.el (locate-fcodes-file, locate-header-face)
16185 * progmodes/delphi.el (delphi-other-face)
16186 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
16187
16188 * paren.el (show-paren-match, show-paren-mismatch): Use existing
16189 group `paren-showing-faces'.
16190
16191 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
16192 (goto-address): Fix docstring.
16193
16194 * net/webjump.el (webjump-sample-sites): Update URLs.
16195
16196 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
16197
16198 * subr.el (cancel-change-group): Add listp around pending-undo-list.
16199
16200 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
16201
16202 * font-lock.el (font-lock-compile-keywords): Signal an error when
16203 font-lock-set-defaults hasn't been called.
16204
16205 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
16206
16207 * subr.el (noreturn, 1value): Doc fixes.
16208
16209 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16210
16211 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
16212 that assoc-string returns nil.
16213
16214 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16215
16216 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
16217 (bibtex-entry-type-str, bibtex-empty-field-re)
16218 (bibtex-search-backward-string, bibtex-preamble-prefix)
16219 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
16220 (bibtex-any-valid-entry-type): New variable.
16221 (bibtex-parse-field-name): Simplify.
16222 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
16223 (bibtex-preamble-prefix): Include left delimiter.
16224 (bibtex-search-forward-field, bibtex-search-backward-field):
16225 Allow unbounded search past entry boundaries (required by bibtex-pop).
16226 (bibtex-text-in-field-bounds): Use push.
16227 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
16228 (bibtex-parse-preamble, bibtex-valid-entry)
16229 (bibtex-beginning-first-field): New functions.
16230 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
16231 (bibtex-map-entries): Fix docstring.
16232 (bibtex-flash-head): New arg prompt. Simplify.
16233 (bibtex-enclosing-field): Include code of bibtex-inside-field.
16234 (bibtex-insert-kill): Simplify. Always insert text past the
16235 current field or entry.
16236 (bibtex-format-entry): Use bibtex-parse-field.
16237 (bibtex-pop): Use bibtex-beginning-of-entry and
16238 bibtex-end-of-entry to initiate the search. Insert empty field if
16239 we found ourselves.
16240 (bibtex-print-help-message): New args field and comma.
16241 Handle entry keys.
16242 (bibtex-make-field): Use bibtex-beginning-of-entry.
16243 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
16244 invalid entry.
16245 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
16246 Handle preambles. Simplify code for thorough test.
16247 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
16248 New arg comma. Handle entry heads.
16249 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
16250 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
16251 New arg comma.
16252 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
16253 (bibtex-fill-field): Simplify.
16254 (bibtex-fill-entry): Use bibtex-beginning-first-field and
16255 bibtex-parse-field.
16256 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
16257 (bibtex-complete): Use bibtex-parse-preamble.
16258
16259 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
16260
16261 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
16262 Display name of expression instead of convenience variable.
16263 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
16264
16265 * progmodes/gud.el (gud-tooltip-dereference): Rename from
16266 toggle-gud-tooltip-dereference.
16267 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
16268 (gud-tooltip-tips): ...here when dereferencing.
16269
16270 2005-12-28 Bill Wohler <wohler@newt.com>
16271
16272 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
16273
16274 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
16275
16276 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
16277 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
16278 (vc-annotate-display-autoscale): Adjust call.
16279 (vc-annotate-display-default): Adjust call. Make arg compulsory.
16280 Fix interactive spec.
16281 (vc-annotate-time-span): Remove.
16282 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
16283 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
16284 (vc-annotate-display-select): Use new name.
16285
16286 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
16287 (vc-annotate-mode-menu): Remove left-over redundant declaration.
16288 Correct the construction of span entries. Simplify.
16289 (vc-annotate-display-select): Fix the nil case.
16290 (vc-annotate): Remove obsolete (and now broken) code.
16291 (vc-annotate-extract-revision-at-line): Remove obsolete code.
16292 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
16293
16294 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
16295
16296 * subr.el (lazy-completion-table): Correct typo in docstring.
16297
16298 * startup.el (command-line): Use `custom-reevaluate-setting' for
16299 `send-mail-function'.
16300
16301 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
16302
16303 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
16304
16305 * mail/smtpmail.el (smtpmail-try-auth-methods):
16306 Send credentials together with "AUTH PLAIN" command.
16307
16308 2005-12-27 Richard M. Stallman <rms@gnu.org>
16309
16310 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
16311 mouse-2, go back to previously selected window, so it's selected
16312 when mouse-2 command runs.
16313
16314 2005-12-27 Juri Linkov <juri@jurta.org>
16315
16316 * descr-text.el (describe-text-sexp): Use square brackets for
16317 button [Show] to distinguish it from the property value `show'.
16318 (describe-property-list): Use `insert-text-button' with
16319 `help-face' type instead of putting face in quotes, because button
16320 is not created automatically for a list of faces.
16321 (describe-text-properties-1): Put button-type value in quotes to
16322 distinguish from plain text "button".
16323 (describe-char): Display code point values in hex. Don't use
16324 `symbol-name' for `current-input-method' because it is a string.
16325 Use `insert-text-button' with `help-face' type instead of putting
16326 hardcoded face in quotes, because button is not created automatically.
16327
16328 2005-12-27 Richard M. Stallman <rms@gnu.org>
16329
16330 * progmodes/glasses.el (glasses-face): More specific custom type.
16331
16332 * files.el (set-visited-file-name): Doc fix.
16333
16334 * textmodes/flyspell.el (flyspell-external-point-words):
16335 Use local var buffer-scan-pos to advance scan for next misspelling.
16336 Advance it only after we find the misspelling.
16337
16338 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
16339
16340 * textmodes/flyspell.el (flyspell-external-point-words):
16341 New criteria for finding the misspelling in the buffer.
16342
16343 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
16344
16345 * help-mode.el (help-insert-string): Set help-xref-stack-item
16346 rather than call help-setup-xref.
16347
16348 * descr-text.el (describe-char): Revert previous changes for
16349 optional buffer argument.
16350
16351 2005-12-27 Juri Linkov <juri@jurta.org>
16352
16353 * help-mode.el (help-insert-string): New function. Save buffer
16354 contents in cases where it is impossible to recompute the old contents.
16355
16356 * descr-text.el (describe-char): Set help-xref-stack-item
16357 explicitly after buffer has been generated.
16358
16359 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16360
16361 * cus-start.el (all): Add x-gtk-show-hidden-files.
16362
16363 2005-12-26 Richard M. Stallman <rms@gnu.org>
16364
16365 * replace.el (perform-replace): Calculate match-again
16366 before skipping read-only matches.
16367
16368 * paren.el (paren-showing-faces): New group.
16369 (show-paren-match, show-paren-mismatch): Move to that group.
16370
16371 * button.el (button): Put into group `basic-faces'.
16372
16373 * progmodes/make-mode.el: Remove faces from group `faces'.
16374
16375 * apropos.el (apropos, apropos-value): Doc fix.
16376 (apropos-documentation): Doc fix.
16377
16378 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
16379
16380 * subr.el (lazy-completion-table): Remove argument `args'.
16381
16382 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
16383 Don't use the `args' argument of lazy-completion-table.
16384
16385 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
16386
16387 * descr-text.el (describe-char): Add optional argument for buffer.
16388 Set buffer appropriately. Call help-setup-xref.
16389 Suggested by Stefan Monnier.
16390
16391 2005-12-26 Juri Linkov <juri@jurta.org>
16392
16393 * descr-text.el: Require `help-fns' at runtime. Don't require
16394 `button' for byte compilation.
16395 (describe-text-widget): Add `help-echo' for first button.
16396 Use `help-info' for second.
16397 (describe-property-list): Use `help-argument-name' instead of `italic'.
16398 (describe-text-category): Add prompt to interactive spec.
16399 Call `help-setup-xref'.
16400 (describe-char): Use `help-character-set'. Add `help-echo' for
16401 code point. Use `help-input-method'. Remove superfluous insert.
16402
16403 2005-12-25 Richard M. Stallman <rms@gnu.org>
16404
16405 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
16406 at point, in case of narrowing.
16407
16408 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
16409
16410 * locate.el (locate-header-face): Allow nil in type.
16411
16412 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
16413
16414 2005-12-25 Romain Francoise <romain@orebokech.com>
16415
16416 * battery.el (battery-linux-proc-acpi): Also try
16417 `/proc/acpi/thermal_zone/THM0/temperature'.
16418
16419 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
16420
16421 * custom.el (custom-push-theme): Fix docstring.
16422
16423 * cus-edit.el (custom-variable-set, custom-variable-save)
16424 (custom-variable-save): Custom-quote widget values.
16425 (customize-save-variable): Fix custom-push-theme call.
16426
16427 2005-12-24 Eli Zaretskii <eliz@gnu.org>
16428
16429 * w32-fns.el (w32-batch-update-autoloads): New function.
16430
16431 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
16432 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
16433 from the command line.
16434
16435 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
16436
16437 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
16438 reset means to remove setting from theme entirely. Don't keep
16439 expanding theme-settings list; delete old entries if necessary.
16440
16441 * cus-edit.el (custom-buffer-create-internal): Move "Erase
16442 customization" button one line up.
16443 (custom-themed): New face.
16444 (custom-magic-alist): New value, THEMED, for theme settings.
16445 (custom-variable-state-set, custom-face-state-set):
16446 Check theme-value instead of saved-value.
16447 (custom-variable-reset-standard, custom-face-reset-standard):
16448 Remove theme setting entirely. Recalculate new values.
16449 (custom-variable-set, custom-variable-set)
16450 (custom-variable-reset-saved, custom-variable-reset-backup)
16451 (custom-face-set, custom-face-reset-saved): Update `user' theme.
16452 (custom-variable-save): Fix typos.
16453
16454 2005-12-23 Juri Linkov <juri@jurta.org>
16455
16456 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
16457 Add autoload cookies.
16458 (edebug-outside-d-c-i-n-s-w): New variable.
16459 (edebug-display, edebug-outside-excursion): Use it to save the
16460 original value of default-cursor-in-non-selected-windows.
16461 Set default-cursor-in-non-selected-windows to t while Edebug
16462 is active.
16463 (edebug-mode, edebug-eval-mode): Doc fix.
16464
16465 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
16466 with `buffer-substring-no-properties' to remove common substring
16467 highlighting.
16468
16469 * info.el (info-other-window, info): Rename function argument
16470 `file' to `file-or-node'.
16471 (Info-complete-menu-item): Use local variable `complete-nodes' to
16472 keep the global value of `Info-complete-nodes' unchanged for
16473 subsequent completions.
16474 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
16475
16476 * simple.el (get-next-valid-buffer, last-buffer)
16477 (next-error-buffer-p, next-error-find-buffer)
16478 (minibuffer-history-sexp-flag): Doc fix.
16479
16480 * savehist.el (savehist-mode-hook): Add `:group'.
16481
16482 * log-view.el: Call autoload for vc-find-version.
16483 (log-view-current-file): Adjust subgroup numbers.
16484 (log-view-current-tag): Add `length'.
16485
16486 2005-12-23 Richard M. Stallman <rms@gnu.org>
16487
16488 * vc.el (vc-annotate-car-last-cons): Defn moved up.
16489
16490 2005-12-23 Juri Linkov <juri@jurta.org>
16491
16492 * hi-lock.el (hi-lock-archaic-interface-message-used)
16493 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
16494 (hi-lock-mode): Display "Hi" in the mode line only when
16495 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
16496 (hi-lock-write-interactive-patterns):
16497 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
16498 (hi-lock-set-pattern, hi-lock-set-file-patterns)
16499 (hi-lock-font-lock-hook): Set 3rd arg `how' of
16500 font-lock-add-keywords to t.
16501
16502 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
16503
16504 * hi-lock.el (hi-lock-highlight-range): New variable.
16505 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
16506 only if font-lock-fontified is non-nil. Remove overlays.
16507 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
16508 font-lock-fontified is non-nil, otherwise use overlays (instead of
16509 text properties).
16510 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
16511 New variables.
16512 (hi-lock-string-serialize): New function.
16513
16514 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16515
16516 * menu-bar.el (menu-find-file-existing): New function.
16517 (menu-bar-file-menu): Use menu-find-file-existing for Open.
16518
16519 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
16520
16521 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
16522
16523 * vc.el: Remove unnecessary leading * in docstrings.
16524 (vc-annotate-mode-map): Move initialization into declaration.
16525 (vc-static-header-alist): Nitpick on the regexp.
16526 (vc-default-init-version): New fun.
16527 (vc-register): Use it.
16528 (vc-insert-headers): Use dolist.
16529 (vc-annotate-get-backend): Remove unused function.
16530 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
16531 (vc-annotate-mode): Remove corresponding call.
16532 (vc-annotate-car-last-cons): Simplify.
16533 (vc-annotate-buffers): Remove var.
16534 (vc-annotate-backend): Make it buffer-local.
16535 (vc-annotate): Move the interaction to the interactive spec.
16536 Add a `buf' argument.
16537 (vc-annotate-warp-version): Use this new `buf' argument to avoid
16538 killing&creating a vc-annotate buffer, which is very disruptive when
16539 the buffers are shown in dedicated frames.
16540
16541 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
16542
16543 * descr-text.el: Add FSF as maintainer.
16544 (describe-text-mode, describe-text-mode-map)
16545 (describe-text-mode-hook, describe-text-done): Delete. Use normal
16546 help-mode.
16547 (describe-text-widget, describe-text-sexp)
16548 (describe-property-list, describe-text-category)
16549 (describe-text-properties, describe-text-properties-1)
16550 (describe-char): Use help buttons instead of widgets.
16551 (describe-char-unicodedata-file): Make URL link in doc string.
16552
16553 2005-12-22 Richard M. Stallman <rms@gnu.org>
16554
16555 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
16556 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
16557 Don't include buttons that write a file when there's no file.
16558 (custom-variable-menu, custom-face-menu, custom-group-menu):
16559 Don't include commands that write a file when there's no file.
16560 (customize-browse): Reword the top-of-buffer help intro.
16561 (custom-buffer-create-internal): Fix previous change.
16562 (customize-changed-options-previous-release): Prev release is 21.1.
16563 (customize-changed-options): Doc fix.
16564 (customize-changed): New alias.
16565 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
16566 Say "standard values".
16567 (Custom-reset-standard): Doc fix.
16568 (custom-face-reset-standard): Doc fix.
16569
16570 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
16571
16572 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
16573 even if font-lock-mode is non-nil since it may be t without having
16574 turned on font-lock-mode-internal.
16575 (font-lock-choose-keywords): Minor optimization.
16576 (font-lock-add-keywords, font-lock-remove-keywords)
16577 (font-lock-set-defaults): Don't call make-local-variable on a variable
16578 that we know to already be local.
16579
16580 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
16581
16582 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
16583 messages if in the minibuffer.
16584
16585 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
16586
16587 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
16588 (tex-mode-flyspell-verify, flyspell-get-word)
16589 (flyspell-external-point-words): Don't use point-min/max uselessly.
16590
16591 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
16592 by Kevin Rodgers. Instead, just hide the completions buffer if we
16593 don't need to show it.
16594
16595 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
16596
16597 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
16598
16599 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
16600
16601 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
16602 delete-windows-on with an inexistent buffer.
16603
16604 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
16605
16606 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
16607 Delete defcustom variable :tag names.
16608
16609 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
16610
16611 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
16612 (log-view-font-lock-keywords): Ajust subgroup numbers.
16613 (log-view-current-tag): Don't hard code the number of subgroups.
16614
16615 2005-12-20 Juri Linkov <juri@jurta.org>
16616
16617 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
16618 (tooltip-x-offset, tooltip-y-offset): Doc fix.
16619
16620 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
16621 (menu-bar-non-minibuffer-window-p): Instead of checking
16622 display-multi-frame-p, use selected-frame when menu-updating-frame
16623 is nil.
16624
16625 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
16626
16627 * align.el (align-rules-list): Use [ \t] instead of \s-
16628 for column separators in text mode.
16629
16630 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
16631
16632 * help-mode.el (help-customize-variable, help-customize-face):
16633 Don't pop help-xref-stack as help-follow no longer pushes
16634 anything on to it.
16635
16636 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
16637
16638 * textmodes/org.el (org-agenda-custom-commands): New option.
16639 (org-agenda): Offer custom commands on splash screen.
16640 (org-make-tags-matcher): Parser for Boolean logic added.
16641 (org-agenda-set-tags): New command.
16642 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
16643 (org-set-tags): Efficiency improvements.
16644 (org-auto-align-tags): New option.
16645 (org-todo, org-demote, org-promote): Realign tags.
16646 (org-tags-completion-function): Use also "&" and "|" as separators.
16647 (org-org-menu): Agenda commands simplified.
16648
16649 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
16650
16651 * cus-edit.el (customize-apropos, customize-apropos-options):
16652 Docstring changes.
16653
16654 * font-lock.el (font-lock): Add tags to the links in the defgroup.
16655
16656 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
16657
16658 * longlines.el (longlines-mode): Wrap while widened.
16659 (longlines-decode-region, longlines-encode-region): Compute max
16660 just once.
16661
16662 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16663
16664 * cus-edit.el (mac): New group.
16665
16666 * cus-start.el (all): Add user options in macterm.c. Add test for
16667 Mac-related built-ins. Fix test for GTK-related built-ins.
16668
16669 * term/mac-win.el (mac-handle-language-change)
16670 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
16671 (mac-services-open-selection, mac-services-mail-selection)
16672 (mac-services-mail-to, mac-services-insert-text)
16673 (mac-dispatch-apple-event): Add docstrings.
16674 (x-get-selection, mac-select-convert-to-string): Select coding
16675 system from `utf-16be' and `utf-16le' using `byteorder'.
16676
16677 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
16678
16679 * subr.el (lazy-completion-table): Don't be fooled if the var holds
16680 a "list" (lambda ...) rather than a real completion list.
16681
16682 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
16683 lexical-let when encountering ((lambda (...) ...) ...).
16684
16685 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
16686
16687 * progmodes/sh-script.el (sh-mode):
16688 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
16689 * textmodes/picture.el (picture-mode): Update docstrings.
16690
16691 2005-12-17 Eli Zaretskii <eliz@gnu.org>
16692
16693 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
16694 commands enclosed in $(ARGQUOTE)s should not be split between two
16695 lines, as that will break with GNU Make >3.80, when sh.exe is used
16696 and arg quoting is with '..'.
16697 (autoloads): Don't break the quoted --eval expression between
16698 several lines.
16699
16700 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
16701
16702 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
16703 Capture error from printing circular structures.
16704
16705 2005-12-17 Martin Rudalics <rudalics@gmx.at>
16706
16707 * wid-edit.el (widget-checkbox-action): Clear undo info.
16708
16709 2005-12-16 Bill Wohler <wohler@newt.com>
16710
16711 * menu-bar.el (kill-this-buffer): Set a good example by using menu
16712 bar, not menubar in comment.
16713
16714 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
16715
16716 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
16717 After-change-functions should not clobber the match data.
16718
16719 2005-12-16 Juri Linkov <juri@jurta.org>
16720
16721 * simple.el (choose-completion): Use `buffer-substring-no-properties'
16722 instead of `buffer-substring'.
16723 (completion-common-substring): Doc fix.
16724 (completion-setup-function): Use minibuffer-completion-contents
16725 instead of minibuffer-contents. Don't set common-string-length
16726 initially. Remove special handling of partial-completion-mode.
16727 Move computation of completion-base-size into one cond.
16728 Call completion-base-size-function in mainbuf. In computation of
16729 completion-base-size for file name completion don't move point to
16730 the end of the minibuffer. Move computation of common-string-length
16731 into one cond. Start putting faces only when common-string-length>=0.
16732 Add condition to put completions-common-part when
16733 common-string-length>0.
16734
16735 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
16736 place point at the first different character in the minibuffer
16737 even if this position is at the beginning of the minibuffer.
16738
16739 * info.el (Info-read-node-name-1): In completion-base-size-function's
16740 lambda return 1 if common-substring or minibuffer-completion-contents
16741 starts with (, and 0 otherwise.
16742
16743 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
16744 Use `crm-current-element' for second arg of `display-completion-list'.
16745
16746 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
16747
16748 * files.el (set-auto-mode): Look for an interpreter specified on
16749 the first line also if search for mode specification succeeded,
16750 but the mode is not known.
16751
16752 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
16753
16754 * textmodes/org.el (org-tags-match-list-sublevels): New option.
16755 (org-open-at-point): Implement tag searches as links.
16756 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
16757 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
16758 (org-tags-sparse-tree, org-tags-view, org-set-tags)
16759 (org-agenda-dispatch): New commands.
16760 (org-use-tag-inheritance, org-tags-column): New options.
16761 (org-tab-follows-link, org-return-follows-link): New options.
16762 (org-tags): New customize group.
16763 (org-start-icalendar-file): Get local time zone.
16764 (org-tags-completion-function): New function.
16765 (org-set-font-lock-defaults): Make sure links will also be
16766 highlighted inside headlines.
16767
16768 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
16769
16770 * term.el (term-emulate-terminal):
16771 Let term-handle-ansi-terminal-messages override what Bash says about
16772 its current directory.
16773
16774 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
16775
16776 * bindings.el (last-buffer): Move to simple.el.
16777 * simple.el (last-buffer): Move here.
16778 (get-next-valid-buffer): New function.
16779 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
16780 (prev-buffer): Ditto. Rename to `previous-buffer'.
16781
16782 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
16783 * bindings.el (global-map): Ditto.
16784
16785 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
16786
16787 * cus-edit.el: Introductory comment change.
16788 (custom-magic-alist): Change message string for the `rogue' state.
16789
16790 2005-12-15 Richard M. Stallman <rms@gnu.org>
16791
16792 * tooltip.el: Delete defcustom variable :tag names.
16793
16794 * complete.el (partial-completion-mode): Doc fix.
16795
16796 * textmodes/flyspell.el (flyspell-external-point-words):
16797 Use save-excursion to ensure we don't move backward in the
16798 search loop, not even one character.
16799 (flyspell-delete-all-overlays): Use remove-overlays directly.
16800
16801 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
16802 (ispell-start-process): Set that variable.
16803 Clear ispell-buffer-local-name.
16804 (ispell-internal-change-dictionary):
16805 Set ispell-current-dictionary after killing process.
16806 (ispell-buffer-local-dict):
16807 Don't set spell-personal-dictionary after killing process.
16808 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
16809 (ispell-tex-skip-alists, ispell-html-skip-alists)
16810 (ispell-skip-region-alist): Mark as risky.
16811
16812 * net/newsticker.el (newsticker--retrieval-timer-list)
16813 (newsticker--display-timer, newsticker-running-p)
16814 (newsticker-ticker-running-p): Definitions moved up.
16815
16816 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
16817
16818 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
16819
16820 2005-12-15 David Ponce <david@dponce.com>
16821
16822 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
16823 (recentf-edit-list, recentf-open-files): Signal an error when
16824 there is no recent file.
16825
16826 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
16827
16828 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
16829 read-only except for texinfo-format-region evaluation.
16830
16831 2005-12-14 Richard M. Stallman <rms@gnu.org>
16832
16833 * vc.el (vc-default-previous-version, vc-default-next-version)
16834 (vc-do-command): Doc fixes.
16835
16836 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16837
16838 * textmodes/bibtex.el (bibtex-expand-strings)
16839 (bibtex-autokey-expand-string, bibtex-name-part)
16840 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
16841 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
16842 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
16843 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
16844 (bibtex-entry-postfix, bibtex-known-entry-type-re)
16845 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
16846 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
16847 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
16848 (bibtex-beginning-of-last-entry): Remove.
16849 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
16850 message if comma is missing but buffer is read-only.
16851 (bibtex-parse-field-text): Handle whitespaces at the end of field
16852 text. Return 3-element list with beginning and end of field text
16853 and end of field.
16854 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
16855 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
16856 (bibtex-search-forward-field, bibtex-search-backward-field):
16857 Search always delimited by limits of entry. Use more efficient
16858 search algorithms.
16859 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
16860 bibtex-end-of-name-in-field.
16861 (bibtex-text-in-field-bounds): Handle BibTeX strings when
16862 extracting the content of a field.
16863 (bibtex-text-in-field): Use search limits.
16864 (bibtex-parse-string-prefix): Handle empty string keys based on
16865 bibtex-string-empty-key.
16866 (bibtex-parse-string): Fix docstring.
16867 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
16868 (bibtex-preamble-prefix, bibtex-strings): New functions.
16869 (bibtex-skip-to-valid-entry): Include preceding whitespace in
16870 BibTeX entries (consistent with other BibTeX functions).
16871 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
16872 (bibtex-search-entry): Fix docstring. Simplify.
16873 (bibtex-flash-head, bibtex-complete-string-cleanup)
16874 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
16875 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
16876 (bibtex-parse-entry): New optional arg content.
16877 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
16878 Use bibtex-text-in-field-bounds.
16879 (bibtex-print-help-message): Handle BibTeX strings and preambles.
16880 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
16881 bibtex-parse-string-postfix.
16882 (bibtex-find-text-internal): New function.
16883 (bibtex-remove-delimiters): Use it.
16884 (bibtex-find-text): Use it. New optional arg help.
16885 (bibtex-complete): Handle BibTeX string and preamble entries.
16886 (bibtex-Preamble): Fix order of closing delimiters.
16887
16888 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
16889
16890 * vc.el (vc-default-revert): New fun.
16891
16892 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
16893
16894 2005-12-14 Romain Francoise <romain@orebokech.com>
16895
16896 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
16897 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
16898 (font-lock-remove-keywords): Likewise.
16899
16900 2005-12-14 Juri Linkov <juri@jurta.org>
16901
16902 * log-view.el (log-view-diff): Doc fix.
16903
16904 * isearch.el (isearch-query-replace): Use (mark) instead of
16905 isearch-opoint if mark is active in transient-mark-mode.
16906
16907 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
16908
16909 * isearch.el (isearch-query-replace): Check for isearch-other-end.
16910
16911 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
16912
16913 * progmodes/cpp.el (cpp-face): New widget.
16914 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
16915
16916 2005-12-14 Juri Linkov <juri@jurta.org>
16917
16918 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
16919 around `erase-buffer' and `insert'.
16920
16921 * descr-text.el (describe-text-properties): Replace buffer name
16922 "*Help-2*" with "*Help*<2>".
16923 (describe-char): Add functions print-help-return-message,
16924 toggle-read-only. Use help-setup-xref with nil to not store
16925 describe-char in help-xref-stack. Use help-make-xrefs to
16926 make [back] button.
16927
16928 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
16929
16930 * wdired.el (wdired-old-point): New internal variable.
16931 (wdired-change-to-wdired-mode): Set it buffer-locally.
16932 (wdired-abort-changes): Restore point after aborting changes.
16933
16934 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
16935
16936 * vc.el (vc-do-command): Add a new value t for okstatus.
16937
16938 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
16939 frame in case of errors.
16940
16941 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16942
16943 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
16944 so it comes after "On the Left" in the menu.
16945
16946 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
16947
16948 * cus-edit.el (customize-apropos, customize-apropos-options)
16949 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
16950
16951 2005-12-12 Bill Wohler <wohler@newt.com>
16952
16953 * vc-svn.el (vc-svn-registered): Fix problem of visiting
16954 non-writable Subversion-controlled files by saving window
16955 configuration before calling vc-do-command. vc-do-command calls
16956 pop-to-buffer on error which is unexpected during registration.
16957
16958 2005-12-12 Jay Belanger <belanger@truman.edu>
16959
16960 * calc/README: Update the summary of changes.
16961
16962 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
16963
16964 * descr-text.el (describe-char): Rework last fix to solve the problem
16965 is the same way it's solved for everything else in that function
16966 (i.e. by extracting the info before setting up the *Help* buffer).
16967
16968 2005-12-12 Kim F. Storm <storm@cua.dk>
16969
16970 * subr.el (version-regexp-alist): Allow space as separator before
16971 non-numeric part, e.g. "1.0 alpha".
16972 (version-to-list): Interpret .X.Y version as 0.X.Y version.
16973
16974 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
16975
16976 * textmodes/org.el (org-agenda, org-timeline, org-todo):
16977 Implement Logging and the keep-modes setting.
16978 (org-get-category): Make sure a string is returned.
16979 (org-log-done): New function.
16980 (org-log-done, org-closed-string): New options.
16981
16982 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16983
16984 * tooltip.el (tooltip-y-offset): Change default to 20.
16985
16986 2005-12-12 Richard M. Stallman <rms@gnu.org>
16987
16988 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
16989
16990 * frame.el (display-hourglass): Doc fix.
16991
16992 * help.el (help-for-help-internal): Simplify entry for `a'.
16993
16994 * info.el (Info-on-current-buffer): Doc fix.
16995 (info-insert-file-contents): Don't test (featurep 'jka-compr).
16996
16997 * startup.el (inhibit-splash-screen): Make this the real name.
16998 (inhibit-startup-message): Make this the alias.
16999 (command-line): Find only simple.el, and use its directory
17000 to fill in other preloaded files' names.
17001 (command-line): Deactivate the mark if deactivate-mark is set.
17002
17003 * international/mule.el (load-with-code-conversion):
17004 Bind deactivate-mark.
17005
17006 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
17007
17008 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
17009
17010 * cus-edit.el (customize-apropos): Avoid listing an option more
17011 than once under different aliases. No longer list user options
17012 that are not defined with defcustom (unless a prefix arg is given).
17013 Doc fix.
17014 (customize-apropos-options): Doc fix.
17015
17016 2005-12-11 Juri Linkov <juri@jurta.org>
17017
17018 * frame.el (set-background-color, set-foreground-color)
17019 (set-cursor-color, set-mouse-color, set-border-color):
17020 Add explicit prompts to read colors by `facemenu-read-color'.
17021 (show-trailing-whitespace, blink-cursor-delay)
17022 (blink-cursor-interval, display-hourglass, hourglass-delay):
17023 Remove tags.
17024 (display-hourglass, hourglass-delay): Doc fix.
17025 (cursor-in-non-selected-windows): Capitalize words in tag.
17026
17027 * faces.el (frame-background-mode): Replace `choice-item' keywords
17028 with `const' to not make [default] button. Change default value tag
17029 from `default' to `automatic'. Doc fix.
17030 (trailing-whitespace) <defface>: Change group `whitespace' to
17031 `whitespace-faces'.
17032
17033 2005-12-11 Richard M. Stallman <rms@gnu.org>
17034
17035 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
17036
17037 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17038
17039 * term/mac-win.el: Create keymap for mac-apple-event-map.
17040
17041 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
17042
17043 * tooltip.el (tooltip-mode): Move to start of file so that it
17044 appears at top of customize buffer.
17045
17046 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
17047 Add the gud groupname.
17048 (gud-tooltip-mode): Add the tooltip groupname.
17049 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
17050 avoid conflict with tooltip-use-echo-area.
17051
17052 2005-12-10 Romain Francoise <romain@orebokech.com>
17053
17054 * help.el (help-for-help-internal): Add `r' in doc string.
17055
17056 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
17057
17058 * align.el (align-regexp, align-highlight-rule):
17059 Use region-beginning and region-end instead of point and mark, so that
17060 repetition (with `repeat-complex-command') recomputes the region
17061 bounds.
17062
17063 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
17064
17065 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
17066 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
17067 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
17068 (balance-windows): Rewrite using the above new functions.
17069
17070 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
17071
17072 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
17073 react if global-hi-lock-mode seems intended.
17074 (global-hi-lock-mode): Renamed from hi-lock-mode.
17075 (hi-lock-archaic-interface-message-used)
17076 (hi-lock-archaic-interface-deduce): New variables.
17077 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
17078 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
17079 (hi-lock-find-patterns, hi-lock-font-lock-hook):
17080 Replace hi-lock-buffer-mode with hi-lock-mode.
17081
17082 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
17083
17084 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
17085 completion list, even after a partial completion has been
17086 inserted in the current buffer. If there are more than 1
17087 completion, redisplay the *Completions* buffer; if the
17088 completion is unique, delete the *Completions* window.
17089
17090 2005-12-10 Eli Zaretskii <eliz@gnu.org>
17091
17092 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
17093 strings and long subject lines that were broken into multiple
17094 lines at arbitrary places. Handle subjects that have "Re: " in
17095 the middle.
17096
17097 2005-12-10 John W. Eaton <jwe@octave.org>
17098
17099 * emacs/octave-mod.el (octave-electric-space): Don't indent
17100 comments or strings if octave-auto-indent is nil.
17101
17102 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17103
17104 * term/mac-win.el: Require url when compiling.
17105 Call mac-process-deferred-apple-events after loading init files.
17106 (mac-apple-event-map): New defvar. Define event handlers in it.
17107 (core-event, internet-event): New Apple event class symbols.
17108 (open-application, reopen-application, open-documents)
17109 (print-documents, open-contents, quit-application)
17110 (application-died, show-preferences, autosave-now, get-url):
17111 New Apple event ID symbols.
17112 (about): New HICommand ID symbol.
17113 (mac-event-spec, mac-event-ae): New macros.
17114 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
17115 (mac-ae-selection-range, mac-ae-text-for-search)
17116 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
17117 (mac-application-menu-map): Remove keymap. Handlers for HICommand
17118 and Services menu events are now defined in mac-apple-event-map.
17119 (mac-drag-n-drop): Remove selection range handling.
17120
17121 2005-12-10 Kenichi Handa <handa@m17n.org>
17122
17123 * simple.el (zap-to-char):
17124 * isearch.el (isearch-process-search-char): Translate CHAR by
17125 translation-table-for-input.
17126
17127 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
17128
17129 * foldout.el (foldout-exit-fold): Properly hide subtree.
17130
17131 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
17132
17133 * files.el (save-buffer):
17134 * international/ucs-tables.el (ucs-set-table-for-input):
17135 * mail/mail-extr.el (mail-extract-address-components):
17136 * mail/sendmail.el (mail-mode): Reformat doc string.
17137
17138 2005-12-09 Juri Linkov <juri@jurta.org>
17139
17140 * isearch.el (isearch-highlight): Change main overlay priority
17141 from 1 to 1001. Simplify.
17142 (isearch-lazy-highlight-update): Change lazy overlay priority
17143 from 0 to 1000.
17144
17145 * replace.el (replace-highlight): Change overlay priority from
17146 1 to 1001.
17147
17148 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
17149 Change overlay priority from 1 to 1001. Reuse existing overlay.
17150
17151 * compare-w.el (compare-windows-highlight): Change overlay
17152 priority from 1 to 1000.
17153
17154 * menu-bar.el (menu-bar-edit-menu): Add listp around
17155 pending-undo-list to disable menu item "undo" when pending
17156 undo list is empty.
17157
17158 * locate.el (locate): Disable undo in *Locate* buffer.
17159
17160 2005-12-09 Kim F. Storm <storm@cua.dk>
17161
17162 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
17163
17164 2005-12-09 David Ponce <david@dponce.com>
17165
17166 * recentf.el: Improvement of the menu code.
17167 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
17168 instead of menu hook.
17169 (recentf-show-menu, recentf-hide-menu): New functions.
17170 (recentf-menu-customization-changed, recentf-mode): Use them.
17171 (recentf-menu-action, recentf-max-menu-items)
17172 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
17173 (recentf-arrange-by-rule-others)
17174 (recentf-arrange-by-rules-min-items)
17175 (recentf-arrange-by-rule-subfilter): Don't use
17176 `recentf-menu-customization-changed'.
17177 (recentf-arrange-rules): Likewise. Accept functions to compute
17178 sub-menu titles.
17179 (recentf-menu-filter): Likewise. Doc fix.
17180 (recentf-menu-value-shortcut): Doc fix.
17181 (recentf-dump-variable): Quote atom value.
17182 (recentf-make-menu-items): Update to use it as a menu filter.
17183 (recentf-match-rule): New function.
17184 (recentf-arrange-by-rule): Use it.
17185 (recentf-indirect-mode-rule): New function.
17186 (recentf-build-mode-rules): Use it.
17187 (recentf-dir-rule): New function.
17188 (recentf-arrange-by-dir): Use it.
17189 (recentf-filter-changer-current): Rename from
17190 `recentf-filter-changer-state'. All references updated.
17191 (recentf-filter-changer-alist): Update filter names.
17192 (recentf-filter-changer-select): New function.
17193 (recentf-filter-changer): Use it. Make a sub-menu from filters
17194 available in `recentf-filter-changer-alist'.
17195 (recentf-data-cache, recentf-clear-data)
17196 (recentf-update-menu): Remove. All references updated.
17197 (recentf-match-rule-p, recentf-build-dir-rules)
17198 (recentf-filter-changer-goto-next)
17199 (recentf-filter-changer-get-current)
17200 (recentf-filter-changer-get-next): Remove.
17201
17202 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
17203
17204 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
17205 buffer "Reset" button to "Reset to Current" for consistency with
17206 the State buttons.
17207
17208 2005-12-08 John Paul Wallington <jpw@pobox.com>
17209
17210 * ibuf-ext.el (define-ibuffer-filter filename):
17211 If `dired-directory' is a list then really use its car.
17212
17213 2005-12-08 Kim F. Storm <storm@cua.dk>
17214
17215 * emulation/cua-rect.el (cua--rectangle-aux-replace):
17216 Fix indention of text on right side of replaced rectangle.
17217
17218 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
17219
17220 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
17221 No need to check gud-comint-buffer is bound.
17222 (gdb): Prevent multiple debugging when first session uses gdba.
17223
17224 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17225
17226 CC Mode update to 5.31.
17227
17228 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
17229 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
17230 We might do this function properly in the future).
17231
17232 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
17233 New macros c-sentence-end and c-default-value-sentence end, to cope
17234 with Emacs 22's new function `sentence-end'.
17235
17236 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17237
17238 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
17239 compat issue using `c-put-overlay' and `c-delete-overlay'.
17240
17241 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
17242 New compat macros to handle overlays/extents.
17243
17244 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17245
17246 * progmodes/cc-fix.el: Add definitions of the macros push and pop
17247 (for GNU Emacs 20.4).
17248
17249 * progmodes/cc-defs.el:
17250 (i): Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4).
17251
17252 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
17253 highlighting mechanism so it will work in XEmacs too.
17254
17255 * progmodes/cc-defs.el: Insert c-int-to-char.
17256
17257 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
17258 call to the new macro c-int-to-char. This solves XEmacs's
17259 regarding characters as different from integers.
17260
17261 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17262
17263 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
17264 New internal helper.
17265
17266 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
17267 construct to make the indirect face lookup work in XEmacs.
17268
17269 (c-cpp-matchers): Append the negation char face to the existing
17270 fontification, so that the cpp face doesn't disappear.
17271 Use `c-make-syntactic-matcher' to avoid negation chars in comments
17272 and strings.
17273
17274 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
17275 to map to `font-lock-negation-char-face' in emacsen where it exists.
17276
17277 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17278
17279 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
17280
17281 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
17282 Rename "c-subword-move-mode" as "c-subword-mode".
17283
17284 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
17285 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
17286
17287 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17288
17289 * progmodes/cc-mode.el: Added autoload directive for
17290 `c-subword-move-mode' for use in older emacsen.
17291
17292 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17293
17294 * progmodes/cc-mode.el:
17295 (i): Insert a binding for C-c C-backspace into
17296 c-bind-special-erase-keys which works in TTYs.
17297 (ii): Make sure that when file styles are used, any explicitly
17298 given style variables take priority over those in the style.
17299 Do this by calling `hack-local-variables' a second time.
17300
17301 * progmodes/cc-vars.el: Add language specific customization
17302 widgets for AWK to c-doc-comment-style, c-require-final-newline
17303 and c-default-style. Add a defcustom for awk-mode-hook.
17304 Give c-syntactic-element and c-syntactic-context doc-strings by
17305 directly setting their `variable-documentation' propery.
17306 This allows Emacs 22.1 to read these with C-h v.
17307
17308 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
17309
17310 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17311
17312 * progmodes/cc-fonts.el, cc-vars.el
17313 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
17314 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
17315 Masatake YAMATO.
17316
17317 (c-doc-comment-style): Made GtkDoc default in C mode.
17318
17319 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
17320 and C-c C-<delete>.
17321
17322 (c-bind-special-erase-keys): New function for use on
17323 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
17324
17325 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
17326 <delete> key behavior in XEmacs according to `delete-forward-p'.
17327 C.f. `c-electric-delete'.
17328
17329 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17330
17331 * progmodes/cc-mode.el: Give c-hungry-backspace and
17332 c-hungry-delete-forward permanent key bindings.
17333
17334 * progmodes/cc-cmds.el (c-electric-semi&comma):
17335 Bind c-syntactic-context for calls to "criteria functions", for
17336 consistency with other calls to user functions.
17337
17338 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
17339 `current-prefix-arg', since this might be the prefix arg to a
17340 command which calls c-indent-command as a function. Change the
17341 interactive spec from "p" to "P".
17342
17343 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
17344 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
17345 was difficult to understand.
17346
17347 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17348
17349 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
17350 first char of an identifier.
17351
17352 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
17353 +" syntax in C++.
17354
17355 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17356
17357 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
17358 auto-fill doesn't split a c-comment's last word from a hanging
17359 "*/" when a space is typed between them after fill-column.
17360
17361 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
17362
17363 * progmodes/cc-styles.el (c-set-style)
17364 (c-setup-paragraph-variables): Abort the command if we're not in a
17365 CC Mode buffer.
17366
17367 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
17368 with blank comment-prefix, and a blank line as the comment's
17369 second line.
17370
17371 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17372
17373 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
17374 Incorporate the patterns added in the Emacs development branch
17375 for the new Emacs 22 face `font-lock-negation-char-face'.
17376
17377 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
17378 of "red" since it stands out better in xterms and DOS terminals.
17379
17380 * progmodes/cc-engine.el (c-literal-faces):
17381 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
17382
17383 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17384
17385 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
17386 forcibly enable c-electric-flag.
17387
17388 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
17389 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
17390 after the comment-prefix of a C-style comment will close that comment.
17391
17392 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17393
17394 * progmodes/cc-fonts.el (c-basic-matchers-before)
17395 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
17396 in Pike.
17397
17398 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
17399 digraphs.
17400
17401 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
17402 (c-cpp-message-directives, c-cpp-include-directives)
17403 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
17404 (c-cpp-expr-directives): Introduce new language constants to
17405 control cpp syntax in a cleaner way.
17406
17407 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
17408
17409 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
17410
17411 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
17412 (c-multiline-string-start-char): New language constants and
17413 variables to specify how newlines in string literals work.
17414
17415 (c-font-lock-invalid-string): Use them.
17416
17417 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
17418 unbalanced close brace is entered. Optimization by avoiding going
17419 back over arbitrarily large blocks. Removed hints that this
17420 function only would be relevant/useful in AWK.
17421
17422 (c-electric-brace): Indent syntactically after the cleanups since
17423 lineup functions might do it differently then.
17424
17425 * progmodes/cc-engine.el, cc-langs.el
17426 (c-opt-op-identifier-prefix): New language constant and variable.
17427
17428 (c-just-after-func-arglist-p, c-after-special-operator-id)
17429 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
17430
17431 * progmodes/cc-align.el, cc-engine.el
17432 (c-after-special-operator-id): New helper to handle C++ operator
17433 identifiers.
17434
17435 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
17436 (c-guess-basic-syntax): Handle C++ operator identifiers in
17437 declarations.
17438
17439 * progmodes/cc-langs.el (c-assignment-operators): Add the
17440 trigraph version of ^= too.
17441
17442 * progmodes/cc-langs.el (c-assignment-operators): Add the
17443 trigraph version of |= in C++.
17444
17445 * progmodes/cc-fonts.el (c-font-lock-declarators):
17446 Handle `c-decl-hangon-kwds' after the identifier name.
17447
17448 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
17449 whether an arglist is "nonempty", ignore a comment after the open
17450 paren if it isn't followed by a non-comment token on the same line.
17451
17452 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
17453 Enable heuristics below the point to cope with classes inside special
17454 brace lists in Pike.
17455
17456 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17457
17458 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
17459
17460 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17461
17462 * progmodes/cc-guess.el (cc-guess-install): New function to
17463 install an already guessed style in another buffer.
17464
17465 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
17466 sets `inhibit-read-only' - `c-save-buffer-state' should be used
17467 anyway if the change always is undone.
17468
17469 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17470
17471 Implement togglable electricity:
17472
17473 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
17474 saying when it should be used.
17475
17476 * progmodes/cc-engine.el: Add the new buffer-local variable,
17477 c-electric-flag.
17478
17479 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
17480 c-toggle-auto-newline.
17481
17482 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
17483 c-toggle-auto-newline. Remove the binding for
17484 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
17485 c-toggle-electric-state.
17486
17487 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
17488
17489 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
17490 c-\(forward\|backward\)-subword.
17491 (c-update-modeline): Add the new modeline flag `l' for
17492 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
17493 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
17494 Make the old name an alias of the new name.
17495 (c-toggle-electric-state): New function.
17496 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
17497 Adapt these functions to do electric things only when
17498 c-electric-flag is non-nil.
17499 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
17500 new functions from c-electric-brace.
17501 (c-point-syntax): Add a check for "virtual semicolons" in AWK
17502 mode, so that the tentative extra newline doesn't change the
17503 syntax of the following brace.
17504 (c-electric-brace): Restructure by extracting the above functions.
17505 Tidy up the coding somewhat.
17506 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
17507 restructure a bit.
17508
17509 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17510
17511 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
17512 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
17513
17514 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
17515 (c-submode-indicators): Change name from `c-auto-hungry-string'
17516 since it's now used to track another submode.
17517
17518 (c-update-modeline): Convert to function and extended to check
17519 `c-subword-move-mode'.
17520
17521 (c-forward-into-nomenclature, c-backward-into-nomenclature):
17522 Convert to compat aliases for `c-forward-subword' and
17523 `c-backward-subword'.
17524
17525 * progmodes/cc-subword.el: New functions and minor mode to handle
17526 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
17527
17528 (c-forward-subword, c-backward-subword, c-mark-subword)
17529 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
17530 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
17531 Functions corresponding to the standard word handling functions.
17532
17533 (c-subword-move-mode): Minor mode that replaces all the standard
17534 word handling functions with their subword equivalences.
17535
17536 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17537
17538 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
17539 entry for one-liner-defun.
17540
17541 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
17542 name in its def-edebug-spec.
17543
17544 * progmodes/cc-cmds.el (c-electric-brace): Make the
17545 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
17546 compacts space before a comment, if this will make things fit on
17547 one line.
17548
17549 Introduce an "awk" style, mainly for auto-newline and clean-ups.
17550
17551 * progmodes/cc-align.el: New function c-snug-1line-defun-close.
17552
17553 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
17554 clean-up one-liner-defun.
17555
17556 * progmodes/cc-styles.el: Add the new "awk" style.
17557
17558 * progmodes/cc-vars.el: Add description of one-liner-defun to
17559 c-cleanup-list's doc-string. New user options,
17560 c-max-one-liner-length. In c-default-style, set the default style
17561 for AWK to "awk".
17562
17563 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17564
17565 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
17566 macros inside labels.
17567
17568 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
17569 `c-at-statement-start-p' and `c-at-expression-start-p'.
17570
17571 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
17572 error if the mark isn't set.
17573
17574 * progmodes/cc-engine.el (c-guess-continued-construct)
17575 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
17576 accurately detect functions inside functions.
17577
17578 * progmodes/cc-engine.el (c-at-expression-start-p): New function
17579 like `c-at-statement-start-p' that additionally recognizes commas
17580 and expression parentheses as delimiters.
17581
17582 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
17583 to avoid heuristics that doesn't work for unclosed blocks.
17584 (c-at-statement-start-p): New function.
17585
17586 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
17587 Objective-C directives, e.g. directives spanning lines should work
17588 reasonably well now.
17589
17590 (c-put-c-type-property, c-clear-c-type-property): New helpers.
17591
17592 (c-forward-objc-directive): New function to move over any ObjC
17593 directive.
17594
17595 (c-just-after-func-arglist-p, c-guess-basic-syntax)
17596 (c-basic-matchers-before): Use it.
17597
17598 (c-font-lock-objc-iip-decl): Remove.
17599
17600 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
17601 in the template arglist recognition.
17602
17603 * progmodes/cc-styles.el (c-style-alist): Fix several
17604 inconsistencies in the Whitesmith style.
17605
17606 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
17607 New lineup function to get lines after Whitesmith style blocks
17608 correctly indented.
17609
17610 (c-lineup-whitesmith-in-block): Back out the compensation for
17611 opening parens since it's done using `add' lists in the style
17612 definition instead. Don't use the anchor position since it varies
17613 too much between the syntactic symbols. :P
17614
17615 * progmodes/cc-vars.el (c-valid-offset): Update.
17616
17617 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
17618 lists where the offsets are combined according to several
17619 different methods: `first', `min', `max', and `add'.
17620 Report offset evaluation errors with `c-benign-error' so that some kind
17621 of reindentation still is done.
17622
17623 * progmodes/cc-engine.el (c-guess-basic-syntax):
17624 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
17625 `arglist-close'.
17626
17627 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
17628 situations for `arglist-cont-nonempty' and `arglist-close'.
17629
17630 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
17631
17632 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
17633 cc-bytecomp-boundp' in a number of places.
17634
17635 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
17636 macro related issue.
17637
17638 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17639
17640 * progmodes/cc-awk.el: Change the terminology of regexps: A char
17641 list is now [asdf], a char class [:alpha:].
17642 Include code for char classes.
17643 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
17644 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
17645
17646 Remove (nearly all of) the cruft associated with AWK Mode's former
17647 concept of "virtual semicolons":
17648
17649 Adapt c-beginning-of-statement, c-end-of-statement (together with
17650 subfunctions) to use the new notion of "virtual semicolon" in
17651 place of the old awkward special handling for AWK. There remains
17652 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
17653 * progmodes/cc-cmds.el:
17654 (c-ascertain-adjacent-literal): In the backwards direction, now
17655 recognises AWK regexp delimiters as string delimiters.
17656 (c-after-statement-terminator-p): Adapt for virtual semicolons;
17657 check more rigorously for "end of macro".
17658 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
17659 virtual semicolons;
17660 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
17661 out the code for forward movement into ...
17662 (c-end-of-statement): Now contains the code for forward movement,
17663 adapted for virtual semicolons.
17664
17665 * progmodes/cc-engine.el:
17666 (c-ws*-string-limit-regexp): New regexp.
17667 (c-forward-single-comment, c-backward-single-comment): Comment out
17668 the (now redundant) "special" AWK stuff.
17669
17670 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
17671 c-string-par-start, c-string-par-separate to be more like Text
17672 Mode than Fundamental Mode.
17673
17674 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17675
17676 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
17677 to the fontified region so that fontification doesn't occur
17678 outside it (could happen e.g. when fontifying a line with an
17679 unfinished declaration).
17680
17681 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17682
17683 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
17684 start of the file. ^L now separate sections of the file.
17685 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
17686 (c-awk-one-line-possibly-open-string-re)
17687 (c-awk-regexp-one-line-possibly-open-char-class-re)
17688 (c-awk-one-line-possibly-open-regexp-re)
17689 (c-awk-one-line-non-syn-ws*-re): New defonsts.
17690 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
17691
17692 Amend the concept of "virtual semicolons" (in the indentation
17693 engine) for languages like AWK, such that they are now
17694 conceptually attached to end of the last token of a statement, not
17695 the end of the line. (In AWK Mode, however, the pertinent text
17696 property is still physically set on the EOL.) Remove the specific
17697 tests for awk-mode, thus facilitating the introduction of other
17698 language modes where EOLs can end statements.
17699 (Note: The funtionality in cc-cmds.el, specifically
17700 c-beginning/end-of-statement has yet to be amended.)
17701
17702 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
17703 New macros.
17704
17705 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
17706 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
17707 c-vsemi-status-unknown-p-fn (in a new page).
17708
17709 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
17710 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
17711 numerous awkward forms like
17712 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
17713 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
17714 variable before-ws-ip, the place just after char-before-ip appears.
17715
17716 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
17717 a comment.
17718
17719 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17720
17721 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
17722 `c-tentative-buffer-changes'.
17723
17724 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
17725 convert to macro to choose between Emacs and XEmacs at compile time.
17726
17727 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
17728
17729 (c-tentative-buffer-changes): New macro to handle temporary buffer
17730 changes in a convenient way.
17731
17732 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
17733 for `c-tentative-buffer-changes'.
17734
17735 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
17736 the checks for paren sexps between the point and the keyword, to
17737 avoid some false alarms.
17738
17739 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
17740 Fixed a situation where an error could be thrown for unbalanced
17741 parens. Changed to make use of c-keyword-member' to avoid some
17742 repeated regexp matches.
17743
17744 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
17745 These language variable are no longer necessary.
17746
17747 (c-block-stmt-kwds): New language constant used by
17748 c-looking-at-inexpr-block'.
17749
17750 (c-guess-basic-syntax): Remove an optional check that looked at
17751 the existence of the now removed language variables.
17752
17753 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
17754 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
17755 object instantiation expressions as declarations in some contexts.
17756 This bug only affected languages where the declarator can't be
17757 enclosed in parentheses.
17758
17759 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
17760 insert newlines before and after substatement braces.
17761
17762 * progmodes/cc-engine.el: Improved the heuristics for recognizing
17763 function declaration headers and the handling of C++ style member
17764 init lists.
17765
17766 (c-just-after-func-arglist-p): Rewritten to use
17767 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
17768
17769 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
17770
17771 (c-guess-basic-syntax): Adapt case 5B for the new
17772 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
17773 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
17774 covers all cases now).
17775
17776 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
17777
17778 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17779
17780 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
17781 c-string-par-start/separate c-sentence-end-with-esc-eol,
17782 initialised in c-setup-paragraph-variables, used in string
17783 scanning subroutines of c-beginning-of-statement.
17784
17785 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
17786 which precedes the newly inserted `{'.
17787
17788 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17789
17790 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
17791 function for declaration level blocks. It should now cope with
17792 templates better and also be a lot more comprehensible.
17793
17794 (c-looking-at-decl-block): The new function.
17795
17796 (c-search-uplist-for-classkey): The old one. It's now a wrapper
17797 for compatibility.
17798
17799 (c-add-class-syntax, c-guess-continued-construct)
17800 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
17801
17802 (c-decl-block-key): Change to tell apart ambiguous and
17803 unambiguous keywords. Pike specials are now handled directly in
17804 the code instead.
17805
17806 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
17807 New language constants and variables to make the backward skip in
17808 `c-looking-at-decl-block' as tight as possible.
17809
17810 (c-nonsymbol-token-char-list): New language constant.
17811
17812 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
17813 find balanced template arglists backwards.
17814
17815 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
17816 making char classes for `c-syntactic-skip-backward'.
17817
17818 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
17819 16D - can't be a class-close at that point.
17820
17821 * progmodes/cc-engine.el (c-guess-basic-syntax)
17822 (c-add-class-syntax): Don't narrow out the enclosing declaration
17823 level. This makes everything a lot easier, and it was actually
17824 only four small places that needed it to work. Some places that
17825 previously did `widen' are removed now, which has the effect that
17826 `c-guess-basic-syntax' never will look at things outside the
17827 current narrowment now. The anchor position for `topmost-intro'
17828 is affected by this, but it was so bogus it was basically useless
17829 before, and now it's equally bogus but in a slightly different way.
17830
17831 (c-narrow-out-enclosing-class): Gone.
17832
17833 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
17834 the narrowed region.
17835
17836 (c-least-enclosing-brace): Remove silly optional argument.
17837
17838 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
17839 the point could be left directly after an open paren when finding
17840 the beginning of the first decl in the block.
17841
17842 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
17843 Specify which submatch to use.
17844
17845 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
17846
17847 (c-decl-start-re): No longer any need for special treatment of
17848 ObjC due to the above.
17849
17850 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
17851 presumably follows C in that regard.
17852
17853 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
17854 New language constants to specify operator tokens inside
17855 identifiers in a more high level way.
17856
17857 (c-opt-identifier-prefix-key): New internal language constant.
17858
17859 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
17860 (c-identifier-start, c-identifier-key): Now completely calculated
17861 from other constants.
17862
17863 (c-identifier-last-sym-match): Decommission since it's no longer used.
17864
17865 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
17866
17867 * progmodes/cc-engine.el (c-forward-name): Remove the
17868 optimization when c-identifier-key is equal to c-symbol-key since
17869 it doesn't work in byte compiled files. Don't record empty
17870 regions as identifiers.
17871
17872 * progmodes/cc-langs.el (c-filter-ops): New helper function to
17873 simplify access to `c-operators' and its likes.
17874
17875 (c-operator-list, c-all-op-syntax-tokens)
17876 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
17877 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
17878 (c-primary-expr-regexp, c-cast-parens): Use it.
17879
17880 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
17881 an explicit language in functions.
17882
17883 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
17884 variant of adornment.
17885
17886 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
17887 variable.
17888
17889 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
17890 the Pike value.
17891
17892 * progmodes/cc-engine.el (c-on-identifier)
17893 (c-simple-skip-symbol-backward): Small fix for handling "-"
17894 correctly in `skip-chars-backward'. Affected the operator lfun
17895 syntax in Pike.
17896
17897 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
17898 diagnostic message about precompiled language vars not being used.
17899
17900 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
17901 "__attribute__" is followed by a parenthesis.
17902
17903 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
17904 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
17905 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
17906
17907 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
17908 Internal cleanups to properly detect the declared identifiers in
17909 various declarations.
17910
17911 (c-decl-start-kwds): New language constant to recognize
17912 declarations that can start anywhere. Used for class declarations
17913 in Pike.
17914
17915 (c-specifier-key, c-not-decl-init-keywords)
17916 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
17917 (c-find-decl-spots): Implement `c-decl-start-kwds'.
17918
17919 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
17920 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
17921 handling of the compiler specific extension keywords into a new
17922 language constant `c-decl-hangon-kwds' that defines keyword
17923 clauses to be ignored in declarations.
17924
17925 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
17926 past unrecognized tokens when handling `c-colon-type-list-kwds'.
17927 Necessary to stop at the declared identifier in e.g. IDL valuetype
17928 declarations.
17929
17930 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
17931 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
17932 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
17933 (c-forward-decl-or-cast-1): Recognize the declared identifier in
17934 class and enum declarations as such and not as part of the type.
17935
17936 (c-forward-decl-or-cast-1, c-forward-label): Relax the
17937 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
17938
17939 (c-forward-decl-or-cast-1): Don't disregard sure signs of
17940 declarations when there's some syntax error later on.
17941
17942 (c-complex-decl-matchers): Did away with a reference to
17943 `c-specifier-key'.
17944
17945 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
17946 value - this variable is always dynamically bound.
17947
17948 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
17949 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
17950 * cc-cmds.el, cc-defs.el: Change the policy for marking up
17951 functions that might do hidden buffer changes: All such internal
17952 functions are now marked instead of those that don't.
17953
17954 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
17955 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
17956 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
17957 (c-literal-type): Allow these functions to make hidden buffer changes,
17958 so that they are free to use text property caching later on.
17959
17960 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
17961 (c-electric-brace, c-electric-slash, c-electric-star)
17962 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
17963 (c-electric-paren, c-electric-continued-statement, c-indent-command)
17964 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
17965 (c-context-line-break): Add `c-save-buffer-state' calls to comply
17966 with the changed semantics of the functions above.
17967
17968 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
17969 when macros occur in obscure places. Optimized the sexp movement
17970 a bit.
17971
17972 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
17973
17974 Enhancements for c-beginning-of-statement to work in AWK Mode:
17975
17976 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
17977 (completed statement) with `}' (statement completed by closing
17978 brace or semicolon) and `$' (statement completed by EOL).
17979
17980 (c-awk-virtual-semicolon-ends-prev-line-p)
17981 (c-awk-virtual-semicolon-ends-line-p)
17982 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
17983 (c-awk-at-statement-end-p): New functions.
17984
17985 * progmodes/cc-cmds.el: Simplify the structure of functions
17986 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
17987 two functions and c-beginning-of-statement to handle AWK Mode.
17988
17989 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
17990 c-backward-single-comment for AWK mode. Attempt to clarify their
17991 doc-strings.
17992
17993 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
17994
17995 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
17996
17997 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
17998 label handling. Labels are now recognized in a uniform and more
17999 robust way, regardless of context. Text properties are put on all
18000 labels to recognize the following declarations better.
18001 Multiword labels are handled both in indentation and fontification for
18002 the benefit of language extensions like Qt. For consistency, keywords
18003 in labels are now fontified with the label face instead.
18004 That also applies to "case" and "default".
18005
18006 (c-beginning-of-statement-1): Fix some bugs in the label
18007 handling. Disregard `c-nonlabel-token-key' in labels that begin
18008 with `c-label-kwds'.
18009
18010 (c-find-decl-spots): Support that the callback adds more
18011 `c-decl-end' spots to find.
18012
18013 (c-forward-decl-or-cast-1): Don't treat a list of plain
18014 identifiers followed by a colon as a declaration.
18015
18016 (c-forward-label): New function to recognize labels.
18017
18018 (c-guess-basic-syntax): Replace uses of `c-label-key' with
18019 `c-forward-label'. Moved the label recognition cases (14 and 15)
18020 earlier since they aren't so context sensitive now. Handle labels
18021 on the top level gracefully. Moved access label recognition to
18022 the generic label case (CASE 15) - removed CASE 5E.
18023
18024 (c-font-lock-declarations): Add recognition of labels in the
18025 same round since we need to handle labels in parallell with other
18026 declarations to recognize both accurately. It should also improve
18027 speed.
18028
18029 (c-simple-decl-matchers, c-basic-matchers-after):
18030 Move `c-font-lock-labels' so that it only is used on decoration level 2
18031 since `c-font-lock-declarations' handles it otherwise.
18032
18033 (c-complex-decl-matchers): Remove the simplistic recognition of
18034 access labels.
18035
18036 (c-decl-prefix-re): Remove the kludges that was necessary to cope
18037 with labels earlier.
18038
18039 (c-decl-start-re): New language variable to make
18040 `c-font-lock-declarations' stop for the special protection labels
18041 in Objective-C that start with `@'.
18042
18043 (c-label-key): Remove since it's no longer used.
18044
18045 (c-recognize-colon-labels, c-label-prefix-re): New language
18046 constants to support recognition of generic colon-terminated labels.
18047
18048 (c-type-decl-end-used): `c-decl-end' is now used whenever there
18049 are colon terminated labels.
18050
18051 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
18052 first argument starts with a special brace list.
18053
18054 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
18055 (c-font-lock-declarations): Break out the declaration and cast
18056 recognition from `c-font-lock-declarations' to a new function, so
18057 that it can be used in the indentation engine.
18058
18059 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
18060 up to the start of the literal. Fixed bug with the point on the
18061 wrong side of the search limit that could happen when the start
18062 position is inside a literal.
18063
18064 * progmodes/cc-engine.el (c-parse-state)
18065 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
18066 so that it's kept a little bit back to increase the hit rate.
18067
18068 (c-parse-state): Change the macro handling and fixed some
18069 glitches. Macro context is checked more often than necessary now,
18070 but otoh less garbage conses are generated.
18071
18072 * progmodes/cc-engine.el (c-parse-state)
18073 (c-invalidate-state-cache): Cache the last position where
18074 `c-state-cache' applies. This can speed up refontification quite
18075 a bit in blocks where there are many non-brace parens before the point.
18076
18077 (c-state-cache-end): New variable for this.
18078
18079 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
18080 cache variable.
18081
18082 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
18083 get close initial continue positions when the start position is
18084 inside a literal or macro. Do not call the callback for spots
18085 before the start position (which can happen e.g. for `c-decl-end'
18086 spots inside comments). Optimize better in special cases when the
18087 region is a single line inside a literal or macro (typically when
18088 the current line is refontified).
18089
18090 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
18091 to `c-add-stmt-syntax' - there's no need to explicitly whack off
18092 entries from the paren state.
18093
18094 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
18095 special case for "else if" clauses.
18096
18097 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
18098 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
18099
18100 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
18101 New language variable to recognize the gcc extension with statement
18102 blocks inside expressions.
18103
18104 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
18105 it somewhat more comprehensible. The argument AT-BLOCK-START is
18106 no longer used and hence removed.
18107
18108 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
18109 to `c-add-stmt-syntax'.
18110
18111 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
18112 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
18113 This fixes bogus label recognition.
18114
18115 * progmodes/cc-engine.el (c-add-type, c-check-type)
18116 (c-forward-name, c-forward-type): Improve storage of template
18117 types in `c-found-types' so that they can be recognized better.
18118
18119 (c-syntactic-content): Add option to skip past nested parens.
18120
18121 * progmodes/cc-engine.el (c-forward-name):
18122 Set `c-last-identifier-range' all the time. It's less work that way.
18123 Handle that there might not be an identifier to store in
18124 `c-last-identifier-range'.
18125
18126 (c-forward-type): Handle that `c-last-identifier-range' might be
18127 nil from `c-forward-name'.
18128
18129 * progmodes/cc-defs.el (c-safe-scan-lists)
18130 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
18131
18132 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
18133 to work even if the form fails.
18134
18135 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
18136 down in a large file in one go.
18137
18138 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
18139
18140 * progmodes/cc-align.el (c-lineup-assignments): New lineup
18141 function which is like `c-lineup-math' but returns nil instead of
18142 `c-basic-offset' when it doesn't match.
18143
18144 (c-lineup-math): Change to use `c-lineup-assignments'.
18145
18146 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
18147
18148 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
18149 c-beginning-of-statement. New subfunctions
18150 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
18151
18152 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
18153
18154 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
18155 hardcoded char classes whereever possible. Changed a couple of
18156 places to use skip by syntax instead of skip by char class.
18157
18158 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
18159 Fix a bug in the regexp that caused extreme backtracking.
18160
18161 * progmodes/cc-langs.el (c-block-comment-starter)
18162 (c-block-comment-ender): New language constants to specify in a
18163 single place how block comments look.
18164
18165 (c-comment-start-regexp, c-block-comment-start-regexp)
18166 (comment-start, comment-end, comment-start-skip)
18167 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
18168 (c-syntactic-ws, c-nonempty-syntactic-ws)
18169 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
18170 `c-line-comment-starter', `c-block-comment-starter' and
18171 `c-block-comment-ender'.
18172
18173 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
18174 New language constants to break up things a bit.
18175
18176 (c-simple-ws): New language constant for simple whitespace.
18177
18178 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
18179
18180 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
18181 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
18182 newlines. Allow and ignore nil elements in the list.
18183
18184 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
18185
18186 * progmodes/cc-cmds.el: Comment out a (n almost certainly
18187 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
18188
18189 * progmodes/cc-cmds.el: Tidy up the comments in
18190 c-beginning-of-statement and subfunctions.
18191
18192 * progmodes/cc-awk.el: Replace calls to put-text-property to the
18193 more flexible c-put-char-property and c-clear-char-properties.
18194 Add the author's email address.
18195
18196 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
18197
18198 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
18199 closing "*/" of a block comment.
18200
18201 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
18202 subfunctions) so that it works at BOB and EOB.
18203
18204 * progmodes/cc-cmds.el, cc-vars.el: More updating of
18205 c-beginning-of-statement, including new variable
18206 c-block-comment-start-regexp.
18207
18208 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
18209
18210 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
18211 symbols from `*-font-lock-extra-types' so that there's no need to
18212 use `regexp-opt' on those lists.
18213
18214 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
18215 `c-type-modifier-kwds' is empty.
18216
18217 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
18218 there are several strings on the same line.
18219
18220 * progmodes/cc-engine.el (c-literal-limits): Remove the
18221 compatibility function for older emacsen. `c-literal-limits-fast'
18222 has now taken the place of this function.
18223
18224 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
18225 with older emacsen: We now require `pps-extended-state'.
18226
18227 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
18228
18229 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
18230 which obviates the need to hack sentence-end. This now handles
18231 escaped newlines in strings correctly. Correct minor bugs in
18232 c-move-over-sentence and in c-beginning-of-statement.
18233
18234 * progmodes/cc-cmds.el (c-beginning-of-statement (and
18235 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
18236 that movement over macros and code are rigorously separated from
18237 eachother. Correct a few incidental bugs.
18238
18239 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
18240 Improve its doc-string. Improve the handling of certain specific cases.
18241
18242 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
18243
18244 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
18245 (c-guess-basic-syntax): Change the way class-level labels are
18246 recognized; they can now contain essentially any symbols.
18247
18248 (c-opt-extra-label-key): New language variable to cope with the
18249 special protection label syntax in Objective-C.
18250
18251 (c-opt-access-key): Remove; this is now handled better by
18252 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
18253
18254 (c-complex-decl-matchers): Update to handle that
18255 `c-opt-access-key' no longer exists.
18256
18257 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
18258 improved label recognition in `c-beginning-of-statement-1'.
18259
18260 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
18261 Recognize bitfields better.
18262
18263 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
18264 Remove some cruft and fixed a bug that could cause it to go to a
18265 position further down.
18266
18267 * progmodes/cc-langs.el, cc-engine.el
18268 (c-beginning-of-statement-1): Improve detection of labels in
18269 declaration contexts.
18270
18271 (c-beginning-of-decl-1): Use it.
18272
18273 (c-nonlabel-token-key): New language constant and variable needed
18274 by `c-beginning-of-statement-1'.
18275
18276 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
18277 manifested itself due to the correction in `c-forward-sexp'.
18278
18279 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
18280 Make these behave as documented when used at the buffer limits.
18281
18282 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
18283 (c-type-decl-end-used): Made this a language variable.
18284
18285 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
18286 correctly when `combine-after-change-calls' is used together with
18287 temporary narrowings.
18288
18289 * progmodes/cc-engine.el (c-beginning-of-statement-1):
18290 Report labels correctly when the start point is immediately after the
18291 colon.
18292
18293 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
18294 Remove since it isn't used anymore.
18295
18296 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
18297 bracket arglists such as template parens in C++.
18298
18299 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
18300 in the last check-in. Some optimization.
18301
18302 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
18303 where it could stop at the same level in a preceding sexp when
18304 PAREN-LEVEL is set.
18305
18306 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
18307 text property lookup only when it's needed.
18308
18309 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
18310 Change the policy for paren marked angle brackets to be more
18311 persistent; once marked they remain marked even when they're found
18312 to be unbalanced in the searched region. This should keep the
18313 paren syntax around even when individual lines are refontified in
18314 multiline template arglists.
18315
18316 (c-parse-and-markup-<>-arglists): New dynamically bound variable
18317 to control markup so that incorrect angle bracket arglists aren't
18318 marked in contexts where the correct value for
18319 `c-disallow-comma-in-<>-arglists' isn't known.
18320
18321 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
18322 argument has become `c-parse-and-markup-<>-arglists'.
18323
18324 (c-remove-<>-arglist-properties): Remove - no longer used.
18325
18326 (c-after-change-check-<>-operators): New function used on
18327 `after-change-functions' to avoid that "<" and ">" characters that
18328 are part of longer operators have paren syntax.
18329
18330 (c-<>-multichar-token-regexp): New language variable used by
18331 `c-after-change-check-<>-operators'.
18332
18333 (c-after-change): Call `c-after-change-check-<>-operators'.
18334
18335 (c-font-lock-<>-arglists): Use the context properties set by
18336 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
18337 correctly to avoid doing invalid markup.
18338
18339 (c-font-lock-declarations): Remove code that undoes the invalid
18340 markup done by `c-font-lock-<>-arglists'.
18341
18342 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
18343 after `c-font-lock-declarations'.
18344
18345 * progmodes/cc-engine.el (c-syntactic-skip-backward):
18346 Add paren-level feature.
18347
18348 (c-guess-basic-syntax): Improve the anchor position for
18349 `template-args-cont' in nested template arglists. There's still
18350 much to be desired in this area, though.
18351
18352 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
18353
18354 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
18355 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
18356
18357 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
18358
18359 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
18360 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
18361
18362 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
18363 it doesn't work no longer are supported.
18364
18365 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
18366 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
18367 requires support for the syntax-table' text property, which rules
18368 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
18369 cruft associated with those versions.
18370
18371 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
18372 for the `syntax-table' text property, which rules out Emacs 19 and
18373 XEmacs < 21.4. Removed various compatibility cruft associated
18374 with those versions.
18375
18376 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
18377 support for the `syntax-table' text property.
18378
18379 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
18380 variable and use an extra quoted face name instead. All the
18381 emacsen flavors handle that correctly.
18382
18383 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
18384 (c-font-lock-declarators, c-font-lock-declarations)
18385 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
18386 property to mark the items in in declarator lists to handle
18387 refontification inside multiline declarations better.
18388
18389 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
18390 construct like "a * b = c;" as a declaration.
18391
18392 2005-12-08 Kim F. Storm <storm@cua.dk>
18393
18394 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
18395 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
18396 select either meta, hyper, or super modifier for rectangle commands.
18397 (cua--rectangle-modifier-key): New defvar.
18398 (cua--M/H-key): Use it. Remove special case for `space'.
18399 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
18400 on X, to meta otherwise. Always bind C-return to toggle
18401 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
18402
18403 * emulation/cua-rect.el (cua-help-for-rectangle):
18404 Use cua--rectangle-modifier-key. Handle super modifier too.
18405 (cua--init-rectangles): Always bind C-return to toggle rectangle.
18406 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
18407
18408 * ido.el: Move Acknowledgements and History after Commentary.
18409 Minor changes to Commentary.
18410
18411 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
18412 keymap if cua--prefix-override-timer is `shift'.
18413 (cua--shift-control-prefix): New function; emulate "type prefix
18414 key twice" functionality to handle shifted prefix key override.
18415 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
18416 New commands.
18417 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
18418
18419 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
18420
18421 * textmodes/org.el (org-insert-heading): Try to do items before
18422 headings.
18423 (org-agenda-mode): Quote `org-agenda-mode-hook'.
18424 (org-insert-item): New function.
18425 (org-renumber-ordered-list): Don't skip to higher level lists.
18426
18427 2005-12-08 Juri Linkov <juri@jurta.org>
18428
18429 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
18430
18431 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
18432
18433 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
18434
18435 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
18436 the constructed function name fun-1.
18437
18438 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
18439 because such links don't lead to parent documentation.
18440
18441 2005-12-08 Kenichi Handa <handa@m17n.org>
18442
18443 * descr-text.el (describe-char): Use *Help-2* buffer if the
18444 current buffer is *Help*. Call describe-text-properties while
18445 setting the original buffer.
18446
18447 2005-12-07 Bill Wohler <wohler@newt.com>
18448
18449 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
18450 and causes problems with non-MH users (such as Gnus users).
18451
18452 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
18453
18454 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
18455 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
18456 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
18457 command "info sources". Move calls to GDB command "list".
18458 (gdb-find-file-hook): Just use gdb-source-file-list.
18459 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
18460 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
18461 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
18462 (gdb-data-list-register-values-handler): Use correct trigger name.
18463
18464 2005-12-07 Kim F. Storm <storm@cua.dk>
18465
18466 * ido.el (ido-completion-map): Rename from ido-mode-map.
18467 (ido-common-completion-map, ido-file-completion-map)
18468 (ido-file-dir-completion-map, ido-buffer-completion-map):
18469 Rename from ido-mode-....-map.
18470 (ido-init-completion-maps): Rename from ido-init-mode-maps.
18471 (ido-setup-completion-map): Rename from ido-define-mode-map.
18472 (ido-read-internal): Bind minibuffer-local-filename-completion-map
18473 to ido-completion-map.
18474
18475 2005-12-07 Kenichi Handa <handa@m17n.org>
18476
18477 * international/mule-cmds.el
18478 (set-display-table-and-terminal-coding-system): If the coding
18479 system specified in `unibyte-display' property is different from
18480 the arg coding-system, don't setup standard-display-table.
18481
18482 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
18483
18484 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
18485 that comments end at \n, regardless of selective-display.
18486
18487 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
18488
18489 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
18490 (gdb-version): New variables.
18491 (gdb-source-file-list, gdb-register-names)
18492 (gdb-changed-registers): New variables for use with GDB 6.4+.
18493 (gdb-ann3): Replace with...
18494 (gdb-init-1, gdb-init-2): ...two new functions.
18495 (gdba, gdb-prompt): Call gdb-init-1.
18496 (gdb-get-version): New function. Call gdb-init-2 from here.
18497 (gud-watch): Make it work with mouse events too.
18498 (gdb-post-prompt): Don't add to queue until GDB version is known.
18499 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
18500 (gdb-locals-mode): Use gdb-version.
18501 (gdb-memory-format-map, gdb-memory-unit-map)
18502 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
18503 (gdb-locals-font-lock-keywords-1)
18504 (gdb-locals-font-lock-keywords-2): New variables.
18505 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
18506 (gdb-set-gud-minor-mode-existing-buffers-1)
18507 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
18508 (gdb-var-update-1, gdb-var-update-handler-1)
18509 (gdb-data-list-register-values-handler)
18510 (gdb-data-list-register-values-custom)
18511 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
18512 (gdb-stack-list-locals-handler, gdb-get-register-names):
18513 New functions for use with GDB 6.4+.
18514 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
18515 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
18516 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
18517 (gdb-stack-list-locals-regexp)
18518 (gdb-data-list-register-names-regexp): New regexps for use with
18519 GDB 6.4+.
18520
18521 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
18522
18523 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
18524
18525 2005-12-06 Nozomu Ando <nand@mac.com>
18526
18527 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
18528 prompts work for AUTH PLAIN. Also reported by Steve Allan
18529 <seallan@verizon.net>.
18530
18531 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
18532
18533 * frame.el (set-frame-parameter): Add doc string.
18534
18535 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
18536
18537 * textmodes/org.el (org-occur-highlights): New variable.
18538 (org-highlight-new-match, org-remove-occur-highlights): New functions.
18539 (org-highlight-sparse-tree-matches): New option.
18540 (org-do-occur): New function.
18541 (org-get-heading): Make it work also at beginning of line.
18542 (org-category-table): New variable.
18543 (org-get-category-table, org-get-category)
18544 (org-camel-to-words, org-link-search): New functions.
18545 (org-select-this-todo-keyword): New variable.
18546 (org-todo-list): New command.
18547 (org-shiftright, org-shiftleft): New commands.
18548 (org-agenda-todo): Add prefix argument.
18549 (org-show-hierarchy-above): New option.
18550 (org-show-todo-tree): Numerical prefix creates tree for specific
18551 TODO keyword.
18552 (org-outline-level): New function, to assign a level to plain
18553 lists items.
18554 (org-cycle-include-plain-lists): New option.
18555 (org-mode): Use `org-outline-level' as value of `outline-level'.
18556 (org-cycle): Temporarily switch `outline-regexp' if
18557 `org-cycle-include-plain-lists' is non-nil.
18558 (org-start-icalendar-file): Fix format bug.
18559 (org-agenda-get-day-entries): Create category table.
18560 (org-agenda-get-todos, org-agenda-get-timestamps)
18561 (org-agenda-get-deadlines, org-agenda-get-scheduled)
18562 (org-agenda-get-blocks): Use `org-get-category'.
18563 (org-context-in-file-links): Rename from
18564 `org-line-numbers-in-file-links'.
18565
18566 2005-12-06 Romain Francoise <romain@orebokech.com>
18567
18568 * window.el (balance-windows): Delete extraneous third arg in call
18569 to `enlarge-window'.
18570
18571 2005-12-06 Kenichi Handa <handa@m17n.org>
18572
18573 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
18574
18575 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
18576
18577 * progmodes/gdb-ui.el (gdb-var-create-handler)
18578 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
18579 (gdb-var-list-children-handler, gdb-var-update-handler):
18580 Current buffer is already gdb-partial-output-buffer, don't
18581 make it current again.
18582
18583 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
18584
18585 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
18586 (list-buffers-noselect): Use it.
18587
18588 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
18589
18590 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
18591 (mail-yank-ignored-headers): Use regexp-opt.
18592 (mail-mode-map): Move initialization into declaration.
18593 (mail-sent-via): Remove unused shadowed var `to-line'.
18594 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
18595 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
18596 (mail-do-fcc): Use dolist and push.
18597 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
18598 (mail-yank-ignored-headers): Don't autoload.
18599
18600 2005-12-05 Kenichi Handa <handa@m17n.org>
18601
18602 * international/mule-cmds.el (set-language-info-internal): New fun.
18603 (set-language-info): Call set-language-info-internal to update
18604 language-info-alist. If LANG-ENV is the current one, call
18605 set-language-environment to make INFO effective now.
18606 (set-language-info-alist): Likewise.
18607 (locale-language-names): With locale "en", use English
18608 lang. env. but set the default codings to iso-8859-1.
18609
18610 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
18611
18612 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
18613 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
18614 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
18615 for plain strings.
18616 (gdb-frames-mode): Remove redundant call to font-lock-mode.
18617 (gdb-all-registers): Rename from toggle-gdb-all-registers.
18618 Create registers buffer if necessary. Echo new state in minibuffer.
18619 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
18620
18621 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
18622
18623 * info.el (Info-fontify-node): Match external links using
18624 non-directory part of filename.
18625
18626 2005-12-04 Juri Linkov <juri@jurta.org>
18627
18628 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
18629 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
18630 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
18631 because there is no customization option for it.
18632
18633 * font-lock.el (lisp-font-lock-keywords-1):
18634 Add define-global-minor-mode.
18635
18636 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
18637
18638 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
18639 properties on the constructed variable names.
18640
18641 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
18642 Put `definition-name' properties on the constructed function names
18643 next-sym and prev-sym.
18644
18645 * emacs-lisp/find-func.el (find-function-regexp):
18646 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
18647 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
18648 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
18649 and easy-menu-define.
18650
18651 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
18652 easy-mmode-define-global-mode and define-global-minor-mode.
18653 (lisp-imenu-generic-expression): Add define-global-minor-mode.
18654
18655 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
18656 instead of easy-mmode-define-global-mode.
18657
18658 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
18659 Use define-minor-mode instead of easy-mmode-define-minor-mode.
18660
18661 * cus-edit.el (customize-group, customize-group-other-window):
18662 Filter out autoloaded options from the group completion list by
18663 using heuristics that autoloaded groups don't have `custom-autoload'
18664 property on their symbols (they have only `custom-loads').
18665
18666 * simple.el (completion-setup-function): Put completions-common-part
18667 face on complete completion string too (i.e. completion string
18668 without completions-first-difference face).
18669
18670 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
18671
18672 2005-12-03 Eli Zaretskii <eliz@gnu.org>
18673
18674 * view.el (view-mode): Doc fix.
18675
18676 * disp-table.el (standard-display-european): Add to the warning
18677 message a reference to the doc string.
18678
18679 * play/yow.el (apropos-zippy): Call print-help-return-message,
18680 similar to other Help and Apropos commands.
18681
18682 * help.el (print-help-return-message): If pop-up-frames is
18683 non-nil, set up help-return-method to delete the help window and,
18684 possibly, its frame as well, and don't display message about
18685 scrolling the help window. Doc fix.
18686 (help-return-method): Doc fix.
18687
18688 2005-12-03 Martin Rudalics <rudalics@gmx.at>
18689
18690 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
18691 whereby names of length one or names starting with a
18692 symbol-constituent character would not be returned.
18693
18694 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
18695
18696 * subr.el (atomic-change-group): Add edebug and indentation spec.
18697
18698 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
18699
18700 * completion.el (save-completions-file-name): Fix typo in last change.
18701
18702 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18703
18704 * info.el: Move back/forward history to the beginning of the tool bar.
18705
18706 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
18707
18708 * allout.el (eval-when-compile): Remove unnecessary load of cl.
18709 Add fset of allout-real-isearch-abort during compile to fix
18710 byte-compilation warnings.
18711 (allout-mode-p): Move definition of this macro above all uses, or
18712 byte compilation in barren Emacs (eg, during Emacs build) will
18713 lack the definition.
18714 (allout-mode): Move this variable above any uses, or byte
18715 compilation will fail.
18716 (allout-resolve-xref): Remove use of personal file-reference function.
18717 (allout-toggle-current-subtree-encryption): Do the current (ie,
18718 visible containing) topic, rather than nearest around point. Doc fix.
18719 (allout-toggle-subtree-encryption): New function, workhorse that
18720 works on nearest topic containing point.
18721 (allout-encrypt-string): Signal requirement for newer version of pgg.
18722 (allout-resumptions): Doc fix.
18723
18724 2005-12-02 Eli Zaretskii <eliz@gnu.org>
18725
18726 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
18727
18728 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
18729
18730 * textmodes/flyspell.el (flyspell-external-point-words):
18731 Consider a misspelling as found in the string search if: (a) misspelling
18732 and found string lengths match, or (b) misspelling is found as
18733 element in a boundary-chars separated longer string, or (c)
18734 ispell-program-name is really ispell and misspelling is found as
18735 part of a TeX string. After successful match move beginning of
18736 search region to end of match. Warn about not found misspellings
18737 once the process is done.
18738 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
18739
18740 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
18741
18742 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
18743 tool bar (removed inadvertently).
18744
18745 2005-12-02 Juri Linkov <juri@jurta.org>
18746
18747 * log-view.el (log-view-diff): Clarify doc string.
18748
18749 2005-12-01 Bill Wohler <wohler@newt.com>
18750
18751 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
18752 triggers lm-verify errors.
18753
18754 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
18755
18756 * simple.el (transient-mark-mode, line-number-mode)
18757 (column-number-mode, size-indication-mode): Remove `:require nil'.
18758
18759 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
18760
18761 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
18762 in the margin also.
18763 (gdb-breakpoints-mode-map): Use D instead of d for
18764 gdb-delete-breakpoint.
18765 (gdb-get-frame-number): Require a number to match on.
18766 (gdb-threads-mode-map): Add follow-link binding.
18767
18768 2005-11-30 Jason Rumney <jasonr@gnu.org>
18769
18770 * isearch.el (isearch-mode-map): Avoid exiting search on
18771 language-change event.
18772
18773 2005-11-30 Romain Francoise <romain@orebokech.com>
18774
18775 * speedbar.el (speedbar-default-position): New defcustom.
18776 (speedbar-frame-reposition-smartly): Use it.
18777
18778 * dframe.el (dframe-reposition-frame-emacs): Fix position
18779 computation for `left' location.
18780 Update copyright year.
18781
18782 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
18783
18784 * help.el (help-map): Move initialization into declaration.
18785
18786 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
18787
18788 * help-fns.el (help-argument-name): Don't autoload.
18789 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
18790 to be re-loaded when customizing the `help' group.
18791
18792 2005-11-30 John Paul Wallington <jpw@gnu.org>
18793
18794 * help-fns.el (describe-function-1): Fill arglist output.
18795
18796 2005-11-30 Kim F. Storm <storm@cua.dk>
18797
18798 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
18799 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
18800 after revert-buffer (or anything else which kills all local variables).
18801
18802 * apropos.el (apropos-parse-pattern): Doc fix.
18803 Set apropos-regexp directly, rather than expecting callers to do so.
18804 (apropos-command, apropos, apropos-value, apropos-documentation):
18805 Simplify calls to apropos-parse-pattern.
18806
18807 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
18808
18809 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
18810 (hi-lock-face-phrase-buffer): Use hi-yellow face.
18811 (hi-lock-write-interactive-patterns): Use comment-region.
18812
18813 * longlines.el (longlines-mode): Add mail-setup-hook.
18814
18815 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
18816
18817 * simple.el (sendmail-user-agent-compose, next-line):
18818 Conditionally use hard-newline.
18819
18820 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
18821
18822 * international/latexenc.el (latex-inputenc-coding-alist):
18823 Reword doc string.
18824
18825 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
18826
18827 * help.el (describe-key-briefly, describe-key): Recognize default
18828 bindings.
18829
18830 2005-11-29 Romain Francoise <romain@orebokech.com>
18831
18832 * view.el (view-inhibit-help-message): New defcustom.
18833 (view-mode-enter): Use it.
18834
18835 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
18836
18837 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
18838 Preserve user position.
18839
18840 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
18841
18842 * font-lock.el: Throw error if facemenu is not loaded to prevent
18843 accidental change of loading order in loadup.el. (Suggested by RMS.)
18844
18845 * loadup.el: Add comment explaining why facemenu must be loaded
18846 before font-lock.
18847
18848 2005-11-28 Jay Belanger <belanger@truman.edu>
18849
18850 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
18851 (calc-dispatch-map): Add more keys for `calc-same-interface'.
18852
18853 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
18854
18855 * calc/calc-embed.el (calc-do-embedded): Update help message.
18856
18857 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
18858
18859 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
18860
18861 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
18862
18863 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
18864 called-interactively-p.
18865 (elp-profilable-p): Rename from elp-not-profilable-p.
18866 Invert result and take into account macros and autoloaded functions.
18867 (elp-instrument-function): Update call.
18868 (elp-instrument-package): Update call. Add completion.
18869 (elp-pack-number): Use match-string.
18870 (elp-results-jump-to-definition-by-mouse): Merge into
18871 elp-results-jump-to-definition and then remove.
18872 (elp-output-insert-symname): Make help echo text single-line.
18873
18874 * replace.el (query-replace-map): Move initialization into declaration.
18875 (occur-engine): Use with-current-buffer.
18876 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
18877 (occur-mode-mouse-goto): Replace with an alias.
18878
18879 2005-11-28 Juri Linkov <juri@jurta.org>
18880
18881 * simple.el (quoted-insert): Let-bind input-method-function to nil.
18882
18883 * term/w32-win.el: Bind [S-tab] to [backtab].
18884
18885 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
18886 `Info-find-file' to t.
18887
18888 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
18889 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
18890 and same-window-regexps.
18891 (occur-next-error): Don't move point for arg 0.
18892
18893 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
18894
18895 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
18896
18897 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
18898
18899 * log-edit.el (log-edit-changelog-use-first): New var.
18900 (log-edit-changelog-ours-p): Use it.
18901 (log-edit-insert-changelog): Set it with new arg `use-first'.
18902 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
18903 (log-edit-hook): Add them to the list of suggested options.
18904
18905 * textmodes/flyspell.el (flyspell-last-buffer): New var.
18906 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
18907 redundant work.
18908 (flyspell-mode-on): Use add-hook for after-change-functions.
18909 (flyspell-mode-off): Use remove-hook for after-change-functions.
18910 (flyspell-changes): Make it buffer-local.
18911 (flyspell-after-change-function): Make it non-interactive. Use push.
18912 (flyspell-post-command-hook): Check input-pending-p while processing
18913 the potentially long list of buffer changes.
18914
18915 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
18916
18917 * buff-menu.el (list-buffers-noselect): Display the selected
18918 frame's buffer list, not the global one.
18919
18920 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
18921
18922 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
18923 that (list last-input-event) works as in interactive spec.
18924
18925 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
18926
18927 * loadup.el ("facemenu"): Load facemenu before font-lock, because
18928 `facemenu-keymap' needs to be defined when font-lock is loaded.
18929 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
18930
18931 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
18932
18933 * completion.el: Remove useless leading * in defcustom docstrings.
18934 (save-completions-file-name): Use ~/.emacs.d if available.
18935 (completion-standard-syntax-table): Rename from
18936 cmpl-standard-syntax-table and fold initialization into declaration,
18937 thus removing cmpl-make-standard-completion-syntax-table.
18938 (completion-lisp-syntax-table, completion-c-syntax-table)
18939 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
18940 (cmpl-saved-syntax, cmpl-saved-point): Remove.
18941 (symbol-under-point, symbol-before-point)
18942 (symbol-under-or-before-point, symbol-before-point-for-complete)
18943 (add-completions-from-c-buffer): Use with-syntax-table.
18944 (make-completion): Don't return a list of completion entries.
18945 Update callers.
18946 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
18947 (completion-initialize): Rename from initialize-completions.
18948 (completion-find-file-hook): Rename from cmpl-find-file-hook.
18949 (kill-emacs-save-completions): Collect stats here.
18950 (save-completions-to-file, load-completions-from-file):
18951 Use with-current-buffer.
18952 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
18953 into a function. Move all calls to toplevel.
18954 (completion-lisp-mode-hook): New fun.
18955 (completion-c-mode-hook, completion-setup-fortran-mode):
18956 Set the syntax-table here. Use local-set-key.
18957 (completion-saved-bindings): New var.
18958 (dynamic-completion-mode): Make it into a proper minor mode.
18959 (load-completions-from-file): Remove unused var `num-uses'.
18960
18961 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
18962 constructor if it is explicitly overridden.
18963
18964 * complete.el (PC-completion-as-file-name-predicate):
18965 Use minibuffer-completing-file-name.
18966 (partial-completion-mode): Use find-file-not-found-functions.
18967 (PC-lisp-complete-symbol): Use with-syntax-table.
18968 (PC-look-for-include-file): Remove dead setq.
18969 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
18970 (PC-complete): Use with-current-buffer.
18971
18972 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
18973 escape single quotes.
18974
18975 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
18976
18977 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
18978 of `if' whose condition always returned nil. Doc fix.
18979
18980 * buff-menu.el (Buffer-menu-revert-function): Make the selected
18981 window's buffer the current buffer around the call to
18982 `list-buffers-noselect'. This is necessary to mark that buffer
18983 with a `.' in the Buffer Menu when called from Lisp, for instance
18984 by Auto Revert Mode.
18985
18986 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
18987
18988 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
18989 attaching to it.
18990 (gdb-pre-prompt): Make sure gdb-error is reset.
18991
18992 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
18993 with a child process, detect it.
18994 (gud-speedbar-buttons): Match regexp more carefully.
18995
18996 2005-11-27 Richard M. Stallman <rms@gnu.org>
18997
18998 * mouse.el (mouse-drag-move-window-bottom):
18999 Use adjust-window-trailing-edge.
19000
19001 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
19002
19003 * simple.el (blink-matching-open): Ignore
19004 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
19005 (blink-matching-paren-on-screen): Update docstring.
19006
19007 * paren.el (show-paren-mode): No longer change
19008 `blink-matching-paren-on-screen'.
19009
19010 2005-11-27 John Paul Wallington <jpw@pobox.com>
19011
19012 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
19013 (gdb-threads-select, gdb-edit-register-value):
19014 Use `posn-set-point' instead of `mouse-set-point' because the
19015 latter is not fbound when configured without X.
19016
19017 2005-11-27 Kim F. Storm <storm@cua.dk>
19018
19019 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
19020 existing face when partially highlighting a TAB in a rectangle.
19021
19022 2005-11-26 Kim F. Storm <storm@cua.dk>
19023
19024 * ido.el (ido-mode-map): Doc fix.
19025 (ido-mode-common-map, ido-mode-file-map)
19026 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
19027 (ido-define-mode-map): Rewrite. Select one of the new maps as
19028 parent for ido-mode-map instead of building from scratch.
19029 (ido-init-mode-maps): New defun to initialize new maps.
19030 (ido-mode): Call it.
19031 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
19032 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
19033
19034 2005-11-26 John Paul Wallington <jpw@pobox.com>
19035
19036 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
19037 `mouse-set-point' because the latter is not fbound when configured
19038 without X.
19039
19040 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
19041
19042 * files.el (file-relative-name): Doc fix.
19043
19044 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
19045
19046 * progmodes/octave-inf.el (inferior-octave-startup): Force a
19047 non-empty string for secondary prompt PS2.
19048
19049 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
19050
19051 * progmodes/compile.el (compilation-setup): Fix last change.
19052
19053 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
19054
19055 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
19056 (gdb-mouse-toggle-breakpoint-margin)
19057 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
19058 Add gdb-server-prefix to keep out of command history.
19059 (gdb-edit-register-value): New function.
19060 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
19061 (gdb-info-registers-custom): Use above map.
19062
19063 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
19064
19065 * custom.el (enable-theme): Signal error if argument is not a
19066 theme. Don't recalculate a face if it's not loaded yet.
19067
19068 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
19069 the `user' theme is in effect.
19070
19071 * info.el (Info-on-current-buffer): Record actual filename in
19072 Info-current-file, instead of t, or a fake filename if a non-file
19073 buffer. Make autoload.
19074 (Info-find-node, Info-revert-find-node): No need to check for
19075 Info-current-file nil.
19076 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
19077 Info-current-file is now never `t'.
19078 (Info-fontify-node): Many simplifications due to Info-current-file
19079 always being valid. Use Info-find-file to find node filename.
19080
19081 2005-11-25 David Kastrup <dak@gnu.org>
19082
19083 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
19084 new character, then delete" in order to preserve markers.
19085
19086 2005-11-25 David Ponce <david@dponce.com>
19087
19088 * recentf.el (recentf-arrange-by-rule): Handle a special
19089 `auto-mode-alist'-like "strip suffix" rule.
19090 (recentf-build-mode-rules): Handle second level auto-mode entries.
19091
19092 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
19093
19094 * viper-keym.el (viper-ESC-key): Use different values in terminal and
19095 window modes.
19096
19097 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
19098 jde-javadoc-checker-report-mode.
19099
19100 * ediff-wind (ediff-make-wide-display): Slight simplification.
19101
19102 * ediff.el (ediff-date): Change the date of last update.
19103
19104 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
19105
19106 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
19107 Use define-minor-mode, and make it a local mode. Turn on font-lock.
19108 (hi-lock-mode): New global minor mode.
19109 (turn-on-hi-lock-if-enabled): New function.
19110 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
19111 Change arguments to regexp and face instead of a font-lock pattern.
19112 Directly set face property, instead of refontifying.
19113 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
19114 (hi-lock-find-patterns): Use line-number-at-pos.
19115
19116 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
19117 arguments for hi-lock-set-pattern.
19118 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
19119 Call font-lock-fontify-buffer.
19120 (hi-lock-find-file-hook, hi-lock-current-line)
19121 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
19122
19123 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
19124 turned off.
19125
19126 * progmodes/compile.el (compilation-setup): Don't fiddle with
19127 font-lock-defaults.
19128
19129 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
19130
19131 * progmodes/gdb-ui.el (gdb-var-create-handler)
19132 (gdb-var-list-children-handler): Find values for all variable
19133 objects. gud-speedbar-buttons decides whether to display them.
19134
19135 2005-11-24 Romain Francoise <romain@orebokech.com>
19136
19137 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
19138 buffer name with a space.
19139
19140 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
19141
19142 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
19143 `org-export-local-list-max-depth'. Change default value to 3.
19144 (org-auto-renumber-ordered-lists)
19145 (org-plain-list-ordered-item-terminator): New options.
19146 (org-at-item-p, org-beginning-of-item, org-end-of-item)
19147 (org-get-indentation, org-get-string-indentation)
19148 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
19149 New functions.
19150 (org-move-item-down, org-move-item-up): New commands.
19151 (org-export-as-html): New classes for CSS support. Bug fix in
19152 regular expression detecting fixed-width regions. Respect
19153 `org-local-list-ordered-item-terminator'.
19154 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
19155 also a list item.
19156 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
19157 New item moving functions.
19158
19159 2005-11-24 Juri Linkov <juri@jurta.org>
19160
19161 * isearch.el (isearch-repeat): With empty search ring set
19162 `isearch-error' to the error string instead of signaling error
19163 with the function `error'.
19164
19165 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19166
19167 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
19168
19169 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
19170
19171 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
19172 and variable.
19173 (gdb-var-create-handler, gdb-var-list-children-handler):
19174 Don't match on "char **...".
19175 (gdb-var-update-handler): Find values for all variable objects.
19176 (gdb-info-frames-custom): Identify frames by leading "#".
19177
19178 * progmodes/gud.el (gud-speedbar-menu-items): Add
19179 gdb-speedbar-auto-raise as radio button.
19180 (gud-speedbar-buttons): Raise speedbar if requested.
19181 Don't match on "char **...".
19182 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
19183 Make it editable.
19184
19185 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
19186
19187 * info.el (Info-fontify-node): Handle the case where
19188 Info-current-file is t.
19189
19190 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
19191
19192 * simple.el (blink-matching-open): Fix off-by-one in last change.
19193
19194 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19195
19196 * term/mac-win.el: Don't change default directory.
19197
19198 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
19199
19200 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
19201 buffers correctly. (It used to throw an error in such buffers.)
19202 Make it ask for confirmation in group buffers and other Custom
19203 buffers containing more than one customization item.
19204
19205 2005-11-22 John Paul Wallington <jpw@gnu.org>
19206
19207 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
19208 property on mail and url overlays.
19209 (goto-address-at-point): Use `posn-set-point' instead of
19210 `mouse-set-point' because the latter is not fbound when configured
19211 without X.
19212
19213 2005-11-22 Lars Hansen <larsh@soem.dk>
19214
19215 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
19216 (ls-lisp-classify, ls-lisp-format): Delete call to
19217 ls-lisp-parse-symlink.
19218 (ls-lisp-handle-switches): Handle symlinks to directories as
19219 directories when ls-lisp-dirs-first in non-nil.
19220
19221 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
19222
19223 * startup.el (command-line): Make sure that loaddefs.el is handled
19224 correctly in load-history.
19225
19226 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
19227
19228 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
19229 (gdb-struct-string, gdb-array-string): New constants.
19230 (gdb-info-locals-handler): Use them.
19231 (gdb-reset): Reset gdb-var-list to nil.
19232
19233 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19234
19235 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
19236 in patterns.
19237
19238 2005-11-21 Juri Linkov <juri@jurta.org>
19239
19240 * custom.el (defcustom): Update link types in docstring.
19241
19242 2005-11-20 Martin Rudalics <rudalics@gmx.at>
19243
19244 * custom.el (defgroup): Add doc-string-elt info.
19245
19246 * widget.el (define-widget): Don't use declare for the doc-string-elt.
19247
19248 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
19249
19250 * newcomment.el (comment-enter-backward): Fix last fix.
19251
19252 * simple.el (blink-matching-open):
19253 * paren.el (show-paren-function): Allow new paren-class info.
19254
19255 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
19256
19257 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
19258 handled automagically.
19259
19260 2005-11-20 Andreas Schwab <schwab@suse.de>
19261
19262 * descr-text.el (describe-char): When copying overlays put them
19263 over the full char description instead of just the first character
19264 of it.
19265
19266 2005-11-20 Juri Linkov <juri@jurta.org>
19267
19268 * simple.el (what-cursor-position):
19269 * descr-text.el (describe-char): Use Lisp-readable syntax
19270 for octal and hex. Reorder decimal, octal and hex values.
19271 Remove excess whitespace in the output. Use `=' in `column='
19272 like in `point=' and `Hscroll='.
19273
19274 * international/mule-cmds.el (encoded-string-description):
19275 Use Lisp-readable syntax for hex.
19276
19277 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
19278
19279 * newcomment.el (comment-enter-backward): Handle the case where the
19280 comment is closed by EOB.
19281
19282 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
19283
19284 * longlines.el (longlines-before-revert-hook)
19285 (longlines-after-revert-hook): New functions.
19286 (longlines-mode): Turn off longlines temporarily when reverting.
19287 Add a message-setup-hook.
19288 (longlines-decode-buffer): New function.
19289 (longlines-wrap-line): Preserve marker positions.
19290
19291 2005-11-19 Andreas Schwab <schwab@suse.de>
19292
19293 * emacs-lisp/shadow.el: Handle compressed files.
19294
19295 2005-11-19 Romain Francoise <romain@orebokech.com>
19296
19297 * net/browse-url.el (browse-url-default-browser): Signal an error
19298 if no usable browser can be found, rather than try to load w3.
19299
19300 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
19301
19302 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
19303 replacing existing properties.
19304 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
19305 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
19306 tty specs.
19307 (rcirc-server-prefix, rcirc-server): New faces.
19308 (rcirc-url-regexp): Generate with rx macro.
19309 (rcirc-last-server-message-time): New variable.
19310 (rcirc-filter): Record time of last message.
19311 (rcirc-keepalive): Kill processes that did not send a message
19312 since the last ping.
19313 (rcirc-mode): Give rcirc-topic a local binding here.
19314
19315 2005-11-19 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
19316
19317 * subr.el (read-passwd): Fontify the prompt as we do with other
19318 prompts.
19319
19320 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
19321
19322 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
19323 binding buffer-read-only to nil.
19324
19325 2005-11-19 Eli Zaretskii <eliz@gnu.org>
19326
19327 * complete.el (partial-completion-mode):
19328 Mention completion-auto-help in the doc string.
19329
19330 * man.el (Man-highlight-references): Doc fix. Reformat code in a
19331 more Lisp-ish way.
19332
19333 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
19334
19335 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
19336 digits, not 8, to avoid misalignment for files larger than 100MB.
19337
19338 2005-11-19 Eli Zaretskii <eliz@gnu.org>
19339
19340 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
19341 Mention "keyboard shortcuts" in the help text.
19342
19343 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19344
19345 * startup.el (fancy-splash-default-action): Discard only
19346 mouse-down and succeeding mouse-up events in the splash screen
19347 window so that drag-n-drop event can be processed.
19348
19349 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
19350
19351 * longlines.el (longlines-mode): Add hacks for mail-mode and
19352 message-mode.
19353
19354 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
19355
19356 * textmodes/org.el (org-table-sort-lines): New command.
19357 (org-tbl-menu): Add entry for `org-table-sort-lines'.
19358 (org-add-file): Command removed, use `org-agenda-file-to-front'
19359 instead.
19360 (org-export-icalendar): Use `org-icalendar-combined-name'.
19361 (org-cycle-agenda-files, org-agenda-file-to-end)
19362 (org-agenda-file-to-front): New commands.
19363 (org-table-tab-jumps-over-hlines, org-export-html-style):
19364 New options.
19365 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
19366 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
19367 New functions.
19368 (org-fill-paragraph): Call `org-table-align' in tables.
19369 (org-mode): Call `org-set-autofill-regexps'.
19370 (org-export-as-html): Support for local handformatted lists.
19371 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
19372 (org-export-local-list-max-depth): New option.
19373 (org-html-expand): Use `org-html-protect'.
19374
19375 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
19376
19377 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
19378 to "p".
19379 (gdb): Move definition of gud-pp to...
19380
19381 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
19382 speedbar.
19383 (gdb-find-watch-expression): New function.
19384
19385 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
19386
19387 * faces.el (face-attribute, set-face-attribute): Mention existence
19388 of `:ignore-defface' setting in docstring.
19389
19390 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
19391
19392 * simple.el (completion-setup-function): Fix last change.
19393
19394 2005-11-17 John Paul Wallington <jpw@pobox.com>
19395
19396 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
19397 Use `posn-set-point' instead of `mouse-set-point' because the
19398 latter is not fbound when configured without X.
19399
19400 * comint.el (comint-insert-input): Likewise.
19401
19402 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
19403
19404 * simple.el (hard-newline): New variable.
19405 (sendmail-user-agent-compose, next-line): Use it.
19406
19407 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
19408 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
19409 (mail-mail-reply-to, mail-mail-followup-to)
19410 (mail-position-on-field, mail-signature, mail-yank-original)
19411 (mail-attach-file): Likewise.
19412
19413 * mail/mailheader.el (mail-header-format)
19414 (mail-header-format-function): Likewise.
19415
19416 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
19417
19418 2005-11-17 Juri Linkov <juri@jurta.org>
19419
19420 * font-lock.el (font-lock-faces): Rename this defgroup from
19421 `font-lock-highlighting-faces'.
19422 (font-lock-comment-face, font-lock-comment-delimiter-face)
19423 (font-lock-string-face, font-lock-doc-face)
19424 (font-lock-keyword-face, font-lock-builtin-face)
19425 (font-lock-function-name-face, font-lock-variable-name-face)
19426 (font-lock-type-face, font-lock-constant-face)
19427 (font-lock-warning-face, font-lock-negation-char-face)
19428 (font-lock-preprocessor-face)
19429 (font-lock-regexp-grouping-backslash)
19430 (font-lock-regexp-grouping-construct): Rename :group from
19431 `font-lock-highlighting-faces' to `font-lock-faces'.
19432
19433 * cus-edit.el (lisp, c, tex):
19434 * progmodes/ada-mode.el (ada):
19435 * progmodes/asm-mode.el (asm):
19436 * progmodes/cperl-mode.el (cperl-faces):
19437 * progmodes/cpp.el (cpp):
19438 * progmodes/dcl-mode.el (dcl):
19439 * progmodes/f90.el (f90):
19440 * progmodes/fortran.el (fortran):
19441 * progmodes/icon.el (icon):
19442 * progmodes/idlwave.el (idlwave-misc):
19443 * progmodes/m4-mode.el (m4):
19444 * progmodes/make-mode.el (makefile):
19445 * progmodes/meta-mode.el (meta-font):
19446 * progmodes/modula2.el (modula2):
19447 * progmodes/octave-mod.el (octave):
19448 * progmodes/pascal.el (pascal):
19449 * progmodes/perl-mode.el (perl):
19450 * progmodes/prolog.el (prolog):
19451 * progmodes/ps-mode.el (PostScript-edit):
19452 * progmodes/scheme.el (scheme):
19453 * progmodes/sh-script.el (sh-script):
19454 * progmodes/simula.el (simula):
19455 * progmodes/tcl.el (tcl):
19456 * textmodes/nroff-mode.el (nroff):
19457 * textmodes/reftex-vars.el (reftex-fontification-configurations):
19458 * textmodes/sgml-mode.el (sgml):
19459 * textmodes/texinfo.el (texinfo):
19460 Add :link (custom-group-link font-lock-faces) to defgroup.
19461
19462 * hi-lock.el (hi-lock): Rename this defgroup from
19463 `hi-lock-interactive-text-highlighting'. Change parent group from
19464 `faces' to `font-lock'. Add link to the manual.
19465 (hi-lock-mode, hi-lock-file-patterns-range)
19466 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
19467 `hi-lock-interactive-text-highlighting' to `hi-lock'.
19468 (hi-lock-faces): Add :group `faces'.
19469
19470 * cus-edit.el (custom-variable-prompt): Clarify the code.
19471
19472 * faces.el (face-read-string): Set the default value arg of
19473 completing-read.
19474
19475 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
19476
19477 * rfn-eshadow.el (file-name-shadow-properties)
19478 (file-name-shadow-tty-properties, file-name-shadow-mode):
19479 Remove autoloads, because the file is now preloaded.
19480
19481 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
19482
19483 * printing.el (easy-menu-intern): Don't define.
19484 (pr-get-symbol): Use easy-menu-intern only if defined.
19485
19486 * simple.el (blink-matching-open): Simplify a bit.
19487 (completion-setup-function): Fix the case of partial-completion-mode
19488 when the minibuffer's contents start with "-".
19489 Obey completion-base-size-function even when
19490 minibuffer-completing-file-name is non-nil.
19491
19492 2005-11-16 Richard M. Stallman <rms@gnu.org>
19493
19494 * net/eudcb-ph.el (eudc-ph-open-session):
19495 Use set-process-query-on-exit-flag.
19496
19497 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
19498
19499 * international/ucs-tables.el (ucs-set-table-for-input):
19500 Use make-local-variable, not make-variable-buffer-local.
19501
19502 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
19503 Improve warning message text.
19504
19505 * savehist.el (savehist-save-hook): Add :group.
19506
19507 * menu-bar.el (menu-bar-help-menu):
19508 Rename Find Extra Packages to External Packages.
19509
19510 * cus-edit.el (Custom-reset-standard): Verify that
19511 :custom-standard-value prop exists before calling it.
19512
19513 * apropos.el (apropos-calc-scores): Use apropos-pattern.
19514
19515 2005-11-16 Martin Rudalics <rudalics@gmx.at>
19516
19517 * wid-edit.el (color): Enclose %t in %{...%}.
19518
19519 * cus-edit.el (face): Enclose %t in %{...%}.
19520
19521 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
19522
19523 * savehist.el (savehist-mode-hook): Re-add the var.
19524 (savehist-mode): Use it.
19525
19526 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
19527
19528 * textmodes/flyspell.el: Fix commenting convention.
19529 Remove unnecessary leading * in custom docstrings.
19530 (flyspell-emacs): Remove unused var.
19531 (flyspell-delete-region-overlays): Use remove-overlays.
19532 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
19533 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
19534 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
19535 (flyspell-debug-signal-word-checked): Use with-current-buffer.
19536 (make-flyspell-overlay): Don't locally reuse a global name.
19537 (flyspell-highlight-incorrect-region)
19538 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
19539 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
19540 (flyspell-notify-misspell): Remove unused args `start' and `end'.
19541 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
19542 Wrap calls to accept-process-output inside with-local-quit since it's
19543 often called from a post-command-hook.
19544 (flyspell-correct-word, flyspell-auto-correct-word):
19545 Use ispell-send-string.
19546 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
19547
19548 * calendar/diary-lib.el (diary-list-entries): Also hide the
19549 terminating newline.
19550
19551 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
19552
19553 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
19554 window-system, to allow fonts on tty.
19555
19556 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
19557
19558 * progmodes/gud.el (gud-speedbar-item-info): New function.
19559 (gud-install-speedbar-variables): Use it to display data type
19560 of watch expression as a tooltip in speedbar.
19561
19562 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
19563
19564 * font-core.el (global-font-lock-mode): Add :version keyword,
19565 because default was changed.
19566
19567 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
19568
19569 * startup.el (command-line): Use `custom-reevaluate-setting' for
19570 `file-name-shadow-mode'.
19571
19572 * loadup.el: Preload rfn-eshadow.
19573
19574 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
19575 Add :version keyword.
19576 (file-name-shadow-properties, file-name-shadow-tty-properties)
19577 (file-name-shadow): Add :version keyword.
19578
19579 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
19580 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
19581 in the custom-group property of the symbol frames and the fringe
19582 group got no link to its parent group frames.
19583 Doc fix.
19584
19585 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
19586
19587 * progmodes/gud.el (gud-stop-subjob): New function.
19588 (gud-menu-map, gud-tool-bar-map): Use it.
19589
19590 2005-11-16 Kim F. Storm <storm@cua.dk>
19591
19592 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
19593 than kill it.
19594 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
19595 to a more useful/logical place.
19596
19597 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
19598
19599 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
19600 go buttons complementary.
19601
19602 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
19603
19604 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
19605 (rfn-eshadow-sifn-equal): New function.
19606 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
19607
19608 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
19609
19610 * viper-utils.el (viper-non-word-characters-reformed-vi):
19611 Quote `-' in string.
19612
19613 * viper.el (viper-emacs-state-mode-list): Ensure that
19614 rcirc-mode buffers come up in Emacs state.
19615
19616 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
19617 operation.
19618
19619 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
19620
19621 * term.el (term-termcap-format): Fix typos.
19622 (term-down): Fix the negative argument case.
19623
19624 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
19625
19626 * progmodes/gdb-ui.el: Remove face-alias left over from change on
19627 2005-08-15.
19628 (gdb-ann3): New command gud-go.
19629 (menu): Accomodate gdb-mi.el.
19630 (gdb-assembler-custom): Make buffer of selected window current
19631 so that set-window-point works.
19632
19633 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
19634 buttons and include new ones.
19635
19636 2005-11-16 Kim F. Storm <storm@cua.dk>
19637
19638 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
19639 (gud-menu-map): Use it.
19640
19641 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
19642
19643 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
19644 that works correctly for Custom and that does not override a user
19645 who disables it.
19646
19647 * help-mode.el (help-make-xrefs, help-xref-on-pp)
19648 (help-xref-interned, help-follow): Make hyperlinks for variables
19649 that are unbound, but have a non-nil variable-documentation property.
19650
19651 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
19652 mode hook. (It conflicted with defcustoms for some mode hooks.)
19653 Use the `variable-documentation' property to give the mode hook a
19654 docstring and expand that docstring.
19655
19656 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
19657
19658 * savehist.el (savehist-mode): Don't bother with
19659 `custom-set-minor-mode'.
19660 (savehist-coding-system): Check XEmacs version.
19661 (history-length): Declare also at run time.
19662 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
19663 Don't set the customize state.
19664 (savehist-minibuffer-hook): Special case for when
19665 minibuffer-history-variable is equal to t.
19666
19667 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
19668
19669 * files.el (write-file): Refresh VC status.
19670
19671 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
19672 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
19673 than fundamental-mode to see if the mode was set.
19674
19675 2005-11-14 Romain Francoise <romain@orebokech.com>
19676
19677 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
19678 dummy function in `eval-when-compile' to avoid compiler warning.
19679 Require `man' at compile time.
19680
19681 2005-11-14 Jay Belanger <belanger@truman.edu>
19682
19683 * calc-alg.el (calcFunc-write-out-power): Rename it to
19684 calcFunc-powerexpand.
19685 (math-write-out-power): Rename it to math-powerexpand; have it
19686 handle negative exponents.
19687 (calc-writeoutpower): Rename it to calc-powerexpand.
19688
19689 * calc-ext.el: Change calcFunc-writeoutpower and
19690 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
19691 autoloads.
19692 Add calcFunc-ldiv to autoloads.
19693
19694 * calc-arith.el (calcFunc-ldiv): New function.
19695
19696 * calc.el (calc-left-divide): New function.
19697
19698 2005-11-14 Juri Linkov <juri@jurta.org>
19699
19700 * cus-edit.el (custom-variable-prompt): Set the default value arg
19701 of completing-read.
19702
19703 * cus-dep.el (custom-make-dependencies): Reverse the list of
19704 found dependencies.
19705
19706 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
19707
19708 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
19709 Highlighting" entry, it is on by default now.
19710 (menu-bar-options-save): Do not save global-font-lock-mode.
19711
19712 2005-11-13 Richard M. Stallman <rms@gnu.org>
19713
19714 * textmodes/flyspell.el (flyspell-large-region):
19715 Call flyspell-accept-buffer-local-defs.
19716
19717 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
19718
19719 * textmodes/flyspell.el (flyspell-notify-misspell):
19720 Fix misspelling of "Misspelling".
19721 (flyspell-process-localwords): New function.
19722 (flyspell-large-region): Call flyspell-process-localwords and
19723 flyspell-delete-region-overlays.
19724 (flyspell-delete-region-overlays): New function.
19725 (flyspell-delete-all-overlays): Call that.
19726
19727 2005-11-13 Richard M. Stallman <rms@gnu.org>
19728
19729 * help.el (help-for-help-internal): Improve doc of C-h a.
19730 (describe-key): Improve prompt; doc fix.
19731
19732 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
19733
19734 * vc-svn.el (vc-svn-registered): Catch all errors.
19735
19736 * cus-dep.el (custom-make-dependencies): Typo.
19737
19738 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
19739
19740 * net/tramp-util.el (top): Fix compilation warning.
19741
19742 2005-11-13 Kim F. Storm <storm@cua.dk>
19743
19744 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
19745
19746 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
19747
19748 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
19749 (gud-speedbar-buttons): Match on "const char *" too.
19750
19751 * progmodes/gdb-ui.el (gdb-var-create-handler)
19752 (gdb-var-list-children-handler): Match on "const char *" too.
19753 (gdb-var-evaluate-expression-handler): Match on empty string.
19754 (gdb-var-update-handler): Only call
19755 gdb-var-evaluate-expression-handler when required.
19756
19757 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
19758
19759 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
19760 selected window. This still doesn't work for speedbar.
19761 (gud-speedbar-buttons): Handle string expressions properly.
19762
19763 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
19764 (gdb-var-create-handler): Handle string expressions properly.
19765 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
19766 Handle string expressions properly. Move "type" field into regexp.
19767
19768 2005-11-12 Karl Fogel <kfogel@red-bean.com>
19769
19770 * bookmark.el (bookmark-maybe-message): New function to reduce
19771 code duplication: invokes `message' iff baud-rate is high enough.
19772 (bookmark-write-file): Use above instead of an inline conditional.
19773 (bookmark-load): Same.
19774
19775 2005-11-12 Karl Fogel <kfogel@red-bean.com>
19776
19777 * bookmark.el (bookmark-write-file): Don't visit the destination
19778 file, just write the data to it using write-region. This is
19779 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
19780 change to avoid visiting the file in the first place.
19781
19782 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
19783
19784 * hi-lock.el (hi-lock-mode): Set the default value of
19785 font-lock-defaults.
19786
19787 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
19788
19789 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
19790 arg to `file-attributes'.
19791 (find-lisp-format): The UID and GID can now be strings.
19792
19793 2005-11-12 Kim F. Storm <storm@cua.dk>
19794
19795 * help.el (help-map): Bind C-h d to apropos-documentation.
19796
19797 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
19798 when point is at end-of-buffer.
19799
19800 * apropos.el (apropos-match-face): Doc fix.
19801 (apropos-sort-by-scores): Add new choice `verbose'.
19802 (apropos-documentation-sort-by-scores): New defcustom.
19803 (apropos-pattern): Now contains the pattern entered by the user.
19804 (apropos-pattern-quoted): New defvar.
19805 (apropos-regexp): New defvar, containing the regexp corresponding
19806 to apropos-pattern.
19807 (apropos-all-words-regexp): Rename from apropos-all-regexp.
19808 (apropos-read-pattern): New defun. Use it to read pattern arg in
19809 interactive calls; returns list of words for a word list, and
19810 string for a regexp.
19811 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
19812 parses a list of words or regexp as returned by apropos-read-pattern.
19813 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
19814 (apropos-score-doc): Return a very high score if the string
19815 entered by the user matches literally.
19816 (apropos-variable): Doc fix. Use apropos-read-pattern.
19817 (apropos-command): Doc fix. Use apropos-read-pattern and
19818 apropos-parse-pattern. Call apropos-print with nosubst=t.
19819 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
19820 apropos-parse-pattern.
19821 (apropos-documentation): Doc fix. Use apropos-read-pattern and
19822 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
19823 apropos-documentation-sort-by-scores. Call apropos-print with
19824 nosubst=t.
19825 (apropos-documentation-internal): Pass doc string through
19826 substitute-key-definition before adding text properties.
19827 Highlight substring matching literal user input if possible.
19828 (apropos-documentation-check-doc-file): Remove locals beg and end.
19829 Fix calculation of score (as added twice). Pass doc string through
19830 substitute-key-definition before adding text properties.
19831 (apropos-documentation-check-elc-file): Pass doc string through
19832 substitute-key-definition before adding text properties.
19833 Highlight substring matching literal user input if possible.
19834 (apropos-print): Add new arg NOSUBST; if set, command and variable
19835 doc strings have already been passed through substitute-key-definition.
19836 Add code to handle apropos-accumulator items without score element
19837 for backwards compatibility (e.g. with woman package).
19838 Only show scores if apropos-sort-by-scores is `verbose'.
19839
19840 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
19841
19842 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
19843 Add jka-compr-load-suffixes to load-suffixes.
19844
19845 * jka-compr.el: Require jka-cmpr-hook.
19846 (jka-compr-info-compress-message, jka-compr-info-compress-program)
19847 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
19848 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
19849 (jka-compr-info-can-append, jka-compr-info-strip-extension)
19850 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
19851 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
19852 (jka-compr-uninstall): Remove entries from
19853 jka-compr-added-to-file-coding-system-alist after they are used.
19854 (jka-compr-error): Remove unused var `curbuf'.
19855 (jka-compr-file-local-copy): Remove unused var `notfound'.
19856
19857 2005-11-10 Romain Francoise <romain@orebokech.com>
19858
19859 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
19860
19861 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
19862
19863 * progmodes/gud.el (gud-menu-map): Move parentheses.
19864 (gdb): New command gud-pv.
19865
19866 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
19867
19868 * tar-mode.el: Remove spurious or unnecessary leading stars
19869 in docstrings.
19870 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
19871 (tar-parse-octal-integer-safe): Use mapc.
19872 (tar-header-block-summarize): Remove unused var `ck'.
19873 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
19874 cleared before. Obey default-enable-multibyte-characters.
19875 Use mapconcat. Simplify setting of tar-header-offset.
19876 (tar-mode-map): Move initialization inside delcaration.
19877 (tar-flag-deleted): Use `abs'.
19878 (tar-expunge-internal): Remove unused var `line'.
19879 (tar-expunge-internal): Don't hardcode point-min==1.
19880 (tar-expunge): Widen while doing set-buffer-multibyte.
19881 (tar-rename-entry): Use file-name-coding-system.
19882 (tar-alter-one-field): Don't hardcode point-min==1.
19883 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
19884 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
19885
19886 2005-11-10 Masatake YAMATO <jet@gyve.org>
19887
19888 * add-log.el (add-log-current-defun): Handle class::method
19889 notation of c++. Fix incorrect comment.
19890
19891 2005-11-10 Alan Mackenzie <acm@muc.de>
19892
19893 * help-fns.el (describe-variable): Make C-h v work when a variable
19894 has variable documentation yet is unbound.
19895
19896 2005-11-10 Masatake YAMATO <jet@gyve.org>
19897
19898 * man.el (Man-highlight-references): Set an empty
19899 string to `Man-arguments' if it is nil.
19900 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
19901
19902 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
19903
19904 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
19905 commenting conventions.
19906
19907 * cus-dep.el (custom-make-dependencies): Simplify.
19908 Better follow the commenting conventions.
19909
19910 2005-11-09 Richard M. Stallman <rms@gnu.org>
19911
19912 * apropos.el (apropos-pattern): Rename from apropos-regexp.
19913 (apropos-orig-pattern): Rename from apropos-orig-regexp.
19914 All uses changed.
19915 (apropos-rewrite-regexp): Doc fix.
19916 (apropos-variable, apropos-command, apropos, apropos-value):
19917 Change prompt; carry through the argument renaming.
19918
19919 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
19920
19921 * find-lisp.el: Require dired.
19922 (find-lisp-find-dired-internal): Do not call
19923 `abbreviate-file-name' on DIR.
19924
19925 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
19926
19927 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
19928
19929 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
19930
19931 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
19932 when using the speedbar.
19933 (gdb): New command gud-pp.
19934 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
19935
19936 2005-11-09 Juri Linkov <juri@jurta.org>
19937
19938 * replace.el (occur-excluded-properties): New defcustom.
19939 (occur-1, occur-engine, occur-accumulate-lines): Use it.
19940
19941 2005-11-08 Jay Belanger <belanger@truman.edu>
19942
19943 * calc/calc-units.el (math-convert-units): Replace any composite
19944 unit by its definition.
19945
19946 2005-11-08 Lars Hansen <larsh@soem.dk>
19947
19948 * emacs-lisp/autoload.el (update-directory-autoloads):
19949 Add obsolete function alias.
19950
19951 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
19952
19953 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
19954 comment-indent-function.
19955 (lisp-comment-indent): Replace by an alias for comment-indent-default.
19956
19957 * reveal.el (reveal-post-command): Rework the handling of
19958 reveal-open-spots, so as to be more reliable. There were several
19959 tricky corner cases where an open spot might be lost, or where
19960 a closed spot might end up on the list of open spots.
19961 Only reveal text that's ellipsised.
19962
19963 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
19964
19965 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
19966
19967 2005-11-07 John Paul Wallington <jpw@gnu.org>
19968
19969 * ibuffer.el (ibuffer): Search iconified frames too when
19970 getting Ibuffer buffer's window.
19971
19972 2005-11-06 Richard M. Stallman <rms@gnu.org>
19973
19974 * progmodes/compile.el (compilation-internal-error-properties):
19975 save-excursion around the computation of MARKER.
19976
19977 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
19978
19979 * textmodes/flyspell.el (flyspell-external-point-words):
19980 flyspell-get-word returns a list, not just a string.
19981
19982 2005-11-06 John Paul Wallington <jpw@pobox.com>
19983
19984 * ibuffer.el (ibuffer): Search all visible frames when getting
19985 Ibuffer buffer's window.
19986
19987 2005-11-07 Masatake YAMATO <jet@gyve.org>
19988
19989 * man.el (Man-reference-regexp): Accept spaces between
19990 `Man-name-regexp' and `Man-section-regexp'.
19991 (Man-apropos-regexp): New variable.
19992 (Man-abstract-xref-man-page): Use value for `Man-target-string'
19993 if available.
19994 (Man-highlight-references, Man-highlight-references0):
19995 Handle the case when `Man-arguments' includes "-k".
19996 (Man-highlight-references0): Rename the argument `TARGET-POS' to
19997 `TARGET'. `TARGET' can be a number, function or nil.
19998
19999 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
20000
20001 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
20002 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
20003 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
20004 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
20005 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
20006 (gdb-send-item): Use buffer-local-value and simplify.
20007
20008 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
20009
20010 * startup.el (command-line): Use `custom-reevaluate-setting' for
20011 `global-font-lock-mode'.
20012
20013 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
20014 by default, except in batch mode or when the -D option is given.
20015
20016 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
20017 specified keyword args on to `define-minor-mode'. Update docstring.
20018
20019 2005-11-05 Romain Francoise <romain@orebokech.com>
20020
20021 * replace.el (occur-engine): Add marker at end of line, too.
20022
20023 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
20024
20025 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
20026 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
20027 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
20028 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
20029 argument to all these routines, so the passphrase can be managed
20030 externally and passed in to the system.
20031 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
20032 pgg-add-passphrase-to-cache function.
20033
20034 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
20035 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
20036 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
20037 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
20038 argument to all these routines, so the passphrase can be managed
20039 externally and passed in to the system.
20040 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
20041 function.
20042
20043 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
20044
20045 * font-lock.el: Don't deal with font-lock-face-attributes here,
20046 move the code ...
20047
20048 * startup.el (command-line): ... here. Use face-spec-set instead
20049 of custom-declare-face.
20050
20051 * faces.el (face-spec-set): Reset the face if spec is not nil.
20052
20053 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
20054
20055 * newcomment.el (comment-region-internal): Box more tightly in the
20056 common case where there's no TAB in the boxed text.
20057
20058 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20059
20060 * info.el (info-tool-bar-map): Use images prev-node, next-node and
20061 up-node.
20062
20063 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
20064
20065 * newsticker.el: Commentary updated. Code formatting changed.
20066 (newsticker-version): Change to "1.9".
20067 (newsticker, newsticker-feed): Doc fix.
20068 (newsticker-url-list): Doc fix. Add option "Weekly".
20069 (newsticker-retrieval-interval): Add option "Weekly".
20070 (newsticker-headline-processing): Doc fix.
20071 (newsticker-auto-mark-filter): Remove.
20072 (newsticker-auto-mark-filter-list): New.
20073 (newsticker-layout, newsticker-sort-method): Doc fix.
20074 (newsticker-hide-old-items-in-newsticker-buffer)
20075 (newsticker-heading-format, newsticker-item-format)
20076 (newsticker-desc-format): Doc fix.
20077 (newsticker-show-all-rss-elements): Remove.
20078 (newsticker-show-all-news-elements): New.
20079 (newsticker-faces, newsticker-ticker): Doc fix.
20080 (remove-from-invisibility-spec): Code formatting.
20081 (newsticker--process-ids): New.
20082 (newsticker-mode): Doc fix.
20083 (newsticker-mode): Change mode-line-format.
20084 (newsticker-start): Remove debug output.
20085 (newsticker-start-ticker): Doc fix. Add autoload cookie.
20086 (newsticker-w3m-show-inline-images): Code formatting.
20087 (newsticker-next-item): Call `force-mode-line-update'.
20088 (newsticker-previous-item): Call `force-mode-line-update'.
20089 (newsticker-next-feed): Call `force-mode-line-update'.
20090 (newsticker-previous-feed): Call `force-mode-line-update'.
20091 (newsticker-mark-all-items-at-point-as-read): Code formatting.
20092 (newsticker-show-old-items): Do not show descs.
20093 (newsticker-hide-entry): Hide too much.
20094 (newsticker-hide-entry, newsticker-show-entry)
20095 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
20096 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
20097 (newsticker-toggle-auto-narrow-to-item): Code formatting.
20098 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
20099 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
20100 (newsticker-get-news): Call `force-mode-line-update'.
20101 Collect process ids.
20102 (newsticker--sentinel): Change coding system handling.
20103 Move image retrieval to new functions newsticker--get-logo-url-*.
20104 Move feed parsing to new functions newsticker--parse-*.
20105 Update list of process ids.
20106 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
20107 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
20108 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
20109 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
20110 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
20111 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
20112 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
20113 (newsticker--decode-coding-string): Remove.
20114 (newsticker--decode-numeric-entities): Check input. Format code.
20115 (newsticker--remove-whitespace): Check input.
20116 (newsticker--do-forget-preformatted): Doc fix.
20117 (newsticker--decode-rfc822-date): Allow for missing time.
20118 (newsticker--update-process-ids): New.
20119 (newsticker--image-sentinel): Change comment.
20120 (newsticker--image-read): Change error message.
20121 (newsticker--imenu-goto): Doc fix. Show headline title.
20122 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
20123 (newsticker--buffer-do-insert-text): Clean whitespace in
20124 html-rendered headline title. Code formatting.
20125 Call `newsticker--buffer-print-extra-elements'.
20126 (newsticker--buffer-print-extra-element): Remove.
20127 (newsticker--buffer-print-extra-elements): New.
20128 (newsticker--buffer-do-print-extra-element): New.
20129 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
20130 large sizes.
20131 (newsticker--run-auto-mark-filter)
20132 (newsticker--do-run-auto-mark-filter):
20133 Use `newsticker-auto-mark-filter-list'.
20134
20135 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
20136
20137 * net/rcirc.el: Use split-string OMIT-NULLS argument.
20138 (rcirc-print): Force redisplay before running hooks. Do long
20139 buffer truncation after making new text read-only. Deal with nil
20140 text when decoding strings. If TARGET is nil, use either the
20141 currently selected buffer, if it is an rcirc buffer and of the
20142 same process or the process buffer.
20143 (rcirc-mode): Remove header-line. Recompute short buffer names.
20144 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
20145 (rcirc-short-buffer-name): Add variable.
20146 (rcirc-kill-buffer-hook): Recompute short buffer names.
20147 Remove nick from private channel.
20148 (rcirc-send-input): Send command text to current-buffer.
20149 Don't clear overlay arrow here.
20150 (rcirc-short-buffer-name): Return a short buffer name.
20151 (rcirc-update-short-buffer-names, rcirc-abbreviate)
20152 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
20153 buffer-name abbreviations.
20154 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
20155 Do not touch nick-table when killing a parted channel.
20156 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
20157 Clear arrow from current buffer if it is now hidden.
20158 (rcirc-current-buffer): Add variable.
20159 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
20160 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
20161 Remove -face from names.
20162 (rcirc-update-activity-string): Print "DND" when globally ignoring
20163 activity.
20164 (rcirc-ignore-buffer-activity-flag): Rename from
20165 rcirc-ignore-channel-activity.
20166 (rcirc-ignore-all-activity-flag): Doc fix.
20167 (rcirc-channels): Remove variable.
20168 (rcirc-kill-buffer-hook):
20169 (rcirc-get-buffer-create): Add nick to private channel.
20170 (rcirc-multiline-edit-submit): Remove tabs.
20171 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
20172 folded.
20173 (rcirc-remove-nick-channel): Bug fix.
20174 (rcirc-toggle-ignore-buffer-activity): Rename from
20175 rcirc-toggle-ignore-channel-activity.
20176 (rcirc-record-activity): Add buffers to the front of the list.
20177 (rcirc-update-activity): Remove killed buffers from list.
20178 (rcirc-process-server-response-1): Remove last argument if it is
20179 null before calling handler.
20180 (rcirc): Add "rcirc" defcustom prefix.
20181 (rcirc-prompt): Simplify default prompt.
20182 Use custom-initialize-default.
20183 (rcirc-private-chats): Remove variable.
20184 (rcirc-prompt): Change initialization.
20185 (rcirc-version): Remove function.
20186 (rcirc-id-string): Add constant.
20187 (rcirc-last-buffer): Remove variable.
20188 (rcirc-buffer-alist): Add variable.
20189 (rcirc-connect): Update variable setup.
20190 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
20191 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
20192 default.
20193 (rcirc-handler-generic): Trigger activity.
20194 (rcirc-send-message): Create the buffor of the target.
20195 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
20196 (rcirc-get-buffer): Just return nil if there is no matching buffer.
20197 (rcirc-multiline-edit-cancel): Remove function.
20198 (rcirc-set-last-buffer): Remove function.
20199 (rcirc-get-any-buffer): Add function.
20200 (rcirc-join-channels): Don't print /join text.
20201 (rcirc-toggle-ignore-channel-activity): Add and update echo area
20202 messages.
20203 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
20204 (rcirc-handler-NOTICE): Recognize CTCP responses.
20205 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
20206 constructing TOPIC string for buffers we are not JOINed.
20207 (rcirc-handler-CTCP-response): Add handler.
20208 (rcirc-multiline-edit-submit): Restore the window-configuration
20209 before adjusting point.
20210 (rcirc): Add customization group.
20211 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
20212 (rcirc-user-full-name, rcirc-startup-channels-alist)
20213 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
20214 (rcirc-ignore-all-activity-flag, rcirc-time-format)
20215 (rcirc-input-ring-size, rcirc-read-only-flag)
20216 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
20217 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
20218 Change defvar to defcustom.
20219 (rcirc-update-prompt): Add optional ALL arg, which will update
20220 prompts in all rcirc buffers. Regexp quote replacement text.
20221 (rcirc-fill-column): Accept frame-width as a value.
20222 (rcirc-set-changed): Add function.
20223 (rcirc-next-active-buffer): Write more meaningful messages.
20224 (rcirc-faces): Add customization group.
20225 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
20226 (rcirc-nick-in-message-face, rcirc-prompt-face)
20227 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
20228 (with-rcirc-process-buffer): Move before first usage.
20229 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
20230 (rcirc-debug-flag): Rename from `rcirc-log-p'.
20231 (rcirc-debug): Rename from `rcirc-log'.
20232 (rcirc-format-response-string): Do not print `-' chars for a
20233 NOTICE with no sender. Simplify output of server responses.
20234
20235 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
20236
20237 (rcirc-browse-url-map, rcirc-browse-url-at-point)
20238 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
20239 Make urls mouse and RET clickable.
20240
20241 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
20242
20243 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
20244
20245 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
20246
20247 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
20248 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
20249 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
20250 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
20251 argument to all these routines, so the passphrase can be managed
20252 externally and passed in to the system.
20253 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
20254 pgg-add-passphrase-to-cache function.
20255
20256 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
20257 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
20258 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
20259 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
20260 argument to all these routines, so the passphrase can be managed
20261 externally and passed in to the system.
20262 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
20263 function.
20264
20265 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
20266
20267 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
20268 from goto-address-url-regexp.
20269
20270 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
20271
20272 * textmodes/org.el (org-read-date, org-goto-calendar)
20273 (org-recenter-calendar, org-agenda-goto-calendar):
20274 Temporarily clear `calendar-move-hook'.
20275
20276 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
20277
20278 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
20279 merging.
20280
20281 * ediff-util.el (ediff-previous-difference): Don't skip regions that
20282 have merge clashes.
20283
20284 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20285
20286 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
20287 Undo previous change.
20288
20289 * startup.el (command-line): Use `custom-reevaluate-setting' for
20290 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
20291 tty-register-default-colors on Mac.
20292
20293 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
20294
20295 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
20296 (gdb-buffer-type): Make it automatically buffer local...
20297 (gdb-get-create-buffer): ...and set it accordingly.
20298 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
20299 actually work.
20300
20301 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
20302
20303 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
20304 not red.
20305
20306 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
20307
20308 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
20309 case GUD buffer is not visible.
20310 (gdb-goto-breakpoint): Try to force display in source buffer.
20311 (gdb-frame-gdb-buffer): Copy other similar functions.
20312 (gdb-restore-windows): Don't display source if not asked for.
20313 (gdb-assembler-buffer-name): Don't capitalise.
20314
20315 2005-11-03 Richard M. Stallman <rms@gnu.org>
20316
20317 * wid-edit.el (key-sequence): New widget type.
20318
20319 * simple.el (set-mark-command-repeat-pop): New variable.
20320 (set-mark-command): Only interpret plan C-@ after a pop as a pop
20321 if set-mark-command-repeat-pop is true.
20322
20323 * info.el (Info-fontify-node): Don't display extra "see" if there
20324 already is one here.
20325
20326 * mouse.el: Fix special handling of DEL after dragging a region:
20327 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
20328 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
20329
20330 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
20331
20332 * textmodes/ispell.el (ispell-command-loop): Change `i' description
20333 not to assume it pertains to an affix.
20334
20335 * textmodes/flyspell.el (flyspell-post-command-hook):
20336 Bind deactivate-mark to prevent deactivation.
20337
20338 2005-11-03 Lars Hansen <larsh@soem.dk>
20339
20340 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
20341 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
20342 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
20343
20344 2005-11-03 Romain Francoise <romain@orebokech.com>
20345
20346 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
20347 Update copyright years.
20348
20349 2005-11-03 Sam Steingold <sds@gnu.org>
20350
20351 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
20352 Use system-type instead of window-system because window-system is not
20353 correctly defined during loadup.
20354
20355 2005-11-02 Mark A. Hershberger <mah@everybody.org>
20356
20357 * xml.el (xml-syntax-table): Allow xml.el to compile in XEmacs.
20358 (xml-parse-tag): Join strings separated by a comment properly.
20359
20360 2005-11-02 Andreas Schwab <schwab@suse.de>
20361
20362 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
20363
20364 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
20365
20366 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
20367 (byte-optimize-pure-func): Quote the eval'd value.
20368
20369 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
20370 Rename from perl-font-lock-syntactic-face-function.
20371 Change the calling convention so it can be used as a font-lock MATCHER.
20372 Do the parse-partial-sexp loop outselves.
20373 (perl-font-lock-syntactic-keywords): Use it.
20374 (perl-mode): Don't set font-lock-syntactic-face-function any more.
20375
20376 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
20377
20378 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
20379 disassembly buffer too.
20380 (gdb-exited): Remove overlay arrows when execution has finished.
20381 (gdb-info-frames-custom, gdb-info-threads-custom)
20382 (gdb-info-registers-custom): Don't add inappropriate text
20383 properties if inferior is not active.
20384
20385 2005-11-02 Glenn Morris <rgm@gnu.org>
20386
20387 * progmodes/fortran.el (fortran-blink-match):
20388 Use `blink-matching-delay'.
20389
20390 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
20391
20392 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
20393
20394 2005-11-02 Lars Hansen <larsh@soem.dk>
20395
20396 * net/tramp.el (tramp-action-out-of-band): Handle scp message
20397 "Permission denied".
20398
20399 2005-11-01 Richard M. Stallman <rms@gnu.org>
20400
20401 * textmodes/flyspell.el (flyspell-external-point-words):
20402 Pass nil to flyspell-get-word.
20403
20404 2005-11-02 Kim F. Storm <storm@cua.dk>
20405
20406 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
20407 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
20408
20409 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
20410
20411 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
20412 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
20413 (calendar-mouse-print-dates): Add optional `event' argument.
20414 Update interactive-spec.
20415 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
20416 Use `calendar-event-to-date' instead of `event'.
20417
20418 2005-11-02 Masatake YAMATO <jet@gyve.org>
20419
20420 * progmodes/ld-script.el (ld-script-builtins):
20421 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
20422 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
20423 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
20424
20425 2005-11-01 Romain Francoise <romain@orebokech.com>
20426
20427 * vc-sccs.el: Update copyright year.
20428 * ezimage.el: Likewise.
20429
20430 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
20431
20432 * info.el (Info-fontify-node): Use `string-width' for fontifying
20433 underlined titles.
20434
20435 2005-11-01 Juri Linkov <juri@jurta.org>
20436
20437 * info.el (Info-fontify-node): Downcase node header keywords Node,
20438 Prev, Next, Up before comparison.
20439 (Info-history): Insert absolute directory name, and put invisible
20440 property on it.
20441
20442 2005-11-01 Juri Linkov <juri@jurta.org>
20443
20444 * info.el (Info-file-supports-index-cookies): New variable.
20445 (Info-find-node-2): Check makeinfo version for index cookie support.
20446 (Info-index-nodes): Search for nodes with index cookies only when
20447 Info-file-supports-index-cookies is t. Otherwise, search nodes
20448 with "Index" in the node name.
20449 (Info-index-node): Search index cookie in the current node only when
20450 Info-file-supports-index-cookies is t. Otherwise, check the word
20451 "Index" in the node name.
20452 (Info-find-emacs-command-nodes): Remove code that searches nodes
20453 with "Index" node name in the top menu.
20454
20455 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
20456
20457 * progmodes/scheme.el (scheme-mode-variables): Use the default
20458 comment-indent-function.
20459
20460 * faces.el (face-attribute): Handle the case where a face inherits from
20461 a non-existent face.
20462
20463 * simple.el (eval-expression-print-format): Use lisp-readable syntax
20464 for octal and hexa output, and merge the char into the paren.
20465 (kill-new): Use push.
20466 (copy-to-buffer): Use with-current-buffer.
20467 (completion-setup-function): Move code in loop to remove redundancy.
20468 (minibuffer-local-must-match-map): Don't add bindings that duplicate
20469 those inherited from minibuffer-local-completion-map.
20470
20471 * savehist.el (savehist-mode) <defcustom>:
20472 Use custom-set-minor-mode if available.
20473 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
20474 and emit a message if applicable.
20475
20476 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
20477
20478 * savehist.el: Sync up to version 19.
20479 (savehist-mode): New minor mode.
20480 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
20481 (savehist-length): Remove (use history-length instead).
20482 (savehist-file-modes): Rename from savehist-modes.
20483 (savehist-save-hook, savehist-loaded): New vars.
20484 (savehist-load): Use savehist-mode. Try to smooth up transition from
20485 old format to new format.
20486 (savehist-install): Allow savehist-autosave-interval to be nil.
20487 (savehist-save): Run the new hook. Be more careful to only trim the
20488 history variables.
20489 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
20490 (savehist-printable): Print into a buffer rather than char-by-char.
20491
20492 2005-11-01 John Wiegley <johnw@newartisans.com>
20493
20494 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
20495 toggle-ignore keybinding (C-a). The author said it had been
20496 disabled much earlier due to a possible incompatibility, but after
20497 many months of usage I have encountered no problems (and it is a
20498 rather useful option, especially for switching to " *temp*").
20499
20500 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
20501 support for OS/X's AddressBook, by calling out to the open source
20502 program "contacts" (installable through Fink).
20503
20504 * net/eudc.el (eudc-expand-inline): If the
20505 `eudc-multiple-match-handling-method' is set to `all', delete the
20506 query string before inserting the query result.
20507
20508 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
20509 flag, to prevent Eshell from using the system ls when
20510 `eshell-ls-insert-directory' is in used.
20511 (eshell-ls-insert-directory): Disable font-lock in directory
20512 buffer so that Eshell's own fontification is seen. This broke
20513 recently due to changes in font-lock, so this goes back to version
20514 21 behavior.
20515
20516 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
20517
20518 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
20519 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
20520 (gdb-many-windows): Doc fix.
20521
20522 2005-10-31 Romain Francoise <romain@orebokech.com>
20523
20524 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
20525
20526 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
20527
20528 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
20529 that global-font-lock-mode can be enabled by default.
20530
20531 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
20532 (font-lock-add-keywords, font-lock-remove-keywords)
20533 (font-lock-fontify-buffer): Remove autoload cookies.
20534
20535 * jit-lock.el (jit-lock-register): Likewise.
20536
20537 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
20538
20539 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
20540
20541 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
20542 intact if there is no gud-comint-buffer.
20543
20544 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
20545
20546 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
20547 old prompt comint-prompt-read-only is t and GDB commands are
20548 issued from tool bar etc.
20549
20550 2005-10-31 Masatake YAMATO <jet@gyve.org>
20551
20552 * vc.el (vc-directory-exclusion-list): Add "{arch}".
20553
20554 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
20555
20556 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
20557 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
20558
20559 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
20560
20561 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
20562 starting at beginning of line. Fontification is messed up when
20563 `open-paren-in-column-0-is-defun-start' set to t.
20564 Reported by John Paul Wallington <jpw@pobox.com>.
20565
20566 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
20567
20568 * comint.el (comint-send-input): Call `comint-update-fence' when
20569 `comint-process-echoes' and `comint-prompt-read-only' are both
20570 non-nil, to avoid leftover read-only newline.
20571
20572 2005-10-30 Richard M. Stallman <rms@gnu.org>
20573
20574 * textmodes/flyspell.el (flyspell-external-point-words):
20575 Detect when WORD can't be checked properly because
20576 flyspell-get-word finds just part of it, and move on.
20577
20578 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
20579 boundarychar for Polish.
20580 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
20581 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
20582
20583 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
20584
20585 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
20586 (gdb-registers-font-lock-keywords): Delete.
20587 (gdb-registers-mode): Don't fontify.
20588 (gdb-info-registers-custom): Use text properties instead as, in
20589 future, changed register values will use font-lock-warning-face.
20590 (gdb-local-font-lock-keywords): Rename to...
20591 (gdb-locals-font-lock-keywords): ...for consistency.
20592
20593 2005-10-30 Andre Spiegel <spiegel@gnu.org>
20594
20595 * vc.el (vc-switch-backend): Better error message if the buffer is
20596 not visiting a file under version control.
20597
20598 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
20599
20600 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
20601
20602 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
20603 ~/.emacs.d/.emacs.
20604
20605 2005-10-29 Richard M. Stallman <rms@gnu.org>
20606
20607 * replace.el (occur-mode-mouse-goto): Always go to other window.
20608 (occur-mode-goto-occurrence): Always switch in same window.
20609
20610 * simple.el (undo): Display message at end, not at start.
20611
20612 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
20613 New arg REUSE-CELL.
20614 (cancel-timer-internal): New function.
20615 (timer-event-handler): Use cancel-timer-internal,
20616 and pass the cell it returns to timer-activate...
20617
20618 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
20619 (jit-lock-deferred-fontify, jit-lock-context-fontify)
20620 (jit-lock-after-change): Test memory-full.
20621
20622 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
20623
20624 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
20625 part of the decoded armor to find the key-identifier.
20626 (pgg-gpg-lookup-key-owner): New function to return the
20627 human-readable identifier of a key owner.
20628 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
20629 key itself.
20630 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
20631 the key value) if we have a key and can match it against a secret
20632 key. Also, added a note pointing out fact that the prompt only
20633 indicates the first matching key.
20634
20635 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
20636 pgg-decrypt-region.
20637 (pgg-pending-timers): A new hash for tracking the passphrase cache
20638 timers, so that new ones supercede old ones.
20639 (pgg-add-passphrase-to-cache): Rename from
20640 `pgg-add-passphrase-cache' to reduce confusion (all callers
20641 changed). Modified to cancel old timers when new ones are added.
20642 (pgg-remove-passphrase-from-cache): Rename from
20643 `pgg-remove-passphrase-cache' to reduce confusion (all callers
20644 changed). Modified to cancel old timers when their keys are
20645 removed from the cache.
20646 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
20647 XEmacs, an indirection to delete-itimer.
20648 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
20649 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
20650 users can only check cache without risk of prompting. Correct bug in
20651 notruncate behavior.
20652 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
20653 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
20654 Add informative docstrings.
20655 (pgg-decrypt): Convey provided passphrase in subordinate call to
20656 pgg-decrypt-region.
20657
20658 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
20659 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
20660 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
20661 `passphrase' argument, so the passphrase can be managed externally
20662 and then passed in to the system.
20663
20664 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
20665 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
20666 so the passphrase cache can be used reliably with identifiers
20667 besides a pgp packet's key id.
20668
20669 * pgg-gpg.el (pgg-pgp-encrypt-region)
20670 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
20671 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
20672 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
20673 argument to all these routines, so the passphrase can be managed
20674 externally and passed in to the system.
20675
20676 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
20677 `notruncate' argument, so the passphrase cache can be used
20678 reliably with identifiers besides a pgp packet's key id.
20679
20680 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
20681
20682 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
20683 symmetric encryption.
20684 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
20685 encrypted session key.
20686 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
20687 message ask for the passphrase in a proper way.
20688
20689 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
20690 New user commands for symmetric encryption.
20691
20692 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
20693
20694 * textmodes/conf-mode.el (conf-assignment-sign)
20695 (conf-assignment-regexp): Fix docstrings.
20696 (conf-mode-initialize): New function.
20697 (conf-mode): Remove optional args. Use delay-mode-hooks to
20698 recognize recursive calls.
20699 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
20700 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
20701 (conf-xdefaults-mode): Use define-derived-mode and
20702 conf-mode-initialize.
20703
20704 2005-10-29 Romain Francoise <romain@orebokech.com>
20705
20706 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
20707
20708 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
20709
20710 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
20711 part of the decoded armor to find the key-identifier.
20712 (pgg-gpg-lookup-key-owner): New function to return the
20713 human-readable identifier of a key owner.
20714 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
20715 key itself.
20716 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
20717 the key value) if we have a key and can match it against a secret
20718 key. Also, added a note pointing out fact that the prompt only
20719 indicates the first matching key.
20720
20721 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
20722 pgg-decrypt-region.
20723 (pgg-pending-timers): A new hash for tracking the passphrase cache
20724 timers, so that new ones supercede old ones.
20725 (pgg-add-passphrase-to-cache): Rename from
20726 `pgg-add-passphrase-cache' to reduce confusion (all callers
20727 changed). Modified to cancel old timers when new ones are added.
20728 (pgg-remove-passphrase-from-cache): Rename from
20729 `pgg-remove-passphrase-cache' to reduce confusion (all callers
20730 changed). Modified to cancel old timers when their keys are
20731 removed from the cache.
20732 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
20733 XEmacs, an indirection to delete-itimer.
20734 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
20735 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
20736 users can only check cache without risk of prompting. Correct bug in
20737 notruncate behavior.
20738 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
20739 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
20740 Add informative docstrings.
20741 (pgg-decrypt): Convey provided passphrase in subordinate call to
20742 pgg-decrypt-region.
20743
20744 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
20745
20746 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
20747 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
20748 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
20749 `passphrase' argument, so the passphrase can be managed externally
20750 and then passed in to the system.
20751
20752 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
20753 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
20754 so the passphrase cache can be used reliably with identifiers
20755 besides a pgp packet's key id.
20756
20757 * pgg-gpg.el (pgg-pgp-encrypt-region)
20758 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
20759 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
20760 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
20761 argument to all these routines, so the passphrase can be managed
20762 externally and passed in to the system.
20763
20764 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
20765 `notruncate' argument, so the passphrase cache can be used
20766 reliably with identifiers besides a pgp packet's key id.
20767
20768 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
20769
20770 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
20771 symmetric encryption.
20772 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
20773 encrypted session key.
20774 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
20775 message ask for the passphrase in a proper way.
20776
20777 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
20778 New user commands for symmetric encryption.
20779
20780 2005-10-28 Bill Wohler <wohler@newt.com>
20781
20782 * help-mode.el (help-url): New button type. Calls browse-url.
20783 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
20784 Similar to Info nodes: URL `url'.
20785 (help-make-xrefs): Create help-url buttons for
20786 help-xref-url-regexp matches.
20787
20788 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
20789
20790 * tool-bar.el (tool-bar-add-item-from-menu)
20791 (tool-bar-local-item-from-menu): Fix doc strings.
20792
20793 2005-10-28 Romain Francoise <romain@orebokech.com>
20794
20795 * ldefs-boot.el: Update.
20796
20797 * subr.el (locate-library): Move from help-fns.el.
20798 * help-fns.el (locate-library): Move to subr.el.
20799
20800 2005-10-28 Richard M. Stallman <rms@gnu.org>
20801
20802 * net/tramp.el (tramp-completion-mode): defvar moved up.
20803
20804 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
20805
20806 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
20807
20808 * files.el (find-file-noselect): Use %d to format large file size.
20809
20810 * bindings.el (mode-line-format): Add %e.
20811
20812 * loadup.el ("facemenu"): Load unconditionally.
20813 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
20814 ("x-dnd"): Load, when appropriate.
20815
20816 * startup.el (command-line): Call before-init-hook earlier.
20817 Warn about some bad characters in -u user name.
20818
20819 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
20820 (flyspell-external-point-words): Error if misspelled word is not found.
20821 Set flyspell-large-region-beg at end of word.
20822
20823 2005-10-28 Andreas Schwab <schwab@suse.de>
20824
20825 * view.el (View-revert-buffer-scroll-page-forward):
20826 Use view-page-size-default.
20827
20828 2005-10-28 Juri Linkov <juri@jurta.org>
20829
20830 * international/quail.el (quail-get-current-str): Translate last
20831 raw character for deterministic input methods.
20832
20833 2005-10-27 Jay Belanger <belanger@truman.edu>
20834
20835 * calc/calc-ext.el: Add functions to autoloads.
20836 (math-identity-matrix-p, math-ident-row-p): New functions.
20837
20838 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
20839 multiplication by an identity matrix; don't turn multiplication by
20840 an inverse matrix into division.
20841 (math-div-symbol-fancy): Replace division by matrices with
20842 multiplication by inverse.
20843
20844 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
20845
20846 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
20847 (calc-writeoutpower): New functions.
20848
20849 2005-10-27 Romain Francoise <romain@orebokech.com>
20850
20851 * replace.el (occur-engine): Include colon in mouse-face highlight.
20852
20853 * dired-x.el: Change Maintainer field.
20854
20855 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
20856
20857 * longlines.el (longlines-mode): Bind after-change-functions to
20858 nil during initial decoding and final encoding.
20859
20860 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
20861
20862 * term.el (term-emulate-terminal, term-handle-colors-array)
20863 (term-handle-ansi-escape): Specify the terminfo capabilities
20864 implemented.
20865
20866 2005-10-26 Richard M. Stallman <rms@gnu.org>
20867
20868 * info.el (Info-fontify-node): Fix detection of sentence-break
20869 before *Note.
20870
20871 2005-10-26 Romain Francoise <romain@orebokech.com>
20872
20873 * smerge-mode.el: Add `tools' to file keywords.
20874
20875 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
20876
20877 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
20878 when the fringe is not available.
20879
20880 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
20881 (def-gdb-auto-update-trigger): Simplify construction.
20882 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
20883 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
20884 defined explicitly.
20885 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
20886 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
20887 defined explicitly.
20888 (gdb-info-locals-custom): Remove as it's a no-op.
20889
20890 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
20891
20892 * longlines.el (longlines-mode): Remove narrowing before
20893 performing the initial decoding or final encoding.
20894
20895 2005-10-25 Romain Francoise <romain@orebokech.com>
20896
20897 * emacs-lisp/find-func.el (find-library-name): Also strip
20898 extension if library name ends in .el, to take advantage of
20899 `find-library-suffixes'.
20900
20901 2005-10-25 Richard M. Stallman <rms@gnu.org>
20902
20903 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
20904
20905 2005-10-25 Juri Linkov <juri@jurta.org>
20906
20907 * textmodes/texinfo.el (texinfo-mode): Change charset of one
20908 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
20909
20910 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20911
20912 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
20913 (blackbox-redefine-key): Add argument `map'.
20914
20915 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
20916 regions when moving the jit-lock-context-unfontify-pos boundary.
20917
20918 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
20919
20920 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
20921
20922 2005-10-25 Masatake YAMATO <jet@gyve.org>
20923
20924 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
20925
20926 2005-10-25 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
20927
20928 * play/blackbox.el (blackbox-redefine-key): New function.
20929 (blackbox-mode-map): Use it to remap existing bindings for cursor
20930 motion instead of binding literal keys.
20931
20932 2005-10-25 Glenn Morris <rgm@gnu.org>
20933
20934 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
20935 diary does not end in a newline. Do not assume a blank line at
20936 the start of the diary file.
20937
20938 2005-10-25 Kenichi Handa <handa@m17n.org>
20939
20940 * international/quail.el (quail-translate-key): If the input
20941 method is deterministic and failed to handle the last key, restart
20942 the key handling loop from an appropriate key.
20943
20944 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
20945
20946 * vc.el (vc-dired-mode): Extend comment for binding of
20947 `directory-listing-before-filename-regexp'.
20948
20949 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20950
20951 * textmodes/texinfo.el (texinfo-mode):
20952 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
20953 not to unnecessarily expose emacs-mule's internal char codes.
20954
20955 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
20956
20957 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
20958 Display hand pointer and help-echo on disabled icon too.
20959 (gdb-mouse-until): New function.
20960 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
20961
20962 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
20963
20964 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
20965 with 2005-10-23 change to doctor.el.
20966
20967 * finder.el (finder-mode-map): Add follow-link binding.
20968
20969 2005-10-25 Kim F. Storm <storm@cua.dk>
20970
20971 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
20972 to gdb-mouse-toggle-breakpoint-fringe.
20973 (gdb-mouse-toggle-breakpoint-margin): Rename from
20974 gdb-mouse-toggle-breakpoint. Fix doc.
20975 (gdb-mouse-toggle-breakpoint-fringe): New defun.
20976 (gdb-put-string): Add optional SPROPS arg. Add props to string.
20977 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
20978 string properties also for fringe breakpoint bitmaps.
20979
20980 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
20981
20982 * textmodes/org.el (org-start-icalendar-file): Fix format form.
20983
20984 2005-10-25 Masatake YAMATO <jet@gyve.org>
20985
20986 * simple.el (completion-common-substring):
20987 Use `completion-common-substring' prior to `completion-base-size'.
20988
20989 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
20990
20991 * savehist.el: Require CL while compiling.
20992 (savehist-history-variables): Remove.
20993 (savehist-save-minibuffer-history, savehist-additional-variables)
20994 (savehist-minibuffer-history-variables): New vars.
20995 (savehist-save): Use them.
20996 (savehist-uninstall, savehist-minibuffer-hook): New funs.
20997 (savehist-install): New fun, extracted from savehist-load.
20998 (savehist-load): Use them.
20999
21000 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
21001
21002 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
21003 a dummy doc-string-elt property.
21004 (defalias, defvaralias, define-category): Add a docstring property.
21005
21006 * image.el (defimage):
21007 * widget.el (define-widget):
21008 * custom.el (defface, defcustom): Add `doc-string' declaration.
21009
21010 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
21011 (defadvice): Add `doc-string' declaration.
21012
21013 * emacs-lisp/byte-run.el (macro-declaration-function):
21014 Handle `doc-string' declarations.
21015 (define-obsolete-function-alias, define-obsolete-variable-alias):
21016 Add `doc-string' declaration.
21017
21018 2005-10-24 Kenichi Handa <handa@m17n.org>
21019
21020 * international/utf-7.el (utf-7): Add autoload cookie.
21021
21022 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
21023
21024 2005-10-24 Eli Zaretskii <eliz@gnu.org>
21025
21026 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
21027 list of directories passed to batch-update-autoloads. Add "." to
21028 the list of the echoed directories.
21029
21030 * pgg-def.el:
21031 * pgg-gpg.el:
21032 * pgg-parse.el:
21033 * pgg-pgp.el:
21034 * pgg-pgp5.el:
21035 * pgg.el: Moved here from the gnus subdirectory.
21036
21037 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
21038
21039 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
21040 in case comint-prompt-read-only is set to t.
21041
21042 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
21043 in case comint-prompt-read-only is set to t.
21044
21045 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
21046
21047 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
21048 Now a string.
21049 (icalendar-import-format): Handle CLASS, STATUS, URL.
21050 Rename `subject' to `summary'.
21051 (icalendar-import-format-summary): Rename from
21052 `icalendar-import-format-subject'.
21053 (icalendar-import-format-url, icalendar-import-format-status)
21054 (icalendar-import-format-class): New variables.
21055 (icalendar--rris): Take variable argument list.
21056 (icalendar--datestring-to-isodate): Remove unnecessary
21057 calendar-style check when converting dates with explicit month names.
21058 (icalendar-export-region): Change return type of conversion
21059 subroutines. Bury current buffer unless error occurred.
21060 (icalendar--convert-to-ical)
21061 (icalendar--parse-summary-and-rest): New functions.
21062 (icalendar--convert-ordinary-to-ical)
21063 (icalendar--convert-weekly-to-ical)
21064 (icalendar--convert-yearly-to-ical)
21065 (icalendar--convert-block-to-ical)
21066 (icalendar--convert-cyclic-to-ical)
21067 (icalendar--convert-anniversary-to-ical): Change return type.
21068 Strip trailing blanks from subject.
21069 (icalendar--convert-sexp-to-ical): Change return type.
21070 Strip trailing blanks from subject. Handle simple sexp
21071 entries as generated by icalendar.el.
21072 (icalendar--convert-float-to-ical)
21073 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
21074 (icalendar-import-file): Doc fix.
21075 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
21076 Correct call to icalendar--rris.
21077 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
21078 `summary'.
21079 (icalendar--add-diary-entry): Rename `subject' to `summary'.
21080
21081 2005-10-24 Romain Francoise <romain@orebokech.com>
21082
21083 * server.el (server-sentinel): Set query-on-exit flag to nil on
21084 new client processes (it isn't inherited from the server process).
21085
21086 * replace.el (occur-engine): Rearrange text properties.
21087
21088 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
21089
21090 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
21091 case-fold-search is nil.
21092 (debug-help-follow): Use help-xref-interned directly.
21093
21094 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
21095
21096 * thumbs.el (thumbs-image-type): Add .pbm.
21097
21098 2005-10-23 Richard M. Stallman <rms@gnu.org>
21099
21100 * faces.el (inhibit-face-set-after-frame-default): New variable.
21101 (set-face-attribute): Bind it.
21102 (face-set-after-frame-default): Test it.
21103
21104 * help-fns.el (describe-simplify-lib-file-name): New function.
21105 (describe-function-1, describe-variable): Use it.
21106
21107 * faces.el (describe-face): Use describe-simplify-lib-file-name.
21108
21109 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
21110 Eliminate nil as possible value.
21111 (tooltip-hide-delay): Reduce internal-border-width.
21112
21113 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
21114 (menu-bar-file-menu) <new-file>: Likewise.
21115
21116 * simple.el (line-move-finish): Ignore fields computing LINE-END.
21117
21118 * international/mule.el (load-with-code-conversion):
21119 Pass full file name to `eval-buffer' unless preloading.
21120
21121 * textmodes/flyspell.el (flyspell-large-region):
21122 Call ispell-check-version.
21123
21124 * textmodes/ispell.el (ispell-local-dictionary-overridden):
21125 Fix the make-variable-buffer-local call that was supposed
21126 to be for this variable.
21127 (ispell-aspell-supports-utf8): Doc fix.
21128 (ispell-find-aspell-dictionaries): Preserve elements of
21129 ispell-dictionary-alist for dictionaries that aspell doesn't report.
21130 (ispell-aspell-find-dictionary): Return nil on error.
21131
21132 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
21133 (doctor-symptoms): Likewise.
21134
21135 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
21136
21137 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
21138
21139 * cus-edit.el (custom-button, custom-button-pressed): New vars.
21140 (custom-raised-buttons): Add :set spec.
21141 (custom-button-unraised, custom-button-pressed-unraised):
21142 New faces, so that custom-raised-buttons actually does something.
21143 (custom-mode): Use custom-button and custom-button-pressed.
21144
21145 * wid-edit.el (widget-specify-button): Don't ignore
21146 widget-mouse-face on graphic terminals.
21147 (widget-move-and-invoke): Cleanup.
21148
21149 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
21150
21151 * whitespace.el (whitespace-cleanup): Doc fix.
21152
21153 2005-10-23 Romain Francoise <romain@orebokech.com>
21154
21155 * emulation/viper.el (viper-set-hooks): Quote forms passed to
21156 `eval-after-load' to avoid evaluating their result.
21157
21158 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
21159
21160 * files.el (directory-listing-before-filename-regexp):
21161 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
21162
21163 * dired.el (dired-move-to-filename-regexp): Remove.
21164 All occurrences replaced by `directory-listing-before-filename-regexp'.
21165
21166 * dired-x.el, locate.el, vc.el:
21167 Replace `dired-move-to-filename-regexp' by
21168 `directory-listing-before-filename-regexp'. In vc.el it is
21169 overwritten locally; maybe this can be handled in files.el too.
21170
21171 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurrences
21172 replaced by `directory-listing-before-filename-regexp'.
21173
21174 2005-10-23 Andreas Schwab <schwab@suse.de>
21175
21176 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
21177 and eval-next-after-load.
21178
21179 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
21180
21181 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
21182 exist, create it.
21183
21184 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
21185
21186 * allout.el: Remove autoloads for mailcrypt and crypt++.
21187 Require pgg, pgg-gpg during compilation.
21188 (allout-version): Increment version number to 2.1, and use a literal
21189 rather than RCS Id.
21190 (allout-default-encryption-scheme): Remove.
21191 (allout-passphrase-verifier-handling)
21192 (allout-passphrase-verifier-string)
21193 (allout-file-passphrase-verifier-string)
21194 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
21195 (allout-passphrase-hint-handling): Rename and simplify.
21196 (allout-init): Use `find-file-hook' if available, otherwise
21197 `find-file-hooks'.
21198 (allout-mode): Use `write-file-functions' if available, otherwise
21199 `local-write-file-hooks' and, instead of making auto-save-hook
21200 buffer local, make the write-file-hook activity contingent to
21201 allout-mode.
21202 (allout-mode): Use key-binding substitution in the docstring.
21203 (allout-kill-line): Spell-out kill ring data structure mutation
21204 instead of using byte-compiler-complaint-provoking `pop'.
21205 (allout-insert-listified): Use `insert' rather than `insert-string'
21206 (allout-toggle-current-subtree-encryption): Update docstring, adjust
21207 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
21208 (allout-encrypt-string): Totally revamped vis new underlying
21209 encryption facilities.
21210 (allout-mc-activate-passwd): Remove.
21211 (allout-obtain-passphrase): New, more or less replaces
21212 allout-mc-activate-passwd.
21213 (allout-encrypted-key-info): More or less replaces
21214 allout-encrypted-text-type.
21215 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
21216 (my-mark-marker): Use `(featurep 'xemacs)'.
21217
21218 2005-10-23 Lars Hansen <larsh@soem.dk>
21219
21220 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
21221 (byte-compile-file-form-defmumble, byte-compile-defun)
21222 (byte-compile-defmacro): Use it.
21223 (byte-compile-form): Don't call byte-compile-set-symbol-position
21224 when a byte-compile handler is called.
21225
21226 2005-10-22 Romain Francoise <romain@orebokech.com>
21227
21228 * savehist.el (savehist-history-variables): Add `grep-find-history'.
21229
21230 * subr.el (eval-after-load): Convert library name to an absolute
21231 file name using locate-library, since load-history no longer has
21232 library names in it.
21233
21234 2005-10-22 Richard M. Stallman <rms@gnu.org>
21235
21236 * files.el (make-temp-file): Move from subr.el.
21237 * subr.el (make-temp-file): Move to files.el.
21238
21239 * window.el (get-buffer-window-list): Move from subr.el.
21240 * subr.el (get-buffer-window-list): Move to window.el.
21241
21242 * image.el (image-load-path): Use eval-at-startup to initialize.
21243
21244 * subr.el (eval-at-startup): New macro.
21245
21246 * subr.el: Much rearrangement of functions and division
21247 into pages. No code changes.
21248
21249 2005-10-22 Kenichi Handa <handa@m17n.org>
21250
21251 * tar-mode.el (tar-extract): Be sure to call
21252 find-operation-coding-system if set-auto-coding doesn't find a
21253 coding system.
21254
21255 2005-10-22 Kim F. Storm <storm@cua.dk>
21256
21257 * image.el (image-type-header-regexps): Rename from image-type-regexps.
21258 Change users.
21259 (image-type-file-name-regexps): New defconst.
21260 (image-type-from-data): Simplify loop.
21261 (image-type-from-buffer): New defun.
21262 (image-type-from-file-header): Use it instead of image-type-from-data.
21263 Use image-search-load-path instead of only looking in data-directory.
21264 (image-type-from-file-name): New defun.
21265 (image-search-load-path): Change `pathname' to `filename'.
21266 Make PATH arg optional, default to image-load-path.
21267
21268 2005-10-21 Richard M. Stallman <rms@gnu.org>
21269
21270 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
21271
21272 * textmodes/paragraphs.el (sentence-end-base): New variable.
21273 (sentence-end): Use sentence-end-base.
21274
21275 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
21276
21277 * font-lock.el (font-lock-default-fontify-region): Check the multiline
21278 property independently from the font-lock-multiline variable.
21279
21280 2005-10-21 Richard M. Stallman <rms@gnu.org>
21281
21282 * emacs-lisp/find-func.el (find-library-name): Doc fix.
21283
21284 * startup.el (command-line): Convert library names
21285 in `load-history' to absolute file names.
21286
21287 * subr.el (symbol-file): Doc fix.
21288
21289 * loadhist.el (file-loadhist-lookup): Call locate-library
21290 instead of find-library-name. Don't try converting
21291 abs file names to library names, since load-history no longer
21292 has library names in it.
21293 (file-dependents, file-provides, file-requires): Doc fixes.
21294
21295 2005-10-21 Juri Linkov <juri@jurta.org>
21296
21297 * progmodes/etags.el (tags-table-mode): New function.
21298 (tags-verify-table): Replace initialize-new-tags-table with
21299 tags-table-mode.
21300
21301 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
21302 default value.
21303 (desktop-modes-not-to-save): Add tags-table-mode to the
21304 default value.
21305
21306 * info.el (Info-index-next): Add total number of index
21307 alternatives to the message.
21308
21309 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
21310 backward only space (instead of space and period) before looking
21311 at sentence end.
21312
21313 * simple.el (set-variable): Use user-variable-p instead of symbolp.
21314 Add the old variable value as 4th default-value arg of read-string.
21315
21316 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21317
21318 * cus-face.el (custom-declare-face): Make face from X resources
21319 also on Mac.
21320
21321 * disp-table.el (standard-display-g1, standard-display-graphic):
21322 Refuse to use string glyphs also on Mac.
21323 (standard-display-european): Don't set terminal coding system also
21324 on Mac.
21325
21326 * frame.el (display-screens): Use x-display-screens also on Mac.
21327
21328 2005-10-21 Romain Francoise <romain@orebokech.com>
21329
21330 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
21331
21332 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
21333
21334 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
21335 and $? into sexps.
21336
21337 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
21338 warning face on open-paren-in-column-0.
21339
21340 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
21341 boundary case. Fix typo.
21342 Suggested by Martin Rudalics <rudalics@gmx.at>.
21343
21344 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
21345
21346 * textmodes/org.el (org-combined-agenda-icalendar-file)
21347 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
21348 (org-export-icalendar-this-file)
21349 (org-export-icalendar-all-agenda-files)
21350 (org-export-icalendar-combine-agenda-files): New commands.
21351 (org-export-icalendar, org-print-icalendar-entries)
21352 (org-start-icalendar-file, org-finish-icalendar-file)
21353 (org-ical-ts-to-string): New functions.
21354 (org-read-date, org-goto-calendar)
21355 (org-agenda-goto-calendar): Inhibit displaying diary entries by
21356 call to `calendar'.
21357 (orgtbl-setup): Remove the :keys arguments from the menu description.
21358 (org-after-save-iCalendar-file-hook): New variable.
21359
21360 2005-10-21 Kenichi Handa <handa@m17n.org>
21361
21362 * language/vietnamese.el (tcvn-5712): Make it an alias of
21363 vietnamese-tcvn coding-system.
21364
21365 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
21366
21367 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
21368 group id is given.
21369
21370 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
21371
21372 * progmodes/sh-script.el (sh-escaped-line-re): New var.
21373 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
21374 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
21375 whose line is either continued or ends with a comment.
21376
21377 2005-10-20 Romain Francoise <romain@orebokech.com>
21378
21379 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
21380
21381 * replace.el (occur-engine): Add follow-link property.
21382
21383 * font-core.el (font-lock-mode): Doc fix.
21384
21385 2005-10-20 Richard M. Stallman <rms@gnu.org>
21386
21387 * net/rcirc.el: New file.
21388
21389 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
21390
21391 * term.el (term-term-name): Initialize to "eterm-color".
21392
21393 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
21394
21395 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
21396 for encryption functionality.
21397 Move allout customization subgroup from `editing' to `outlines' group.
21398 Fix commentary keywords to legitimate ones.
21399 Update author info (using my current email address, obscurified).
21400 (allout-encrypt-string, allout-encryption-produce-work-buffer)
21401 (allout-encrypted-topic-p, allout-encrypted-text-type)
21402 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
21403 (allout-situate-encryption-key-verifier)
21404 (allout-get-encryption-key-verifier, allout-verify-key)
21405 (allout-next-topic-pending-encryption)
21406 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
21407 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
21408 (outline-key-verifier-handling, outline-key-hint-handling)
21409 (outline-encrypt-unencrypted-on-saves): New defcustoms.
21410 (allout-file-key-verifier-string, allout-encryption-scheme)
21411 (allout-key-verifier-string, allout-key-hint-string)
21412 (allout-after-save-decrypt): New variables.
21413 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
21414 (allout-after-saves-handler): New hook functions.
21415 (allout-post-command-business): Do allout-after-save-decrypt.
21416 (allout-enable-file-variable-adjustment): Custom var to enable
21417 mechanism for adding and adjusting settings of Emacs file variables.
21418 (allout-adjust-file-variable, allout-file-vars-section-data):
21419 New functions, implement the mechanism.
21420 (outlineify-sticky): Use the file vars mechanism.
21421 (allout-inhibit-protection, allout-during-write-cue)
21422 (allout-override-protect, allout-before-change-protect): Remove.
21423 (allout-flag-region, allout-open-topic): Adjust read-only text.
21424 (allout-open-line-not-read-only): Add to facilitate read-only
21425 text based protection.
21426 (allout-kill-line): Revise to adjust read-only text, clue the
21427 user about the inhibition.
21428 (allout-unprotected): Use unwind-protect.
21429 (allout-shift-in, allout-shift-out): Disallow manually shifting a
21430 topic deeper than the offspring depth of the previous topic -
21431 avoiding confusing "containment discontinuities".
21432 (allout-reindent-bodies): Fix retention of body relative hanging
21433 indent during promotion of collapsed bodies.
21434 (allout-open-topic): Make it easy to open new topic with same
21435 bullet as current topic - topic creation functions provided with
21436 any universal argument provokes now prompt for bullet, defaulting
21437 to the bullet of the previous topic.
21438 (allout-plain-bullets-string, allout-distinctive-bullets-string):
21439 Plain bullet alternates `.' period and `,' comma only. All other
21440 bullets are relegated to special status (but customizable).
21441 (allout-end-of-entry): Rename from allout-end-of-current-entry
21442 since it actually operates w.r.t. most immediately containing
21443 entry, visible or not.
21444 (allout-hide-current-entry, allout-show-current-entry): Use the
21445 revised version.
21446 (allout-old-expose-topic): Solidify deprecation.
21447 (allout-end-of-subtree): Add so we can span concealed as well
21448 as visible topics.
21449 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
21450 (allout-end-of-current-heading): Tweak to just respect the first line.
21451 (allout-get-body-text): Add.
21452 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
21453 when invoked interactively.
21454 (allout-up-current-level): Use `interactive-p'.
21455 (allout-mode, allout-init): Miscellaneous docstring and
21456 operational refinements, as well as hookups of new encryption stuff.
21457 (allout-beginning-of-current-entry): Now works as advertised.
21458 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
21459 (allout-isearch-rectification): Refine condition for isearching.
21460 (allout-isearch-abort, allout-enwrap-isearch)
21461 (allout-flag-region, my-region-active-p): Relocate some macros.
21462 (allout-title): Fallback title is (buffer-name), not
21463 non-existing (current-buffer-name).
21464 (subst-char-in-string): Define if absent (for some XEmacs versions).
21465
21466 2005-10-20 Jari Aalto <jari.aalto@cante.net>
21467
21468 * mail/sendmail.el (mail-setup-hook, mail-aliases)
21469 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
21470 (mail-citation-prefix-regexp, mail-signature-file)
21471 (mail-default-headers, mail-bury-selects-summary)
21472 (mail-send-nonascii): Add autoload cookies.
21473
21474 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
21475
21476 * frame.el (blink-cursor-mode): Add `mac' to the list of
21477 window-system's that support blinking cursor.
21478
21479 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
21480
21481 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
21482
21483 2005-10-20 Eli Zaretskii <eliz@gnu.org>
21484
21485 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
21486 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
21487 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
21488
21489 2005-10-20 Kim F. Storm <storm@cua.dk>
21490
21491 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
21492 (ido-set-current-directory): Don't add / after final @.
21493 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
21494 Explicitly handle ange-ftp completion oddities.
21495 (ido-make-file-list): Don't rotate list at tramp root to avoid
21496 triggering tramp file handler for expand-file-name via get-file-buffer.
21497
21498 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
21499
21500 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
21501
21502 2005-10-19 Jay Belanger <belanger@truman.edu>
21503
21504 * calc/calc-units.el (math-standard-units): Add units, adjust
21505 symbols and update values.
21506 (math-unit-prefixes): Add more prefixes.
21507
21508 2005-10-19 Romain Francoise <romain@orebokech.com>
21509
21510 * bookmark.el (bookmark-menu-heading): New face.
21511 (bookmark-bmenu-list): Use it.
21512 Don't fiddle with `baud-rate' at top-level.
21513
21514 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
21515
21516 * image.el (create-image, find-image): Mention max-image-size in
21517 docstring.
21518
21519 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
21520
21521 * savehist.el (savehist-load): Revert to checking XEmacs.
21522
21523 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
21524 Various docstring and line-width fixups.
21525 (conf-mode): Use cond.
21526 Set font-lock-defaults. Don't set comment-use-syntax.
21527
21528 2005-10-18 David Ponce <david@dponce.com>
21529
21530 * tree-widget.el (tree-widget-button-click): New function.
21531 (tree-widget-button-keymap): Use it.
21532
21533 2005-10-18 Romain Francoise <romain@orebokech.com>
21534
21535 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
21536 (bookmark-bmenu-hide-filenames): Add follow-link property.
21537 Improve help-echo text.
21538
21539 * ffap.el (find-file-at-point): Doc fix.
21540
21541 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21542
21543 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
21544
21545 2005-10-18 Masatake YAMATO <jet@gyve.org>
21546
21547 Install to the CVS repository what I forgot to install in my
21548 2005-10-16 changes.
21549
21550 * progmodes/python.el (python-complete-symbol): Pass the common
21551 prefix substring of completion to `display-completion-list'.
21552
21553 * textmodes/org.el (org-complete): Ditto.
21554
21555 2005-10-18 Masatake YAMATO <jet@gyve.org>
21556
21557 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
21558
21559 * woman.el (WoMan-xref-man-page): New button type derived
21560 from `Man-abstract-xref-man-page'.
21561 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
21562
21563 * man.el (Man-abstract-xref-man-page): New button type.
21564 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
21565 (Man-highlight-references): Add new optional argument `xref-man-type'.
21566
21567 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
21568
21569 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
21570
21571 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
21572
21573 * cus-edit.el (Custom-move-and-invoke): Delete.
21574 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
21575
21576 * wid-edit.el (widget-move-and-invoke): New function, from
21577 Custom-move-and-invoke.
21578
21579 2005-10-17 Bill Wohler <wohler@newt.com>
21580
21581 Move all remaining images from lisp/toolbar to etc/images, move
21582 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
21583 the low resolution images in their own directory (low-color).
21584
21585 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
21586 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
21587 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
21588 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
21589 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
21590 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
21591 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
21592
21593 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
21594 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
21595 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
21596 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
21597 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
21598 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
21599 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
21600 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
21601 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
21602 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
21603 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
21604 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
21605 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
21606 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
21607 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
21608
21609 To conform with convention, replace the underscore (_) in the
21610 following image names with dash (-) or (/) as appropriate.
21611
21612 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
21613 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
21614 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
21615 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
21616 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
21617 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
21618 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
21619 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
21620 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
21621 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
21622 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
21623 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
21624 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
21625 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
21626 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
21627
21628 * info.el (info-tool-bar-map): Replace underscores in image names
21629 with dashes.
21630
21631 * makefile.w32-in (WINS): Remove toolbar.
21632
21633 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
21634
21635 * tool-bar.el: Move to lisp from toolbar. Now that
21636 toolbar is empty, it should be deleted when folks run "cvs up -P".
21637
21638 2005-10-18 Jay Belanger <belanger@truman.edu>
21639
21640 * calc/calc-store.el (calc-store-into): Get the proper variable name
21641 to display in message.
21642
21643 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
21644
21645 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
21646 expressions display in speedbar for all buffers when debugging.
21647 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
21648
21649 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
21650 (speedbar-insert-button, speedbar-make-button):
21651 Use add-text-properties.
21652 (speedbar-update-localized-contents)
21653 (speedbar-update-directory-contents)
21654 (speedbar-update-special-contents): Use dolist.
21655 (speedbar-buffer-easymenu-definition): Add a menu separator.
21656
21657 2005-10-17 Jason Rumney <jasonr@gnu.org>
21658
21659 * makefile.w32-in: Use $(lisp) consistently.
21660 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
21661 for shell specific generation of mh-autoloads.
21662
21663 2005-10-17 Richard M. Stallman <rms@gnu.org>
21664
21665 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
21666
21667 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21668
21669 * jit-lock.el (jit-lock-fontify-now):
21670 Move jit-lock-context-unfontify-pos to avoid wasted work.
21671
21672 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
21673
21674 * net/tramp.el (tramp-completion-mode): New defvar. Used in
21675 `tramp-completion-mode' for checking if we are in completion mode.
21676 (tramp-completion-handle-file-name-all-completions): Reorder code
21677 in order to complete for file names only in case there are no
21678 method/user/host completions. This is necessary for cooperation
21679 with ido. Reported by Kim F. Storm <storm@cua.dk>.
21680
21681 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
21682
21683 * longlines.el (longlines-search-forward)
21684 (longlines-search-backward): Match any number of spaces.
21685
21686 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
21687
21688 * diff-mode.el (diff-mode): Doc fix.
21689
21690 2005-10-16 David Reitter <david.reitter@gmail.com>
21691
21692 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
21693 as default on darwin and windows systems.
21694
21695 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
21696
21697 * arc-mode.el (archive-zip-extract): Doc fix.
21698
21699 2005-10-16 Romain Francoise <romain@orebokech.com>
21700
21701 * mouse.el (mouse-1-click-follows-link): Doc fix.
21702
21703 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21704
21705 * savehist.el: Don't require CL at runtime.
21706 (savehist-xemacs): Remove.
21707 (savehist-coding-system): Use utf-8 if present, regardless of religion.
21708 (savehist-no-conversion): Use (featurep 'xemacs).
21709 (savehist-load): Check existence of start-itimer rather than XEmacs.
21710 Use an idle timer.
21711 (savehist-process-for-saving): Replace use of CL funs `subseq' and
21712 `delete-if-not'.
21713
21714 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
21715
21716 * savehist.el: Newer version.
21717 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
21718 (savehist-last-checksum, savehist-no-conversion): New vars.
21719 (savehist-autosave, savehist-process-for-saving, savehist-printable):
21720 New functions.
21721 (savehist-load, savehist-save): Use them.
21722 (savehist-delimit): Remove.
21723
21724 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21725
21726 * progmodes/compile.el (compilation-goto-locus): Display the
21727 compilation buffer first and the source buffer second, in case they're
21728 in overlapping frames. Don't raise the compilation frame if it was the
21729 selected window upon entry. Pass the `other-window' arg to
21730 pop-to-buffer.
21731
21732 * info.el (Info-fontify-node): Use dolist.
21733 Change add-text-properties to put-text-property.
21734
21735 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
21736
21737 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
21738 bound of search.
21739
21740 2005-10-16 Masatake YAMATO <jet@gyve.org>
21741
21742 * dabbrev.el (dabbrev-completion): Pass the common
21743 prefix substring of completion to `display-completion-list'.
21744
21745 * filecache.el (file-cache-minibuffer-complete)
21746 (file-cache-complete): Ditto.
21747
21748 * tempo.el (tempo-display-completions): Ditto.
21749
21750 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
21751
21752 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
21753
21754 * eshell/em-hist.el (eshell-list-history): Ditto.
21755
21756 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
21757
21758 * mail/mailalias.el (mail-complete): Ditto.
21759
21760 * progmodes/etags.el (complete-tag): Ditto.
21761
21762 * progmodes/make-mode.el (makefile-complete): Ditto.
21763
21764 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
21765
21766 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
21767
21768 * progmodes/pascal.el (pascal-complete-word)
21769 (pascal-show-completions): Ditto.
21770
21771 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
21772
21773 * simple.el (completion-common-substring): New variable.
21774 (completion-setup-function): Use `completion-common-substring'
21775 to put faces.
21776
21777 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21778
21779 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
21780 (x-get-selection, mac-select-convert-to-string): Convert from/to
21781 UTF-16 clipboard data as in native byte order, no BOM.
21782
21783 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
21784
21785 * progmodes/gud.el (gud-tool-bar-map): Rename the images
21786 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
21787 (gud-sentinel): Use speedbar-frame to check for speedbar.
21788
21789 2005-10-15 Richard M. Stallman <rms@gnu.org>
21790
21791 * savehist.el: New file.
21792
21793 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
21794
21795 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
21796 Fix bug in \bf fontification.
21797
21798 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
21799
21800 * pcvs.el (cvs-edit-log-files): New var.
21801 (cvs-mode-edit-log): New arg `file'.
21802 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
21803 Instead force the use of the original file and nothing else.
21804 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
21805 the cvs-minor-wrap-function is set.
21806 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
21807
21808 2005-10-14 Bill Wohler <wohler@newt.com>
21809
21810 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
21811 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
21812 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
21813 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
21814 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
21815 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
21816 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
21817 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
21818 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
21819 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
21820 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
21821 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
21822 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
21823 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
21824 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
21825
21826 * progmodes/gud.el (gud-tool-bar-map): Rename the images
21827 appropriately (for example, gud-break to gud/break).
21828
21829 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
21830
21831 * longlines.el (longlinges-search-function)
21832 (longlines-search-forward, longlines-search-backward): New functions.
21833 (longlines-mode): Set isearch-search-fun-function to
21834 longlinges-search-function.
21835
21836 * mouse.el (mouse-drag-region-1): Handle the case where a
21837 double-click event is bound to an arbitrary function.
21838
21839 2005-10-14 David Ponce <david@dponce.com>
21840
21841 * recentf.el (recentf-track-opened-file)
21842 (recentf-track-closed-file, recentf-update-menu)
21843 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
21844 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
21845 mouse-1-click-follows-link.
21846
21847 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21848
21849 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
21850 Gnome file-manager.png. Suggested by
21851 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
21852
21853 * toolbar/README: Add diropen.xpm.
21854
21855 2005-10-13 Bill Wohler <wohler@newt.com>
21856
21857 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
21858 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
21859
21860 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
21861
21862 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
21863 Don't waste the byte-compiler's time on constant data.
21864
21865 2005-10-13 Kenichi Handa <handa@m17n.org>
21866
21867 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
21868 byte with `escape-glyph' face.
21869
21870 * international/fontset.el (ccl-encode-unicode-font):
21871 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
21872 Handle the case that ucs-mule-to-mule-unicode translates a character to
21873 ASCII (usually for IPA characters).
21874
21875 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
21876
21877 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
21878 Don't hide the underline of titles if font-lock-mode is disabled.
21879
21880 2005-10-12 Bill Wohler <wohler@newt.com>
21881
21882 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
21883 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
21884 files in MH-E-SRC have been updated.
21885 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
21886
21887 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
21888
21889 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
21890 (mixal-mode-syntax-table): Add \n as end-comment.
21891 (mixal-operation-codes-alist): Immediately initialize to full value.
21892 (mixal-add-operation-code): Remove.
21893 (mixal-describe-operation-code): Make the arg non-optional.
21894 Use the interactive spec instead.
21895 Use mixal-operation-codes-alist rather than mixal-operation-codes.
21896 (mixal-font-lock-keywords): Don't highlight comments here any more.
21897 (mixal-font-lock-syntactic-keywords): New var.
21898 (mixal-mode): Use it. Fix comment-start-skip.
21899
21900 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21901
21902 * startup.el (command-line-x-option-alist): -nb => -nbi.
21903
21904 2005-10-12 Kim F. Storm <storm@cua.dk>
21905
21906 * startup.el (fancy-splash-default-action): Discard mouse click in
21907 the splash screen window, as it has no sensible meaning in the
21908 next window to be selected. Fixes error reported by Jan D.
21909
21910 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
21911
21912 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
21913
21914 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
21915
21916 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
21917 Try to fix up minor layout issues like indentation, line break, etc...
21918 (mixal-mode-syntax-table): Don't try to specify comment syntax,
21919 because it doesn't work.
21920 (mixal-operation-codes): Add some more codes.
21921 (mixal-font-lock-keywords): Process comments here.
21922 (mixal-mode): mixasm no longer needs -g option.
21923
21924 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
21925
21926 * progmodes/sh-script.el (sh-tmp-file):
21927 Use mktemp -t. Finish support for es and rc shells.
21928
21929 2005-10-11 Jay Belanger <belanger@truman.edu>
21930
21931 * calc/calcalg2.el (calc-integral): With an argument, compute the
21932 definite integral.
21933
21934 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
21935
21936 * mouse.el (mouse-drag-region-1): Don't try to catch a
21937 double-click when doing follow-link (it's overridden anyway).
21938
21939 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
21940
21941 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
21942 (autoload-print-form-outbuf): Add docstring.
21943
21944 2005-10-11 Juri Linkov <juri@jurta.org>
21945
21946 * info.el (Info-mode-menu): Delete menu item "Edit".
21947 (Info-mode): Delete description of Info-edit from docstring,
21948 and rearrange descriptions of Info commands in the order
21949 they are documented in the Info manual.
21950
21951 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
21952
21953 * calendar/appt.el (appt-check): Use diary-selective-display var.
21954
21955 2005-10-10 Richard M. Stallman <rms@gnu.org>
21956
21957 * net/newsticker.el (newsticker-start, newsticker-show-news):
21958 Add autoload cookies.
21959
21960 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
21961
21962 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
21963
21964 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
21965
21966 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
21967
21968 2005-10-10 Jay Belanger <belanger@truman.edu>
21969
21970 * calc/calc-arith.el (math-check-known-scalarp)
21971 (math-check-known-matrixp): Check the values of arguments that are
21972 variables.
21973 (math-check-known-square-matrixp): New function.
21974 (math-known-square-matrixp): Use math-check-known-square-matrixp.
21975 (math-super-types): Add sqmatrix type.
21976
21977 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
21978 mode name `square' to `sqmatrix'.
21979
21980 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
21981 mode name `square' to `sqmatrix'.
21982
21983 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
21984
21985 * progmodes/etags.el (select-tags-table-mode): Don't use
21986 selective-display.
21987 (tags-select-tags-table): Pass `button' to the action function.
21988 (select-tags-table): Place the side-info on button properties rather
21989 than in hidden text. Abbreviate file names.
21990 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
21991 (select-tags-table-select): Add `button' argument.
21992 Get side-info from the button property rather than from hidden text.
21993
21994 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
21995
21996 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
21997 (gud-speedbar-buttons): Preserve point if possible.
21998 (gud-sentinel): Restore previous speedbar display type.
21999
22000 * progmodes/gdb-ui.el (gdba): Improve diagram.
22001 (def-gdb-auto-update-handler, gdb-info-locals-handler)
22002 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
22003 Call get-buffer-window once.
22004
22005 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
22006
22007 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
22008 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
22009 (pascal-indent-command): Remove unused var `ind'.
22010 (pascal-indent-case): Remove unused var `oldpos'.
22011 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
22012 since it's now used as a proper minor mode map.
22013 (pascal-outline): Rename to pascal-outline-mode.
22014 (pascal-outline-mode): Use define-minor-mode.
22015 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
22016 selective-display.
22017
22018 2005-10-10 Andreas Schwab <schwab@suse.de>
22019
22020 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
22021 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
22022
22023 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
22024 outside source directory.
22025
22026 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
22027
22028 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
22029 C-x' as a prefix.
22030 (orgtbl-mode-map): Full keymap instead of sparse, because all
22031 `self-insert-command' keys are redefined in this map.
22032 (org-export-as-html): Specify charset for HTML file, by taking it
22033 from the coding system.
22034
22035 2005-10-10 Kenichi Handa <handa@m17n.org>
22036
22037 * textmodes/flyspell.el (flyspell-check-word-p):
22038 If unread-command-events is non-empty, don't call sit-for.
22039
22040 2005-10-09 Richard M. Stallman <rms@gnu.org>
22041
22042 * font-lock.el (font-lock-syntactic-keywords)
22043 (font-lock-keywords): Doc fixes.
22044
22045 * textmodes/flyspell.el (flyspell-external-point-words):
22046 Simplify logic, and don't try to check for consecutive appearances
22047 of one incorrect word.
22048
22049 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
22050
22051 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
22052 separator.
22053
22054 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
22055 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
22056 (gud-expansion-speedbar-buttons): New function.
22057 (gud-speedbar-buttons): Check for gud-comint-buffer.
22058
22059 2005-10-09 Bill Wohler <wohler@newt.com>
22060
22061 * Makefile.in (updates): Add mh-loaddefs dependency.
22062
22063 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
22064
22065 * speedbar.el (speedbar-file-key-map): Fix typo.
22066
22067 2005-10-09 Daniel Brockman <daniel@brockman.se>
22068
22069 * cus-start.el (line-spacing): Add custom spec.
22070
22071 2005-10-09 Romain Francoise <romain@orebokech.com>
22072
22073 * textmodes/ispell.el (ispell-check-version): Fix last change.
22074
22075 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22076
22077 * term/x-win.el: Remove -i, --icon-type from comment.
22078
22079 * startup.el (command-line-x-option-alist): Remove options -i,
22080 -itype, --icon-type, added -nb, --no-bitmap-icon.
22081
22082 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
22083
22084 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
22085 instead of :active.
22086
22087 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
22088
22089 * textmodes/ispell.el (ispell-check-version):
22090 Ignore hyphen, and all that follows, in aspell's version text.
22091
22092 2005-10-08 Jay Belanger <belanger@truman.edu>
22093
22094 * calc/calc-arith.el (math-known-square-matrixp): New function.
22095 (math-pow-fancy): Check for matrices before distributing exponent
22096 across products.
22097
22098 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
22099 fullscreen keypad. Suggested by Luc Teirlinck.
22100 (calc-keypad-show-input): Add space for formatting.
22101
22102 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
22103 Add square matrix option.
22104
22105 * calc/calc-poly.el (math-expand-term): Check for matrices instead
22106 of checking calc-matrix-mode when deciding how to expand.
22107
22108 * calc/calc.el (calc-set-mode-line): Add square matrix option.
22109
22110 2005-10-08 Lars Hansen <larsh@soem.dk>
22111
22112 * net/tramp.el (tramp-perl-directory-files-and-attributes):
22113 Add error handling.
22114 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
22115
22116 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
22117
22118 Sync with Tramp 2.0.51.
22119
22120 * net/tramp.el (tramp-handle-set-visited-file-modtime)
22121 (tramp-handle-insert-file-contents, tramp-handle-write-region):
22122 Insert special handling for `last-coding-system-used', again
22123 it still seems to be necessary (unlike stated before).
22124 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
22125 (tramp-password-prompt-regexp): There might be other words before
22126 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
22127 (tramp-chunksize): Improve docstring.
22128 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
22129 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
22130 Christian Joergensen <bugs@razor.dk>.
22131
22132 2005-10-07 Glenn Morris <rgm@gnu.org>
22133
22134 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
22135 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
22136 precision'.
22137
22138 2005-10-07 Romain Francoise <romain@orebokech.com>
22139
22140 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
22141 (ibuffer-do-shell-command-pipe-replace)
22142 (ibuffer-do-shell-command-file, ibuffer-do-eval)
22143 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
22144 (ibuffer-do-revert, ibuffer-do-replace-regexp)
22145 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
22146 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
22147 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
22148 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
22149 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
22150 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
22151 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
22152 Autoload file sans suffix.
22153
22154 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
22155
22156 2005-10-07 David Ponce <david@dponce.com>
22157
22158 * recentf.el (recentf-menu-open-all-flag): New option.
22159 (recentf-digit-shortcut-command-name): New function.
22160 (recentf--shortcuts-keymap): New variable.
22161 (recentf-menu-shortcuts): New variable.
22162 (recentf-make-menu-items): Initialize it. Replace the "More..."
22163 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
22164 (recentf-menu-value-shortcut): New function.
22165 (recentf-make-menu-item): Use it. No more in-lined.
22166 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
22167 (recentf-open-most-recent-file): Rename from
22168 `recentf-open-file-with-key'. Don't depend on key binding.
22169 (recentf-mode-map): New variable.
22170 (recentf-mode): Use it.
22171
22172 2005-10-06 Bill Wohler <wohler@newt.com>
22173
22174 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
22175
22176 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
22177 (MH-E-SRC): New. Used by mh-autoloads.
22178 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
22179 files in MH-E-SRC have been updated.
22180 (compile, recompile, bootstrap): Depend on mh-autoloads.
22181
22182 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
22183
22184 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
22185 gud-break and gud-remove icons when the fringe is not available.
22186
22187 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
22188 Typo.
22189
22190 2005-10-06 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
22191
22192 * play/zone.el (zone): Wrap body with save-window-excursion.
22193
22194 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
22195
22196 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
22197 Use the new `list-only' arg to diary-list-entries.
22198
22199 * calendar/diary-lib.el: Use overlays rather than selective-display.
22200 (diary-selective-display): New var.
22201 (diary-header-line-format): Use it.
22202 (diary-list-entries): Add argument `list-only'.
22203 Put the buffer in diary-mode. Don't add \^M at beg and end.
22204 Replace \^M by invisible overlays.
22205 (diary-unhide-everything): Replace \^M by invisible overlays.
22206 (print-diary-entries): Look for overlays rather than \^M.
22207 Add a space to the temp buffer name.
22208 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
22209 Put the buffer in diary-mode.
22210 (list-sexp-diary-entries): Replace \^M by invisible overlays.
22211 (diary-anniversary): Make the year arg optional.
22212 (diary-time-regexp): New const.
22213 (diary-font-lock-keywords): Use it to accept a few more time formats.
22214
22215 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
22216
22217 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
22218
22219 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
22220 Fix bug introduced 2005-07-03: Use (car (last ...))
22221 to faithfully reproduce replaced artist-last.
22222 (artist-set-arrow-points-for-poly): Likewise.
22223 Suggested by Johan Bockg\e,Ae\e(Brd.
22224
22225 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
22226
22227 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
22228 * wid-edit.el (widget):
22229 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
22230 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
22231
22232 2005-10-06 Kenichi Handa <handa@m17n.org>
22233
22234 * international/mule-cmds.el (set-language-environment):
22235 Fix setting up of case-table for unibyte mode.
22236
22237 * simple.el (what-cursor-position): If the character is displayed
22238 by some `display' text property, show that. Don't use
22239 single-key-description for eight-bit characters in multibyte mode.
22240
22241 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
22242
22243 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
22244 (gdb-ann3): Set it.
22245 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
22246 (gdb-info-frames-custom): Use inverse-video for first five
22247 characters of selected frame only.
22248 (gdb-get-frame-number): Select frame even when point is on frame
22249 number.
22250
22251 2005-10-06 Masatake YAMATO <jet@gyve.org>
22252
22253 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
22254 Put `font-lock-function-name-face'.
22255 (gdb-info-frames-custom): Put `font-lock-function-name-face'
22256 and `font-lock-variable-name-face'
22257 (gdb-registers-font-lock-keywords): New font lock keywords definition.
22258 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
22259 (gdb-memory-font-lock-keywords): New font lock keywords definition.
22260 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
22261 (gdb-local-font-lock-keywords): New font lock keywords definition.
22262 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
22263 (gdb-threads-font-lock-keywords): New font lock keywords definition.
22264 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
22265
22266 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
22267
22268 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
22269 (ediff-merge-region-is-non-clash-to-skip): Previously called
22270 ediff-merge-region-is-non-clash.
22271
22272 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
22273 Use insert-buffer-substring.
22274
22275 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
22276 selecting files to patch. Also bug fixes.
22277
22278 * ediff-util.el (ediff-setup): Bug fix.
22279 (ediff-next-difference): Never skip clashes that differ in white
22280 space only.
22281
22282 * ediff-wind.el (ediff-setup-control-frame)
22283 (ediff-destroy-control-frame): Check the menubar feature.
22284
22285 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
22286 (viper-refresh-mode-line): Use make-local-variable to localize
22287 some vars instead of make-variable-buffer-local. Suggested by
22288 Stefan Monnier.
22289
22290 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
22291 (viper-restore-cursor-type, viper-set-insert-cursor-type):
22292 Use make-local-variable instead of make-variable-buffer-local.
22293 Suggested by Stefan Monnier.
22294
22295 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
22296 (viper-comint-mode-hook): Use make-local-variable on
22297 require-final-newline.
22298 (viper-non-hook-settings): Don't use make-variable-buffer-local.
22299
22300 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
22301
22302 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
22303 also the second char of a comment-start sequence.
22304 (scheme-sexp-comment-syntax-table): New var.
22305 (lambda, define): Set their scheme-doc-string-elt property.
22306 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
22307 Use lisp-font-lock-syntactic-face-function now that it properly
22308 handles |...| symbols.
22309 (scheme-mode-variables): Set lisp-doc-string-elt-property,
22310 parse-sexp-lookup-properties and font-lock-extra-managed-props.
22311
22312 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
22313 bit from # to |.
22314 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
22315
22316 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
22317 (lisp-doc-string-elt-property): New var.
22318 (lisp-font-lock-syntactic-face-function): Use it.
22319 Rewrite to recognize docstrings even for forms not at toplevel.
22320
22321 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
22322 annotation on the | part of #| rather than on the # part.
22323 (scheme-font-lock-syntactic-face-function): New function, to
22324 distinguish strings from |...| symbols.
22325 (scheme-mode-variables): Use it. Also fix up the font-lock-time
22326 syntax-table so that #|...|# is properly highlighted.
22327
22328 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
22329 Don't mark as docstring the 3rd elem of an unknown toplevel form.
22330
22331 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
22332
22333 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
22334 and C-e.
22335
22336 * emacs-lisp/eldoc.el: Move comments into docstrings.
22337 (eldoc-message-commands): Initialize in its declaration.
22338 Add move-beginning-of-line and move-end-of-line.
22339 (eldoc-add-command, eldoc-add-command-completions)
22340 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
22341
22342 * outline.el (outline-mark-subtree): Activate the mark.
22343
22344 * calendar/appt.el (appt-time-regexp): New var.
22345 (appt-add, appt-make-list): Use it.
22346 (appt-convert-time): Clean up.
22347
22348 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
22349 Don't set any syntax-table property here.
22350 (tex-font-lock-verb): New function. Do it here.
22351 (tex-font-lock-syntactic-keywords): Use it.
22352
22353 2005-10-04 Richard M. Stallman <rms@gnu.org>
22354
22355 * wid-edit.el (widget-file-complete): Get the widget start point
22356 the right way. Default directory to `/' if file has none.
22357
22358 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
22359
22360 * textmodes/flyspell.el (flyspell-mode-on):
22361 Call ispell-maybe-find-aspell-dictionaries.
22362
22363 * textmodes/ispell.el (ispell-word, ispell-region):
22364 Call ispell-maybe-find-aspell-dictionaries.
22365 (ispell-accept-buffer-local-defs):
22366 Don't call ispell-maybe-find-aspell-dictionaries.
22367
22368 2005-10-04 Richard M. Stallman <rms@gnu.org>
22369
22370 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
22371
22372 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
22373
22374 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
22375 instead of `fboundp' in order to allow for anonymous functions.
22376
22377 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
22378
22379 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
22380 case the user clicks on the link while another window is selected.
22381 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
22382
22383 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
22384 functionality.
22385 (dframe-help-echo): Save point in case mouse tracking is off.
22386
22387 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
22388
22389 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
22390
22391 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
22392
22393 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
22394 not change the global value of those vars.
22395
22396 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
22397 make-local-variable which we do not need any more.
22398
22399 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
22400
22401 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
22402 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
22403 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
22404 (speedbar-path-line): Define obsolete aliases.
22405 (speedbar-line-directory): Doc fix.
22406
22407 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
22408 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
22409 instead of speedbar-line-path.
22410
22411 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22412
22413 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
22414 to nil if dropping on a window. Handle dropping on a minibuffer window
22415 like dropping on a non-window part of Emacs.
22416
22417 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
22418
22419 * net/ange-ftp.el: Use with-current-buffer.
22420 (ange-ftp-insert-directory): Do not follow symlinks any more.
22421
22422 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
22423 Remove interactive spec.
22424
22425 2005-10-03 Kim F. Storm <storm@cua.dk>
22426
22427 * ido.el (ido-mode): Use custom-initialize-set.
22428
22429 2005-10-02 Richard M. Stallman <rms@gnu.org>
22430
22431 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
22432 Use insert-buffer-substring.
22433
22434 * net/tramp.el: Pacify byte compiler warnings in pacification code.
22435 (tramp-handle-file-local-copy): Use insert-buffer-substring.
22436
22437 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
22438
22439 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
22440 in last change.
22441 (ange-ftp-insert-directory): Fix up the search for the case where
22442 `file' is absolute.
22443
22444 2005-10-02 Romain Francoise <romain@orebokech.com>
22445
22446 * progmodes/compile.el (compile-goto-error): Delete extra paren.
22447
22448 2005-10-02 Andreas Schwab <schwab@suse.de>
22449
22450 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
22451 directory component in the session info.
22452
22453 2005-10-01 Richard M. Stallman <rms@gnu.org>
22454
22455 * comint.el (comint-redirect-subvert-readonly): Doc fix.
22456
22457 * simple.el (next-error-internal): New function.
22458
22459 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
22460 (compilation-start): Pass new arg to compilation-buffer-name.
22461 (compile-goto-error): Use next-error-internal.
22462
22463 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
22464
22465 * speedbar.el: Remove RCS tag.
22466 (speedbar-check-read-only): Handle non-existent files.
22467
22468 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
22469
22470 * info.el (Info-speedbar-hierarchy-buttons)
22471 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
22472
22473 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22474
22475 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
22476 Do not match newline.
22477 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
22478 (bibtex-summary): Remove unnecessary save-excursion.
22479 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
22480
22481 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22482
22483 * term/mac-win.el: Add charset info for "iso10646-1".
22484 Modify default fontset to use ATSUI-compatible fonts for some charsets
22485 if available.
22486
22487 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
22488
22489 * speedbar.el: Re-apply arch tag.
22490 (speedbar-version): Rename to version 1.0. Suggested by Eric
22491 M. Ludlam.
22492 Reapply two changes from Emacs CVS' version of speedbar lost
22493 during the merge:
22494 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
22495 (speedbar-frame-parameters): Improve customize type.
22496
22497 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
22498
22499 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
22500 (ange-ftp-file-directory-p): Fix the symlink case.
22501 (ange-ftp-insert-directory): When listing a single file, get a list of
22502 the parent buffer and extract the relevant line. Inspired from a patch
22503 by Katsumi Yamaoka <yamaoka@jpl.org>.
22504 (ange-ftp-file-name-sans-versions): Simplify.
22505
22506 2005-09-30 Bill Wohler <wohler@newt.com>
22507
22508 Move MH-E image files from toolbar and mail directories into
22509 etc/images.
22510
22511 * mail/reply2.*: Move to etc/images/mail/reply*.
22512
22513 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
22514 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
22515 etc/images.
22516
22517 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
22518 * toolbar/reply*: Move to etc/images/mail.
22519
22520 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
22521
22522 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
22523
22524 * speedbar.el: New version 1.0pre3.
22525
22526 Frame management code (including timer, and mouse click specifics)
22527 moved to dframe.el:
22528 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
22529 (speedbar-timer): Removed. Use dframe-timer.
22530 (speedbar-close-frame): Removed. Use dframe-close-frame.
22531 (speedbar-activity-change-focus-flag): Removed. Use
22532 dframe-activity-change-focus-flag.
22533 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
22534 dframe-update-speed.
22535
22536 (speedbar-current-frame): New macro. Use this instead of the
22537 variable speedbar-frame.
22538
22539 (speedbar-use-images, speedbar-expand-image-button-alist)
22540 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
22541
22542 (speedbar-find-image-on-load-path): Removed. Replaced by
22543 defezimage in ezimage.el.
22544 (speedbar-expand-image-button-alist): Removed. Replaced by
22545 ezimage-expand-image-button-alist in ezimage.el.
22546
22547 (speedbar-ignored-directory-regexp)
22548 (speedbar-add-ignored-directory-regexp)
22549 (speedbar-ignored-directory-expressions)
22550 (speedbar-line-directory, speedbar-buffers-line-directory)
22551 (speedbar-directory-line, speedbar-buffers-line-directory):
22552 Renamed, replacing `path' with `directory'.
22553
22554 (speedbar-create-directory, speedbar-expand-line-descendants)
22555 (speedbar-toggle-line-expansion)
22556 (speedbar-contract-line-descendants): New commands.
22557
22558 (speedbar-query-confirmation-method, speedbar-select-frame-method)
22559 (speedbar-use-tool-tips-flag): New options.
22560
22561 (speedbar-check-read-only, speedbar-require-version)
22562 (speedbar-insert-separator, speedbar-buffers-tail-notes)
22563 (speedbar-handle-delete-frame, speedbar-try-completion)
22564 (speedbar-update-localized-contents): New functions.
22565
22566 (speedbar-incompatible-version, speedbar-ro-to-do-point)
22567 (speedbar-object-read-only-indicator): New variables.
22568
22569 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
22570 New hooks.
22571
22572 (speedbar-separator-face): New face.
22573
22574 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
22575 (speedbar-ignored-modes): Add fundamental-mode.
22576 (speedbar-directory-unshown-regexp): Add . directories.
22577
22578 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
22579 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
22580 `]' for full expand/close.
22581 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
22582
22583 (speedbar-check-vc): Support hidden files.
22584 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
22585 (speedbar-this-file-in-vc): Use vc-state if available. If VC
22586 state is nil, it is not checked out.
22587
22588 (speedbar-line-text, speedbar-line-token): Support expand buttons
22589 with no text.
22590 (speedbar-refresh): Universal argument acts as power-click.
22591 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
22592 that buffer to get variable values.
22593
22594 And many other bugfixes.
22595
22596 * dframe.el, ezimage.el, sb-image.el: New files.
22597
22598 * sb-*.xpm: Remove files. New image files installed into
22599 etc/images/ezimage.
22600
22601 2005-09-30 Kenichi Handa <handa@m17n.org>
22602
22603 * ps-mule.el (ps-mule-show-warning): If a character is in
22604 ps-print-translation-table, don't treat it as non-printable.
22605
22606 2005-09-30 David Ponce <david@dponce.com>
22607
22608 * tree-widget.el (tree-widget-themes-load-path): New variable.
22609 (tree-widget-themes-directory): Doc fix.
22610 (tree-widget-image-formats) [Emacs]: Doc fix.
22611 (tree-widget--locate-sub-directory): New function.
22612 (tree-widget-themes-directory): Use it.
22613
22614 * recentf.el (recentf-filename-handlers): Rename from
22615 `recentf-filename-handler'. Allow a list of functions.
22616 (recentf-menu-items-for-commands): Fix :help strings.
22617 (recentf-apply-filename-handlers): New function.
22618 (recentf-expand-file-name): Use it.
22619 (recentf-cleanup): Remove duplicates too.
22620
22621 2005-09-29 Juri Linkov <juri@jurta.org>
22622
22623 * faces.el: Rearrange face definitions to be in the same order as
22624 their face descriptions in "(emacs)Standard Faces".
22625
22626 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
22627
22628 * tooltip.el (tooltip): Add group `basic-faces'.
22629
22630 * buff-menu.el (Buffer-menu-buffer): Remove group
22631 `font-lock-highlighting-faces'.
22632
22633 * progmodes/compile.el (compilation-error, compilation-warning)
22634 (compilation-info, compilation-line-number, compilation-column-number):
22635 Change group from `font-lock-highlighting-faces' to `compilation'.
22636
22637 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
22638 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
22639 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
22640 (vhdl-font-lock-reserved-words-face)
22641 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
22642 `font-lock-highlighting-faces'.
22643
22644 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
22645
22646 2005-09-28 Kim F. Storm <storm@cua.dk>
22647
22648 * emulation/cua-base.el: Set CUA move property on additional commands:
22649 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
22650 forward-sexp, backward-sexp, forward-list, backward-list.
22651
22652 2005-09-28 Romain Francoise <romain@orebokech.com>
22653
22654 * comint.el (comint-show-output): Really set point at the
22655 beginning of the output when not using `comint-use-prompt-regexp'.
22656
22657 2005-09-27 Jay Belanger <belanger@truman.edu>
22658
22659 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
22660 in TeX mode.
22661
22662 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
22663
22664 * textmodes/org.el (org-table-sum): Fix format string.
22665
22666 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
22667 Quote face names.
22668
22669 2005-09-26 Romain Francoise <romain@orebokech.com>
22670
22671 * isearch.el (isearch-forward-regexp): Close doc string.
22672
22673 2005-09-25 Richard M. Stallman <rms@gnu.org>
22674
22675 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
22676
22677 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
22678
22679 * progmodes/compile.el (compilation-error-properties):
22680 When getting the file from the previous error message,
22681 correctly decode the new data format.
22682
22683 * progmodes/cc-cmds.el (c-electric-paren):
22684 Call old-blink-paren only for close-paren.
22685
22686 2005-09-24 Andreas Schwab <schwab@suse.de>
22687
22688 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
22689 condition.
22690
22691 2005-09-25 Romain Francoise <romain@orebokech.com>
22692
22693 * dired-aux.el (dired-copy-file-recursive):
22694 * dired.el (dired-delete-file):
22695 * ediff-mult.el (ediff-dir-diff-copy-file):
22696 * ediff-util.el (ediff-test-save-region):
22697 * forms.el (forms-mode):
22698 * ido.el (ido-file-internal, ido-delete-file-at-head):
22699 * log-edit.el (log-edit-done):
22700 * ses.el (ses-yank-resize):
22701 * play/gomoku.el (gomoku-human-plays, gomoku)
22702 (gomoku-human-resigns, gomoku-prompt-for-other-game)
22703 (gomoku-offer-a-draw):
22704 * play/landmark.el (lm-human-resigns, lm):
22705 * net/eudcb-ldap.el (eudc-ldap-check-base):
22706 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
22707 * progmodes/ebrowse.el (ebrowse-find-pattern):
22708 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
22709 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
22710 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
22711
22712 * vc.el (vc-delete-file):
22713 * play/gomoku.el (gomoku-terminate-game, gomoku)
22714 (gomoku-prompt-for-move, gomoku-human-takes-back):
22715 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
22716 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
22717
22718 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
22719
22720 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
22721 color rxvt terminals by using the code xterm.el used to use before
22722 2005-04-09 in order to match the colors used by rxvt.
22723
22724 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
22725
22726 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
22727 colors rxvt-unicode terminals by using the same code as xterm.el.
22728
22729 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
22730
22731 * textmodes/tex-mode.el (tex-font-lock-append-prop)
22732 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
22733 new symbol used for the tex-verbatim face.
22734
22735 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
22736
22737 * woman.el (woman-file-name):
22738 * wid-edit.el (widget-file-prompt-value)
22739 (widget-coding-system-prompt-value):
22740 * w32-fns.el (set-w32-system-coding-system):
22741 * vc.el (vc-version-diff, vc-annotate):
22742 * textmodes/reftex-auc.el (reftex-arg-cite)
22743 (reftex-arg-index-tag):
22744 * textmodes/refer.el (refer-get-bib-files):
22745 * textmodes/artist.el (artist-figlet-choose-font):
22746 * terminal.el (terminal-emulator):
22747 * replace.el (occur-read-primary-args):
22748 * rect.el (string-rectangle, string-insert-rectangle):
22749 * ps-print.el (ps-print-preprint):
22750 * progmodes/pascal.el (pascal-goto-defun):
22751 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
22752 * progmodes/compile.el (compilation-find-file):
22753 * printing.el (pr-interactive-n-up):
22754 * play/animate.el (animate-birthday-present):
22755 * net/rcompile.el (remote-compile):
22756 * man.el (man, Man-goto-section, Man-follow-manual-reference):
22757 * mail/rmailsum.el (rmail-summary-search-backward)
22758 (rmail-summary-search):
22759 * mail/rmailout.el (rmail-output-read-rmail-file-name)
22760 (rmail-output-read-file-name):
22761 * mail/rmail.el (rmail-search, rmail-search-backwards):
22762 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
22763 * locate.el (locate):
22764 * international/quail.el (quail-show-keyboard-layout):
22765 * international/mule.el (set-buffer-file-coding-system)
22766 (revert-buffer-with-coding-system, set-file-name-coding-system)
22767 (set-terminal-coding-system, set-keyboard-coding-system)
22768 (set-next-selection-coding-system):
22769 * international/mule-diag.el (describe-coding-system)
22770 (describe-font, describe-fontset):
22771 * international/mule-cmds.el (universal-coding-system-argument)
22772 (search-unencodable-char, describe-input-method)
22773 (set-language-environment, describe-language-environment):
22774 * international/codepage.el (codepage-setup):
22775 * international/code-pages.el (codepage-setup):
22776 * info.el (Info-search, Info-follow-reference)
22777 (Info-search-backward):
22778 * emacs-lisp/advice.el (ad-read-advised-function)
22779 (ad-read-advice-class, ad-clear-cache, ad-activate)
22780 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
22781 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
22782 (ad-read-regexp):
22783 * ediff-util.el (ediff-toggle-regexp-match):
22784 * ediff-ptch.el (ediff-prompt-for-patch-file):
22785 * dired-aux.el (dired-diff):
22786 * diff.el (diff):
22787 * cus-edit.el (custom-variable-prompt):
22788 * calendar/timeclock.el (timeclock-ask-for-project):
22789 * calc/calcalg3.el (calc-get-fit-variables):
22790 * calc/calc-store.el (calc-edit-variable)
22791 (calc-permanent-variable):
22792 * vc-mcvs.el (vc-mcvs-register):
22793 * shadowfile.el (shadow-define-literal-group):
22794 * woman.el (woman-file-name):
22795 * vc.el (vc-version-diff, vc-merge):
22796 * textmodes/reftex-index.el (reftex-index-complete-tag):
22797 * format.el (format-decode-buffer, format-decode-region):
22798 * emulation/viper-cmd.el (viper-read-string-with-history):
22799 * emacs-lisp/debug.el (cancel-debug-on-entry):
22800 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
22801 * ediff.el (ediff-merge-revisions)
22802 (ediff-merge-revisions-with-ancestor, ediff-revision):
22803 * completion.el (interactive-completion-string-reader):
22804 * calc/calc-prog.el (calc-user-define-formula):
22805 Follow convention for reading with the minibuffer.
22806
22807 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
22808
22809 * progmodes/python.el (python-describe-symbol): Add globals() and
22810 locals() to the arguments of emacs.ehelp.
22811
22812 2005-09-24 Magnus Henoch <mange@freemail.hu>
22813
22814 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
22815 New function, code extracted from ispell-valid-dictionary-list.
22816 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
22817 Call it.
22818
22819 2005-09-24 Eli Zaretskii <eliz@gnu.org>
22820
22821 * subr.el (version-regexp-alist): Extend valid syntax for version
22822 strings: allow any of the characters -,_,+ to separate the
22823 alpha/beta/rc part from the version part. Doc fix.
22824 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
22825
22826 2005-09-23 David Reitter <david.reitter@gmail.com>
22827
22828 * mail/mailclient.el: New file.
22829
22830 2005-09-23 Richard M. Stallman <rms@gnu.org>
22831
22832 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
22833 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
22834 Doc fixes.
22835
22836 * progmodes/cc-mode.el (c-font-lock-init):
22837 Specify font-lock-lines-before.
22838
22839 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
22840
22841 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
22842 whole conflict.
22843
22844 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
22845
22846 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
22847 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
22848 of `remap' feature when available. Additional key bindings for
22849 better tty support.
22850 (org-mode-restart, org-force-self-insert): New commands.
22851 (org-time-stamp-inactive): New command.
22852 (org-remap): New function.
22853 (org-table-auto-blank-field, org-level-color-stars-only): New options.
22854 (org-enable-fixed-width-editor): Move to `org-structure'
22855 customization group.
22856 (org-self-insert-command, orgtbl-self-insert-command): Modify to
22857 blank field after field motion commands.
22858
22859 2005-09-23 Kenichi Handa <handa@m17n.org>
22860
22861 * international/mule-cmds.el (set-language-environment):
22862 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
22863 have to call utf-translate-cjk-load-tables.
22864
22865 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
22866
22867 * mouse.el (mouse-move-drag-overlay): Fix last change.
22868
22869 2005-09-22 David Ponce <david@dponce.com>
22870
22871 * tree-widget.el (tree-widget-value-create): Fix previous change.
22872
22873 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
22874
22875 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
22876
22877 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
22878
22879 * mouse.el (mouse-move-drag-overlay): New function.
22880 (mouse-drag-region-1): Use it.
22881 Try to simplify a bit the state handling. Handle clicks on links
22882 inside intangible areas.
22883 (mouse-save-then-kill): Minor simplification.
22884 (mouse-secondary-overlay): Make it always non-nil instead of
22885 recreating it each time.
22886 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
22887 (mouse-kill-secondary, mouse-secondary-save-then-kill):
22888 Simplify accordingly.
22889
22890 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
22891
22892 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
22893
22894 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
22895
22896 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
22897 (ediff-file-name-sans-prefix): Treat nil as an empty string.
22898 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
22899 to patch.
22900
22901 * ediff-util.el: Use insert-buffer-substring.
22902
22903 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
22904
22905 * emulation/viper-cmd.el (viper-change-state): Don't move over the
22906 field boundaries in the minibuffer.
22907 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
22908 (viper-minibuffer-post-command-hook): New hook.
22909 (viper-line): Don't move cursor at bolp.
22910
22911 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
22912
22913 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
22914 avoid compiler warnings.
22915
22916 * emulation/viper-macs.el (ex-map): Better messages.
22917
22918 * emulation/viper-utils.el (viper-beginning-of-field): New function.
22919
22920 * emulation/viper.el: Replace make-variable-buffer-local with
22921 viper-make-variable-buffer-local everywhere, to avoid warnings.
22922
22923 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
22924
22925 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
22926 Delete unused var `old-selected-window'.
22927 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
22928 (mouse-drag-secondary): Delete unused var `start-frame'.
22929
22930 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
22931
22932 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
22933
22934 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
22935
22936 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
22937 Re-indent within 80 columns. Use inhibit-read-only.
22938
22939 2005-09-19 Romain Francoise <romain@orebokech.com>
22940
22941 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
22942
22943 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
22944
22945 * font-lock.el (font-lock-default-fontify-region): Don't add a line
22946 unconditionally, since the after-change-function already did it.
22947
22948 2005-09-19 Miles Bader <miles@gnu.org>
22949
22950 * net/newsticker.el: Get rid of CVS keyword.
22951
22952 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
22953
22954 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
22955 The prompt is formatted later.
22956
22957 2005-09-19 David Ponce <david@dponce.com>
22958
22959 * tree-widget.el (tree-widget-value-create): Save the converted
22960 tree :node widget.
22961
22962 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
22963
22964 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
22965 variable `message'.
22966
22967 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
22968
22969 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
22970 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
22971 <slawomir.nowaczyk.847@student.lu.se>.
22972
22973 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
22974
22975 * image.el (image-load-path): Use symbol `data-directory' instead
22976 of its value, for backward compatibility with packages that bind
22977 it during `find-image'. Suggested by Katsumi Yamaoka.
22978 (image-search-load-path): Handle symbols whose values are strings.
22979
22980 2005-09-18 Romain Francoise <romain@orebokech.com>
22981
22982 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
22983 with-current-buffer form in save-excursion.
22984
22985 2005-09-18 Deepak Goel <deego@gnufans.org>
22986
22987 * apropos.el (apropos-command): Fix `message' call: first arg
22988 should be a format spec. In this and all other cases that appear
22989 below and elsewhere in the source code, I made a change only when
22990 two conditions were satisfied: [1] I can think of a possibility
22991 that the arguments would cause an error, for example, the code in
22992 question relies on external variables such as filenames. [2] I
22993 was sure that the arg to `message' could not have been nil in the code.
22994
22995 * textmodes/tildify.el (tildify-region): Ditto.
22996
22997 * textmodes/reftex-index.el (reftex-index-change-entry)
22998 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
22999 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
23000 * textmodes/org.el (org-complete, org-deadline, org-schedule)
23001 (org-priority, org-table-sum):
23002 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
23003 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
23004 (flyspell-word, flyspell-display-next-corrections):
23005 * textmodes/bibtex.el (bibtex-print-help-message):
23006 * textmodes/artist.el (artist-key-set-point-poly):
23007 * term/mac-win.el (mac-services-insert-text):
23008 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
23009 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
23010 (vhdl-port-paste-testbench, vhdl-compose-new-component)
23011 (vhdl-compose-configuration):
23012 * progmodes/sh-script.el (sh-blink, sh-show-indent)
23013 (sh-set-indent, sh-learn-line-indent):
23014 * progmodes/ps-mode.el (ps-mode-target-column):
23015 * progmodes/idlwave.el (idlwave-make-tags)
23016 (idlwave-scan-library-catalogs):
23017 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
23018 * progmodes/gud.el (gud-jdb-analyze-source):
23019 * progmodes/flymake.el (flymake-log):
23020 * progmodes/ebnf2ps.el (ebnf-generate-region):
23021 * progmodes/cmacexp.el (c-macro-expansion):
23022 * progmodes/ada-xref.el (ada-treat-cmd-string):
23023 * progmodes/ada-mode.el (ada-create-case-exception-substring)
23024 (ada-justified-indent-current, ada-batch-reformat):
23025 * play/zone.el (zone):
23026 * play/landmark.el (lm-move):
23027 * play/decipher.el (decipher-show-alphabet):
23028 * net/newsticker.el (newsticker--display-jump)
23029 (newsticker--display-scroll):
23030 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
23031 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
23032 * mail/feedmail.el (feedmail-dump-message-to-queue):
23033 * eshell/esh-proc.el (eshell-remove-process-entry):
23034 * emulation/ws-mode.el (ws-last-error):
23035 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
23036 (viper-record-kbd-macro):
23037 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
23038 * emacs-lisp/lisp-mnt.el (lm-report-bug):
23039 * emacs-lisp/find-func.el (find-function-noselect):
23040 * calendar/timeclock.el (timeclock-status-string)
23041 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
23042 (timeclock-when-to-leave-string):
23043 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
23044 * calc/calc-units.el (calc-enter-units-table):
23045 * calc/calc-mode.el (calc-mode-record-mode):
23046 * woman.el (woman-mini-help):
23047 * wdired.el (wdired-change-to-wdired-mode):
23048 * vc.el (vc-retrieve-snapshot):
23049 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
23050 * startup.el (display-startup-echo-area-message):
23051 * simple.el (set-goal-column):
23052 * ses.el (ses-command-hook, ses-recalculate-cell):
23053 * server.el (server-process-filter):
23054 * printing.el (pr-interface-txt-print, pr-interface-printify)
23055 (pr-interface-ps):
23056 * pcvs.el (cvs-help):
23057 * log-edit.el (log-edit, log-edit-mode-help):
23058 * iswitchb.el (iswitchb-possible-new-buffer):
23059 * isearch.el (isearch-edit-string):
23060 * image-mode.el (image-mode, image-minor-mode):
23061 * ibuf-macs.el (define-ibuffer-filter):
23062 * hi-lock.el (hi-lock-find-patterns):
23063 * files.el (toggle-read-only):
23064 * ediff-util.el (ediff-copy-diff)
23065 (ediff-write-merge-buffer-and-maybe-kill):
23066 * echistory.el (Electric-history-undefined):
23067 * dnd.el (dnd-insert-text):
23068 * dired-aux.el (dired-query):
23069 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
23070 * bookmark.el (bookmark-bmenu-locate):
23071 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
23072 Fix `message' calls to ensure first arg is a format string.
23073 The change was made only when these two conditions were satisfied:
23074 [1] when there is a possibility that the arguments would cause an error
23075 for example, if the code in question relies on external variables
23076 such as filenames, and
23077 [2] if the arg to `message' could not have been nil in the code.
23078
23079 * pcomplete.el (pcomplete--help): Fix `message' format spec.
23080 Not having a %s would be weird, though not technically wrong.
23081
23082 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23083
23084 * term/mac-win.el (mac-add-charset-info): Doc fix.
23085
23086 2005-09-17 Romain Francoise <romain@orebokech.com>
23087
23088 * shell.el (shell-resync-dirs): Handle echoing processes more
23089 reliably. Don't insert resync command if `comint-process-echoes'
23090 is non-nil.
23091
23092 2005-09-17 Magnus Henoch <mange@freemail.hu>
23093
23094 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
23095 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
23096 aspell versions >= 0.60.
23097 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
23098 only if ispell-aspell-supports-utf8 is non-nil.
23099
23100 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
23101
23102 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
23103 buffer-local value to lisp-indent-function.
23104
23105 2005-09-17 Milan Zamazal <pdm@zamazal.org>
23106
23107 * progmodes/glasses.el (glasses-make-readable): If
23108 glasses-separator differs from underscore, put appropriate
23109 overlays over underscore characters.
23110 (glasses-convert-to-unreadable): If glasses-separator differs from
23111 underscore, try to convert glasses-separator characters to
23112 underscores.
23113
23114 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
23115
23116 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
23117 Use with-syntax-table and dolist.
23118
23119 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
23120
23121 * textmodes/reftex-auc.el:
23122 * textmodes/reftex-cite.el:
23123 * textmodes/reftex-dcr.el:
23124 * textmodes/reftex-global.el:
23125 * textmodes/reftex-parse.el:
23126 * textmodes/reftex-ref.el:
23127 * textmodes/reftex-sel.el:
23128 * textmodes/reftex-toc.el:
23129 * textmodes/reftex-vars.el:
23130 * textmodes/reftex.el: Small changes to remove compiler warnings.
23131
23132 * textmodes/reftex-index.el: Likewise.
23133 (reftex-query-index-phrase): More efficient use of markers.
23134
23135 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
23136
23137 * image.el (image-load-path): New variable.
23138 (image-search-load-path): New function.
23139 (find-image): Search for images in `image-load-path'.
23140
23141 2005-09-15 Richard M. Stallman <rms@gnu.org>
23142
23143 * follow.el: Change Maintainer field.
23144
23145 2005-09-15 David Ponce <david@dponce.com>
23146
23147 * recentf.el (recentf-save-file-modes): New option.
23148 (recentf-save-list): Use it.
23149
23150 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
23151
23152 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
23153 (mode-line-mule-info, mode-line-modified): Move bindings from
23154 mouse-3 to mouse-1.
23155
23156 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
23157
23158 * simple.el (sendmail-user-agent-compose): Revert last change.
23159
23160 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
23161
23162 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
23163 Use with-current-buffer.
23164 (ange-ftp-gwp-start): Remove unused var `gw-user'.
23165 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
23166 (ange-ftp-insert-directory): Remove unused var `short'.
23167 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
23168
23169 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
23170 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
23171
23172 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
23173 (check-calendar-holidays, diary-list-entries): Autoload.
23174 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
23175 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
23176
23177 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
23178 which mistakenly removed a call to display-buffer.
23179
23180 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
23181
23182 * obsolete/iso-insert.el: Move to obsolete/ from international/.
23183
23184 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
23185
23186 * progmodes/hideshow.el
23187 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
23188 (hs-allow-nesting): New user var.
23189 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
23190 (hs-hide-block-at-point): When nesting allowed,
23191 if there is already an overlay in place, delete it.
23192 (hs-safety-is-job-n): Delete func; remove call sites.
23193 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
23194 (hs-overlay-at): New func.
23195 (hs-already-hidden-p, hs-show-block): Use it.
23196 (hs-hide-all): Don't pre-clean if nesting allowed.
23197 (hs-show-all): Temporarily disallow
23198 nesting around call to `hs-discard-overlays'.
23199
23200 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
23201
23202 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
23203 Delete unused local var.
23204
23205 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
23206
23207 * help-fns.el (describe-categories): "?\ " -> "?\s".
23208 (help-do-arg-highlight): Recognize also ARG-n, as in
23209 `move-to-left-margin' (ARG+n is already recognized). Simplify.
23210
23211 * international/codepage.el (dos-unsupported-char-glyph):
23212 * net/newsticker.el (tool-bar-map, w3-mode-map)
23213 (w3m-minor-mode-map):
23214 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
23215 (ent-alist):
23216 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
23217
23218 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
23219
23220 * custom.el (custom-push-theme): Handle the case where a symbol is
23221 bound but face properties have not yet been assigned.
23222
23223 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
23224 Fix behavior if noerase is `t' and there is no mail buffer.
23225
23226 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
23227 if `continue' is nil, rather than signal an error.
23228
23229 2005-09-12 Richard M. Stallman <rms@gnu.org>
23230
23231 * font-lock.el (font-lock-keywords): Add autoload.
23232
23233 * help-fns.el (describe-variable): Rearrange to put source link
23234 in a predictable place.
23235
23236 * net/newsticker.el: New file.
23237
23238 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
23239
23240 * calendar/calendar.el (calendar-for-loop): Add edebug info.
23241 (calendar-basic-setup): Use the new nil arg.
23242 (number-of-diary-entries): Move to diary-lib.el.
23243
23244 * calendar/diary-lib.el: Use with-current-buffer, match-string.
23245 (diary-list-entries): Use with-syntax-table and dolist.
23246 Rename from list-diary-entries.
23247 Use number-of-diary-entries if `number' is nil.
23248 (diary, diary-view-entries): Use this new name and new nil arg value.
23249 (number-of-diary-entries): Move from calendar.el.
23250 (diary-unhide-everything): New function.
23251 (include-other-diary-files, fancy-diary-display)
23252 (diary-show-all-entries, make-diary-entry): Use it.
23253 (diary-mail-entries): Use buffer-string.
23254 (mark-diary-entries): Fix long standing paren typo.
23255 (diary-sexp-entry): Use count-lines.
23256 (make-diary-entry): Avoid `previous-line'.
23257 (diary-mode-map): New var.
23258 (diary-mode): Redraw cal after saving. Setup header-line.
23259 (fancy-diary-display-mode): Use local-set-key.
23260
23261 * startup.el (command-line): Try calling various terminal-init-foo-bar
23262 functions by stripping hyphenated suffixes from $TERM.
23263
23264 * files.el (normal-mode): Check boundness of font-lock-keywords.
23265
23266 2005-09-12 Richard M. Stallman <rms@gnu.org>
23267
23268 * progmodes/compile.el: Don't decide a file's directory
23269 until the user actually tries to go there.
23270 (compilation-next-error-function):
23271 Pass compilation-find-file the directory from the file-struct.
23272 (compilation-internal-error-properties): Separate local FILE-STRUCT
23273 from FILE. Doc the args better. Rename arg FMT to FMTS.
23274 (compilation-find-file): Arg DIR renamed to DIRECTORY.
23275 Expand it, and if nil, use default-directory.
23276 (compilation-get-file-structure): Don't mix specified directory
23277 with default directory. Put specified directory into
23278 file-struct. Don't make the file name absolute.
23279
23280 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
23281 (compile-command): Add autoload.
23282 (compilation-disable-input): Add autoload.
23283
23284 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
23285
23286 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
23287 strings of the variables it can override.
23288 (time-stamp): New (as yet undocumented) time-stamp-format escapes
23289 %Q and %q, for fully-qualified domain name and unqualified host name.
23290
23291 2005-09-11 Kim F. Storm <storm@cua.dk>
23292
23293 * emacs-lisp/authors.el (authors-aliases): Update list.
23294 (authors-fixed-entries): Update mldrag.el entry.
23295
23296 2005-09-10 Alan Mackenzie <acm@muc.de>
23297
23298 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
23299 from the region narrowed to.
23300
23301 2005-09-10 Magnus Henoch <mange@freemail.hu>
23302
23303 * textmodes/ispell.el (ispell-check-version): Signal an error if
23304 aspell version is less than 0.60.
23305
23306 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
23307
23308 * progmodes/octave-inf.el (inferior-octave-startup):
23309 Resync current dir at the end.
23310
23311 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
23312
23313 * woman.el (woman-topic-at-point-default):
23314 Rename to woman-use-topic-at-point-default.
23315 (woman-topic-at-point): Rename to woman-use-topic-at-point.
23316 (woman-file-name): Reflect renames above. Automatically use the
23317 word at point as topic if woman-use-topic-at-point is non-nil.
23318 Otherwise offer it as default but don't insert it in the
23319 minibuffer. Also use `test-completion' instead of `assoc' as
23320 suggested by Stefan Monnier.
23321
23322 2005-09-10 Andre Spiegel <spiegel@gnu.org>
23323
23324 * vc.el (vc-directory, vc-update-change-log): Throw an error on
23325 the attempt to do it over Tramp. This is not yet supported.
23326
23327 2005-09-10 Eli Zaretskii <eliz@gnu.org>
23328
23329 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
23330 (menu-bar-non-minibuffer-window-p): New functions.
23331 ("Split Window", "Save As..."): Use them.
23332 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
23333 ("Print Buffer", "Truncate Long Lines in this Buffer"):
23334 Use menu-bar-menu-frame-live-and-visible-p.
23335 ("Save Buffer", "Insert File", "Open Directory...")
23336 ("Open File...", "Visit New File..."):
23337 Use menu-bar-non-minibuffer-window-p.
23338 (kill-this-buffer-enabled-p, dired <menu-enable>):
23339 Use menu-bar-non-minibuffer-window-p.
23340
23341 2005-09-09 Eli Zaretskii <eliz@gnu.org>
23342
23343 * cus-start.el (all): Don't complain about fringe-related
23344 built-ins if fringes are not supported. Ditto about
23345 selection-related built-ins. Fix the test for GTK-related built-ins.
23346
23347 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
23348 ("Postscript Print Buffer", "Print Region", "Save As...")
23349 ("Save", "Insert File...", "Open Directory...")
23350 ("Open File...", "Visit New File..."")
23351 ("Truncate Long Lines in this Buffer"): Don't look at
23352 menu-updating-frame if this display does not support multiple frames.
23353
23354 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
23355
23356 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
23357
23358 2005-09-09 Emilio C. Lopes <eclig@gmx.net>
23359
23360 * woman.el: Format- and whitespace-related changes.
23361
23362 2005-09-09 Eli Zaretskii <eliz@gnu.org>
23363
23364 * woman.el: Fix my email address.
23365
23366 2005-09-08 Richard M. Stallman <rms@gnu.org>
23367
23368 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
23369 (sh-mode): Locally set skeleton-pair-default-alist.
23370
23371 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
23372
23373 * progmodes/flymake.el: Require `compile' unconditionally.
23374
23375 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
23376
23377 * woman.el (woman-file-name): Provide a default, not initial input.
23378
23379 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
23380
23381 * font-lock.el (font-lock-support-mode): Doc fix.
23382
23383 * descr-text.el (describe-property-list): Handle non-symbol prop names.
23384
23385 2005-09-08 Richard M. Stallman <rms@gnu.org>
23386
23387 * simple.el (blink-matching-open): Get rid of text props from
23388 the string shown in echo area. Don't permanently set point.
23389 Some rearrangements.
23390
23391 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
23392
23393 * recentf.el (recentf-filename-handler): Add custom choice
23394 `abbreviate-file-name'.
23395
23396 * msb.el (msb--very-many-menus): Fix typo.
23397
23398 * disp-table.el (standard-display-european): Don't set
23399 enable-multibyte-characters to nil.
23400
23401 2005-09-08 David Ponce <david@dponce.com>
23402
23403 * recentf.el (recentf-show-file-shortcuts-flag): New option.
23404 (recentf-expand-file-name): Doc fix.
23405 (recentf-dialog-mode-map): Define digit shortcuts.
23406 (recentf--files-with-key): New variable.
23407 (recentf-show-digit-shortcut-filter): New function.
23408 (recentf-open-files-items): New function.
23409 (recentf-open-files): Use it.
23410 (recentf-open-file-with-key): New command.
23411
23412 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
23413
23414 * buff-menu.el (Buffer-menu-sort-by-column): New function.
23415 Suggested by Kim F. Storm.
23416 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
23417 (Buffer-menu-make-sort-button): Use global keymap.
23418
23419 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
23420
23421 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
23422 (Man-getpage-in-background-advice): Remove defadvice; it isn't
23423 necessary any longer with the remapped command.
23424 (Man-bgproc-sentinel-advice): Remove defadvice which counts
23425 formatting time only.
23426
23427 * net/tramp.el (tramp-action-password)
23428 (tramp-multi-action-password): Compile the password prompt from
23429 `method', `user' and `host'. Sometimes it isn't obvious which
23430 password to enter, for example with remote files offered by
23431 recentf.el, or with multiple steps. Suggested by Robert Marshall
23432 <robert@chezmarshall.freeserve.co.uk>.
23433
23434 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
23435
23436 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
23437 Fix regexp for when "s///" is at the beginning of line.
23438
23439 2005-09-07 Jay Belanger <belanger@truman.edu>
23440
23441 * calc/calc-poly.el (math-expand-term): Multiply out any powers
23442 when in matrix mode.
23443
23444 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
23445
23446 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
23447 non-anonymous functions.
23448
23449 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
23450
23451 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
23452 when using a header line. Otherwise, use mouse-1-click-follows-link.
23453
23454 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
23455 can't be moved; don't signal an error.
23456
23457 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
23458
23459 * cus-theme.el (custom-theme-write-faces): Save the current face
23460 spec, not the defface spec.
23461
23462 * custom.el (custom-known-themes): Clarify meaning of "standard".
23463 (custom-push-theme): Save old values in the standard theme.
23464 (disable-theme): Correct typo.
23465 (custom-face-theme-value): Deleted unused function.
23466 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
23467
23468 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
23469
23470 * progmodes/compile.el (compilation-goto-locus): Take into account
23471 iconified frames when determining whether the buffer is
23472 already visible.
23473 Don't reset window height if the window already existed.
23474
23475 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
23476
23477 * custom.el (load-theme): Rename from require-theme.
23478 Add interactive spec.
23479 (enable-theme): Rename from custom-enable-theme.
23480 Add interactive spec.
23481 (disable-theme): Rename from custom-disable-theme.
23482 Add interactive spec.
23483 (custom-make-theme-feature): Doc fix.
23484 (custom-theme-directory): Doc fix.
23485 (provide-theme): Call enable-theme.
23486
23487 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
23488
23489 * obsolete/lazy-lock.el (lazy-lock-mode):
23490 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
23491 font-lock-mode if it's off. Print a warning instead.
23492
23493 * progmodes/compile.el (compilation-start): Ignore errors if the
23494 process died before we get to send-eof.
23495
23496 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
23497 Undo last change. Enclosing the result in quotes broke things on Unix
23498 since tex-send-command passes it through shell-quote-argument.
23499 (tex-send-command): Pass `file' through convert-standard-filename
23500 when possible.
23501 (tex-uptodate-p): Handle the case where TeX hasn't put additional
23502 info in a transcript.
23503
23504 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
23505
23506 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
23507 fix compilation warning. Reorder the key definitions to group
23508 together keys emitted by the current version of xterm.
23509
23510 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
23511 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
23512 Reorder predicates to correct min-color usage.
23513
23514 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
23515
23516 * longlines.el (longlines-mode): Inhibit read-only when encoding.
23517 Kill local variables when longlines-mode is turned off.
23518
23519 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
23520
23521 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
23522
23523 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
23524
23525 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
23526
23527 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
23528 (font-lock-lines-before): Change default to being inactive.
23529 (font-lock-default-fontify-region): Obey font-lock-lines-before.
23530 (font-lock-after-change-function): Don't handle f-l-lines-before here.
23531
23532 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
23533
23534 * net/tramp.el (tramp-handle-make-auto-save-file-name):
23535 Deactivate temporarily advice if active (not needed for Emacs 22,
23536 but for backwards compatibility).
23537 (tramp-exists-file-name-handler): Rewrite. First implementation
23538 was too simple.
23539 (tramp-advice-make-auto-save-file-name):
23540 Call `tramp-handle-make-auto-save-file-name' (again, just for
23541 backwards compatibility).
23542
23543 2005-08-31 Reto Zimmermann <reto@gnu.org>
23544
23545 * progmodes/vhdl-mode.el
23546 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
23547 (vhdl-end-p): Fix indentation bug "else" after "-- when".
23548 (vhdl-set-default-project): New function (easier setting of default).
23549 (vhdl-port-copy): Handle extended identifiers for generics.
23550 (vhdl-compiler-alist): Better description for error message regexp.
23551 (vhdl-make): Query for target, use previous as default.
23552 (vhdl-port-copy): Fix port copy for port names starting with "signal".
23553 (vhdl-font-lock-keywords-2): Fix fontification for record
23554 el. assign.
23555 (vhdl-speedbar-make-subpack-line): Add package body link.
23556 (vhdl-generate-makefile-1): Not include itself as dependency.
23557 (vhdl-font-lock-init): Highlight c-preprocessor directives.
23558 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
23559 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
23560 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
23561 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
23562 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
23563 (vhdl-import-project): Add string argument for `error'.
23564 (vhdl-compose-configuration)
23565 (vhdl-compose-configuration-architecture): Add configuration
23566 declaration generation.
23567 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
23568 (vhdl-trailer-re): Add "record" keyword (better indentation).
23569 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
23570 "[^ \t-\"]+".
23571 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
23572 (vhdl-testbench-entity-file-name)
23573 (vhdl-testbench-architecture-file-name): Allow separate
23574 customization of testbench file names.
23575 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
23576 (vhdl-get-visible-signals): Allow newline within alias declaration.
23577 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
23578 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
23579 (member-ignore-case): Alias for missing function in XEmacs.
23580 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
23581 (vhdl-update-sensitivity-list): Ignore case on read signals.
23582 (vhdl-replace-string): Adjust case only for file names.
23583 (vhdl-update-sensitivity-list): Fix search for read signals.
23584 (vhdl-update-sensitivity-list): Exclude formal parameters.
23585 (vhdl-get-visible-signals): Include aliases of signals.
23586 (vhdl-get-visible-signals): Fix signal name searching.
23587 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
23588 (vhdl-fixup-whitespace-region): Fix for character
23589 literals (e.g. `:').
23590
23591 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
23592
23593 * ansi-color.el (comint-last-output-start):
23594 * bs.el (font-lock-verbose):
23595 * diff-mode.el (add-log-buffer-file-name-function):
23596 * dired-x.el (vm-folder-directory):
23597 * faces.el (help-xref-stack-item):
23598 * files.el (font-lock-keywords):
23599 * find-lisp.el (dired-buffers, dired-subdir-alist):
23600 * ido.el (cua-inhibit-cua-keys):
23601 * log-view.el (cvs-minor-wrap-function):
23602 * outline.el (font-lock-warning-face):
23603 * simple.el (compilation-current-error):
23604 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
23605 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
23606 * tooltip.el (comint-prompt-regexp):
23607 * w32-fns.el (explicit-shell-file-name):
23608 * term/mac-win.el (mac-charset-info-alist)
23609 (mac-services-selection, mac-system-script-code):
23610 * term/tty-colors.el (msdos-color-values):
23611 * term/w32-win.el (xlfd-regexp-registry-subnum):
23612 * term/x-win.el (x-keysym-table, x-selection-timeout)
23613 (x-session-id, x-session-previous-id):
23614 * textmodes/ispell.el (mail-yank-prefix):
23615 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
23616 * textmodes/org.el (calc-embedded-close-formula)
23617 (calc-embedded-open-formula)
23618 (font-lock-unfontify-region-function):
23619 * textmodes/reftex-global.el (isearch-next-buffer-function)
23620 (TeX-master):
23621 * textmodes/reftex.el (font-lock-keywords):
23622 * textmodes/tex-mode.el (font-lock-comment-face)
23623 (font-lock-doc-face):
23624 * textmodes/texinfo.el (outline-heading-alist):
23625 Add defvars.
23626
23627 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
23628 (artist-spray-chars, artist-mode-init, artist-replace-string)
23629 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
23630 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
23631 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
23632
23633 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
23634 (conf-align-assignments): "?\ " -> "?\s".
23635
23636 * textmodes/reftex-index.el (TeX-master): Add defvar.
23637 (reftex-index-phrases-marker): Move up defvar.
23638
23639 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
23640 (reftex-toc-include-labels-indicator)
23641 (reftex-toc-include-index-indicator)
23642 (reftex-toc-max-level-indicator): Move up declarations.
23643
23644 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
23645 of args to `tramp-run-real-handler', even if it's empty in this case.
23646
23647 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23648
23649 * dired.el (dired-move-to-filename-regexp): Add date format for
23650 Mac OS X 10.3 in East Asian locales.
23651
23652 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
23653
23654 * files.el (make-auto-save-file-name): Add file name handler call
23655 if applicable.
23656
23657 * net/tramp.el (tramp-file-name-handler-alist)
23658 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
23659 (tramp-handle-make-auto-save-file-name): Rename from
23660 `tramp-make-auto-save-file-name'.
23661 (tramp-exists-file-name-handler): New defun.
23662 (tramp-advice-make-auto-save-file-name): Make defadvice only when
23663 `make-auto-save-file-name' is not a magic file name operation.
23664
23665 2005-08-30 Richard M. Stallman <rms@gnu.org>
23666
23667 * files.el (risky-local-variable-p):
23668 Match `-predicates' and `-commands.
23669
23670 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
23671 (custom-save-all): Visit the file if necessary;
23672 kill the buffer if we created it.
23673 (custom-save-delete): Don't visit file or kill buffer here.
23674
23675 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
23676
23677 * textmodes/org.el (org-special-keyword): New face.
23678 (org-table-copy-down, org-table-eval-formula)
23679 (org-table-recalculate, org-init-section-numbers):
23680 Use `string-to-number' instead of `string-to-int'.
23681 (org-get-location): Use `insert-buffer-substring' instead of
23682 `insert-buffer'.
23683 (org-modify-diary-entry-string): New function.
23684 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
23685 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
23686 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
23687 active region.
23688 (org-export-as-html): Handle QUOTE keyword.
23689 (org-quote-string): New option.
23690 (org-bookmark-jump-unhide): New function, used for
23691 `bookmark-after-jump-hook'.
23692 (org-diary-default-entry): Apply only when not called through
23693 `org-agenda'.
23694
23695 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
23696
23697 * net/eudc.el (mode-popup-menu):
23698 * play/handwrite.el (ps-printer-name, ps-lpr-command):
23699 * progmodes/ada-mode.el (compile-auto-highlight)
23700 (skeleton-further-elements):
23701 * progmodes/autoconf.el (font-lock-syntactic-keywords):
23702 * progmodes/cmacexp.el (msdos-shells):
23703 * progmodes/compile.el (font-lock-extra-managed-props)
23704 (font-lock-keywords, font-lock-maximum-size)
23705 (font-lock-support-mode):
23706 * progmodes/grep.el (font-lock-lines-before):
23707 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
23708 * progmodes/mixal-mode.el (compile-command):
23709 * progmodes/perl-mode.el (font-lock-comment-face)
23710 (font-lock-doc-face, font-lock-string-face):
23711 * progmodes/prolog.el (comint-prompt-regexp):
23712 * progmodes/sh-script.el (font-lock-comment-face)
23713 (font-lock-set-defaults, font-lock-string-face):
23714 * progmodes/sql.el (font-lock-keyword-face)
23715 (font-lock-set-defaults, font-lock-string-face):
23716 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
23717 (itimer-version, lazy-lock-defer-contextually)
23718 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
23719 Add defvars.
23720
23721 * progmodes/cperl-mode.el (cperl-electric-lbrace)
23722 (cperl-electric-keyword, cperl-electric-pod)
23723 (cperl-electric-backspace, cperl-forward-re)
23724 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
23725 (vc-rcs-header, vc-sccs-header): Add defvars.
23726
23727 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
23728 (font-lock-syntactic-keywords, gud-find-expr-function):
23729 Add defvars.
23730
23731 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
23732 (gdb-frame-parameters): Declare before use.
23733
23734 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
23735 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
23736 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
23737 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
23738
23739 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
23740 (idlwave-help-with-source): Use `insert-buffer-substring', not
23741 `insert-buffer'.
23742
23743 2005-08-29 Juri Linkov <juri@jurta.org>
23744
23745 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
23746 Put outline-back-to-heading function call inside save-excursion.
23747
23748 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
23749
23750 * man.el (Man-init-defvars, Man-translate-references)
23751 (Man-support-local-filenames, Man-highlight-references):
23752 * progmodes/sql.el (sql-interactive-mode):
23753 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
23754
23755 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
23756 (compilation-mode-font-lock-keywords): Add defvars.
23757 (checkdoc-interactive-loop): "?\ " -> "?\s".
23758
23759 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
23760 (font-lock-doc-face, font-lock-string-face)
23761 (font-lock-keywords-case-fold-search): Add defvars.
23762 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
23763
23764 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
23765 Don't pass X and Y (they are ignored anyway).
23766 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
23767 (mouse-delete-window): Make arguments optional.
23768
23769 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
23770 (caesar-translate-table, minor-modes, news-buffer-save)
23771 (news-group-name, news-minor-modes): Add defvars.
23772
23773 * emacs-lisp/lselect.el (mouse-highlight-priority)
23774 (x-lost-selection-functions, zmacs-regions):
23775 * emacs-lisp/pp.el (font-lock-verbose):
23776 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
23777 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
23778 (ses-mode-map):
23779 * emacs-lisp/tcover-unsafep.el (safe-functions):
23780 * international/mule-cmds.el (mac-system-coding-system)
23781 (mac-system-locale):
23782 * language/ethio-util.el (rmail-current-message)
23783 (rmail-message-vector):
23784 * language/thai-util.el (thai-auto-composition-mode):
23785 * mail/metamail.el (rmail-current-message, rmail-message-vector):
23786 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
23787 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
23788 (vm-primary-inbox, vm-spool-files):
23789 * mail/rmail.el (deleted-head, font-lock-fontified)
23790 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
23791 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
23792 (total-messages):
23793 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
23794 (rmail-summary-mode-map):
23795 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
23796 (rmail-last-label, rmail-last-multi-labels)
23797 (rmail-summary-vector, rmail-total-messages):
23798 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
23799 * mail/rmailsum.el (msgnum):
23800 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
23801 (rmail-current-message):
23802 * obsolete/fast-lock.el (font-lock-face-list):
23803 * obsolete/rnewspost.el (mail-reply-buffer):
23804 * obsolete/scribe.el (compile-command):
23805 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
23806
23807 2005-08-28 John Paul Wallington <jpw@gnu.org>
23808
23809 * ibuf-ext.el (ibuffer-auto-update-changed):
23810 Use `frame-or-buffer-changed-p' to check whether we need to update.
23811 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
23812 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
23813 as a `frame-or-buffer-changed-p' state vector instead.
23814
23815 2005-08-27 Romain Francoise <romain@orebokech.com>
23816
23817 * textmodes/makeinfo.el (makeinfo-compile):
23818 Use `compilation-start'. Set `next-error-function' according to
23819 `disable-errors'.
23820 (makeinfo-next-error): New function.
23821 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
23822 (makeinfo-buffer): Likewise.
23823
23824 * progmodes/compile.el (compilation-start): Add autoload cookie.
23825
23826 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
23827 * textmodes/sgml-mode.el: Likewise.
23828 * progmodes/python.el: Likewise.
23829
23830 2005-08-27 Eli Zaretskii <eliz@gnu.org>
23831
23832 * simple.el (blink-matching-paren-distance): Document the meaning
23833 of nil value, and allow to customize to nil.
23834
23835 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
23836 command.com, not command.exe.
23837
23838 2005-08-26 John Wiegley <johnw@newartisans.com>
23839
23840 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
23841 code around a bit so that an extraneous nil argument is not added
23842 to a command when no args are given.
23843
23844 * eshell/esh-arg.el (eshell-parse-double-quote): If a
23845 double-quoted argument resolves to nil, return it as an empty
23846 string rather than as nil. This made it impossible to pass "" to
23847 a shell script as a null string argument.
23848
23849 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
23850
23851 * outline.el (outline-invent-heading): New fun.
23852 (outline-promote, outline-demote): Use it.
23853 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
23854 (outline-end-of-subtree): Remove unused var `opoint'.
23855
23856 2005-08-26 David Reitter <david.reitter@gmail.com>
23857
23858 * menu-bar.el (truncate-lines, write-file, print-buffer)
23859 (ps-print-buffer-faces, ps-print-buffer, split-window):
23860 Disable menu items when the frame they refer to is invisible, or when
23861 they refer to a buffer and the minibuffer is selected.
23862
23863 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
23864
23865 * progmodes/flymake.el (flymake-highlight-err-lines):
23866 Use save-excursion around flymake-highlight-line to preserve point.
23867
23868 2005-08-26 Eli Zaretskii <eliz@gnu.org>
23869
23870 * progmodes/octave-mod.el: Change Author and Maintainer address.
23871 (octave-maintainer-address): Change Kurt's email address.
23872 * progmodes/octave-inf.el: Change Author and Maintainer address.
23873 * progmodes/octave-hlp.el: Change Author and Maintainer address.
23874
23875 2005-08-26 Kim F. Storm <storm@cua.dk>
23876
23877 * subr.el (version-list-<, version-list-<=, version-list-=):
23878 Rename from integer-list-*.
23879 (version-list-not-zero): Likewise. Fix while loop.
23880 (version=): Use version-list-= instead of string-equal.
23881
23882 2005-08-26 Richard M. Stallman <rms@gnu.org>
23883
23884 * outline.el (outline-promote): Try shortening the heading.
23885 As last resort, read the heading to use.
23886 (outline-demote): As last resort, read the heading to use.
23887
23888 2005-08-26 Romain Francoise <romain@orebokech.com>
23889
23890 * progmodes/compile.el (compilation-start): Doc fix.
23891
23892 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
23893 (antlr-font-lock-additional-keywords): Fix reference to
23894 `antlr-font-lock-literal-regexp' erroneously changed during the
23895 mass face rename.
23896 (antlr-run-tool): Use `compilation-start'.
23897
23898 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
23899 instead of the obsolete `compile-internal'.
23900
23901 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
23902
23903 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
23904 (number, original-date):
23905 * calendar/cal-china.el (date):
23906 * calendar/cal-coptic.el (date):
23907 * calendar/cal-french.el (date):
23908 * calendar/cal-hebrew.el (date, entry, number, original-date):
23909 * calendar/cal-islam.el (date, number, original-date):
23910 * calendar/cal-iso.el (date):
23911 * calendar/cal-julian.el (date):
23912 * calendar/cal-mayan.el (date):
23913 * calendar/cal-menu.el (date, event):
23914 * calendar/cal-persia.el (date):
23915 * calendar/lunar.el (date):
23916 * calendar/solar.el (date): Add defvars.
23917
23918 * emerge.el:
23919 * ibuffer.el:
23920 * info-xref.el:
23921 * obsolete/bg-mouse.el:
23922 * obsolete/sun-curs.el:
23923 * obsolete/swedish.el: Move the `defvar's to the top level.
23924
23925 * smerge-mode.el (smerge-refined-change): Add :group.
23926
23927 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
23928
23929 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
23930 (smerge-keep-n): Remove props.
23931 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
23932 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
23933 now that it's done in smerge-keep-n.
23934 (smerge-refined-change): New face.
23935 (smerge-refine-chopup-region, smerge-refine-highlight-change)
23936 (smerge-refine): New funs.
23937 (smerge-basic-map): Bind smerge-refine.
23938
23939 2005-08-25 Juri Linkov <juri@jurta.org>
23940
23941 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
23942 compilation-process-setup-function and compilation-disable-input
23943 in grep-mode instead of let-bindings in grep.
23944
23945 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
23946 Delete "Automatic File De/compression" (auto-compression-mode).
23947
23948 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
23949
23950 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
23951 Silence warning about non-existent variable.
23952
23953 2005-08-25 Richard M. Stallman <rms@gnu.org>
23954
23955 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
23956 Rename "Describe Key" to "Describe Key or Mouse Operation".
23957
23958 * mail/mailalias.el (build-mail-aliases): Delete comments
23959 from the contents before processing them.
23960
23961 * isearch.el (isearch-edit-string): Erase the Search prompt
23962 if user enters an empty string and there is no default.
23963
23964 * comint.el (comint-file-name-prefix): Add autoload.
23965
23966 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
23967
23968 * subr.el (play-sound): Rearrange to avoid warning.
23969
23970 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
23971
23972 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
23973 New hook.
23974 (add-to-diary-list): Call `diary-modify-entry-list-string-function'.
23975
23976 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
23977
23978 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
23979
23980 * custom.el (custom-theme-set-variables): Sort minor modes last.
23981
23982 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23983
23984 * subr.el (version-separator, version-regexp-alist): New vars used by
23985 version comparison funs.
23986 (integer-list-<, integer-list-=, integer-list-<=)
23987 (integer-list-not-zero): New funs for integer list comparison.
23988 (version-to-list, version=, version<, version<=): New funs for version
23989 comparison.
23990
23991 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
23992
23993 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
23994 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
23995 time to silence the byte-compiler.
23996
23997 * ibuffer.el (ibuffer-compile-make-eliding-form)
23998 (ibuffer-check-formats): Use `with-no-warnings' to hide references
23999 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
24000 so it's silly to get warnings for it).
24001 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
24002 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
24003 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
24004 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
24005 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
24006 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
24007 Defvar at compile time.
24008 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
24009 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
24010 Declare them before use.
24011
24012 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
24013 (info-xref-good, info-xref-bad): Defvar at compile time.
24014
24015 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
24016 Use `let*' instead of `let'.
24017
24018 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
24019 (*mouse-y*, menu, char): Defvar at compile time.
24020 (sc::menu): Declare it before use.
24021 (sc::pack-one-line): Use `let', not `let*'.
24022
24023 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
24024 (mail-send-hook): Defvar at compile time.
24025
24026 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
24027 Defvar at compile time.
24028
24029 * term/sun-mouse.el (current-global-mousemap)
24030 (current-local-mousemap): Declare them before use.
24031
24032 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
24033
24034 * bookmark.el (bookmark-after-jump-hook): New hook.
24035 (bookmark-jump): Run `bookmark-after-jump-hook'.
24036
24037 2005-08-23 Juri Linkov <juri@jurta.org>
24038
24039 * faces.el (minibuffer-prompt): Doc fix.
24040
24041 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
24042
24043 * progmodes/xscheme.el: Trivial changes to silence warnings.
24044 (xscheme-previous-mode, xscheme-previous-process-state):
24045 Add defvars.
24046 (xscheme-last-input-end, xscheme-process-command-line)
24047 (xscheme-process-name, xscheme-buffer-name)
24048 (xscheme-expressions-ring-max, xscheme-expressions-ring)
24049 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
24050 (xscheme-control-g-synchronization-p)
24051 (xscheme-control-g-disabled-p, xscheme-string-receiver)
24052 (default-xscheme-runlight, xscheme-runlight)
24053 (xscheme-runlight-string, xscheme-process-filter-state)
24054 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
24055 Move to beginning of file.
24056 (scheme-interaction-mode-commands-alist)
24057 (scheme-interaction-mode-map, scheme-debugger-mode-map):
24058 Declare them before use. Note: the initialization code for the
24059 variables has not been moved because it uses functions that reference
24060 the variables.
24061 (xscheme-control-g-message-string, xscheme-process-filter-alist)
24062 (xscheme-prompt-for-expression-map): Declare them before use.
24063 (scheme-debugger-mode-commands): "?\ " -> "?\s".
24064
24065 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
24066
24067 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
24068
24069 2005-08-22 Juri Linkov <juri@jurta.org>
24070
24071 * faces.el (set-face-underline): Delete this duplicate function
24072 and make an obsolete alias to set-face-underline-p.
24073 (set-face-underline-p): Use docstring of set-face-underline.
24074 (describe-face): Create hyperlink to parent face.
24075
24076 * info.el (Info-insert-dir): Use save-excursion around
24077 insert-buffer-substring.
24078 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
24079 (Info-escape-percent): Delete function.
24080 (Info-fontify-node): Replace Info-escape-percent by
24081 replace-regexp-in-string with REP arg set to lambda that
24082 duplicates `%' and preserves text properties.
24083
24084 * progmodes/compile.el (compilation-disable-input): Doc fix.
24085 (define-compilation-mode): Doc fix and refill.
24086 (kill-compilation): Use `mode-name' in the error message.
24087 (compilation-find-file): Use `compilation-error' in the
24088 read-file-name's prompt.
24089
24090 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
24091
24092 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
24093 (smerge-auto-leave): Make undo re-enable the mode.
24094 (debug-ignored-errors): Add the user-error of impossible resolution.
24095 (smerge-resolve): Move things around a bit, in preparation for later.
24096 (smerge-diff): Don't fail if the buffer has no associated file.
24097 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
24098 (smerge-conflict-overlay): New function.
24099 (smerge-match-conflict): Don't add text properties here.
24100 (smerge-find-conflict): Instead, add an overlay here.
24101 Also check for the case where we're inside a conflict already, so as to
24102 obviate the need for font-lock-multiline, which is unbearably slow with
24103 large conflicts and ciomplex font-lock patterns.
24104 (smerge-remove-props): Remove overlay rather than text-properties.
24105 (smerge-mode): Don't set font-lock-multiline.
24106 Remove overlays when turned off.
24107
24108 2005-08-21 Kim F. Storm <storm@cua.dk>
24109
24110 * ido.el (ido-ignore-item-p): Use save-match-data.
24111 Bind case-fold-search to ido-case-fold locally.
24112
24113 2005-08-20 Richard M. Stallman <rms@gnu.org>
24114
24115 * files.el (normal-mode): If font lock is on, turn it off and on.
24116
24117 * subr.el (replace-regexp-in-string): Doc fix.
24118
24119 * startup.el (command-line-1): Don't suppress startup screen
24120 due to existing processes.
24121
24122 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
24123
24124 * progmodes/compile.el (compilation-disable-input): Default to nil.
24125
24126 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
24127
24128 * progmodes/compile.el (compilation-disable-input): New defcustom.
24129 (compilation-start): If compilation-disable-input is non-nil, send
24130 EOF to the compilation process.
24131
24132 2005-08-20 Eli Zaretskii <eliz@gnu.org>
24133
24134 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
24135 Run the argument of tex-shell-cd-command through
24136 convert-standard-filename, to get the correct style of slashes on
24137 Windows, and enclose the result in quotes, in case the file name
24138 includes whitespace or other special characters.
24139
24140 2005-08-19 Andreas Schwab <schwab@suse.de>
24141
24142 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
24143 process.
24144
24145 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
24146
24147 * cus-start.el (minibuffer-prompt-properties): Correct typo.
24148
24149 2005-08-18 Kim F. Storm <storm@cua.dk>
24150
24151 * scroll-lock.el: Fix errors due to incorrect line wrapping.
24152
24153 2005-08-18 Richard M. Stallman <rms@gnu.org>
24154
24155 * scroll-lock.el: New file.
24156
24157 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
24158
24159 * dired.el (dired-move-to-end-of-filename):
24160 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
24161
24162 2005-08-18 Kim F. Storm <storm@cua.dk>
24163
24164 * ido.el (ido-everywhere): Fix defcustom :set function to disable
24165 rather than toggle mode when custom value is nil.
24166 (ido-everywhere): Fix defun doc string.
24167
24168 2005-08-17 Richard M. Stallman <rms@gnu.org>
24169
24170 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
24171 as tag instead of "Inviolable".
24172
24173 2005-08-17 Kim F. Storm <storm@cua.dk>
24174
24175 * windmove.el (windmove-coordinates-of-position): Remove.
24176 (windmove-coordinates-of-window-position): Remove.
24177 (windmove-reference-loc): Use posn-at-point instead.
24178
24179 * subr.el (insert-for-yank-1): Doc fix.
24180
24181 * ido.el (ido-enter-matching-directory): Rename from
24182 ido-enter-single-matching-directory. Change `slash' choice to
24183 `only'. Add `first' choice.
24184 (ido-exhibit): Adapt to above changes.
24185
24186 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
24187
24188 * Makefile.in: Expand comment about building loaddefs.el.
24189
24190 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
24191
24192 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
24193 Comment use of defadvice.
24194
24195 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
24196
24197 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
24198
24199 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
24200 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
24201 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
24202 * progmodes/idlw-shell.el, progmodes/ld-script.el,
24203 * progmodes/which-func.el, ruler-mode.el, strokes.el,
24204 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
24205 for backward compatibility for faces that did not appear in the
24206 previous Emacs release.
24207
24208 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
24209
24210 2005-08-15 Kim F. Storm <storm@cua.dk>
24211
24212 * emulation/cua-base.el (cua-delete-region): Return t if
24213 deleted region was non-empty.
24214 (cua-replace-region): Inhibit overwrite-mode for
24215 self-insert-command if replaced region was non-empty.
24216 (cua--explicit-region-start, cua--status-string): Make them
24217 buffer-local at top-level...
24218 (cua-mode): ...rather than when mode is enabled.
24219
24220 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
24221
24222 * progmodes/vhdl-mode.el (vhdl-emacs-21):
24223 Set t for Emacs 21, 22, and so on.
24224
24225 2005-08-15 David Ponce <david@dponce.com>
24226
24227 * tree-widget.el: Update Commentary header.
24228 (tree-widget-theme): Doc fix.
24229 (tree-widget-space-width): New option.
24230 (tree-widget-image-properties): Look up in the default theme too.
24231 (tree-widget--cursors): Only for images with arrow pointer shape.
24232 (tree-widget-lookup-image): Pointer shape is hand by default.
24233 (tree-widget-icon): Rename generic icon widget from
24234 `tree-widget-control'.
24235 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
24236 derive from `tree-widget-icon'.
24237 (tree-widget-handle): Improve default look and feel of the text
24238 representation.
24239 (tree-widget): Rename :*-control properties to :*-icon properties.
24240 Add :action and :help-echo properties.
24241 (tree-widget-after-toggle-functions): Move.
24242 (tree-widget-close-node, tree-widget-open-node): Remove.
24243 (tree-widget-before-create-icon-functions): New hook.
24244 (tree-widget-value-create): Update to allow customization of icons
24245 and nodes at run-time via that new hook.
24246 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
24247 (tree-widget-icon-action, tree-widget-icon-help-echo)
24248 (tree-widget-action, tree-widget-help-echo): New functions.
24249
24250 2005-08-15 Kim F. Storm <storm@cua.dk>
24251
24252 * ido.el (ido-buffer-internal): Use with-no-warnings.
24253 (ido-make-merged-file-list): Use while-no-input.
24254
24255 2005-08-15 Richard M. Stallman <rms@gnu.org>
24256
24257 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
24258 (flyspell-large-region): Fix doc and custom type.
24259
24260 2005-08-14 Richard M. Stallman <rms@gnu.org>
24261
24262 * files.el (interpreter-mode-alist): Doc fix.
24263
24264 * mail/rmail.el (rmail-nonignored-headers): New variable.
24265 (rmail-clear-headers): Use it.
24266 (rmail-reply): Better handling of mail-followup-to header.
24267
24268 * progmodes/sh-script.el (sh-font-lock-keywords-var):
24269 Rename variable from sh-font-lock-keywords. In the `shell' entry,
24270 don't try to refer to executable-font-lock-keywords.
24271 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
24272 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
24273 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
24274 (sh-mode): Set comment-start-skip, local-abbrev-table,
24275 imenu-case-fold-search.
24276 (sh-set-shell): Don't set them here.
24277 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
24278 Don't cache the results in the original alist; don't ever modify
24279 that alist.
24280
24281 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
24282
24283 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
24284 empty.
24285
24286 2005-08-15 Andreas Schwab <schwab@suse.de>
24287
24288 * desktop.el: Put autoload cookie at risky-local-variable declarations.
24289
24290 * dired.el, info.el, mail/rmail.el: Revert last change.
24291
24292 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
24293
24294 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
24295 modification in `eval-after-load' form.
24296 * info.el: Likewise.
24297 * mail/rmail.el: Likewise.
24298
24299 2005-08-14 Juri Linkov <juri@jurta.org>
24300
24301 * progmodes/compile.el (compilation-mode-font-lock-keywords):
24302 Remove highlighting of "Compilation started". Highlight only
24303 the word "finished" in "Compilation finished". Add highlighting
24304 of "interrupt", "killed", "terminated" and the exit code.
24305 (compilation-start): Add newline after header. Use exactly the
24306 same time stamp format as the finishing message.
24307 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
24308
24309 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
24310 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
24311 Add highlighting of "interrupt", "killed", "terminated".
24312
24313 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
24314 enabled and the current command is self-insert-command, call it
24315 explicitly with overwrite-mode bound to nil, to not allow it
24316 to delete the character after the selected region.
24317
24318 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
24319
24320 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
24321 move-end-of-line, end-of-line, and beginning-of-line to the list
24322 of commands after which the echo area is updated.
24323
24324 2005-08-12 Eli Zaretskii <eliz@gnu.org>
24325
24326 * cus-edit.el (custom-save-all, custom-save-delete):
24327 Bind recentf-exclude to exclude custom-file.
24328
24329 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
24330
24331 * mail/rmailsum.el (rmail-summary-end-of-message): New command
24332 to go to the bottom of the mail message. Added to
24333 `rmail-summary-mode-map' with key "/".
24334 (rmail-summary-show-message): New (internal) function for use by
24335 both `rmail-summary-beginning/end-of-message'.
24336 (rmail-summary-beginning-of-message): Change to use
24337 rmail-summary-show-message.
24338
24339 * mail/rmail.el (rmail-end-of-message): New command to go to the
24340 end of the current message. Added to `rmail-mode-map' with key "/".
24341 (rmail-beginning-of-message): Fix to work as documented.
24342 (rmail-mode): Change documentation.
24343
24344 * progmodes/compile.el (compilation-start): Add the line
24345 "Compilation started" with compilation start time.
24346 (compilation-mode-font-lock-keywords): Add `started' to keywords.
24347
24348 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
24349
24350 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
24351 of menu items.
24352
24353 2005-08-11 Richard M. Stallman <rms@gnu.org>
24354
24355 * simple.el (pop-global-mark): Reverse test of widen-automatically.
24356
24357 * battery.el (battery-status-function): Don't use ignore-errors.
24358
24359 2005-08-11 Lute Kamstra <lute@gnu.org>
24360
24361 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
24362 define-obsolete-variable-alias.
24363
24364 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
24365
24366 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
24367 (ange-ftp-send-cmd): Revert last change, and expand
24368 the comment explaining the problem.
24369
24370 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
24371
24372 * ldefs-boot.el: Update.
24373
24374 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
24375 item to "Time, Load and Mail". Change help echo text.
24376
24377 * time.el (display-time-use-mail-icon, display-time-format)
24378 (display-time-string-forms): Shorten first line of docstrings.
24379
24380 2005-08-10 Lars Hansen <larsh@soem.dk>
24381
24382 * desktop.el (desktop-buffer-mode-handlers):
24383 Make non-customizable. Add autoload cookie. Change initial value to
24384 nil; add elements in respective modules instead. Fix doc string.
24385 (desktop-load-file): New function.
24386 (desktop-minor-mode-handlers): New autoloaded variable.
24387 (desktop-create-buffer): Call minor mode handlers.
24388 Use desktop-load-file to load major and minor mode modules prior to
24389 checking for a handler.
24390 (desktop-save): Don't add nil to desktop-minor-modes for minor
24391 modes with nil function in desktop-minor-mode-table. Don't delete
24392 desktop file before rewriting it.
24393 (desktop-locals-to-save): Add autoload cookie. Don't make
24394 automatically buffer-local. Add variables column-number-mode,
24395 size-indication-mode, indent-tabs-mode,
24396 indicate-buffer-boundaries, indicate-empty-lines and
24397 show-trailing-whitespace.
24398 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
24399 regexps. Don't use desktop-clear-preserve-buffers-regexp.
24400 (desktop-clear-preserve-buffers-regexp): Delete.
24401 (desktop-clear-preserve-buffers): Update initial value and docstring.
24402 (desktop-save-buffer): Fix doc string.
24403
24404 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
24405 (hilit-chg-desktop-restore): New function.
24406 (highlight-changes-mode): Add highlight-changes-mode to
24407 desktop-locals-to-save.
24408
24409 * dired.el: Add handler to desktop-buffer-mode-handlers.
24410 (dired-restore-desktop-buffer): Remove autoload cookie.
24411 (dired-mode): Add autoload cookie.
24412
24413 * info.el: Add handler to desktop-buffer-mode-handlers.
24414 (Info-restore-desktop-buffer): Remove autoload cookie.
24415 (Info-mode): Add autoload cookie.
24416
24417 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
24418 (mh-restore-desktop-buffer): Remove autoload cookie.
24419 (mh-folder-mode): Add autoload cookie.
24420
24421 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
24422 (rmail-restore-desktop-buffer): Remove autoload cookie.
24423
24424 2005-08-11 Masatake YAMATO <jet@gyve.org>
24425
24426 * hexl.el (hexl-address-region):
24427 (hexl-ascii-region, hexl-font-lock-keywords):
24428 (hexl-highlight-line-range): Use the term "region"
24429 instead of "area" for consistency with the other symbols
24430 defined in hexl.el.
24431
24432 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
24433
24434 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
24435 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
24436 out by Juri Linkov). Add `display-battery-mode'.
24437
24438 2005-08-09 Juri Linkov <juri@jurta.org>
24439
24440 * progmodes/compile.el (compilation-mode-font-lock-keywords):
24441 Remove `-text' from face variable names.
24442 (compilation-error-file-name, compilation-warning-file-name)
24443 (compilation-info-file-name): Delete faces.
24444 (compilation-line-number, compilation-column-number):
24445 Remove face underlining.
24446 (compilation-message-face): Set to `underline' value by default.
24447 (compilation-error-face, compilation-warning-face)
24448 (compilation-info-face): Remove `-file-name' from face names.
24449 (compilation-error-text-face, compilation-warning-text-face)
24450 (compilation-info-text-face): Delete face variables.
24451 (compilation-text-face): Delete function.
24452
24453 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
24454 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
24455 (grep-error-face): Set to `compilation-error' instead of
24456 `compilation-error-face' (which is redefined to `grep-hit-face' in
24457 grep buffers).
24458 (grep-mode-font-lock-keywords): Remove `-text' from face variable
24459 names. Use `grep-error-face' instead of `compilation-error-text-face'.
24460
24461 * dired-aux.el (dired-do-query-replace-regexp):
24462 Use `query-replace-read-args'.
24463
24464 * replace.el (query-replace-read-from, query-replace-read-to)
24465 (query-replace-read-args): Rename arg `string' to `prompt'.
24466
24467 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
24468
24469 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
24470
24471 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
24472 uploading files.
24473 (ange-ftp-canonize-filename): Handle file names beginning with ~
24474 correctly.
24475
24476 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
24477
24478 * textmodes/fill.el (canonically-space-region)
24479 (fill-context-prefix, fill-french-nobreak-p)
24480 (fill-delete-newlines, fill-comment-paragraph)
24481 (justify-current-line): "?\ " -> "?\s".
24482
24483 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
24484
24485 * textmodes/fill.el (fill-nonuniform-paragraphs):
24486 Improve argument/docstring consistency.
24487
24488 2005-08-09 Richard M. Stallman <rms@gnu.org>
24489
24490 * textmodes/ispell.el (ispell-word): More fboundp checks.
24491
24492 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
24493 (find-file-noselect-1): Call it here, only if RAWFILE.
24494 (normal-mode): Always set some major mode.
24495 (save-some-buffers-action-alist): Change some explanation strings.
24496 (file-name-non-special): In the `quote' method, use unwind-protect.
24497
24498 2005-08-09 Magnus Henoch <mange@freemail.hu>
24499
24500 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
24501 (ispell-have-aspell-dictionaries): New variable.
24502 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
24503 (ispell-get-aspell-config-value): New function.
24504 (ispell-aspell-find-dictionary): New function.
24505 (ispell-aspell-add-aliases): New function.
24506 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
24507 appropriate. Don't look for ispell dictionaries if we use aspell.
24508 (ispell-menu-map): Don't build a submenu of dictionaries.
24509
24510 2005-08-09 Richard M. Stallman <rms@gnu.org>
24511
24512 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
24513 (sql-read-passwd): Use read-passwd.
24514
24515 * progmodes/idlw-toolbar.el (idlwave-toolbar)
24516 (idlwave-toolbar-is-possible): Add defvars.
24517
24518 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
24519 Avoid warnings.
24520
24521 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
24522 (idlwave-system-class-info, idlwave-executive-commands-alist):
24523 Use defvar.
24524
24525 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
24526
24527 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
24528 Avoid warnings.
24529
24530 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
24531 and content-type: headers.
24532
24533 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
24534
24535 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
24536 and rename some of them to be more self-explanatory.
24537
24538 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
24539
24540 * startup.el (command-line-1): Implement -scriptload.
24541
24542 * replace.el (occur-engine): Initial *Occur* output not undoable.
24543
24544 * menu-bar.el (menu-bar-file-menu): Rename some menu items
24545 and improve help strings.
24546
24547 * isearch.el (isearch-repeat): When changing direction,
24548 mark search successful.
24549
24550 * ediff-init.el: Use (featurep 'xemacs).
24551
24552 * comint.el (send-invisible): Identify buffer, if not selected.
24553
24554 * align.el: Delete autoload for c-guess-basic-syntax.
24555
24556 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
24557
24558 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
24559 Improve argument/docstring consistency. Doc fixes.
24560 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
24561 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
24562 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
24563 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
24564 (r2bv-organization, r2bv-pages, r2bv-primary-author)
24565 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
24566 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
24567 Defvar at compile time.
24568
24569 2005-08-09 Juri Linkov <juri@jurta.org>
24570
24571 * info.el: Replace `info' with upper-case `Info' where appropriate.
24572 (info-title-1, info-title-2, info-title-3, info-title-4)
24573 (info-menu-header): Move up face definitions.
24574 (info-menu-star): Rename from `info-menu-5'.
24575 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
24576 (Info-fontify-visited-nodes): Fix docstring.
24577 (Info-hide-note-references): Fix docstring.
24578 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
24579 menu items in the same way as on cross-references.
24580 (info-apropos): Fix sorting order and formatting to be like in the
24581 stand-alone Info browser. Display error messages for 1 sec.
24582 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
24583 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
24584 from the menu bar.
24585 (Info-insert-dir): Restore point after calling
24586 `insert-buffer-substring'.
24587
24588 2005-08-08 Richard M. Stallman <rms@gnu.org>
24589
24590 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
24591 (recompute-lucid-menubar): Add defvars.
24592
24593 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
24594
24595 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
24596
24597 * net/net-utils.el (run-dig): Rename from `dig'.
24598
24599 * play/gametree.el (gametree-mode): Use make-local-variable,
24600 not make-variable-buffer-local.
24601
24602 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
24603
24604 * ansi-color.el (ansi-color-make-extent)
24605 (ansi-color-set-extent-face): Use fboundp, not functionp.
24606
24607 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
24608 not make-variable-buffer-local.
24609
24610 * bookmark.el (Info-current-file): Add defvar.
24611 (bookmark-jump-noselect): Use with-no-warnings.
24612
24613 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
24614
24615 * ebuff-menu.el (Helper-return-blurb): Add defvar.
24616
24617 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
24618
24619 * find-file.el (ada-procedure-start-regexp)
24620 (ada-package-start-regexp): Add defvars.
24621
24622 * info.el (Info-insert-dir): Use insert-buffer-substring.
24623
24624 * xml.el (xml-att-def-re): Add defvar.
24625
24626 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
24627 calling convention.
24628
24629 * subr.el (while-no-input): Return t if there is input.
24630
24631 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
24632
24633 * cus-start.el (all): Add `overflow-newline-into-fringe'.
24634
24635 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
24636
24637 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
24638 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
24639
24640 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
24641
24642 * cmuscheme.el (scheme-start-file): Replace reference to
24643 `user-emacs-directory' by "~/.emacs.d/".
24644
24645 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
24646
24647 * info.el (Info-dir-remove-duplicates): Avoid case folding
24648 in loop; instead, keep downcased strings for comparison.
24649 Suggested by Helmut Eller.
24650
24651 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
24652
24653 Sync with Tramp 2.0.50.
24654
24655 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
24656 XEmacs case; not necessary anymore.
24657 (tramp-user-regexp): Allow "@" as part of user name.
24658 (tramp-handle-set-visited-file-modtime)
24659 (tramp-handle-insert-file-contents)
24660 (tramp-handle-write-region): No special handling for
24661 `last-coding-system-used, because this is done in
24662 `tramp-accept-process-output' now.
24663 (tramp-accept-process-output): New defun.
24664 (tramp-process-one-action, tramp-process-one-multi-action)
24665 (tramp-wait-for-regexp, tramp-wait-for-output)
24666 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
24667 Howells <dhowells@redhat.com>.
24668 (clear-visited-file-modtime): Defadvice removed. The check for
24669 unset buffer's modtime does not need to be based on
24670 `tramp-buffer-file-attributes'. Suggested by RMS.
24671 (tramp-message): Insert "\n" if not being at beginning of line.
24672 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
24673 sequence with same logic.
24674 (tramp-completion-handle-expand-file-name): Discard call of
24675 `tramp-drop-volume-letter'. It is not necessary, and there have
24676 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
24677 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
24678 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
24679 should always be visible.
24680 (tramp-handle-insert-directory, tramp-setup-complete)
24681 (tramp-set-process-query-on-exit-flag)
24682 (tramp-append-tramp-buffers): Pacify byte-compiler.
24683 (tramp-bug): Delete non-existing variables from list.
24684 Apply `tramp-load-report-modules' as pre-hook.
24685 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
24686 `shell-prompt-pattern' because of non-7bit characters.
24687 Reported by Sebastian Luque <sluque@mun.ca>.
24688 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
24689 (tramp-match-string-list): Remove function.
24690 (tramp-wait-for-regexp): Remove call of that function.
24691 Suggested by Kim F. Storm <storm@cua.dk>.
24692 (tramp-set-auto-save-file-modes): Use octal integer code #o600
24693 instead of octal character code ?\600. The latter resulted in a
24694 syntax error with XEmacs.
24695
24696 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
24697 XEmacs case; not necessary anymore.
24698 (tramp-smb-handle-write-region): No special handling for
24699 `last-coding-system-used, because this is done in
24700 `tramp-accept-process-output' now.
24701 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
24702
24703 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
24704
24705 * wid-edit.el (widget-choice-value-create):
24706 Unconditionally respect user choice. Set :explicit-choice back to nil
24707 when no longer needed.
24708 (widget-choice-action): Unconditionally respect user choice.
24709 Eliminate :explicit-choice-value.
24710
24711 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
24712
24713 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
24714 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
24715 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
24716 running new function `toggle-indicate-empty-lines'.
24717 Rename "Customize" item to "Customize fringe".
24718 Rename "Indicators" item to "Buffer boundaries" and change help echo.
24719 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
24720 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
24721 Delete "Empty lines only" item.
24722 (menu-bar-showhide-fringe-ind-customize): New function.
24723 (menu-bar-showhide-fringe-ind-mixed)
24724 (menu-bar-showhide-fringe-ind-box)
24725 (menu-bar-showhide-fringe-ind-right)
24726 (menu-bar-showhide-fringe-ind-left)
24727 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
24728 instead of `fringe-indicators'.
24729
24730 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
24731
24732 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
24733 Change the date of last update.
24734
24735 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
24736
24737 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
24738 (viper-exec-yank, viper-put-back): Don't display modification msg
24739 if in the minibuffer.
24740
24741 * viper-init.el (viper-replace-overlay-cursor-color)
24742 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
24743 Make variables frame local.
24744
24745 * viper-util.el (viper-append-filter-alist): Use append instead of
24746 nconc.
24747
24748 * viper.el (viper-vi-state-mode-list)
24749 (viper-emacs-state-mode-list): Move help-mode and
24750 completion-list-mode from the first list to the second.
24751 (viper-mode): Docstring.
24752 (viper-go-away, viper-non-hook-settings): Don't localize
24753 minor-mode-alist in newer Emacsen. Add advice to
24754 set-cursor-color. Don't bind "\C-c\\".
24755
24756 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
24757
24758 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
24759 (scheme-macro-expand-command): New user options.
24760 (scheme-trace-procedure, scheme-expand-current-form): New commands.
24761 (scheme-form-at-point, scheme-start-file)
24762 (scheme-interactively-start-process): New functions.
24763 (scheme-get-process): New function, extracted from `scheme-proc'.
24764 (run-scheme): Call `scheme-start-file' to get start file, and pass
24765 it to `make-comint'.
24766 (switch-to-scheme, scheme-proc):
24767 Call `scheme-interactively-start-process' if no Scheme buffer/process
24768 is available.
24769
24770 2005-08-06 Juri Linkov <juri@jurta.org>
24771
24772 * progmodes/compile.el (compilation-mode-font-lock-keywords):
24773 Use `compilation-text-face', `compilation-info-text-face' and
24774 `compilation-error-text-face' instead of `font-lock-keyword-face'.
24775 (compilation-error): New face.
24776 (compilation-error-file-name): Inherit from
24777 `compilation-error' instead of `font-lock-warning-face'.
24778 (compilation-warning-file-name): Inherit from
24779 `compilation-warning' instead of `font-lock-warning-face'.
24780 (compilation-info, compilation-error-file-name)
24781 (compilation-warning-file-name, compilation-info-file-name)
24782 (compilation-line-number, compilation-column-number): Doc fix.
24783 (compilation-error-text-face, compilation-warning-text-face)
24784 (compilation-info-text-face): New face variables.
24785 (compilation-line-face, compilation-column-face)
24786 (compilation-enter-directory-face)
24787 (compilation-leave-directory-face): Doc fix.
24788 (compilation-text-face): New function.
24789
24790 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
24791 instead of 1 to display binary file names as info file links.
24792 (grep-error-face): Use `compilation-error-face' instead of
24793 `font-lock-keyword-face'.
24794 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
24795 and `compilation-warning-text-face' instead of
24796 `font-lock-keyword-face'. Use `compilation-error-text-face'
24797 instead of `grep-error-face'.
24798
24799 2005-08-05 Kenichi Handa <handa@m17n.org>
24800
24801 * international/code-pages.el: Add autoload cookies for all coding
24802 systems.
24803
24804 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
24805
24806 * cus-start.el (all): Put undo.c where it alphabetically belongs.
24807
24808 2005-08-04 Juri Linkov <juri@jurta.org>
24809
24810 * progmodes/compile.el (compilation-mode-map):
24811 * progmodes/grep.el (grep-mode-map):
24812 Bind TAB to `compilation-next-error' and [backtab] to
24813 `compilation-previous-error'.
24814
24815 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
24816 matching line numbers, column numbers and their ranges with regexp
24817 matching only line numbers.
24818 (grep-context-face): New face variable.
24819 (grep-mode-font-lock-keywords): Use it.
24820
24821 * faces.el (read-face-name): Delete duplicate faces.
24822
24823 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
24824
24825 * thumbs.el (thumbs-find-image): Don't make variables
24826 automatically buffer local.
24827 (thumbs-current-tmp-filename, thumbs-current-image-filename)
24828 (thumbs-image-num): Make automatically buffer local.
24829 (thumbs-show-thumbs-list): Use `make-local-variable', not
24830 `make-variable-buffer-local'.
24831 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
24832
24833 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
24834 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
24835 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
24836 (bother, bye, canyou, chatlst, continue, deathlst, describe)
24837 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
24838 (feelings-about, foullst, found, hello, history, howareyoulst)
24839 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
24840 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
24841 (neglst, obj, object, owner, please, problems, qlist)
24842 (random-adjective, relation, remlst, repetitive-shortness)
24843 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
24844 (shortlst, something, sportslst, stallmanlst, states, subj)
24845 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
24846 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
24847 Defvar at compile time.
24848
24849 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
24850 not `make-variable-buffer-local'.
24851
24852 2005-08-02 Kim F. Storm <storm@cua.dk>
24853
24854 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
24855 rectangle overlay in selected window.
24856
24857 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
24858
24859 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
24860 instead of display group. Make `indicate-buffer-boundaries'
24861 customizable through Custom.
24862
24863 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
24864
24865 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
24866 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
24867 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
24868 (gdb-put-string): Fix typos in docstrings.
24869
24870 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
24871
24872 Update copyright notices of files in progmodes directory for
24873 release of Emacs 22.1.
24874
24875 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
24876
24877 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
24878 Don't barf if the GUD buffer has been killed.
24879
24880 2005-08-01 Kim F. Storm <storm@cua.dk>
24881
24882 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
24883
24884 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
24885
24886 * simple.el (next-error-follow-minor-mode):
24887 make-variable-buffer-local -> make-local-variable.
24888
24889 * emacs-lisp/cl-extra.el: Require CL also when compiling.
24890
24891 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
24892 (byte-compile-form-make-variable-buffer-local): New functions to warn
24893 about misuses of make-variable-buffer-local where make-local-variable
24894 was meant.
24895
24896 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
24897
24898 * bs.el (bs-attributes-list): Doc fix.
24899 (bs): Update url-link.
24900
24901 * desktop.el (desktop-save-buffer): Fix typos in docstring.
24902 (desktop-load-default): Simplify.
24903
24904 * ibuffer.el (ibuffer-columnize-and-insert-list)
24905 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
24906 (ibuffer-unmark-all, ibuffer-toggle-marks)
24907 (ibuffer-unmark-forward, ibuffer-unmark-backward)
24908 (ibuffer-compile-make-format-form, ibuffer-format-column)
24909 (ibuffer-current-buffers-with-marks)
24910 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
24911 (ibuffer): Doc fix.
24912 (ibuffer-mode): Fix typo in docstring.
24913 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
24914 with `define-obsolete-variable-alias'.
24915 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
24916
24917 2005-07-29 Kenichi Handa <handa@m17n.org>
24918
24919 * international/mule-cmds.el (select-message-coding-system):
24920 Be sure to use LF for end-of-line. If no coding system is decided,
24921 return iso-8859-1-unix.
24922
24923 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
24924
24925 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
24926 (ange-ftp-pending-error-line): New vars.
24927 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
24928 to handle the non-fatal no-route-to-host messages.
24929 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
24930
24931 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
24932
24933 * isearch.el (isearch-mode-map, isearch-other-meta-char)
24934 (isearch-quote-char, isearch-printing-char)
24935 (isearch-text-char-description): "?\ " -> "?\s".
24936 (isearch-lazy-highlight-cleanup)
24937 (isearch-lazy-highlight-initial-delay)
24938 (isearch-lazy-highlight-interval)
24939 (isearch-lazy-highlight-max-at-a-time)
24940 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
24941 Declare with define-obsolete-*-alias macros.
24942 (isearch-forward): Fix typo in docstring.
24943 (search-invisible, search-ring-yank-pointer)
24944 (regexp-search-ring-yank-pointer): Doc fixes.
24945
24946 * recentf.el (recentf-menu-append-commands-p): Declare with
24947 `define-obsolete-variable-alias'.
24948 (recentf-max-saved-items, recentf-menu-filter)
24949 (recentf-arrange-by-rule-subfilter): Doc fixes.
24950 (recentf-menu-append-commands-flag)
24951 (recentf-initialize-file-name-history, recentf-expand-file-name)
24952 (recentf-clear-data): Fix typos in docstrings.
24953
24954 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
24955
24956 * progmodes/gdb-ui.el: Smarten comments.
24957 (gdb-info-breakpoints-custom): Use nowarn when finding file.
24958
24959 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
24960
24961 * term/apollo.el (terminal-init-apollo): New function containing
24962 all former top level forms in the file.
24963 * term/bobcat.el (terminal-init-bobcat):
24964 * term/cygwin.el (terminal-init-cygwin):
24965 * term/iris-ansi.el (terminal-init-iris-ansi):
24966 * term/linux.el (terminal-init-linux):
24967 * term/news.el (terminal-init-news):
24968 * term/rxvt.el (terminal-init-rxvt):
24969 * term/sun.el (terminal-init-sun):
24970 * term/tvi970.el (terminal-init-tvi970):
24971 * term/vt100.el (terminal-init-vt100):
24972 * term/vt102.el (terminal-init-vt102):
24973 * term/vt125.el (terminal-init-vt125):
24974 * term/vt200.el (terminal-init-vt200):
24975 * term/vt201.el (terminal-init-vt201):
24976 * term/vt220.el (terminal-init-vt220):
24977 * term/vt240.el (terminal-init-vt240):
24978 * term/vt300.el (terminal-init-vt300):
24979 * term/vt320.el (terminal-init-vt320):
24980 * term/vt400.el (terminal-init-vt400):
24981 * term/vt420.el (terminal-init-vt420):
24982 * term/wyse50.el (terminal-init-wyse50):
24983 * term/xterm.el (terminal-init-xterm): Likewise.
24984
24985 * term/README: Describe the terminal-init-* functionality.
24986
24987 * startup.el (command-line): After loading the terminal initialization
24988 file call the corresponding terminal initialization function.
24989
24990 2005-07-27 Kenichi Handa <handa@m17n.org>
24991
24992 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
24993 negative.
24994
24995 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
24996 (ps-mule-composition-prologue): Fix for the case that
24997 RelativeCompose is false.
24998
24999 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
25000
25001 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
25002
25003 * descr-text.el (describe-char): Handle the case where the list of
25004 chars is displayed in a separate frame.
25005 Be a bit more discriminating when looking for the char.
25006
25007 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
25008
25009 * bookmark.el (bookmark-automatically-show-annotations)
25010 (bookmark-read-annotation-text-func): Doc fixes.
25011 (bookmark-save): Improve argument/docstring consistency.
25012 (bookmark-get-bookmark, bookmark-get-bookmark-record)
25013 (bookmark-alist-from-buffer)
25014 (bookmark-upgrade-file-format-from-0)
25015 (bookmark-grok-file-format-version)
25016 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
25017 (bookmark-read-annotation-mode)
25018 (bookmark-insert-current-bookmark, bookmark-jump)
25019 (bookmark-exit-hook): Fix typos in docstrings.
25020 (bookmark-exit-hooks): Define as obsolete alias.
25021 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
25022 not `bookmark-exit-hooks'. Fix docstring.
25023 (bookmark-bmenu-select): "?\ " -> "?\s".
25024
25025 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
25026
25027 * startup.el (command-line): Fix typo.
25028
25029 2005-07-24 Richard M. Stallman <rms@gnu.org>
25030
25031 * tooltip.el (tooltip-mode): Test emacs-basic-display,
25032 not emacs-quick-startup.
25033
25034 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
25035
25036 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
25037 (reb-next-match, reb-show-subexp): Use `with-selected-window'
25038 instead of `reb-with-current-window'.
25039 (reb-prev-match): Likewise. Also, don't move left if the search
25040 was unsuccessful.
25041 (reb-initialize-buffer): New function.
25042 (re-builder, reb-change-syntax): Use it.
25043
25044 * man.el (Man-goto-page): Make second argument NOERROR optional.
25045
25046 2005-07-23 Richard M. Stallman <rms@gnu.org>
25047
25048 * man.el (Man-bgproc-sentinel): Check here for failure to find
25049 any man page in the output, and report the error here.
25050 (Man-arguments): Make it permanent local.
25051 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
25052 (Man-mode): Pass t for NOERROR.
25053
25054 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
25055 (grep-mode-font-lock-keywords):
25056 Don't use compilation-...-face for messages that are not file names.
25057
25058 * progmodes/compile.el (compilation-mode-font-lock-keywords):
25059 Don't use compilation-...-face for messages that are not file names.
25060
25061 2005-07-22 Juri Linkov <juri@jurta.org>
25062
25063 * startup.el (normal-splash-screen): Update menu name.
25064
25065 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
25066
25067 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
25068
25069 * term/xterm.el: Load term/rxvt if the terminal is actually an
25070 rxvt terminal.
25071 (xterm-rxvt-set-background-mode): Remove, not used anymore.
25072
25073 * term/rxvt.el (function-key-map): Use substitute-key-definition
25074 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
25075
25076 * term/cygwin.el: New file.
25077
25078 2005-07-22 Kim F. Storm <storm@cua.dk>
25079
25080 * image-file.el (insert-image-file, image-file-yank-handler):
25081 Fix last change to maintain a (unique) yank-handler on yanked images.
25082
25083 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
25084
25085 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
25086 of the file size (as in "177B" for 177 bytes). This happens with
25087 "ls -lh" on FreeBSD.
25088
25089 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
25090
25091 * hilit-chg.el (highlight-changes-global-initial-state)
25092 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
25093 (hilit-chg-fixup, highlight-changes-mode):
25094 Fix typos in docstrings.
25095 (highlight-changes-global-modes, highlight-changes-rotate-faces):
25096 Doc fixes.
25097
25098 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
25099
25100 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
25101 mode function using `eval-after-load'.
25102
25103 2005-07-21 Kim F. Storm <storm@cua.dk>
25104
25105 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
25106 included when reporting an Emacs crash, and tell about the DEBUG file.
25107
25108 * image-file.el (insert-image-file): Add yank-handler.
25109 (image-file-yank-handler): Yank handler to make unique copies of
25110 images when they are yanked into a buffer next to each other.
25111
25112 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
25113
25114 * comint.el (comint-use-prompt-regexp, comint-send-input)
25115 (comint-source-default, comint-extract-string)
25116 (comint-get-source, comint-word, comint-completion)
25117 (comint-source, comint-prompt-read-only, comint-update-fence):
25118 Fix typos in docstrings.
25119 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
25120 Declare with define-obsolete-*-alias macros.
25121 (comint-previous-matching-input-from-input)
25122 (comint-next-matching-input-from-input)
25123 (comint-previous-matching-input, comint-next-matching-input)
25124 (comint-forward-matching-input):
25125 Improve argument/docstring consistency.
25126
25127 * desktop.el (desktop-clear-preserve-buffers-regexp):
25128 Also preserve the *server* buffer.
25129
25130 * simple.el (clone-indirect-buffer): Doc fix.
25131 (fixup-whitespace, just-one-space)
25132 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
25133 (next-error, next-error-highlight)
25134 (next-error-highlight-no-select, next-error-last-buffer)
25135 (next-error-buffer-p, next-error-find-buffer, next-error)
25136 (previous-error, next-error-no-select, previous-error-no-select)
25137 (open-line, split-line, minibuffer-prompt-width, kill-new)
25138 (binary-overwrite-mode): Fix typos in docstrings.
25139 (set-fill-column): Fix typo in message.
25140
25141 * skeleton.el (skeleton-proxy-new): Doc fix.
25142
25143 * strokes.el (strokes-load-hook): Doc fix.
25144 (strokes-grid-resolution, strokes-get-grid-position)
25145 (strokes-renormalize-to-grid, strokes-read-stroke)
25146 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
25147 (strokes-global-map): Fix typos in docstrings.
25148 (strokes-help): Doc fix. Fix help message and pass it through
25149 `substitute-command-keys'.
25150
25151 * tempo.el (tempo-insert-prompt, tempo-interactive)
25152 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
25153 (tempo-insert-string-functions, tempo-local-tags)
25154 (tempo-define-template, tempo-insert-template)
25155 (tempo-insert-prompt-compat, tempo-is-user-element)
25156 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
25157 Fix typos in docstrings.
25158
25159 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
25160 (vcursor-key-bindings, vcursor-use-vcursor-map)
25161 (vcursor-find-window, vcursor-scroll-down)
25162 (vcursor-disable, vcursor-beginning-of-buffer)
25163 (vcursor-end-of-buffer): Fix typos in docstrings.
25164 (vcursor-relative-move, vcursor-get-char-count):
25165 Improve argument/docstring consistency.
25166
25167 * version.el: "?\ " -> "?\s".
25168
25169 * wid-edit.el (widget-default-create, widget-after-change)
25170 (widget-default-format-handler, widget-checklist-add-item)
25171 (widget-radio-add-item, widget-choose, widget-specify-secret)
25172 (widget-field-value-create, widget-field-value-get)
25173 (widget-editable-list-format-handler)
25174 (widget-editable-list-entry-create, widget-group-value-create)
25175 (widget-documentation-link-add)
25176 (widget-documentation-string-value-create): "?\ " -> "?\s".
25177 (widget-convert-text): Doc fix.
25178 (widget-narrow-to-field, widget-field-find)
25179 (widget-url-link-action, widget-emacs-library-link-action)
25180 (widget-color-notify): Fix typos in docstrings.
25181
25182 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
25183 (x-select-text, set-w32-system-coding-system)
25184 (w32-add-charset-info): Fix typos in docstrings.
25185
25186 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
25187 (cua-enable-cua-keys, cua-use-hyper-key)
25188 (cua-virtual-rectangle-edges): Fix typos in docstrings.
25189 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
25190
25191 * net/tramp.el (tramp-handle-load): Fix typo in error message.
25192
25193 * emacs-lisp/re-builder.el (regexp-builder): Declare with
25194 `defalias' instead of faking it.
25195
25196 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
25197 (eshell-ls-missing, eshell-ls-dired-initial-args)
25198 (eshell-ls-use-in-dired): Fix typos in docstrings.
25199
25200 2005-07-20 Kim F. Storm <storm@cua.dk>
25201
25202 * emulation/cua-base.el (cua-mode): Improve doc string.
25203
25204 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
25205
25206 * abbrev.el (expand-region-abbrevs): Doc fix.
25207 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
25208 Improve argument/docstring consistency.
25209
25210 * arc-mode.el (archive-get-descr, archive-alternate-display):
25211 Doc fixes.
25212 (archive-l-e): Improve argument/docstring consistency.
25213 (archive-tmpdir, archive-unixdate, archive-unixtime)
25214 (archive-chmod-entry): Fix typos in docstrings.
25215 (archive-unflag, archive-unflag-backwards)
25216 (archive-unmark-all-files): "?\ " -> "?\s".
25217
25218 * buff-menu.el (Buffer-menu-unmark): Doc fix.
25219 (Buffer-menu-not-modified, Buffer-menu-execute)
25220 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
25221 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
25222
25223 * composite.el (compose-string, encode-composition-rule)
25224 (compose-last-chars): Fix typos in docstrings.
25225
25226 * desktop.el (desktop-enable, desktop-basefilename):
25227 Declare with `define-obsolete-variable-alias'.
25228 (desktop-internal-v2s): Don't quote keywords.
25229 (desktop-clear): "?\ " -> "?\s".
25230
25231 * dired.el (dired-align-file, dired-flag-backup-files)
25232 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
25233 (dired-listing-switches, dired-ls-F-marks-symlinks)
25234 (dired-dwim-target, dired-load-hook, dired-mode-hook)
25235 (dired-directory, dired-faces, dired, dired-revert)
25236 (dired-mode, dired-summary, dired-view-file)
25237 (dired-copy-filename-as-kill, dired-delete-file)
25238 (dired-no-confirm, dired-unmark-all-marks)
25239 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
25240 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
25241 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
25242 Fix typos in message strings.
25243
25244 * dired-x.el (virtual-dired): Declare with `defalias'.
25245 (dired-mark-unmarked-files, dired-local-variables-file)
25246 (dired-omit-here-always): Doc fix.
25247 (dired-omit-mode, dired-find-subdir)
25248 (dired-enable-local-variables, dired-clean-up-buffers-too)
25249 (dired-extra-startup, dired-mark-extension, dired-jump)
25250 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
25251 (dired-smart-shell-command, dired-guess-shell-alist-user)
25252 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
25253 (dired-x-bind-find-file, dired-x-submit-report):
25254 Fix typos in docstrings.
25255 (dired-mark-unmarked-files): "?\ " -> "?\s".
25256
25257 * dirtrack.el (dirtrack-list): Fix typos in docstring.
25258
25259 * faces.el (describe-face): "?\ " -> "?\s".
25260 (read-all-face-attributes, read-face-font, modify-face)
25261 (face-attr-construct, italic): Fix typos in docstrings.
25262 (frame-update-face-colors): Declare with
25263 `define-obsolete-function-alias'.
25264
25265 * files.el (find-file-noselect, recode-file-name): Doc fixes.
25266 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
25267 (magic-mode-alist, buffer-file-numbers-unique)
25268 (write-file-functions, get-free-disk-space):
25269 Fix typos in docstrings.
25270 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
25271 (write-contents-hooks, write-file-hooks):
25272 Declare with `define-obsolete-variable-alias'.
25273
25274 * forms-d2.el (arch-rj): Fix typo in docstrings.
25275 (arch-tocol): Likewise. "?\ " -> "?\s".
25276
25277 * frame.el (set-frame-font, cursor-in-non-selected-windows):
25278 Fix typo in docstring.
25279 (set-screen-width, set-screen-height): Delete redundant info in
25280 doctrings.
25281 (new-frame, screen-height, screen-width): Declare with
25282 `define-obsolete-function-alias'.
25283 (delete-frame-hook, blink-cursor): Declare with
25284 `define-obsolete-variable-alias'.
25285
25286 * paths.el (prune-directory-list): Fix typos in docstring.
25287
25288 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
25289 (cvs-prefix-get): Fix typos in docstrings.
25290
25291 * ps-print.el (ps-extend-face-list, ps-extend-face)
25292 (ps-print-background-image): Fix typos in docstrings.
25293 (ps-default-fg, ps-default-bg): Doc fixes.
25294
25295 * s-region.el (s-region-bind): Doc fix.
25296 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
25297
25298 * textmodes/org.el (org-table-formula-substitute-names)
25299 (org-table-get-vertical-vector): Doc fixes.
25300 (org-table-recalculate): Remove unused argument to `message'.
25301
25302 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
25303
25304 * textmodes/org.el (org-table-column-names)
25305 (org-table-column-name-regexp)
25306 (org-table-named-field-locations): New variables.
25307 (org-archive-subtree): Protect `this-command' when calling
25308 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
25309 the kill buffer.
25310 (org-complete): Remove fixed-formula completion.
25311 (org-edit-formulas-map): New variable.
25312 (org-table-edit-formulas): New command.
25313 (org-finish-edit-formulas, org-abort-edit-formulas)
25314 (org-show-variable, org-table-get-vertical-vector): New functions.
25315 (org-table-maybe-eval-formula): Handle `:=' fields.
25316 (org-table-get-stored-formulas, org-table-store-formulas)
25317 (org-table-get-formula, org-table-modify-formulas)
25318 (org-table-replace-in-formulas): Handle named field formulas.
25319 (org-table-get-specials): Store locations of named fields.
25320
25321 2005-07-19 Juri Linkov <juri@jurta.org>
25322
25323 * progmodes/grep.el (grep-regexp-alist)
25324 (grep-mode-font-lock-keywords, grep-process-setup):
25325 Use default GNU grep match color "01;31m" instead of "01;41m".
25326 (grep-regexp-alist, grep-mode-font-lock-keywords):
25327 Use `\\[[0-9]*m' instead of `\\[00m'.
25328 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
25329 sgr_start where its handling is more important. Use the real
25330 length of sgr_start instead of constant 8.
25331 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
25332 specially. Delete all remaining escape sequences.
25333 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
25334 (grep-regexp-alist): Make hyperlink only for binary file name
25335 instead of the whole line.
25336 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
25337 (grep-mode): Add autoload.
25338
25339 * emacs-lisp/find-func.el (find-function-regexp):
25340 Add `define-compilation-mode'.
25341
25342 2005-07-19 Juri Linkov <juri@jurta.org>
25343
25344 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
25345 (compare-windows-sync-string-size, compare-windows-recenter)
25346 (compare-windows-highlight, compare-windows): Add version 22.1.
25347 (compare-windows) <defface>: Inherit from lazy-highlight instead
25348 of duplicating its default value.
25349
25350 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
25351 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
25352
25353 * descr-text.el (describe-char): Create link buttons for `charset'
25354 and `code point'. Add the current input method name with a link
25355 button to `to input' field. Print face names of display table
25356 characters in `The display table entry is displayed by' section
25357 instead of printing face-id in the `display' field.
25358 Guess hardcoded faces and create a link button for them.
25359 Skip empty fields when calculating max-width.
25360 Treat `widget-create' specially while inserting strings from the
25361 collected field list.
25362 (describe-char-after): Made obsolete in version 22.1, not 21.5.
25363
25364 * diff-mode.el (diff-file-header): Change foreground color from
25365 yellow to green on light backgrounds.
25366 (diff-context): Inherit from `shadow' only for color/grayscale
25367 with more than 88 colors.
25368 (diff-indicator-removed, diff-indicator-added)
25369 (diff-indicator-changed): New faces.
25370 (diff-font-lock-keywords): Use new faces. Regroup rules.
25371 Add "^---$" for `normal' diff format. Fontify `#' lines with
25372 font-lock-comment-delimiter-face and font-lock-comment-face.
25373 Add `#' to ^[^...] in the rule for `diff-context-face'.
25374
25375 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
25376 a button-like box. Inherit from `highlight' on low colors.
25377 (shadow): Use shades of gray only for color/grayscale with
25378 more than 88 colors. Use green for light backgrounds with
25379 8 colors, and yellow for dark backgrounds with 8 colors.
25380
25381 * font-lock.el (font-lock-regexp-grouping-backslash):
25382 Don't inherit from escape-glyph (use bold for all cases).
25383
25384 * info.el (info-xref-visited): Use light foreground color `violet'
25385 for dark backgrounds instead of dark color `magenta3'.
25386 (info-title-1): Use `yellow' color for dark backgrounds.
25387
25388 * isearch.el (isearch): Use not-too-dark magenta3 instead of
25389 too-light magenta2.
25390
25391 * replace.el (match): Use slightly more light RoyalBlue3 instead
25392 of dark RoyalBlue4.
25393
25394 * wid-edit.el (widget-inactive): Inherit from `shadow'.
25395
25396 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
25397
25398 * novice.el (disabled-command-hook): Declare it with
25399 `define-obsolete-variable-alias'.
25400
25401 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
25402 (desktop-buffer-misc-functions, desktop-buffer-handlers)
25403 (desktop-load-default): Add release to obsolescence info.
25404 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
25405 (desktop-append-buffer-args, desktop-read):
25406 Fix typos in docstrings.
25407 (desktop-kill): Fix typo in message.
25408 (desktop-save): Doc fix.
25409
25410 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
25411
25412 * viper-cmd.el (viper-escape-to-state): Bug fix.
25413 (viper-envelop-ESC-key): Change the definition of fast
25414 keysequence so it'll work with keyboard macros.
25415
25416 * ediff.el (ediff-patch-buffer): Change the docstring.
25417
25418 2005-07-19 Kenichi Handa <handa@m17n.org>
25419
25420 * international/mule-cmds.el (select-safe-coding-system): Try to
25421 use an auto-coding (if any) before anything else. If the found
25422 auto-coding is invalid, show a warning message.
25423
25424 * international/mule.el (find-auto-coding): New function created
25425 by modifying the body of set-auto-coding.
25426 (set-auto-coding): Use find-auto-coding to find a coding.
25427
25428 2005-07-18 Richard M. Stallman <rms@gnu.org>
25429
25430 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
25431 not isearch-mode-end-hook-error.
25432 (allout-before-change-protect): Fix error message.
25433
25434 2005-07-18 Juri Linkov <juri@jurta.org>
25435
25436 * allout.el (allout-mode):
25437 * calculator.el (calculator-copy):
25438 * custom.el (custom-known-themes):
25439 * dired.el (dired-desktop-buffer-misc-data)
25440 (dired-restore-desktop-buffer):
25441 * dired-x.el (dired-omit-marker-char):
25442 * files.el (basic-save-buffer):
25443 * font-core.el (font-lock-mode):
25444 * calendar/calendar.el (calendar-goto-hebrew-date)
25445 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
25446 (calendar-goto-persian-date):
25447 * language/ethio-util.el (ethio-sera-to-fidel-region):
25448 * textmodes/picture.el (picture-mode):
25449 Delete duplicate duplicate words.
25450
25451 2005-07-18 Juri Linkov <juri@jurta.org>
25452
25453 * isearch.el (isearch-mode-map): Remove key bindings for regexp
25454 chars * ? } |.
25455 (isearch-fallback): Don't call `isearch-process-search-char'.
25456 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
25457 (isearch-process-search-char): Call `isearch-fallback' for regexp
25458 chars * ? } |.
25459 (isearch-return-char): Make obsolete with `make-obsolete' instead
25460 of simply documenting it as obsolete in the docstring.
25461 (isearch-fallback): Refill docstring.
25462
25463 * international/isearch-x.el
25464 (isearch-process-search-multibyte-characters): Remove unneeded
25465 `concat'. Add intermediate values to `junk-hist' instead of
25466 `minibuffer-history'. Test the length of `str'.
25467
25468 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
25469
25470 * allout.el (allout-resolve-xref): Fix typos in error strings.
25471 (allout-before-change-protect): Remove unneeded `concat'.
25472
25473 * array.el (array-mode, array-reconfigure-rows)
25474 (untabify-backward): Fix typos in docstrings.
25475 (array-reconfigure-rows): Use `insert-buffer-substring', not
25476 `insert-buffer'.
25477
25478 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
25479 * progmodes/ada-mode.el (ada-make-body):
25480 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
25481
25482 * dired.el (dired-log):
25483 * tar-mode.el (tar-subfile-save-buffer):
25484 * play/zone.el (zone-pgm-stress-destress):
25485 Use `insert-buffer-substring', not `insert-buffer'.
25486
25487 2005-07-17 Simon Josefsson <jas@extundo.com>
25488
25489 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
25490
25491 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
25492
25493 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
25494 Add plain auth method.
25495 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
25496
25497 2005-07-17 Kim F. Storm <storm@cua.dk>
25498
25499 * ido.el (dired-other-window): Add ido property.
25500
25501 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
25502
25503 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
25504 Fix typo in docstring.
25505 (byte-compile-interactive-only-functions): Add `insert-buffer' and
25506 `insert-file-literally'.
25507
25508 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
25509 info and delete redundant message. Doc fix.
25510 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
25511 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
25512
25513 2005-07-16 Richard M. Stallman <rms@gnu.org>
25514
25515 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
25516 (byte-compile-and): Use byte-compile-and-recursion.
25517 (byte-compile-or-recursion): New function.
25518 (byte-compile-or): Use that.
25519 (byte-compile-if): Guard the else-clause too.
25520 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
25521
25522 * isearch.el (isearch-mode-end-hook-quit): New variable.
25523 (isearch-done): Bind it.
25524 (isearch-mode-end-hook): Doc fix.
25525
25526 * allout.el (allout-isearch-did-quit): Variable deleted.
25527 (allout-real-isearch-abort): Function name no longer used.
25528 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
25529 (allout-isearch-rectification): isearch-mode always exists.
25530 Don't set allout-isearch-did-quit.
25531 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
25532 allout-isearch-did-quit.
25533 (allout-enwrap-isearch): Just add the hook.
25534 (allout-isearch-abort): Function deleted.
25535 (allout-pre-command-business): Avoid warning.
25536
25537 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
25538 Correctly avoid warnings.
25539 (pascal-outline): Likewise.
25540
25541 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
25542
25543 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
25544
25545 * play/tetris.el (tetris-mode): Avoid warning.
25546
25547 * play/snake.el (snake-mode): Avoid warning.
25548
25549 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
25550 (gamegrid-set-display-table): Avoid warning.
25551 (gamegrid-set-timer): Likewise.
25552 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
25553 (gamegrid-add-score-with-update-game-score-1): Take FILE
25554 as argument.
25555 (gamegrid-add-score-with-update-game-score): Pass that argument.
25556 Rename have-shared-game-dir to gamegrid-shared-game-dir.
25557
25558 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
25559
25560 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
25561 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
25562
25563 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
25564 and insert-file.
25565
25566 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
25567 (sc-ask): Avoid warnings.
25568
25569 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
25570 (eshell-hist-initialize): Use that var the natural way.
25571
25572 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
25573
25574 * emacs-lisp/re-builder.el (reb-cook-regexp):
25575 Avoid warning calling lre-compile-string.
25576 (reb-color-display-p): Avoid warning.
25577
25578 * calculator.el (calculator-last-input): Guard uses
25579 of event-key and key-press-event-p.
25580 (event-key, key-press-event-p): Delete definitions.
25581
25582 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
25583 (find-gc-source-directory, find-gc-subrs-callers)
25584 (find-gc-noreturn-list, find-gc-source-files)
25585 (find-gc-subrs-called): Vars renamed and defvar'd.
25586
25587 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
25588 (checkdoc-overlay-put, checkdoc-delete-overlay)
25589 (checkdoc-overlay-start, checkdoc-overlay-end)
25590 (checkdoc-mode-line-update, checkdoc-char=):
25591 Define such that compiler knows they are defined.
25592 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
25593 (checkdoc-read-event): Delete. Use read-event directly.
25594
25595 * whitespace.el (whitespace-make-overlay)
25596 (whitespace-overlay-put, whitespace-delete-overlay)
25597 (whitespace-overlay-start, whitespace-overlay-end):
25598 Define such that compiler knows they are defined.
25599 (whitespace): Move conditional inside.
25600
25601 * tempo.el (tempo-insert-template): Suppress warning.
25602
25603 * ediff-diff.el (longlines-mode): Add defvar.
25604
25605 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
25606
25607 * server.el: Bind "C-x #" in a way that works even if C-x is
25608 redefined to a command key, not a prefix key.
25609
25610 2005-07-16 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net> (tiny change)
25611
25612 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
25613 cl-make-type-test till execution time.
25614
25615 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
25616
25617 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
25618 arg ARG and use it.
25619
25620 2005-07-16 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net> (tiny change)
25621
25622 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
25623
25624 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
25625
25626 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
25627 a defcustom with two :set or :type keywords.
25628
25629 2005-07-15 Richard M. Stallman <rms@gnu.org>
25630
25631 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
25632 Don't give ^M comment-end syntax.
25633
25634 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
25635
25636 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
25637 Don't consider gdbmi (gdb-mi.el has its own update functions).
25638 (gdb-var-delete): Make it work for gdbmi as well.
25639 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
25640
25641 * progmodes/gud.el (etags, sdb): Only require etags when needed.
25642 (gud-speedbar-menu-items): Correct logic for enabling items.
25643
25644 2005-07-15 Kim F. Storm <storm@cua.dk>
25645
25646 * ido.el: Fix commentary.
25647 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
25648 Use with-no-warnings around ffap-guesser.
25649 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
25650 Let bind minibuffer-completing-file-name to t.
25651
25652 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
25653
25654 * startup.el (site-run-file, keyboard-type): Doc fixes.
25655 (command-line): Check for "--basic-display" argument; also for
25656 "--quick", not "--bare-bones" (which was renamed).
25657 (fancy-splash-text): Add missing item "Getting New Versions".
25658 (normal-splash-screen): Fix typos and improve consistency with
25659 `fancy-splash-text'. Update copyright year.
25660
25661 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
25662 valid binding for `help-char'.
25663
25664 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
25665
25666 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
25667
25668 * term.el (term-mode): Disable cua-mode for term buffers.
25669
25670 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
25671
25672 * add-log.el (add-log-mailing-address, change-log-merge):
25673 Doc fixes.
25674 (change-log-get-method-definition): Fix typo in docstring.
25675
25676 2005-07-14 Kim F. Storm <storm@cua.dk>
25677
25678 * emulation/cua-base.el:
25679 (cua--pre-command-handler-1, cua--pre-command-handler)
25680 (cua--post-command-handler-1, cua--post-command-handler):
25681 Split in two. Check (buffer local) value of cua-mode.
25682 (cua-selection-mode): New command.
25683
25684 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
25685
25686 * custom.el (custom-initialize-safe-set)
25687 (custom-initialize-safe-default): Doc fixes.
25688
25689 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
25690 and simplify :init-value again.
25691
25692 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
25693 and simplify :init-value again. Delete autoload.
25694
25695 * startup.el (command-line): Use `custom-reevaluate-setting' again
25696 for tooltip-mode.
25697
25698 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
25699 a defcustom with two :initialize keywords.
25700
25701 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
25702
25703 * allout.el (my-mark-marker, allout-isearch-prior-pos)
25704 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
25705 (allout-post-command-business, allout-flag-region)
25706 (isearch-reenable-font-lock, allout-yank)
25707 (allout-insert-latex-header, allout-insert-latex-trailer)
25708 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
25709 (allout-latex-verb-quote): Fix typos in docstrings.
25710 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
25711 (allout-unprotected, allout-prefix-data):
25712 Improve argument/docstring consistency.
25713 (allout-chart-subtree): Fix argument spec.
25714 (allout-open-topic): Rename `use_sib_bullet' argument to
25715 `use-sib-bullet'. Doc fix.
25716
25717 * whitespace.el (whitespace-check-buffer-leading)
25718 (whitespace-check-buffer-trailing)
25719 (whitespace-check-buffer-indent)
25720 (whitespace-check-buffer-spacetab)
25721 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
25722 (whitespace-check-leading-whitespace)
25723 (whitespace-check-trailing-whitespace)
25724 (whitespace-check-spacetab-whitespace)
25725 (whitespace-check-indent-whitespace)
25726 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
25727 (whitespace-modes): Fix typos in docstrings.
25728 (defgroup, defcustom): Doc fixes.
25729
25730 * winner.el (winner-mode, winner-boring-buffers)
25731 (winner-pending-undo-ring): Doc fixes.
25732 (winner-ring): Remove unneeded `progn'.
25733 (winner-equal): `defsubst' it.
25734 (winner-redo): Fix message.
25735
25736 2005-07-13 Kim F. Storm <storm@cua.dk>
25737
25738 * simple.el (line-move-1): Always use vertical-motion to
25739 do the last (or only) line move to ensure some movement.
25740 Undo 2005-06-23 change--don't check for overlays.
25741
25742 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25743
25744 * term/mac-win.el (ccl-encode-mac-roman-font)
25745 (ccl-encode-mac-centraleurroman-font)
25746 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
25747 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
25748 Change charset-id boundary of dimension to ?\xef.
25749 (mac-char-fontspec-list): New constant.
25750 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
25751 argument. Nil uses itself as family in font-spec. Previous
25752 behavior for nil is now provided by non-nil non-string argument.
25753 All callers changed. Add font-specs for Mac fonts to
25754 "fontset-default" unless iso8859-1 fonts are installed.
25755
25756 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
25757
25758 * progmodes/sh-script.el (sh-get-indent-info): Only indent
25759 a continuation line if the \ is preceded by SPC or TAB.
25760 (sh-get-indent-info): Simplify.
25761 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
25762 Use with-current-buffer.
25763
25764 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
25765 when the matched text is empty.
25766
25767 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
25768
25769 * startup.el (command-line): Revert to previous handling of
25770 tooltip-mode. Explain in comment why the complexity is needed.
25771
25772 * tooltip.el (tooltip-mode): Revert to previous implementation of
25773 its defcustom.
25774
25775 * frame.el (blink-cursor-mode): Revert to previous implementation
25776 of its defcustom. Update comment.
25777
25778 2005-07-12 Lars Hansen <larsh@soem.dk>
25779
25780 * desktop.el: Update e-mail address.
25781
25782 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25783
25784 * term/mac-win.el (mac-services-mail-selection)
25785 (mac-services-mail-to): New functions.
25786 (mac-application-menu-map): Bind them.
25787
25788 2005-07-12 wulei <milton@wulei.net> (tiny change)
25789
25790 * progmodes/gdb-ui.el: Add note about buffering with Windows.
25791
25792 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
25793
25794 * custom.el (custom-reevaluate-setting): Doc fix.
25795
25796 2005-07-11 Jay Belanger <belanger@truman.edu>
25797
25798 * calc/calc.el (calc-embedded-announce-formula-alist)
25799 (calc-embedded-open-close-plain-alist)
25800 (calc-embedded-open-close-mode-alist): Add checks for additional
25801 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
25802
25803 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
25804
25805 * custom.el (custom-enable-theme): Don't add theme to
25806 `custom-enabled-themes' with `push' because there is no
25807 setf-method for `delq'.
25808
25809 2005-07-11 Richard M. Stallman <rms@gnu.org>
25810
25811 * custom.el (custom-declare-variable): Doc fix.
25812
25813 * dired-aux.el (dired-compare-directories): Remove "." and ".."
25814 from the alists.
25815
25816 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
25817 Do nothing if edebug-active.
25818
25819 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
25820 (edebug-display): Do it here instead.
25821
25822 2005-07-10 Richard M. Stallman <rms@gnu.org>
25823
25824 * cus-face.el (custom-theme-set-faces): Make it work.
25825 (custom-reset-faces): Doc fix.
25826 (custom-theme-reset-internal-face, custom-theme-face-value):
25827 Functions deleted.
25828
25829 * custom.el (custom-push-theme): Maintain list of the settings
25830 of a given theme in its theme-settings property.
25831 Maintain position of old settings in the theme-value
25832 or theme-face property.
25833 (custom-enabled-themes): New variable.
25834 (custom-theme-enabled-p): New function.
25835 (provide-theme): Update custom-enabled-themes.
25836 Disable and reenable the `user' theme.
25837 (require-theme): Doc fix.
25838 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
25839 (custom-theme-value, custom-theme-variable-value): Likewise.
25840 (custom-theme-reset-internal): Likewise.
25841 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
25842 (custom-enable-theme, custom-disable-theme): New functions.
25843 (custom-variable-theme-value, custom-face-theme-value): Likewise.
25844 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
25845 (custom-theme-reset-variables): Simplify.
25846 (deftheme, custom-declare-theme, custom-make-theme-feature):
25847 Definitions moved.
25848
25849 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
25850
25851 * longlines.el (longlines-show-region)
25852 (longlines-unshow-hard-newlines): Recognize hard newlines by
25853 non-nil hard property, instead of t.
25854
25855 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
25856
25857 * viper-cmd.el (viper--key-maps): New variable.
25858 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
25859 emulation-mode-map-alists.
25860 (viper-envelop-ESC-key): Use viper-subseq.
25861 (viper-search-forward/backward/next): Disable debug-on-error.
25862
25863 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
25864 (viper-ESC-key): New defcustoms.
25865
25866 * viper-macs.el (ex-map-read-args): Use viper-subseq.
25867
25868 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
25869 (viper-subseq): Copy of subseq from cl.el.
25870
25871 * viper.el (viper-go-away, viper-set-hooks): Use
25872 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
25873
25874 * viper-mous.el (viper-current-frame-saved): Use defvar.
25875
25876 * viper-init.el: Get rid of -face in face names.
25877
25878 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
25879 Make it work with longlines mode.
25880
25881 * ediff-mult.el (ediff-meta-mode-hook): New variable.
25882
25883 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
25884
25885 * ediff-init.el: Get rid of -face in face names.
25886
25887 2005-07-10 Richard M. Stallman <rms@gnu.org>
25888
25889 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
25890 and with-timeout-unsuspend.
25891
25892 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
25893 and with-timeout-unsuspend.
25894
25895 * emacs-lisp/timer.el (with-timeout-timers): New variable.
25896 (with-timeout): Bind that variable to record timers.
25897 (with-timeout-suspend, with-timeout-unsuspend): New functions.
25898
25899 * emacs-lisp/debug.el (debug-help-follow): New function.
25900 (debugger-mode-map): Use that instead of help-follow.
25901 (debugger-setup-buffer): Use eval-buffer-list
25902 to handle eval-buffer frames.
25903
25904 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
25905
25906 * timezone.el (timezone-parse-date): Change first regexp
25907 so it will not mistakenly match dates with no time zone.
25908
25909 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
25910
25911 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
25912
25913 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
25914
25915 * custom.el (custom-initialize-safe-set)
25916 (custom-initialize-safe-default): New functions.
25917
25918 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
25919 and simplify :init-value.
25920
25921 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
25922 and simplify :init-value. Delete obsolete comment.
25923
25924 * startup.el (command-line): Use `custom-reevaluate-setting' to
25925 handle `tooltip-mode'. Delete obsolete comment.
25926
25927 * files.el (set-visited-file-name): Avoid calling
25928 `file-name-nondirectory' with a nil argument.
25929
25930 2005-07-09 Richard M. Stallman <rms@gnu.org>
25931
25932 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
25933 was called with nil for the buffer, handle the read position right.
25934 Handle read position for eval-region, too.
25935
25936 2005-07-09 Juri Linkov <juri@jurta.org>
25937
25938 * fringe.el (fringe-mode): Add period in docstring.
25939 (fringe-query-style): Build prompt depending on `all-frames' arg.
25940
25941 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
25942 to not create links to unrelated functions in the Help buffer.
25943
25944 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
25945 Doc fix.
25946
25947 * simple.el (next-error-hook): New variable.
25948 (next-error): Use it. Doc fix.
25949
25950 * textmodes/ispell.el (ispell-command-loop): Add current
25951 dictionary name and program name to mode-line-format.
25952 (ispell-region, ispell-process-line): Add current dictionary name
25953 and program name to messages.
25954
25955 2005-07-08 Jay Belanger <belanger@truman.edu>
25956
25957 * calc/calc.el (calc-embedded-announce-formula-alist)
25958 (calc-embedded-open-close-formula-alist)
25959 (calc-embedded-open-close-word-alist)
25960 (calc-embedded-open-close-plain-alist)
25961 (calc-embedded-open-close-new-formula-alist)
25962 (calc-embedded-open-close-mode-alist)
25963 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
25964 (calc-embedded-mode-hook): New variables.
25965
25966 * calc/calc-embed.el (calc-embedded-firsttime)
25967 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
25968 New variables.
25969 (calc-do-embedded): Use calc-embedded-firsttime,
25970 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
25971 determine whether or not to run hooks.
25972 (calc-embedded-make-info): Set calc-embedded-firsttime-buf and
25973 calc-embedded-firsttime-formula appropriately.
25974 Set calc-embedded delimiter variables according to mode.
25975
25976 2005-07-08 Richard M. Stallman <rms@gnu.org>
25977
25978 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
25979 Check for "emacs", etc., as entire symbol, not just as word.
25980 (checkdoc-file-comments-engine): Use regexp-quote on FN.
25981
25982 * files.el (set-visited-file-name): Report the error
25983 for "empty filename" earlier.
25984 (kill-some-buffers): Ignore buffers already dead.
25985
25986 * fringe.el (fringe-mode): Doc fix.
25987
25988 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
25989 Check for (featurep 'xemacs) and turn off warnings in what it guards.
25990 Use unwind-protect to ensure byte-compile-unresolved-functions
25991 is updated.
25992
25993 * whitespace.el (whitespace-buffer-leading-cleanup):
25994 Simplify w/ skip-chars-forward.
25995 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
25996
25997 * mail/rmail.el (rmail-only-expunge): Fix paren error.
25998 Unconditionally try to leave point at the same old place.
25999
26000 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
26001
26002 * comint.el (comint-postoutput-scroll-to-bottom)
26003 (comint-show-maximum-output): Take scroll-margin into consideration.
26004
26005 2005-07-08 Kim F. Storm <storm@cua.dk>
26006
26007 * ido.el (ido-use-filename-at-point): New choice `guess'.
26008 (ido-file-internal): Try ffap-guesser if selected.
26009
26010 * ido.el (ido-before-fallback-functions): New hook.
26011 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
26012 (ido-read-file-name): Run it.
26013
26014 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
26015
26016 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
26017 strings rather than a list of symbols to the completion function.
26018
26019 2005-07-07 Jay Belanger <belanger@truman.edu>
26020
26021 * calc/calc-units.el (math-apply-units): Change the places in
26022 which units are simplified.
26023
26024 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
26025
26026 * cus-edit.el (customize-option, customize-option-other-window):
26027 Make them handle aliases.
26028
26029 * custom.el (custom-variable-p): Make it recursively follow
26030 aliases. Mention that in the docstring.
26031
26032 2005-07-07 Richard M. Stallman <rms@gnu.org>
26033
26034 * cus-start.el (exec-path): Use `directory' instead of `file'.
26035 Fix tag for nil.
26036
26037 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
26038
26039 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
26040 when called non-interactively. Doc fix.
26041
26042 2005-07-07 Lute Kamstra <lute@gnu.org>
26043
26044 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
26045 new address as well.
26046
26047 2005-07-07 Kenichi Handa <handa@m17n.org>
26048
26049 * international/mule.el (make-coding-system):
26050 Describe `ascii-incompatible' property in the docstring.
26051 (set-file-name-coding-system): Signal an error if coding-system is
26052 ascii-incompatible.
26053 (set-keyboard-coding-system): Likewise.
26054
26055 * international/mule-cmds.el (set-default-coding-systems):
26056 Don't set default-file-name-coding-system and
26057 default-keyboard-coding-system if coding-system is ASCII-incompatible.
26058
26059 * international/utf-16.el: Declare that all UTF-16-based coding
26060 systems are ASCII-incompatible.
26061
26062 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
26063
26064 * progmodes/gud.el: Require font-lock for displaying errors.
26065 Used by gdb-ui.el.
26066
26067 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
26068
26069 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
26070 values for the pattern lists which are `read'able but not
26071 `append'able (like symbols).
26072
26073 2005-07-06 Richard M. Stallman <rms@gnu.org>
26074
26075 * progmodes/flymake.el (flymake-float-time): Instead of
26076 with-no-warnings, test for XEmacs.
26077 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
26078 to avoid warning.
26079
26080 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
26081
26082 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
26083
26084 2005-07-05 Lute Kamstra <lute@gnu.org>
26085
26086 * battery.el: Add support for Darwin (with much debugging help
26087 from Samuel Lauber <sam124@operamail.com>).
26088 (battery-status-function, battery-echo-area-format)
26089 (battery-mode-line-format): Add support for pmset on Darwin.
26090 (battery-load-low, battery-load-critical): New user options.
26091 (battery-pmset): New function.
26092
26093 2005-07-05 Lute Kamstra <lute@gnu.org>
26094
26095 Update FSF's address in GPL notices.
26096
26097 * textmodes/page-ext.el: Update FSF's address.
26098
26099 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
26100
26101 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
26102 filling from using prefix when filling a single-line docstring.
26103
26104 * progmodes/flymake.el: Remove useless eval-when-compile.
26105
26106 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
26107
26108 2005-07-04 Richard M. Stallman <rms@gnu.org>
26109
26110 * textmodes/org.el (org-file-apps-defaults-gnu):
26111 Rename from org-file-apps-defaults-linux.
26112 (org-default-apps): Don't test system-type for `linux'.
26113 (org-file-apps): Doc fix.
26114
26115 2005-07-04 David Ponce <david@dponce.com>
26116
26117 * tree-widget.el: Improve header Commentary section.
26118 (tree-widget) [defgroup]
26119 (tree-widget-image-enable, tree-widget-themes-directory)
26120 (tree-widget-theme, tree-widget-image-properties-emacs)
26121 (tree-widget-image-properties-xemacs, tree-widget-create-image)
26122 (tree-widget-image-formats, tree-widget-control)
26123 (tree-widget-empty-control, tree-widget-leaf-control
26124 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
26125 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
26126 (tree-widget-keep, tree-widget-after-toggle-functions)
26127 (tree-widget-open-node, tree-widget-close-node): Doc fix.
26128 (tree-widget-open-control, tree-widget-close-control): Fix doc and
26129 :help-echo message.
26130 (tree-widget-set-theme): Doc fix. Use `string-equal'.
26131 (tree-widget-image-properties): Doc fix. Clearer implementation.
26132 (tree-widget--cursors): New constant.
26133 (tree-widget-lookup-image): New function split from
26134 `tree-widget-find-image'. Clearer implementation.
26135 (tree-widget-find-image): Use it.
26136 (tree-widget-button-keymap): Use `set-keymap-parent'.
26137 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
26138 Define the sub-widgets here.
26139 (tree-widget-node): Check that :node is not a tree-widget.
26140 (tree-widget-get-super, tree-widget-open-control)
26141 (tree-widget-close-control, tree-widget-empty-control)
26142 (tree-widget-leaf-control, tree-widget-guide)
26143 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
26144 (tree-widget-no-handle, tree-widget-value-delete)
26145 (tree-widget-map): Remove.
26146 (tree-widget-children-value-save): Doc fix. Simplified.
26147 (tree-widget-value-create): Update according to previous changes.
26148
26149 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
26150
26151 * textmodes/org.el: Leading space replaced by TABS.
26152 (org-recalc-marks, org-table-rotate-recalc-marks)
26153 (org-table-get-specials): Treat "^" and "_" marks.
26154 (org-table-justify-field-maybe): Optional argument NEW.
26155 (org-table-eval-formula): Parsing of the format simplified.
26156 New modes C,I. Honor the %= parameter in the current table.
26157 Avoid unnecessary re-align by using the NEW argument to
26158 `org-table-justify-field-maybe'.
26159 (org-calc-default-modes): Default for date-format mimicks org-mode.
26160 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
26161
26162 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
26163
26164 * cus-face.el (custom-theme-set-faces): Make it handle face
26165 aliases whose alias declarations are pre- or autoloaded.
26166
26167 2005-07-04 Juri Linkov <juri@jurta.org>
26168
26169 * faces.el (read-face-name): Put the code for getting a face name
26170 from the buffer before adding the faces from the `face' property.
26171 Use `completing-read-multiple' instead of `completing-read'.
26172 Require `crm'. Add default value and post-process the returned
26173 list of faces.
26174
26175 * emacs-lisp/crm.el (crm-find-current-element)
26176 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
26177
26178 * emacs-lisp/lisp-mode.el (eval-defun-1):
26179 * emacs-lisp/edebug.el (edebug-eval-defun):
26180 Remove unnecessary quotes.
26181
26182 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
26183
26184 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
26185 (prolog-indent-level): Fix typo in docstring.
26186
26187 * info.el (Info-history, Info-history-forward)
26188 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
26189
26190 * add-log.el (add-change-log-entry):
26191 * comint.el (comint-dynamic-list-input-ring)
26192 (comint-dynamic-list-completions):
26193 * dabbrev.el (dabbrev-expand):
26194 * delim-col.el (delimit-columns-rectangle-line):
26195 * diff-mode.el (diff-context->unified, diff-reverse-direction)
26196 (diff-unified->context):
26197 * ediff-init.el (ediff-abbrev-jobname):
26198 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
26199 (ediff-replace-session-activity-marker-in-meta-buffer):
26200 * info.el (Info-summary):
26201 * lpr.el (printify-region):
26202 * printing.el (pr-create-interface):
26203 * ps-print.el (ps-print-quote):
26204 * ses.el (ses-column-widths, ses-print-cell)
26205 (ses-adjust-print-width, ses-center):
26206 * shell.el (shell-file-name-quote-list):
26207 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
26208 (strokes-fill-current-buffer-with-whitespace)
26209 (strokes-xpm-for-stroke, strokes-list-strokes)
26210 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
26211 * term.el (term-dynamic-list-input-ring)
26212 (term-dynamic-list-completions):
26213 * calc/calc.el (math-format-stack-value):
26214 * emacs-lisp/edebug.el (edebug-display-freq-count):
26215 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
26216 (delphi-new-comment-line):
26217 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
26218 * progmodes/executable.el (executable-set-magic):
26219 * progmodes/python.el (inferior-python-mode):
26220 * progmodes/scheme.el (scheme-mode-syntax-table):
26221 * progmodes/sh-script.el (sh-maybe-here-document):
26222 * progmodes/sql.el (sql-copy-column):
26223 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
26224 * textmodes/bibtex.el (bibtex-mode):
26225 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
26226 (sgml-auto-attributes):
26227 * textmodes/table.el (table-insert, table-shorten-cell)
26228 (table--generate-source-scan-lines, table-delete-row)
26229 (*table--cell-delete-char, table--spacify-frame)
26230 (table--horizontally-shift-above-and-below)
26231 (table--cell-insert-char, table--cell-blank-str)
26232 (table--fill-region-strictly):
26233 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
26234 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
26235
26236 * add-log.el (change-log):
26237 * apropos.el (apropos):
26238 * comint.el (comint-completion, comint-source):
26239 * dabbrev.el (dabbrev):
26240 * delim-col.el (columns):
26241 * diff-mode.el (diff-mode):
26242 * ediff.el (ediff):
26243 * ediff-diff.el (ediff-diff):
26244 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
26245 * ediff-mult.el (ediff-mult):
26246 * ediff-ptch.el (ediff-ptch):
26247 * ediff-wind.el (ediff-window):
26248 * facemenu.el (facemenu):
26249 * indent.el (indent):
26250 * info.el (info):
26251 * jka-cmpr-hook.el (compression, jka-compr):
26252 * lpr.el (lpr):
26253 * outline.el (outlines):
26254 * pcmpl-cvs.el (pcmpl-cvs):
26255 * pcmpl-rpm.el (pcmpl-rpm):
26256 * printing.el (printing):
26257 * ps-print.el (postscript, ps-print, ps-print-horizontal)
26258 (ps-print-vertical, ps-print-headers, ps-print-font)
26259 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
26260 (ps-print-background, ps-print-printer, ps-print-page)
26261 (ps-print-miscellany):
26262 * ses.el (ses):
26263 * shell.el (shell, shell-directories, shell-faces):
26264 * startup.el (initialization):
26265 * strokes.el (strokes):
26266 * term.el (term):
26267 * uniquify.el (uniquify):
26268 * w32-vars.el (w32):
26269 * calc/calc.el (calc):
26270 * emacs-lisp/bytecomp.el (bytecomp):
26271 * emacs-lisp/cl-indent.el (lisp-indent):
26272 * emacs-lisp/edebug.el (edebug):
26273 * emacs-lisp/elp.el (elp):
26274 * emacs-lisp/testcover.el (testcover):
26275 * emacs-lisp/trace.el (trace):
26276 * emulation/viper-ex.el (viper-ex):
26277 * emulation/viper-mous.el (viper-mouse):
26278 * mail/mailalias.el (mailalias):
26279 * mail/supercite.el (supercite, supercite-frames)
26280 (supercite-attr, supercite-cite, supercite-hooks):
26281 * net/rcompile.el (remote-compile):
26282 * net/rlogin.el (rlogin):
26283 * obsolete/ooutline.el (outlines):
26284 * progmodes/delphi.el (delphi):
26285 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
26286 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
26287 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
26288 (ebnf-optimization):
26289 * progmodes/etags.el (etags):
26290 * progmodes/executable.el (executable):
26291 * progmodes/idlwave.el (idlwave):
26292 * progmodes/pascal.el (pascal):
26293 * progmodes/prolog.el (prolog):
26294 * progmodes/python.el (python):
26295 * progmodes/scheme.el (scheme):
26296 * progmodes/sh-script.el (sh, sh-script):
26297 * progmodes/sql.el (SQL):
26298 * progmodes/tcl.el (tcl):
26299 * textmodes/bibtex.el (bibtex, bibtex-autokey):
26300 * textmodes/enriched.el (enriched):
26301 * textmodes/makeinfo.el (makeinfo):
26302 * textmodes/sgml-mode.el (sgml):
26303 * textmodes/table.el (table-hooks):
26304 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
26305 * textmodes/texinfo.el (texinfo):
26306 * textmodes/two-column.el (two-column):
26307 Finish `defgroup' description with period.
26308
26309 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
26310 * eshell/esh-var.el (eshell-var):
26311 * progmodes/vhdl-mode.el (vhdl-testbench):
26312 * textmodes/org.el (org): Fix typos in docstrings.
26313
26314 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
26315 consistency.
26316
26317 * progmodes/flymake.el (flymake-find-file): Remove.
26318 (flymake-float-time): Use `with-no-warnings'.
26319 (flymake-check-start-time, flymake-check-was-interrupted)
26320 (flymake-err-info, flymake-is-running, flymake-last-change-time)
26321 (flymake-new-err-info): `defvar' at compile time.
26322
26323 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
26324
26325 * replace.el (occur-hook): Doc fix.
26326 (occur-1): Don't call `occur-hook' if there are no matches.
26327
26328 2005-07-03 Richard M. Stallman <rms@gnu.org>
26329
26330 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
26331 global-map, save the same map.
26332 (global-map): Don't alter it at top level.
26333 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
26334 Then alter it here instead.
26335 (tpu-edt-off): Set global-map to the saved one.
26336
26337 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
26338 All references simplified.
26339 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
26340 (zmacs-regions): Add defvar.
26341 (repeat-complex-command-map): Everything about that deleted.
26342
26343 * textmodes/artist.el (artist-key-is-drawing)
26344 (artist-key-endpoint1, artist-key-poly-point-list)
26345 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
26346 (artist-key-compl-table, artist-rb-save-data)
26347 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
26348 Don't put them in eval-when-compile.
26349 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
26350
26351 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
26352 Use with-no-warnings.
26353
26354 * net/browse-url.el (dos-windows-version): Add defvar.
26355
26356 * mail/supercite.el (filladapt-prefix-table): Add defvar.
26357
26358 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
26359 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
26360 (rmail-new-summary-line-count): Rename from new-summary-line-count.
26361 Add defvar.
26362 (rmail-summary-beginning-of-message): Use with-no-warnings.
26363 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
26364
26365 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
26366 Use with-no-warnings.
26367
26368 * emulation/vi.el (vi-mark-region): Use c-mark-function.
26369 (c-mark-function): Add point-moving-unit property.
26370 (vi-goto-line): Use with-no-warnings.
26371
26372 * emulation/edt.el (edt-last-copied-word): Add defvar.
26373 (zmacs-region-stays): Likewise.
26374 (edt-mark-section-wisely): Use c-mark-function for C.
26375 Use makr-defun for Fortran.
26376 (time-string): defvar deleted.
26377 (edt-display-the-time): Don't set time-string.
26378
26379 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
26380
26381 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
26382 Don't warn when name is not constant
26383 or for defining the group `emacs'.
26384
26385 * tooltip.el (gud-tooltip-mode): Add defvar.
26386
26387 * startup.el (default-frame-background-mode): Add defvar.
26388
26389 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
26390
26391 * info.el (tool-bar-map): Add defvar.
26392
26393 * dired.el (dnd-protocol-alist): Add defvar.
26394
26395 * dired-aux.el (dired-query): Display question with answer, when
26396 the user answers.
26397
26398 * custom.el (custom-add-option): Doc fix.
26399
26400 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
26401
26402 2005-07-03 Eli Zaretskii <eliz@gnu.org>
26403
26404 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
26405 bogus name from the last change.
26406
26407 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
26408
26409 * custom.el (custom-declare-variable): Fix typos in comment.
26410 (custom-known-themes): Doc fix.
26411 (custom-theme-directory): New defcustom.
26412 (require-theme): Make it check `custom-theme-directory'.
26413
26414 * cus-theme.el (custom-new-theme-mode): New function.
26415 (custom-theme-name, custom-theme-variables, custom-theme-faces)
26416 (custom-theme-description): Add compiler defvars.
26417 (customize-create-theme): Add doc to the "*New Custom Theme*"
26418 buffer. Use `custom-new-theme-mode'.
26419 (custom-theme-write): Put the created buffer in emacs-lisp-mode
26420 and save it to the `custom-theme-directory'. Make this the
26421 default directory of the buffer.
26422
26423 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
26424
26425 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
26426 Fix unbalanced parentheses.
26427
26428 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
26429
26430 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
26431 into flymake-mode and delegate to flymake-mode.
26432
26433 * find-file.el (ff-which-function-are-we-in): Clean up.
26434
26435 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
26436
26437 * replace.el (occur-rename-buffer): Fix docstring.
26438
26439 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
26440 (edt-last-copied-word, edt-learn-macro-count)
26441 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
26442 (edt-rect-start-point, edt-user-global-map, rect-start-point)
26443 (time-string, zmacs-region-stays):
26444 * emulation/edt-mapper.el (edt-save-function-key-map)
26445 (EDT-key-name): `defvar' to silence the byte-compiler.
26446
26447 2005-07-02 Martin Rudalics <rudalics@gmx.at>
26448
26449 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
26450 font-lock-regexp-backslash. Doc fix.
26451 (font-lock-regexp-backslash-grouping-construct): Rename from
26452 font-lock-regexp-backslash-construct. Doc fix.
26453 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
26454 grouping constructs.
26455
26456 2005-07-02 Eli Zaretskii <eliz@gnu.org>
26457
26458 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
26459 updating all the prerequisites.
26460
26461 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
26462
26463 * textmodes/org.el (org-agenda-start-on-weekday)
26464 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
26465 (org-agenda-use-time-grid, org-archive-location)
26466 (org-allow-space-in-links, org-usenet-links-prefer-google)
26467 (org-enable-table-editor, org-export-default-language)
26468 (org-export-html-show-new-buffer, org-fill-paragraph)
26469 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
26470 (org-goto-quit, org-occur, org-eval-in-calendar)
26471 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
26472 (org-agenda-diary-entry, org-remember-help)
26473 (org-table-convert-region, org-at-table-p)
26474 (org-table-move-row-down, org-table-move-row-up)
26475 (org-table-copy-region, org-table-toggle-vline-visibility)
26476 (org-table-get-stored-formulas, org-table-get-specials)
26477 (org-recalc-commands, org-table-eval-formula)
26478 (org-table-formula-substitute-names, orgtbl-make-binding)
26479 (org-format-org-table-html, org-format-table-table-html)
26480 (org-format-table-table-html-using-table-generate-source)
26481 (org-customize): Fix typos in docstrings.
26482 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
26483 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
26484 (org-back-to-heading): Doc fixes.
26485 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
26486 (org-agenda-change-all-lines, org-get-header):
26487 Improve argument/docstring consistency.
26488 (orgtbl-error): Fix error message.
26489
26490 * progmodes/flymake.el (flymake-find-possible-master-files)
26491 (flymake-master-file-compare, flymake-get-line-err-count)
26492 (flymake-highlight-line, flymake-gui-warnings-enabled):
26493 Fix typos in docstrings.
26494 (flymake-parse-line, flymake-get-project-include-dirs-function)
26495 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
26496 Doc fixes.
26497 (flymake-get-project-include-dirs-function)
26498 (flymake-make-err-menu-data):
26499 Improve argument/docstring consistency.
26500
26501 2005-07-01 Lute Kamstra <lute@gnu.org>
26502
26503 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
26504 Catch errors with ignore-errors. Use temporary buffer.
26505 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
26506
26507 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
26508 background color faces.
26509 (facemenu-set-foreground, facemenu-set-background):
26510 Use facemenu-set-face-from-menu.
26511 (facemenu-set-face-from-menu): Treat face names that start with
26512 "fg:" or "bg:" as special.
26513 (facemenu-add-new-color): Don't create faces. Simplify.
26514
26515 2005-06-30 Richard M. Stallman <rms@gnu.org>
26516
26517 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
26518 (crm-find-current-element): Likewise.
26519
26520 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
26521
26522 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
26523
26524 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
26525
26526 * arc-mode.el (archive-extract): Make it work as a mouse binding.
26527 (archive-mouse-extract): Make it an obsolete alias.
26528 (archive-mode-map): Don't use archive-mouse-extract any more.
26529 (archive-mode, archive-extract): write-contents-hooks ->
26530 write-contents-functions.
26531 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
26532 first arg.
26533 (archive-rename-entry): Update the call.
26534 (archive-zip-summarize): Remove unused var `method'.
26535 (archive-lzh-summarize): Remove unused var `creator'.
26536
26537 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
26538 dedicated frame upon exit.
26539
26540 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
26541 (archive-zip-extract, archive-zip-expunge)
26542 (archive-zip-update, archive-zip-update-case): Use executable-find.
26543 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
26544 Use restore-buffer-modified-p.
26545 (archive-extract, archive-add-new-member, archive-write-file-member):
26546 Use with-current-buffer.
26547 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
26548
26549 2005-06-30 Andreas Schwab <schwab@suse.de>
26550
26551 * progmodes/gud.el (gud-filter): Remove unneeded progn.
26552
26553 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
26554
26555 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
26556
26557 2005-06-30 Juri Linkov <juri@jurta.org>
26558
26559 * faces.el (vertical-border): Inherit from mode-line-inactive
26560 only on tty.
26561
26562 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
26563
26564 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
26565 example, -NLINES in the `occur' docstring).
26566
26567 * replace.el (occur-1): When no matches are found, do not set the
26568 `buffer-read-only' and modified flags for the occur buffer,
26569 because it is deleted.
26570
26571 * emulation/cua-base.el (cua-check-pending-input)
26572 (cua-repeat-replace-region, cua-mode, cua-debug)
26573 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
26574 Fix typos in docstrings.
26575
26576 * emulation/cua-gmrk.el (cua-toggle-global-mark)
26577 (cua-cut-region-to-global-mark)
26578 (cua--cut-rectangle-to-global-mark):
26579 Remove period from end of messages.
26580
26581 * emulation/cua-rect.el (cua-do-rectangle-padding):
26582 Remove period from end of messages.
26583 (cua--rectangle-seq-format): Fix typo in docstring.
26584 (cua-sequence-rectangle, cua-fill-char-rectangle):
26585 Improve argument/docstring consistency.
26586
26587 2005-06-29 Juri Linkov <juri@jurta.org>
26588
26589 * faces.el (default-frame-background-mode): New internal variable.
26590 (frame-set-background-mode): Use it.
26591
26592 * startup.el (normal-top-level): Set default-frame-background-mode
26593 instead of frame-background-mode. Before setting it, test for its
26594 nil value. Remove tests for frame-background-mode and frame
26595 parameter `reverse'. Add test for "unspecified-fg".
26596
26597 * term/xterm.el (xterm-rxvt-set-background-mode):
26598 * term/rxvt.el (rxvt-set-background-mode):
26599 Set default-frame-background-mode instead of frame-background-mode.
26600
26601 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
26602
26603 * simple.el (set-variable): Warn about obsolete user variables.
26604
26605 * imenu.el (imenu--completion-buffer):
26606 * mouse.el (mouse-buffer-menu-alist):
26607 * msb.el (msb-invisible-buffer-p):
26608 * calendar/diary-lib.el (diary-header-line-format):
26609 * emacs-lisp/pp.el (pp-buffer):
26610 * progmodes/cperl-mode.el (cperl-do-auto-fill):
26611 * textmodes/picture.el (picture-replace-match):
26612 Change space constants followed by a sexp to "?\s ".
26613
26614 * play/decipher.el (decipher-loop-with-breaks):
26615 * textmodes/texinfo.el (texinfo-insert-@item): Change space
26616 constants "protected" from end of line by a comment to "?\s".
26617
26618 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
26619
26620 * font-lock.el (save-buffer-state): Use `declare'.
26621
26622 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
26623 reset the syntax-table to cperl-mode-syntax-table.
26624 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
26625 "foo_print_bar" is not matched as a reserved keyword.
26626
26627 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
26628
26629 * textmodes/org.el (orgtbl-setup): New function, for delayed
26630 setup for the orgtbl commands.
26631 (org-calc-default-modes): New option.
26632 (orgtbl-make-binding): Use `defun' to get better help display.
26633 (org-diary): Call `org-compile-prefix-format'.
26634 (org-table-formula-substitute-names): New function.
26635 (org-agenda-day-view, org-agenda-week-view): New commands.
26636 (org-agenda-toggle-week-view): Command removed.
26637 (org-tbl-menu): Split off from org-org-menu.
26638 (org-mode): Move removal of outline-mode menus to here.
26639 (org-table-formula-debug): New option.
26640 (org-table-insert-row): Keep first field if just "#" or "*".
26641 (org-mode): Paragraph regexps fixed.
26642 (org-table-recalculate-regexp): New constant.
26643 (org-table-justify-field-maybe): Avoid replace if not necessary.
26644 (org-copy-special, org-cut-special): Use `call-interactively'.
26645 (org-table-copy-region): Take region from `interactive' call.
26646 (org-trim): Return string even if no match.
26647 (org-formula): New face.
26648 (org-set-font-lock-defaults): No longer highlight "FIXME".
26649 But highlight formula-related fields in table.
26650 (org-table-p): Use regexp, not fontification.
26651 (org-table-align): Handle white space at end of line.
26652 (org-table-formula-evaluate-inline): New option.
26653 (org-mode): Auto-wrapping in comment lines turned off.
26654 (org-table-copy-down): Evaluate only in copied field, not in
26655 destination.
26656 (org-table-current-formula): Variable removed.
26657 (org-table-store-formulas, org-table-get-stored-formulas)
26658 (org-table-modify-formulas, org-table-replace-in-formulas)
26659 (org-table-maybe-eval-formula): New functions.
26660 (org-table-get-formula): Modify to use stored formulas.
26661 (org-table-insert-column, org-table-delete-column)
26662 (org-table-move-column): Call `org-table-modify-formulas'.
26663 (org-complete): Add completion for keyword formulas.
26664 (orgtbl-mode): Pull orgtbl-mode-map to start of
26665 minor-mode-map-alist.
26666
26667 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
26668
26669 * progmodes/python.el (python-check): Require `compile' before
26670 modifying its variables.
26671
26672 * newcomment.el (comment-indent-default): Don't get fooled by an early
26673 end of buffer.
26674
26675 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
26676
26677 * ps-print.el (ps-print-version): Fix version number.
26678
26679 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
26680
26681 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
26682
26683 2005-06-28 Richard M. Stallman <rms@gnu.org>
26684
26685 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
26686 (flyspell-local-mouse-map): Declaration deleted.
26687 (flyspell-mouse-map): Bind only mouse-2.
26688 (flyspell-mode-map): Don't test flyspell-use-local-map.
26689 (flyspell-overlay-keymap-property-name): Var deleted.
26690 (flyspell-mode-on): Don't make local bindings for
26691 flyspell-mouse-map and flyspell-mode-map.
26692 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
26693
26694 * textmodes/ispell.el (ispell-word): Do not ignore short words.
26695
26696 * progmodes/compile.el (compilation-next-error-function):
26697 Don't switch buffers; operate on the current buffer.
26698
26699 * progmodes/compile.el (compilation-error-file-name)
26700 (compilation-warning-file-name, compilation-info-file-name)
26701 (compilation-line-number, compilation-column-number): New faces.
26702 (compilation-error-face, compilation-warning-face)
26703 (compilation-info-face, compilation-line-face)
26704 (compilation-column-face): Use them.
26705
26706 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
26707
26708 * comint.el (comint-password-prompt-regexp): Accept ", try again".
26709
26710 * bindings.el (global-map): Bind insertchar and its variants.
26711
26712 2005-06-27 Richard M. Stallman <rms@gnu.org>
26713
26714 * textmodes/artist.el (artist-text-overwrite)
26715 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
26716
26717 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
26718
26719 * ps-print.el: It was not working the page selection for printing.
26720 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
26721 (ps-print-version): New version 6.6.7.
26722 (ps-end-sheet): New fun.
26723 (ps-header-sheet, ps-end-job): Call it.
26724
26725 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
26726
26727 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
26728
26729 2005-06-27 Lute Kamstra <lute@gnu.org>
26730
26731 * facemenu.el (facemenu-unlisted-faces): Add foreground and
26732 background color faces.
26733 (facemenu-get-face): Delete function.
26734 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
26735 (facemenu-add-new-color): Make second argument mandatory.
26736 Create the appropriate face and return it. Simplify.
26737 (facemenu-set-foreground, facemenu-set-background): Don't check if
26738 color is defined. Use return value of facemenu-add-new-color.
26739
26740 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
26741
26742 * progmodes/gud.el (gud-filter): Add missing argument to
26743 with-selected-window.
26744
26745 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
26746
26747 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
26748 a :require to the defcustom.
26749
26750 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
26751 defcustoms corresponding to minor modes.
26752
26753 2005-06-26 David Ponce <david@dponce.com>
26754
26755 * recentf.el: Require tree-widget instead of wid-edit.
26756 (recentf-filename-handler): Fix widget :type.
26757 (recentf-cancel-dialog, recentf-open-more-files)
26758 (recentf-open-files-action): Doc fix.
26759 (recentf-dialog-goto-first): New function.
26760 (recentf-dialog-mode-map): Set parent keymap first.
26761 (recentf-dialog-mode): Define with define-derived-mode.
26762 Don't display continuation lines in dialogs.
26763 (recentf-edit-list): Rename from recentf-edit-selected-items.
26764 (recentf-edit-list-select): Rename from recentf-edit-list-action.
26765 Simplify.
26766 (recentf-edit-list-validate): New function.
26767 (recentf-edit-list): Update accordingly.
26768 (recentf-open-files-item-shift): Remove.
26769 (recentf-open-files-item): Convert menu elements into tree and
26770 link widgets. Don't create the widgets.
26771 (recentf-open-files): Update accordingly.
26772 (recentf-save-list): Untabify.
26773
26774 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
26775
26776 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
26777 (keep-lines): Add INTERACTIVE arg. Never delete lines only
26778 partially contained in the active region. Do not take active
26779 region into account when called from Lisp, unless INTERACTIVE arg
26780 is non-nil. Use `forward-line' instead of `beginning-of-line' to
26781 avoid trouble with fields. Make marker point nowhere when no
26782 longer used. Always return nil. Doc fix.
26783 (flush-lines): Add INTERACTIVE arg. Do not take active region
26784 into account when called from Lisp, unless INTERACTIVE arg is
26785 non-nil. Use `forward-line' instead of `beginning-of-line' to
26786 avoid trouble with fields. Make marker point nowhere when no
26787 longer used. Always return nil. Doc fix.
26788 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
26789 interchangeable. Do not take active region into account when
26790 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
26791 message in echo area when called from Lisp, unless INTERACTIVE arg
26792 is non-nil. Avoid saying "1 occurrences". Do not use markers.
26793 Return the number of matches. Doc fix.
26794 (occur): Doc fix.
26795 (perform-replace): Make comment follow double space convention for
26796 the sake of `outline-minor-mode'.
26797
26798 * faces.el (facep): Doc fix.
26799
26800 2005-06-25 Richard M. Stallman <rms@gnu.org>
26801
26802 * facemenu.el (facemenu-enable-faces-p): New function.
26803 (facemenu-background-menu, facemenu-foreground-menu)
26804 (facemenu-face-menu): Add menu-enable property.
26805
26806 * jka-compr.el (jka-compr-insert-file-contents):
26807 Special handling if cannot find the uncompression program.
26808
26809 * cus-face.el (custom-face-attributes): Add autoload.
26810
26811 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
26812 Bind comment-indent-function locally.
26813
26814 * window.el (save-selected-window): Use save-current-buffer.
26815
26816 * subr.el (with-selected-window): Use save-current-buffer.
26817
26818 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
26819 and with-current-buffer.
26820
26821 2005-06-24 Richard M. Stallman <rms@gnu.org>
26822
26823 * simple.el (line-move-1): Fix previous change.
26824
26825 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
26826
26827 * replace.el (occur-1): Set `buffer-read-only' and the
26828 buffer-modified flag before running `occur-hook' to protect
26829 against unintentional buffer switches that can lead to data loss.
26830
26831 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
26832
26833 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
26834 (gud-gdb-marker-filter): Use font-lock-warning-face for any
26835 initial error.
26836
26837 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
26838 after fresh input.
26839 (gdb-var-create-handler): Put name of expression in quotes.
26840
26841 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
26842
26843 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
26844 elements of RING in order, and without bogus nil elements.
26845
26846 2005-06-23 Richard M. Stallman <rms@gnu.org>
26847
26848 * simple.el (set-variable): Args renamed; doc fix.
26849 (line-move-1): When there are overlays around, use vertical-motion.
26850
26851 * faces.el (escape-glyph): Use brown against light background.
26852 (nobreak-space): Rename from no-break-space.
26853 Fix previous change.
26854
26855 * dired-aux.el (dired-do-copy): Fix arg prompt.
26856
26857 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
26858
26859 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
26860
26861 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
26862 rather than "Distributor".
26863
26864 2005-06-23 Lute Kamstra <lute@gnu.org>
26865
26866 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
26867 (debug-on-entry): Use it. New interactive declaration that uses
26868 function-called-at-point.
26869
26870 2005-06-23 Kim F. Storm <storm@cua.dk>
26871
26872 * subr.el (save-match-data): Add comment about using evaporate arg
26873 to set-match-data.
26874
26875 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
26876
26877 * cus-edit.el (customize-face)
26878 (customize-face-other-window): Handle face aliases.
26879
26880 * faces.el (face-documentation, set-face-attribute)
26881 (face-spec-set): Handle face aliases.
26882
26883 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
26884
26885 * help-mode.el (help-make-xrefs): If a symbol representing a face
26886 name is not followed by the word "face", it could still be a
26887 function or variable name, so don't bypass other checks.
26888
26889 2005-06-22 Juri Linkov <juri@jurta.org>
26890
26891 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
26892 Replace aliased functions with calls where second arg `inherit' is t.
26893
26894 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
26895
26896 * progmodes/gdb-ui.el (gdb-error): New variable.
26897 (gdb-error): New function.
26898 (gdb-annotation-rules): Act on error-begin and error annotations.
26899 (gdb-concat-output): Use font-lock-warning-face for errors.
26900
26901 2005-06-22 Miles Bader <miles@gnu.org>
26902
26903 * bindings.el (propertized-buffer-identification): Use renamed
26904 `Buffer-menu-buffer' face.
26905
26906 * faces.el (vertical-border): Rename from `vertical-divider'.
26907 (escape-glyph): Change dark-background color back to `cyan'.
26908
26909 2005-06-21 Juri Linkov <juri@jurta.org>
26910
26911 * faces.el (face-user-default-spec): Try getting `customized-face'
26912 prior to `saved-face'.
26913 (frame-background-mode): Refill docstring.
26914
26915 * emacs-lisp/lisp-mode.el (eval-defun-1):
26916 * emacs-lisp/edebug.el (edebug-eval-defun):
26917 Set `saved-face' temporarily to nil before calling form.
26918 Set `customized-face' to the new spec after that.
26919
26920 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
26921
26922 * subr.el (1value, lambda, key-substitution-in-progress):
26923 Doc fixes.
26924
26925 * autoinsert.el (auto-insert-alist):
26926 * ses.el (ses-call-printer):
26927 * subr.el (noreturn):
26928 * emacs-lisp/lisp.el (check-parens):
26929 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
26930 * net/browse-url.el (browse-url-mosaic):
26931 * progmodes/cc-defs.el (c-safe-scan-lists):
26932 * progmodes/ebnf-abn.el (ebnf-abn-lex):
26933 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
26934 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
26935 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
26936 * progmodes/ebnf-iso.el (ebnf-iso-lex):
26937 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
26938
26939 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
26940
26941 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
26942
26943 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
26944
26945 * calendar/appt.el (appt-make-list): Activate the package, if
26946 not already active (for backwards compatibility).
26947
26948 2005-06-20 Kim F. Storm <storm@cua.dk>
26949
26950 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
26951
26952 2005-06-20 Miles Bader <miles@gnu.org>
26953
26954 * faces.el (vertical-divider): New face.
26955
26956 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
26957
26958 * simple.el (kill-whole-line): Doc fix.
26959 (next-error-buffer-p, next-error-find-buffer)
26960 (clone-indirect-buffer): Fix typos in docstrings.
26961 (comment-line-break-function): Doc fix: don't say variable
26962 is automatically buffer-local (it isn't).
26963
26964 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
26965
26966 * net/tramp-ftp.el (top):
26967 * net/tramp-smb.el (top):
26968 * net/tramp-util.el (top):
26969 * net/tramp-uu.el (top):
26970 * net/tramp-vc.el (top):
26971 * net/tramp.el (top): Revert copyright years back to original
26972 ones. Tramp has a life outside GNU Emacs.
26973
26974 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
26975
26976 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
26977
26978 2005-06-18 Juri Linkov <juri@jurta.org>
26979
26980 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
26981 end of first regexp to limit the match to the position between
26982 line number and source line with same separator character as used
26983 between file name and line number. In the second regexp limit
26984 mouse-face area to file name and line number by adding new group
26985 for them and referring it in HYPERLINK arg.
26986 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
26987 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
26988 previous line where grep markers may be already removed.
26989
26990 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
26991
26992 * progmodes/ps-mode.el: Update version and maintainer's email address.
26993
26994 2005-06-18 Steve Youngs <steve@xemacs.org>
26995
26996 * net/browse-url.el (browse-url-browser-function)
26997 (browse-url-default-browser): Add firefox.
26998 (browse-url-firefox-program, browse-url-firefox-arguments)
26999 (browse-url-firefox-startup-arguments)
27000 (browse-url-firefox-new-window-is-tab): New defcustoms.
27001 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
27002
27003 2005-06-17 Richard M. Stallman <rms@gnu.org>
27004
27005 * startup.el (command-line): Warn if specified user name has
27006 no home directory.
27007
27008 * term.el (term-get-old-input, term-input-filter, term-input-sender)
27009 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
27010
27011 * longlines.el (longlines-mode, longlines-show-hard-newlines):
27012 Doc fixes.
27013
27014 * faces.el (underline): Try bold if terminal doesn't support underline.
27015
27016 * mail/sendmail.el (mail-setup-with-from): New variable.
27017 (mail-insert-from-field): New function.
27018 (sendmail-send-it): Call it.
27019 (mail-setup): Optionally call it here.
27020
27021 * term/linux.el: Call tty-no-underline.
27022
27023 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
27024
27025 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
27026
27027 2005-06-17 Miles Bader <miles@gnu.org>
27028
27029 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
27030 (ediff-current-diff-C, ediff-current-diff-Ancestor)
27031 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
27032 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
27033 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
27034 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
27035 Remove "-face" suffix from face names.
27036 (ediff-current-diff-face-A, ediff-current-diff-face-B)
27037 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
27038 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
27039 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
27040 (ediff-even-diff-face-A, ediff-even-diff-face-B)
27041 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
27042 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
27043 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
27044 New backward-compatibility aliases for renamed faces.
27045 (ediff-current-diff-face-A, ediff-current-diff-face-B)
27046 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
27047 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
27048 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
27049 (ediff-even-diff-face-A, ediff-even-diff-face-B)
27050 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
27051 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
27052 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
27053 Use renamed ediff faces.
27054
27055 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
27056 Remove "-face" suffix from face names.
27057 (eshell-test-ok-face, eshell-test-failed-face):
27058 New backward-compatibility aliases for renamed faces.
27059 (eshell-run-test): Use renamed eshell-test faces.
27060
27061 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
27062 face name.
27063 (eshell-prompt-face): New backward-compatibility alias for renamed
27064 face.
27065 (eshell-emit-prompt): Use renamed eshell-prompt face.
27066
27067 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
27068 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
27069 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
27070 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
27071 Remove "-face" suffix from face names.
27072 (eshell-ls-directory-face, eshell-ls-symlink-face)
27073 (eshell-ls-executable-face, eshell-ls-readonly-face)
27074 (eshell-ls-unreadable-face, eshell-ls-special-face)
27075 (eshell-ls-missing-face, eshell-ls-archive-face)
27076 (eshell-ls-backup-face, eshell-ls-product-face)
27077 (eshell-ls-clutter-face):
27078 New backward-compatibility aliases for renamed faces.
27079 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
27080
27081 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
27082 Remove "-face" suffix from face name.
27083 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
27084 instead of literal face.
27085
27086 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
27087
27088 * emacs-lisp/warnings.el (display-warning, lwarn)
27089 (warning-minimum-log-level): Doc fixes.
27090 (warning-minimum-level, warning-minimum-log-level):
27091 Add :debug to :type choices.
27092
27093 * progmodes/ada-mode.el (ada-format-paramlist)
27094 (ada-get-indent-case, ada-check-matching-start)
27095 (ada-check-defun-name, ada-goto-matching-decl-start)
27096 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
27097 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
27098 (ada-make-subprogram-body): Follow error conventions.
27099 (ada-case-exception-file, ada-indent-comment-as-code)
27100 (ada-indent-handle-comment-special, ada-indent-renames)
27101 (ada-indent-return, ada-search-directories-internal)
27102 (ada-tab-policy, ada-case-exception-substring)
27103 (ada-other-file-alist, ada-matching-start-re)
27104 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
27105 (ada-imenu-generic-expression, ada-compile-goto-error)
27106 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
27107 (ada-popup-menu, ada-add-extensions, ada-mode)
27108 (ada-region-selected, ada-create-case-exception)
27109 (ada-create-case-exception-substring, ada-after-keyword-p)
27110 (ada-activate-keys-for-case, ada-adjust-case-region)
27111 (ada-adjust-case-buffer, ada-format-paramlist)
27112 (ada-scan-paramlist, ada-insert-paramlist)
27113 (ada-indent-newline-indent)
27114 (ada-indent-newline-indent-conditional)
27115 (ada-justified-indent-current, ada-goto-previous-word)
27116 (ada-indent-current, ada-get-indent-open-paren)
27117 (ada-get-indent-paramlist, ada-get-indent-end)
27118 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
27119 (ada-get-indent-block-start, ada-get-indent-subprog)
27120 (ada-get-indent-noindent, ada-get-indent-label)
27121 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
27122 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
27123 (ada-goto-stmt-end, ada-goto-next-word)
27124 (ada-check-matching-start, ada-check-defun-name)
27125 (ada-goto-matching-decl-start, ada-goto-matching-start)
27126 (ada-goto-matching-end, ada-search-ignore-string-comment)
27127 (ada-in-decl-p, ada-looking-at-semi-or)
27128 (ada-looking-at-semi-private, ada-in-paramlist-p)
27129 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
27130 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
27131 (ada-next-procedure, ada-previous-procedure, ada-next-package)
27132 (ada-previous-package, ada-create-menu)
27133 (ada-fill-comment-paragraph-justify)
27134 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
27135 (ada-other-file-name, ada-last-which-function-line)
27136 (ada-last-which-function-subprog, ada-which-function)
27137 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
27138 (ada-gen-treat-proc, ada-check-emacs-version)
27139 (ada-continuation-indent, ada-align-region-separate):
27140 Fix typos in docstrings.
27141 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
27142
27143 2005-06-16 Lute Kamstra <lute@gnu.org>
27144
27145 * simple.el (fundamental-mode): Run after-change-major-mode-hook
27146 conditionally.
27147
27148 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
27149
27150 * comint.el (comint-replace-by-expanded-filename)
27151 (comint-prompt-regexp, comint-delimiter-argument-list)
27152 (comint-preinput-scroll-to-bottom):
27153 * info.el (Info-hide-cookies-node):
27154 * ls-lisp.el (ls-lisp-classify):
27155 * find-file.el (ff-search-directories, ff-special-constructs)
27156 (ff-find-other-file):
27157 * font-lock.el (font-lock-keywords):
27158 * shell.el (shell-prompt-pattern)
27159 (shell-dynamic-complete-functions, shell-mode)
27160 (shell-delimiter-argument-list):
27161 * term.el (term-replace-by-expanded-filename)
27162 (term-prompt-regexp, term-delimiter-argument-list):
27163 * woman.el (woman-ignore, woman0-if):
27164 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
27165 * emacs-lisp/elint.el (elint-init-env):
27166 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
27167 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
27168 * language/ethio-util.el (ethio-tilde-escape)
27169 (ethio-use-three-dot-question):
27170 * net/zone-mode.el (zone-mode-load-time-setup):
27171 * progmodes/cc-align.el (c-lineup-argcont):
27172 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
27173 * progmodes/cperl-mode.el (cperl-set-style-back):
27174 * progmodes/inf-lisp.el (inferior-lisp-prompt):
27175 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
27176 Fix spellings in docstrings.
27177
27178 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
27179 * progmodes/modula2.el (m2-for): Fix spellings.
27180
27181 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
27182
27183 * simple.el (undo-more): Don't use `format' on `error' arguments.
27184 Improve argument/docstring consistency.
27185 (pending-undo-list): Doc fix.
27186
27187 * smerge-mode.el (smerge-ensure-match):
27188 * emulation/vip.el (vip-ex):
27189 * net/zone-mode.el (zone-mode-update-serial):
27190 * progmodes/idlwave.el (idlwave-complete):
27191 * progmodes/vhdl-mode.el (vhdl-visit-file)
27192 (vhdl-compose-wire-components):
27193 Don't use `format' on `error' arguments.
27194
27195 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
27196 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
27197 (tooltip-help-tips): Fix typos in docstrings.
27198
27199 2005-06-16 David Ponce <david@dponce.com>
27200
27201 * tree-widget.el (tree-widget-value-create): Simplify last change.
27202
27203 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
27204
27205 * ido.el (ido-incomplete-regexp): New variable.
27206 (ido-set-matches-1): Handle invalid-regexp error and set
27207 ido-incomplete-regexp.
27208 (ido-incomplete-regexp): New face.
27209 (ido-completions): Use it.
27210 (ido-complete, ido-exit-minibuffer, ido-completions):
27211 Handle incomplete regexps.
27212 (ido-completions): Add check for complete match when entering a regexp.
27213
27214 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
27215
27216 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
27217
27218 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
27219
27220 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
27221 by field delimiters.
27222
27223 2005-06-15 David Ponce <david@dponce.com>
27224
27225 * tree-widget.el: eval-and-compile inlined functions so they will
27226 be available at run-time too.
27227 (tree-widget-super-format-handler)
27228 (tree-widget-format-handler): Remove.
27229 (tree-widget-value-create): Handle the :indent property.
27230
27231 2005-06-15 Miles Bader <miles@gnu.org>
27232
27233 * progmodes/which-func.el (which-func): Only inherit
27234 `font-lock-function-name-face' when that makes sense against the
27235 default mode-line face, otherwise set the face color explicitly.
27236
27237 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
27238 faces instead of (non-existent) variables.
27239
27240 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
27241
27242 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
27243 (iswitchb-get-matched-buffers): Likewise. Simplify.
27244
27245 2005-06-14 Miles Bader <miles@gnu.org>
27246
27247 * progmodes/ld-script.el (ld-script-location-counter):
27248 Remove "-face" suffix from face name.
27249 (ld-script-location-counter-face):
27250 New backward-compatibility alias for renamed face.
27251 (ld-script-location-counter-face): Use renamed face.
27252
27253 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
27254 (cperl-hash): Remove "-face" suffix from face names.
27255 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
27256 New backward-compatibility aliases for renamed faces.
27257 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
27258 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
27259
27260 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
27261 name.
27262 (which-func-face): New backward-compatibility alias for renamed face.
27263 (which-func-format): Use renamed which-func face.
27264
27265 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
27266 (vhdl-function, vhdl-directive, vhdl-reserved-word)
27267 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
27268 names.
27269 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
27270 (vhdl-speedbar-configuration, vhdl-speedbar-package)
27271 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
27272 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
27273 (vhdl-speedbar-architecture-selected)
27274 (vhdl-speedbar-configuration-selected)
27275 (vhdl-speedbar-package-selected)
27276 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
27277 names.
27278 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
27279 Use renamed faces.
27280 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
27281 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
27282 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
27283 Use renamed faces.
27284 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
27285 names.
27286 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
27287 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
27288 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
27289 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
27290 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
27291 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
27292
27293 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
27294 face name.
27295 (sh-heredoc-face): New backward-compatibility alias for renamed face.
27296 (sh-heredoc-face): Use renamed sh-heredoc face.
27297
27298 * progmodes/idlw-help.el (idlwave-help-link):
27299 Remove "-face" suffix from face name.
27300 (idlwave-help-link-face):
27301 New backward-compatibility alias for renamed face.
27302 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
27303
27304 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
27305 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
27306 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
27307 New backward-compatibility aliases for renamed faces.
27308 (idlwave-shell-disabled-breakpoint-face)
27309 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
27310
27311 * progmodes/flymake.el (flymake-errline, flymake-warnline):
27312 Remove "-face" suffix from face names.
27313 (flymake-errline-face, flymake-warnline-face):
27314 New backward-compatibility aliases for renamed faces.
27315 (flymake-highlight-line): Use renamed flymake faces.
27316
27317 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
27318 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
27319 (ebrowse-member-class, ebrowse-progress):
27320 Remove "-face" suffix from face names.
27321 (ebrowse-tree-mark-face, ebrowse-root-class-face)
27322 (ebrowse-file-name-face, ebrowse-default-face)
27323 (ebrowse-member-attribute-face, ebrowse-member-class-face)
27324 (ebrowse-progress-face):
27325 New backward-compatibility aliases for renamed faces.
27326 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
27327 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
27328 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
27329 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
27330
27331 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
27332 antlr-syntax)
27333 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
27334 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
27335 names.
27336 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
27337 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
27338 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
27339 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
27340 backward-compatibility aliases for renamed faces.
27341 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
27342 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
27343 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
27344 remove "font-lock-". Use renamed antlr-mode faces.
27345 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
27346 literal face-names with face variable references.
27347
27348 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
27349 face name.
27350 (Buffer-menu-buffer-face): New backward-compatibility alias for
27351 renamed face.
27352 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
27353
27354 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
27355
27356 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
27357 Eliminate "-face" suffix.
27358 (makefile-targets): Inherit from font-lock-function-name-face and
27359 eliminate "-face" suffix.
27360 (makefile-shell): Remove attributes and eliminate "-face" suffix.
27361 (makefile-*-font-lock-keywords): Append makefile-targets in rule
27362 actions, instead of prepending, to make it less visible.
27363 (makefile-previous-dependency, makefile-match-dependency):
27364 Don't match a target on a continuation line.
27365
27366 * files.el (auto-mode-alist): Put Makefile in gmake mode.
27367
27368 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
27369
27370 * progmodes/gdb-ui.el (menu): Re-order menu items.
27371 (gdb-tooltip-print): Respect tooltip-use-echo-area.
27372
27373 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
27374 Define in tooltip.el.
27375 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
27376 (gud-tooltip-tips): Respect tooltip-use-echo-area and
27377 gud-tooltip-echo-area.
27378
27379 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
27380 backward compatibility and make obsolete.
27381 (tooltip-help-tips): Use tooltip-use-echo-area.
27382 (tooltip-show-help-function): Rename to...
27383 (tooltip-show-help): ...this, because it is a function.
27384 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
27385
27386 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
27387
27388 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
27389 (edebug-print-length, edebug-print-level, edebug-print-circle)
27390 (edebug-modify-breakpoint, edebug-eval-last-sexp)
27391 (edebug-eval-print-last-sexp): Doc fixes.
27392
27393 2005-06-14 Kim F. Storm <storm@cua.dk>
27394
27395 * ido.el (ido-mode): Make a new keymap every time we enable ido,
27396 as the coverage buffer/file/both may change.
27397
27398 2005-06-14 Lute Kamstra <lute@gnu.org>
27399
27400 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
27401 and run-mode-hooks. Simplify.
27402
27403 * mail/rmailedit.el (rmail-edit-mode):
27404 * progmodes/octave-inf.el (inferior-octave-mode):
27405 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
27406
27407 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
27408 and run-mode-hooks.
27409 (recentf-edit-list, recentf-open-files): Don't call
27410 kill-all-local-variables directly.
27411
27412 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
27413
27414 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
27415
27416 * emacs-lisp/byte-run.el (make-obsolete)
27417 (define-obsolete-function-alias): Rename arguments FUNCTION and
27418 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
27419 (make-obsolete-variable, define-obsolete-variable-alias):
27420 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
27421 respectively.
27422
27423 * isearchb.el (isearchb-activate):
27424 * pcvs.el (cvs-mode):
27425 * ses.el (ses-load):
27426 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
27427 * net/tramp.el (tramp-find-file-exists-command)
27428 (tramp-find-shell):
27429 * progmodes/ada-mode.el (ada-create-case-exception)
27430 (ada-create-case-exception-substring, ada-make-subprogram-body):
27431 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
27432 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
27433 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
27434 * textmodes/org.el (org-promote, org-evaluate-time-range)
27435 (org-agenda-next-date-line, org-agenda-previous-date-line)
27436 (org-agenda-error, org-open-at-point, org-table-move-row)
27437 (org-format-table-table-html-using-table-generate-source)
27438 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
27439 * textmodes/reftex.el (reftex-access-scan-info):
27440 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
27441 (reftex-toc-promote-prepare): Follow error conventions.
27442
27443 * diff-mode.el (diff-mode): Fix typo in docstring.
27444
27445 * forms.el (forms--intuit-from-file): Fix reference to
27446 `forms-number-of-fields' in error message.
27447 (forms-print): Fix quoting in error message.
27448
27449 * forms.el (forms-mode):
27450 * emulation/vi.el (vi-goto-insert-state):
27451 * progmodes/flymake.el (flymake-new-err-info)
27452 (flymake-start-syntax-check-for-current-buffer)
27453 (flymake-simple-cleanup):
27454 * eshell/esh-var.el (eshell/export):
27455 * progmodes/gud.el (xdb):
27456 * textmodes/flyspell.el (flyspell-incorrect-hook)
27457 (flyspell-maybe-correct-transposition)
27458 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
27459
27460 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
27461
27462 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
27463 minibuffer prompt.
27464
27465 2005-06-13 Kim F. Storm <storm@cua.dk>
27466
27467 * subr.el (add-to-ordered-list): New defun.
27468
27469 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
27470 add cua--keymap-alist to emulation-mode-map-alists.
27471
27472 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
27473
27474 * subr.el (complete-in-turn): New macro.
27475 (dynamic-completion-table, lazy-completion-table): Add debug info.
27476
27477 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
27478 in preference to face aliases.
27479
27480 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
27481 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
27482 Remove unused vars `start' and `firstline'.
27483 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
27484 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
27485
27486 2005-06-13 Eli Zaretskii <eliz@gnu.org>
27487
27488 * cus-start.el (all): Don't complain about missing GTK-related
27489 variables, unless either `gtk' is boundp or this isn't a
27490 `windows-nt' build.
27491
27492 2005-06-13 Lute Kamstra <lute@gnu.org>
27493
27494 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
27495 run-mode-hooks.
27496
27497 * ediff-mult.el (ediff-meta-mode):
27498 * ediff-util.el (ediff-mode): Use run-mode-hooks.
27499
27500 * ledit.el (ledit-mode): Use delay-mode-hooks.
27501
27502 * woman.el (woman-mode-line-format): Delete constant.
27503 (woman-mode-map): Initialize it properly.
27504 (woman-mode): Set mode-class property to special.
27505 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
27506 Set major-mode and mode-name. Don't set mode-line-format directly.
27507 (Man-getpage-in-background): Don't reference woman-mode-line-format.
27508
27509 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
27510 string argument obsolete.
27511
27512 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
27513
27514 * textmodes/org.el (org-CUA-compatible): New option.
27515 (org-disputed-keys): New variable.
27516 (org-key): New function.
27517 (orgtbl-make-binding): Add docstring to the created function.
27518 (org-mode): Set paragraph start/separate regexps.
27519 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
27520 (org-archive-location, org-archive-mark-done)
27521 (org-archive-stamp-time): New options.
27522 (org-archive-subtree): New command.
27523 (org-fill-paragraph): New function.
27524 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
27525 (org-fake-empty-table-line): Function removed.
27526 (org-format-org-table-html): Do not create empty table lines at
27527 separator lines. Improved table header treatment.
27528 (org-link-format): New option.
27529 (org-make-link): New function.
27530 (org-insert-link, org-store-link): Use org-make-link.
27531 (org-open-file): Quote file name for shell command, to allow
27532 spaces in file names.
27533 (org-link-regexp): Fix bug with mailto link.
27534 (org-link-maybe-angles-regexp, org-protected-link-regexp):
27535 New constants.
27536 (org-export-as-html): Deal with the optional angles around a link.
27537 Better treatment of file: links.
27538 (org-open-at-point): Replace @{ and @} with < and >.
27539 (org-run-mode-hooks): Function removed.
27540 (org-agenda-mode): No longer use `org-run-mode-hooks'.
27541
27542 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
27543
27544 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
27545 MI command -data-list-register-values.
27546 (gdb-post-prompt): Indent properly.
27547
27548 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
27549
27550 * hilit-chg.el (highlight-changes-colors): Rename from
27551 `highlight-changes-colours'.
27552 (highlight-changes-colours): Keep as obsolete alias.
27553 (highlight-changes-face-list): Doc fix.
27554 (hilit-chg-make-list): Use `highlight-changes-colors'.
27555
27556 2005-06-12 Mark A. Hershberger <mah@everybody.org>
27557
27558 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
27559 defun-prompt-regexp.
27560
27561 2005-06-12 Eli Zaretskii <eliz@gnu.org>
27562
27563 * loadup.el: Don't say we are dumping under 2 names on windows-nt
27564 and cygwin.
27565
27566 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
27567 Don't use an old loaddefs.el, as in Makefile.in.
27568
27569 2005-06-12 Lute Kamstra <lute@gnu.org>
27570
27571 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
27572
27573 * man.el (Man-mode-map): Initialize it properly.
27574 (Man-mode): Set mode-class property to special.
27575
27576 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
27577
27578 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
27579
27580 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
27581 A newline is needed in the docstring there.
27582
27583 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
27584 Doc fixes.
27585
27586 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
27587
27588 * printing.el: Doc fix. The menubar is no more changed when printing
27589 is loaded, it only changes when pr-menu-bind or pr-update-menus is
27590 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
27591 (pr-version): New version number (6.8.4).
27592 (pr-menu-bind): New command.
27593 (pr-update-menus): Docstring and code fix.
27594 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
27595 Docstring fix.
27596 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
27597 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
27598
27599 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
27600
27601 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
27602 "Returns" to "return", document useful return values, etc.
27603
27604 2005-06-11 Alan Mackenzie <acm@muc.de>
27605
27606 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
27607 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
27608 (adaptive-file-function): Minor amendment to doc-string.
27609
27610 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
27611
27612 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
27613 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
27614 Fix :type--it is `integer', not `string'.
27615
27616 * faces.el (modeline-highlight): Rename from (the erroneous)
27617 `modeline-higilight'.
27618
27619 2005-06-11 Lute Kamstra <lute@gnu.org>
27620
27621 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
27622 lisp-interaction-mode-map but make it the parent.
27623 (edebug-eval-mode): Use define-derived-mode.
27624
27625 2005-06-11 Andreas Schwab <schwab@suse.de>
27626
27627 * bindings.el: Add binding of `ESC functionkey' for every
27628 `M-functionkey'.
27629 * hexl.el (hexl-mode-map): Likewise.
27630
27631 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
27632
27633 * progmodes/compile.el (compilation-error-regexp-alist-alist)
27634 [msft]: update regexp for newer msft compilers.
27635
27636 2005-06-10 Mark A. Hershberger <mah@everybody.org>
27637
27638 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
27639 ATTLIST portions of included DTDs.
27640 (xml-parse-dtd): Eliminate use of inefficient match-data.
27641
27642 2005-06-10 Miles Bader <miles@gnu.org>
27643
27644 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
27645 (mpuz-text): Remove "-face" suffix from face names.
27646 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
27647 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
27648 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
27649
27650 * play/gomoku.el (gomoku-O, gomoku-X):
27651 Remove "-face" suffix from face names.
27652 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
27653 New backward-compatibility aliases for renamed faces.
27654 (gomoku-font-lock-keywords): Use renamed gomoku faces.
27655
27656 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
27657
27658 * thumbs.el: Fixes for changes of 2005-06-09.
27659 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
27660 as a directory.
27661 (thumbs-thumbname): Remove directory separator from format string;
27662 `thumbs-thumbsdir' now returns a valid directory name.
27663 (thumbs-temp-dir): New defsubst.
27664 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
27665 Use it.
27666
27667 * cus-edit.el (minibuffer):
27668 * files.el (make-backup-file-name-function):
27669 * filesets.el (filesets-external-viewers):
27670 * hilit-chg.el (highlight-changes-colours)
27671 (highlight-changes-face-list, highlight-changes-rotate-faces):
27672 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
27673 * kmacro.el (kmacro-call-macro):
27674 * log-edit.el (log-edit-changelog-full-paragraphs):
27675 * mouse.el (mouse-1-click-follows-link):
27676 * skeleton.el (skeleton-autowrap):
27677 * subr.el (insert-for-yank-1):
27678 * tempo.el (tempo-insert-region):
27679 * terminal.el (terminal-emulator):
27680 * time.el (display-time-mail-face):
27681 * vc.el (vc-annotate):
27682 * vcursor.el (vcursor-copy-line):
27683 * woman.el (woman-bold-headings, woman-ignore)
27684 (woman-default-faces, woman-monochrome-faces):
27685 * calendar/todo-mode.el (todo-insert-threshold):
27686 * emulation/pc-select.el (pc-select-selection-keys-only)
27687 (pc-selection-mode):
27688 * emulation/vip.el (vip-find-char-forward):
27689 * emulation/viper-cmd.el (viper-find-char-forward):
27690 * international/mule-cmds.el
27691 (select-safe-coding-system-accept-default-p)
27692 (input-method-exit-on-invalid-key):
27693 * international/mule-diag.el (describe-coding-system):
27694 * international/ucs-tables.el (unify-8859-on-encoding-mode):
27695 * net/browse-url.el (browse-url-xterm-program):
27696 * obsolete/lazy-lock.el (lazy-lock-mode):
27697 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
27698 (cperl-mode):
27699 * progmodes/cpp.el (cpp-face-light-name-list)
27700 (cpp-face-dark-name-list):
27701 * progmodes/delphi.el (delphi-newline-always-indents):
27702 Fix spellings in docstrings.
27703
27704 * ido.el (ido-mode, ido-file-extensions-order)
27705 (ido-default-file-method, ido-default-buffer-method)
27706 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
27707 (ido-decorations, ido-read-file-name-as-directory-commands)
27708 (ido-read-file-name-non-ido, ido-work-directory-list)
27709 (ido-ignore-item-temp-list, ido-current-directory)
27710 (ido-magic-forward-char, ido-enter-find-file)
27711 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
27712 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
27713
27714 2005-06-10 Lute Kamstra <lute@gnu.org>
27715
27716 * play/dunnet.el (dun-mode): Use define-derived-mode.
27717 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
27718 obsolete alias.
27719
27720 * play/doctor.el (doctor-mode-map): Remove defvar.
27721 (doctor-mode): Use define-derived-mode.
27722
27723 * mail/mspools.el (mspools-mode):
27724 * net/eudc-hotlist.el (eudc-hotlist-mode):
27725 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
27726
27727 2005-06-10 Miles Bader <miles@gnu.org>
27728
27729 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
27730 Remove "-face" suffix from face names.
27731 (flyspell-incorrect-face, flyspell-duplicate-face):
27732 New backward-compatibility aliases for renamed faces.
27733 (flyspell-mode-on, make-flyspell-overlay)
27734 (flyspell-highlight-incorrect-region)
27735 (flyspell-highlight-duplicate-region)
27736 (flyspell-display-next-corrections)
27737 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
27738
27739 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
27740 from face name.
27741 (texinfo-heading-face): New backward-compatibility alias for
27742 renamed face.
27743 (texinfo-heading-face): Use renamed texinfo-heading face.
27744
27745 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
27746 suffix from face names.
27747 (tex-math-face, tex-verbatim-face):
27748 New backward-compatibility aliases for renamed faces.
27749 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
27750 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
27751 literal face name.
27752
27753 * textmodes/table.el (table-cell): Remove "-face" suffix from face
27754 name.
27755 (table-cell-face): New backward-compatibility alias for renamed face.
27756 (table--put-cell-face-property, table--update-cell-face):
27757 Use renamed table-cell face.
27758
27759 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
27760 from face name.
27761 (sgml-namespace-face): New backward-compatibility alias for
27762 renamed face.
27763 (sgml-namespace-face): Use renamed sgml-namespace face.
27764
27765 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
27766 (org-level-4, org-level-5, org-level-6, org-level-7)
27767 (org-level-8, org-warning, org-headline-done)
27768 (org-deadline-announce, org-scheduled-today)
27769 (org-scheduled-previously, org-link, org-done, org-table)
27770 (org-time-grid): Remove "-face" suffix from face names.
27771 (org-level-1-face, org-level-2-face, org-level-3-face)
27772 (org-level-4-face, org-level-5-face, org-level-6-face)
27773 (org-level-7-face, org-level-8-face, org-warning-face)
27774 (org-headline-done-face, org-deadline-announce-face)
27775 (org-scheduled-today-face, org-scheduled-previously-face)
27776 (org-link-face, org-done-face, org-table-face)
27777 (org-time-grid-face):
27778 New backward-compatibility aliases for renamed faces.
27779 (org-level-faces, org-set-font-lock-defaults, org-timeline)
27780 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
27781 (org-agenda-get-timestamps, org-agenda-get-scheduled)
27782 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
27783
27784 * emulation/viper-init.el (viper-search, viper-replace-overlay)
27785 (viper-minibuffer-emacs, viper-minibuffer-insert)
27786 (viper-minibuffer-vi): Remove "-face" suffix from face names.
27787 (viper-search-face, viper-replace-overlay-face)
27788 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
27789 (viper-minibuffer-vi-face):
27790 New backward-compatibility aliases for renamed faces.
27791 (viper-search-face, viper-replace-overlay-face)
27792 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
27793 (viper-minibuffer-vi-face): Use renamed viper faces.
27794
27795 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
27796 Remove "-face" suffix from face names.
27797 (testcover-nohits-face, testcover-1value-face):
27798 New backward-compatibility aliases for renamed faces.
27799 (testcover-mark): Use renamed testcover faces.
27800
27801 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
27802 face name.
27803 (diary-button-face): New backward-compatibility alias for renamed face.
27804 (diary-entry): Use renamed diary-button face.
27805
27806 * calendar/calendar.el (diary, calendar-today, holiday)
27807 (mark-visible-calendar-date): Remove "-face" suffix from face names.
27808 (diary-face, calendar-today-face, holiday-face):
27809 New backward-compatibility aliases for renamed faces.
27810 (eval-after-load "facemenu", diary-entry-marker)
27811 (calendar-today-marker, calendar-holiday-marker, diary-face):
27812 Use renamed calendar faces.
27813
27814 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
27815 (compare-windows-face): New backward-compatibility alias for
27816 renamed face.
27817 (compare-windows-highlight): Use renamed compare-windows face.
27818
27819 * strokes.el (strokes-char): Remove "-face" suffix from face name.
27820 (strokes-char-face): New backward-compatibility alias for renamed face.
27821 (strokes-encode-buffer): Use renamed strokes-char face.
27822
27823 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
27824 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
27825 Remove "-face" suffix from face names.
27826 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
27827 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
27828 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
27829 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
27830 Use renamed pcvs faces.
27831 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
27832 * pcvs-defs.el (cvs-mode-map): Likewise.
27833 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
27834
27835 * info.el (info-title-1, info-title-2, info-title-3)
27836 (info-title-4): Remove "-face" suffix from and downcase face names.
27837 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
27838 (Info-title-4-face):
27839 New backward-compatibility aliases for renamed faces.
27840 (Info-fontify-node): Use renamed info faces.
27841
27842 * hilit-chg.el (highlight-changes, highlight-changes-delete):
27843 Remove "-face" suffix from face names.
27844 (highlight-changes-face, highlight-changes-delete-face):
27845 New backward-compatibility aliases for renamed faces.
27846 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
27847 (hilit-chg-make-list): Use renamed highlight-changes faces.
27848
27849 * generic-x.el (show-tabs-tab, show-tabs-space):
27850 Remove "-face" suffix from face names.
27851 (show-tabs-tab-face, show-tabs-space-face):
27852 New backward-compatibility aliases for renamed faces.
27853 (show-tabs-generic-mode-font-lock-defaults-1)
27854 (show-tabs-generic-mode-font-lock-defaults-2):
27855 Use renamed show-tabs faces.
27856
27857 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
27858 (smerge-markers): Remove "-face" suffix from face names.
27859 (smerge-mine-face, smerge-other-face, smerge-base-face)
27860 (smerge-markers-face):
27861 New backward-compatibility aliases for renamed faces.
27862 (smerge-mine-face, smerge-other-face, smerge-base-face)
27863 (smerge-markers-face): Use renamed smerge faces.
27864
27865 * log-view.el (log-view-file, log-view-message): Remove "-face"
27866 suffix from face names.
27867 (log-view-file-face, log-view-message-face):
27868 New backward-compatibility aliases for renamed faces.
27869 (log-view-file-face, log-view-message-face): Use renamed log-view
27870 faces.
27871
27872 * paren.el (show-paren-match, show-paren-mismatch):
27873 Remove "-face" suffix from face names.
27874 (show-paren-match-face, show-paren-mismatch-face):
27875 New backward-compatibility aliases for renamed faces.
27876 (show-paren-function): Use renamed show-paren faces.
27877
27878 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
27879 (ruler-mode-margins, ruler-mode-fringes)
27880 (ruler-mode-column-number, ruler-mode-fill-column)
27881 (ruler-mode-comment-column, ruler-mode-goal-column)
27882 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
27883 suffix from face names.
27884 (ruler-mode-default-face, ruler-mode-pad-face)
27885 (ruler-mode-margins-face, ruler-mode-fringes-face)
27886 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
27887 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
27888 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
27889 New backward-compatibility aliases for renamed faces.
27890 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
27891 (ruler-mode-column-number, ruler-mode-fill-column)
27892 (ruler-mode-comment-column, ruler-mode-goal-column)
27893 (ruler-mode-tab-stop, ruler-mode-current-column)
27894 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
27895 faces.
27896
27897 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
27898 face name.
27899 (whitespace-highlight-the-space): Use renamed face.
27900 (whitespace-highlight-face): New backward-compatibility alias for
27901 renamed face.
27902
27903 * woman.el (woman-italic, woman-bold, woman-unknown)
27904 (woman-addition, woman-symbol-face):
27905 Remove "-face" suffix from face names.
27906 (woman-italic-face, woman-bold-face, woman-unknown-face)
27907 (woman-addition-face):
27908 New backward-compatibility aliases for renamed faces.
27909 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
27910 (woman-decode-region, woman-replace-match)
27911 (woman-display-extended-fonts, woman-special-characters)
27912 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
27913 Use renamed woman faces.
27914
27915 * longlines.el (longlines-visible-face): Face removed.
27916
27917 * diff-mode.el (diff-header, diff-file-header, diff-index)
27918 (diff-hunk-header, diff-removed, diff-added, diff-changed)
27919 (diff-function, diff-context, diff-nonexistent): Remove "-face"
27920 suffix from face names.
27921 (diff-header-face, diff-file-header-face, diff-index-face)
27922 (diff-hunk-header-face, diff-removed-face, diff-added-face)
27923 (diff-changed-face, diff-function-face, diff-context-face)
27924 (diff-nonexistent-face): New backward-compatibility aliases for
27925 renamed faces.
27926 (diff-header-face, diff-file-header-face)
27927 (diff-index, diff-index-face, diff-hunk-header)
27928 (diff-hunk-header-face, diff-removed, diff-removed-face)
27929 (diff-added, diff-added-face, diff-changed-face, diff-function)
27930 (diff-function-face, diff-context-face, diff-nonexistent)
27931 (diff-nonexistent-face): Use renamed diff-mode faces.
27932
27933 * progmodes/compile.el (compilation-warning-face)
27934 (compilation-info-face): Remove "-face" suffix from face names.
27935 (compilation-warning-face, compilation-info-face):
27936 New backward-compatibility aliases for renamed faces.
27937 (compilation-warning-face, compilation-info-face):
27938 Use renamed compilation faces.
27939
27940 * add-log.el (change-log-date, change-log-name)
27941 (change-log-email, change-log-file, change-log-list)
27942 (change-log-conditionals, change-log-function)
27943 (change-log-acknowledgement): Remove "-face" suffix from face names.
27944 (change-log-date-face, change-log-name-face)
27945 (change-log-email-face, change-log-file-face)
27946 (change-log-list-face, change-log-conditionals-face)
27947 (change-log-function-face, change-log-acknowledgement-face):
27948 New backward-compatibility aliases for renamed faces.
27949 (change-log-font-lock-keywords): Use renamed change-log faces.
27950
27951 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
27952 (custom-set, custom-changed, custom-saved, custom-button)
27953 (custom-button-pressed, custom-documentation, custom-state)
27954 (custom-comment, custom-comment-tag, custom-variable-tag)
27955 (custom-variable-button, custom-face-tag, custom-group-tag-1)
27956 (custom-group-tag): Remove "-face" suffix from face names.
27957 (custom-magic-alist, custom-magic-value-create)
27958 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
27959 (custom-invalid-face, custom-rogue-face, custom-modified-face)
27960 (custom-set-face, custom-changed-face, custom-saved-face)
27961 (custom-button-face, custom-button-pressed-face)
27962 (custom-documentation-face, custom-state-face)
27963 (custom-comment-face, custom-comment-tag-face)
27964 (custom-variable-tag-face, custom-variable-button-face)
27965 (custom-face-tag-face, custom-group-tag-face-1)
27966 (custom-group-tag-face):
27967 New backward-compatibility aliases for renamed faces.
27968
27969 * wid-edit.el (widget-documentation, widget-button)
27970 (widget-field, widget-single-line-field, widget-inactive)
27971 (widget-button-pressed): "-face" suffix removed from face names.
27972 (widget-documentation-face, widget-button-face)
27973 (widget-field-face, widget-single-line-field-face)
27974 (widget-inactive-face, widget-button-pressed-face):
27975 New backward-compatibility aliases for renamed faces.
27976 (widget-documentation-face, widget-button-face)
27977 (widget-button-pressed-face, widget-specify-field)
27978 (widget-specify-inactive): Use renamed widget faces.
27979
27980 2005-06-10 Kenichi Handa <handa@m17n.org>
27981
27982 * term/x-win.el (x-clipboard-yank): Remove condition-case
27983 wrapping.
27984
27985 2005-06-11 Kenichi Handa <handa@m17n.org>
27986
27987 * add-log.el (change-log-font-lock-keywords): Make the regexp for
27988 date lines stricter.
27989
27990 2005-06-10 Zhang Wei <id.brep@gmail.com>
27991
27992 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
27993 of x-get-selection.
27994
27995 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
27996
27997 * comint.el (comint-mode, comint-snapshot-last-prompt):
27998 * frame.el (frame-current-scroll-bars):
27999 * term.el (term-mode, term-check-proc, term-input-sender)
28000 (term-simple-send, term-extract-string, term-word)
28001 (term-match-partial-filename):
28002 * window.el (window-current-scroll-bars):
28003 * emulation/cua-base.el (cua-normal-cursor-color)
28004 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
28005 (cua-global-mark-cursor-color):
28006 * mail/undigest.el (rmail-forward-separator-regex):
28007 Fix typos in docstrings.
28008
28009 * comint.el (comint-check-proc, make-comint-in-buffer)
28010 (comint-source-default): Doc fixes.
28011
28012 * term.el (term-send-string): Improve argument/docstring consistency.
28013
28014 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
28015
28016 * comint.el (comint-send-input): Bind `inhibit-read-only' around
28017 call to `delete-region'.
28018 (comint-mode-hook): Do not enable Font Lock by default.
28019
28020 2005-06-09 Lute Kamstra <lute@gnu.org>
28021
28022 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
28023 could be void.
28024
28025 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
28026
28027 * emacs-lisp/debug.el (debugger-will-be-back): New var.
28028 (debug): Use it.
28029 (debugger-step-through, debugger-continue, debugger-jump)
28030 (debugger-return-value): Set it when needed.
28031 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
28032 Use inhibit-read-only.
28033
28034 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
28035
28036 * window.el (shrink-window-if-larger-than-buffer)
28037 (window-size-fixed): Fix typo in docstring.
28038
28039 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
28040 thumbnails directory on loading.
28041 (thumbs-conversion-program): Use `eq' to check the system type,
28042 not `equal'.
28043 (thumbs-temp-dir): Initialize to `temporary-file-directory',
28044 not "/tmp". Fix docstring.
28045 (thumbs-thumbsdir): New function to return the thumbnails
28046 directory, creating it if needed.
28047 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
28048 (thumbs-temp-file): Delete variable and make it into a function.
28049 (thumbs-resize-image, thumbs-modify-image): Use it.
28050 (thumbs-kill-buffer): Simplify.
28051 (thumbs-gensym): Defalias or duplicate CL `gensym'.
28052 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
28053 docstrings.
28054
28055 2005-06-09 Kim F. Storm <storm@cua.dk>
28056
28057 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
28058 set-match-data to free markers in match-data.
28059
28060 * replace.el (replace-match-data): Pass RESEAT arg `t' to
28061 match-data to unchain markers in match-data.
28062
28063 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
28064
28065 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
28066 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
28067 unnecessary now.
28068
28069 2005-06-08 Richard M. Stallman <rms@gnu.org>
28070
28071 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
28072 give the variable a doc string that doesn't say don't set it directly.
28073
28074 * textmodes/ispell.el (ispell-check-version):
28075 Use match-string-no-properties.
28076 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
28077 (ispell-buffer-local-words): Likewise.
28078
28079 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
28080 except on terminals with enough colors to really display it.
28081 (makefile-dependency-regex): Delete spurious `bb'.
28082
28083 * faces.el (escape-glyph): Use blue once again in last case.
28084 (no-break-space): Redefine so that it isn't invisible on a tty.
28085
28086 2005-06-08 Kim F. Storm <storm@cua.dk>
28087
28088 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
28089 also when reading directory name.
28090
28091 2005-06-08 Lute Kamstra <lute@gnu.org>
28092
28093 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
28094 (flyspell-mode-line-string): Remove autoload cookie.
28095 (flyspell-mode): Remove defvar.
28096
28097 2005-06-07 Lute Kamstra <lute@gnu.org>
28098
28099 * textmodes/org.el (org-run-mode-hooks): New function.
28100 (org-agenda-mode): Use it.
28101
28102 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
28103
28104 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
28105
28106 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
28107
28108 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
28109
28110 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
28111
28112 * font-lock.el (font-lock-add-keywords): Doc fix.
28113
28114 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
28115
28116 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
28117 (tex-compile-default): In the absence of any history, use the order in
28118 tex-compile-alist to choose the preferred command.
28119 (tex-compile-commands): Reorder a bit.
28120
28121 * textmodes/flyspell.el (flyspell-auto-correct-binding)
28122 (flyspell-incorrect-face, flyspell-duplicate-face):
28123 Use (X)Emacs-agnostic code.
28124 (flyspell-mode-map): Don't overwrite at each load. Remove code
28125 redundant with the subsequent add-minor-mode. Merge Emacs and
28126 XEmacs code.
28127 (flyspell-word): Minor simplification.
28128 (flyspell-math-tex-command-p): Quieten the byte-compiler.
28129 (flyspell-external-point-words): Remove unused vars `size' and `start'.
28130 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
28131 Merge the corresponding Emacs code.
28132 (flyspell-correct-word, flyspell-xemacs-popup):
28133 Use flyspell-do-correct.
28134
28135 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
28136 a dedicated window.
28137
28138 * international/latexenc.el (latexenc-find-file-coding-system):
28139 Undo part of last patch, to turn off a compiler warning.
28140
28141 2005-06-06 Juri Linkov <juri@jurta.org>
28142
28143 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
28144 Rename `tmm-inactive-face' to `tmm-inactive'.
28145
28146 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
28147
28148 * iswitchb.el: Rename faces.
28149
28150 2005-06-06 Kim F. Storm <storm@cua.dk>
28151
28152 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
28153 (cua-global-mark): Remove -face suffix from face names.
28154
28155 * emulation/cua-gmrk.el (cua--init-global-mark):
28156 Remove cua-global-mark face setup.
28157
28158 2005-06-06 Richard M. Stallman <rms@gnu.org>
28159
28160 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
28161 just like other allowed characters.
28162 (makefile-match-dependency): Exclude leading and training whitespace
28163 from the range of regexp subexp 1.
28164 (makefile-macroassign-regex): Don't try to match the body,
28165 just the name of the macro being defined.
28166
28167 * info.el (Info-read-node-name-2): New function.
28168 (Info-read-node-name-1): Use that.
28169 Add a completion-base-size-function property.
28170
28171 * simple.el (completion-setup-function): Look for
28172 completion-base-size-function property of minibuffer-completion-table.
28173
28174 * files.el (locate-file-completion): Doc fix.
28175
28176 * printing.el: Don't call pr-update-menus; user must do that.
28177
28178 * emacs-lisp/debug.el (debugger-window): New variable.
28179 (debug): Use debugger-window if it is set and still alive.
28180 Record debugger-window for next entry.
28181
28182 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
28183
28184 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
28185
28186 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
28187 (hack-one-local-variable, hack-local-variables)
28188 (hack-local-variables-prop-line): Pass that arg.
28189
28190 2005-06-06 Kim F. Storm <storm@cua.dk>
28191
28192 * ido.el (ido-first-match, ido-only-match, ido-subdir)
28193 (ido-indicator): Remove -face suffix from face names.
28194
28195 2005-06-06 Juri Linkov <juri@jurta.org>
28196
28197 * font-lock.el (font-lock-regexp-backslash)
28198 (font-lock-regexp-backslash-construct): New faces.
28199 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
28200 after `('. Add `while-no-input' to control structures.
28201
28202 * faces.el (no-break-space, shadow): New faces.
28203 (escape-glyph): Use less loud colors pink2 and red4.
28204
28205 * diff-mode.el (diff-context-face)
28206 * dired.el (dired-ignored)
28207 * rfn-eshadow.el (file-name-shadow)
28208 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
28209
28210 * info.el (Info-title-1-face): Use green instead of yellow because
28211 bold yellow is not readable on light backgrounds.
28212
28213 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
28214 before selecting the desired mode to not spend time fontifying
28215 old contents.
28216
28217 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
28218
28219 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
28220 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
28221
28222 * ps-print.el (ps-default-fg, ps-default-bg):
28223 Fix typos in docstrings.
28224
28225 * isearchb.el (isearchb): Don't pass a spurious second argument to
28226 `iswitchb-completions'.
28227
28228 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
28229
28230 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
28231 to preserve point.
28232 (gdb-find-file-hook): Add doc string.
28233
28234 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
28235 C dereferenced pointer expression.
28236 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
28237
28238 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
28239
28240 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
28241 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
28242 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
28243 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
28244 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
28245 Make background transparent.
28246
28247 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
28248
28249 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
28250 (font-lock-remove-keywords): Doc fix.
28251 (font-lock-mode-major-mode): Compiler defvar.
28252 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
28253
28254 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
28255 (font-lock-mode): Update `font-lock-mode-major-mode'.
28256 (font-lock-set-defaults): Compiler defvar.
28257 (font-lock-default-function): Take `font-lock-mode-major-mode'
28258 into account.
28259
28260 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
28261 keep track of which major mode it enabled the minor mode for.
28262 Use find-file-hook again. Update docstring.
28263
28264 * simple.el (eval-expression-print-level)
28265 (eval-expression-print-length, eval-expression-debug-on-error):
28266 Doc fixes.
28267
28268 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
28269
28270 * iswitchb.el (iswitchb-single-match-face)
28271 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
28272 (iswitchb-invalid-regexp-face): New faces.
28273 (iswitchb-completions): Use them.
28274 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
28275 now marked as an obsolete alias.
28276 (iswitchb-read-buffer): Remove check for bound font variables.
28277 (iswitchb-invalid-regexp): New free variable.
28278 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
28279 set iswitchb-invalid-regexp.
28280 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
28281 invalid regexps.
28282 (iswitchb-completions): Add check for complete match when entering
28283 a regexp.
28284 (iswitchb-completions): Remove require-match argument.
28285 (iswitchb-exhibit): Fix caller.
28286 (iswitchb-common-match-inserted): New variable.
28287 (iswitchb-complete, iswitchb-completion-help): Use it.
28288
28289 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
28290
28291 * url-http.el (url-http-chunked-encoding-after-change-function):
28292 Use `url-http-debug' instead of `message'.
28293
28294 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
28295
28296 * url-http.el (url-http-parse-headers): Pass redirected URL as a
28297 callback argument.
28298
28299 2005-06-04 Kim F. Storm <storm@cua.dk>
28300
28301 * simple.el (line-move): Only call sit-for when moving backwards.
28302
28303 * ido.el (ido-make-merged-file-list-1): New defun split from
28304 ido-make-merged-file-list.
28305 (ido-make-merged-file-list): Bind throw-on-input around call to
28306 ido-make-merged-file-list-1. Return input-pending-p if
28307 interrupted by more input available.
28308 (ido-read-internal): Handle input-pending-p return value from
28309 ido-make-merged-file-list.
28310
28311 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
28312
28313 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
28314 compatibility code.
28315
28316 * international/latexenc.el (latexenc-find-file-coding-system):
28317 Don't inherit the EOL part of the coding-system from the
28318 tex-main buffer. Fit within 80 columns.
28319
28320 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
28321
28322 * tmm.el (tmm-inactive-face): New face.
28323 (tmm-remove-inactive-mouse-face): New function.
28324 (tmm-prompt, tmm-add-one-shortcut)
28325 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
28326 but not selectable.
28327
28328 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
28329
28330 * faces.el (face-equal): Improve argument/docstring consistency.
28331
28332 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
28333
28334 * progmodes/make-mode.el (makefile-targets-face)
28335 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
28336 (makefile-bsdmake-dependency-regex)
28337 (makefile-makepp-rule-action-regex)
28338 (makefile-bsdmake-rule-action-regex): New constants.
28339 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
28340
28341 * progmodes/compile.el (compilation-error-regexp-alist-alist):
28342 Allow (...) within `...' for makepp messages.
28343
28344 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
28345
28346 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
28347
28348 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
28349 "." files are deleted from all file lists before comparison.
28350
28351 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
28352 (viper-ESC-key): Made them customizable.
28353
28354 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
28355
28356 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
28357
28358 * autorevert.el (auto-revert-buffers): Use save-match-data.
28359
28360 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
28361
28362 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
28363 menu items with a nil command binding.
28364
28365 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
28366
28367 * emacs-lisp/cl-macs.el (defsetf):
28368 Improve argument/docstring consistency.
28369
28370 * faces.el (list-faces-display): Improve the formatting by
28371 computing the maximum length required for any face-name (reworked
28372 patch of 1999-01-11, accidentally deleted on 1999-07-21).
28373 (internal-find-face): Remove redundant info in docstring.
28374
28375 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
28376
28377 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
28378 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
28379 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
28380 (gdb-assembler-custom): Improve regexps.
28381 (def-gdb-auto-update-handler): Use window point to preserve point.
28382
28383 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
28384
28385 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
28386
28387 2005-05-31 Jay Belanger <belanger@truman.edu>
28388
28389 * calc/calc-embed.el (calc-embedded-word): Change argument passed
28390 to calc-embedded.
28391 (calc-embedded-make-info): Have plain prefix argument select
28392 entire line.
28393
28394 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
28395
28396 * faces.el (list-faces-display): Signal error if passed a regexp
28397 that matches no face name.
28398
28399 * simple.el (filter-buffer-substring): Fix typo in docstring.
28400
28401 2005-05-31 Richard M. Stallman <rms@gnu.org>
28402
28403 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
28404 (vhdl-emacs-21): Doc fix.
28405 (vhdl-mode): Unconditionally set comment-padding.
28406 (vhdl-fixup-whitespace-region): Insert spaces only where
28407 there are none.
28408 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
28409
28410 2005-05-30 John Wiegley <johnw@newartisans.com>
28411
28412 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
28413 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
28414 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
28415 `directory-sep-char' to ?/, and all uses of `string-to-int' to
28416 `string-to-number'.
28417
28418 2005-05-30 Jay Belanger <belanger@truman.edu>
28419
28420 * calc/calc.el (calc-bug-address): Fix docstring.
28421 (calc-window-hook, calc-trail-window-hook): New variables.
28422 (calc-trail-display): Restore use of calc-trail-window-hook.
28423 (calc): Restore use of calc-window-hook.
28424
28425 2005-05-31 Masatake YAMATO <jet@gyve.org>
28426
28427 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
28428
28429 * help-fns.el (help-C-file-name): Add autoload mark for
28430 `find-function-noselect'.
28431
28432 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
28433
28434 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
28435 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
28436
28437 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
28438
28439 * calendar/diary-lib.el (mark-included-diary-files): Only kill
28440 included diary buffer if it was not already being visited.
28441 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
28442
28443 * calendar/icalendar.el (top-level): Do not require appt.
28444
28445 * mail/supercite.el (sc-select-attribution): Only use a list
28446 element from sc-attrib-selection-list if it returns a string.
28447 Reported by Davide G. M. Salvetti <salve@debian.org>.
28448
28449 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
28450
28451 * thumbs.el (thumbs-thumbname): The resulting thumbname now
28452 includes a hash value to improve its uniqueness, and has a ".jpg"
28453 extension. Also, it is now a valid filename on all systems.
28454 (thumbs-make-thumb): Use `let', not `let*'.
28455 (thumbs-show-thumbs-list): Check for JPEG availability.
28456
28457 2005-05-30 Richard M. Stallman <rms@gnu.org>
28458
28459 * filesets.el (filesets-menu-ensure-use-cached):
28460 Prevent warning when emacs-version>= is undefined.
28461
28462 * printing.el (pr-interactive-n-up): Use string-to-number.
28463
28464 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
28465
28466 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
28467 Warn only when name to be defined is quoted.
28468
28469 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
28470
28471 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
28472 Make regexp more robust.
28473 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
28474 Force regeneration of disassembly.
28475
28476 2005-05-29 Jay Belanger <belanger@truman.edu>
28477
28478 * calc/calc.el (calc-user-invocation): Check if
28479 calc-invocation-macro is non-nil.
28480
28481 2005-05-29 Juri Linkov <juri@jurta.org>
28482
28483 * add-log.el (change-log-font-lock-keywords):
28484 Add `+' to e-mail regexp to accept mail address with keywords.
28485
28486 * man.el (Man-name-regexp): Add `:' to accept qualified names.
28487
28488 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
28489
28490 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
28491
28492 * ielm.el (inferior-emacs-lisp-mode): Ditto.
28493
28494 2005-05-29 Richard M. Stallman <rms@gnu.org>
28495
28496 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
28497 Undo the change that moves to end of the current word.
28498
28499 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
28500
28501 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
28502 Throw error when count <= 0 to ensure input is a number.
28503 (gdb-read-memory-custom): Pick up address from buffer.
28504 (gdb-memory-mode): Allow user to increment and decrement
28505 memory address from header line.
28506
28507 2005-05-29 Richard M. Stallman <rms@gnu.org>
28508
28509 * flyspell.el (flyspell-version): Function deleted.
28510 (flyspell-auto-correct-previous-hook): Doc fix.
28511
28512 * jit-lock.el (jit-lock-function, jit-lock-after-change):
28513 Do nothing if memory is full.
28514
28515 * font-lock.el (font-lock-fontify-syntactically-region):
28516 Pass t for GREEDY to looking-back.
28517
28518 * saveplace.el (save-place-alist-to-file): Write the file
28519 using write-region.
28520
28521 * subr.el (looking-back): New argument GREEDY.
28522
28523 * progmodes/compile.el (compilation-start): Set the mode
28524 before inserting the initial text.
28525
28526 * progmodes/which-func.el (which-func-update-1): Turn the mode
28527 off in case of error by setting which-func-mode.
28528
28529 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
28530
28531 * flyspell.el (flyspell-auto-correct-previous-word):
28532 Narrow down to what's on the screen, and recenter overlays
28533 at the end of the next word.
28534
28535 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
28536
28537 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
28538 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
28539 (flyspell-abbrev-p): Default to nil.
28540 (flyspell-use-global-abbrev-table-p): Doc fix.
28541 (flyspell-large-region): Allow nil as value.
28542 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
28543
28544 (mail-mode-flyspell-verify): More robust handling
28545 of `mail-header-separator'. More efficient signature detection.
28546 Allow for regexp metacharacters in message-header-separator.
28547 Adding `To' not to be checked in mail-mode-flyspell-verify.
28548
28549 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
28550 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
28551 Bind flyspell-auto-correct-binding.
28552 Bind C-. and C-, .
28553 (flyspell-mode-map): Likewise.
28554 (flyspell-mode): Doc fix.
28555 (flyspell-accept-buffer-local-defs): Preserve current buffer.
28556 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
28557 (flyspell-word-cache-result): New var, always local.
28558 (flyspell-check-pre-word-p): Doc fix.
28559 (flyspell-check-changed-word-p): Handle spc like newline.
28560 (flyspell-post-command-hook): Set flyspell-word-cache-result.
28561 (flyspell-word-search-backward, flyspell-word-search-forward):
28562 New functions.
28563 (flyspell-word): Return t if nothing to check.
28564 When parsing TeX code, check for after } or \.
28565 Use flyspell-word-search-backward to find previous word.
28566 Return nil if duplicated word.
28567 For word already checked, return same value as last time.
28568 Set flyspell-word-cache-result after checking.
28569 Don't clobber the return value.
28570 (flyspell-get-word): Major rewrite.
28571 (flyspell-external-point-words): New locals pword, pcount.
28572 Fix size used in progress message.
28573 Find the proper corresponding word in flyspell-large-region-buffer.
28574 (flyspell-region): Check for flyspell-large-region = nil.
28575 (flyspell-highlight-incorrect-region): Clean up overlays in region.
28576 (flyspell-auto-correct-word): Check that WORD is a cons.
28577 (flyspell-correct-word): Likewise.
28578
28579 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
28580
28581 * progmodes/make-mode.el (makefile-rule-action-regex)
28582 (makefile-macroassign-regex, makefile-makepp-mode)
28583 (makefile-bsdmake-mode): Continuation lines may be empty.
28584 Reported by Joshua Varner.
28585 (makefile-makepp-font-lock-keywords): Add $(stem).
28586
28587 2005-05-28 Karl Berry <karl@gnu.org>
28588
28589 * textmodes/tex-mode.el: Now that tex-send-command calls
28590 shell-quote-argument (2005-03-31 change), remove all calls to
28591 shell-quote-argument; they all end up invoking tex-send-command.
28592 The double quoting loses on filenames with non-safe characters,
28593 such as "@". Reported by Frederik Fouvry.
28594
28595 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
28596
28597 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
28598 about preserving point.
28599
28600 2005-05-27 Jay Belanger <belanger@truman.edu>
28601
28602 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
28603 Info-goto-node.
28604
28605 * calc/calc-embed.el (calc-embed-arg): New variable.
28606 (calc-do-embedded-activate, calc-embedded-activate-formula)
28607 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
28608 variable by new variable.
28609 (calc-embedded-make-info): Replace undeclared variable by new
28610 variable. When selecting region with positive prefix
28611 argument, use end of previous line instead of beginning of line.
28612
28613 * calc/calc-aent.el (calc-arg-values): Declare it.
28614
28615 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
28616 Declare them.
28617
28618 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
28619
28620 * calc/calc.el (calc-alg-map): Declare it.
28621
28622 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
28623
28624 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
28625
28626 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
28627 (gdb-registers-buffer, toggle-gdb-all-registers):
28628 Toggle display of floating point registers.
28629 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
28630
28631 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
28632 (toggle-gud-tooltip-dereference):
28633 Rename from gud-toggle-tooltip-dereference.
28634
28635 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
28636
28637 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
28638
28639 2005-05-27 Jay Belanger <belanger@truman.edu>
28640
28641 * calc/calc-prog.el (calc-kbd-report): Remove.
28642 (calc-kbd-query): Rewrite.
28643
28644 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
28645
28646 * image.el (image-library-alist): Move to image.c.
28647 (image-type-available-p): Doc fix.
28648
28649 2005-05-27 Lute Kamstra <lute@gnu.org>
28650
28651 * calc/calc.el (calc):
28652 * outline.el (outline-1, outline-2, outline-3, outline-4)
28653 (outline-5, outline-6, outline-7, outline-8):
28654 * textmodes/dns-mode.el (dns-mode):
28655 * textmodes/sgml-mode.el (sgml-namespace-face):
28656 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
28657 (tex-verbatim-face, tex-use-reftex):
28658 * textmodes/texinfo.el (texinfo-heading-face):
28659 Specify customization group.
28660
28661 * longlines.el: Don't require easy-mmode.
28662 (longlines-visible-face): Specify customization group.
28663
28664 2005-05-27 Kenichi Handa <handa@m17n.org>
28665
28666 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
28667 encoding table of windows-1251.
28668
28669 * international/ucs-tables.el (ucs-set-table-for-input):
28670 If translation-table-for-input of a coding system is a symbol, get
28671 its translation-table property.
28672
28673 * international/code-pages.el: Don't register a coding system into
28674 non-iso-charset-alist more than once.
28675 (cp-make-coding-system): Likewise.
28676
28677 2005-05-26 John Wiegley <johnw@newartisans.com>
28678
28679 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
28680 `eshell-resume-eval' is wrapped in a list, it indicates that the
28681 command was run asynchronously. In that case, unwrap the value
28682 before checking the delimiter value.
28683
28684 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
28685 character before a space at the end of a line is \, assume the space
28686 is part of the last argument rather than a final argument separator.
28687
28688 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
28689 is in use, and the target is `t' or `nil' (which are the most common
28690 values), don't assume that the symbol target is a buffer.
28691
28692 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
28693
28694 * calendar/calendar.el (calendar-mode-line-format):
28695 Use mode-line-highlight as mouse-face.
28696
28697 * time.el (display-time-string-forms, display-time-update):
28698 Use mode-line-highlight as mouse-face.
28699
28700 2005-05-26 Jay Belanger <belanger@truman.edu>
28701
28702 * calc/calc.el (calc-language-alist): Remove extra defvar.
28703
28704 2005-05-26 Lute Kamstra <lute@gnu.org>
28705
28706 * arc-mode.el (archive-mode):
28707 * bookmark.el (bookmark-read-annotation-mode)
28708 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
28709 * bs.el (bs-mode):
28710 * calc/calc-yank.el (calc-edit-mode):
28711 * calc/calc.el (calc-mode, calc-trail-mode):
28712 * calculator.el (calculator-mode):
28713 * chistory.el (command-history-mode):
28714 * comint.el:
28715 * cus-edit.el (custom-mode):
28716 * descr-text.el (describe-text-mode):
28717 * ebuff-menu.el (Electric-buffer-menu-mode):
28718 * ediff-util.el (ediff-mode):
28719 * emacs-lisp/re-builder.el (reb-mode):
28720 * emulation/vi.el (vi-mode-setup):
28721 * emulation/ws-mode.el (wordstar-mode):
28722 * eshell/esh-mode.el (eshell-mode):
28723 * forms.el (forms-mode):
28724 * help-mode.el (help-mode):
28725 * hexl.el (hexl-mode):
28726 * ibuffer.el (ibuffer-mode):
28727 * ielm.el (inferior-emacs-lisp-mode):
28728 * info.el (Info-mode, Info-edit-mode):
28729 * international/swedish.el:
28730 * ledit.el (ledit-from-lisp-mode):
28731 * locate.el (locate-mode):
28732 * mail/rmail.el (rmail-mode):
28733 * mail/rmailedit.el (rmail-edit-mode):
28734 * mail/rmailsum.el (rmail-summary-mode):
28735 * mail/supercite.el (sc-electric-mode):
28736 * net/eudc.el (eudc-mode):
28737 * net/quickurl.el (quickurl-list-mode):
28738 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
28739 * obsolete/ooutline.el (outline-mode):
28740 * obsolete/options.el (Edit-options-mode):
28741 * obsolete/rnews.el (news-mode):
28742 * obsolete/rnewspost.el (news-reply-mode):
28743 * play/5x5.el (5x5-mode):
28744 * play/decipher.el (decipher-mode, decipher-stats-mode):
28745 * play/gomoku.el (gomoku-mode):
28746 * play/snake.el (snake-mode):
28747 * play/solitaire.el (solitaire-mode):
28748 * play/tetris.el (tetris-mode):
28749 * progmodes/ada-mode.el (ada-mode):
28750 * progmodes/antlr-mode.el (antlr-mode):
28751 * progmodes/autoconf.el (autoconf-mode):
28752 * progmodes/dcl-mode.el (dcl-mode):
28753 * progmodes/delphi.el (delphi-mode):
28754 * progmodes/ebrowse.el (ebrowse-tree-mode)
28755 (ebrowse-electric-list-mode, ebrowse-member-mode)
28756 (ebrowse-electric-position-mode):
28757 * progmodes/f90.el (f90-mode):
28758 * progmodes/fortran.el (fortran-mode):
28759 * progmodes/icon.el (icon-mode):
28760 * progmodes/idlw-help.el (idlwave-help-mode):
28761 * progmodes/idlw-shell.el (idlwave-shell-mode):
28762 * progmodes/idlwave.el (idlwave-mode):
28763 * progmodes/inf-lisp.el (inferior-lisp-mode):
28764 * progmodes/m4-mode.el (m4-mode):
28765 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
28766 * progmodes/modula2.el (modula-2-mode):
28767 * progmodes/octave-inf.el (inferior-octave-mode):
28768 * progmodes/octave-mod.el (octave-mode):
28769 * progmodes/pascal.el (pascal-mode):
28770 * progmodes/sh-script.el (sh-mode):
28771 * progmodes/sql.el (sql-mode, sql-interactive-mode):
28772 * progmodes/vhdl-mode.el (vhdl-mode):
28773 * progmodes/xscheme.el (scheme-interaction-mode):
28774 * replace.el (occur-mode):
28775 * ses.el (ses-mode):
28776 * simple.el (completion-list-mode):
28777 * skeleton.el:
28778 * speedbar.el (speedbar-mode):
28779 * term.el (term-mode):
28780 * terminal.el (terminal-edit-mode):
28781 * textmodes/reftex-index.el (reftex-index-mode)
28782 (reftex-index-phrases-mode):
28783 * textmodes/reftex-sel.el (reftex-select-label-mode)
28784 (reftex-select-bib-mode):
28785 * textmodes/reftex-toc.el (reftex-toc-mode):
28786 * wdired.el (wdired-change-to-wdired-mode):
28787 * wid-browse.el (widget-browse-mode):
28788 Use run-mode-hooks.
28789
28790 * array.el (array-mode):
28791 * calendar/todo-mode.el (todo-mode):
28792 * man.el (Man-mode):
28793 * play/landmark.el (lm-mode):
28794 * play/mpuz.el (mpuz-mode):
28795 Use kill-all-local-variables and run-mode-hooks.
28796
28797 * subr.el (delay-mode-hooks): Specify indentation.
28798
28799 2005-05-26 Mark A. Hershberger <mah@everybody.org>
28800
28801 * xml.el (xml-substitute-special): Don't die for undefined xml
28802 entities.
28803
28804 2005-05-26 Jay Belanger <belanger@truman.edu>
28805
28806 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
28807 of nil.
28808
28809 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
28810
28811 * progmodes/gdb-ui.el (gdb-frame-address):
28812 Rename from gdb-current-address.
28813 (gdb-previous-frame-address): Rename from gdb-previous-address.
28814 (gdb-selected-frame): Rename from gdb-current-frame.
28815 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
28816 (gdb-frame-number): Rename from gdb-current-stack-level.
28817 (gdb-ann3): Match new mode-name for disassembly buffer.
28818 Extend initialization of variables.
28819 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
28820 (gdb-memory-mode): Use mouse-face in header line.
28821 (gdb-assembler-buffer-name): Call it disassembly and give frame
28822 in mode line.
28823 (gdb-source-spec-regexp, gdb-assembler-custom)
28824 (gdb-invalidate-assembler, gdb-frame-handler):
28825 Make robust to leading zeroes in address format.
28826
28827 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
28828
28829 * textmodes/org.el (org-mode): Use `define-derived-mode' to
28830 define `org-mode'.
28831 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
28832
28833 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
28834
28835 * log-edit.el (log-edit-changelog-entries): Distinguish between
28836 filenames like xfns.c and fns.c.
28837
28838 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
28839
28840 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
28841 point after reverting.
28842 (Buffer-menu-make-sort-button): Handle the case where
28843 `Buffer-menu-use-header-line' is nil.
28844
28845 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
28846
28847 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
28848 New funcs. In minibuffer-local-completion-map bind `]', `/'
28849 and `:' to them.
28850
28851 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
28852
28853 * startup.el (normal-top-level): Allow modification of load-path while
28854 we're iterating over it.
28855
28856 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
28857
28858 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
28859 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
28860 (thumbs-resize-interactive, thumbs-insert-image)
28861 (thumbs-insert-thumb, thumbs-dired-show-marked)
28862 (thumbs-find-image-at-point, thumbs-delete-images)
28863 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
28864 (thumbs-increment-image-size, thumbs-decrement-image-size):
28865 Fix typos in docstrings.
28866
28867 2005-05-24 Andre Spiegel <spiegel@gnu.org>
28868
28869 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
28870 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
28871 (cperl-mode): Use them.
28872
28873 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
28874
28875 * window.el (quit-window, shrink-window-if-larger-than-buffer):
28876 Doc fixes.
28877
28878 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
28879
28880 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
28881 Bind C-d to gdb-inferior-io-eof.
28882
28883 * dired.el (dired-dnd-popup-notice): Use message-box.
28884
28885 2005-05-23 Masatake YAMATO <jet@gyve.org>
28886
28887 * bindings.el (mode-line-major-mode-keymap):
28888 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
28889
28890 * faces.el (mode-line-highlight): New face.
28891
28892 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
28893 as mouse-face.
28894
28895 * bindings.el (top-level, help-echo, mode-line-modified)
28896 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
28897 as mouse-face.
28898
28899 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
28900
28901 * progmodes/cc-engine.el (c-guess-basic-syntax):
28902 Remove spurious call to `zerop'.
28903
28904 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
28905
28906 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
28907
28908 CC Mode update to 5.30.10:
28909
28910 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
28911 could go past the limit in decoration level 2, thereby causing
28912 errors during interactive fontification.
28913
28914 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
28915 the file is evaluated interactively.
28916
28917 * cc-engine.el (c-guess-basic-syntax): Handle operator
28918 declarations somewhat better in C++.
28919
28920 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
28921 make use of `run-mode-hooks' which has been added in Emacs 21.1.
28922 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
28923 (awk-mode): Use it.
28924 (make-local-hook): Suppress warning about obsoleteness.
28925
28926 * cc-engine.el, cc-align.el, cc-cmds.el
28927 (c-append-backslashes-forward, c-delete-backslashes-forward)
28928 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
28929 Compensate for return value from `forward-line' when it has moved
28930 but not to a different line due to eob.
28931
28932 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
28933 `objc-method-intro' and `objc-method-args-cont'.
28934
28935 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
28936
28937 CC Mode update to 5.30.10:
28938
28939 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
28940 in the copyright statement. Incidentally, change "along with GNU
28941 Emacs" to "along with this program" where it occurs.
28942
28943 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
28944 so that it is interactive, hence can be found by M-x awk-mode
28945 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
28946 <gmorris+emacs@ast.cam.ac.uk>.
28947
28948 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
28949 Mode's regexps.
28950
28951 2005-05-23 Kevin Ryde <user42@zip.com.au>
28952
28953 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
28954 c-parse-state, to avoid a lisp error (on bad code).
28955
28956 2005-05-23 Lute Kamstra <lute@gnu.org>
28957
28958 * subr.el (font-lock-defaults): Remove defvar as it's already
28959 defined in font-core.el.
28960
28961 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
28962
28963 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
28964
28965 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
28966 more general and work when GDB variable "print pretty" is on,
28967 as with Emacs, for example.
28968
28969 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
28970
28971 * font-core.el: Update comment.
28972
28973 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
28974 Use `after-change-major-mode-hook' instead of `find-file-hook'.
28975
28976 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
28977
28978 2005-05-22 Eli Zaretskii <eliz@gnu.org>
28979
28980 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
28981 and `yank-handler' in the doc strings.
28982
28983 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
28984
28985 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
28986
28987 2005-05-22 Richard M. Stallman <rms@gnu.org>
28988
28989 * help.el (describe-key): Move print-help-return-message call
28990 out of conditional.
28991
28992 * progmodes/etags.el (list-tags): Use with-no-warnings.
28993
28994 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
28995 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
28996 (starttls-extra-args, starttls-extra-arguments): Add defvars.
28997
28998 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
28999
29000 * language/viet-util.el (viet-viscii-nonascii-translation-table):
29001 Add defvar.
29002
29003 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
29004 Use defvar, not defconst.
29005
29006 * hexl.el (hexl-follow-line): Use with-no-warnings.
29007
29008 * emulation/tpu-extras.el: Use write-file-functions instead of
29009 write-file-hooks.
29010
29011 * dired.el (dired-font-lock-keywords): Fontify files with junk
29012 extensions even if marked by -F.
29013
29014 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
29015
29016 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
29017 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
29018 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
29019 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
29020 (concatenate, list-length, get*, getf, cl-remprop):
29021 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
29022 (etypecase, progv, lexical-let, lexical-let*)
29023 (multiple-value-bind, multiple-value-setq, shiftf):
29024 Improve argument/docstring consistency.
29025
29026 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
29027
29028 2005-05-22 Andre Spiegel <spiegel@gnu.org>
29029
29030 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
29031 doesn't exist.
29032
29033 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
29034 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
29035
29036 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
29037
29038 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
29039 already deleted variables: auto-fill-hook, blink-paren-hook,
29040 lisp-indent-hook, inhibit-local-variables, unread-command-event,
29041 suspend-hooks, comment-indent-hook, meta-flag,
29042 before-change-function, after-change-function,
29043 font-lock-doc-string-face.
29044
29045 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
29046
29047 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
29048
29049 2005-05-21 Eli Zaretskii <eliz@gnu.org>
29050
29051 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
29052 rmail-dont-reply-to.
29053
29054 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
29055
29056 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
29057 literal blank when splitting new-header-values.
29058
29059 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
29060
29061 * calendar/cal-menu.el (cal-menu-update): Add separator as a
29062 string so that tmm doesn't create a completion entry for it.
29063
29064 * textmodes/table.el (table-disable-menu): Ditto.
29065
29066 2005-05-21 Richard M. Stallman <rms@gnu.org>
29067
29068 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
29069
29070 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
29071
29072 * net/rcompile.el (remote-compile): Use compilation-start.
29073
29074 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
29075
29076 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
29077
29078 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
29079 Default to makefile-bsdmake-mode on BSD systems.
29080
29081 * imenu.el (imenu-generic-expression, imenu--generic-function'):
29082 REGEXP may also be a search function now. The part of doc-string
29083 for describing the structure was 95% identical to that of
29084 `imenu--generic-function'. Unify it there.
29085
29086 * progmodes/make-mode.el (makefile-imenu-generic-expression):
29087 Use function to find dependencies, because regexp alone is so complex,
29088 it easily goes into an endless loop.
29089 (makefile-makepp-mode): Also add submenu for Perl functions
29090 defined in the makefile.
29091 (makefile-bsdmake-mode): Special imenu-generic-expression no
29092 longer needed, due to function call.
29093 (makefile-match-dependency): Take BOUND into account when checking
29094 if we're through.
29095
29096 2005-05-20 Jay Belanger <belanger@truman.edu>
29097
29098 * calc/calc-units.el (calc-invalidate-units-table):
29099 Use inhibit-read-only.
29100 (math-build-units-table-buffer): Use view-mode.
29101
29102 2005-05-20 David Kastrup <dak@gnu.org>
29103
29104 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
29105 easy-menu-add is not a nop on Emacs; and clarify when to call it.
29106
29107 2005-05-20 Lute Kamstra <lute@gnu.org>
29108
29109 * diff-mode.el (diff-header-face, diff-file-header-face)
29110 (diff-index-face, diff-hunk-header-face, diff-removed-face)
29111 (diff-added-face, diff-changed-face, diff-function-face)
29112 (diff-context-face, diff-nonexistent-face): Put them in the
29113 diff-mode customization group.
29114
29115 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
29116
29117 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
29118
29119 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
29120
29121 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
29122 Minor regexp-optimization.
29123
29124 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
29125
29126 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
29127 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
29128 (org-agenda-add-time-grid-maybe): New function.
29129 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
29130 (org-table-create): `dotimes' instead of `mapcar'.
29131 (org-xor): Simplify implementation.
29132 (org-agenda): `inhibit-redisplay' turned on.
29133 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
29134 a consistent line after a state change.
29135 (org-agenda-remove-times-when-in-prefix): New option.
29136 (org-prefix-has-time): New variable.
29137 (org-parse-time-string): Optional argument NODEFAULT.
29138 (org-format-agenda-item): Parse items for time-of-day
29139 specifications and move these into the prefix if possible.
29140 (org-agenda-priority): Get current heading, not previous heading
29141 during agenda remote editing.
29142
29143 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
29144
29145 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
29146 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
29147 (remove-duplicates, delete-duplicates, substitute)
29148 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
29149 (nsubstitute-if-not, find, find-if, find-if-not, position)
29150 (position-if, position-if-not, count, count-if, count-if-not)
29151 (mismatch, search, sort*, stable-sort, merge, member*)
29152 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
29153 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
29154 (intersection, nintersection, set-difference, nset-difference)
29155 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
29156 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
29157 (nsublis, tree-equal): Improve argument/docstring consistency.
29158
29159 * subr.el (send-string, send-region): Remove obsolescence declaration.
29160 (window-dot, set-window-dot, read-input, show-buffer)
29161 (eval-current-buffer, string-to-int):
29162 Add release number to obsolescence declarations.
29163
29164 2005-05-19 Kim F. Storm <storm@cua.dk>
29165
29166 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
29167 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
29168
29169 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
29170
29171 * faces.el (list-faces-display): Make back button respect optional
29172 regexp arg.
29173
29174 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
29175
29176 * calculator.el (calculator-radix-grouping-mode)
29177 (calculator-radix-grouping-digits, calculator-displayer)
29178 (calculator-radix-grouping-separator, calculator-copy-displayer):
29179 * dabbrev.el (dabbrev-search-these-buffers-only):
29180 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
29181 (diff-advance-after-apply-hunk, diff-mode-hook)
29182 (diff-minor-mode-prefix):
29183 * imenu.el (imenu-use-popup-menu):
29184 * jit-lock.el (jit-lock-context-time):
29185 * newcomment.el (comment-fill-column, comment-column)
29186 (comment-style, comment-padding, comment-multi-line)
29187 (comment-empty-lines, comment-auto-fill-only-comments):
29188 * reveal.el (reveal-around-mark):
29189 * uniquify.el (uniquify-buffer-name-style)
29190 (uniquify-after-kill-buffer-p)
29191 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
29192 (uniquify-min-dir-content, uniquify-separator)
29193 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
29194 * w32-vars.el (w32-fixed-font-alist):
29195 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
29196 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
29197 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
29198 * progmodes/perl-mode.el (perl-indent-level)
29199 (perl-continued-statement-offset, perl-continued-brace-offset)
29200 (perl-brace-offset, perl-brace-imaginary-offset)
29201 (perl-label-offset, perl-indent-continued-arguments)
29202 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
29203 * progmodes/tcl.el (tcl-indent-level)
29204 (tcl-continued-indent-level, tcl-auto-newline)
29205 (tcl-tab-always-indent, tcl-electric-hash-style)
29206 (tcl-help-directory-list, tcl-use-smart-word-finder)
29207 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
29208 (inferior-tcl-source-command):
29209 * textmodes/fill.el (enable-kinsoku):
29210 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
29211 * textmodes/table.el (table-yank-handler):
29212 Specify missing group (and type, if simple) in defcustom.
29213
29214 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
29215
29216 * progmodes/compile.el (compilation-finish-function): Fix defvar.
29217
29218 2005-05-19 Richard M. Stallman <rms@gnu.org>
29219
29220 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
29221
29222 * subr.el (event-basic-type): Don't get an error.
29223 (left-fringe-p): Function deleted.
29224
29225 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
29226 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
29227
29228 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
29229 in recursive copy.
29230
29231 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
29232
29233 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
29234
29235 * emacs-lisp/bytecomp.el
29236 (byte-compile-file-form-custom-declare-variable):
29237 Call byte-compile-nogroup-warn if appropriate.
29238
29239 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
29240 (compilation-set-window): Don't call left-fringe-p; do it directly.
29241
29242 2005-05-19 Jay Belanger <belanger@truman.edu>
29243
29244 * calc/calc-graph.el (calc-graph-format-data): Make sure
29245 var-PlotRejects is bound before trying to check its value.
29246
29247 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
29248
29249 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
29250 definition of this variable from reftex-global.el to reftex.el,
29251 because it is needed in the menu.
29252
29253 2005-05-19 Lute Kamstra <lute@gnu.org>
29254
29255 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
29256 years are fixed. Don't insert a space after a dash.
29257
29258 2005-05-19 Kim F. Storm <storm@cua.dk>
29259
29260 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
29261
29262 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
29263
29264 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
29265 strings, because (eq ... ?\\) is fairly frequent.
29266
29267 * progmodes/make-mode.el (makefile-add-this-line-targets):
29268 Simplify and integrate into `makefile-pickup-targets'.
29269 (makefile-add-this-line-macro): Simplify and integrate into
29270 `makefile-pickup-macros.
29271 (makefile-pickup-filenames-as-targets): Simplify.
29272 (makefile-previous-dependency, makefile-match-dependency):
29273 Don't stumble over `::'.
29274
29275 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
29276
29277 * subr.el (post-command-idle-hook, post-command-idle-delay):
29278 Remove obsoletion of post-command-idle-hook and
29279 post-command-idle-delay.
29280
29281 * faces.el (list-faces-display): Provide button when describe-face
29282 is called to take user back to the list of faces.
29283
29284 * help-fns.el (describe-variable): Remove hyperlinks in a
29285 variable's value as these are quite frequently inappropriate.
29286
29287 * follow.el (follow-submit-feedback, follow-mode):
29288 Remove references to post-command-idle-hook.
29289
29290 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
29291
29292 * progmodes/make-mode.el (makefile-previous-dependency)
29293 (makefile-match-dependency): Check for := (and in bsd mode also
29294 !=) to give a better result, even when font-lock is not on.
29295
29296 2005-05-18 Jay Belanger <belanger@truman.edu>
29297
29298 * calc/calc-help.el (calc-s-prefix-help):
29299 Add `calc-copy-special-constant' to help string.
29300
29301 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
29302
29303 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
29304
29305 2005-05-18 Jay Belanger <belanger@truman.edu>
29306
29307 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
29308 in linear factors are in proper order.
29309
29310 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
29311
29312 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
29313 Support for jurabib.
29314
29315 * textmodes/reftex.el (featurep): Define aliases for overlay
29316 commands, for XEmacs compatibility, and use these aliases in
29317 overlay initializations.
29318 (reftex-highlight): Use `reftex-move-overlay'.
29319 (reftex-unhighlight): Use `reftex-delete-overlay'.
29320 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
29321 (reftex-access-search-path): Use `reftex-uniquify' instead of
29322 `reftex-uniq'.
29323
29324 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
29325 `before-string' property modification enables for Emacs as well.
29326 (reftex-select-item): Use `reftex-delete-overlay'.
29327 (reftex-select-mark): Use `reftex-make-overlay' and
29328 `reftex-overlay-put'.
29329 (reftex-select-unmark): Use `reftex-delete-overlay' and
29330 `reftex-overlay-put'.
29331
29332 2005-05-18 Lute Kamstra <lute@gnu.org>
29333
29334 * emacs-lisp/lisp.el (check-parens): Fix docstring.
29335
29336 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
29337
29338 * add-log.el (add-change-log-entry):
29339 * array.el (array-make-template, array-reconfigure-rows)
29340 (array-init-max-row, array-init-max-column)
29341 (array-init-columns-per-line, array-init-field-width):
29342 * replace.el (replace-match-maybe-edit, perform-replace):
29343 * textmodes/spell.el (spell-region):
29344 Replace `read-input' by `read-string'.
29345
29346 * forms.el (forms-mode):
29347 * finder.el (finder-compile-keywords):
29348 * shadowfile.el (shadow-read-files):
29349 Replace `eval-current-buffer' by `eval-buffer'.
29350
29351 * terminal.el (te-pass-through):
29352 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
29353 (ange-ftp-raw-send-cmd):
29354 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
29355 (send-process-next-char, telnet-initial-filter, telnet):
29356 Replace `send-string' by `process-send-string'.
29357
29358 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
29359 (prolog-consult-region): Replace `send-string' by
29360 `process-send-string'; replace `send-region' by `process-send-region'.
29361
29362 * progmodes/delphi.el (delphi-log-msg):
29363 Replace `set-window-dot' by `set-window-point'.
29364
29365 * subr.el (window-dot, set-window-dot, read-input, send-string)
29366 (send-region, show-buffer, eval-current-buffer):
29367 Make really obsolete, as the comment says.
29368
29369 2005-05-17 Kim F. Storm <storm@cua.dk>
29370
29371 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
29372 (cua--init-keymaps): Bind C-return instead of S-return to set
29373 rectangle mark.
29374
29375 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
29376 instead of S-return to toggle/clear rectangle mark.
29377
29378 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
29379
29380 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
29381 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
29382 Also fontify plain strings assigned to variables, mostly so that a
29383 colon has a face and is thus not taken as a dependency separator.
29384 (makefile-previous-dependency): Inline the new matcher, because it
29385 is too complex to work in both directions.
29386 (makefile-match-dependency): Eliminate `backward' arg (see above).
29387 Completely reimplemented so as to not sometimes go into an endless
29388 loop. It should also be more efficient, because first it only
29389 searches for `:', instead of applying the very complex regexp.
29390 (makefile-mode): Cancel `font-lock-support-mode', because blocks
29391 to be fontified in one piece can be too long for JIT.
29392 Makefiles are never *that* big.
29393
29394 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
29395
29396 * dired.el (dired-mode): Simplify.
29397
29398 2005-05-17 Lute Kamstra <lute@gnu.org>
29399
29400 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
29401 defcustom for the mode hook variable.
29402
29403 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
29404 Emacs Lisp Reference Manual.
29405
29406 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
29407
29408 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
29409 (evenp, list*):
29410 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
29411 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
29412
29413 * net/tramp-smb.el (tramp-smb-open-connection):
29414 Pass `tramp-chunksize' as fifth (required) argument.
29415
29416 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
29417
29418 * font-lock.el (lisp-font-lock-keywords-1):
29419 Set `font-lock-negation-char-face' for [^...] char group.
29420 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
29421
29422 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
29423 a var, and refine it to mask one more level of nested vars.
29424 (makefile-rule-action-regex): Turn it into a var, and refine it so
29425 it recognizes backslashed continuation lines as belonging to the
29426 same command.
29427 (makefile-macroassign-regex): Refine it so it recognizes
29428 backslashed continuation lines as belonging to the same command.
29429 (makefile-var-use-regex): Don't look at the next char, because it
29430 might be the same one to be skipped by the initial [^$], leading
29431 to an overlooked variable use.
29432 (makefile-make-font-lock-keywords): Remove two parameters, which
29433 are now variables that some of the modes set locally.
29434 Handle dependency and rule action matching through functions, because
29435 regexps alone match too often. Dependency matching now comes
29436 last, so it can check, whether a colon already matched something else.
29437 (makefile-mode): Inform that font-lock improves makefile parsing
29438 capabilities.
29439 (makefile-match-dependency, makefile-match-action): New functions.
29440
29441 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
29442
29443 * emacs-lisp/cl-extra.el (equalp): Doc fix.
29444
29445 * align.el (align-regexp):
29446 * ansi-color.el (ansi-color-get-face):
29447 * array.el (array-reconfigure-rows, array-init-max-row)
29448 (array-init-max-column, array-init-columns-per-line)
29449 (array-init-field-width):
29450 * dired-aux.el (dired-trample-file-versions):
29451 * dired-x.el (dired-mark-sexp):
29452 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
29453 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
29454 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
29455 * faces.el (face-read-integer):
29456 * files.el (backup-extract-version, insert-directory):
29457 * hexl.el (hexl-insert-decimal-char):
29458 * server.el (server-process-filter):
29459 * shell.el (shell-extract-num):
29460 * startup.el (command-line-1):
29461 * term.el (term-command-hook):
29462 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
29463 (time-stamp-do-number):
29464 * time.el (display-time-update):
29465 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
29466 (timezone-fix-time):
29467 * vms-patch.el (vms-suspend-resume-hook):
29468 * calendar/appt.el (appt-convert-time):
29469 * calendar/cal-bahai.el (mark-bahai-diary-entries):
29470 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
29471 * calendar/cal-islam.el (mark-islamic-diary-entries):
29472 * calendar/calendar.el (calendar-cursor-to-date)
29473 (calendar-star-date):
29474 * calendar/diary-lib.el (diary-attrtype-convert)
29475 (mark-diary-entries, diary-entry-time):
29476 * calendar/solar.el (solar-get-number):
29477 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
29478 * emacs-lisp/re-builder.el (reb-display-subexp):
29479 * emulation/edt.el (edt-set-scroll-margins):
29480 * emulation/tpu-extras.el (tpu-set-scroll-margins):
29481 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
29482 (vip-get-ex-count):
29483 * emulation/viper-ex.el (viper-get-ex-token)
29484 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
29485 * international/fontset.el (fontset-plain-name):
29486 * mail/feedmail.el (feedmail-look-at-queue-directory):
29487 * mail/mailalias.el (mail-get-names):
29488 * mail/rmail.el (rmail-convert-to-babyl-format):
29489 * mail/rmailsum.el (rmail-make-basic-summary-line)
29490 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
29491 (rmail-summary-goto-msg):
29492 * mail/smtpmail.el (smtpmail-read-response):
29493 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
29494 (ange-ftp-vms-add-file-entry):
29495 * play/gametree.el (gametree-looking-at-ply)
29496 (gametree-current-branch-score):
29497 * progmodes/ada-xref.el (ada-prj-find-prj-file)
29498 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
29499 * progmodes/cperl-mode.el (condition-case):
29500 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
29501 (ebrowse-set-member-buffer-column-width)
29502 (ebrowse-select-1st-to-9nth):
29503 * progmodes/etags.el (etags-snarf-tag):
29504 * progmodes/flymake.el (flymake-parse-line):
29505 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
29506 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
29507 (idlwave-shell-menu-def):
29508 * progmodes/ps-mode.el (ps-run-goto-error):
29509 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
29510 (vhdl-speedbar-contract-level):
29511 * term/mac-win.el (x-handle-numeric-switch):
29512 * term/sun-mouse.el (sun-get-frame-data):
29513 * term/w32-win.el (x-handle-numeric-switch):
29514 * term/x-win.el (x-handle-numeric-switch):
29515 * textmodes/ispell.el (ispell-parse-output):
29516 * textmodes/nroff-mode.el (nroff-outline-level):
29517 * textmodes/reftex-cite.el (reftex-bib-sort-year)
29518 (reftex-bib-sort-year-reverse, reftex-format-citation):
29519 * textmodes/reftex-parse.el (reftex-init-section-numbers)
29520 (reftex-section-number):
29521 * textmodes/texinfmt.el (texinfo-paragraphindent):
29522 Replace `string-to-int' by `string-to-number'.
29523
29524 * international/latexenc.el: Add page marker to force the "Local
29525 Variables:" string out of the last page.
29526
29527 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
29528
29529 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
29530 tooltip-change-major-mode.
29531 (gud-tooltip-print-command): Remove case where gud-minor-mode
29532 is gdb ("--fullname").
29533 (gud-tooltip-tips): Turn GUD tooltips off for this case and
29534 explain to user.
29535
29536 2005-05-16 Jay Belanger <belanger@truman.edu>
29537
29538 * calc/calc-store.el (calc-copy-special-constant): New function.
29539
29540 * calc/calc-ext.el (calc-init-extensions): Add binding for
29541 `calc-copy-special-constant'.
29542
29543 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
29544 for the `calc-copy-special-constant' command.
29545
29546 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
29547
29548 * subr.el (left-fringe-p): New function.
29549
29550 * progmodes/compile.el (compilation-setup): Set local value of
29551 overlay-arrow-string to "" always.
29552 (compilation-set-window): Left fringe then don't scroll.
29553 No left fringe then no arrow and scroll message to top.
29554 (compilation-context-lines): Adjust doc string accordingly.
29555
29556 2005-05-16 Kim F. Storm <storm@cua.dk>
29557
29558 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
29559 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
29560 (ido-wide-find-dir-or-delete-dir): New command for M-d.
29561 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
29562 (ido-read-file-name): Handle commands with ido property value
29563 equal to find-file as reading a file name, to allow C-d to enter dired.
29564 (ibuffer-find-file): Add ido property with value find-file.
29565
29566 2005-05-15 Kim F. Storm <storm@cua.dk>
29567
29568 * subr.el (open-network-stream-nowait): Remove.
29569 (open-network-stream-server): Remove.
29570
29571 2005-05-15 Richard M. Stallman <rms@gnu.org>
29572
29573 * faces.el (describe-face): Output a definition link button.
29574
29575 * help-mode.el (help-face-def): New button type.
29576
29577 * emacs-lisp/copyright.el (copyright-fix-years):
29578 Match properly if the first year is 2-digit.
29579 Don't mess up the whitespace after the years by filling.
29580
29581 * dired-aux.el (dired-mark-confirm):
29582 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
29583
29584 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
29585 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
29586 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
29587
29588 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
29589 Set font-lock-comment-start-skip.
29590
29591 * font-lock.el (font-lock-comment-start-skip): New variable.
29592 (font-lock-comment-end-skip): New variable.
29593 (font-lock-fontify-syntactically-region): Use them if non-nil.
29594
29595 2005-05-15 Jay Belanger <belanger@truman.edu>
29596
29597 * calc/calc-store.el (calc-store-value): Return a string rather
29598 than display it as a message.
29599 Use calc-var-name for variable name.
29600 (calc-store-into): Add the result of calc-store-value to message.
29601 (calc-copy-variable): Add a message.
29602 (calc-store-exchange): Improve error messages.
29603 (calc-store-binary, calc-store-map): Don't reset the values of
29604 special constants.
29605
29606 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
29607
29608 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
29609 manual to docstring.
29610
29611 * files.el (hack-local-variables-confirm): Add STRING argument.
29612 Make the function handle non file visiting buffers correctly.
29613 (hack-local-variables-prop-line, hack-local-variables)
29614 (hack-one-local-variable): Use STRING arg of
29615 `hack-local-variables-confirm'.
29616
29617 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
29618
29619 Sync with Tramp 2.0.49.
29620
29621 * net/tramp.el (tramp-handle-dired-call-process)
29622 (tramp-handle-insert-directory):`insert-buffer' cannot be used
29623 because the contents of the Tramp buffer is changed before
29624 insertion (`expand-file' and alike).
29625 (tramp-handle-insert-directory): If `localname' has an empty
29626 nondirectory name, it must not be quoted.
29627 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
29628 variable `tramp-chunksize'. Change callees.
29629 (tramp-open-connection-setup-interactive-shell): Check remote host
29630 for buggy `send-process-string' implementation.
29631 Set `tramp-chunksize' if found. Reported by Michael Kifer
29632 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
29633 (tramp-handle-shell-command): `insert-buffer' cannot be used
29634 because the contents of the Tramp buffer is changed before
29635 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
29636 <frederic.bothamy@free.fr>.
29637 (tramp-set-auto-save): Actions should be done for Tramp file name
29638 handler only. Ange-FTP has its own auto-save mechanism.
29639 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
29640 (tramp-set-auto-save-file-modes): Set file modes of
29641 `buffer-auto-save-file-name' to ?\600 as fallback solution.
29642 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
29643 (tramp-bug): Remove obsolete variable.
29644 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
29645 for presence of `mml-mode'. Make it running for older Emacsen as well.
29646
29647 2005-05-14 John Paul Wallington <jpw@pobox.com>
29648
29649 * ibuf-ext.el (define-ibuffer-filter filename):
29650 If `dired-directory' is a list, use its car.
29651
29652 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
29653
29654 * ibuffer.el (define-ibuffer-column filename):
29655 If `dired-directory' is a list, use its car.
29656
29657 2005-05-14 Richard M. Stallman <rms@gnu.org>
29658
29659 * subr.el (symbol-file): Doc fix.
29660
29661 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
29662 (byte-compile-form): Call byte-compile-nogroup-warn.
29663 (byte-compile-warning-types): Doc fix.
29664
29665 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
29666
29667 * progmodes/cc-engine.el (c-literal-faces):
29668 Add font-lock-comment-delimiter-face.
29669
29670 * net/net-utils.el (dig): Use with-no-warnings.
29671
29672 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
29673 (sc-recite-frame-alist, sc-default-cite-frame)
29674 (sc-default-uncite-frame, sc-default-recite-frame)
29675 (sc-attrib-selection-list, sc-rewrite-header-list):
29676 Mark as risky-local-variable.
29677
29678 * international/ogonek.el (ogonek-jak, ogonek-how):
29679 Don't use beginning-of-buffer.
29680
29681 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
29682
29683 * calendar/solar.el (solar-data-list): Move definition up.
29684
29685 * dnd.el (dnd-protocol-alist): Add autoload.
29686
29687 * progmodes/sh-script.el: Many doc usage fixes.
29688 (sh-indent-after-do): Change default to match common styles.
29689
29690 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
29691
29692 * files.el (interpreter-mode-alist)
29693 (auto-mode-interpreter-regexp): Doc fixes.
29694
29695 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
29696
29697 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
29698
29699 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
29700
29701 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
29702
29703 * dired.el (dired-mode): make-variable-buffer-local =>
29704 make-local-variable.
29705
29706 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29707
29708 * term/mac-win.el (mac-select-convert-to-string): Try coding
29709 systems in mac-script-code-coding-systems if specified one cannot
29710 encode string for `com.apple.traditional-mac-plain-text'.
29711
29712 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
29713
29714 * progmodes/make-mode.el (makefile-targets-face)
29715 (makefile-shell-face, makefile-makepp-perl-face): New faces.
29716 (makefile-dependency-regex): Fix it to not make the colon in
29717 $(var:a=b) special.
29718 (makefile-rule-action-regex): New regexp for highlighting embedded
29719 Shell strings.
29720 (makefile-macroassign-regex): Handle != for highlighting as
29721 embedded Shell strings.
29722 (makefile-var-use-regex): New const.
29723 (makefile-statements, makefile-automake-statements)
29724 (makefile-gmake-statements, makefile-makepp-statements)
29725 (makefile-bsdmake-statements): New consts.
29726 (makefile-make-font-lock-keywords): New function.
29727 (makefile-automake-font-lock-keywords)
29728 (makefile-gmake-font-lock-keywords)
29729 (makefile-makepp-font-lock-keywords)
29730 (makefile-bsdmake-font-lock-keywords): New consts.
29731 (makefile-mode-map): Add switchers between the various submodes.
29732 (makefile-mode): Document the availability of the variants.
29733 (makefile-automake-mode, makefile-gmake-mode)
29734 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
29735
29736 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
29737 new variants of makefile-mode.
29738
29739 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
29740
29741 * font-lock.el (font-lock-comment-delimiter-face): Fix up
29742 the inheritance.
29743
29744 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
29745
29746 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
29747 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
29748
29749 * files.el (normal-mode): Extend the scope of the
29750 `enable-local-variables' binding to include the `set-auto-mode' call.
29751 (magic-mode-alist): Doc fix.
29752
29753 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
29754
29755 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
29756 font-lock-comment-face rather than copying its setting.
29757
29758 2005-05-12 Andreas Schwab <schwab@suse.de>
29759
29760 * eshell/esh-mode.el (eshell-send-input): Doc fix.
29761
29762 2005-05-12 Lute Kamstra <lute@gnu.org>
29763
29764 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
29765 defcustom for the mode hook variable. Delete the last argument.
29766 * generic-x.el: Fix callers of define-generic-mode.
29767 (generic-x-modes): Delete group.
29768 (show-tabs-tab-face, show-tabs-space-face): Put them in the
29769 generic-x customization group.
29770
29771 2005-05-12 Kim F. Storm <storm@cua.dk>
29772
29773 * font-lock.el (font-lock-negation-char-face): Default to "off".
29774
29775 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
29776 font-lock-negation-char-face to ! in !=.
29777
29778 2005-05-12 Masatake YAMATO <jet@gyve.org>
29779
29780 * add-log.el (find-change-log): Fix typos in the docstring
29781 of function.
29782
29783 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
29784
29785 * international/latexenc.el (latexenc-find-file-coding-system):
29786 Avoid `re-search-forward' when looking for input encoding because
29787 of speed and safety. Better regular expressions for recognizing
29788 input encoding. Limit a search for TeX-master/tex-main-file to
29789 the local variable section.
29790
29791 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
29792
29793 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
29794 syntax of $ to "'" (quote).
29795
29796 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
29797
29798 * dnd.el (dnd-protocol-alist): Improve custom type.
29799
29800 * dired.el (dired-dnd-protocol-alist): New variable.
29801 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
29802 `dired-mode-hook' to the end.
29803
29804 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
29805
29806 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
29807 comment-end if comment-start-skip is not set.
29808 Obey the font-lock-comment-delimiter-face variables.
29809
29810 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
29811
29812 * files.el (executable-find): Move from executable.el. Use
29813 locate-file.
29814 * progmodes/executable.el (executable-find): Move to files.el.
29815
29816 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
29817 when trying to ensure forward progress.
29818
29819 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
29820
29821 * mouse-sel.el (mouse-sel-follow-link-p): New function.
29822 (mouse-select, mouse-select-internal, mouse-extend-internal):
29823 Use it to implement mouse-1-click-follows-link functionality.
29824
29825 2005-05-11 Richard M. Stallman <rms@gnu.org>
29826
29827 * font-lock.el (font-lock-fontify-syntactically-region):
29828 Use font-lock-comment-delimiter-face for comment delimiters.
29829
29830 2005-05-10 Jay Belanger <belanger@truman.edu>
29831
29832 * calc/calc-help.el (calc-m-prefix-help): Add mention of
29833 preserving embedded modes.
29834
29835 2005-05-10 Richard M. Stallman <rms@gnu.org>
29836
29837 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
29838
29839 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
29840 Move from ada-stmt.el.
29841 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
29842
29843 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
29844 Move to ada-mode.el.
29845 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
29846
29847 * cus-edit.el (custom-file): Call file-chase-links.
29848
29849 * files.el (read-directory-name): Fix previous change.
29850 (hack-local-variables-confirm): New function.
29851 (hack-local-variables-prop-line, hack-local-variables)
29852 (hack-one-local-variable): Use it.
29853
29854 2005-05-10 Lute Kamstra <lute@gnu.org>
29855
29856 * font-lock.el (font-lock-keywords-alist)
29857 (font-lock-removed-keywords-alist): Clarify docstrings.
29858
29859 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
29860
29861 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
29862 (gdb-source-info): Check for preprocessor info.
29863 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
29864 a macro for a function.
29865 (gdb-info-breakpoints-custom): Try to find file again if not already
29866 found (user might have used GDB dir command).
29867 (gdb-get-location): Update gdb-location-alist correctly for change
29868 to gdb-info-breakpoints-custom.
29869
29870 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
29871 (gud-tooltip-print-command): Add gdbmi case.
29872 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
29873 preprocessor info.
29874
29875 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
29876
29877 * startup.el (fancy-splash-insert): Fix typo in doc string.
29878
29879 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
29880
29881 * obsolete/float.el (string-to-float):
29882 * obsolete/hilit19.el (hilit-add-pattern):
29883 * obsolete/rnews.el (news-parse-range, news-select-message)
29884 (news-get-pruned-list-of-files): Replace `string-to-int' by
29885 `string-to-number'.
29886
29887 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
29888 `find-file-not-found-hooks'; use `add-hook'.
29889 (uncompress-while-visiting): Set `write-file-functions', not
29890 `write-file-hooks'; use `add-hook'.
29891
29892 2005-05-09 Kim F. Storm <storm@cua.dk>
29893
29894 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
29895 (cua-paste): Handle clipboard action.
29896 (cua--init-keymaps): Remap clipboard-kill-region and
29897 clipboard-kill-ring-save.
29898
29899 2005-05-08 Eli Zaretskii <eliz@gnu.org>
29900
29901 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
29902 Improve commentary.
29903
29904 * simple.el (next-error-overlay-arrow-position): Revert the change
29905 made on 2005-04-30.
29906
29907 2005-05-07 Jay Belanger <belanger@truman.edu>
29908
29909 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
29910 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
29911 `calc-sel-reselect'.
29912
29913 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
29914 Calc is in embedded mode.
29915
29916 2005-05-07 Eli Zaretskii <eliz@gnu.org>
29917
29918 * progmodes/compile.el (compilation-setup):
29919 Set overlay-arrow-string to an empty string on text terminals.
29920
29921 * textmodes/ispell.el (ispell-program-name): Try looking for
29922 "aspell" along exec-path, and if found, use it as the default
29923 speller program.
29924
29925 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
29926
29927 * international/mule.el (sgml-xml-auto-coding-function):
29928 Recognize encoding='FOO' in single quotes as well as in double quotes.
29929
29930 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
29931
29932 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
29933 as well as `interactive', so that defmacro* would recognize
29934 `declare' forms.
29935
29936 2005-05-07 Eli Zaretskii <eliz@gnu.org>
29937
29938 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
29939 Explain more about the LIGHTER arg's usage in the doc string.
29940 Add commentary to clarify what the code does. Fix the regexp that
29941 strips whitespace from LIGHTER. Quote LIGHTER before using it,
29942 since it could have characters special to regular expressions.
29943
29944 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
29945
29946 * replace.el (occur-1): Bind inhibit-read-only so that
29947 erase-buffer doesn't barf on read-only text properties (likewise
29948 for add-text-properties in occur-engine). Mark buffer as unmodified.
29949 (occur-engine): Don't set buffer-read-only here.
29950
29951 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
29952
29953 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
29954 list-buffers-directory. This caused the *cvs-commit* buffer to be
29955 sometimes mistakenly reused as a *cvs* buffer.
29956
29957 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
29958
29959 * tooltip.el: Move code for GUD tooltips into gud.el.
29960 (require): CL no longer needed to compile case.
29961 (tooltip-mode): Do not toggle functions for GUD tooltips.
29962 (tooltip-gud-tips-p): Remove. Replace with minor mode
29963 gud-tooltip-mode in gud.el.
29964 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
29965 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
29966 tooltip-gud prefix with gud-tooltip and obsolete.
29967 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
29968 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
29969 (tooltip-mouse-motion): Mouse movement functions/variable.
29970 Rename in gud.el by adding gud prefix.
29971 (tooltip-gud-original-filter, tooltip-gud-dereference)
29972 (tooltip-gud-event, tooltip-toggle-gud-tips)
29973 (tooltip-gud-process-output, tooltip-gud-print-command)
29974 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
29975 gud.el by replacing tooltip-gud prefix with gud-tooltip.
29976 (gdb-tooltip-print): Move to gdb-ui.el.
29977
29978 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
29979 (require): CL needed to compile case.
29980 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
29981 tooltip-gud-tips-p. Make it a minor-mode.
29982 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
29983 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
29984 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
29985 (gud-tooltip-change-major-mode)
29986 (gud-tooltip-activate-mouse-motions-if-enabled)
29987 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
29988 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
29989 (gud-tooltip-original-filter, gud-tooltip-dereference)
29990 (gud-tooltip-event, tooltip-toggle-gud-tips)
29991 (gud-tooltip-process-output, gud-tooltip-print-command)
29992 (gud-tooltip-tips): Move from tooltip.el.
29993
29994 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
29995 (gdb-cpp-define-alist-flags): Doc fix.
29996 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
29997 gud-tooltip-mode is t.
29998
29999 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
30000
30001 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
30002 evaporate if their text is deleted.
30003 (goto-address-at-point): Make it work as a mouse binding as well.
30004 (goto-address-at-mouse): Obsolete it. Update users.
30005
30006 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
30007
30008 * calendar/appt.el (top-level): No longer activate on load.
30009
30010 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
30011
30012 * calendar/cal-bahai.el (mark-bahai-diary-entries):
30013 * net/webjump.el (webjump):
30014 * progmodes/idlw-help.el (idlwave-do-context-help1)
30015 (idlwave-highlight-linked-completions):
30016 * textmodes/po.el (po-find-file-coding-system-guts):
30017 Replace `assoc-ignore-case' by `assoc-string'.
30018
30019 2005-05-06 Eli Zaretskii <eliz@gnu.org>
30020
30021 * files.el (locate-file): Doc fix.
30022
30023 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
30024 Remove the redundant test for ms-dos.
30025
30026 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
30027 look for the preprocessor with exec-suffixes. If not found in
30028 standard places, look in exec-path. Remove most of the tests that
30029 used system-type.
30030
30031 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
30032
30033 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
30034
30035 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
30036 file-name clash with jka-compr.el on 8+3 filesystems.
30037
30038 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30039
30040 * term/mac-win.el: Don't define or bind scroll bar functions if
30041 x-toolkit-scroll-bars is t.
30042 (x-select-text, x-get-selection-value): Clear
30043 x-last-selected-text-clipboard if x-select-enable-clipboard is
30044 nil.
30045 (PRIMARY): Put mac-scrap-name property.
30046 (mac-select-convert-to-file-url): New function.
30047 (public.file-url): New selection target type. Add to
30048 selection-converter-alist.
30049 (x-get-selection, x-selection-value): Handle it.
30050 (x-cut-buffer-or-selection-value): New alias.
30051
30052 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
30053
30054 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
30055 entry to avoid calling bibtex-find-entry with arg global
30056 being t. Remove arg key.
30057 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
30058 (bibtex-copy-summary-as-kill): Change accordingly.
30059
30060 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
30061
30062 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
30063 (org-agenda-date-later): Use with-current-buffer.
30064
30065 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
30066
30067 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
30068 (define-obsolete-variable-alias): Doc Fixes.
30069
30070 2005-05-06 Kim F. Storm <storm@cua.dk>
30071
30072 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
30073 vertical-motion when selective-display is active.
30074
30075 * ido.el (ido-setup-hook): New hook.
30076 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
30077 (ido-input-stack): New var.
30078 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
30079 ido-next-work-file binding to M-O.
30080 Bind M-f to ido-wide-find-file-or-pop-dir.
30081 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
30082 (ido-read-internal): Run ido-setup-hook.
30083 Catch quit in read-file-name and read-string to cancel edit.
30084 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
30085 Automatically pop-all when completing a directory name (RET).
30086 (ido-file-internal): Add with-no-warnings around ffap and dired code.
30087 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
30088 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
30089 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
30090 New functions for M-b/M-f to move among the directory components.
30091 (ido-make-merged-file-list): Catch quit to cancel merge.
30092 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
30093 (ido-completion-help): No warnings for ido-completion-buffer-full.
30094
30095 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
30096
30097 * font-lock.el (font-lock-negation-char-face): New face and variable.
30098 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
30099 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
30100 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
30101 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
30102
30103 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
30104
30105 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
30106 Fix typo in docstring.
30107
30108 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
30109 (ebrowse-print-statistics-line)
30110 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
30111
30112 * term/w32-win.el (image-library-alist): Add additional name for
30113 Xpm library.
30114
30115 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
30116
30117 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
30118 use gcc instead of cpp.
30119
30120 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
30121 (gdb-create-define-alist): Use it.
30122 (gdb-cpp-define-alist-program): Update for MS-DOS.
30123
30124 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
30125
30126 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
30127
30128 2005-05-04 Richard M. Stallman <rms@gnu.org>
30129
30130 * help.el (describe-key): No error when UNTRANSLATED is nil.
30131
30132 * simple.el (line-move-1): Fix previous change to signal errors
30133 appropriately.
30134
30135 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
30136
30137 * calendar/icalendar.el (icalendar-version): Now at 0.12.
30138 (icalendar-duration-correction): Remove.
30139 (icalendar--get-event-properties): Split result at commas.
30140 (icalendar--decode-isoduration): New optional argument
30141 DURATION-CORRECTION.
30142 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
30143 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
30144 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
30145 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
30146 (icalendar--convert-anniversary-to-ical): New functions, extracted
30147 from icalendar-export-region, with bug fixes.
30148 (icalendar-export-region): Use the above functions.
30149 (icalendar-import-buffer): Check before saving diary file.
30150 (icalendar--convert-recurring-to-diary)
30151 (icalendar--convert-non-recurring-all-day-to-diary)
30152 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
30153 extracted from icalendar--convert-ical-to-diary, with bug fixes.
30154 (icalendar--convert-ical-to-diary): Use the above functions.
30155
30156 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
30157
30158 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
30159 Remove these recent additions.
30160 (c-mode): Restore to before 2005-04-28.
30161
30162 * progmodes/cc-vars.el (cc-define-list-program): Remove this
30163 recent addition.
30164
30165 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
30166 (gdb-define-alist): New variables.
30167 (gdb-create-define-alist): New function.
30168 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
30169 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
30170 with string-to-number.
30171 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
30172
30173 * progmodes/gud.el: Replace string-to-int with string-to-number.
30174 (gud-find-file): Handle gdb-define-alist.
30175
30176 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
30177
30178 2005-05-02 Jay Belanger <belanger@truman.edu>
30179
30180 * calc/calc-aent.el (math-read-token):
30181 * calc/calc-bin.el (calc-word-size):
30182 * calc/calc-ext.el (calc-read-number-fancy):
30183 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
30184 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
30185 * calc/calc-frac.el (calc-over-notation):
30186 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
30187 (calc-graph-num-points, calc-graph-init):
30188 * calc/calc-prog.el (calc-read-parse-table-part)
30189 (calc-edit-macro-repeats):
30190 * calc/calc-yank.el (calc-do-grab-rectangle):
30191 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
30192 Replace `string-to-int' by `string-to-number'.
30193
30194 2005-05-02 Kim F. Storm <storm@cua.dk>
30195
30196 * kmacro.el: Use executing-kbd-macro-index variable.
30197
30198 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
30199
30200 * net/rlogin.el (rlogin-parse-words): Delete func.
30201 (rlogin): Use split-string, not rlogin-parse-words.
30202 Also, if there are option-like elements in the parsed args,
30203 take the host to be the first arg immediately following them.
30204 Suggested by Michael Mauger.
30205
30206 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
30207
30208 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
30209
30210 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
30211
30212 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
30213 (cc-mode-cpp-program): Rename to cc-define-list-program and
30214 move to cc-vars.el.
30215
30216 * progmodes/cc-vars.el (cc-define-list-program):
30217 Change to "gcc -E -dM -". Make customizable.
30218
30219 2005-05-02 Kim F. Storm <storm@cua.dk>
30220
30221 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
30222
30223 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
30224
30225 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
30226
30227 * international/mule-util.el (truncate-string): Remove alias and
30228 obsolete declaration.
30229
30230 * international/mule-cmds.el (update-iso-coding-systems):
30231 Remove alias and obsolete declaration.
30232
30233 * international/mule.el (coding-system-parent): Remove alias and
30234 obsolete declaration.
30235
30236 * subr.el (define-function, sref): Remove aliases and obsolete
30237 declarations.
30238 (chars-in-region): Remove obsolete declaration.
30239
30240 2005-05-01 Richard M. Stallman <rms@gnu.org>
30241
30242 * info.el (Info-mode): Set widen-automatically to nil, locally.
30243
30244 * simple.el (widen-automatically): New variable.
30245 (pop-global-mark): Obey widen-automatically.
30246
30247 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
30248
30249 * term/xterm.el (function-key-map): Call substitute-key-definition
30250 before the keymap size is increased by a lot of define-key calls.
30251
30252 2005-05-01 Richard M. Stallman <rms@gnu.org>
30253
30254 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
30255 Rename ARG to ELEMENT. Doc fix.
30256
30257 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
30258
30259 * allout.el (allout-exposure): Remove macro and obsolete declaration.
30260 Remove references to allout-exposure/change to allout-new-exposure.
30261
30262 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
30263 bytecode symbols.
30264
30265 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
30266 (compiled-function-p, focus-frame, unfocus-frame):
30267 Remove aliases and obsolete declarations.
30268 Back out inadvertent changes from previous commit.
30269
30270 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
30271
30272 * files.el (require-final-newline): Make Custom tags consistent
30273 with mode-require-final-newline.
30274 (mode-require-final-newline): Doc fix.
30275
30276 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
30277
30278 * international/latexenc.el (latexenc-find-file-coding-system):
30279 Fix regular expressions.
30280
30281 2005-05-01 David Kastrup <dak@gnu.org>
30282
30283 * international/latexenc.el (latexenc-find-file-coding-system):
30284 Fix regular expressions.
30285
30286 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
30287
30288 * subr.el (string-to-int): Make obsolete.
30289
30290 2005-04-30 Richard M. Stallman <rms@gnu.org>
30291
30292 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
30293
30294 * loadup.el: load jka-comp-hook.
30295
30296 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
30297 (jka-compr-handler): Add autoload. `put' calls moved
30298 to jka-comp-hook.el.
30299 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
30300 (jka-compr-inhibit): Autoload.
30301
30302 * jka-comp-hook.el: New file.
30303 Enable the mode by default.
30304
30305 * files.el (backup-buffer-copy): Use copy-file instead
30306 of write-region, and put back the 'excl.
30307
30308 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
30309
30310 * progmodes/flymake.el (flymake-split-string)
30311 (flymake-split-string, flymake-log, flymake-pid-to-names)
30312 (flymake-reg-names, flymake-get-source-buffer-name)
30313 (flymake-unreg-names, flymake-add-line-err-info)
30314 (flymake-add-err-info): Clarify docstrings.
30315 (flymake-popup-menu, flymake-make-emacs-menu)
30316 (flymake-make-xemacs-menu): Add docstrings.
30317 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
30318 Set variables directly throughout.
30319
30320 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
30321
30322 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
30323 exists. Initialize cc-define-alist.
30324 (c-mode): Add cc-create-define-alist locally to after-save-hook.
30325 If there is no file (Macroexpansion) don't create an alist.
30326
30327 2005-04-29 Sam Steingold <sds@gnu.org>
30328
30329 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
30330 (cc-create-define-alist): Use it instead of the hard-coded string.
30331
30332 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
30333
30334 * international/mule-conf.el (file-coding-system-alist): Fix regexp
30335 for latexenc.
30336
30337 2005-04-29 Lute Kamstra <lute@gnu.org>
30338
30339 * emacs-lisp/generic.el: Improve commentary section.
30340 (define-generic-mode): Improve docstring.
30341
30342 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
30343
30344 * textmodes/org.el (many places): Change to quiet the byte compiler.
30345 (org-prefix-format-compiled): New variable.
30346 (org-compile-prefix-format): New function.
30347 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
30348 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
30349 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
30350 (org-get-entries-from-diary): Use `org-get-time-of-day' for
30351 consistency with entries from `org-mode' files.
30352 (org-get-time-of-day): Fix bug with partial matches early in a line.
30353 (org-non-link-chars): New constant.
30354 (org-link-regexp): Respect `org-non-link-chars'.
30355 (org-agenda-day-view): Remove command.
30356 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
30357 (org-follow-bbdb-link, org-store-link): Search also company field.
30358 (org-highlight-overlay): New variable.
30359 (org-highlight, org-unhighlight): New functions.
30360 (org-agenda-mode): Add pre-command-hook to remove highlight.
30361 (org-evaluate-time-range): Behavior depends upon whether time stamp
30362 contains a time or not.
30363 (org-show-subtree, org-show-entry): New functions.
30364 (org-agenda-cleanup-fancy-diary): Remove empty lines.
30365
30366 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
30367
30368 * comint.el (comint-output-filter-functions): Add autoload cookie.
30369
30370 2005-04-28 Kim F. Storm <storm@cua.dk>
30371
30372 * ido.el (ido-everywhere): Fix last change.
30373
30374 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
30375
30376 * international/latexenc.el: New file.
30377 * international/mule-conf.el (file-coding-system-alist): For .tex,
30378 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
30379
30380 2005-04-28 Lute Kamstra <lute@gnu.org>
30381
30382 * font-lock.el (font-lock-add-keywords)
30383 (font-lock-remove-keywords): Clarify docstring.
30384 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
30385 Don't start docstrings with a `*'.
30386 (font-lock-update-removed-keyword-alist): Give it a docstring.
30387
30388 * generic-x.el: Update commentary section.
30389 Only require font-lock when compiling.
30390 Define all modes conditionally.
30391 Place all generic modes in the generic-x-modes customization group.
30392 (generic-x-modes): New customization group.
30393 (generic-default-modes, generic-mswindows-modes)
30394 (generic-unix-modes, generic-other-modes): New constants.
30395 (generic-define-mswindows-modes, generic-define-unix-modes):
30396 Update docstrings. Make them obsolete.
30397 (generic-extras-enable-list): New default value. Update docstring.
30398 Improve :type. Change :set function.
30399 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
30400 Fix docstring.
30401
30402 * emacs-lisp/generic.el (generic-mode-internal):
30403 Simplify font-lock-defaults.
30404 (define-generic-mode): Fix docstring.
30405
30406 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
30407
30408 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
30409 font-lock-face property to highlight matches.
30410
30411 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
30412
30413 * progmodes/cc-mode.el (cc-create-define-alist): New function.
30414 (cc-define-alist): New variable.
30415 (c-mode): Make it local and initialize it.
30416
30417 * progmodes/gdb-ui.el (gdb-active-process): New variable.
30418 (gdb-exited): New function.
30419 (gdb-annotation-rules): Use it.
30420 (gdb-starting): Set gdb-active-process to t.
30421 (gdb-stopping): Amend doc string.
30422 (gdb-reset): Set gdb-active-process to nil.
30423
30424 * tooltip.el (tooltip-gud-tips): Show the associated #define
30425 directives when a C program under GDB is not executing.
30426
30427 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
30428
30429 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
30430 font-lock-fontify-syntactic-keywords.
30431
30432 * font-lock.el (font-lock-default-fontify-region): Don't force
30433 parse-sexp-lookup-properties to nil.
30434
30435 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
30436
30437 * man.el (man-mode-syntax-table): Set up `:' to have
30438 word-constituent syntax.
30439
30440 2005-04-27 Lute Kamstra <lute@gnu.org>
30441
30442 * novice.el (disable-command): Don't add spurious newlines to the
30443 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
30444
30445 2005-04-26 Jay Belanger <belanger@truman.edu>
30446
30447 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
30448 than one window before deleting window.
30449
30450 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
30451
30452 * shell.el (shell-prompt-pattern): Doc fix.
30453 (shell-mode): Set paragraph-separate buffer locally to "\\'".
30454
30455 * comint.el (comint-prompt-regexp, comint-get-old-input)
30456 (comint-use-prompt-regexp)
30457 (comint-use-prompt-regexp-instead-of-fields)
30458 (comint-replace-by-expanded-history, comint-send-input)
30459 (comint-output-filter, comint-get-old-input-default)
30460 (comint-line-beginning-position, comint-bol, comint-show-output)
30461 (comint-backward-matching-input, comint-forward-matching-input)
30462 (comint-next-prompt, comint-previous-prompt):
30463 Rename `comint-use-prompt-regexp-instead-of-fields' to
30464 `comint-use-prompt-regexp'. Keep old name as alias and declare
30465 obsolete.
30466 (comint-use-prompt-regexp): Shorten first line of doc string.
30467
30468 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
30469 Set paragraph-separate buffer locally to "\\'".
30470
30471 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
30472 Adapt to above name change.
30473
30474 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
30475 (smbclient-prompt-regexp): Ditto.
30476
30477 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
30478
30479 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
30480
30481 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
30482 gdb-location-list.
30483 Break lines that are over 80 characters wide.
30484
30485 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
30486
30487 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
30488 New fun and var, to preserve compatibility.
30489
30490 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
30491
30492 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
30493
30494 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
30495 name to file-newer-than-file-p.
30496
30497 2005-04-26 Richard M. Stallman <rms@gnu.org>
30498
30499 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
30500
30501 * progmodes/python.el (python-mode):
30502 Use new name eldoc-documentation-function.
30503
30504 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
30505
30506 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
30507 (eldoc-documentation-function):
30508 Rename from eldoc-print-current-symbol-info-function. Calls changed.
30509
30510 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
30511
30512 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
30513
30514 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
30515
30516 * term/xterm.el (function-key-map): Fix strings for
30517 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
30518 {C,S,A,C-S}-{f1-f12}.
30519
30520 2005-04-26 Kenichi Handa <handa@m17n.org>
30521
30522 * international/mule-cmds.el (select-safe-coding-system):
30523 Fix previous change.
30524
30525 2005-04-26 Lute Kamstra <lute@gnu.org>
30526
30527 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
30528
30529 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
30530 (font-lock-comment-delimiter-face): Ditto.
30531
30532 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
30533
30534 2005-04-25 Jay Belanger <belanger@truman.edu>
30535
30536 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
30537 to t while inserting information; use help-mode.
30538
30539 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
30540
30541 * term.el (ansi-term-color-vector): Use the xterm colors.
30542 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
30543
30544 2005-04-25 Lute Kamstra <lute@gnu.org>
30545
30546 * font-core.el (font-lock-defaults): Fix docstring.
30547
30548 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
30549
30550 2005-04-25 Kenichi Handa <handa@m17n.org>
30551
30552 * international/mule-cmds.el (select-safe-coding-system):
30553 Don't check consistency with coding: spec, etc if raw-text or
30554 no-conversion was found to be safe.
30555
30556 2005-04-24 Richard M. Stallman <rms@gnu.org>
30557
30558 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
30559 citation markers at start of each line.
30560
30561 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
30562 citation markers at start of each line.
30563
30564 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
30565
30566 * files.el (mode-require-final-newline): Fix previous change.
30567 (require-final-newline): Fix type label.
30568
30569 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
30570
30571 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
30572 statement in buffer (broken by 2004-11-24 change).
30573
30574 2005-04-24 Kim F. Storm <storm@cua.dk>
30575
30576 * ido.el (ido-everywhere): Save and restore old read-buffer-function
30577 and read-file-name-function values. Don't overwrite existing
30578 non-nil values if ido-mode is enabled without ido-everywhere.
30579
30580 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
30581
30582 * files.el (mode-require-final-newline): Minor doc fix.
30583
30584 2005-04-24 Eli Zaretskii <eliz@gnu.org>
30585
30586 * subr.el (syntax-after): Doc fix.
30587 (syntax-class): If argument is nil, return nil. Mask off upper 16
30588 bits, not 8 bits.
30589
30590 * files.el (mode-require-final-newline): Doc fix.
30591 (backup-buffer-copy): Fix last change.
30592
30593 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30594
30595 * term/mac-win.el: Require select. Set selection-coding-system to
30596 mac-system-coding-system. Call menu-bar-enable-clipboard.
30597 (x-last-selected-text-clipboard, x-last-selected-text-primary)
30598 (x-select-enable-clipboard): New variables.
30599 (x-select-text, x-get-selection, x-selection-value)
30600 (x-get-selection-value, mac-select-convert-to-string)
30601 (mac-services-open-file, mac-services-open-selection)
30602 (mac-services-insert-text): New functions.
30603 (CLIPBOARD, FIND): Put mac-scrap-name property.
30604 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
30605 (public.tiff): Put mac-ostype property.
30606 (selection-converter-alist): Add entries for them.
30607 (mac-application-menu-map): New keymap.
30608 (interprogram-cut-function, interprogram-paste-function): Set to
30609 x-select-text and x-get-selection-value, respectively.
30610 (split-window-keep-point): Set to t.
30611
30612 2005-04-23 Richard M. Stallman <rms@gnu.org>
30613
30614 * files.el (read-directory-name): Always pass non-nil
30615 DEFAULT-FILENAME arg to read-file-name.
30616 (backup-buffer-copy, basic-save-buffer-2): Take care against
30617 writing thru an unexpected existing symlink.
30618 (revert-buffer): In indirect buffer, revert the base buffer.
30619 (magic-mode-alist): Doc fix.
30620 (buffer-stale-function): Doc fix.
30621 (minibuffer-with-setup-hook): Avoid warning.
30622 (mode-require-final-newline): Doc and custom fix.
30623
30624 * follow.el (follow-end-of-buffer): Use with-no-warnings.
30625
30626 * font-lock.el (font-lock-comment-face): On terminals with few colors,
30627 use the default appearance.
30628 (font-lock-comment-delimiter-face): New face, new variable.
30629
30630 * imenu.el (imenu--generic-function): The official position of a
30631 definition is the start of the line that BEG is in.
30632
30633 * midnight.el (midnight-timer): Move defvar up.
30634
30635 * mouse.el (mouse-drag-region-1): Delete some debugging code.
30636
30637 * saveplace.el (save-place-to-alist): Use with-no-warnings.
30638
30639 * startup.el (command-line): Use with-no-warnings.
30640
30641 * window.el (window-size-fixed): New defvar.
30642
30643 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
30644
30645 * mail/rmail.el (rmail-font-lock-keywords):
30646 Use font-lock-comment-delimiter-face.
30647
30648 * mail/sendmail.el (mail-font-lock-keywords):
30649 Use font-lock-comment-delimiter-face.
30650
30651 * progmodes/compile.el (next-error-highlight-timer): New defvar.
30652
30653 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
30654
30655 * progmodes/compile.el (compilation-mode-font-lock-keywords):
30656 Specify t for LAXMATCH when matching directories.
30657 Save match data around compilation-compat-error-properties form.
30658
30659 2005-04-23 David Kastrup <dak@gnu.org>
30660
30661 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
30662 Mention that the autoloaded aliases should be kept for AUCTeX.
30663
30664 2005-04-23 Andreas Schwab <schwab@suse.de>
30665
30666 * isearch.el (isearch-forward): Doc fix.
30667
30668 2005-04-23 Eli Zaretskii <eliz@gnu.org>
30669
30670 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
30671 (jit-lock-stealth-nice): Change default value to 0.5.
30672
30673 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
30674
30675 * abbrev.el (write-abbrev-file): Write table entries in
30676 alphabetical order by table name.
30677
30678 2005-04-22 Kim F. Storm <storm@cua.dk>
30679
30680 * ido.el (ido-read-internal): Fix `list' completion.
30681
30682 2005-04-22 Kenichi Handa <handa@m17n.org>
30683
30684 * recentf.el (recentf-save-file-coding-system): New variable.
30685 (recentf-save-list): Encode the file by
30686 recentf-save-file-coding-system and add coding: tag.
30687
30688 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
30689
30690 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
30691
30692 2005-04-21 Lute Kamstra <lute@gnu.org>
30693
30694 * loadhist.el (unload-feature): Don't remove a function from hooks
30695 if it is about to be restored to an autoload . Remove functions
30696 that will become unbound from auto-mode-alist. Simplify the code.
30697
30698 * subr.el (assq-delete-all): New implementation that is linear,
30699 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
30700 (rassq-delete-all): New function.
30701
30702 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
30703 Add size-indication-mode.
30704
30705 2005-04-21 Kenichi Handa <handa@m17n.org>
30706
30707 * international/mule-cmds.el: Add autoload for widget-value in
30708 eval-when-compile.
30709
30710 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
30711
30712 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
30713 Add tooltip-mode.
30714
30715 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
30716
30717 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
30718
30719 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
30720 (inferior-lisp-filter-regexp, inferior-lisp-program)
30721 (inferior-lisp-load-command, inferior-lisp-prompt)
30722 (inferior-lisp-mode-hook, lisp-source-modes)
30723 (inferior-lisp-load-hook): defvar->defcustom.
30724 (inferior-lisp-program, inferior-lisp-prompt)
30725 (inferior-lisp-load-hook): Doc fixes.
30726 (inferior-lisp-install-letter-bindings): Small change in
30727 introductory comment.
30728
30729 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
30730
30731 * vc.el (vc-annotate-color-map): Change some colors so that text
30732 using them as foreground is readable on both white and black
30733 backgrounds.
30734
30735 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
30736
30737 * international/mule-conf.el (translation-table-for-input):
30738 Remove redundant declaration.
30739
30740 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
30741
30742 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
30743
30744 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
30745 (tooltip-toggle-gud-tips): New function.
30746
30747 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30748
30749 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
30750 right angle brackets.
30751
30752 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
30753
30754 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
30755
30756 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
30757
30758 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
30759 Remove. Update callers to use expand-file-name instead.
30760
30761 * subr.el (syntax-class): New function.
30762
30763 * simple.el (blink-matching-open): Use it.
30764
30765 * paren.el (show-paren-function): Use it to recognize parens that are
30766 also used in 2-char comment markers.
30767
30768 2005-04-19 Lute Kamstra <lute@gnu.org>
30769
30770 * loadhist.el (unload-feature): Update for new format of
30771 load-history. Simplify the code.
30772
30773 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30774
30775 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
30776 (mac-add-charset-info): New function. Initialize variable
30777 mac-charset-info-alist using it.
30778 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
30779 for translation.
30780 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
30781 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
30782 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
30783 New CCL programs.
30784
30785 2005-04-19 Kim F. Storm <storm@cua.dk>
30786
30787 * simple.el (next-buffer, prev-buffer, next-error)
30788 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
30789 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
30790
30791 * bindings.el (next-buffer, prev-buffer, next-error)
30792 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
30793 (clone-indirect-buffer-other-window): Move bindings from simple.el.
30794 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
30795 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
30796
30797 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
30798
30799 * isearch.el (isearch-edit-string): Make the search-ring available for
30800 minibuffer history commands.
30801 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
30802 the default history commands now work just as well.
30803 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
30804
30805 2005-04-18 Kim F. Storm <storm@cua.dk>
30806
30807 * emulation/cua-base.el (cua--pre-command-handler): Add more
30808 elaborate check for shift modifier on non-window systems.
30809
30810 2005-04-18 Lars Hansen <larsh@math.ku.dk>
30811
30812 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
30813
30814 2005-04-18 Kim F. Storm <storm@cua.dk>
30815
30816 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
30817 and make it optional. Don't test tooltip-gud-echo-area here.
30818 (tooltip-gud-process-output, gdb-tooltip-print):
30819 Pass tooltip-gud-echo-area to tooltip-show.
30820 (tooltip-help-tips): Remove second optional arg to tooltip-show.
30821
30822 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30823
30824 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
30825 `display-graphic-p' may not be bound yet.
30826
30827 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
30828
30829 * startup.el (command-line): No longer enable Xterm Mouse mode by
30830 default in terminals compatible with xterm.
30831
30832 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
30833
30834 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
30835
30836 * tooltip.el (tooltip-gud-echo-area): Rename from
30837 tooltip-use-echo-area.
30838 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
30839 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
30840 area independently of where help tooltips are displayed.
30841
30842 2005-04-17 David Kastrup <dak@gnu.org>
30843
30844 * cus-theme.el (custom-theme-write-variables): Quote variables
30845 where necessary.
30846
30847 2005-04-17 Richard M. Stallman <rms@gnu.org>
30848
30849 * simple.el (yank-excluded-properties): Add follow-link to value.
30850
30851 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
30852
30853 * startup.el (fancy-splash-max-time): Just 30 seconds.
30854 (fancy-splash-delay): Just 7.
30855 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
30856
30857 * loadhist.el (unload-feature): Update for new format of load-history.
30858 Simplify the code.
30859
30860 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
30861 (rmail-font-lock-keywords): Don't fontify the text of a citation.
30862
30863 * mail/sendmail.el (mail-font-lock-keywords):
30864 Don't fontify subject text.
30865 Don't fontify the text of a citation.
30866
30867 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
30868
30869 * comint.el (comint-output-filter): Run comint-output-filter-functions
30870 with point where the user had it.
30871
30872 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
30873
30874 * international/ucs-tables.el (ucs-set-table-for-input):
30875 Disable when using unify-on-decoding.
30876
30877 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
30878
30879 * emulation/cua-base.el (cua-global-mark-face): Add special case
30880 for displays supporting a high number of colors.
30881
30882 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
30883
30884 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
30885
30886 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
30887
30888 * filesets.el (filesets-add-buffer): If user supplies a name of a
30889 non-existing fileset, create a new fileset.
30890
30891 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
30892
30893 * textmodes/org.el (org-up-heading-all): Fix bug with
30894 `outline-up-heading-all'.
30895
30896 2005-04-16 Andreas Schwab <schwab@suse.de>
30897
30898 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
30899 /etc/permissions.d/* and /etc/aliases.d/*.
30900
30901 2005-04-16 Kenichi Handa <handa@m17n.org>
30902
30903 * international/code-pages.el (cp-make-coding-system):
30904 Set `translation-table-for-input' property value to the symbol
30905 ucs-mule-to-mule-unicode, not to that value.
30906 (pt154): Escape guillemet by `\'.
30907
30908 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
30909
30910 * loadup.el: Load tooltip if x-show-tip is fboundp.
30911
30912 * startup.el (command-line): Add comment.
30913
30914 * tooltip.el (tooltip-mode): Specify correct standard value for
30915 Custom in init-value.
30916
30917 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
30918
30919 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
30920 possible.
30921
30922 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
30923
30924 * textmodes/org.el (org-agenda-date-prompt): Rename from
30925 `org-agenda-date-today'.
30926 (org-evaluate-time-range): Insert at point instead of directly
30927 after time range.
30928 (org-first-headline-recenter, org-subtree-end-visible-p)
30929 (org-optimize-window-after-visibility-change): New functions
30930 (org-agenda-post-command-hook): Don't allow point at end of line,
30931 to make sure it always hits the text properties.
30932 (org-agenda-next-date-line, org-agenda-previous-date-line):
30933 New commands.
30934 (org-set-regexps-and-options): Category may contain white space.
30935 (org-agenda-get-deadlines, org-agenda-get-scheduled):
30936 Improve marker positions.
30937 (org-agenda-new-marker): Argument POS made optional.
30938 (org-agenda-get-timestamps): Deadlines which are done are listed
30939 in org-done-face now.
30940 (org-agenda-get-todos, org-agenda-get-timestamps)
30941 (org-agenda-get-deadlines, org-agenda-get-scheduled):
30942 Set `undone-face' and `done-face' properties.
30943 (org-last-todo-state-is-todo): New variable.
30944 (org-todo): Set `org-last-todo-state-is-todo'.
30945 (org-agenda-todo): Change face according to
30946 `org-last-todo-state-is-todo'. And change other lines referring to
30947 the same entry.
30948 (org-calendar-goto-agenda): New command.
30949 (org-calendar-to-agenda-key): New option.
30950 (org-startup-folded): New allowed value `content'.
30951 (org-set-regexps-and-options): Accept new value `content' for
30952 `org-startup-folded'.
30953 (org-get-current-options): Handle new value `content' for
30954 `org-startup-folded'.
30955 (org-insert-todo-heading): New command.
30956 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
30957 interactively in empty file and option
30958 `org-insert-mode-line-in-empty-file' has been set.
30959 (org-agenda-todo, org-agenda-priority): Modify to use
30960 `org-agenda-change-all-lines'.
30961 (org-warning-face): Change color on dark background.
30962
30963 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30964
30965 * international/mule-cmds.el (set-locale-environment): On Mac OS,
30966 use preferences AppleLocale and AppleLanguages, and variable
30967 mac-system-locale for default locale. On Mac OS Classic, use
30968 mac-system-coding-system for default coding systems.
30969
30970 * term/mac-win.el: Don't set file-name-coding-system.
30971 Decode variables system-name, emacs-build-system, user-login-name, and
30972 user-full-name by mac-system-coding-system on Mac OS Classic.
30973 (mac-system-coding-system): New variable.
30974
30975 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
30976
30977 * startup.el (command-line): Handle `xterm-mouse-mode' before
30978 reading init file.
30979
30980 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
30981
30982 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
30983
30984 * progmodes/sh-script.el (sh-here-document-word): Make it a
30985 defcustom. Doc fix.
30986 (sh-add): Bash uses $(( )) for arithmetic.
30987 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
30988 (sh-maybe-here-document): Remove quotes and leading whitespace
30989 from heredoc word when closing. Indent heredoc with tabs if word
30990 starts with "-".
30991
30992 2005-04-13 Richard M. Stallman <rms@gnu.org>
30993
30994 * simple.el (undo): Fix previous change.
30995
30996 * custom.el (defface): Doc fix.
30997
30998 2005-04-13 Lute Kamstra <lute@gnu.org>
30999
31000 * Makefile.in (DONTCOMPILE): Remove list.
31001 (compile, compile-always): Don't use DONTCOMPILE.
31002 (update-authors): Load the library in which batch-update-authors
31003 is defined.
31004 * makefile.w32-in (DONTCOMPILE): Remove list.
31005 (compile, compile-always): Fix comments.
31006 (update-authors): Load the library in which batch-update-authors
31007 is defined.
31008
31009 * generic-x.el (generic-mode-ini-file-find-file-hook):
31010 Rename to ini-generic-mode-find-file-hook.
31011 Keep generic-mode-ini-file-find-file-hook as an alias.
31012 (ini-generic-mode-find-file-hook): Rename from
31013 generic-mode-ini-file-find-file-hook. Fix docstring.
31014 (ini-generic-mode): Docstring change.
31015 (bat-generic-mode-run-as-comint): Silence the byte compiler.
31016
31017 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
31018 called from lisp.
31019
31020 * generic.el: Move to the emacs-lisp subdir.
31021
31022 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
31023
31024 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
31025 and C-S- function and cursor motion keys.
31026
31027 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
31028
31029 * startup.el (command-line): Enable Xterm Mouse mode by default.
31030 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
31031 for Custom. No longer show "Mouse" in mode line when enabled.
31032 Doc fix.
31033
31034 2005-04-12 Kim F. Storm <storm@cua.dk>
31035
31036 * emulation/cua-base.el (cua-rectangle-face)
31037 (cua-rectangle-noselect-face): Define face attributes here.
31038
31039 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
31040
31041 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
31042
31043 * startup.el (command-line): Turn off blinking cursor if
31044 cursorBlink in resources is off or false.
31045
31046 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31047
31048 * term/mac-win.el (dnd): Require dnd.
31049 (mac-drag-n-drop): Call dnd-handle-one-url.
31050 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
31051 (kTextEncodingISOLatin2): Remove constants.
31052 (mac-script-code-coding-systems): New constant.
31053 (mac-handle-language-change): New function.
31054 (special-event-map): Bind it to `language-change' event.
31055 (mac-centraleurroman, mac-cyrillic): New coding systems.
31056 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
31057 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
31058 and mac-cyrillic-encoder to encode-mac-centraleurroman and
31059 encode-mac-cyrillic, respectively.
31060
31061 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
31062
31063 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
31064 Don't set overlay-arrow-string to "=>" as this is done
31065 globally in C now.
31066
31067 2005-04-12 Lute Kamstra <lute@gnu.org>
31068
31069 * generic-x.el (rc-generic-mode, rul-generic-mode):
31070 Fix auto-mode-alist entries.
31071 (etc-fstab-generic-mode): Tweak fontification.
31072
31073 * generic.el (generic-make-keywords-list): Fix docstring.
31074 (generic-mode-internal): Simplify generic-font-lock-keywords.
31075
31076 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
31077
31078 * whitespace.el (whitespace-buffer-leading)
31079 (whitespace-buffer-trailing): Revert the incorrect test inversion.
31080 However, fix the highlight area for the leading and
31081 trailing whitespaces to show space.
31082
31083 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
31084
31085 * whitespace.el (whitespace-version): Bump to 3.5.
31086
31087 (whitespace-buffer-leading, whitespace-buffer-trailing):
31088 Invert sense of the test to highlight the whitespace.
31089
31090 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
31091
31092 * progmodes/gud.el (gud-display-line): GUD uses its own
31093 overlay arrow now so don't set overlay-arrow-string.
31094 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
31095
31096 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
31097
31098 * term.el (term-ansi-current-bold, term-ansi-current-underline)
31099 (term-ansi-current-reverse, term-ansi-current-invisible)
31100 (term-ansi-face-already-done): Change to boolean.
31101 (term-reset-terminal, term-handle-colors-array): Handle the above
31102 vars accordingly.
31103 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
31104 (term-emulate-terminal): Use the new name.
31105
31106 * faces.el (secondary-selection): Use yellow1, not yellow.
31107 (trailing-whitespace): Use red1, not red.
31108
31109 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
31110
31111 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
31112 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
31113 (dired-dnd-handle-file): Call dnd-get-local-file-uri.
31114
31115 * cus-edit.el (dnd): New group.
31116
31117 * term/w32-win.el (dnd): Require dnd
31118 (w32-drag-n-drop): Call dnd-handle-one-url.
31119
31120 * x-dnd.el: Require dnd.
31121 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
31122 Call dnd-handle-one-url.
31123 (x-dnd-types-alist, x-dnd-insert-utf8-text)
31124 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
31125 to dnd-insert-text.
31126 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
31127 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
31128 (x-dnd-get-local-file-name, x-dnd-open-local-file)
31129 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
31130
31131 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
31132
31133 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
31134
31135 * wdired.el: Doc fixes.
31136 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
31137 (wdired-use-dired-vertical-movement): Rename from
31138 wdired-always-move-to-filename-beginning.
31139 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
31140 (wdired-change-to-wdired-mode): Change mode name.
31141 (wdired-newline): Delete.
31142
31143 2005-04-11 Richard M. Stallman <rms@gnu.org>
31144
31145 * whitespace.el (whitespace-highlight-the-space):
31146 Don't call whitespace-unhighlight-the-space here.
31147
31148 * simple.el (undo): Record t in undo-equiv-table
31149 for the redo record made by an undo-in-region.
31150
31151 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
31152
31153 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
31154 (gdb-frame-inferior-io-buffer): New Functions to control
31155 display of separate IO buffer.
31156 (menu): Add them to menu-bar.
31157 (gdb-display-buffer): Check for buffer another frame.
31158 Protect GUD buffer.
31159 (gdb-setup-windows): Create IO buffer if not already there.
31160 (gdb-memory-mode): Remove purecopy noops.
31161
31162 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
31163
31164 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
31165 and pass to self-insert-command.
31166
31167 2005-04-11 Lute Kamstra <lute@gnu.org>
31168
31169 * generic.el: Commentary section cleanup.
31170 (generic): Delete.
31171 (generic-use-find-file-hook, generic-lines-to-scan)
31172 (generic-find-file-regexp, generic-ignore-files-regexp)
31173 (default-generic-mode, generic-mode-find-file-hook)
31174 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
31175 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
31176 (generic-use-find-file-hook, generic-lines-to-scan)
31177 (generic-find-file-regexp, generic-ignore-files-regexp)
31178 (default-generic-mode, generic-mode-find-file-hook)
31179 (generic-mode-ini-file-find-file-hook): Move from generic.el.
31180
31181 2005-04-10 Karl Fogel <kfogel@red-bean.com>
31182
31183 * bookmark.el (bookmark-write-file): Catch errors writing file.
31184 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
31185
31186 2005-04-10 Richard M. Stallman <rms@gnu.org>
31187
31188 * startup.el (fancy-splash-tail): Update copyright year.
31189 (command-line): Split part of -Q into -D.
31190 (emacs-basic-display): New defvar.
31191 (fancy-splash-text): Correct name of menu item.
31192
31193 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
31194
31195 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
31196 lines in one node.
31197
31198 * comint.el (comint-send-input): New arg ARTIFICIAL.
31199 Callers in this file changed.
31200
31201 * abbrev.el (define-abbrevs): Read system abbrevs properly.
31202
31203 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
31204
31205 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
31206
31207 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
31208 `ldap-search-internal'.
31209
31210 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
31211
31212 * files.el (set-auto-mode-1): Use line-end-position.
31213
31214 * international/latin-1.el:
31215 * international/latin-2.el:
31216 * international/latin-3.el:
31217 * international/latin-4.el:
31218 * international/latin-5.el:
31219 * international/latin-8.el:
31220 * international/latin-9.el: Give punctuation syntax to NBSP.
31221
31222 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
31223 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
31224 Use char-classes to accept non-ascii letters, accepted in some recent
31225 bibtex implementations.
31226
31227 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
31228
31229 * custom.el (custom-set-minor-mode): Any non-nil value for the
31230 variable should enable the mode when set through Custom.
31231
31232 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
31233
31234 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
31235 TAB binding so tab-always-indent is obeyed.
31236 (vhdl-minibuffer-local-map): Move initialization into declaration.
31237 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
31238 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
31239 (vhdl-hooked-abbrev): Avoid test for XEmacs.
31240 (vhdl-current-line): Use line-beginning-position.
31241 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
31242 with-output-to-temp-buffer, so the current position can be recorded.
31243
31244 2005-04-10 Masatake YAMATO <jet@gyve.org>
31245
31246 * progmodes/compile.el (compilation-error-regexp-alist-alist):
31247 Add regexp for gcov.
31248
31249 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
31250
31251 * calendar/time-date.el (time-to-seconds, seconds-to-time)
31252 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
31253 syntax which Emacs 20 doesn't support.
31254
31255 2005-04-09 Richard M. Stallman <rms@gnu.org>
31256
31257 * help.el (describe-key-briefly, describe-key):
31258 Replace strings as event types with "(any string)".
31259
31260 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
31261
31262 * arc-mode.el (archive-mode-map): Move initialization into
31263 the declaration. Override *all* bindings of `undo'.
31264 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
31265
31266 2005-04-09 Jay Belanger <belanger@truman.edu>
31267
31268 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
31269
31270 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
31271
31272 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
31273 (xterm-register-default-colors): Update color values computation
31274 to match xterm-200.
31275
31276 2005-04-09 Kenichi Handa <handa@m17n.org>
31277
31278 * international/code-pages.el (iso-latin-7): Fix the map.
31279
31280 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
31281
31282 * emacs-lisp/lisp.el (defun-prompt-regexp)
31283 (parens-require-spaces, buffer-end, end-of-defun)
31284 (insert-parentheses): Doc fixes.
31285
31286 2005-04-08 Kim F. Storm <storm@cua.dk>
31287
31288 * comint.el (comint-highlight-prompt): Fix face spec.
31289 * hi-lock.el (hi-green): Likewise.
31290
31291 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
31292
31293 * cus-edit.el (custom-modified-face):
31294 * comint.el (comint-highlight-input): Fix previous changes.
31295 * term.el (term-handle-ansi-escape): Add a comment.
31296
31297 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
31298
31299 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
31300 in the buffer and in whitespace-highlighted-space.
31301 (whitespace-unhighlight-the-space): Simplify.
31302 (whitespace-buffer): Simplify.
31303
31304 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
31305
31306 * textmodes/table.el (table-cell-face): Add special case for
31307 displays supporting a high number of colors.
31308 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
31309 (vhdl-font-lock-reserved-words-face)
31310 (vhdl-speedbar-architecture-face)
31311 (vhdl-speedbar-instantiation-face)
31312 (vhdl-speedbar-architecture-selected-face)
31313 (vhdl-speedbar-instantiation-selected-face): Likewise.
31314 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
31315 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
31316 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
31317 (ebrowse-root-class-face, ebrowse-member-attribute-face)
31318 (ebrowse-progress-face): Likewise.
31319 * progmodes/compile.el (compilation-info-face): Likewise.
31320 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
31321 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
31322 * calendar/calendar.el (diary-face): Likewise.
31323 * woman.el (woman-italic-face, woman-bold-face)
31324 (woman-unknown-face): Likewise.
31325 * wid-edit.el (widget-button-pressed-face): Likewise.
31326 * whitespace.el (whitespace-highlight-face): Likewise.
31327 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
31328 * pcvs-info.el (cvs-marked-face): Likewise.
31329 * info.el (info-xref): Likewise.
31330 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
31331 * hilit-chg.el (highlight-changes-face)
31332 (highlight-changes-delete-face): Likewise.
31333 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
31334 (hi-red-b): Likewise.
31335 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
31336 * font-lock.el (font-lock-keyword-face)
31337 (font-lock-function-name-face, font-lock-warning-face): Likewise.
31338 * cus-edit.el (custom-invalid-face, custom-modified-face)
31339 (custom-set-face, custom-changed-face, custom-variable-tag-face)
31340 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
31341 * comint.el (comint-highlight-prompt): Likewise.
31342
31343 2005-04-08 Lute Kamstra <lute@gnu.org>
31344
31345 * font-lock.el (font-lock-keywords): Docstring fixes.
31346
31347 2005-04-08 Kenichi Handa <handa@m17n.org>
31348
31349 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
31350 chars are more than a limit, print " and more..." at the tail.
31351
31352 2005-04-08 Kim F. Storm <storm@cua.dk>
31353
31354 * emacs-lisp/authors.el (authors-aliases): Update list.
31355 (authors-ignored-files): New list.
31356 (authors-fixed-entries): Fix typo.
31357 (authors-renamed-files-alist): Update list.
31358 (authors-add): Check authors-ignored-files.
31359
31360 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
31361
31362 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
31363 optional, to ensure backward compatibility.
31364
31365 2005-04-08 Stephen Eglen <stephen@gnu.org>
31366
31367 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
31368
31369 2005-04-08 Kim F. Storm <storm@cua.dk>
31370
31371 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
31372
31373 * mouse.el (mouse-on-link-p): Doc fix.
31374
31375 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
31376
31377 * ielm.el (ielm-prompt-read-only): Doc fix.
31378
31379 * comint.el (comint-prompt-read-only): Doc fix.
31380
31381 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
31382
31383 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
31384 ensure dired always handles wildcards passed to ffap.
31385 (find-file-at-point): Use it.
31386 (ffap-dired-wildcards): Doc fix.
31387
31388 2005-04-07 Juri Linkov <juri@jurta.org>
31389
31390 * simple.el (next-error-overlay-arrow-position): New defvar.
31391 Put "=>" on its property `overlay-arrow-string'. Add it to
31392 `overlay-arrow-variable-list'.
31393
31394 * progmodes/compile.el (compilation-setup):
31395 Set `next-error-overlay-arrow-position' to nil. Also set it to
31396 nil in the local hook `kill-buffer-hook'. Make local variable
31397 `overlay-arrow-string' and set it to "=>".
31398 (compilation-goto-locus): Set BOL position to
31399 `next-error-overlay-arrow-position' instead of
31400 `overlay-arrow-position'.
31401
31402 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
31403 locally instead of adding it to the global hook.
31404 (Info-kill-buffer): Move up.
31405
31406 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
31407
31408 * term/xterm.el (xterm-standard-colors): Update color values from
31409 xterm-200.
31410
31411 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
31412
31413 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
31414
31415 * fast-lock.el:
31416 * lazy-lock.el: Move them to the obsolete subdir.
31417
31418 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
31419
31420 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
31421 (wdired-add-replace-advice): Remove.
31422 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
31423
31424 2005-04-06 Kim F. Storm <storm@cua.dk>
31425
31426 * startup.el (command-line): Add --bare-bones alias for -Q.
31427
31428 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31429
31430 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
31431 create the startup fontset if a font specification ends with
31432 `mac-roman'.
31433
31434 2005-04-06 Lute Kamstra <lute@gnu.org>
31435
31436 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
31437 change.
31438
31439 * emacs-lisp/copyright.el (copyright-update-year): Replace the
31440 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
31441
31442 2005-04-05 Lute Kamstra <lute@gnu.org>
31443
31444 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
31445 (define-generic-mode): Ditto. Fix debug declaration.
31446
31447 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
31448 Put them in the generic-x group.
31449
31450 * calendar/timeclock.el (timeclock): Doc fix.
31451
31452 * generic.el (define-generic-mode): Don't use custom-current-group.
31453 Document default :group value.
31454 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
31455 (define-global-minor-mode): Don't use custom-current-group.
31456
31457 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
31458
31459 * startup.el (command-line-1): Display startup-echo-area-message
31460 when fancy splash screen is in use.
31461
31462 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
31463 (sh-escaped-newline): New face.
31464 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
31465 newline, and use sh-escaped-newline face.
31466
31467 * progmodes/tcl.el (tcl-escaped-newline): New face.
31468 (tcl-builtin-list): New variable.
31469 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
31470 newlines. Fix keywords subexpression number.
31471
31472 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
31473
31474 * textmodes/org.el (org-diary-default-entry): Fix call to
31475 `add-to-diary-entry'.
31476
31477 2005-04-05 Kim F. Storm <storm@cua.dk>
31478
31479 * ediff-init.el: Use (featurep 'xemacs).
31480
31481 2005-04-05 David Ponce <david@dponce.com>
31482
31483 * cus-edit.el (face): Derive from symbol widget. Display sample
31484 of the current face on the fly.
31485 (widget-face-sample-face-get, widget-face-notify): New functions.
31486 (widget-face-value-create): Remove.
31487
31488 * wid-edit.el (widget-field-end): Temporarily remove field
31489 narrowing before to call `get-char-property'.
31490
31491 2005-04-04 Jay Belanger <belanger@truman.edu>
31492
31493 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
31494 (math-read-subscripts): New variable.
31495 (math-read-preprocess-string): Process subscripts.
31496
31497 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
31498
31499 * comint.el (comint-prompt-read-only): Doc fix.
31500
31501 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
31502 `-1'. Doc fix.
31503
31504 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
31505
31506 * textmodes/org.el (org-insert-mode-line-in-empty-file):
31507 Change default value to nil.
31508
31509 2005-04-04 Lute Kamstra <lute@gnu.org>
31510
31511 * autorevert.el (auto-revert-mode): Specify :group.
31512 * battery.el (display-battery-mode): Specify :group.
31513 * diff-mode.el (diff-minor-mode): Specify :group.
31514 * font-core.el (font-lock-mode): Specify :group.
31515 * hl-line.el (hl-line-mode): Specify :group.
31516 * iimage.el (iimage): New customization group.
31517 (iimage-mode): Specify :group.
31518 * longlines.el (longlines-mode): Specify :group.
31519 * master.el: Don't require easy-mmode.
31520 (master): New customization group.
31521 (master-mode): Specify :group.
31522 * msb.el (msb-mode): Specify :group.
31523 * reveal.el (reveal-mode): Specify :group.
31524 * simple.el (next-error-follow-minor-mode): Specify :group.
31525 * smerge-mode.el (smerge-mode): Specify :group.
31526 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
31527 * emulation/cua-base.el (cua-mode): Specify :group.
31528 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
31529 * language/thai-util.el (thai-auto-composition-mode)
31530 (thai-word-mode): Specify :group.
31531 * mail/supercite.el (sc-minor-mode): Specify :group.
31532 * progmodes/cwarn.el (cwarn-mode): Specify :group.
31533 * progmodes/flymake.el (flymake-mode): Specify :group.
31534 * progmodes/glasses.el (glasses-mode): Specify :group.
31535 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
31536 * textmodes/enriched.el (enriched-mode): Specify :group.
31537 * textmodes/refill.el (refill-mode): Specify :group.
31538
31539 * add-log.el (change-log-font-lock-keywords): Names in
31540 parenthesized lists can contain spaces.
31541
31542 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
31543
31544 * startup.el (fancy-splash-text): Shorten default text of
31545 "Emacs Tutorial" line. Also, if the current language env
31546 indicates an available tutorial file other than TUTORIAL,
31547 extract its title and append it to the line in parentheses.
31548 (fancy-splash-insert): If arg is a thunk, funcall it.
31549
31550 2005-04-04 Jay Belanger <belanger@truman.edu>
31551
31552 * calc.el (calc-language-alist): Add tags to customization type.
31553
31554 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
31555
31556 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
31557 Doc fix.
31558
31559 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
31560
31561 * add-log.el (change-log-font-lock-keywords): The manual
31562 describing a Change Log entry, says: (...) "Aside from these
31563 header lines, every line in the change log starts with a space or
31564 a tab.". The font-lock was not highlighting lines started with
31565 spaces, added support for it.
31566
31567 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
31568
31569 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
31570 (bibtex-generate-url-list): Update docstring accordingly. Put the
31571 complex example in the docstring.
31572 (bibtex-font-lock-url): Use pop.
31573
31574 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
31575
31576 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
31577
31578 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
31579
31580 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
31581
31582 * filesets.el (filesets-set-default): Doc fix.
31583
31584 2005-04-03 Lute Kamstra <lute@gnu.org>
31585
31586 * generic.el (define-generic-mode): Add argument to specify
31587 keywords for defcustom.
31588 (default-generic-mode): Specify :group.
31589
31590 * generic-x.el: Specify :group for all generic modes.
31591
31592 * desktop.el (desktop-no-desktop-file-hook)
31593 (desktop-after-read-hook): Doc fix.
31594
31595 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
31596
31597 * simple.el (visible-mode): Use explicit :group keyword.
31598 This changes the group of `visible-mode-hook' from paren-blinking
31599 to editing-basics.
31600
31601 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
31602
31603 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
31604 mailbox specifications as well as URLs.
31605 (rmail-insert-inbox-text): Remove unused conditional branches.
31606
31607 2005-04-01 Jay Belanger <belanger@truman.edu>
31608
31609 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
31610 (calc-gnuplot-print-command): Move definitions to calc.el.
31611
31612 * calc/calc-embed.el (calc-embedded-announce-formula)
31613 (calc-embedded-open-formula, calc-embedded-close-formula)
31614 (calc-embedded-open-word, calc-embedded-close-word)
31615 (calc-embedded-open-plain, calc-embedded-close-plain)
31616 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
31617 (calc-embedded-open-mode, calc-embedded-close-mode):
31618 Move definitions to calc.el.
31619
31620 * calc/calc.el (calc-settings-file, calc-language-alist):
31621 Make customizable.
31622 (calc-embedded-announce-formula, calc-embedded-open-formula)
31623 (calc-embedded-close-formula, calc-embedded-open-word)
31624 (calc-embedded-close-word, calc-embedded-open-plain)
31625 (calc-embedded-close-plain, calc-embedded-open-new-formula)
31626 (calc-embedded-close-new-formula, calc-embedded-open-mode)
31627 (calc-embedded-close-mode, calc-gnuplot-name)
31628 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
31629 from other files and make customizable.
31630
31631 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
31632
31633 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
31634 Use buffer-live-p.
31635 (cvs-mode-run): Don't call cvs-update-header here.
31636 (cvs-run-process): Call cvs-update-header.
31637 Use process properties for cvs-postprocess and cvs-buffer so that
31638 the sentinel can behave better if the temp buffer is killed.
31639 Use a pipe rather than a tty, to better handle unexpected prompts.
31640 (cvs-sentinel): Rewrite. Call cvs-update-header.
31641
31642 2005-04-01 Andre Spiegel <spiegel@gnu.org>
31643
31644 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
31645 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
31646
31647 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
31648
31649 * generic.el (define-generic-mode): Add indentation rule.
31650
31651 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
31652
31653 * files.el (mode-require-final-newline): Make Custom correctly
31654 report a nil value and allow to set it to nil via Custom.
31655 Doc fix.
31656
31657 2005-04-01 Kenichi Handa <handa@m17n.org>
31658
31659 * international/characters.el: Enable the correct case setting for
31660 dotless-i and dotted-I.
31661
31662 2005-04-01 Kim F. Storm <storm@cua.dk>
31663
31664 * ido.el (ido-file-internal): Fall back to non-ido command if
31665 initial directory is on slow ftp (or tramp) host.
31666
31667 2005-03-31 Richard M. Stallman <rms@gnu.org>
31668
31669 * emacs-lisp/autoload.el (make-autoload):
31670 Handle define-global-minor-mode.
31671
31672 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
31673 Rename from easy-mmode-define-global-mode.
31674 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
31675
31676 * progmodes/scheme.el (scheme-mode-syntax-table):
31677 Update syntax of | and # for two-character comment syntax.
31678
31679 2005-03-31 Lute Kamstra <lute@gnu.org>
31680
31681 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
31682 (define-minor-mode): Call custom-current-group at load-time.
31683
31684 * generic.el (define-generic-mode): Add debug declaration.
31685 Add defcustom for the mode hook.
31686 (generic-mode-internal): Use run-mode-hooks.
31687
31688 2005-03-31 Kim F. Storm <storm@cua.dk>
31689
31690 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
31691 (mouse-fixup-help-message): New defun called by show_help_echo
31692 to fixup mouse-2 prefix in help messages when applicable.
31693
31694 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
31695
31696 2005-03-31 Kenichi Handa <handa@m17n.org>
31697
31698 * language/thai-word.el (thai-find-word-ends): Pay attention to
31699 the case that we reach the end of buffer.
31700
31701 * textmodes/fill.el (fill-text-properties-at): New function.
31702 (fill-newline): Use fill-text-properties-at instead of
31703 text-properties-at.
31704
31705 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
31706
31707 * textmodes/tex-mode.el (tex-start-tex): Use shell-quote-argument,
31708 not comint-quote-filename.
31709
31710 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
31711
31712 * help-fns.el (help-with-tutorial): Revert last change.
31713
31714 2005-03-31 Kim F. Storm <storm@cua.dk>
31715
31716 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
31717
31718 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
31719
31720 * calendar/cal-china.el: Update reference to "Calendrical
31721 Calculations" book; there's a new edition.
31722 * calendar/cal-coptic.el: Likewise.
31723 * calendar/cal-french.el: Likewise.
31724 * calendar/cal-hebrew.el: Likewise.
31725 * calendar/cal-islam.el: Likewise.
31726 * calendar/cal-iso.el: Likewise.
31727 * calendar/cal-julian.el: Likewise.
31728 * calendar/cal-mayan.el: Likewise.
31729 * calendar/cal-persia.el: Likewise.
31730 * calendar/calendar.el: Likewise.
31731 * calendar/holidays.el: Likewise.
31732 * calendar/lunar.el: Likewise.
31733 * calendar/solar.el: Likewise.
31734
31735 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
31736 white space from doc string.
31737
31738 2005-03-30 Jay Belanger <belanger@truman.edu>
31739
31740 * calc/calc-help.el (calc-full-help): Remove email address.
31741
31742 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
31743
31744 * help-fns.el (help-with-tutorial): Delete title line.
31745
31746 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
31747
31748 * calendar/cal-x.el (calendar-one-frame-setup)
31749 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
31750 rather than `symbol' for set-window-dedicated-p.
31751
31752 * calendar/appt.el (appt-buffer-name): Make it a constant.
31753 (appt-add): Doc fix.
31754
31755 * filesets.el (filesets-menu-path, filesets-menu-before)
31756 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
31757 (filesets-menu-cache-file): Use directory ~/.emacs.d.
31758 (filesets-add-submenu): Delete and use add-submenu instead.
31759
31760 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
31761
31762 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
31763 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
31764 (org-diary-default-entry): New function.
31765 (org-get-entries-from-diary): Better parsing of diary entries.
31766 (org-agenda-check-no-diary): New function.
31767 ("diary-lib"): Advice to function `add-to-diary-list', to allow
31768 linking to diary entries.
31769 (org-agenda-execute-calendar-command): New function.
31770 (org-agenda): Improve visible section in window.
31771 Use `org-fit-agenda-window'.
31772 (org-fit-agenda-window): New option.
31773 (org-move-subtree-down): Better handling of empty lines
31774 at end of subtree.
31775 (org-cycle): Numeric prefix is interpreted now as show-subtree N
31776 levels up.
31777 (org-fontify-done-headline): New option.
31778 (org-headline-done-face): New face.
31779 (org-set-font-lock-defaults): Use `org-headline-done-face'.
31780 (org-table-copy-down): Rename from `org-table-copy-from-above'.
31781 When current field is non-empty, it is copied to next row.
31782 (org-table-copy-from-above): Fix bug which made it
31783 impossible to copy fields containing only a single non-white character.
31784
31785 2005-03-30 Kim F. Storm <storm@cua.dk>
31786
31787 * kmacro.el (kmacro-end-macro): Isearch may store this command
31788 into the macro -- so ignore it when executing keyboard macro.
31789
31790 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
31791
31792 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
31793
31794 2005-03-29 Kenichi Handa <handa@m17n.org>
31795
31796 * language/thai.el ("Thai"): Set setup-function and exit-function
31797 for Thai language environment.
31798
31799 * language/thai-util.el: Require thai-word.
31800 (thai-word-mode-map): New variable.
31801 (thai-word-mode): New minor mode.
31802 (setup-thai-language-environment-internal): New function.
31803 (exit-thai-language-environment-internal): New function.
31804
31805 * language/thai-word.el (thai-word-table): Declare it by defvar,
31806 use dolist to initialize it.
31807 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
31808 (thai-fill-find-break-point): New functions.
31809
31810 2005-03-29 Richard M. Stallman <rms@gnu.org>
31811
31812 * simple.el (idle-update-delay): Move definition up.
31813 (set-mark): Doc fix.
31814
31815 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
31816
31817 * longlines.el: New file.
31818
31819 * simple.el (buffer-substring-filters): New variable.
31820 (filter-buffer-substring): New function.
31821 (kill-region, copy-region-as-kill): Use it.
31822
31823 * register.el (copy-to-register, append-to-register)
31824 (prepend-to-register): Use filter-buffer-substring.
31825
31826 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
31827
31828 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
31829 (gud-filter-pending-text): Move in front of gdb.
31830 (gud-overlay-arrow-position): New variable.
31831 (gud-sentinel, gud-display-line): Use it in place of
31832 overlay-arrow-position.
31833
31834 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
31835
31836 * progmodes/fortran.el (fortran-if-indent): Doc fix.
31837 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
31838 (fortran-font-lock-keywords-4): New variable.
31839 (fortran-blocks-re, fortran-end-block-re)
31840 (fortran-start-block-re): New constants, for hideshow.
31841 (hs-special-modes-alist): Add a Fortran entry.
31842 (fortran-mode-map): Bind fortran-end-of-block,
31843 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
31844 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
31845 (fortran-looking-at-if-then, fortran-end-of-block)
31846 (fortran-beginning-of-block): New functions, for hideshow.
31847
31848 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
31849 Doc fix. Tweak regexp.
31850 (f90-beginning-of-block): Push mark first.
31851
31852 2005-03-29 Jay Belanger <belanger@truman.edu>
31853
31854 * calc/calc.el: Update copyright date.
31855 (calc-version): Increase to 2.1.
31856 (calc-version-date): Remove.
31857
31858 * calc/calc-help.el: Update copyright date.
31859 (calc-full-help): Remove reference to calc-version-date.
31860 Update copyright date.
31861
31862 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
31863
31864 * vc.el (vc-do-command): Use a pipe for async processes, so password
31865 prompts don't show up at places where the user can't reply.
31866
31867 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
31868
31869 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
31870 on the file name we pass to the inferior shell.
31871
31872 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
31873
31874 * progmodes/which-func.el (which-function): Be robust in the face of an
31875 imenu--make-index-alist failure.
31876
31877 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
31878
31879 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
31880
31881 * progmodes/python.el (python-preoutput-filter): Fix last change.
31882
31883 2005-03-29 Lute Kamstra <lute@gnu.org>
31884
31885 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
31886 functions and compiled macros.
31887 (debug-convert-byte-code): Handle macros too.
31888 (debug-on-entry-1): Don't signal an error when trying to clear a
31889 function that is not set to debug on entry.
31890
31891 2005-03-29 Jay Belanger <belanger@truman.edu>
31892
31893 * calc/calc-lang.el: Add functions to math-function-table
31894 properties of tex and math.
31895
31896 2005-03-29 Kenichi Handa <handa@m17n.org>
31897
31898 * ps-mule.el (ps-mule-plot-string): Translate characters by
31899 ps-print-translation-table.
31900 (ps-mule-begin-job): Call find-charset-region/string with
31901 ps-print-translation-table.
31902 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
31903
31904 * ps-print.el (ps-print-translation-table): New variable.
31905 (ps-plot-region): Translate characters by ps-print-translation-table.
31906
31907 2005-03-29 Juri Linkov <juri@jurta.org>
31908
31909 * simple.el (next-error-highlight-timer): New variable.
31910
31911 * progmodes/compile.el (compilation-goto-locus):
31912 Use `next-error-highlight-timer' instead of `sit-for'.
31913
31914 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
31915
31916 * mail/supercite.el (sc-mail-field): Use assoc-string.
31917 (sc-get-address): Simplify regexps.
31918
31919 * files.el (minibuffer-with-setup-hook): New macro.
31920 (find-file-read-args): Use it to avoid let-binding
31921 minibuffer-with-setup-hook (which breaks turning on/off
31922 file-name-shadow-mode while in the prompt).
31923
31924 * complete.el (PC-read-include-file-name-internal):
31925 Use test-completion.
31926
31927 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
31928
31929 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
31930
31931 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
31932
31933 * window.el (window-buffer-height): Use count-screen-lines.
31934
31935 * progmodes/python.el (python-preoutput-leftover): New var.
31936 (python-preoutput-filter): Use it.
31937 (python-send-receive): Loop until all the result has been received.
31938
31939 2005-03-28 Juri Linkov <juri@jurta.org>
31940
31941 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
31942
31943 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
31944 "Recover Crashed Session".
31945 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
31946 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
31947 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
31948 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
31949 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
31950 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
31951 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
31952 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
31953
31954 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
31955 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
31956 Ediff Sessions", "Toggle use of separate control buffer frame",
31957 "Use separate frame for Ediff control buffer".
31958
31959 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
31960 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
31961 "Rename Bookmark", "Delete Bookmark".
31962
31963 * info.el (Info-mode-menu): Remove ellipsis from "Index".
31964 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
31965 Add `:active Info-index-alternatives' to "Next Matching Item".
31966
31967 * wdired.el (wdired-change-to-wdired-mode):
31968 Mention `wdired-abort-changes' key in the initial message.
31969
31970 * international/mule.el (auto-coding-alist): Associate non-ascii
31971 image filename extensions with `no-conversion'.
31972
31973 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
31974
31975 * international/iso-acc.el:
31976 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
31977
31978 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
31979
31980 * textmodes/sgml-mode.el (html-mode): Doc update.
31981
31982 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
31983
31984 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
31985
31986 * term.el (term-move-columns): Fix face after extending a line.
31987 (term-insert-spaces): Likewise.
31988 (term-reset-terminal): Fix off by one error.
31989
31990 2005-03-26 Eli Zaretskii <eliz@gnu.org>
31991
31992 * international/mule.el (auto-coding-alist): Add .xpi files.
31993
31994 * files.el (auto-mode-alist): Add .xpi files.
31995
31996 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
31997
31998 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
31999
32000 2005-03-26 Eli Zaretskii <eliz@gnu.org>
32001
32002 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
32003
32004 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
32005
32006 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
32007 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
32008
32009 * calendar/cal-move.el (calendar-beginning-of-year): Move the
32010 cursor to Jan 1 when needed.
32011 (calendar-end-of-year): Fix -/+ typo.
32012 Reported by Chong Yidong <cyd@stupidchicken.com>.
32013
32014 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
32015
32016 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
32017
32018 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
32019 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
32020
32021 2005-03-25 Richard M. Stallman <rms@gnu.org>
32022
32023 * filesets.el (filesets-init): Add autoload.
32024
32025 * mail/mailalias.el (mail-directory): Doc fix.
32026
32027 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
32028
32029 * mail/mailalias.el (mail-directory-process): Do nothing if
32030 mail-directory-process is an atom.
32031 (mail-get-names): Ignore mail-directory-names if it is an atom.
32032 (mail-directory-process defvar): Doc fix.
32033 (mail-names): Doc fix.
32034
32035 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se> (tiny change)
32036
32037 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
32038
32039 2005-03-26 Kenichi Handa <handa@m17n.org>
32040
32041 * international/mule-util.el (detect-coding-with-priority):
32042 Call update-coding-systems-internal before detect-coding-region.
32043
32044 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
32045
32046 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
32047 (gdb-frames-mode-map): Add follow-link property.
32048
32049 2005-03-25 Jay Belanger <belanger@truman.edu>
32050
32051 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
32052 for variables.
32053
32054 2005-03-25 Juri Linkov <juri@jurta.org>
32055
32056 * image-mode.el: Optimize image filename extension regexps in
32057 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
32058 in `auto-mode-alist'.
32059 (image-mode): Add `image-toggle-display-text' to local hook
32060 `change-major-mode-hook'. Display the image as an image by
32061 default. Set `cursor-type' and `truncate-lines' if the image
32062 is already displayed. Take into account the current mode (image
32063 or text) in message.
32064 (image-minor-mode): New minor mode.
32065 (image-mode-maybe, image-toggle-display-text): New functions.
32066 (image-toggle-display): Use called-interactively-p.
32067 Let-bind `inhibit-read-only' to t.
32068
32069 * image-mode.el (image-minor-mode): Set `cursor-type' and
32070 `truncate-lines' if the image is already displayed. Add turning
32071 image-minor-mode off to `change-major-mode-hook'. Add message.
32072 Call `image-toggle-display-text' after turning image-minor-mode off.
32073
32074 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
32075
32076 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
32077 Terminal.app, use utf-8.
32078 (set-display-table-and-terminal-coding-system): Add coding-system arg.
32079 (set-locale-environment): Use it.
32080
32081 * term/xterm.el: Undo last change, better done in mule-cmds.el.
32082
32083 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
32084
32085 * progmodes/python.el (python-close-block-statement-p)
32086 (python-outdent-p, python-current-defun): Use symbol-end.
32087
32088 2005-03-25 Karl Chen <quarl@cs.berkeley.edu>
32089
32090 * files.el (save-some-buffers): Doc fix.
32091
32092 2005-03-25 Werner Lemberg <wl@gnu.org>
32093
32094 * complete.el, thumbs.el: Replace `legal' with `valid'.
32095 * calendar/calendar.el: Replace `legal' with `valid'.
32096 * emacs-lisp/advice.el: Replace `legal' with `valid'.
32097 * mail/supercite.el: Replace `legal' with `valid'.
32098 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
32099 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
32100 Replace `legal' with `valid'.
32101 * textmodes/reftex-vars.el, textmodes/reftex.el:
32102 Replace `legal' with `valid'.
32103
32104 2005-03-25 Werner Lemberg <wl@gnu.org>
32105
32106 * calc/calc-forms.el, calc/calc-sel.el
32107 * midnight.el, vc-cvs.el
32108 * emacs-lisp/cl-macs.el
32109 * emulation/vip.el
32110 * eshell/esh-io.el, eshell/esh-var.el
32111 * mail/supercite.el
32112 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
32113 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
32114 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
32115 * progmodes/sh-script.el, progmodes/xscheme.el
32116 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
32117 * textmodes/reftex-index.el, textmodes/reftex-parse.el
32118 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
32119 * textmodes/reftex.el, textmodes/org.el:
32120 Replace `illegal' with `invalid'.
32121
32122 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
32123
32124 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
32125 (flymake-find-buildfile, flymake-find-possible-master-files)
32126 (flymake-check-include, flymake-parse-line): Replace loops over the
32127 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
32128
32129 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
32130 Substitute file-name-as-directory in the rest of the file.
32131 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
32132 (flymake-replace-region): Remove unused arg `buffer'.
32133 (flymake-check-patch-master-file-buffer): Update calls to it.
32134 (flymake-add-err-info): Remove unused var `count'.
32135 (flymake-mode): Use define-minor-mode.
32136
32137 * progmodes/flymake.el: Use with-current-buffer.
32138 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
32139 flymake-replace-regexp-in-string, flymake-line-beginning-position)
32140 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
32141 Avoid testing for `xemacs'.
32142 (flymake-nop): Move.
32143 (flymake-region-has-flymake-overlays): Return the computed value.
32144 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
32145 Remove unused var `endline'.
32146 (flymake-get-line-count): Remove unused function.
32147 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
32148
32149 * emulation/vi.el:
32150 * generic.el:
32151 * hilit-chg.el (global-highlight-changes):
32152 * hi-lock.el (hi-lock-mode):
32153 * follow.el: find-file-hooks -> find-file-hook.
32154
32155 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
32156
32157 2005-03-24 Juri Linkov <juri@jurta.org>
32158
32159 * dired.el (dired-mode-map): Add menu item "Compare directories"
32160 for dired-compare-directories.
32161
32162 * dired-aux.el (dired-compare-directories): Add autoload cookie.
32163 Doc fix. Replace `read-file-name' with `read-directory-name'.
32164
32165 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
32166
32167 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
32168
32169 2005-03-24 Jay Belanger <belanger@truman.edu>
32170
32171 * calc/calc-embed.el (calc-embedded-mode-change): Save all
32172 relevant mode settings in calc-embedded-original-modes when modes
32173 are permanently changed.
32174
32175 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
32176
32177 * autoinsert.el: find-file-hooks -> find-file-hook.
32178
32179 2005-03-24 Lute Kamstra <lute@gnu.org>
32180
32181 * generic.el (generic-font-lock-defaults): Make it obsolete.
32182 (generic-font-lock-keywords): New variable to replace
32183 generic-font-lock-defaults.
32184 (generic-mode-set-font-lock): Delete it.
32185 (generic-mode-internal): Don't call generic-mode-set-font-lock.
32186 (generic-bracket-support): Add docstring.
32187
32188 * generic-x.el: Rename generic-font-lock-defaults to
32189 generic-font-lock-keywords throughout.
32190 (mailagent-rules-setup-function): Delete it.
32191 (mailagent-rules-generic-mode): Use anonymous function instead.
32192 (show-tabs-generic-mode-font-lock-defaults-1)
32193 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
32194 Quote faces.
32195 (show-tabs-tab-face, show-tabs-space-face): Specify background,
32196 not foreground.
32197
32198 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
32199 Recognize define-generic-mode.
32200
32201 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
32202
32203 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
32204 if there's no completion table.
32205
32206 2005-03-23 Miles Bader <miles@gnu.org>
32207
32208 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
32209 Remove tty-specific variants, as they're no longer needed.
32210
32211 2005-03-23 Lute Kamstra <lute@gnu.org>
32212
32213 * generic-x.el: Code cleanup: make args constant whenever possible.
32214 (installshield-statement-keyword-list)
32215 (installshield-system-functions-list)
32216 (installshield-system-variables-list, installshield-types-list)
32217 (installshield-funarg-constants-list): Make them constants.
32218
32219 * generic.el (generic-make-keywords-list): Add autoload cookie.
32220
32221 * calendar/time-date.el: Add comment on time value formats.
32222 Don't require parse-time.
32223 (with-decoded-time-value): New macro.
32224 (encode-time-value): New function.
32225 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
32226 (days-to-time): Return a valid time value when arg is huge.
32227 (time-since): Use time-subtract.
32228 (time-to-number-of-days): Use time-to-seconds.
32229
32230 2005-03-23 David Ponce <david@dponce.com>
32231
32232 * recentf.el (recentf-keep): New option.
32233 (recentf-menu-action): Default to `find-file'.
32234 (recentf-keep-non-readable-files-flag)
32235 (recentf-keep-non-readable-files-p)
32236 (recentf-file-readable-p, recentf-find-file)
32237 (recentf-cleanup-remote): Remove.
32238 (recentf-include-p): More robust.
32239 (recentf-keep-p): New function.
32240 (recentf-remove-if-non-kept): Rename from
32241 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
32242 All callers updated.
32243 (recentf-menu-items-for-commands): Fix help string.
32244 (recentf-track-closed-file): Update. Doc fix.
32245 (recentf-cleanup): Update. Count removed files. Doc fix.
32246
32247 2005-03-23 Kim F. Storm <storm@cua.dk>
32248
32249 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
32250 Don't inherit from fringe face (now happens automatically).
32251
32252 2005-03-22 Kim F. Storm <storm@cua.dk>
32253
32254 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
32255 position values.
32256
32257 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
32258
32259 * menu-bar.el (showhide-date-time): Remove.
32260 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
32261 (menu-bar-make-mm-toggle): Simplify.
32262
32263 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
32264
32265 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
32266 Accept qualified variable and function names.
32267
32268 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
32269
32270 * bindings.el (completion-ignored-extensions):
32271 Remove ".lis" for `vax-vms'.
32272
32273 2005-03-22 Andreas Schwab <schwab@suse.de>
32274
32275 * generic-x.el: Revert last change.
32276 * ldefs-boot.el: Update.
32277
32278 2005-03-22 Jay Belanger <belanger@truman.edu>
32279
32280 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
32281 (calc-embedded-save-original-modes)
32282 (calc-embedded-restore-original-modes): New functions.
32283 (calc-do-embedded): Save original modes when entering embedded mode
32284 and restore when leaving embedded mode.
32285 (calc-embedded-modes-change): Change the value of
32286 calc-embedded-original-modes to reflect permanent changes.
32287
32288 2005-03-22 Lute Kamstra <lute@gnu.org>
32289
32290 * generic-x.el: Require generic again.
32291
32292 2005-03-22 Miles Bader <miles@gnu.org>
32293
32294 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
32295 Tweak details to look good on both ttys and bitmap displays, light
32296 or dark background, etc.
32297
32298 2005-03-21 Kim F. Storm <storm@cua.dk>
32299
32300 * tooltip.el (tooltip-show-help-function): Check car and cdr of
32301 mouse position.
32302
32303 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
32304
32305 * icomplete.el: Don't forcibly turn on the mode upon load.
32306 (icomplete-mode): Use define-minor-mode.
32307 (icomplete-eoinput): Default to nil.
32308 (icomplete-minibuffer-setup): Remove autoload.
32309 (icomplete-tidy): Simplify.
32310 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
32311 in the initial state or if the user has modified the field.
32312 Fix handling of icomplete-max-delay-chars.
32313 Remove code that handles the oddball case where
32314 minibuffer-completion-table is an integer.
32315 Wrap icomplete-completions in while-no-input in case building
32316 completions takes more time than expected.
32317 (icomplete-completions): Simplify.
32318
32319 2005-03-21 Richard M. Stallman <rms@gnu.org>
32320
32321 * jka-compr.el (jka-compr-really-do-compress):
32322 Make variable buffer-local.
32323
32324 * image-mode.el: Handle .xpm files too.
32325 (image-toggle-display): Preserve modification flag.
32326
32327 * help.el (where-is): Don't mention aliases with no key bindings.
32328
32329 2005-03-21 Lute Kamstra <lute@gnu.org>
32330
32331 * generic.el: Fix commentary section. Don't require cl for
32332 compilation.
32333 (generic-mode-list): Add autoload cookie.
32334 (generic-use-find-file-hook, generic-lines-to-scan)
32335 (generic-find-file-regexp, generic-ignore-files-regexp)
32336 (generic-mode, generic-mode-find-file-hook)
32337 (generic-mode-ini-file-find-file-hook): Fix docstrings.
32338 (define-generic-mode): Make it a defmacro. Fix docstring.
32339 (generic-mode-internal): Code cleanup. Add autoload cookie.
32340 (generic-mode-set-comments): Code cleanup.
32341 * generic-x.el: Don't prevent compilation. Don't require generic.
32342 Follow coding conventions. Minor code cleanup.
32343 (etc-fstab-generic-mode): Add some keywords.
32344 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
32345 define-generic-mode like a function declaration.
32346
32347 2005-03-21 Jay Belanger <belanger@truman.edu>
32348
32349 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
32350 changing modes.
32351
32352 2005-03-21 Sam Steingold <sds@gnu.org>
32353
32354 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
32355
32356 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
32357
32358 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
32359 Add underscore to "f$ lexicals" regexp.
32360
32361 2005-03-20 Juri Linkov <juri@jurta.org>
32362
32363 * subr.el (progress-reporter-do-update): When `min-value' is equal
32364 to `max-value', set `percentage' to 0 and prevent division by zero.
32365
32366 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
32367
32368 Sync with Tramp 2.0.48.
32369
32370 * net/tramp.el (all): Change all addresses to .gnu.org.
32371 (tramp-append-tramp-buffers): New defun.
32372 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
32373 Catch `dont-send' signal.
32374 (tramp-set-auto-save-file-modes): Set always permissions, because
32375 there might be an old auto-saved file belonging to another
32376 original file. This could be a security threat. Reported by
32377 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
32378 Check for Emacs 21.3.50 removed.
32379
32380 * net/tramp-smb.el (all): Remove debug construct for
32381 `with-parsed-tramp-file-name'.
32382 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
32383 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
32384 No error message if DIRECTORY or FILENAME doesn't exist.
32385 (tramp-smb-open-connection): Check existence of
32386 `tramp-smb-program'.
32387
32388 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
32389
32390 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
32391 Properly handle the case where the `m' or `s' command's argument is not
32392 yet terminated.
32393 (perl-indent-new-calculate): New function.
32394 (perl-indent-line): Use it.
32395
32396 2005-03-20 Miles Bader <miles@gnu.org>
32397
32398 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
32399 in text-mode too. Change to new face names.
32400 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
32401 Add `:weight bold' attribute.
32402 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
32403
32404 2005-03-19 Juri Linkov <juri@jurta.org>
32405
32406 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
32407
32408 * international/mule.el (auto-coding-alist): Sync with
32409 `auto-mode-alist' by adding upper case archive file extensions
32410 and adding ear/war to jar extension.
32411
32412 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
32413
32414 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
32415 running, restart it.
32416
32417 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
32418
32419 * finder.el (finder-current-item): Throw an error on an empty line.
32420
32421 * man.el (Man-follow-manual-reference): If current-word returns
32422 nil, use "".
32423
32424 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
32425
32426 * simple.el (goto-line): Doc fix.
32427
32428 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
32429
32430 * files.el (save-buffer): Doc fix.
32431
32432 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
32433
32434 * recentf.el (recentf-cleanup-remote): New variable.
32435 (recentf-cleanup): Use it to conditionally check availability of
32436 remote files.
32437
32438 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
32439
32440 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
32441 function names.
32442
32443 2005-03-19 Eli Zaretskii <eliz@gnu.org>
32444
32445 * language/thai-word.el: New file.
32446
32447 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
32448
32449 * files.el (backup-buffer): If the file's directory is not
32450 writable, use copy instead of move to backup the file.
32451
32452 2005-03-19 Eli Zaretskii <eliz@gnu.org>
32453
32454 * obsolete/keyswap.el: Moved to obsolete/ from term/.
32455
32456 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
32457
32458 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
32459 Use functionp instead of symbolp and fboundp. Reported by Drkm
32460 <darkman_spam@yahoo.fr>.
32461 (ps-print-version): New version 6.6.6.
32462
32463 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
32464
32465 * textmodes/table.el (table--line-column-position): New idiom.
32466 (table--row-column-insertion-point-p): New function to test
32467 validity of row and column insertion operation at a location.
32468 (table-global-menu, table-cell-menu): Use above functions for
32469 deterministic test operation.
32470 (table--editable-cell-p): Behave in deterministic fashion.
32471
32472 2005-03-18 Juri Linkov <juri@jurta.org>
32473
32474 * isearch.el (isearch-lazy-highlight-new-loop):
32475 Make arguments beg and end optional.
32476 (isearch-update): Remove optional arguments nil from
32477 isearch-lazy-highlight-new-loop.
32478 (isearch-lazy-highlight-search): Let-bind case-fold-search to
32479 isearch-lazy-highlight-case-fold-search instead of
32480 isearch-case-fold-search, and let-bind isearch-regexp to
32481 isearch-lazy-highlight-regexp.
32482 Use isearch-lazy-highlight-last-string instead of isearch-string.
32483
32484 * replace.el (perform-replace): Remove bindings of global
32485 variables isearch-string, isearch-regexp, isearch-case-fold-search.
32486 Add three new arguments to `replace-highlight'.
32487 (replace-highlight): Add arguments string, regexp, case-fold.
32488 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
32489 to allow isearch-lazy-highlight-new-loop to use these values
32490 to set corresponding isearch-lazy-highlight-* internal
32491 variables whose values lazy highlighting will use regardless of
32492 changes to global variables isearch-string, isearch-regexp,
32493 isearch-case-fold-search during lazy highlighting loop.
32494 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
32495 to `lazy-highlight-cleanup'.
32496
32497 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
32498 (ispell-highlight-face): Set default face to `isearch' when
32499 lazy highlighting is enabled.
32500 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
32501 priority to 1. Add lazy highlighting.
32502 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
32503 from `isearch-dehighlight'.
32504
32505 2005-03-18 David Ponce <david@dponce.com>
32506
32507 * files.el (hack-local-variables): Do a case-insensitive search
32508 for End.
32509
32510 2005-03-18 Juri Linkov <juri@jurta.org>
32511
32512 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
32513 `isearch-lazy-highlight-cleanup', add alias to old name and
32514 declare obsolete. Add release numbers to other obsolete vars.
32515 (isearch-done, isearch-lazy-highlight-new-loop):
32516 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
32517 (lazy-highlight-cleanup) <variable>: Doc fix.
32518 (isearch-lazy-highlight-update): Rename obsolete
32519 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
32520
32521 2005-03-18 Kenichi Handa <handa@m17n.org>
32522
32523 * language/thai-util.el: Fix categorization of Thai characters in
32524 thai-category-table.
32525 (thai-composition-pattern): Adjust it for the above change.
32526 (thai-self-insert-command, thai-compose-syllable): New functions.
32527 (thai-compose-region): Use thai-compose-syllable.
32528 (thai-compose-string): Likewise.
32529 (thai-composition-function): Likewise.
32530 (thai-auto-composition): New function.
32531 (thai-auto-composition-mode): New minor mode.
32532
32533 * language/thai.el: Fix patterns to be registered in
32534 composition-function-table.
32535
32536 * international/quail.el (quail-input-method): Locally bind
32537 inhibit-modification-hooks to t.
32538
32539 2005-03-17 Richard M. Stallman <rms@gnu.org>
32540
32541 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
32542 (perl-mode): Use run-mode-hooks.
32543
32544 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
32545 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
32546 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
32547
32548 * mail/sendmail.el (sendmail-send-it): Reenable the code
32549 to compute resend-to-address and use it.
32550
32551 * tar-mode.el (tar-mode): Turn off undo unconditionally.
32552
32553 * image-mode.el: New file.
32554
32555 * image.el (insert-sliced-image): Add autoload cookie.
32556
32557 * font-lock.el (font-lock-lines-before): New user option.
32558 (font-lock-after-change-function): Obey it.
32559
32560 * bindings.el (esc-map): Make M-g a prefix.
32561 Bind M-g g and M-g M-g to goto-line.
32562
32563 * faces.el (face-id): Doc fix.
32564
32565 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
32566
32567 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
32568 (rmail-show-message): Use rmail-unknown-mail-followup-to.
32569 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
32570
32571 * mail/sendmail.el (mail-yank-ignored-headers)
32572 (mail-font-lock-keywords, mail-mode-fill-paragraph):
32573 Add Mail-Followup-To and Mail-Reply-To headers.
32574 (mail-citation-hook): Add autoload cookie.
32575 (mail-mode): Doc fix.
32576 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
32577 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
32578 (mail-mode-fill-paragraph): Handle those headers.
32579 (mail-mailing-lists): New variable.
32580 (mail-mail-reply-to, mail-mail-followup-to): New functions.
32581
32582 2005-03-17 Juri Linkov <juri@jurta.org>
32583
32584 * isearch.el (isearch-fallback): Check for `(car previous)'
32585 before calling `isearch-other-end-state'.
32586
32587 2005-03-17 Kim F. Storm <storm@cua.dk>
32588
32589 * simple.el (move-beginning-of-line): Move to beginning of buffer
32590 line, as well as beginning of screen line.
32591
32592 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
32593
32594 * calendar/diary-lib.el (mark-diary-entries): Use new optional
32595 argument REDRAW rather than calendar-redrawing variable.
32596 * calendar/calendar.el (calendar-redrawing): Delete.
32597 (redraw-calendar): Do not bind calendar-redrawing.
32598
32599 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
32600
32601 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
32602 diary-file buffer.
32603
32604 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
32605
32606 * help.el (describe-mode): Allow a :minor-mode-function property to
32607 specify a different minor mode toggle function than the variable.
32608 * simple.el (auto-fill-function):
32609 * subr.el (add-minor-mode): Use it.
32610
32611 2005-03-16 Kenichi Handa <handa@m17n.org>
32612
32613 * language/ethio-util.el (sera-being-called-by-w3): New variable.
32614 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
32615 (ethio-fidel-to-sera-buffer): Likewise.
32616
32617 2005-03-16 Juri Linkov <juri@jurta.org>
32618
32619 * emacs-lisp/find-func.el (find-function-regexp):
32620 Add defun-emitting macro `menu-bar-make-toggle'.
32621
32622 * isearch.el: Put `isearch-scroll' property to
32623 `split-window-horizontally'.
32624
32625 * info.el: Update error messages for `debug-ignored-errors'.
32626 (Info-isearch-search): Doc fix.
32627 (Info-find-node): Move up code to go into info buffer before
32628 recording the node to the history.
32629 (Info-fontify-node): Fontify titles only if the next line
32630 has two or more `*', `=', `-', `.'.
32631 Display "go to this node" for empty (match-string 3).
32632
32633 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32634
32635 * term/mac-win.el: Add mouse pointer shape constants.
32636
32637 2005-03-15 Kim F. Storm <storm@cua.dk>
32638
32639 * simple.el (move-beginning-of-line): Use vertical-motion.
32640
32641 2005-03-15 Juri Linkov <juri@jurta.org>
32642
32643 * isearch.el (isearch-error): New variable.
32644 (isearch-invalid-regexp, isearch-within-brackets): Remove.
32645 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
32646 (isearch-within-brackets-state): Remove.
32647 (isearch-case-fold-search-state, isearch-pop-fun-state):
32648 Decrease frame index.
32649 (isearch-mode, isearch-top-state, isearch-push-state)
32650 (isearch-edit-string, isearch-abort, isearch-search-and-update)
32651 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
32652 (isearch-search, isearch-lazy-highlight-new-loop):
32653 Replace `isearch-invalid-regexp' with `isearch-error'.
32654 Remove `isearch-within-brackets'.
32655 (isearch-search): Add `search-failed' handler to `condition-case'.
32656 (isearch-lazy-highlight-search): Add `condition-case' to catch
32657 errors and allow `isearch-lazy-highlight-update' to try
32658 highlighting from the beginning of the window.
32659 (isearch-repeat): Move up code to set isearch-wrapped to t
32660 before calling isearch-wrap-function.
32661
32662 * info.el (Info-isearch-initial-node): New internal variable.
32663 (Info-search): Signal an error in isearch mode when search leaves
32664 the initial node. Signal an error when `bound' is non-nil and
32665 nothing was found in the current subfile.
32666 (Info-isearch-search): Remove `condition-case'.
32667 (Info-isearch-wrap): Don't wrap when search failed during leaving
32668 the initial node. If `Info-isearch-search' is nil, wrap around
32669 the current node.
32670 (Info-isearch-start): New fun.
32671 (Info-mode): Add buffer-local hook `Info-isearch-start' to
32672 `isearch-mode-hook'.
32673
32674 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32675
32676 * simple.el (normal-erase-is-backspace): Set default to t if
32677 running on Mac.
32678
32679 * term/mac-win.el (function-key-map): Sync with x-win.el.
32680
32681 2005-03-15 Kenichi Handa <handa@m17n.org>
32682
32683 * international/mule-cmds.el (locale-language-names): Modify the
32684 format of elements and add more entries.
32685 (locale-preferred-coding-systems): Add more entries.
32686 (set-locale-environment): Adjust for the change of
32687 locale-language-names.
32688
32689 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
32690
32691 * pcvs.el (smerge-ediff): Remove bogus autoload.
32692
32693 2005-03-14 Lute Kamstra <lute@gnu.org>
32694
32695 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
32696 Ignore a `*' at the beginning of a line.
32697
32698 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
32699 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
32700 subr.el.
32701 (dont-compile, eval-when-compile, eval-and-compile): Use declare
32702 to specify indentation.
32703
32704 * generic.el (define-generic-mode): Let generic-mode-list be a
32705 list of strings; test membership with equal.
32706
32707 2005-03-14 Kim F. Storm <storm@cua.dk>
32708
32709 * simple.el (next-line, previous-line): Add optional try-vscroll
32710 arg to recognize interactive use. Pass it on to line-move.
32711 (line-move): Don't perform auto-window-vscroll when defining or
32712 executing keyboard macro to ensure consistent behavior.
32713
32714 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
32715
32716 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
32717
32718 2005-03-13 Lute Kamstra <lute@gnu.org>
32719
32720 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
32721 debugger-setup-buffer so that backtrace marks the frames set to
32722 debug-on-exit and we don't have to do it manually. Set an extra
32723 debug-on-exit for macro's.
32724 (debugger-setup-buffer): Don't mark the top frame manually.
32725
32726 2005-03-12 Lute Kamstra <lute@gnu.org>
32727
32728 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
32729 lisp-indent-function throughout.
32730 (with-no-warnings): Set lisp-indent-function property.
32731
32732 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
32733
32734 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
32735 Add entry for backslash.
32736
32737 2005-03-12 Juri Linkov <juri@jurta.org>
32738
32739 * info.el (Info-search): Four fixes for backward search.
32740
32741 2005-03-11 Jay Belanger <belanger@truman.edu>
32742
32743 * calc/calc.el (calc-language-alist): New variable.
32744 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
32745 (calc-embedded-find-modes): Use calc-language-alist instead of
32746 calc-embedded-language-alist.
32747
32748 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
32749
32750 * calendar/calendar.el (calendar-redrawing): New internal
32751 variable.
32752 (redraw-calendar): Remove bogus save-excursion from previous
32753 change. Bind calendar-redrawing to t for mark-diary-entries.
32754 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
32755 calendar if that is why we were called.
32756
32757 2005-03-11 Kenichi Handa <handa@m17n.org>
32758
32759 * international/mule.el (make-coding-system): Set property
32760 coding-system-define-form to nil.
32761 (define-coding-system-alias): Likewise.
32762
32763 2005-03-11 Kenichi Handa <handa@m17n.org>
32764
32765 These changes are suggested by Dave Love <fx@gnu.org>.
32766
32767 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
32768 coding: tag.
32769 (adaptive-fill-regexp): Add more bullets.
32770 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
32771 regexps.
32772
32773 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
32774
32775 * help.el (describe-mode): Properly handle non-trivial lighters.
32776 Don't ignore minor modes that are not listed in minor-mode-list.
32777
32778 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
32779 feature ON when the user requests to turn it OFF.
32780
32781 2005-03-10 Lute Kamstra <lute@gnu.org>
32782
32783 * emacs-lisp/debug.el (debug-entry-code): Delete it.
32784 (implement-debug-on-entry): New function to replace debug-entry-code.
32785 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
32786 second argument as the 2005-03-07 change makes it obsolete.
32787 (debug-on-entry, cancel-debug-on-entry): Update call to
32788 debug-on-entry-1.
32789 (debug, debugger-setup-buffer): Comment update.
32790 (debugger-frame-number): Update to work with implement-debug-on-entry.
32791
32792 2005-03-10 Jay Belanger <belanger@truman.edu>
32793
32794 * calc/calc-embed.el (math-ms-args): Declare it.
32795 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
32796 math-ms-args.
32797 (calc-embedded-subst): Use math-multi-subst-rec to substitute
32798 variables.
32799
32800 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
32801
32802 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
32803 Use message-box.
32804
32805 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
32806 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
32807 (tooltip-gud-tips): Simplify.
32808 (tooltip-gud-tips-p): Remove superfluous :set.
32809 (tooltip-gud-modes): Add fortran-mode.
32810 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
32811
32812 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
32813
32814 2005-03-09 Kim F. Storm <storm@cua.dk>
32815
32816 * play/animate.el (animate-place-char): Use forward-line instead
32817 of next-line to improve performance.
32818
32819 2005-03-09 Simon Josefsson <jas@extundo.com>
32820
32821 * net/browse-url.el (browse-url-default-browser): Doc fix.
32822
32823 2005-03-09 Miles Bader <miles@gnu.org>
32824
32825 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
32826 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
32827
32828 2005-03-09 Kenichi Handa <handa@m17n.org>
32829
32830 * international/latin-1.el: Set case and syntax for 255 only if
32831 set-case-syntax-set-multibyte is nil.
32832
32833 * textmodes/ispell.el (ispell-insert-word): New function.
32834 (ispell-word): Use ispell-insert-word to insert a new word.
32835 (ispell-process-line): Likewise.
32836 (ispell-complete-word): Likewise.
32837
32838 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
32839
32840 * calendar/calendar.el (redraw-calendar): Preserve point.
32841 Reported by Matt Hodges <MPHodges@member.fsf.org>.
32842 (calendar-week-start-day): Move after definition of
32843 redraw-calendar. Delete buffer test, since redraw-calendar has
32844 that now.
32845
32846 * calendar/diary-lib.el (mark-diary-entries): Only call
32847 redraw-calendar in the first of any recursive calls.
32848 Reported by Alan Shutko <ats@acm.org>.
32849
32850 2005-03-08 Juri Linkov <juri@jurta.org>
32851
32852 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
32853 (html-horizontal-rule, html-line, html-image, html-checkboxes)
32854 (html-radio-buttons): Add a space before the trailing `/>' where
32855 sgml-xml-mode is non-nil.
32856 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
32857 the subsequent tag of the empty XML tag.
32858 (html-href-anchor): Don't set initial input to "http:".
32859 (html-image): Ask for the image URL and set point inside alt="".
32860 (html-name-anchor): Duplicate the name in the `id' attribute when
32861 sgml-xml-mode is non-nil.
32862 (html-paragraph): Remove \n before <p>.
32863 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
32864 instead of `checked' when sgml-xml-mode is non-nil.
32865
32866 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
32867 Remove 1 space before #RRGGBB to not truncate it on terminal
32868 windows w/o fringes. Remove 1 space between bg and fg examples
32869 to get more space.
32870 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
32871 avoid byte-compile warnings.
32872
32873 * image-file.el (image-file-handler): Put `safe-magic' property to
32874 `image-file-handler'.
32875
32876 * info.el (Info-isearch-search): Emulate word search in
32877 isearching through multiple Info nodes with Info-search.
32878 (Info-isearch-wrap): Allow isearch-word.
32879
32880 2005-03-08 Lute Kamstra <lute@gnu.org>
32881
32882 * emacs-lisp/debug.el (debugger-step-through): Make sure that
32883 stepping into the debugger's code is not possible.
32884 (debugger-jumping-flag): Docstring update.
32885
32886 2005-03-08 Jay Belanger <belanger@truman.edu>
32887
32888 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
32889 embedded mode begins.
32890 (calc-embedded-language-alist): New variable.
32891 (calc-embedded-find-modes): Use calc-embedded-language-alist to
32892 set default language mode.
32893
32894 2005-03-08 Kenichi Handa <handa@m17n.org>
32895
32896 * international/ccl.el (define-ccl-program): Fix docstring about
32897 extra 256 bytes assured for the output buffer.
32898
32899 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
32900 Fix BUFFER_MAGNIFICATION to 2.
32901 (ccl-encode-mule-utf-16be-with-signature): Likewise.
32902
32903 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
32904
32905 * align.el (align-rules-list): Added an alignment rule for CSS
32906 declarations (applies to css-mode and html-mode buffers).
32907
32908 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
32909
32910 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
32911
32912 2005-03-07 Kim F. Storm <storm@cua.dk>
32913
32914 * simple.el (move-beginning-of-line): New command.
32915
32916 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
32917
32918 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
32919
32920 * emulation/cua-base.el: Put CUA move property on move-end-of-line
32921 and move-beginning-of-line.
32922
32923 * apropos.el (apropos-print): Omit command from M-x ... RET.
32924
32925 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
32926
32927 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
32928 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
32929
32930 2005-03-06 Richard M. Stallman <rms@gnu.org>
32931
32932 * bindings.el (esc-map): Bind M-g to goto-line.
32933
32934 * facemenu.el (global-map): Bind M-o, not M-g.
32935
32936 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
32937
32938 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
32939 "Open Directory" as for "Open File".
32940
32941 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
32942
32943 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
32944 (push-mark-command): Run activate-mark-hook.
32945
32946 2005-03-06 Richard M. Stallman <rms@gnu.org>
32947
32948 * help-mode.el (help-mode-finish): Don't alter the element
32949 in view-return-to-alist if there already is one.
32950
32951 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
32952 make sure the current buffer is the expected one.
32953
32954 * novice.el (disabled-command-function): Output in *Disabled Command*.
32955 Explicitly ignore non-keyboard events, and explicitly handle C-g.
32956
32957 * textmodes/flyspell.el (flyspell-large-region):
32958 Pass args differently for aspell.
32959
32960 * files.el (mode-require-final-newline): Doc fix.
32961
32962 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
32963
32964 * progmodes/which-func.el (which-function):
32965 Specify NOERROR when calling imenu--make-index-alist.
32966
32967 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
32968
32969 * simple.el (normal-erase-is-backspace): Define default value.
32970
32971 * custom.el (custom-theme-set-variables): Remove unused var
32972 `immediate'.
32973 (custom-reevaluate-setting): Simple function to handle variables
32974 that are defined before their default value can really be
32975 computed.
32976
32977 * startup.el (command-line): Use it for temporary-file-directory,
32978 small-emporary-file-directory, auto-save-file-name-transforms,
32979 blink-cursor-mode, and normal-erase-is-backspace.
32980
32981 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
32982 progress, even with buggy anchored keywords.
32983
32984 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
32985
32986 * simple.el (goto-line): Remove unbalanced final parenthesis.
32987
32988 2005-03-05 Richard M. Stallman <rms@gnu.org>
32989
32990 * simple.el (goto-line): Use a number at point as the default.
32991 With C-u as arg, switch buffers.
32992
32993 2005-03-05 Juri Linkov <juri@jurta.org>
32994
32995 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
32996 with `no-blinking-cursor'.
32997
32998 * startup.el (no-blinking-cursor): New defvar.
32999 (command-line): Add `--no-blinking-cursor' to longopts.
33000 Set `no-blinking-cursor' to t for command line arguments
33001 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
33002 with `no-blinking-cursor' in the condition for calling
33003 `blink-cursor-mode'.
33004
33005 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
33006
33007 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
33008 (menu-bar-options-save): Add blink-cursor-mode.
33009 (menu-bar-options-menu): Add blink-cursor-mode.
33010
33011 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
33012
33013 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
33014 (icalendar-export-file, icalendar-export-region)
33015 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
33016 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
33017
33018 2005-03-04 Lute Kamstra <lute@gnu.org>
33019
33020 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
33021 (debug-function-list): Ditto.
33022
33023 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
33024
33025 * textmodes/texinfmt.el (texinfo-append-refill):
33026 Redefine the types of line to which @refill
33027 is not appended by replacing a search for `@refill\\|@bye' with
33028 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
33029 itemize@refill' bug and the unfilled long lines bug.
33030 (texinfmt-version): Update number and date.
33031
33032 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
33033
33034 * international/code-pages.el (windows-1250, windows-125[2-8])
33035 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
33036
33037 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
33038
33039 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
33040 bound yet.
33041
33042 2005-03-02 Romain Francoise <romain@orebokech.com>
33043
33044 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
33045 buffer after removing limits.
33046 (ibuffer-pop-filter): Ditto.
33047 Update copyright.
33048
33049 2005-03-02 Miles Bader <miles@gnu.org>
33050
33051 * button.el (make-text-button): If the user doesn't specify a
33052 type, use the default. Rewrite to use `add-text-properties' and
33053 plist functions.
33054
33055 2005-03-01 Lute Kamstra <lute@gnu.org>
33056
33057 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
33058 (debugger-jumping-flag): New var.
33059 (debug-entry-code): Use it.
33060 (debugger-jump): Use debugger-jumping-flag and add
33061 debugger-reenable to post-command-hook.
33062 (debugger-reenable): Use debugger-jumping-flag and remove itself
33063 from post-command-hook.
33064 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
33065 debugger-reenable.
33066
33067 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
33068
33069 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
33070 inclusion of "itemize\\|", which may be unnecessary, is certainly
33071 inelegant, and stops refilling in itemize lists when formatting
33072 Japanese Texinfo files to Info.
33073 Update copyright to 2005.
33074
33075 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
33076
33077 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
33078 of an error if GDB can't find the source file.
33079
33080 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
33081
33082 * calendar/calendar.el (redraw-calendar): Work from any buffer,
33083 not just the calendar.
33084
33085 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
33086 first.
33087 (diary-redraw-calendar): New function.
33088 (make-diary-entry): Add diary-redraw-calendar to local
33089 write-contents-functions. Turn off selective display before
33090 inserting in diary.
33091
33092 2005-03-01 Kim F. Storm <storm@cua.dk>
33093
33094 * emacs-lisp/copyright.el (copyright-fix-years): New command.
33095
33096 2005-03-01 Lute Kamstra <lute@gnu.org>
33097
33098 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
33099 that debug-entry-code can be safely removed from a function while
33100 this code is being evaluated. Revert the 2005-02-27 change as the
33101 new implementation no longer requires it. Make sure that a
33102 function body containing just a string is not mistaken for a docstring.
33103 (debug): Skip one more frame in case of debug on entry.
33104 (debugger-setup-buffer): Delete one more frame line in case of
33105 debug on entry.
33106 (debugger-frame-number): Update to use the new text introduced by
33107 the 1999-11-03 change. Skip one more frame in case of debug on entry.
33108
33109 2005-02-28 Kim F. Storm <storm@cua.dk>
33110
33111 * double.el (double-translate-key): Call force-window-update after
33112 read-event to avoid crash in redisplay.
33113
33114 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
33115
33116 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
33117 (debug): Use it. Move the inhibit-trace earlier.
33118 (debug-entry-code): New const.
33119 (debug-on-entry-1): Use it.
33120
33121 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
33122
33123 * international/utf-16.el (ccl-encode-mule-utf-16le):
33124 Fix BUFFER_MAGNIFICATION to 2.
33125 (ccl-encode-mule-utf-16be): Likewise.
33126
33127 2005-02-28 Kenichi Handa <handa@m17n.org>
33128
33129 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
33130 Fix BUFFER_MAGNIFICATION to 4.
33131 (ccl-encode-mule-utf-16be-with-signature): Likewise.
33132
33133 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
33134
33135 * speedbar.el (speedbar-update-flag): Doc fix.
33136 (speedbar-show-info-under-mouse): Give set-mouse-position the right
33137 argument.
33138
33139 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
33140
33141 * reveal.el (reveal-post-command): Don't try to reveal overlays which
33142 have a non-nil `invisible' property but are actually visible.
33143
33144 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
33145 for perldoc sections.
33146 (perl-outline-regexp, perl-outline-level): New var and function.
33147 (perl-mode): Use them.
33148
33149 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
33150
33151 * calendar/diary-lib.el (diary-remind): Discard any mark portion
33152 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
33153
33154 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
33155
33156 * cus-edit.el: Comment change.
33157 (custom-buffer-create-internal): Slightly reword text at top of
33158 Custom buffers. Mention there that saving an option edits the
33159 init file. Add link to Emacs manual node on `custom-file'.
33160 (custom-magic-alist): Rewrite individual State messages to use
33161 capitalized keywords. Doc fix.
33162
33163 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
33164
33165 * calendar/calendar.el (calendar-buffer): Move above
33166 calendar-week-start-day.
33167 (calendar-week-start-day): Doc fix. Add :set function.
33168 (calendar-minimum-window-height): New variable.
33169 (generate-calendar-window): Only resize window if selected-window
33170 is displaying the calendar buffer. Use new variable
33171 calendar-minimum-window-height.
33172 (generate-calendar): Reword error message.
33173 (calendar-mode-map): Bind DEL to scroll-other-window-down.
33174
33175 2005-02-27 Andreas Schwab <schwab@suse.de>
33176
33177 * vc.el (vc-do-command): Don't run command asynchronously when
33178 operating in a remote directory.
33179
33180 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
33181 change from sync with Tramp 2.0.47.
33182
33183 2005-02-27 Richard M. Stallman <rms@gnu.org>
33184
33185 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
33186
33187 * textmodes/flyspell.el (flyspell-mode-on):
33188 Call ispell-change-dictionary only if necessary.
33189
33190 * emacs-lisp/re-builder.el (regexp-builder): New function.
33191
33192 * register.el (describe-register-1): Explicitly handle
33193 yank-excluded-properties = t.
33194
33195 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
33196 (custom-magic-alist): Change the status descriptions again.
33197 (face widget-type): Total rewrite based on `restricted-sexp'
33198 to eliminate the confusing double hiding levels.
33199
33200 * emacs-lisp/debug.el (debug-on-entry-1):
33201 If function body is empty, add nil as body form.
33202
33203 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
33204
33205 * emacs-lisp/trace.el (inhibit-trace): New var.
33206 (trace-make-advice): Use it.
33207
33208 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
33209
33210 2005-02-26 Kim F. Storm <storm@cua.dk>
33211
33212 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
33213 (mouse-on-link-p, mouse-drag-region-1): Use it.
33214
33215 2005-02-25 Lute Kamstra <lute@gnu.org>
33216
33217 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
33218
33219 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
33220
33221 * frame.el (blink-cursor-mode): Add :group keyword.
33222
33223 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
33224
33225 * calendar/icalendar.el (icalendar--decode-isodatetime):
33226 New optional argument DAY-SHIFT.
33227 (icalendar-export-region): Fix coding-system-for-write.
33228 (icalendar--convert-ical-to-diary): Shift end-day of all-day
33229 events by one.
33230
33231 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
33232
33233 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
33234
33235 2005-02-24 Kim F. Storm <storm@cua.dk>
33236
33237 * international/iso-acc.el (iso-accents-compose): Fix crash
33238 during redisplay. Call force-window-update after read-event
33239 and delete-region to signal that window is not accurate.
33240
33241 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
33242
33243 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
33244 Remove unused and inexistent var `inhibit-trace'.
33245 (debugger-mode): Use run-mode-hooks.
33246 (debugger-list-functions): Add buttons; setup xref stack.
33247
33248 2005-02-23 Richard M. Stallman <rms@gnu.org>
33249
33250 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
33251 appointment says it was explicitly made.
33252 (appt-add): Set the 3rd element.
33253 (appt-make-list): Preserve explicit appointments.
33254
33255 * subr.el (find-tag-default): Catch errors in forward-sexp.
33256
33257 2005-02-23 Juri Linkov <juri@jurta.org>
33258
33259 * info.el (Info-isearch-search): New defcustom.
33260 (Info-isearch-search): Call the default isearch function
33261 when Info-isearch-search is nil.
33262 (Info-isearch-wrap): Use variable Info-isearch-search.
33263
33264 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
33265
33266 * cus-edit.el: Comment change.
33267
33268 2005-02-22 Kim F. Storm <storm@cua.dk>
33269
33270 * progmodes/hideif.el (hide-ifdef-use-define-alist):
33271 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
33272
33273 2005-02-22 Simon Josefsson <jas@extundo.com>
33274
33275 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
33276 New variable.
33277 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
33278 Oskarsson" <myrkraverk@users.sourceforget.net>.
33279
33280 2005-02-22 Kim F. Storm <storm@cua.dk>
33281
33282 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
33283 check that window of that event is the selected window.
33284 (mouse-drag-region-1): Compare mouse event window to selected
33285 window before setting point.
33286
33287 * tooltip.el (tooltip-show-help-function): Pass event to
33288 mouse-on-link-p so it can check selected window.
33289
33290 2005-02-22 Kenichi Handa <handa@m17n.org>
33291
33292 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
33293 (ps-mule-show-warning): New function.
33294 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
33295 characters are found.
33296
33297 * ps-print.el (ps-header-footer-string): Return a list of header
33298 and footer strings.
33299
33300 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
33301
33302 * pcvs.el (cvs-retrieve-revision): Fix thinko.
33303
33304 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
33305
33306 * frame.el (blink-cursor-mode): Use define-minor-mode.
33307
33308 * term/mac-win.el (function-key-map): Use char-names more consistently.
33309 (file-name-coding-system): Only set it for MacOS-9. The other case is
33310 already handled in mule-cmds.el (where it also works when mac-win.el
33311 is not used).
33312
33313 2005-02-21 Kenichi Handa <handa@m17n.org>
33314
33315 * international/mule.el (ctext-pre-write-conversion): Always use
33316 " *code-converting-work*" buffer for work.
33317
33318 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
33319
33320 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
33321
33322 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
33323
33324 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
33325
33326 * ses.el (undo-more): Restore defadvice, but only the part that
33327 allows changes outside the restricted area of the buffer.
33328
33329 2005-02-20 Kim F. Storm <storm@cua.dk>
33330
33331 * simple.el (line-move): Add fourth optional arg try-vscroll which
33332 must be set to perform auto-window-vscroll.
33333 When moving backwards and doing auto-window-vscroll, automatically
33334 vscroll to the last part of lines which are taller than the window.
33335 (next-line, previous-line): Set try-vscroll arg on line-move.
33336
33337 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
33338
33339 * replace.el (query-replace, query-replace-regexp)
33340 (replace-string, replace-regexp): When operating on region, make
33341 the minibuffer prompt say so.
33342
33343 * isearch.el (isearch-forward): Document isearch-query-replace and
33344 isearch-query-replace-regexp keybindings.
33345
33346 2005-02-19 Jay Belanger <belanger@truman.edu>
33347
33348 * calc/calc-aent.el (math-read-token): Add local variable.
33349
33350 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
33351 (calc-edit-top): Move declaration to earlier in file.
33352 (calc-edit-macro-repeats): Add local variables.
33353
33354 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
33355 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
33356 calcFunc-tanh.
33357 Adjust integration rule for calcFunc-tan.
33358
33359 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
33360
33361 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
33362 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
33363 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
33364 (viper-skip-separators): Bug fix.
33365 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
33366 particular major mode.
33367 (viper-del-backward-char-in-replace): Don't put deleted char on the
33368 kill ring.
33369
33370 * viper-ex.el (viper-color-display-p): New function.
33371 (viper-has-face-support-p): Use viper-color-display-p.
33372
33373 * viper-keym.el (viper-gnus-modifier-map): New keymap.
33374
33375 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
33376
33377 * viper-util.el (viper-glob-unix-files): Fix shell status check.
33378 (viper-file-remote-p): Make equivalent to file-remote-p.
33379
33380 * viper.el (viper-major-mode-modifier-list):
33381 Use viper-gnus-modifier-map.
33382
33383 2005-02-19 David Kastrup <dak@gnu.org>
33384
33385 * subr.el (subregexp-context-p): Fix garbled doc string by adding
33386 quoting.
33387
33388 2005-02-19 Jay Belanger <belanger@truman.edu>
33389
33390 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
33391 Remove extra definitions.
33392 (calc-coth): New function.
33393 (calcFunc-cot): Fix `let'.
33394
33395 2005-02-19 Eli Zaretskii <eliz@gnu.org>
33396
33397 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
33398 the reasons we use "type pc" in these faces.
33399
33400 * button.el (button): Ditto.
33401
33402 2005-02-19 Michael Mauger <mmaug@yahoo.com>
33403
33404 * replace.el (query-replace-read-from): Set the value of
33405 query-replace-from-history-variable to handle the case of an empty
33406 string entered to accept the suggested default.
33407
33408 * net/tramp.el (tramp-file-name-for-operation):
33409 Use dired-call-process instead of dired-call-process-command.
33410
33411 2005-02-19 Jay Belanger <belanger@truman.edu>
33412
33413 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
33414 (math-div-non-trig): New variables.
33415 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
33416 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
33417 (math-combine-prod, math-div-symb-fancy): Add simplifications for
33418 trig expressions.
33419
33420 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
33421
33422 * progmodes/gdb-ui.el (gdb-var-update-handler)
33423 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
33424 for watch expressions,
33425 (gdb-var-create-handler): Don't set speedbar-update-flag.
33426 (gdb-post-prompt): Simplify test for speedbar.
33427
33428 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
33429
33430 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
33431 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
33432 we use the syntax table of the correct buffer.
33433 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
33434 Felix Gatzemeier.
33435
33436 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
33437 (ediff-file-remote-p): Make synonymous with file-remote-p.
33438 In all deffaces ediff-*-face-*, use min-colors.
33439
33440 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
33441 ediff-recurse-to-subdirectories.
33442 (ediff-mark-if-equal): Check that the arguments are strings, use
33443 ediff-same-contents (after to Felix Gatzemeier).
33444
33445 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
33446 nil.
33447
33448 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
33449
33450 * log-view.el (log-view-message-re): Fix up Subversion regexp.
33451
33452 2005-02-18 David Kastrup <dak@gnu.org>
33453
33454 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
33455 use `mark-active' when defined.
33456
33457 2005-02-18 Kenichi Handa <handa@m17n.org>
33458
33459 * ps-print.el (ps-font-info-database): New entry
33460 ZapfChancery-MediumItalic with correct font name. Fix font name
33461 of the entry Zapf-Chancery-MediumItalic.
33462
33463 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
33464
33465 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
33466
33467 2005-02-16 Kim F. Storm <storm@cua.dk>
33468
33469 * ido.el (ido-fallback-command): Pass user input to fallback command.
33470
33471 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
33472
33473 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
33474 (gdb-find-file-hook): Add server prefix.
33475
33476 2005-02-16 Richard M. Stallman <rms@gnu.org>
33477
33478 * replace.el (perform-replace): Pass new args to replace-highlight.
33479 (replace-highlight): Take region args,
33480 and pass them to isearch-lazy-highlight-new-loop.
33481
33482 * novice.el (disabled-command-hook): Autoload the defalias
33483 and the make-obsolete-variable call.
33484
33485 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
33486
33487 * isearch.el (isearch-lazy-highlight-start-limit)
33488 (isearch-lazy-highlight-end-limit): New variables limit
33489 the region for highlighting.
33490 (isearch-lazy-highlight-new-loop): New args BEG and END.
33491 (isearch-lazy-highlight-search): Use the new vars.
33492 (isearch-lazy-highlight-update): Likewise.
33493
33494 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
33495
33496 * cus-start.el (all): Use default-boundp.
33497
33498 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
33499
33500 * menu-bar.el (menu-bar-select-frame): Handle current frame.
33501
33502 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
33503
33504 * autorevert.el (auto-revert-stop-on-user-input)
33505 (auto-revert-verbose): Doc fixes.
33506
33507 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
33508
33509 * international/mule-cmds.el (set-locale-environment): Remove call
33510 to set-selection-coding-system on Windows.
33511
33512 2005-02-15 Jay Belanger <belanger@truman.edu>
33513
33514 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
33515 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
33516 calcFunc-coth.
33517 (math-simplify-sqrt): Add simplifications.
33518
33519 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
33520 to list.
33521
33522 * calc/calc-ext.el: Add functions to autoloads.
33523
33524 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
33525 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
33526 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
33527 (math-csc-raw, math-cot-raw): New functions.
33528
33529 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
33530
33531 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
33532 the variable name in a message.
33533
33534 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
33535 calcFunc-csc, calcFunc-cot.
33536
33537 * calc/calcalg2.el: Add derivative and integration rules for
33538 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
33539 calcFunc-csch, calcFunc-coth.
33540 (math-do-integral-methods): Add to checks for when to use
33541 substitutions.
33542
33543 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
33544
33545 2005-02-15 Lute Kamstra <lute@gnu.org>
33546
33547 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
33548 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
33549 <monnier@iro.umontreal.ca>.
33550 (lisp-outline-level): Improve efficiency. Suggested by David
33551 Kastrup <dak@gnu.org>.
33552
33553 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
33554
33555 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
33556 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
33557 (gdb-set-gud-minor-mode-existing-buffers): New functions.
33558 (gdb-find-file-hook): New hook. Add it to find-file-hook.
33559 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
33560
33561 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
33562
33563 * cus-start.el (all): Comment change.
33564
33565 2005-02-14 Lute Kamstra <lute@gnu.org>
33566
33567 * cus-start.el (all): Check if symbol is void.
33568
33569 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
33570
33571 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
33572 optional argument to \cite.
33573
33574 2005-02-14 Richard M. Stallman <rms@gnu.org>
33575
33576 * cus-edit.el (custom-buffer-create-internal): Update help message.
33577 (custom-magic-alist): Update help messages.
33578
33579 * cus-start.el (all): Allow a var to specify a standard value.
33580
33581 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
33582
33583 * custom.el (custom-theme-set-variables): Handle variable aliases.
33584
33585 * frame.el (blink-cursor-timer): Doc fix.
33586 (blink-cursor): Make it an alias for `blink-cursor-mode' and
33587 declare obsolete.
33588 (blink-cursor-mode): Define with defcustom and use correct
33589 standard expression in that defcustom.
33590 * startup.el (command-line): Adapt to above changes in frame.el.
33591
33592 2005-02-11 Lute Kamstra <lute@gnu.org>
33593
33594 * apropos.el (apropos-score-doc): Prevent division by zero.
33595
33596 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
33597
33598 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
33599 (icalendar--get-event-property-attributes)
33600 (icalendar--get-event-properties)
33601 (icalendar--datetime-to-diary-date): New functions.
33602 (icalendar--split-value): Doc fix.
33603 (icalendar--datetime-to-noneuropean-date)
33604 (icalendar--datetime-to-european-date): New optional argument
33605 SEPARATOR. Return result as a string instead of a list.
33606 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
33607 (icalendar--convert-string-for-export): Rename arg S to STRING.
33608 (icalendar-export-region): Doc fix. Change name of error buffer.
33609 Save output buffer.
33610 (icalendar-import-file): Add blank at end of prompt.
33611 (icalendar-import-buffer): Doc fix. Do not switch to error
33612 buffer. Indicate status in return value.
33613 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
33614 buffer. Save output buffer. Handle exception from recurrence
33615 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
33616 events. Fix problems with weekly all-day events.
33617
33618 2005-02-10 Richard M. Stallman <rms@gnu.org>
33619
33620 * simple.el (eval-expression-print-format):
33621 Avoid warning about edebug-active.
33622
33623 * help.el (help-for-help-internal): Rename from help-for-help.
33624 (help-for-help): Define with defalias.
33625
33626 * font-core.el (font-lock-default-function): Use with-no-warnings.
33627
33628 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
33629
33630 * custom.el (defface): Doc fix.
33631
33632 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
33633
33634 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
33635 width 0" to prevent word wrapping problems.
33636
33637 2005-02-09 Kim F. Storm <storm@cua.dk>
33638
33639 * ido.el (ido-file-extensions-order): New defcustom.
33640 (ido-file-extension-lessp, ido-file-extension-aux)
33641 (ido-file-extension-order): New advanced file ordering.
33642 (ido-file-lessp): New simple file ordering.
33643 (ido-sort-list): Remove.
33644 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
33645 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
33646
33647 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
33648
33649 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
33650 that some versions of grep produce.
33651 (grep-mode-font-lock-keywords): Likewise.
33652
33653 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
33654
33655 * progmodes/gdb-ui.el (gdb-location-list): New variable.
33656 (gdb-cdir): Delete.
33657 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
33658 (gdb-source-info): Treat case when source file is in another
33659 directory properly.
33660 (gdb-get-location): New function.
33661
33662 2005-02-07 Jay Belanger <belanger@truman.edu>
33663
33664 * calc/calc-prog.el (calc-write-parse-table-part)
33665 (calc-fix-token-name): Fix a check for language type.
33666
33667 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
33668
33669 2005-02-07 Andre Spiegel <spiegel@gnu.org>
33670
33671 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
33672 as directory not writable.
33673
33674 2005-02-07 Kim F. Storm <storm@cua.dk>
33675
33676 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
33677 (cua--standard-movement-commands): Remove list.
33678 Instead, set CUA property value to move for movement commands.
33679 (cua-movement-commands): Remove. Users must set CUA prop instead.
33680 (cua--pre-command-handler): Check CUA property.
33681 (cua--init-keymaps): Don't remap undo commands.
33682 (cua-mode): Don't call cua--rectangle-on-off.
33683
33684 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
33685 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
33686 (cua--rect-undo-set-point): New var.
33687 (cua--rectangle-undo-boundary): Setup undo apply entry.
33688 (cua--rect-undo-handler): New function for rectangle undo.
33689 (cua--rect-start-position, cua--rect-end-position): Add.
33690 (cua--rectangle-post-command): Call cua--rectangle-set-corners
33691 for restored rectangle. Set point if cua--rect-undo-set-point.
33692
33693 2005-02-06 Jay Belanger <belanger@truman.edu>
33694
33695 * calc/calc-lang.el (calc-tex-language): Display more information
33696 in messages.
33697
33698 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
33699 in TeX mode.
33700
33701 2005-02-06 Richard M. Stallman <rms@gnu.org>
33702
33703 * emacs-lisp/lisp.el (buffer-end): Doc fix.
33704
33705 2005-02-05 Arne J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
33706
33707 * net/ldap.el (ldap-search-internal): Support attributes with
33708 optional descriptions separated by a semi-colon, as in
33709 "userCertificate;binary".
33710
33711 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
33712
33713 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
33714 isn't a cons (i.e. the version is 0).
33715
33716 2005-02-05 Eli Zaretskii <eliz@gnu.org>
33717
33718 * help.el (help-for-help): Doc fix.
33719
33720 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
33721
33722 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
33723 GDB-Windows on the menu-bar as this works better.
33724
33725 2005-02-04 Jay Belanger <belanger@truman.edu>
33726
33727 * calc/calc-embed.el (calc-embedded-update): Don't put in
33728 unnecessary newlines. Adjust the end of formula marker.
33729
33730 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
33731 (math-latex-parse-two-args): New function.
33732
33733 2005-02-03 Lute Kamstra <lute@gnu.org>
33734
33735 * help-fns.el (help-with-tutorial): Make sure that users cannot
33736 remove the entire text of the tutorial by means of `undo'.
33737
33738 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
33739
33740 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
33741 in recent changes, where the ispell process was repeatedly
33742 killed & restarted.
33743
33744 * international/mule-cmds.el (set-locale-environment): Set file-name
33745 coding system to utf-8 on Darwin systems.
33746 (set-default-coding-systems): Don't set default-file-name-coding-system
33747 on Darwin systems.
33748
33749 2005-02-03 Richard M. Stallman <rms@gnu.org>
33750
33751 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
33752
33753 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
33754
33755 * faces.el (list-faces-display): Add optional argument.
33756
33757 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
33758
33759 * font-core.el (font-lock-default-function): Handle the rare case where
33760 only font-lock-keywords is set.
33761
33762 2005-02-02 Kenichi Handa <handa@m17n.org>
33763
33764 * international/characters.el: Cancel previous change for
33765 I-WITH-DOT-ABOVE and DOTLESS-i.
33766
33767 * international/latin-5.el: Cancel previous change.
33768
33769 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
33770
33771 * progmodes/gud.el: Correction to syntax in gud-menu-map.
33772
33773 2005-02-02 Kenichi Handa <handa@m17n.org>
33774
33775 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
33776 DOTLESS-i.
33777
33778 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
33779 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
33780
33781 * case-table.el (get-upcase-table): New function.
33782 (copy-case-table): Copy upcaes table too if non-nil.
33783 (set-case-syntax-delims): Maintain upcase table too.
33784 (set-case-syntax-pair): Likewise.
33785 (set-upcase-syntax, set-downcase-syntax): New functions.
33786 (set-case-syntax): Maintain upcase table too.
33787
33788 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
33789
33790 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
33791
33792 * progmodes/gud.el (gud-goto-info): New function.
33793 (gud-tool-bar-map): Use correct icon.
33794
33795 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
33796
33797 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
33798 When delegating, order args in the funcall correctly.
33799
33800 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
33801
33802 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
33803
33804 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
33805
33806 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
33807 buffer not visiting a file.
33808
33809 2005-01-31 Jay Belanger <belanger@truman.edu>
33810
33811 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
33812 bound on the line with the formula.
33813
33814 2005-01-31 Kim F. Storm <storm@cua.dk>
33815
33816 * ses.el (ses-create-cell-variable-range)
33817 (ses-destroy-cell-variable-range, ses-reset-header-string)
33818 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
33819 (ses-insert-row): Fix format of apply undo entries.
33820
33821 2005-01-31 Jay Belanger <belanger@truman.edu>
33822
33823 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
33824 parts.
33825
33826 * calc/calc-embed.el (calc-embedded-open-formula)
33827 (calc-embedded-close-formula): Ignore matrix environments.
33828
33829 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
33830 TeX mode.
33831
33832 * calc/calc-lang.el (math-function-table, math-oper-table)
33833 (math-variable-table): Adjust the LaTeX portions.
33834
33835 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
33836 (math-latex-ignore-words): New constant.
33837
33838 2005-01-31 Richard M. Stallman <rms@gnu.org>
33839
33840 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
33841 (ispell-local-dictionary): Doc fix.
33842 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
33843 Don't reinitialize at run time. Don't defcustom.
33844 All uses changed to append ispell-local-dictionary-alist,
33845 or check it first.
33846 (ispell-current-dictionary): New variable for dictionary in use.
33847 (ispell-dictionary): Now used only for global default.
33848 (ispell-start-process): Set ispell-current-dictionary,
33849 not ispell-dictionary.
33850 (ispell-change-dictionary): Use this only for setting
33851 user preferences.
33852 (ispell-internal-change-dictionary): New function
33853 to change the current dictionary in use.
33854 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
33855 Use ispell-current-dictionary.
33856 Handle ispell-local-dictionary-overridden.
33857 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
33858
33859 2005-01-31 Jay Belanger <belanger@truman.edu>
33860
33861 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
33862
33863 * calc/calc-ext.el: Add calc-latex-language to autoloads.
33864 (calc-mode-map): Add calc-latex-language.
33865
33866 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
33867 (math-latex-print-frac): New functions.
33868 (math-oper-table, math-function-table, math-variable-table)
33869 (math-complex-format, math-input-filter): Add latex properties.
33870 (calc-set-language): Set math-expr-special-function-mapping.
33871
33872 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
33873 (calc-write-parse-table-part): Add LaTeX support.
33874
33875 * calc/calc.el (calc-language): Adjust docstring.
33876 (calc-set-mode-line): Add LaTeX support.
33877 (math-expr-special-function-mapping): New variable.
33878 (math-tex-ignore-words): Add to list.
33879
33880 * calc/calccomp.el (math-compose-expr, math-compose-rows):
33881 Add LaTeX support.
33882 (math-compose-expr): Add support for special functions.
33883
33884 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
33885
33886 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
33887
33888 * progmodes/gdb-ui.el (gdb-memory-address)
33889 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
33890 (gdb-memory-mode-map, gdb-memory-format-keymap)
33891 (gdb-memory-format-menu, gdb-memory-unit-keymap)
33892 (gdb-memory-unit-menu): New variables for a buffer
33893 that lets the user examine program memory.
33894 (gdb-memory-set-address, gdb-memory-set-repeat-count)
33895 (gdb-memory-format-binary, gdb-memory-format-octal)
33896 (gdb-memory-format-unsigned, gdb-memory-format-signed)
33897 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
33898 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
33899 (gdb-memory-unit-word, gdb-memory-unit-halfword)
33900 (gdb-memory-unit-byte, gdb-memory-unit-menu)
33901 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
33902 (gdb-memory-mode, gdb-memory-buffer-name)
33903 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
33904 New functions for above buffer.
33905
33906 2005-01-30 Richard M. Stallman <rms@gnu.org>
33907
33908 * cus-edit.el (custom-bury-buffer): Function deleted.
33909 (custom-buffer-done-function): Option deleted.
33910 (custom-buffer-done-kill): New replacement option.
33911 (Custom-buffer-done): Call quit-window.
33912 (custom-buffer-create-internal): Update for above changes.
33913
33914 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
33915
33916 * simple.el (undo-ask-before-discard): New var.
33917 (undo-outer-limit-truncate): Implement it.
33918 (undo-extra-outer-limit): Doc update.
33919
33920 2005-01-29 Richard M. Stallman <rms@gnu.org>
33921
33922 * ses.el (undo-more): Delete defadvice.
33923 (ses-begin-change): Doc fix.
33924
33925 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
33926 instead of rebinding C-x u and C-_.
33927
33928 * files.el (normal-backup-enable-predicate): Return nil for files
33929 in /tmp, regardless of temporary-file-directory.
33930
33931 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
33932
33933 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
33934 (open-rectangle, delete-whitespace-rectangle-line)
33935 (clear-rectangle-line): If FILL, pass t instead of FILL
33936 for move-to-column's 2nd arg.
33937
33938 * simple.el (undo): Fix the test for continuing a series of undos.
33939 (undo-more): Set pending-undo-list to t when we reach end.
33940 (pending-undo-list): Move up defvar.
33941
33942 * wid-edit.el (widget-button-click):
33943 Shorten the range of the track-mouse binding.
33944
33945 * comint.el (comint-insert-input): Undo previous changes;
33946 use last-input-event in interactive spec.
33947
33948 2005-01-29 Eli Zaretskii <eliz@gnu.org>
33949
33950 * progmodes/compile.el (compilation-start): Bind buffer-read-only
33951 to nil before invoking call-process. Reset buffer's modified flag
33952 after fontifying it in the no-async branch.
33953
33954 * wid-edit.el (widget-specify-button): If mouse pointer shape
33955 cannot be changed, use mouse face instead.
33956
33957 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
33958
33959 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
33960 (gdb-goto-breakpoint): Make breakpoint handling work on template
33961 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>.
33962 (gdb-assembler-custom): Update to recognize breakpoint information
33963 added on 2005-01-19.
33964
33965 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
33966
33967 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
33968 (dsssl-mode): Use define-derived-mode.
33969 (scheme-mode-initialize): Remove.
33970 (scheme-mode): Use run-mode-hooks.
33971
33972 * cus-edit.el (customize-group-other-window)
33973 (custom-buffer-create-other-window): Don't override special-display-*.
33974 (custom-mode-map): Make it dense.
33975
33976 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
33977 sets the default value.
33978
33979 2005-01-28 Eli Zaretskii <eliz@gnu.org>
33980
33981 * descr-text.el: Add more keywords.
33982
33983 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
33984
33985 * speedbar.el: Avoid unnecessary use of locate-library.
33986
33987 * international/mule-cmds.el (standard-display-european-internal):
33988 Don't fiddle with latin-1 non-break space any more since it's now
33989 special cased in the C code.
33990 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
33991
33992 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
33993
33994 * cus-start.el (all): Add `undo-outer-limit'.
33995
33996 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
33997
33998 * textmodes/bibtex.el (bibtex-format-entry):
33999 Use `bibtex-empty-field-re' only on the text of fields, not on entire
34000 field lines.
34001 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
34002 not on part of a buffer.
34003
34004 2005-01-25 Lute Kamstra <lute@gnu.org>
34005
34006 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
34007 nonempty field text strings like "{letters\\macro{}more letters}".
34008 Clarify docstring.
34009 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
34010 (bibtex-entry-offset, bibtex-parse-association)
34011 (bibtex-parse-field-name): Fix typos in docstrings.
34012 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
34013
34014 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
34015
34016 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
34017 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
34018 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
34019 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
34020
34021 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
34022 isearch minor mode.
34023
34024 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
34025
34026 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
34027
34028 2005-01-24 Lute Kamstra <lute@gnu.org>
34029
34030 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
34031 CASECHARS and NOT-CASECHARS regular expressions of the
34032 "nederlands" and "nederlands8" dictionaries to prevent a "Range
34033 striding over charsets" error.
34034
34035 2005-01-24 Jay Belanger <belanger@truman.edu>
34036
34037 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
34038 display variable name.
34039
34040 2005-01-24 Kenichi Handa <handa@m17n.org>
34041
34042 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
34043 Fix setting of the element of encoded-kbd-iso2022-invocations.
34044
34045 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
34046
34047 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
34048 (gdb-threads-select): Change to also accept mouse events.
34049 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
34050 (gdb-threads-mouse-select): Delete.
34051
34052 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
34053
34054 * files.el (insert-directory): Take care of empty directory,
34055 listed without -a switch.
34056
34057 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
34058
34059 * textmodes/refill.el (refill-post-command-function):
34060 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
34061 to the list of functions that we should be careful not to undo.
34062 (refill-late-fill-paragraph-function): Remove.
34063 (refill-saved-state): New var.
34064 (refill-mode): Use it to save fill-paragraph-function.
34065 Save also the value of auto-fill-function.
34066
34067 * term/w32-win.el: Simplify code.
34068
34069 2005-01-23 Kim F. Storm <storm@cua.dk>
34070
34071 * simple.el (line-move): Adapt to new return value from
34072 pos-visible-in-window-p.
34073
34074 * simple.el (line-move): Fix last change. Check partial
34075 visibility at point rather than at window-start.
34076
34077 2005-01-22 Jason Rumney <jasonr@gnu.org>
34078
34079 * term/w32-win.el (xw-defined-colors): Remove debug-message.
34080
34081 2005-01-22 David Kastrup <dak@gnu.org>
34082
34083 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
34084
34085 2005-01-22 Eli Zaretskii <eliz@gnu.org>
34086
34087 * type-break.el (type-break-mode): Add a test for
34088 type-break-file-name being non-nil.
34089
34090 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
34091
34092 * net/eudc.el (top level): Call (message "") via progn, so that
34093 eudc-options-file is loaded.
34094
34095 2005-01-22 Kim F. Storm <storm@cua.dk>
34096
34097 * simple.el (line-move-1): Rename from line-move.
34098 (line-move): New function that adjusts vscroll for partially
34099 visible rows, and calls line-move-1 otherwise.
34100
34101 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
34102
34103 * pcomplete.el: Define pcomplete-read-event instead of read-event,
34104 since it's not a complete read-event implementation.
34105
34106 2005-01-20 Jay Belanger <belanger@truman.edu>
34107
34108 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
34109 for called function.
34110
34111 2005-01-20 Steven Tamm <steventamm@mac.com>
34112
34113 * term/mac-win.el (process-connection-type): Remove.
34114 Controlled now by s/darwin.h:PTY_ITERATION.
34115
34116 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
34117
34118 * window.el (handle-select-window): Don't switch window when we're
34119 in the minibuffer.
34120
34121 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
34122
34123 * subr.el (dotimes-with-progress-reporter): New macro.
34124
34125 * ses.el (ses-dotimes-msg): Remove macro.
34126 Use `dotimes-with-progress-reporter' instead.
34127
34128 2005-01-19 Steven Tamm <steventamm@mac.com>
34129
34130 * term/mac-win.el (process-connection-type): Use new
34131 operating-system-release variable to use ptys on Darwin 7 (OS X
34132 10.3) when using carbon build.
34133
34134 2005-01-19 Jay Belanger <belanger@truman.edu>
34135
34136 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
34137 flags if the last command was a tab or M-tab.
34138
34139 * calc/calc-prog.el (calc-user-define-edit): Put original formula
34140 in formula editing buffer.
34141
34142 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
34143
34144 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
34145 breakpoint image symbol in margin.
34146
34147 2005-01-19 Jay Belanger <belanger@truman.edu>
34148
34149 * calc/calc-prog.el (calc-execute-kbd-macro):
34150 Ignore calc-keep-arg-flag.
34151
34152 2005-01-19 Kenichi Handa <handa@m17n.org>
34153
34154 * textmodes/ispell.el (ispell-looking-at): New function.
34155 (ispell-process-line): Use ispell-looking-at to compare the ispell
34156 output and the buffer contents.
34157
34158 2005-01-18 Jay Belanger <belanger@truman.edu>
34159
34160 * calc/calc.el (calc-display-raw): Fix docstring.
34161
34162 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
34163
34164 * simple.el (blink-matching-open): Strip extra info from syntax.
34165
34166 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
34167 funny chars in the end-of-here-doc marker.
34168
34169 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
34170
34171 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
34172 that enable/disabled state of breakpoints is shown correctly in
34173 fringe and on ttys.
34174 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
34175 Add breakpoint information as text properties.
34176 (gdb-mouse-toggle-breakpoint):
34177 Rename to gdb-mouse-set-clear-breakpoint.
34178 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
34179 breakpoints in the margin.
34180 (gdb-remove-strings): Simplify.
34181
34182 2005-01-17 Jay Belanger <belanger@truman.edu>
34183
34184 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
34185 erasing buffer.
34186
34187 2005-01-17 Richard M. Stallman <rms@gnu.org>
34188
34189 * progmodes/grep.el (grep-find): Copy from `grep' the condition
34190 for calling grep-compute-defaults.
34191
34192 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
34193 if buffer is empty.
34194
34195 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
34196
34197 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
34198
34199 * hilit-chg.el (highlight-changes-mode): Don't autoload.
34200
34201 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
34202 non-preloaded variables.
34203
34204 2005-01-17 Steven Tamm <steventamm@mac.com>
34205
34206 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
34207 tex-shell cause to force interactivity when using pipes.
34208
34209 2005-01-17 Kim F. Storm <storm@cua.dk>
34210
34211 * simple.el (just-one-space): Make arg optional.
34212
34213 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
34214
34215 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
34216 posn-at-x-y to t to access left-margin.
34217
34218 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
34219
34220 Sync with Tramp 2.0.47.
34221
34222 * net/tramp.el (tramp-operation-not-permitted-regexp): New defcustom,
34223 catching keep-date problems in cp/scp operations.
34224 (tramp-handle-copy-file): Don't call `set-file-modes'
34225 unconditionally. Specialized functions should know better what is
34226 necessary. This improves performance a little bit, and the
34227 functions could catch errors with `cp -p' and `scp -p'.
34228 (tramp-do-copy-or-rename-file-via-buffer)
34229 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
34230 when appropriate.
34231 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
34232 Call `set-file-modes' when appropriate.
34233 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
34234 Johnsson <isak@hypergene.com>.
34235 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
34236 of both Tramp buffer and debug buffer. Reported by Joakim Verona
34237 <joakim@verona.se>.
34238 (tramp-file-name-for-operation): Mark `shell-command' as magic for
34239 Emacs only.
34240
34241 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
34242 `find-file-hooks' and `dired-mode-hook'.
34243 (tramp-minor-mode-map): Respective map. Add remapping for
34244 `compile' and `recompile'.
34245 (tramp-remap-command, tramp-recompile): New defuns.
34246 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
34247 in buffer "*Compilation*". Call the commands asynchronously.
34248
34249 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
34250 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
34251 `shell-command', because it isn't magic in XEmacs. Reported by
34252 Adrian Aichner <adrian@xemacs.org>.
34253
34254 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
34255 `substitute-in-file-name.
34256 (tramp-smb-handle-substitute-in-file-name): New defun.
34257 (tramp-smb-advice-PC-do-completion): Delete advice.
34258
34259 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
34260
34261 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
34262 Fix error in deleting region.
34263
34264 2005-01-15 Richard M. Stallman <rms@gnu.org>
34265
34266 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
34267 In non-temp buffer, switch syntax table temporarily.
34268
34269 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
34270
34271 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
34272
34273 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
34274
34275 * imenu.el (imenu--split-menu): Copy menulist before sorting.
34276 (imenu--generic-function): Use START, not BEG, as pos of definition.
34277
34278 * simple.el (just-one-space): Argument specifies number of spaces.
34279
34280 * simple.el (eval-expression-print-format): Avoid warning
34281 about edebug-active.
34282
34283 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (tiny change)
34284
34285 * progmodes/sh-script.el: Code copied from make-mode.el
34286 with small changes,
34287 (sh-mode-map): Bind C-c C-\.
34288 (sh-backslash-column, sh-backslash-align): New variables.
34289 (sh-backslash-region, sh-append-backslash): New functions.
34290
34291 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
34292
34293 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
34294 (rmail-pop-password, rmail-pop-password-required): Move to
34295 rmail-obsolete group.
34296 (rmail-set-pop-password): Rename to rmail-set-remote-password.
34297 All callers updated.
34298 (rmail-get-pop-password): Rename to rmail-get-remote-password.
34299 Take an argument specifying whether it is POP or IMAP mailbox we
34300 are using. All callers updated.
34301 (rmail-pop-password-error): Rename to
34302 rmail-remote-password-error. Added mailutils-specific error message.
34303 (rmail-movemail-search-path)
34304 (rmail-movemail-variant-in-use): New variables.
34305 (rmail-remote-password, rmail-remote-password-required):
34306 New customization variables.
34307 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
34308 (rmail-parse-url): New function.
34309 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
34310 with GNU mailutils movemail.
34311
34312 2005-01-15 Kevin Ryde <user42@zip.com.au>
34313
34314 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
34315 suffix to space, $ or '$, to correctly position point when going
34316 to @table style constants like DBL_MAX.
34317
34318 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
34319
34320 * type-break.el (type-break-mode, type-break-file-time)
34321 (type-break-file-keystroke-count, type-break-choose-file):
34322 Don't store data in or load data from the file if type-break-file-name
34323 is nil.
34324 (type-break-file-name): Doc update as per the above.
34325
34326 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
34327
34328 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
34329 lookup-key might return nil; handle that.
34330
34331 2005-01-15 Alan Mackenzie <acm@muc.de>
34332
34333 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
34334 rather than the element found, thus enabling the tree to be setcar'd.
34335
34336 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
34337
34338 * textmodes/org.el (org-show-following-heading): New option.
34339 (org-show-hierarchy-above): Use `org-show-following-heading'.
34340 (org-cycle): Documentation fix.
34341
34342 * textmodes/org.el (orgtbl-optimized): New option
34343 (orgtbl-mode): New command, a minor mode.
34344 (orgtbl-mode-map): New variable.
34345 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
34346 (orgtbl-error, orgtbl-self-insert-command)
34347 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
34348
34349 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
34350 a local variable in each org-mode buffer.
34351
34352 * textmodes/org.el (org-set-regexps-and-options): Rename from
34353 `org-set-regexps'. Added checking for STARTUP keyword.
34354 (org-get-current-options): Add STARTUP options.
34355 (org-table-insert-row): Make mode intelligent about when
34356 realignment is needed.
34357 (org-self-insert-command, org-delete-backward-char, org-delete-char):
34358 New commands.
34359 (org-enable-table-editor): New default value `optimized'.
34360 (org-table-blank-field): Support blanking regions if active.
34361
34362 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
34363
34364 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
34365 if the year is not given.
34366
34367 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
34368 Add new escapes %m and %M, fixed bug with %F by adding
34369 save-match-data.
34370 (reftex-reference): Remove ?. from list of spaces.
34371 (reftex-label-info): Add automatic label prefix recognition.
34372
34373 * textmodes/reftex-index.el (reftex-index-next-phrase):
34374 Add slave parameter to call of `reftex-index-this-phrase'.
34375 (reftex-index-this-phrase): New optional argument.
34376 (reftex-index-region-phrases): Add slave parameter to call of
34377 `reftex-index-this-phrase'.
34378 (reftex-display-index): New argument redo.
34379 (reftex-index-rescan): Add `redo' to arguments of
34380 `reftex-display-index'.
34381 (reftex-index-Rescan, reftex-index-revert)
34382 (reftex-index-switch-index-tag): Add `redo' to arguments of
34383 `reftex-display-index'.
34384 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
34385 indexing. Fix bug with matching is there is a quote before or
34386 after the word.
34387
34388 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
34389 Fix bug when collecting citation keys in lines with comments.
34390 (reftex-citation): Prefix argument no longer rescans the document,
34391 but forces prompting for optional arguments of cite macros.
34392 (reftex-do-citation): Prompting for optional arguments implemented.
34393
34394 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
34395 Add optional arguments to most cite commands.
34396 (reftex-cite-cleanup-optional-args): New option
34397 (reftex-cite-prompt-optional-args): New option.
34398 (reftex-trust-label-prefix): New option.
34399
34400 * textmodes/reftex-toc.el (reftex-toc-find-section):
34401 Add push-mark before changing the position in the buffer.
34402
34403 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
34404 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
34405
34406 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
34407
34408 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
34409 more carefully.
34410
34411 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
34412
34413 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
34414 (sgml-mode): Use it.
34415 (sgml-get-context): Better keep track of implicitly closed tags.
34416
34417 2005-01-13 Kenichi Handa <handa@m17n.org>
34418
34419 * textmodes/ispell.el: These changes are to fix misalignment error
34420 caused by equivalent characters of different Emacs charsets.
34421 (ispell-unified-chars-table): New variable.
34422 (ispell-get-decoded-string): New function.
34423 (ispell-get-casechars, ispell-get-not-casechars)
34424 (ispell-get-otherchars): Call ispell-get-decoded-string.
34425
34426 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
34427
34428 * custom.el (custom-declare-variable): Just put symbol instead
34429 of (defvar . symbol) in `current-load-list'.
34430
34431 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
34432
34433 * emacs-lisp/elint.el: Fixed typo in Commentary section.
34434
34435 2005-01-12 Jay Belanger <belanger@truman.edu>
34436
34437 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
34438 to create a Calc summary.
34439
34440 2005-01-12 Kim F. Storm <storm@cua.dk>
34441
34442 * mouse.el (mouse-on-link-p): Change functionality and doc
34443 string to comply with latest description in lisp ref.
34444
34445 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
34446
34447 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
34448 Enable mouse clicks on mode-line, header-line and margin.
34449 (event-type): Give mouse event symbols an `event-kind' property
34450 with value `mouse-click'.
34451
34452 2005-01-12 Juri Linkov <juri@jurta.org>
34453
34454 * facemenu.el (list-colors-display): Add new arg buffer-name.
34455 Use it. Fix docstring. Replace code for identifying duplicate
34456 colors by the name with call to `list-colors-duplicates' which
34457 identifies duplicate colors by the value unless the color
34458 is one of special Windows colors. Set truncate-lines to t.
34459 Print sorted duplicate color names on each line. Indent to 22
34460 \(the longest color name in rgb.txt) instead of 20. Optimize.
34461 (list-colors-duplicates): New function.
34462 (facemenu-color-name-equal): Delete function.
34463
34464 * facemenu.el (list-colors-print): New function created from code
34465 in list-colors-display. Print #RRGGBB at the window right edge.
34466 (list-colors-display): When temp-buffer-show-function is not
34467 defined, call list-colors-print from temp-buffer-show-hook
34468 to get the right value of window-width in list-colors-print
34469 after the buffer is displayed.
34470
34471 * simple.el (pop-mark): Move deactivate-mark out of conditional
34472 part to deactivate the active mark regardless of the state of the
34473 mark ring.
34474
34475 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
34476 variables line in desktop files.
34477
34478 2005-01-12 Juri Linkov <juri@jurta.org>
34479
34480 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
34481 Bring together isearch highlight related options.
34482 (lazy-highlight): Replace group `replace' by `matching'.
34483 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
34484 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
34485 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
34486 and declare them obsolete.
34487 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
34488 (isearch-faces): Remove defgroup.
34489 (isearch-overlay, isearch-highlight, isearch-dehighlight):
34490 Move isearch highlighting code closer to lazy highlighting code.
34491
34492 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
34493 (query-replace-highlight, query-replace-lazy-highlight)
34494 (query-replace): Move definitions to the beginning of the file.
34495
34496 2005-01-11 Juri Linkov <juri@jurta.org>
34497
34498 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
34499 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
34500 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
34501
34502 * info.el (Info-history-forward): New variable.
34503 (Info-select-node): Reset Info-history-forward to nil.
34504 (Info-last): Turn into defalias.
34505 (Info-history-back): Rename from Info-last.
34506 Add current node to Info-history-forward.
34507 (Info-history-forward): New fun.
34508 (Info-mode-map): Replace Info-last by Info-history-back.
34509 Bind Info-history-forward to "r".
34510 (Info-mode-menu): Replace Info-last by Info-history-back.
34511 Fix menu item text. Add menu item for Info-history-forward.
34512 (info-tool-bar-map): Replace Info-last by Info-history-back.
34513 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
34514 for Info-history-forward.
34515 (Info-mode): Replace Info-last by Info-history-back in docstring.
34516 Add local variable Info-history-forward.
34517 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
34518
34519 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
34520
34521 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
34522 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
34523 Ignore select-window events rather than fiddle with
34524 mouse-autoselect-window.
34525
34526 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
34527
34528 * type-break.el (type-break-mode): Fix previous change.
34529
34530 2005-01-10 Jay Belanger <belanger@truman.edu>
34531
34532 * calc/calc-ext.el (calc-reset): Reset when inside embedded
34533 calculator; only reset when point is inside a calculator.
34534 Don't adjust the window height if the window takes up the whole height
34535 of the frame.
34536
34537 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
34538
34539 * ebuff-menu.el (Electric-buffer-menu-mode):
34540 Preserve value of buffer-local var header-line-format.
34541
34542 2005-01-09 Jay Belanger <belanger@truman.edu>
34543
34544 * calc/calc.el (calc-mode-var-list-restore-saved-values):
34545 Make sure settings file exists before accessing it.
34546
34547 * calc/calc-embed.el (calc-embedded-subst):
34548 Replace math-multi-subst-rec, which is only supposed to be called
34549 by math-multi-subst, by math-multi-subst.
34550
34551 2005-01-09 Andre Spiegel <spiegel@gnu.org>
34552
34553 * vc.el (vc-allow-async-revert): New user option.
34554 (vc-disable-async-diff): New internal variable.
34555 (vc-revert-buffer): Use them to disable asynchronous diff.
34556
34557 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
34558 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
34559 asynchronously if vc-disable-async-diff is t.
34560
34561 2005-01-09 Jay Belanger <belanger@truman.edu>
34562
34563 * calc/calc.el (defcalcmodevar): New macro.
34564 (calc-mode-var-list-restore-default-values)
34565 (calc-mode-var-list-restore-saved-values): New functions.
34566 (calc-mode-var-list): Use defcalcmodevar to define it.
34567 (calc-always-load-extensions, calc-line-numbering)
34568 (calc-line-breaking, calc-display-just, calc-display-origin)
34569 (calc-number-radix, calc-leading-zeros, calc-group-digits)
34570 (calc-group-char, calc-point-char, calc-frac-format)
34571 (calc-prefer-frac, calc-hms-format, calc-date-format)
34572 (calc-float-format, calc-full-float-format, calc-complex-format)
34573 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
34574 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
34575 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
34576 (calc-matrix-brackets, calc-language, calc-language-option)
34577 (calc-left-label, calc-right-label, calc-word-size)
34578 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
34579 (calc-display-raw, calc-internal-prec, calc-angle-mode)
34580 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
34581 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
34582 (calc-window-height, calc-display-trail, calc-show-selections)
34583 (calc-use-selections, calc-assoc-selections)
34584 (calc-display-working-message, calc-auto-why, calc-timing)
34585 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
34586 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
34587 (calc-gnuplot-default-device, calc-gnuplot-default-output)
34588 (calc-gnuplot-print-device, calc-gnuplot-print-output)
34589 (calc-gnuplot-geometry, calc-graph-default-resolution)
34590 (calc-graph-default-resolution-3d, calc-invocation-macro)
34591 (calc-show-banner): Use defcalcmodevar to declare them and set
34592 their default values.
34593
34594 * calc/calc-ext.el (calc-reset): Restore saved values of variables
34595 instead of default values (but restore default values if there is
34596 an argument of 0).
34597
34598 2005-01-09 David Kastrup <dak@gnu.org>
34599
34600 * desktop.el (desktop-restore-eager): Fix typo in type.
34601
34602 2005-01-08 Richard M. Stallman <rms@gnu.org>
34603
34604 * cus-edit.el (customize): Delete :link.
34605
34606 2005-01-08 Jay Belanger <belanger@truman.edu>
34607
34608 * calc/calc.el (calc-mode): Remove the extension from the
34609 `calc-settings-file' file name when loading it.
34610
34611 2005-01-08 Kim F. Storm <storm@cua.dk>
34612
34613 * info.el (Info-mode-map, Info-next-link-keymap)
34614 (Info-prev-link-keymap, Info-up-link-keymap):
34615 Map follow-link to mouse-face.
34616 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
34617
34618 2005-01-08 Jay Belanger <belanger@truman.edu>
34619
34620 * calc/calc.el (calc-settings-file): Change default value.
34621 Suggested by cgw in a comment in calc-mode.el.
34622
34623 * calc/calc-mode.el (calc-settings-file-name):
34624 Compare calc-settings-file to user-init-file instead of ~/.emacs.
34625 Replace ~/.emacs in a prompt by calc-settings-file.
34626
34627 2005-01-07 Lars Hansen <larsh@math.ku.dk>
34628
34629 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
34630 (desktop-lazy-idle-delay): New customizable variables.
34631 (desktop-buffer-args-list): New variable.
34632 (desktop-append-buffer-args): New function.
34633 (desktop-save): Call desktop-append-buffer-args for some buffers.
34634 (desktop-lazy-create-buffer): New function.
34635 (desktop-idle-create-buffers): New function.
34636 (desktop-read): Add message about buffers to restore lazily.
34637 (desktop-lazy-abort): New command.
34638 (desktop-clear): Call desktop-lazy-abort.
34639 (desktop-lazy-complete): New command.
34640
34641 2005-01-06 Richard M. Stallman <rms@gnu.org>
34642
34643 * emacs-lisp/find-func.el (find-face-definition):
34644 Rename from find-face.
34645
34646 2005-01-06 Kim F. Storm <storm@cua.dk>
34647
34648 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
34649
34650 * man.el (Man-xref-man-page, Man-xref-header-file)
34651 (Man-xref-normal-file): Add follow-link property.
34652
34653 2005-01-06 Jay Belanger <belanger@truman.edu>
34654
34655 * calc/calc-units.el: Make sure the proper macro definitions are
34656 available when compiling.
34657
34658 2005-01-06 Juri Linkov <juri@jurta.org>
34659
34660 * isearch.el (isearch-lazy-highlight-update):
34661 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
34662
34663 2005-01-06 Miles Bader <miles@gnu.org>
34664
34665 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
34666 (isearch-lazy-highlight-face): Use new name.
34667
34668 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
34669
34670 * uniquify.el (uniquify-rationalize-file-buffer-names):
34671 Re-add an interactive spec.
34672 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
34673 to the same name.
34674
34675 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
34676 (isearch-update, isearch-done): Adjust calls accordingly.
34677
34678 2005-01-05 Richard M. Stallman <rms@gnu.org>
34679
34680 * custom.el (custom-set-variables, custom-theme-set-variables):
34681 Clarify documentation.
34682
34683 * emacs-lisp/find-func.el (find-variable)
34684 (find-variable-other-window, find-variable-other-frame):
34685 Fix the TYPE args to find-function-read and find-function-do-it.
34686 (find-function): Doc fix.
34687 (find-function-at-point): Replace function-at-point alias.
34688
34689 2005-01-04 Richard M. Stallman <rms@gnu.org>
34690
34691 * cus-face.el (custom-declare-face):
34692 Record defface in current-load-list.
34693
34694 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
34695
34696 * emacs-lisp/find-func.el: Doc fixes.
34697 (find-face-regexp): New variable.
34698 (find-function-regexp-alist): New variable.
34699 (find-function-C-source): Third arg is now TYPE.
34700 (find-function-search-for-symbol): Handle general TYPE.
34701 (find-function-read, find-function-do-it): Handle general TYPE.
34702 (find-definition-noselect, find-face): New functions.
34703 (function-at-point): Alias deleted.
34704
34705 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
34706
34707 * battery.el (display-battery-mode): Rename from display-battery.
34708 Handle the case where it gets turned off.
34709
34710 2005-01-04 Richard M. Stallman <rms@gnu.org>
34711
34712 * cus-edit.el (customize): Make :link point to user doc.
34713
34714 * man.el (Man-fontify-manpage): Turn off undo generation.
34715
34716 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
34717
34718 2005-01-04 Andreas Schwab <schwab@suse.de>
34719
34720 * files.el (insert-directory): Only look for error lines in
34721 inserted text. Don't move too far after processing --dired markers.
34722
34723 2005-01-04 Richard M. Stallman <rms@gnu.org>
34724
34725 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
34726 Don't expand if the character is @, period, dash, etc.
34727 (define-mail-abbrev): Quote names that contain problem characters.
34728
34729 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
34730
34731 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
34732
34733 2005-01-03 Richard M. Stallman <rms@gnu.org>
34734
34735 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
34736 (query-replace-highlight, query-replace-lazy-highlight)
34737 (query-replace): Definitions moved up. Doc fix.
34738
34739 2005-01-03 Richard M. Stallman <rms@gnu.org>
34740
34741 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
34742 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
34743 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
34744 (lazy-highlight-face): Rename from isearch-lazy-...
34745 Change all references to them.
34746
34747 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
34748
34749 * cus-edit.el (custom-file): Doc fix for defcustom.
34750 (custom-file): The function no longer sets the variable
34751 `custom-file' to its return value.
34752
34753 * startup.el (command-line): No longer load `custom-file'.
34754
34755 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
34756
34757 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
34758
34759 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
34760 Don't confuse module-prefixed identifiers for labels.
34761 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
34762
34763 2005-01-02 Richard M. Stallman <rms@gnu.org>
34764
34765 * files.el (basic-save-buffer-1): Fix previous change.
34766
34767 * loadhist.el (file-loadhist-lookup): New function.
34768 (file-provides, file-requires): Use it.
34769
34770 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
34771 instead of calculating the right size.
34772
34773 2005-01-02 Karl Chen <quarl@cs.berkeley.edu>
34774
34775 * vc-svn.el (vc-svn-diff): Stay local if possible.
34776
34777 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
34778
34779 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
34780
34781 * files.el (hack-local-variables): Fix last change.
34782
34783 2005-01-02 Jay Belanger <belanger@truman.edu>
34784
34785 * calc/calc-yank.el (calc-edit-top): New variable.
34786 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
34787 object. Change header properties.
34788 (calc-edit-finish, calc-edit-finish-stack-object)
34789 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
34790 edited object.
34791 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
34792 for the beginning of the edited object.
34793 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
34794 for the beginning of the edited object.
34795 * calc/calc-prog.el (calc-edit-macro-finish-edit)
34796 (calc-finish-formula-edit, calc-macro-repeats)
34797 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
34798 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
34799 beginning of the edited object.
34800 (calc-user-define-edit): Change the header for editing macros.
34801 Remove unnecessary variable.
34802
34803 2005-01-01 Jay Belanger <belanger@truman.edu>
34804
34805 * calc/calc-yank.el (calc-edit-mode): Change default header.
34806 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
34807 * calc/calc-store.el (calc-edit-variable): Change title to match new
34808 header.
34809 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
34810 mode to match new header.
34811 (calc-user-define-edit): Change titles to include names of commands.
34812 (calc-finish-formula-edit): Adjust to handle new header.
34813 (calc-finish-macro-edit): Remove.
34814 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
34815 (calc-edit-macro-command, calc-edit-macro-command-type)
34816 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
34817 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
34818 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
34819 (calc-edit-macro-finish-edit): New functions.
34820 (calc-user-define-edit): Use new functions to edit named calc macros.
34821
34822 2005-01-01 Stefan Monnier <monnier@iro.umontreal.ca>
34823
34824 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
34825
34826 * ses.el (copy-region-as-kill): Deactivate mark.
34827
34828 2005-01-01 Richard M. Stallman <rms@gnu.org>
34829
34830 * replace.el (occur-1): If the output buffer is also an input,
34831 don't kill it, rename it.
34832
34833 * faces.el (set-face-background, set-face-foreground): Doc fix.
34834
34835 * cus-face.el (custom-face-attributes): Fix :help-echo strings
34836 for :foreground and :background.
34837
34838 * dired.el (dired-view-command-alist): Variable deleted.
34839 (dired-view-file, dired-mouse-find-file-other-window):
34840 Delete the code to use it.
34841
34842 2005-01-01 Kim F. Storm <storm@cua.dk>
34843
34844 * image.el (insert-sliced-image): Use t for line-height property.
34845
34846 See ChangeLog.11 for earlier changes.
34847
34848 ;; Local Variables:
34849 ;; coding: iso-2022-7bit
34850 ;; add-log-time-zone-rule: t
34851 ;; End:
34852
34853 Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
34854
34855 This file is part of GNU Emacs.
34856
34857 GNU Emacs is free software; you can redistribute it and/or modify
34858 it under the terms of the GNU General Public License as published by
34859 the Free Software Foundation; either version 3, or (at your option)
34860 any later version.
34861
34862 GNU Emacs is distributed in the hope that it will be useful,
34863 but WITHOUT ANY WARRANTY; without even the implied warranty of
34864 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34865 GNU General Public License for more details.
34866
34867 You should have received a copy of the GNU General Public License
34868 along with GNU Emacs; see the file COPYING. If not, write to the
34869 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
34870 Boston, MA 02110-1301, USA.
34871
34872 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1