1 2004-12-28 Richard M. Stallman <rms@gnu.org>
3 * simple.el (buffer-disable-undo): Fix previous change.
5 2004-12-27 Masatake YAMATO <jet@gyve.org>
7 * hexl.el (hexlify-buffer): Remove fontification here.
8 Use font lock mechanism instead.
9 (hexl-font-lock-keywords): New font lock kewords.
10 (hexl-mode-old-font-lock-keywords): New variable.
11 (hexl-mode): Store the old font lock keywords.
12 (hexl-mode-exit): Restore the old font lock keywords.
14 2004-12-27 Richard M. Stallman <rms@gnu.org>
16 * simple.el (undo): Fix previous change.
18 2004-12-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20 * term/mac-win.el: Sync with x-win.el. Rearrange the contents.
21 Call mac-clear-font-name-table if invoked on Mac OS 8/9. Call
22 x-open-connection on Mac OS X.
24 2004-12-27 Richard M. Stallman <rms@gnu.org>
26 * files.el (buffer-save-without-query): New var (buffer-local).
27 (save-some-buffers): Save those buffers first, w/o asking.
29 * files.el (insert-directory-ls-version): New variable.
30 (insert-directory): When ls returns an error, test the version
31 number to decide what the return code means.
32 With --dired output format, detect and distinguish lines
33 that are really error messages.
34 (insert-directory-adj-pos): New function.
36 * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
38 * battery.el (battery-mode-line-format): Remove initial spaces.
40 * uniquify.el (uniquify-rationalize-file-buffer-names):
41 Delete interactive spec.
43 * type-break.el (type-break-mode): Set buffer-save-without-query.
44 Remove code that tried to set save-some-buffers-always.
45 (type-break-file-keystroke-count): Bind deactivate-mark.
47 * mouse.el (mouse-drag-region): Bind mouse-autoselect-window.
49 * simple.el (next-error-buffer-p): New arg AVOID-CURRENT.
50 Test that the buffer is live, and maybe reject current buffer too.
52 (next-error-find-buffer): Rewrite for clarity.
54 * loadup.el: Don't use buffer-disable-undo; do it directly.
56 * help-fns.el (describe-function-1): Call symbol-file with `defun'.
57 (describe-variable): Call symbol-file with `defvar'.
59 * subr.el (messages-buffer-max-lines): Alias for message-log-max.
60 (symbol-file): Rewritten to handle new load-history format.
61 Now takes an arg TYPE to specify looking for a particular
62 type of definition only.
64 * emacs-lisp/debug.el (debugger-make-xrefs):
65 Call symbol-file with `defun'.
67 * emacs-lisp/find-func.el (find-function-noselect):
68 Call symbol-file with `defun'.
69 (find-variable-noselect): Call symbol-file with `defvar'.
71 * eshell/esh-cmd.el (eshell-find-alias-function):
72 Call symbol-file with `defun'.
74 * eshell/esh-test.el (eshell-test-goto-func):
75 Call symbol-file with `defun'.
77 * mail/rmail.el (rmail-resend):
78 Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
80 * net/goto-addr.el (goto-address-mail-regexp): Allow = in username.
82 * progmodes/compile.el (compilation-find-buffer): Rename arg.
84 * textmodes/texinfmt.el (texinfo-format-buffer-1):
85 Call buffer-disable-undo.
87 * simple.el (undo-list-saved): New variable (buffer-local).
88 (undo): Set and test it.
89 (buffer-disable-undo): Moved here from buffer.c.
90 Clear out undo-list-saved.
92 * international/mule.el (decode-coding-inserted-region):
93 Set buffer-undo-list in a correct and optimal way.
95 * progmodes/cperl-mode.el (cperl-find-bad-style): Use with-no-warnings.
96 (cperl-font-lock-unfontify-region-function): No need to save and
97 restore info, since font-lock.el does it for us.
99 * ansi-color.el (save-buffer-state): Definition deleted.
100 (ansi-color-unfontify-region): Don't use save-buffer-state.
102 2004-12-27 Dave Love <fx@gnu.org>
104 * wid-edit.el (function): Use restricted-sexp as parent.
106 2004-12-27 Kevin Ryde <user42@zip.com.au>
108 * simple.el (next-matching-history-element): Use same
109 `interactive' form as previous-matching-history-element.
111 * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
112 it can appear unencoded and has been seen from yahoo.
114 2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
116 * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
117 in upper case. Reported by Wojciech Polak <polak@gnu.org>.
119 2004-12-27 Kenichi Handa <handa@m17n.org>
121 * international/utf-8.el (utf-translate-cjk-load-tables): Bind
122 coding-system-for-read to nil while loading subst-*.
124 2004-12-26 Jay Belanger <belanger@truman.edu>
126 * calc/calc-store.el (calc-read-var-name): Remove "var-" from
129 2004-12-26 Luc Teirlinck <teirllm@auburn.edu>
131 * buff-menu.el (Buffer-menu-revert-function): Clear out undo info
132 before reverting and disable undo recording while reverting.
134 2004-12-26 Thien-Thi Nguyen <ttn@gnu.org>
136 * progmodes/hideshow.el (hs-set-up-overlay): New user var.
137 (hs-make-overlay): New function.
138 (hs-isearch-show-temporary): Handle `display' overlay prop specially.
139 (hs-flag-region): Delete function.
140 (hs-hide-comment-region): No longer use `hs-flag-region'.
141 Instead, use `hs-discard-overlays' and `hs-make-overlay'.
142 (hs-hide-block-at-point): Likewise.
143 (hs-hide-level-recursive): Use `hs-discard-overlays'.
144 (hs-hide-all, hs-show-all): Likewise.
145 (hs-show-block): Likewise.
146 Also, use overlay prop `hs-b-offset', not `hs-ofs'.
148 2004-12-24 Thien-Thi Nguyen <ttn@gnu.org>
150 * progmodes/hideshow.el: Require `cl' when compiling.
151 Remove XEmacs and Emacs 19 compatibility.
152 Use `dolist' and `add-to-list' for load-time actions.
153 (hs-discard-overlays): Use `dolist'.
154 (hs-show-block): Likewise.
156 2004-12-23 Dan Nicolaescu <dann@ics.uci.edu>
158 * faces.el (mode-line, mode-line-inactive): Use min-colors.
160 2004-12-23 Thien-Thi Nguyen <ttn@gnu.org>
162 * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
163 When extending backwards, move outside the current comment first.
165 2004-12-22 Kenichi Handa <handa@m17n.org>
167 * international/quail.el (quail-start-translation): Fix prompt
168 string for the case if input-method-use-echo-area being non-nil.
169 (quail-start-conversion): Likewise.
170 (quail-show-guidance): Don't show guidance if
171 input-method-use-echo-area is non-nil.
173 2004-12-21 Richard M. Stallman <rms@gnu.org>
175 * textmodes/ispell.el (ispell-help): Bind resize-mini-windows.
177 2004-12-21 Markus Rost <rost@ias.edu>
179 * calendar/diary-lib.el (mark-diary-entries): Set
180 mark-diary-entries-in-calendar only after checking for diary-file.
182 2004-12-21 Richard M. Stallman <rms@gnu.org>
184 * faces.el (escape-glyph): Use blue against light foreground.
186 * simple.el (undo-outer-limit-truncate): New function.
187 (undo-outer-limit-function): Use undo-outer-limit-truncate.
189 2004-12-21 Eli Barzilay <eli@barzilay.org>
191 * calculator.el: (calculator-radix-grouping-mode)
192 (calculator-radix-grouping-digits)
193 (calculator-radix-grouping-separator):
194 New defcustoms for the new radix grouping mode functionality.
195 (calculator-mode-hook): Now used in electric mode too,
196 (calculator): Call it.
197 (calculator-mode-map): Some new keys.
198 (calculator-message): New function. Some new calls.
199 (calculator-op, calculator-set-register): Use it.
200 (calculator-string-to-number): New function, mostly moved and
201 updated code from calculator-curnum-value.
202 (calculator-curnum-value): Use it.
203 (calculator-paste): Use it, and update grabbing the
205 (calculator-rotate-displayer)
206 (calculator-rotate-displayer-back): Toggle digit grouping when
207 in radix mode, use calculator-message.
208 (calculator-displayer-prev, calculator-displayer-next): Change
209 digit group size when in radix mode.
210 (calculator-number-to-string): Renamed from
211 calculator-num-to-string. Now deals with digit grouping in
213 (calculator-update-display, calculator-put-value): Use the new
215 (calculator-fact): Return a floating point number.
216 (calculator-mode): Doc fix.
218 2004-12-20 Glenn Morris <gmorris@ast.cam.ac.uk>
220 * calendar/calendar.el (view-other-diary-entries): Add autoload.
221 * calendar/diary-lib.el (view-other-diary-entries): Use
222 current-prefix-arg in interactive spec.
224 2004-12-19 Jay Belanger <belanger@truman.edu>
226 * calc/calc-aent.el (calcAlg-blank-matching-open):
227 Temporarily adjust the syntax of both delimiters of half-open
230 2004-12-19 Kim F. Storm <storm@cua.dk>
232 * mouse.el (mouse-1-click-follows-link): Doc fix.
234 2004-12-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
236 * term/mac-win.el (encoding-vector, mac-font-encoder-list)
237 (ccl-encode-mac-centraleurroman-font): Use centraleurroman
238 instead of centraleuropean as the name
240 2004-12-17 Michael Albinus <michael.albinus@gmx.de>
242 Sync with Tramp 2.0.46.
244 * net/tramp.el (tramp-maybe-send-perl-script): Change order of
245 parameters wrt Tramp convention.
246 (tramp-handle-file-attributes-with-perl)
247 (tramp-handle-directory-files-and-attributes): Apply it.
248 (tramp-do-copy-or-rename-file-out-of-band): Check for existence of
249 `copy-program'. Reported by Zack Weinberg
250 <zack@codesourcery.com>.
251 (top): Set `edebug-form-spec' property directly rather than
252 calling `def-edebug-spec'.
254 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Make the
255 advice less fragile. Surround temporary redefinition of
256 `substitute-in-file-name' with `unwind-protect'. Suggested by
257 Matt Hodges <MPHodges@member.fsf.org>.
259 2004-12-17 Juri Linkov <juri@jurta.org>
261 * replace.el (occur-accumulate-lines, occur-engine):
262 Make forcing deferred font-lock fontification jit-specific.
264 2004-12-17 Kim F. Storm <storm@cua.dk>
266 * mouse.el (mouse-1-click-follows-link): New defcustom.
267 (mouse-on-link-p): New function.
268 (mouse-drag-region-1): Implement mouse-1-click-follows-link
269 functionality. Map a mouse-1 click event into a mouse-2 (or
270 other) event when position is inside a link.
272 * tooltip.el (tooltip-show-help-function): Replace "mouse-2"
273 prefix in tooltip text with "mouse-1" when this is a link
274 recognized by mouse-1-click-follows-link functionality.
276 * help.el (describe-key): Report effective and original binding
277 for mouse-1 when clicked on a link.
278 (describe-mode): Add follow-link property to "minor-mode" button.
280 * help-fns.el (describe-variable): Add follow-link property to
283 * help-mode.el (help-xref): Add follow-link property.
285 * apropos.el (apropos-symbol, apropos-function, apropos-macro)
286 (apropos-command, apropos-variable, apropos-face, apropos-group)
287 (apropos-widget, apropos-plist): Add follow-link property.
289 * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which
290 checks if position is in a filename, rather than some other
291 clickable item. Function looks for cvs-filename-face at position.
293 * wid-edit.el (widget-specify-field, widget-specify-button):
294 Map a :follow-link keyword into a follow-link property.
295 (link): Add :follow-link keyword, map to RET binding.
297 * dired.el (dired-mode-map): Map follow-link to mouse-face.
299 * progmodes/compile.el (compilation-minor-mode-map)
300 (compilation-button-map, compilation-mode-map): Likewise.
302 2004-12-17 Thien-Thi Nguyen <ttn@gnu.org>
304 * play/zone.el (zone): Init `line-spacing' from orig buffer.
305 (zone-replace-char): Take `count' and `del-count'
306 instead of `direction'. Update callers. When `del-count' is
307 non-nil, delete that many characters, otherwise `count' characters
308 backwards. Insert the newly-replaced string `count' times.
309 (zone-fret): Handle chars w/ width greater than one.
310 (zone-fall-through-ws): No longer take window width `ww'.
311 Update callers. Add handling for `char-width' greater than one.
312 (zone-pgm-drip): Update var holding window-end position every cycle.
314 2004-12-17 Andre Spiegel <spiegel@gnu.org>
316 * vc.el (vc-default-update-changelog): Use insert-file-contents,
317 rather than insert-file.
319 2004-12-16 Jay Belanger <belanger@truman.edu>
321 * calc/calc-comb.el (var-RandSeed): Don't initially bind it.
322 (math-init-random-base, math-random-digit): Check to see if
323 var-RandSeed is bound.
324 (math-random-last): Declare it.
325 (math-random-digit): Don't make math-random-last local.
327 2004-12-16 Thien-Thi Nguyen <ttn@gnu.org>
329 * play/zone.el (zone): Fix omission bug: Use a self-disabling
330 one-shot thunk for uniform (error, quit, normal) recovery.
331 Reported by John Paul Wallington.
332 (zone-pgm-random-life): Fix bug:
333 Recognize empty initial field by lack of "@" chars.
335 2004-12-16 Juri Linkov <juri@jurta.org>
337 * help.el (function-called-at-point):
338 * help-fns.el (variable-at-point): As a last resort try striping
339 non-word prefixes and suffixes.
341 * descr-text.el (describe-property-list): Don't treat syntax-table
342 specially. Use describe-text-sexp which inserts [show] button
343 for large objects and handles printing errors. Sort properties
344 by names in alphabetical order instead of by value sizes.
345 Add `mouse-face' to list of properties for `describe-face' widget.
346 (describe-char): Mask out face-id from 19 bits of character.
347 Print face-id separately.
349 * replace.el (occur-accumulate-lines, occur-engine):
350 Fontify unfontified matching lines in the source buffer
352 (occur-engine): Don't put mouse-face on context lines.
353 (occur-next-error): Set point to line beginning/end
354 before searching for prev/next property to skip multiple
355 matches on a line (not supported by occur engine).
356 Remove redundant prefix-numeric-value.
358 2004-12-15 Juri Linkov <juri@jurta.org>
360 * replace.el (match): New face.
361 (list-matching-lines-face): Change default from `bold' to `match'.
363 * progmodes/grep.el (grep-match-face): New defvar.
364 (grep-mode-font-lock-keywords): Use grep-match-face instead of
365 compilation-column-face to highlight grep matches.
367 * apropos.el (apropos-match-face): Change default from
368 `secondary-selection' to `match'.
370 * info-look.el (info-lookup-highlight-face): Change default from
371 `highlight' to `match'.
373 2004-12-15 Daniel Pfeiffer <occitan@esperanto.org>
375 * progmodes/executable.el (executable-interpret): Eliminate
376 obsolete compile-internal, and switch to comint for interaction.
378 2004-12-15 J.D. Smith <jdsmith@as.arizona.edu>
380 * progmodes/idlwave.el (idlwave-skip-multi-commands): Don't match
381 `&&' when skipping multiple statements on a line.
383 2004-12-15 Thien-Thi Nguyen <ttn@gnu.org>
385 * play/zone.el (zone): Set `truncate-lines'.
386 Also, init `tab-width' with value from original buffer.
387 (zone-shift-up): Rewrite for speed.
388 (zone-shift-down, zone-shift-left, zone-shift-right): Likewise.
389 (zone-pgm-jitter): Remove redundant entries from ops vector.
390 (zone-exploding-remove): Reduce iteration count.
391 (zone-cpos): Convert to defsubst.
392 (zone-replace-char): New defsubst.
393 (zone-park/sit-for): Likewise.
394 (zone-fret): Take window-start arg.
395 Update callers. Use `zone-park/sit-for'.
396 (zone-fill-out-screen): Rewrite.
397 (zone-fall-through-ws): Likewise. Update callers.
398 (zone-pgm-drip): Use `zone-replace-char'.
399 Move var inits before while-loop. Use `zone-park/sit-for'.
400 (zone-pgm-random-life): Handle empty initial field.
401 Use `zone-replace-char' and `zone-park/sit-for'.
403 2004-12-15 Juri Linkov <juri@jurta.org>
405 * isearch.el (isearch-update): Test isearch-lazy-highlight
406 before calling isearch-lazy-highlight-new-loop.
407 (isearch-lazy-highlight-new-loop):
408 Don't test isearch-lazy-highlight.
410 * replace.el (perform-replace): Add isearch-case-fold-search.
411 Use delimited-flag for isearch-regexp.
412 Reset isearch-lazy-highlight-last-string to force lazy
413 highlighting when called from isearch mode.
414 (query-replace-highlight): Revert defcustom type to boolean.
415 (query-replace-lazy-highlight): New defcustom.
416 (query-replace): New face.
417 (perform-replace, replace-highlight, replace-dehighlight):
418 Test query-replace-lazy-highlight instead of special value
419 `isearch' of query-replace-highlight.
420 (replace-dehighlight): Don't call isearch-dehighlight.
421 (replace-highlight): Don't call isearch-highlight.
422 Use face `query-replace' unconditionally.
424 2004-12-14 Kim F. Storm <storm@cua.dk>
426 * simple.el (inhibit-mark-movement): Remove defvar.
427 (beginning-of-buffer, end-of-buffer): Don't use it.
429 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun): Don't
430 use inhibit-mark-movement.
432 * emulation/cua-base.el (cua--preserve-mark-commands): Remove.
433 (cua--undo-push-mark): Remove.
434 (cua--pre-command-handler, cua--post-command-handler): Don't
435 fiddle with inhibit-mark-movement.
437 2004-12-14 Juri Linkov <juri@jurta.org>
439 * buff-menu.el (list-buffers-noselect): Collect internal info
440 for every buffer in BUFFER-LIST arg too.
441 (Buffer-menu-switch-other-window): Bind pop-up-windows to t.
442 (Buffer-menu-switch-other-window, Buffer-menu-2-window):
443 Bind same-window-buffer-names and same-window-regexps to nil.
445 2004-12-13 Juri Linkov <juri@jurta.org>
447 * simple.el (next-error-buffer-p, next-error-find-buffer):
450 * mail/supercite.el (sc-cite-frame-alist): Doc fix.
451 (sc-cite-region, sc-uncite-region, sc-recite-region):
452 Fix previous change to handle not alist as a symbol, but
453 a citation frame as a symbol that represents a variable name.
455 2004-12-13 Richard M. Stallman <rms@gnu.org>
457 * filecache.el (file-cache-add-directory-using-find):
458 Only set up file-cache-find-command-posix-flag if we will use it.
460 * bindings.el (mode-line-buffer-identification-keymap):
461 Don't cancel the mode-line's usual down-mouse-1 binding.
463 * cus-edit.el (custom-face-selected): Handle `default' specs.
464 (custom-face-edit): Increase extra-offset.
465 (custom-display): Handle `default' specs.
467 * xml.el (xml-name-re, xml-entity-value-re): Add defvars.
469 * emacs-lisp/elint.el (elint-standard-variables)
470 (elint-unknown-builtin-args): Move definitions up.
472 * net/browse-url.el (browse-url-url-at-point): Add autoload.
474 * info.el (info-xref-visited): Use `default' instead of t.
475 (Info-try-follow-nearest-node): Don't explicitly load browse-url.
477 * faces.el (header-line, mode-line-inactive, tool-bar):
478 Use `default' instead of t for setting the defaults.
479 (face-spec-choose): Separate `t' from `default'.
481 * subr.el (while-no-input): New macro.
483 2004-12-13 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE> (tiny change)
485 * filecache.el (file-cache-add-directory-using-find):
486 Only test file-cache-find-command-posix-flag on some systems.
488 2004-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
490 * vc-svn.el (vc-svn-repository-hostname): Adjust to new format.
491 Reported by Ville Skytt
\e,Ad
\e(B <scop@xemacs.org>.
492 (vc-svn-annotate-current-time, vc-svn-annotate-time-of-rev)
493 (vc-svn-annotate-time, vc-svn-annotate-extract-revision-at-line)
494 (vc-svn-annotate-command, vc-svn-annotate-re): Support for svn annotate.
496 2004-12-12 Juri Linkov <juri@jurta.org>
498 * files.el (find-file-other-window, find-file-other-frame):
499 Add the first buffer to the returned value to return the complete
500 list of all visited buffers.
501 (find-file-read-only, find-file-read-only-other-window)
502 (find-file-read-only-other-frame): Use nil for `mustmatch' arg of
503 `find-file-read-args'. Signal an error about non-existent file
504 only if file name doesn't contain wildcards. Toggle read-only in
506 (find-alternate-file, find-alternate-file-other-window):
507 Add optional arg `wildcards'. Doc fix. Set `wildcards' to t when
508 called interactively. Pass arg `wildcards' to other functions.
509 (find-file-noselect): Doc fix.
511 * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'".
513 (ffap-directory-finder): New variable.
514 (ffap-string-at-point-mode-alist): Add * and ? to `file'.
515 (ffap-file-at-point): Add /* to immediately rejected names.
516 Return absolute file names matching ffap-dired-wildcards.
517 (ffap-read-file-or-url): Set default value for `completing-read'
518 to `buffer-file-name'.
519 (find-file-at-point): When filename matches ffap-dired-wildcards,
520 call ffap-file-finder with t arg `wildcards', instead of dired.
521 (ffap-other-window, ffap-other-frame): Return visited buffers.
522 (ffap-read-only, ffap-read-only-other-window)
523 (ffap-read-only-other-frame, ffap-alternate-file): New commands.
524 (dired-at-point): Call ffap-directory-finder instead of dired.
525 (ffap-dired-other-window, ffap-dired-other-frame)
526 (ffap-list-directory): New commands.
527 (ffap-bindings): New keybindings for new commands.
529 2004-12-12 Juri Linkov <juri@jurta.org>
531 * simple.el (beginning-of-buffer, end-of-buffer):
532 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
533 Do not push mark when mark is active in transient-mark-mode.
535 * simple.el (mark-word):
536 * emacs-lisp/lisp.el (mark-sexp, mark-defun):
537 * textmodes/paragraphs.el (mark-paragraph):
538 Extend the region when mark is active in transient-mark-mode,
539 regardless of the last command. Doc fix.
541 * simple.el (mark-word): Preserve direction when repeating.
542 Make arg optional. Interactive "p" -> "P".
543 (transient-mark-mode, inhibit-mark-movement): Doc fix.
545 * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for
546 preserving direction, to mark forward instead of backward when mark
547 is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
549 2004-12-12 Juri Linkov <juri@jurta.org>
551 * isearch.el (isearch-edit-string): Set 7th arg of
552 `read-from-minibuffer' to `t' to inherit the current input
553 method (whose name is indicated by [IM] in the minibuffer prompt)
554 from the current buffer to the minibuffer.
555 (isearch-lazy-highlight-update): Put body to `with-local-quit'
556 to allow C-g quitting for lazy highlighting looping inside the
557 search with nested repetition operators. Add overlay to the list
558 before setting its face and other properties to avoid the case of
559 code quitting after placing the new overlay but before it's
560 recorded on the list. Select the window where isearch was
561 activated, to highlight matches in the right window when isearch
562 switches the current window to the minibuffer.
564 * international/isearch-x.el
565 (isearch-process-search-multibyte-characters):
566 Use `isearch-message' as initial input for `read-string' instead
567 of adding it to the minibuffer prompt. After reading a string
568 remove the initial value of `isearch-message' from the string.
570 * replace.el (replace-match-maybe-edit): Doc fix.
571 (perform-replace): Don't call `replace-highlight' when automatic
572 replacement is requested in literal mode, since it is intended
573 only to highlight words during entering a new replacement string
574 for \? in non-literal mode.
576 * replace.el (query-replace-highlight): Add new value `isearch'
577 that allows query replacement to use isearch highlighting.
578 Change type from `boolean' to `choice'. Doc fix.
579 (replace-highlight, replace-dehighlight, perform-replace):
580 Use isearch highlighting if query-replace-highlight eq `isearch'.
582 2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
584 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
585 (checkdoc-message-text, checkdoc-defun): Fix format messages for `error'.
587 * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special
588 case of \end{verbatim}.
590 2004-12-11 Dan Nicolaescu <dann@ics.uci.edu>
592 * term.el (term-termcap-format): Synchronyze with terminfo.
593 (term-emulate-terminal): Handle reset.
594 (term-reset-terminal): New function.
596 2004-12-11 Thien-Thi Nguyen <ttn@gnu.org>
598 * play/zone.el (zone-programs): Add `zone-pgm-random-life'.
599 (zone-fill-out-screen): New func.
600 (zone-pgm-drip): Use `zone-fill-out-screen'.
601 Also, no longer go to point-min on every cycle.
602 (zone-pgm-paragraph-spaz): Allow spazzing for texinfo-mode.
603 (zone-pgm-random-life-wait): New user var.
604 (zone-pgm-random-life): New func.
606 2004-12-10 Thien-Thi Nguyen <ttn@gnu.org>
608 * files.el (auto-mode-alist): Map .com to DCL mode.
610 2004-12-09 Richard M. Stallman <rms@gnu.org>
612 * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
614 2004-12-09 Nick Roberts <nickrob@snap.net.nz>
616 * xt-mouse.el (xterm-mouse-event): Correct cursor position in a
617 buffer with a display margin.
619 2004-12-08 Jay Belanger <belanger@truman.edu>
621 * calc/calc-keypd.el (calc-keypad-mode): Unbind unused mouse events.
622 (calc-keypad-left-click): Set buffer to calc-keymap-buffer.
624 2004-12-08 Richard M. Stallman <rms@gnu.org>
626 * faces.el: Delete code to set display table.
627 (escape-glyph): Redefine to be less loud. (Copy minibuffer-prompt.)
629 2004-12-08 Jay Belanger <belanger@truman.edu>
631 * calc/calc.el: Add math-read-preprocess-string to autoloads.
633 * calc/calc-ext.el (math-read-replacement-list)
634 (math-read-superscripts, math-read-preprocess-string): Move to
637 * calc/calc-aent.el (math-read-replacement-list)
638 (math-read-superscripts, math-read-preprocess-string): Move from
641 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
643 * isearch.el (isearch-quote-char): Fix up typo in last change.
645 2004-12-07 Luc Teirlinck <teirllm@auburn.edu>
647 * mouse.el (mouse-set-font): Handle the case where the command was
648 not invoked using the mouse.
650 * edmacro.el: `edit-kbd-macro' is now bound to `C-x C-k e'.
651 (edmacro-finish-edit): Further update for keyboard macros that are
653 (edmacro-sanitize-for-string): Correctly remove Meta modifier.
655 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
657 * font-lock.el (font-lock-unfontify-region): Save buffer state.
658 (font-lock-default-unfontify-region): Don't save buffer state any more.
660 2004-12-07 Jay Belanger <belanger@truman.edu>
662 * calc/calc-help.el (calc-describe-key):
663 Set calc-summary-indentation even when Calc Summary buffer exists.
665 2004-12-07 Glenn Morris <gmorris@ast.cam.ac.uk>
667 * calendar/holidays.el (holiday-easter-etc): Make arguments
668 optional for backwards compatibility. Doc fix.
669 Remove un-necessary local vars mandatory, output-list.
670 (holiday-advent): Make arguments optional for backwards
671 compatibility. Doc fix.
673 2004-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
675 * paren.el (show-paren-function): Fix last change (2004-12-02).
677 * international/mule-util.el (char-displayable-p): Return nil for
680 * subr.el (subregexp-context-p): New function.
682 * isearch.el (isearch-quote-char): Use it.
684 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Use it.
685 (regexp-opt-not-groupie*-re): Remove.
686 (regexp-opt): Properly handle inputs with duplicate entries.
688 2004-12-06 Richard M. Stallman <rms@gnu.org>
690 * info-look.el (info-lookup-maybe-add-help cfengine-mode): Regexp typo.
692 * cus-edit.el (custom-file): Doc fix.
694 * textmodes/org.el: New file.
696 2004-12-06 Kenichi Handa <handa@m17n.org>
698 * ldefs-boot.el: Update international/mule-util.el section.
700 2004-12-05 Sam Steingold <sds@gnu.org>
702 * net/tramp.el (tramp-handle-file-accessible-directory-p):
703 Fix `tramp-time-diff' comparison logic.
705 2004-12-05 Paul Pogonyshev <pogonyshev@gmx.net>
707 * progmodes/which-func.el (which-function):
708 Use `run-hook-with-args-until-success' instead of a custom loop.
709 Fixes bug with local hooks.
711 2004-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
713 * textmodes/bibtex.el (bibtex-font-lock-url-regexp):
714 Use delete-dups when calculating the initial value.
715 (bibtex-autokey-get-title): Use <=.
716 (bibtex-goto-line): New function.
717 (bibtex-reposition-window): Use line numbers instead of point
718 positions. Use window-body-height.
719 (bibtex-find-crossref): Use bibtex-reposition-window.
720 (bibtex-find-entry): Use bibtex-reposition-window. Always return
721 position of entry if key is found or nil if not found.
723 2004-12-05 Richard M. Stallman <rms@gnu.org>
725 * cus-edit.el (custom-file): Doc fix.
727 * progmodes/sh-script.el (sh-indent-for-then): Change default.
729 2004-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
731 * simple.el (blink-matching-open):
732 * textmodes/tex-mode.el (tex-validate-region):
733 Obey syntax-table text properties.
735 2004-12-02 Per Abrahamsen <abraham@dina.kvl.dk>
737 * wid-edit.el (widget-specify-field): Add `real-field' property to
739 (widget-field-at): Use it.
741 2004-12-02 Richard M. Stallman <rms@gnu.org>
743 * progmodes/cc-mode.el (awk-mode autoload):
744 Supply t meaning interactive function.
746 * isearch.el (search-whitespace-regexp): Remove the group. Doc fix.
747 (isearch-mode-map): No special definition for space.
748 (isearch-whitespace-chars): Command deleted.
749 (isearch-forward-regexp): Doc fix.
750 (isearch-quote-char): When a space is not inside brackets,
751 use `[ ]' instead of just space.
752 (isearch-lazy-highlight-search): Bind search-spaces-regexp.
754 * imenu.el (imenu--generic-function): Delete code to exclude
757 * man.el (Man-reverse-face): Change default to `highlight'.
759 * replace.el (occur-1): Specify t for KEEP-PROPS to occur-engine.
760 (occur-engine): Use `face' prop rather than `font-lock-face'
761 when specifying use of `match-face'.
762 (occur-accumulate-lines): Change arg from NO-PROPS to KEEP-PROPS.
764 * emacs-lisp/elint.el (elint-standard-variables): Update list.
766 * add-log.el (add-log-current-defun): Handle the case where point
767 is in the header part of a DEFUN construct.
769 2004-12-02 Dave Love <fx@gnu.org>
771 * progmodes/python.el (python-font-lock-syntactic-keywords):
774 2004-12-02 Richard G Bielawski <Richard.G.Bielawski@wellsfargo.com> (tiny change)
776 * paren.el (show-paren-function): Check for matching chars
777 specified by text props.
779 2004-12-02 Jay Belanger <belanger@truman.edu>
781 * calc/calc.el (calc-read-key-sequence): Leave the old message visible
782 when reading a new key sequence.
784 2004-12-02 Kim F. Storm <storm@cua.dk>
786 * faces.el (escape-glyph): Rename from glyph.
787 (standard-display-table): Set it here. Add escape-glyph face to
788 extra slot characters.
790 * disp-table.el: Undo 2004-12-01 change. Display table is now
793 2004-12-02 Mark A. Hershberger <mah@everybody.org>
795 * xml.el (xml-parse-dtd): Don't show validity messages when
796 xml-validating-parser is nil.
797 (xml-substitute-special): Fix validity error messages to
798 actually show the unexpandable entity. Added validity error if &
799 isn't followed by an entity.
800 (xml-parse-tag): Concatenate any string following the a
801 <![CDATA[]]> section to the parsed CDATA.
802 (xml-parse-dtd): Skip parameter entity declarations and use of
805 2004-12-01 Luc Teirlinck <teirllm@auburn.edu>
807 * kmacro.el (kmacro-default-counter-format): New var.
808 (kmacro-set-format): Use it. Delete `(printf format)' from prompt.
809 (kmacro-display): Remove `nil' from `and' form. Delete call to
810 `format' inside `message'.
811 (kmacro-start-macro): Use `kmacro-default-counter-format'.
813 2004-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
815 * pcvs.el (cvs-header-msg): New function.
816 (cvs-update-header): Use it. Change calling convention.
817 Correctly handle the case of having simultaneous active processes.
818 (cvs-sentinel): Don't call cvs-update-header any more.
819 (cvs-mode-run): Update call and add cvs-update-header to postproc.
821 2004-12-01 Jay Belanger <belanger@truman.edu>
823 * calc/calc-ext.el (calc-inverse, calc-hyperbolic):
826 2004-12-01 Juri Linkov <juri@jurta.org>
828 * progmodes/prolog.el (prolog-mode-variables):
829 Fix imenu-generic-expression.
831 2004-12-01 Daniel Pfeiffer <occitan@esperanto.org>
833 * faces.el (glyph): New face.
835 * disp-table.el: Add an autoloaded table, that doesn't require
836 this library, with glyph face.
838 * textmodes/conf-mode.el (conf-ppd-mode-syntax-table): New var.
839 (conf-ppd-mode): New conf-mode wrapper for printer descriptions.
840 (conf-quote-normal): Allow normalizing only ' or ".
841 (conf-mode): Regexp-quote constructed comment-start and don't
842 match section {} where "name" contains braces.
844 * files.el (auto-mode-alist): Add conf-ppd-mode, inittab and acpid
847 2004-12-01 Kenichi Handa <handa@m17n.org>
849 * term/x-win.el (x-last-selected-text-cut-encoded): New variable.
850 (x-select-text): Don't treat eight-bit-control/graphic chars
851 specially. Store the encoded text in the X cut buffer.
852 (x-cut-buffer-or-selection-value): Compare the X cut buffer text
853 with x-last-selected-text-cut-encoded.
855 2004-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
857 * man.el (Man-fontify-manpage): Improve handling of ANSI escapes.
859 2004-11-30 Markus Rost <rost@ias.edu>
861 * textmodes/tex-mode.el (tex-main-file): Add a compatibility with
864 2004-11-30 Jay Belanger <belanger@truman.edu>
866 * calc/calc-arith.el (math-possible-signs): Made stronger checks
867 on signs of intervals.
868 (math-pow-of-zero): Strengthen checks for positive and negative
871 * calc/calc-aent.el, calc/calc-alg.el, calc/calc-arith.el
872 * calc/calc-bin.el, calc/calc-comb.el, calc/calc-cplx.el
873 * calc/calc-embed.el, calc/calc-fin.el, calc/calc-forms.el
874 * calc/calc-frac.el, calc/calc-funcs.el, calc/calc-graph.el
875 * calc/calc-help.el, calc/calc-incom.el, calc/calc-keypd.el
876 * calc/calc-lang.el, calc/calc-map.el, calc/calc-math.el
877 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-mtx.el
878 * calc/calc-poly.el, calc/calc-prog.el, calc/calc-rewr.el
879 * calc/calc-rules.el, calc/calc-sel.el, calc/calc-stat.el
880 * calc/calc-store.el, calc/calc-stuff.el, calc/calc-trail.el
881 * calc/calc-undo.el, calc/calc-units.el, calc/calc-vec.el
882 * calc/calc-yank.el, calc/calcalg2.el, calc/calcalg3.el
883 * calc/calccomp.el, calc/calcsel2.el: Replace dummy autoloaded functions
884 with provide statements.
886 * calc/calc-alg.el (math-defsimplify): Move from calc-ext.el.
888 * calc/calc-embed.el (calc-do-embedded-activate): Remove from autoloads.
890 * calc/calc-ext.el: Remove dummy autoloading functions from autoloads.
891 (calc-load-everything, math-defsimplify): Replace dummy autoloading
892 functions by require statements.
893 (math-defsimplify): Move to calc-alg.el, add to autoloads.
895 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
896 (calc-gnuplot-print): Give them values.
898 * calc/calc.el: Remove calc-Need-calc-aent and calc-Need-calc-misc from
900 Add calc-do-embedded-activate to autoloads.
901 (calc-gnuplot-name, calc-gnuplot-plot-command)
902 (calc-gnuplot-print-command): Move them to calc-graph.el.
904 2004-11-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
906 * term/mac-win.el (ccl-encode-mac-roman-font)
907 (ccl-encode-mac-cyrillic-font)
908 (ccl-encode-mac-centraleuropean-font, encoder-list)
909 (fontset-add-mac-fonts, create-fontset-from-mac-roman-font):
910 Support Cyrillic, CentralEuropean, and Dingbat font display
912 2004-11-30 Andre Spiegel <spiegel@gnu.org>
914 * vc-hooks.el (vc-recompute-state): Move here from vc.el.
916 * vc-cvs.el (vc-cvs-state): Handle the case where vc-state is
919 2004-11-29 Luc Teirlinck <teirllm@auburn.edu>
921 * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
922 (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
924 2004-11-29 Jay Belanger <belanger@truman.edu>
926 * calc/calc-arith.el (math-pow-of-zero): Take into account different
927 cases of the base and exponent.
929 2004-11-26 Teodor Zlatanov <tzz@lifelogs.com>
931 * simple.el (next-error-buffer-p): Allow for inclusive and
932 exclusive tests for finding a buffer.
933 (next-error-find-buffer): Pass the exclusive and inclusive tests
934 to next-error-buffer-p.
936 * replace.el (occur-next-error): Switch to the Occur buffer when
937 appropriate, use the exclusive filter to next-error-find-buffer to
938 do it. Use the absolute value of the motion amount.
940 2004-11-29 Kenichi Handa <handa@m17n.org>
942 * startup.el (command-line): Decode all default-directory by
943 locale-coding-system.
945 2004-11-29 Jay Belanger <belanger@truman.edu>
947 * calc/calc-aent.el: Remove unnecessary eval-when-compile.
948 (calc-do-quick-calc, calc-do-calc-eval, calc-alg-entry)
949 (math-read-expr-level, calc-check-user-syntax, math-read-factor):
950 Replace calls to calc-extensions by appropriate require, replace
951 calc-extensions-loaded by appropriate featurep.
953 * calc/calc-ext.el: Move require to end of file.
954 Remove redundant loading of calc.el.
955 (calc-extensions-loaded): Remove unnecessary variable.
956 (calc-extensions): Remove unnecessary function.
957 (calc-load-everything): Replace calc-need-macros by appropriate require.
959 * calc/calc-macs.el: Move provide to end of file.
960 (calc-need-macros): Remove unnecessary function.
962 * calc/calc-misc.el (calc-do-handle-whys, calc-last-args-stub)
963 (calc-missing-key, calc-shift-Y-prefix-help, math-concat)
964 (math-trunc, math-floor, calcFunc-inv, math-mod, math-pow):
965 Replace calc-extensions by appropriate require.
966 (calc-power): Replace calc-extensions-loaded by appropriate featurep.
968 * calc/calc-prog.el (calc-user-define-formula, calc-do-defmath):
969 Replace calc-need-macros by appropriate require.
971 * calc/calc.el: Move require to end of file.
972 (calc-info-filename, calc-autoload-directory, calc-extensions-loaded):
973 Remove unnecessary variable.
974 (calc-do-dispatch, calc-mode, calc-check-defines, calc-create-buffer)
975 (calc, calc-keypad, full-calc-keypad, calc-do, calc-normalize)
976 (calc-binary-op, calc-unary-op, calcDigit-start, calcDigit-key)
977 (math-normalize, math-add, math-mul, math-div, math-format-stack-value)
978 (math-stack-value-offset, math-format-value, math-format-flat-expr)
979 (math-format-number, math-format-bignum, math-read-number)
980 (calc-grab-region, calc-grab-rectangle, calc-grab-sum-down)
981 (calc-grab-sum-across, calc-embedded, defmath): Replace calc-extensions
982 by appropriate require.
983 (calc-check-defines): Replace calc-need-macros by appropriate require.
985 2004-11-29 Kim F. Storm <storm@cua.dk>
987 * macros.el (insert-kbd-macro): Handle kmacro functions.
989 2004-11-28 Juri Linkov <juri@jurta.org>
991 * compare-w.el (compare-windows-highlight): Attach each overlay
992 to its window to properly highlight differences while comparing
993 two windows of the same buffer. Fix arguments.
994 (compare-windows-sync-default-function): Fix arguments of
995 `compare-windows-highlight'.
997 * emacs-lisp/edebug.el (edebug-set-global-break-condition):
998 Use `read-expression-history'. Set initial contents only if
999 `edebug-global-break-condition' is non-nil. Set histpos to 1
1000 if initial contents is equal to the last history element.
1001 (edebug-set-conditional-breakpoint): Instead of temporarily
1002 prepending the current condition to the history, set initial
1003 contents to the current condition. Set histpos to 1 if initial
1004 contents is equal to the last history element.
1006 * info.el (Info-search-whitespace-regexp): Remove shy group.
1007 (Info-search): Forward line if search is on the header line.
1008 Use search-whitespace-regexp in two other places.
1010 2004-11-27 Luc Teirlinck <teirllm@auburn.edu>
1012 * fringe.el (fringe-indicators): Add fake defvar to avoid compiler
1013 warning. Delay real definition, which uses
1014 `set-fringe-indicators-1' till after the definition of that function.
1016 2004-11-28 Kim F. Storm <storm@cua.dk>
1018 * fringe.el (fringe): New defgroup.
1019 (fringe-mode): Move to fringe group.
1020 (fringe-indicators): New defcustom.
1021 (set-fringe-indicators-1): New defun.
1023 * menu-bar.el (menu-bar-options-save): Add fringe-indicators.
1024 (menu-bar-showhide-fringe-ind-menu): New keymap.
1025 (menu-bar-showhide-fringe-ind-empty)
1026 (menu-bar-showhide-fringe-ind-mixed)
1027 (menu-bar-showhide-fringe-ind-box)
1028 (menu-bar-showhide-fringe-ind-right)
1029 (menu-bar-showhide-fringe-ind-left)
1030 (menu-bar-showhide-fringe-ind-none): New defuns.
1031 (menu-bar-showhide-fringe-menu): Add "Indicators" sub-menu.
1033 2004-11-27 Richard M. Stallman <rms@gnu.org>
1035 * comint.el (comint-read-noecho): Add trivial compatibility definition.
1037 * generic.el (define-generic-mode): Doc fix.
1039 * menu-bar.el (menu-bar-options-save): For the options
1040 that are toggled with menu-bar-make-mm-toggle, don't check
1041 for customized-value prop.
1043 2004-11-27 Eli Zaretskii <eliz@gnu.org>
1045 * mail/supercite.el (sc-cite-region): Handle the case where
1046 sc-cite-frame-alist is a symbol.
1047 (sc-uncite-region): Handle the case where sc-uncite-frame-alist is
1049 (sc-recite-region): Handle the case where sc-recite-frame-alist is
1052 2004-11-27 Arne J
\e,Ax
\e(Brgensen <arne@arnested.dk> (tiny change)
1054 * wid-edit.el (widget-narrow-to-field): New function.
1055 (widget-complete): Use it.
1057 2004-11-27 Jay Belanger <belanger@truman.edu>
1059 * calc/calc-aent.el (calc-eval-error): Declare and initialize the
1061 (calc-eval-error): Don't check if the variable calc-eval-error is bound.
1062 (calc-buffer, calc-digit-value, math-expr-data): Declare them.
1063 (math-alg-inequalities): Move declaration to earlier in the file.
1065 * calc/calc-ext.el (calc-command-flags, calc-gnuplot-buffer)
1066 (calc-gnuplot-input, math-normalize-a, math-integral-cache):
1069 * calc/calc-lang.el (math-expr-data, math-expr-token)
1070 (math-exp-old-pos): Declare them.
1072 * calc/calc-vec.el (math-exp-pos, math-exp-str, math-exp-old-pos)
1073 (math-exp-token, math-exp-keep-spaces, math-expr-data): Declare them.
1075 2004-11-27 Kim F. Storm <storm@cua.dk>
1077 * progmodes/flymake.el: Use (featurep 'xemacs).
1078 (flymake-makehash): Change to defsubst. Use fboundp.
1079 (flymake-time-to-float): Remove.
1080 (flymake-float-time): Merge code from flymake-time-to-float here.
1081 (flymake-replace-regexp-in-string): Change to defsubst.
1082 (flymake-split-string-remove-empty-edges):
1083 Rename to flymake-split-string.
1084 (flymake-split-string): Remove previous defalias.
1085 (flymake-get-temp-dir): Change to defsubst.
1086 (flymake-make-xemacs-menu, flymake-xemacs-window-edges):
1087 Define for xemacs only.
1088 (flymake-master-file-count-limit): Change into compiler defvar only.
1089 (flymake-find-possible-master-files): Let-bind it dynamically while
1090 sorting files using flymake-master-file-compare.
1092 2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
1094 * font-lock.el (font-lock-compile-keywords): Don't complain if the end
1095 of defun-prompt-regexp matches inside a comment/string but the
1096 beginning is correctly outside everything.
1098 * progmodes/tcl.el (tcl-omit-ws-regexp): Avoid the case where { or [
1099 appears within a string or a comment.
1101 * emacs-lisp/cl-macs.el (cl-parse-loop-clause, labels): Use gensym
1102 rather than make-symbol for symbols which are used in
1103 a symbol-macrolet or equivalent.
1105 2004-11-26 Jay Belanger <belanger@truman.edu>
1107 * calc-misc.el (calc-last-why-command): Declare it.
1109 * calc-vec.el (math-grade-vec): New variable.
1110 (calcFunc-grade, calcFunc-rgrade, math-grade-beforep):
1111 Replace variable grade-vec by declared variable.
1112 (math-rb-close): New variable.
1113 (math-read-brackets, math-read-vector): Replace variable close by
1116 * calc/calc-yank.el (calc-original-buffer, calc-return-buffer)
1117 (calc-one-window, calc-edit-handler, calc-restore-trail)
1118 (calc-allow-ret): Declare them.
1120 * calc/calc-stuff.el (calc-flush-caches): Remove unnecessary variables.
1121 (math-lud-cache, math-log2-cache, math-radix-digits-cache)
1122 (math-radix-float-cache-tag, math-random-cache)
1123 (math-max-digits-cache, math-integral-cache, math-units-table)
1124 (math-format-date-cache, math-holidays-cache-tag): Declare them.
1125 (math-moc-func): New variable.
1126 (math-map-over-constants, math-map-over-constants-rec):
1127 Replace variable func by declared variable.
1129 * calc/calc-store.el (calc-given-value, calc-store-opers):
1131 (calc-var-name-map): Move declaration to earlier in the file.
1132 (calc-pv-pos): New variable.
1133 (calc-permanent-variable, calc-insert-permanent-variable):
1134 Replace variable pos by declared variable.
1136 * calc/calc-mtx.el (calc-det-lu): New variable.
1137 (math-det-raw, math-det-step): Replace variable lu by declared variable.
1139 * calc/calc-map.el (math-ms-temp, math-ms-args): New variables.
1140 (math-multi-subst, math-multi-subst-rec): Replace variables temp
1141 and arg by declared variables.
1142 (calcFunc-reducer): Fix incorrect variable.
1143 (math-inner-mul-func, math-inner-add-func): New variables.
1144 (calcFunc-inner, math-inner-mats): Replace variables mul-func
1145 and add-func by declared variables.
1147 * calc/calc-incom.el (calc-prev-char, calc-prev-prev-char)
1148 (calc-digit-value): Declare them.
1150 * calc/calc-help.el (Info-history): Declare it.
1151 (calc-describe-key): Make calc-summary-indentation a local variable.
1152 (calc-help-long-names): Move declaration to earlier in file.
1154 * calc/calc-embed.el (calc-original-buffer): Declare it.
1155 (calc-embed-outer-top, calc-embed-outer-bot, calc-embed-top)
1156 (calc-embed-bot): New variables.
1157 (calc-do-embedded, calc-embedded-mark-formula)
1158 (calc-embedded-find-bounds, calc-embedded-duplicate)
1159 (calc-embedded-new-formula, calc-embedded-make-info):
1160 Replace vars outer-top, outer-bot, bot and top by declared variables.
1161 (calc-embed-prev-modes): New variable.
1162 (calc-embedded-set-modes, calc-embedded-update): Replace variable
1163 prev-modes with declared variable.
1164 (calc-embed-vars-used): New variable.
1165 (calc-embedded-make-info, calc-embedded-evaluate-expr)
1166 (calc-embedded-update, calc-embedded-find-vars): Replace variable
1167 vars-used by declared variable.
1169 * calc/calc-bin.el (math-format-radix-float): Make pos a local variable.
1170 (math-format-radix-float): Remove unnecessary setq.
1171 (math-radix-float-cache): Declare it.
1173 * calc/calcsel2.el (calc-keep-selection): Declare it.
1175 * calc/calc-maint.el: Remove file.
1177 2004-11-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1179 * textmodes/bibtex.el (bibtex-sort-entry-class)
1180 (bibtex-comment-start): Use defcustom.
1181 (bibtex-entry-field-alist): Use nil if initial content of the
1182 field is undefined. Fix docstring.
1183 (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
1184 (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
1185 (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
1186 (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
1188 (bibtex-autokey-title-terminators): Use only one regexp.
1189 (bibtex-string-maybe-empty-head): New variable.
1190 (bibtex-remove-delimiters-string): New function.
1191 (bibtex-text-in-field-bounds, bibtex-text-in-string):
1192 Use bibtex-remove-delimiters-string.
1193 (bibtex-progress-message, bibtex-field-left-delimiter)
1194 (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
1195 (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
1196 (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
1198 (bibtex-format-entry): Use save-excursion for inherited booktitle.
1199 Use eq and bibtex-remove-delimiters-string. For end markers use
1200 insertion type so that marker stays after inserted text.
1201 (bibtex-autokey-get-names): Return empty string if name is missing.
1202 (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
1203 calling bibtex-autokey-name-case-convert.
1204 (bibtex-autokey-demangle-title):
1205 Call bibtex-autokey-titleword-case-convert. Remove call to
1206 bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
1207 (bibtex-global-key-alist, bibtex-read-string-key): New functions.
1208 (bibtex-read-key): New optional arg global.
1209 (bibtex-files-expand): New optional arg force.
1210 (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
1211 (bibtex-complete-crossref-cleanup): Rename from
1212 bibtex-complete-key-cleanup. Simplify code.
1213 (bibtex-copy-summary-as-kill): Remove arg key. Use looking-at.
1214 Operate on current entry.
1215 (bibtex-button): Add docstring.
1216 (bibtex-entry): Simplify.
1217 (bibtex-make-field): Replace optional arg called-by-yank with more
1218 specific args move and interactive.
1219 (bibtex-end-of-entry): Use forward-sexp.
1220 (bibtex-find-entry-globally): Remove.
1221 (bibtex-find-crossref): Allow for crossref key located in other buffer.
1223 (bibtex-find-entry): New optional args global and display.
1224 (bibtex-find-text): Fix docstring. Remove arg as-if-interactive.
1225 (bibtex-validate): Use arg force of bibtex-files-expand.
1226 (bibtex-clean-entry): Bugfix, clean string entries properly.
1227 Always keep point at beginning of entry.
1228 (bibtex-complete): Bugfix. Handle string entries properly.
1229 Call cleanup functions only if needed.
1230 (bibtex-String): Use bibtex-read-string-key.
1231 (bibtex-url): Use bibtex-remove-delimiters-string. Do not alter
1232 case of replacement text.
1234 2004-11-26 Lars Hansen <larsh@math.ku.dk>
1236 * tramp.el (tramp-handle-directory-files-and-attributes): New function.
1237 (tramp-perl-directory-files-and-attributes): New constant.
1238 (tramp-file-name-handler-alist): Delete file-directory-files, add
1239 directory-files-and-attributes.
1240 (tramp-perl-file-attributes): Surround uid and gid by double
1241 quotes. Change parameter id-format from nonnumeric.
1242 (tramp-convert-file-attributes): New function.
1243 (tramp-handle-file-attributes): Use it.
1244 (tramp-maybe-send-perl-script): New function.
1245 (tramp-handle-file-attributes-with-perl): Use it. Don't convert
1246 file mode. Change parameter id-format from nonnumeric.
1247 (tramp-handle-file-attributes-with-ls): Change parameter id-format
1249 (tramp-post-connection): Don't send tramp-perl-file-attributes
1250 script. Reset connection property "perl-scripts".
1251 (tramp-handle-insert-directory): Run real handler when ls-lisp is
1254 2004-11-26 Lars Hansen <larsh@math.ku.dk>
1256 * desktop.el (desktop-read): Replace mapcar with mapc.
1257 (desktop-create-buffer): Replace mapcar with mapc.
1258 Remove redundant piece of code.
1260 2004-11-27 Nick Roberts <nickrob@snap.net.nz>
1262 * progmodes/gud.el (gud-display-line): Use display-buffer
1263 for GDB-UI as for GUD.
1265 * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
1267 (gdb-ann3): Don't make GUD buffer dedicated.
1268 (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
1269 (gdb-display-source-buffer): Delete function.
1270 (gdb-view-source-function, gdb-view-assembler): Delete functions.
1271 (menu): Delete menu bindings for viewing source/assembler.
1272 (gdb-setup-windows, gdb-restore-windows):
1273 Don't dedicate GUD. No assembler now.
1274 (gdb-reset): No need to undedicate source buffers now.
1275 (gdb-source-info): No assembler now.
1277 2004-11-26 Nick Roberts <nickrob@snap.net.nz>
1279 * progmodes/gdb-ui.el (gdb-frame-parameters): Match height and
1280 width to those for special frames.
1281 (gdb-frame-breakpoints-buffer): Use gdb-frame-parameters.
1283 (gdb-frame-stack-buffer, gdb-frame-threads-buffer)
1284 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
1285 (gdb-frame-assembler-buffer): Rework like
1286 gdb-frame-breakpoints-buffer.
1288 2004-11-25 Richard M. Stallman <rms@gnu.org>
1290 * progmodes/flymake.el: Reindent.
1291 (flymake-split-string): Turn into defalias.
1292 (flymake-fix-file-name): Rename from flymake-fix-path-name.
1293 (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
1294 (flymake-get-common-file-prefix): Rename from ...path... Doc fix.
1295 (flymake-build-relative-filename): Rename from ...path.
1298 2004-11-25 Cheng Gao <chenggao@gmail.com>
1300 * progmodes/flymake.el: Much whitespace and capitalization change.
1301 Move `provide' to end. Require `compile' only when compiling.
1303 2004-11-24 Jay Belanger <belanger@truman.edu>
1305 * calc/calc-alg.el: Added comment.
1306 (math-polynomial-base): Replace variable mpb-top-expr by
1307 math-poly-base-top-expr.
1309 * calc/calc-poly.el (math-poly-base-top-expr): New variable.
1310 (math-polynomial-p1): Replace variable mpb-top-expr by declared
1312 (math-poly-base-total-base): New variable.
1313 (math-total-polynomial-base, math-polynomial-p1): Replace variable
1314 mpb-total-base by declared variable.
1315 (math-factored-vars, math-to-list): Declare it.
1316 (math-fact-expr): New variable.
1317 (calcFunc-factors, calcFunc-factor, math-factor-expr)
1318 (math-factor-expr-try, math-factor-expr-part): Replace variable
1319 expr by declared variable.
1320 (math-fet-x): New variable.
1321 (math-factor-expr-try, math-factor-poly-coefs): Replace variable x
1322 by declared variable.
1323 (math-factor-poly-coefs): Make temp a local variable.
1325 * calc/calc-units.el (calc-convert-units): Make units a local
1327 (calc-num-units, calc-den-units): New variables.
1328 (calc-explain-units, calc-explain-units-rec): Replace variables
1329 num-units and den-units by declared variables.
1330 (math-cu-unit-list): New variable.
1331 (math-build-units-table, math-compare-unit-names)
1332 (math-convert-units, math-convert-units-rec): Replace variable
1333 unit-list by declared variable.
1334 (math-fbu-base, math-fbu-entry): New variables.
1335 (math-find-base-units, math-find-base-units-rec): Replace variables
1336 base and entry by declared variables.
1337 (math-which-standard): New variable.
1338 (math-to-standard-units, math-to-standard-rec): Replace variable
1339 which-standard by declared variable.
1340 (math-fcu-u): New variable.
1341 (math-find-compatible-unit, math-find-compatible-unit-rec):
1342 Replace variable u by declared variable.
1343 (math-cu-new-units, math-cu-pure): New variables.
1344 (math-convert-units, math-convert-units-rec): Replace variables
1345 new-units and pure by declared variables.
1346 (math-try-cancel-units): New variable.
1347 (math-simplify-units-quotient): Replace variable try-cancel-units by
1350 2004-11-24 Richard M. Stallman <rms@gnu.org>
1352 * textmodes/ispell.el (ispell-check-version):
1353 If default-directory is nonexistent, use home dir.
1355 * progmodes/grep.el (grep-regexp-alist):
1356 Don't match parens around line numbers.
1358 * progmodes/cperl-mode.el (cperl-indent-region)
1359 (cperl-imenu--create-perl-index, cperl-xsub-scan):
1360 Don't print progress messages.
1362 * progmodes/compile.el (compilation-mode-map):
1363 Don't inherit from compilation-minor-mode-map;
1364 copy its bindings instead. But the menu bar Compile
1365 entry now does inherit from compilation-menu-map.
1367 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1368 Use with-no-warnings around compiler-macroexpand.
1370 * imenu.el: Don't always require newcomment.
1371 (imenu--generic-function): Call comment-normalize-vars
1372 if we have a comment syntax.
1373 Exit the loop if REGEXP matches the null string.
1374 Test comment-start as well as comment-start-skip
1375 when deciding whether to check for comments.
1377 * tooltip.el (tooltip-mode): Doc fix.
1379 * term.el (term-escape-char, term-mode): Doc fixes.
1381 2004-11-24 Dave Love <fx@gnu.org>
1383 * progmodes/python.el (python-font-lock-syntactic-keywords):
1384 Check for escapes in the regexp.
1385 (python-quote-syntax): Don't do it here.
1387 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
1389 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
1390 (gdb-frames-mode-map, gdb-threads-mode-map)
1391 (gdb-registers-mode-map, gdb-locals-mode-map)
1392 (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
1393 (gdb-set-window-buffer): Rename from dedicated-switch-to-buffer.
1395 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>:
1396 (dedicated-switch-to-buffer): Rework.
1397 (gdb-var-evaluate-expression-handler, gdb-put-string):
1398 Remove unused variable bindings.
1399 (gdb-setup-windows, gdb-display-buffer):
1400 Simplify. Use pop-to-buffer.
1401 (gdb-view-source-function): Simplify.
1402 (gdb-frame-breakpoints-buffer):
1403 Use pop-to-buffer, special-display-regexps.
1405 2004-11-24 Glenn Morris <gmorris@ast.cam.ac.uk>
1407 * progmodes/f90.el (f90-smart-end)
1408 (f90-previous-statement, f90-beginning-of-block): Doc fix.
1409 (f90-calculate-indent): Handle un-named PROGRAM blocks.
1410 (f90-end-of-block): Doc fix. Make check of outermost block
1411 conditional on value of `f90-smart-end'.
1412 (f90-block-match): Hack to deal with un-named PROGRAM blocks.
1413 Handle case where END-BLOCK is nil.
1414 (f90-match-end): Handle un-named PROGRAM blocks.
1415 (f90-backslash-not-special): New function.
1417 2004-11-24 Jay Belanger <belanger@truman.edu>
1419 * calc/calc.el (calc-embedded-active): Removed unnecessary
1421 (calc-show-banner): Removed redundant declaration.
1423 * calc/calc-graph.el (calc-gnuplot-default-device)
1424 (calc-gnuplot-default-output, calc-gnuplot-print-device)
1425 (calc-gnuplot-print-output, calc-gnuplot-geometry)
1426 (calc-graph-default-resolution, calc-graph-default-resolution-3d):
1427 Remove redundant initial values.
1429 * calc/calc-arith.el (math-scalar-functions)
1430 (math-nonscalar-functions, math-scalar-if-args-functions)
1431 (math-real-functions, math-positive-functions)
1432 (math-nonnegative-functions, math-real-scalar-functions)
1433 (math-real-if-arg-functions, math-integer-functions)
1434 (math-num-integer-functions, math-rounding-functions)
1435 (math-float-rounding-functions, math-integer-if-args-functions)
1436 (math-super-types): Move declarations to earlier in file.
1437 (math-unit-prefixes): Declared it.
1438 (math-floor-prec, math-trunc-prec): New variables.
1439 (math-trunc-fancy): Replace variable prec by declared variable.
1440 (math-floor-fancy): Replace variable prec by declared variable.
1441 (math-com-bterms): New variable.
1442 (math-commutative-equal, math-commutative-collect):
1443 Replace variable bterms by declared variable.
1445 * calc/calc-misc.el (math-trunc): Replace variable prec by
1447 (math-floor): Replace variable prec by math-floor-prec.
1449 * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
1450 (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
1451 (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
1452 (math-format-date, math-format-date-part): Replace variables
1453 date, dt, year, month, day, weekday, hour, minute, second and
1454 bc-flag by declared variables.
1455 (math-pd-str): New variable.
1456 (math-parse-date, math-parse-date-word, math-parse-standard-date):
1457 Replace variable str by declared variable.
1458 (math-daylight-savings-hook, math-tzone-names): Move definitions
1459 to earlier in the file.
1460 (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
1461 (math-sh-year): New variable.
1462 (math-setup-add-holidays, math-setup-holidays)
1463 (math-setup-year-holidays): Replace variable `year' by declared
1466 * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
1468 (math-nth-root-float, math-nth-root-float-iter): Replace variables
1469 n, nf and nfm1 by declared variables.
1470 (math-nri-n): New variable.
1471 (math-nth-root-integer, math-nth-root-int-iter): Replace variable
1472 n by declared variable.
1473 (calcFunc-log): Removed misplaced condition.
1475 2004-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
1477 * generic.el (generic-mode-set-comments): Accept an empty comment-end.
1479 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
1481 * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
1482 (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
1483 Dedicate gdb-related windows.
1484 (gdb-display-buffer): Dedicate gdb-related windows. Don't grab
1486 (gdb-reset): Remove dedicated property after debugging.
1488 2004-11-24 Jay Belanger <belanger@truman.edu>
1490 * calc/calc-sel.el: Add comment.
1492 * calc/calc.el (math-stack-value-offset): Replace variables c,
1493 wid and off with math-svo-c, math-svo-wid and math-svo-off.
1495 * calc/calccomp.el (math-comp-sel-tag): Declare it.
1496 (math-svo-c, math-svo-wid, math-svo-off): New variables.
1497 (math-stack-value-offset-fancy): Replace variables c, wid and off
1498 by declared variables.
1499 (math-comp-just, math-comp-comma-spc): New variables.
1500 (math-compose-expr, math-compose-matrix): Replace variables `just'
1501 and comma-spc by declared variable.
1502 (math-comp-vector-prec): New variable.
1503 (math-compose-expr, math-compose-matrix, math-compose-rows):
1504 Replace variable vector-prec by declared variable.
1505 (math-comp-left-bracket, math-comp-right-bracket)
1506 (math-comp-comma): New variables.
1507 (math-compose-expr, math-compose-rows): Replace variables
1508 left-bracket, right-bracket and comma by declared variables.
1509 (math-comp-full-width): New variable.
1510 (math-comp-to-string-flat, math-comp-to-string-flat-term):
1511 Replace variable full-width by declared variable.
1512 (math-comp-highlight, math-comp-word, math-comp-level)
1513 (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
1514 (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
1516 (math-comp-to-string-flat, math-comp-to-string-flat-term)
1517 (math-comp-sel-flat-term): Replace variables comp-highlight,
1518 comp-word, comp-level, comp-margin, comp-pos and comp-buf by
1520 (math-comp-simplify, math-comp-simplify-term)
1521 (math-comp-add-string, math-comp-add-string-sel):
1522 Replace variables comp-highlight, comp-buf, comp-base,
1523 comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
1525 2004-11-23 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
1527 * cus-start.el (all): Add x-use-old-gtk-file-dialog.
1529 * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
1530 and x-server-version may throw.
1532 2004-11-23 Kim F. Storm <storm@cua.dk>
1534 * subr.el (substitute-key-definition-key): Optimize.
1535 Don't call indirect-function for nil defn (always signals error).
1537 * ido.el (ido-read-internal): Fix require-match check when
1538 ido-directory-too-big is set.
1540 2004-11-23 Jay Belanger <belanger@truman.edu>
1542 * calc/calc-ext.el (math-read-replacement-list)
1543 (math-read-superscripts): New variables.
1544 (math-read-preprocess-string): New function.
1545 (math-read-expr): Filter input through math-read-preprocess-string.
1547 * calc/calc-aent.el (math-read-exprs): Filter input through
1548 math-read-preprocess-string.
1550 2004-11-23 Daniel Pfeiffer <occitan@esperanto.org>
1552 * progmodes/compile.el (compilation-start): In cd command use
1553 substitute-env-vars -- not quite shell compatible but better than
1555 (compilation-error-regexp-alist-alist): Simplify ftnchek to only
1556 handle the newer versions messages, which are more parseable.
1558 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1560 * reveal.el (reveal-mode-map): New var.
1561 (reveal-mode): Use it.
1563 2004-11-23 Nick Roberts <nickrob@snap.net.nz>
1565 * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
1566 (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
1568 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1570 * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
1571 header-line when needed.
1572 Use fixed-pitch only in the header-line.
1573 Build the underline automatically. Use emdash if available.
1575 2004-11-22 Richard M. Stallman <rms@gnu.org>
1577 * dired.el (dired-recursive-copies): Move from dired-aux.el.
1578 * dired-aux.el (dired-recursive-copies): Move to dired.el.
1580 2004-11-22 Nick Roberts <nickrob@snap.net.nz>
1582 * progmodes/gdb-ui.el (gdb-resync): New function.
1583 (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
1584 (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
1585 Use it to fail more gracefully.
1586 (gdb-variables): Delete variable.
1587 Re-order variables to reduce byte-compiler warnings.
1589 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1591 * descr-text.el (describe-char):
1592 * paren.el (show-paren-function):
1593 * subr.el (syntax-after): Undo last change.
1595 * progmodes/python.el (run-python): Don't hard code *Python*.
1596 Don't modify global process-environment.
1597 (python-send-region, python-load-file): Don't assume that
1598 python-buffer == (process-buffer (python-proc)).
1599 (python-switch-to-python): Simplify.
1601 * dired.el (dired-align-file): Don't assume line starts with spaces.
1603 2004-11-21 Jay Belanger <belanger@truman.edu>
1605 * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
1606 Replace variable `lines' by math-read-big-lines.
1607 (math-read-big-expr): Replace variables the-baseline, the-h2
1608 and err-msg by math-read-big-baseline, math-read-big-h2 and
1610 (math-read-big-bigp): Replace variable h2 with math-rb-h2.
1612 * calc/calc-lang.el (math-read-big-rec): Fix typo.
1613 (math-read-big-balance): Replace unbound variable by value.
1614 (math-read-big-lines): New variable.
1615 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
1616 (math-read-big-error, math-read-big-balance): Replace variable
1617 `lines' by declared variable.
1618 (math-read-big-baseline, math-read-big-h2): New variables.
1619 (math-read-big-rec): Replace variables the-baseline and the-h2
1620 by declared variables.
1621 (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
1622 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
1623 (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
1625 (math-read-big-err-msg): New variable.
1626 (math-read-big-error): Replace variable err-msg by declared variable.
1628 2004-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
1630 * ses.el: Add coding cookie.
1631 Fix up docstrings, follow new commenting conventions.
1632 (ses-header-line-menu): Fix missing variable rename for header-row.
1633 (ses-cell-size): Remove.
1634 (ses-make-cell): New function.
1635 (ses-cell, ses-insert-row, ses-insert-column): Use it.
1636 (ses-calculate-cell): Remove unused var `symbol'.
1637 (ses-narrowed-p): New function.
1638 (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
1639 (ses-initial-file-trailer): Change ;;; to ;; for local vars.
1640 (ses-load, ses-reconstruct-all): Adjust string search accordingly.
1641 (ses-setup): Use restore-buffer-modified-p.
1642 (ses-cleanup): Remove unused var `end'.
1643 (ses-header-string-left-offset): Remove.
1644 (ses-create-header-string): Adjust to new behavior of `align-to'.
1645 Truncate excessively large fields to preserve alignment.
1646 (ses-reconstruct-all): Remove unused var `refs'.
1647 (ses-read-cell-printer): Remove unused var `prompt'.
1648 (ses-delete-row): Remove unused var `pos'.
1649 (ses-delete-column): Remove unused var `new'.
1651 2004-11-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1653 * ps-print.el: Insert :version tag into all defgroup and defcustom.
1654 Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
1655 Eliminate eval-and-compile usage.
1656 (ps-insert-file): Use insert-file-contents instead of insert-file.
1657 (ps-setup): Code fix.
1659 * printing.el (pr-setup, lpr-setup): Code fix.
1661 2004-11-21 Jay Belanger <belanger@truman.edu>
1663 * calc/calc-prog.el (math-integral-cache-state, calc-lang)
1664 (calc-original-buffer): Declare them.
1665 (calc-user-formula-alist): New variable.
1666 (calc-user-define-formula, calc-fix-user-formula)
1667 (calc-user-define-composition, calc-finish-formula-edit):
1668 Replace variable `alist' by declared variable.
1669 (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
1670 (var-q7, var-q7, var-q8, var-q9): Declare them.
1671 (calc-kbd-push): Don't check to see if var-q0 through var-q9
1673 (calcFunc-typeof): Replace undeclared variable by expression.
1674 (math-exp-env): New variable.
1675 (math-define-body, math-define-exp): Replace exp-env by declared var.
1676 (math-define-exp): Replace misplaced variable by expression.
1678 * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
1679 (calc-curve-model, calc-curve-coefnames): New variables.
1680 (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
1681 varnames, model and coefnames by declared variables.
1682 (math-root-widen): New variable.
1683 (math-search-root, math-find-root): Replace variable root-widen by
1685 (var-DUMMY): Declare it.
1686 (math-root-vars, math-min-vars): Move the declarations to earlier in
1688 (math-brent-min): Make d a local variable.
1689 (math-find-minimum): Replace non-existent variable.
1690 (math-ninteg-romberg): Remove unnecessary variable.
1691 (math-ninteg-temp): New variable.
1692 (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
1693 integ-temp by declared variable.
1694 (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
1696 (math-general-fit): Replace variables first-var, first-coef and
1697 new-coefs by declared variables.
1698 (calcFunc-fitvar): Replace variable first-var by declared variable.
1699 (calcFunc-fitparam): Replace variable first-coef by declared variable.
1700 (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
1701 (math-all-vars-vars, math-all-vars-found): New variables.
1702 (math-all-vars-in, math-all-vars-rec): Replace variables vars and
1703 found by declared variable math-all-vars-vars.
1705 2004-11-20 Luc Teirlinck <teirllm@auburn.edu>
1707 * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
1710 2004-11-20 Richard M. Stallman <rms@gnu.org>
1712 * isearch.el (isearch-mode-map): Don't bind SPC.
1713 (isearch-whitespace-chars): Function deleted.
1714 (isearch-search): Bind search-spaces-regexp.
1715 (isearch-lazy-highlight-search): Likewise.
1716 (search-whitespace-regexp): Doc fix.
1717 (isearch-forward-regexp): Doc fix.
1719 * emacs-lisp/bytecomp.el (byte-compile-form):
1720 Move the calls to byte-compile-set-symbol-position,
1721 to avoid having two for the same symbol occurrence.
1723 * comint.el (comint-input-ring-size): Increase to 150.
1725 * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
1727 (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
1728 (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
1730 * imenu.el (imenu--generic-function):
1731 Ensure we keep moving backward even if BEG isn't further back.
1733 * replace.el (query-replace-read-to, query-replace-read-from):
1734 Specify t for KEEP-ALL in read-from-minibuffer.
1736 * progmodes/python.el (python-switch-to-python):
1737 If Python isn't running, start it.
1738 Don't alter debug-ignored-errors.
1740 * progmodes/cperl-mode.el (cperl-indent-region):
1741 Don't mind imenu-scanning-message.
1743 * bindings.el (global-map): Bind C-e to move-end-of-line.
1745 * simple.el (line-move-finish): New arg FORWARD.
1746 Ignore invisible newlines, not intangible ones.
1747 Conditions for acceptable stopping positions depend on FORWARD.
1748 (line-move): Pass FORWARD arg to line-move-finish.
1750 * buff-menu.el (list-buffers-noselect): Eliminate space at the start
1751 of HEADER. Compensate for this change in the code to add display
1752 properties. Don't make the first line intangible.
1754 * info.el (Info-search): Fix previous change.
1756 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
1758 * Makefile.in (recompile): Revert 2004-11-19 change.
1759 (compile): Likewise.
1761 2004-11-19 Luc Teirlinck <teirllm@auburn.edu>
1763 * Makefile.in (compile): Set `max-specpdl-size' before compiling.
1765 2004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1767 * progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all
1768 defgroup and defcustom. Eliminate eval-and-compile usage.
1770 * progmodes/ebnf-otz.el: Fix typos.
1772 2004-11-19 Jay Belanger <belanger@truman.edu>
1774 * calc/calc-yank.el (calc-edit-disp-trail): New variable.
1775 (calc-edit-finish, calc-finish-stack-edit): Replace variable
1776 disp-trail by declared variable.
1778 * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
1779 (calc-finish-selection-edit): Replace variable disp-trail by
1781 (calc-selection-cache-entry): Move declaration to earlier in the file.
1782 (calc-selection-cache-num, calc-selection-cache-comp)
1783 (calc-selection-cache-offset, calc-selection-true-num)
1784 (calc-final-point-line, calc-final-point-column)
1785 (calc-original-buffer): Declare them.
1786 (calc-fnp-op, calc-fnp-num): New variables.
1787 (calc-find-nth-part, calc-find-nth-part-rec)
1788 (calc-select-previous): Replace op and num by declared variables.
1789 (calc-rsf-old, calc-rsf-new): New variables.
1790 (calc-replace-sub-formula, calc-replace-sub-formula-rec):
1791 Replace variables old and new by declared variables.
1792 (calc-sel-reselect): New variable.
1793 (calc-auto-selection, calc-enter-selection, calc-edit-selection)
1794 (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
1795 (calc-sel-mult-both-sides, calc-sel-add-both-sides): Replace variable
1796 reselect with declared variable.
1798 * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
1799 (math-bound-vars, math-conds, math-copy-neg, math-rhs)
1800 (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
1801 (math-import-list, math-rewrite-phase): Declare them.
1802 (math-rewrite): Use let* to declare variables.
1803 (calc-rewrite-selection): Make rules a local variable.
1804 (calc-rewr-sel): New variable.
1805 (calc-rewrite-selection, calc-locate-selection-marker)
1806 (calc-rewrite): Use the declared variable calc-rewr-sel instead
1808 (math-rewrite-whole-expr): New variable.
1809 (math-rewrite, math-rewrite-phase): Replace variable expr by
1811 (math-rewrite-heads-heads, math-rewrite-heads-skips)
1812 (math-rewrite-heads-blanks ): New variables.
1813 (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
1814 heads, skips and blanks by declared variables.
1815 (math-rwcomp-subst-old, math-rwcomp-subst-new)
1816 (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
1818 (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
1819 old, new, old-func and new-func by declared variables.
1820 (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
1821 Remove unnecessary variable.
1822 (math-apply-rw-regs): New variable.
1823 (math-apply-rewrites, math-rwapply-replace-regs)
1824 (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
1825 (math-apply-rw-ruleset): New variable.
1826 (math-apply-rewrites, math-rwapply-remember): Replace variable
1827 ruleset by declared variable.
1829 2004-11-19 Richard M. Stallman <rms@gnu.org>
1831 * info.el (Info-search): Use search-whitespace-regexp.
1833 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
1835 * vc-rcs.el (vc-rcs-parse): New function.
1836 (vc-rcs-annotate-command): Likewise.
1837 (vc-rcs-annotate-current-time): Likewise.
1838 (vc-rcs-annotate-time): Likewise.
1839 (vc-rcs-annotate-extract-revision-at-line): Likewise.
1841 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
1843 * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
1845 2004-11-18 Jay Belanger <belanger@truman.edu>
1847 * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
1849 2004-11-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1851 * printing.el: Eliminate use of interactive-p and eval-and-compile.
1852 Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
1853 Use make-temp-file to generate PostScript files in any situation.
1854 (pr-ps-temp-file): Now specify a prefix to generate temporary files.
1855 (pr-interactive-p): Eliminate var.
1856 (pr-save-interactive): Eliminate macro.
1857 (pr-interface, pr-ps-directory-preview)
1858 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
1859 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
1860 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
1861 (pr-ps-buffer-ps-print, pr-ps-region-preview)
1862 (pr-ps-region-using-ghostscript, pr-ps-region-print)
1863 (pr-ps-region-ps-print, pr-ps-mode-preview)
1864 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
1865 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
1866 (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
1867 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
1868 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
1869 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
1870 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
1871 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
1872 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
1873 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
1874 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
1875 (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
1876 Eliminate pr-save-interactive usage.
1877 (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
1878 Eliminate pr-interactive-p usage.
1879 (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
1880 (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
1881 (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
1882 (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
1883 (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
1884 (pr-toggle-header-menu, pr-toggle-header-frame-menu)
1885 (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
1887 (pr-ps-file): Use make-temp-file to generate a temporary file.
1889 2004-11-17 Jay Belanger <belanger@truman.edu>
1891 * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
1893 (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
1894 (math-top-only): New variable.
1895 (math-simplify, math-simplify-step): Replace variable top-only by
1896 declared variable math-top-only.
1897 (math-simplify-expr): Declare it.
1898 Replace argument expr in all calls of math-defsimplify by
1900 (math-simplify-plus, math-simplify-times, math-simplify-divide)
1901 (math-simplify-divisor, math-simplify-one-divisor)
1902 (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
1903 (math-simplify-pow): Replace variable expr by declared variable
1905 (math-simplify-divisor): Remove local variables temp and op.
1906 (math-simplify-one-divisor): Make temp and op local variables.
1907 (math-simplify-divisor-nover, math-simplify-divisor-dover):
1909 (math-simplify-divisor, math-simplify-one-divisor):
1910 Replace variables nover and dover by declared variables.
1911 (math-expr-subst-new, math-expr-subst-old): New variables.
1912 (math-expr-subst, math-expr-subst-rec): Replace variables new
1913 and old by declared variables.
1914 (math-is-poly-degree, math-is-poly-loose): New variables.
1915 (math-is-polynomial, math-is-poly-rec): Replace variables degree
1916 and loose by declared variables.
1917 (math-poly-base-const-ok, math-poly-base-pred): New variables.
1918 (math-polynomial-base, math-polynomial-base-rec):
1919 Replace variables const-ok and mpb-pred by declared variables.
1921 * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
1923 * calc/calc-ext.el (math-defsimplify): Change the argument in
1924 the created function to math-simplify-expr.
1926 * calc/calc-units.el (math-simplify-expr): Declare it.
1927 Replace argument expr in all calls of math-defsimplify by
1929 (math-simplify-units-prod): Replace variable expr by declared
1930 variable math-simplify-expr.
1932 2004-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1934 * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
1935 Replace mapcar->dolist, format->string.
1937 2004-11-17 Miles Bader <miles@gnu.org>
1939 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
1940 * progmodes/idlwave.el: Remove RCS keywords.
1942 2004-11-17 J.D. Smith <jdsmith@as.arizona.edu>
1944 * progmodes/idlwave.el, progmodes/idlw-toolbar.el
1945 * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
1946 Update to IDLWAVE version 5.5. Too many changes to list them here.
1947 * progmodes/idlw-help.el: New file.
1949 2004-11-16 Richard M. Stallman <rms@gnu.org>
1951 * international/iso-cvt.el (iso-tex2iso-trans-tab):
1952 Discard spaces after \i according to TeX rules.
1954 * international/mule.el (set-buffer-file-coding-system):
1956 (after-insert-file-set-coding): Pass that new arg.
1957 Prevent set-buffer-multibyte from trying to lock the file.
1959 * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
1961 * saveplace.el (save-place): Doc fix.
1963 * dabbrev.el (dabbrev-expand): When handling SPC M-/,
1964 temporarily widen before finding the following word to copy.
1966 * emacs-lisp/lucid.el (map-keymap): Definition deleted.
1967 (cl-map-keymap): Definition deleted.
1969 * subr.el (map-keymap-internal): New function.
1971 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
1973 * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
1974 when pressing rather than when releasing mouse-2. Simplify.
1976 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
1978 * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
1979 (compilation-mode): Set it here instead.
1981 * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
1983 * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
1984 (loop, cl-parse-loop-clause, defsetf): Use backquote.
1986 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
1988 * progmodes/compile.el (compilation-internal-error-properties):
1989 Fix up a transposition-typo. Check end-col before using it.
1991 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change)
1993 * international/iso-cvt.el (iso-tex2iso-trans-tab):
1994 Discard whitespace after macro \i when converting it.
1996 2004-11-16 Juri Linkov <juri@jurta.org>
1998 * emacs-lisp/find-func.el (find-function-regexp):
1999 Optimize `define-minor-mode'. Add `defun-cvs-mode'.
2000 Add `deffoo'. Add `f' to [^cgv] to exclude `defface'.
2001 Remove invalid `\W' from [^cgv\W]. Doc fix.
2002 (find-function-search-for-symbol): Replace "\\>" with "\\_>".
2004 2004-11-15 Luc Teirlinck <teirllm@auburn.edu>
2006 * play/life.el: Maintainer is now FSF.
2007 (life-patterns, life-neighbor-deltas, life-window-start)
2008 (life-current-generation, life-generation-string): Use defvar
2009 instead of defconst.
2011 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2013 * progmodes/compile.el (compilation-move-to-column): New fun.
2014 (compilation-internal-error-properties)
2015 (compilation-next-error-function): Use it to make sure we don't go past
2018 2004-11-15 John Paul Wallington <jpw@gnu.org>
2020 * autoinsert.el (auto-insert-alist): Insert the user's name in
2021 copyright notice, rather than Free Software Foundation, for the
2022 Emacs Lisp header case too.
2024 2004-11-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2026 * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
2027 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
2028 (pr-switches-string): If SWITCHES is nil, return nil. Otherwise,
2029 return the list of string in a string.
2030 (pr-call-process): Message if calling process returns an error, that
2031 is, the exit status is different of zero.
2033 2004-11-15 Jay Belanger <belanger@truman.edu>
2035 * calc/calcalg2.el (math-integrate-by-parts): Remove unused
2037 (math-integ-depth, math-integ-level, math-integral-limit)
2038 (math-enable-subst, math-any-substs, math-integ-msg)
2039 (math-prev-parts-v, math-good-parts, math-max-integral-limit)
2040 (math-int-threshold, math-int-factors, math-double-roots)
2041 (math-solve-simplifying, var-IntegLimit, math-solve-sign)
2042 (var-GenCount): Declare these variables.
2043 (calcFunc-integ): Don't check if var-IntegLimit is bound.
2044 (math-integral-cache, math-integral-cache-state):
2045 Move declarations to earlier in the file.
2046 (math-deriv-var, math-deriv-total, math-deriv-symb)
2047 (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
2048 (math-so-far, math-integ-expr, math-expr-parts, calc-low)
2049 (calc-high, math-solve-var, math-solve-full, math-solve-vars)
2050 (math-try-solve-sign, math-solve-b, math-solve-system-vv)
2051 (math-solve-res): New variables
2052 (math-derivative, calcFunc-deriv, calcFunc-tderiv)
2053 (math-integral, math-replace-integral-parts)
2054 (math-integrate-by-parts, calc-dump-integral-cache)
2055 (math-try-integral, math-do-integral, math-do-integral)
2056 (math-do-integral-methods, math-try-solve-for)
2057 (math-try-solve-prod, math-solve-poly-funny-powers)
2058 (math-solve-crunch-poly, math-decompose-poly)
2059 (math-solve-find-root-term, math-find-root-in-prod)
2060 (math-integ-try-linear-substitutions)
2061 (math-integ-try-substitutions, math-expr-rational-in)
2062 (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
2063 (math-solve-prod, math-solve-quartic, math-poly-all-roots)
2064 (math-solve-for, math-solve-system, math-solve-system-rec)
2065 (math-solve-get-sign, math-solve-get-int)
2066 (math-solve-system-subst): Replace undeclared variables with newly
2069 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2071 * winner.el (winner-active-region, winner-edges, winner-window-list):
2073 (winner-mode-map): Move init inside declaration.
2075 2004-11-14 Luc Teirlinck <teirllm@auburn.edu>
2077 * files.el (convert-standard-filename): Doc fix.
2079 2004-11-14 Daniel Pfeiffer <occitan@esperanto.org>
2081 * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
2082 passwd, group, shadow, default/* and pam.d/*.
2084 2004-11-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2086 * printing.el (pr-menu-spec): Adjust menu specification.
2088 2004-11-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2090 * printing.el: Doc fix. Insert :version tag into all defcustom.
2091 Handle interactive-p as is recommended in Emacs Lisp Reference.
2092 Set the file permission bits for newly created files.
2093 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
2094 The printing menu specification (in `pr-menu-spec') was merged.
2095 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2096 (pr-version): New version number (6.8.3).
2097 (pr-file-modes): New option.
2098 (pr-interactive-p): New var.
2099 (pr-save-interactive, pr-save-file-modes): New macros.
2100 (pr-setup): Code fix.
2101 (pr-menu-spec): Menu specification merged.
2102 (pr-call-process, pr-text2ps): Set file permission bits.
2103 (pr-despool-print): Set file permission bits. Handle interactive-p as
2105 (pr-interface, pr-ps-directory-preview)
2106 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
2107 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
2108 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
2109 (pr-ps-buffer-ps-print, pr-ps-region-preview)
2110 (pr-ps-region-using-ghostscript, pr-ps-region-print)
2111 (pr-ps-region-ps-print, pr-ps-mode-preview)
2112 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
2113 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
2114 (pr-despool-using-ghostscript, pr-despool-ps-print)
2115 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
2116 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
2117 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
2118 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
2119 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
2120 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
2121 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
2122 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
2123 (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
2124 (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
2125 Handle interactive-p as is recommended.
2127 2004-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2129 * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
2130 (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
2132 * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
2133 so it doesn't forget to highlight the beginning of the region either.
2135 2004-11-13 Daniel Pfeiffer <occitan@esperanto.org>
2137 * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
2138 (c-font-lock-init): Eliminate obsolete make-local-hook.
2139 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
2140 (awk-mode): Use run-mode-hooks.
2142 * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
2144 2004-11-13 Kim F. Storm <storm@cua.dk>
2146 * mouse.el (mouse-drag-copy-region): Add :version.
2147 (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
2148 while dragging mode line, so mode line can be dragged downwards.
2149 (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
2150 while pressing mouse button so window doesn't scroll until we
2151 release the mouse if clicking on partially visible line.
2153 2004-11-12 Jay Belanger <belanger@truman.edu>
2155 * calc/calc-graph.el (calc-dumb-map): Declare it.
2156 (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather
2158 (calc-graph-name): Made `end' a local variable.
2159 (calc-graph-lookup): Made `varname' a local variable.
2160 (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
2162 (calc-graph-format-data): Don't check if var-PlotRejects is bound.
2163 (calc-graph-plot, calc-graph-compute-3d): Remove references to
2164 the unused variable y3vec.
2165 (calc-graph-show-dumb): Remove reference to unused variable found-pt.
2166 (calc-graph-kill-hook, calc-graph-plot): Remove reference to
2167 calc-graph-prev-kill-hook.
2168 (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
2169 (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
2170 (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
2171 (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
2172 (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
2173 (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
2174 (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
2175 (calc-graph-y3value, calc-graph-y3name)
2176 (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
2177 (calc-graph-stepcount, calc-graph-is-splot)
2178 (calc-graph-surprise-splot, calc-graph-blank)
2179 (calc-graph-non-blank, calc-graph-curve-num): New variables.
2180 (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
2181 (calc-graph-recompute-2d, calc-graph-compute-3d)
2182 (calc-graph-format-data): Replace undeclared variables with the
2183 above newly declared variables.
2185 2004-11-12 Diane Murray <dsm@muenster.de> (tiny change)
2187 * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
2188 `rsf-beep' and `rsf-sleep-after-message'.
2190 * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
2191 list if `message-sender' is non-nil.
2193 2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
2195 * desktop.el (desktop-create-buffer, desktop-save): Avoid some
2196 consing by using mapc instead of mapcar.
2198 2004-11-12 Nick Roberts <nickrob@snap.net.nz>
2200 * tooltip.el (require): Explain why CL is needed.
2202 2004-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2204 * printing.el: Insert :version into defgroup (printing). All reference
2205 to Files option in menubar were changed to File.
2206 (pr-version): New version number (6.8.2).
2207 (pr-get-symbol): Call easy-menu-intern.
2208 (pr-region-active-p): Now is a fun (it was defsubst). To avoid
2211 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2213 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
2214 new byte-compile-function-environment binding to t.
2216 * font-lock.el (font-lock-fontify-syntactically-region):
2217 Don't forget to highlight the last char when we hit `end'.
2219 * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
2220 (mwheel-scroll): Adjust accordingly.
2222 * cvs-status.el: Reduce spurious warnings.
2223 (cvs-status-checkout): Remove.
2224 (cvs-status-mode-map): Use cvs-mode-checkout instead.
2226 * pcvs.el (cvs-mode-checkout): New command.
2228 * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
2230 * tooltip.el: Require CL.
2232 * emacs-lisp/bytecomp.el: Use push.
2233 (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
2234 (defalias): Remove the `byte-compile' property and add
2235 a `byte-hunk-handler'.
2237 2004-11-11 Juri Linkov <juri@jurta.org>
2239 * info.el (Info-search): Save match data for isearch.
2240 Skip Tag Table node.
2242 * descr-text.el (describe-char): Replace syntax-after with code
2243 from its previous version.
2245 * files.el (magic-mode-alist): Use optimization for SGML mode too.
2246 (set-auto-mode): Doc fix. Remove unused variable `xml'.
2248 * international/mule.el (sgml-html-meta-auto-coding-function):
2249 Remove > after <html to allow HTML attributes.
2251 2004-11-11 Jay Belanger <belanger@truman.edu>
2253 * calc/calc-comb.el (math-prime-factors-finished): Declare it as
2255 (calcFunc-dfac): Replace unbound max by n.
2256 (math-stirling-local-cache): New variable.
2257 (math-stirling-number, math-stirling-1, math-stirling-2):
2258 Replace the variable `cache' by the declared variable
2259 math-stirling-local-cache.
2260 (var-RandSeed): Declare it as a variable.
2261 (math-init-random-base, math-random-digit): Don't check to see if
2262 var-RandSeed is bound.
2263 (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
2264 Declare them instead of just setting them.
2265 (math-init-random-base): Made i a local variable.
2266 (math-random-digit): Made math-random-last a local variable.
2267 (math-prime-test-cache): Move declaration to before it is used.
2268 (math-prime-test-cache-k, math-prime-test-cache-q)
2269 (math-prime-test-cache-nm1, math-prime-factors-finished):
2270 Declare them as variables.
2272 2004-11-11 Jay Belanger <belanger@truman.edu>
2274 * calc/calc-ext.el (math-defcache): Use defvar for the new
2275 variables it creates.
2277 2004-11-11 Lars Hansen <larsh@math.ku.dk>
2279 * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
2280 (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
2281 (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
2282 (desktop-save): Add :version.
2284 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2286 * printing.el (pr-get-symbol): Don't downcase.
2288 2004-11-10 Jay Belanger <belanger@truman.edu>
2290 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
2291 string to kill-ring.
2293 * calc/calc-aent.el (calc-alg-exp, math-toks)
2294 (math-exp-pos,math-exp-old-pos, math-exp-token)
2295 (math-exp-keep-spaces, math-exp-str): New variables.
2296 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
2297 (calcAlg-enter): Use declared variable calc-alg-exp.
2298 (math-build-parse-table, math-find-user-token): Use declared
2300 (math-read-exprs, math-read-token, calc-check-user-syntax)
2301 (calc-match-user-syntax, match-factor-after, math-read-factor):
2302 Use declared variables math-exp-pos math-exp-old-pos.
2303 (math-read-exprs, math-read-token, math-read-expr-level)
2304 (calc-check-user-syntax, calc-match-user-syntax)
2305 (match-factor-after, math-read-factor): Use declared variable
2307 (math-read-exprs, math-read-expr-list, math-read-token)
2308 (math-read-factor): Use declared variable math-exp-keep-spaces.
2309 (math-read-exprs, math-read-token): Use declared variable
2311 (calc-match-user-syntax): Make m a local variable.
2313 * calc/calc-ext.el (math-read-expr): Use declared variables
2314 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
2315 math-exp-keep-spaces.
2317 * calc/calc-forms.el (math-read-angle-bracket): Use declared
2318 variables math-exp-pos, math-exp-str.
2320 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
2322 (math-parse-fortran-vector, math-parse-fortran-vector-end)
2323 (math-parse-eqn-prime): Use declared variable math-exp-token.
2325 * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
2326 Use declared variable math-exp-pos.
2327 (math-check-for-commas): Use declared variable math-exp-str.
2328 (math-read-brackets): Use declared variables math-exp-old-pos,
2329 math-exp-keep-spaces.
2330 (math-read-brackets, math-read-vector, math-read-matrix):
2331 Use declared variable math-exp-token.
2333 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2335 * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
2336 where the keymap is a symbol.
2337 (easy-menu-add-item): Use keymap-prompt. Simplify.
2339 * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
2341 * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
2342 (sgml-parse-tag-backward): Use it to skip spurious < or >.
2344 2004-11-10 Thien-Thi Nguyen <ttn@gnu.org>
2346 * ebuff-menu.el: Doc fixes throughout.
2347 (electric-buffer-menu-mode-hook): New defvar.
2349 2004-11-10 Nick Roberts <nickrob@snap.net.nz>
2351 * tooltip.el: Don't require cl, comint, gud, gdb-ui for
2352 compilation. The resulting compiler warnings appear to be harmless.
2354 2004-11-10 Daniel Pfeiffer <occitan@esperanto.org>
2356 * textmodes/conf-mode.el: New file.
2358 * files.el (auto-mode-alist, magic-mode-alist): Use it.
2360 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2362 * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
2364 2004-11-09 Jay Belanger <belanger@truman.edu>
2366 * calc/calc-ext.el (calc-init-extensions): Remove old code.
2368 * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
2369 (calc-z-prefix-buf, calc-z-prefix-msgs): New variables.
2370 (calc-z-prefix-help, calc-user-function-list): Use declared
2371 variables calc-z-prefix-buf, calc-z-prefix-msgs.
2372 (math-map-tree, math-map-tree-rec): Use declared variables
2373 math-mt-many, math-mt-func.
2374 (math-read-expression, math-read-string): Use declared variable
2377 * calc/calc-ext.el (math-normalize-nonstandard): Use declared
2378 variable math-normalize-a.
2380 * calc/calc.el (math-normalize-a): New variable.
2381 (math-normalize): Use declared variable math-normalize-a.
2383 * calc/calc-poly.el (math-expand-form): Use declared variable
2386 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
2387 Use declared variable math-mt-many.
2388 (math-rewrite): Use declared variable math-mt-func.
2390 * calc/calc-vec.el (math-read-brackets, math-read-vector)
2391 (math-read-matrix): Use declared variable math-expr-data.
2393 * calc/calc-lang.el (math-parse-fortran-vector)
2394 (math-parse-fortran-vector-end, math-parse-tex-sum)
2395 (math-parse-eqn-matrix, math-parse-eqn-prime)
2396 (math-read-math-subscr): Use declared variable math-expr-data.
2398 * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
2399 (math-read-expr-level, math-read-token, calc-check-user-syntax)
2400 (calc-match-user-syntax, math-read-if, math-factor-after)
2401 (math-read-factor): Use declared variable math-expr-data.
2403 2004-11-09 Glenn Morris <gmorris@ast.cam.ac.uk>
2405 * calendar/diary-lib.el (diary-from-outlook)
2406 (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
2407 interactive-p; but rather new optional argument NOCONFIRM.
2409 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2411 * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
2412 (easy-menu-name-match): Revert correspondingly.
2414 2004-11-09 Richard M. Stallman <rms@gnu.org>
2416 * emacs-lisp/bytecomp.el (byte-compile-defalias):
2417 Turn off warnings for the new function even if definition not constant.
2418 If the definition isn't a quoted symbol, record (FUNCTION . t).
2419 (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
2420 (byte-compile-callargs-warn): Handle (FUNCTION . t).
2421 (display-call-tree, byte-compile-arglist-warn):
2422 Handle t returned by byte-compile-fdefinition.
2424 2004-11-09 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
2426 * Makefile.in (maintainer-clean): Depend on distclean.
2428 * help-fns.el (help-C-file-name): File name must be in build-files
2431 2004-11-09 Jay Belanger <belanger@truman.edu>
2433 * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
2434 (calc-start-hook, calc-end-hook, calc-load-hook): New variables.
2436 * calc/calc.el (calc, calc-trail-display, calc-mode):
2437 Remove obsolete sections.
2439 * calc/calc.el (calc-x-paste-text): Remove.
2441 * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to
2444 2004-11-09 Nick Roberts <nickrob@snap.net.nz>
2446 * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
2447 (gdb-info-frames-custom, gdb-frame-handler): Use it to find
2448 current frame (in case of recursive calls).
2449 (gdb-show-changed-values): Add :version keyword.
2451 2004-11-09 Kenichi Handa <handa@m17n.org>
2453 * international/mule-cmds.el: Change coding: tag back to
2456 2004-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2458 * international/mule-cmds.el: Change coding-system to utf-8.
2459 (select-safe-coding-system-interactively):
2460 New function extracted from select-safe-coding-system.
2461 (select-safe-coding-system): Use it.
2463 2004-11-08 Richard M. Stallman <rms@gnu.org>
2465 * subr.el (syntax-after): Doc fix.
2467 * paren.el (show-paren-function): Change calls to syntax-after
2468 for new way of returning the value.
2470 * menu-bar.el (menu-bar-file-menu): Make this the real name
2471 and menu-bar-files-menu the alias. Use the former.
2472 (global-map): Use `file', not `files', as the symbol.
2474 * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
2476 * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
2477 Don't use beginning-of-buffer.
2478 (filesets-cmd-show-result): Use with-no-warnings.
2480 2004-11-08 Juri Linkov <juri@jurta.org>
2482 * progmodes/compile.el (compile): Don't overwrite last command in
2483 minibuffer history with default command if they are not equal.
2485 2004-11-08 Jay Belanger <belanger@truman.edu>
2487 * calc/calcalg2.el (math-do-integral-methods): Try linear then
2488 non-linear substitutions.
2490 2004-11-08 Jay Belanger <belanger@truman.edu>
2492 * calc/calcalg2.el (math-linear-subst-tried): New variable.
2493 (math-do-integral): Set `math-linear-subst-tried' to nil.
2494 (math-do-integral-methods): Use `math-linear-subst-tried' to
2495 determine what type of substitution to try.
2496 (math-integ-try-linear-substituion):
2497 Set `math-linear-subst-tried' to t.
2499 2004-11-08 Kim F. Storm <storm@cua.dk>
2501 * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
2503 2004-11-07 Juri Linkov <juri@jurta.org>
2505 * info-look.el (info-lookup): Allow reusing in the current buffer
2506 not only *info* buffer, but all (even renamed) Info buffers
2507 by checking for major-mode instead of *info* buffer name.
2508 (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
2509 (octave-mode, maxima-mode) <doc-spec>:
2510 Allow long dashes generated by Texinfo 4.7 before definitions.
2511 (texinfo-mode) <doc-spec>: Add space to suffix to find command
2512 definitions with argument separated by space.
2514 2004-11-06 Richard M. Stallman <rms@gnu.org>
2516 * simple.el (next-error group, face): Move before first use.
2517 (next-error-highlight, next-error-highlight-no-select): Likewise.
2519 * simple.el (line-move-invisible-p): Rename from line-move-invisible.
2520 (line-move): New args NOERROR and TO-END.
2521 Return t if if succeed in moving specified number of lines.
2522 (move-end-of-line): New function.
2524 * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
2525 (end-of-buffer-other-window): Likewise.
2527 * simple.el (line-move-ignore-invisible): Default to t.
2529 * subr.el (syntax-after): Return the syntax letter, not the raw code.
2531 * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
2533 * international/iso-cvt.el (iso-cvt-define-menu):
2534 Rename menu-bar-files-menu to menu-bar-file-menu.
2536 * net/browse-url.el (browse-url-gnome-moz-program)
2537 (browse-url-gnome-moz-arguments): Move up before first use.
2539 * net/tramp.el (tramp group): Add :version.
2541 * progmodes/ada-xref.el (ada-gdb-application):
2542 Use goto-char instead of beginning-of-buffer.
2544 * progmodes/cperl-mode.el (cperl-info-on-command):
2545 Use goto-char instead of beginning-of-buffer.
2547 * progmodes/idlw-shell.el (idlwave-shell-examine-map):
2548 Move up before first use.
2549 (idlwave-shell-temp-pro-file): Likewise.
2550 (idlwave-shell-temp-rinfo-save-file): Likewise.
2551 (idlwave-shell-temp-file): Minor doc fix.
2553 * textmodes/flyspell.el (flyspell-external-point-words):
2554 Use goto-char instead of beginning-of-buffer.
2556 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net>
2558 * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
2559 /dev/stdout" before trying "uudecode -o -". Suggested by Han Boetes.
2560 (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
2562 2004-11-06 David Ponce <david@dponce.com>
2564 * recentf.el (recentf-menu-path): Use menu item name.
2566 2004-11-06 Eli Zaretskii <eliz@gnu.org>
2568 * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
2569 display doesn't support images.
2571 2004-11-06 Andreas Schwab <schwab@suse.de>
2573 * tempo.el (tempo-match-finder): Doc fix.
2575 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
2577 2004-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2579 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
2580 (easy-menu-lookup-name): New fun to replace it.
2581 (easy-menu-get-map): Use it to obey menu item names (rather than just
2582 keys) when looking up `path'.
2583 (easy-menu-always-true-p): Rename from easy-menu-always-true.
2584 (easy-menu-convert-item-1): Adjust to new name.
2586 2004-11-06 Peter Heslin <pj@heslin.eclipse.co.uk> (tiny change)
2588 * outline.el (hide-body): Don't hide lines at the top of the file
2589 that precede the first header line.
2591 2004-11-06 Paul Pogonyshev <pogonyshev@gmx.net>
2593 * align.el (align-areas): Delete whitespace before reindenting, so
2594 that tabs are never placed after spaces.
2596 2004-11-06 Alan Shutko <ats@acm.org>
2598 * macros.el (insert-kbd-macro): Do completions based on macros,
2599 rather than all commands.
2601 2004-11-06 David Hansen <david.hansen@gmx.net> (tiny change)
2603 * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
2604 to solve a bug whereby tags with 'b' don't match.
2606 2004-11-05 Juri Linkov <juri@jurta.org>
2608 * info.el (Info-search): Don't search in node header lines
2611 * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
2612 symbol-constituent characters after dot, not only digits.
2614 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org>
2616 * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
2618 2004-11-04 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
2620 * dired.el (dired-read-dir-and-switches): Call read-directory-name
2621 if a dialog will be used, read-file-name otherwise.
2623 2004-11-04 Richard M. Stallman <rms@gnu.org>
2625 * textmodes/table.el (table group): Add :version.
2627 * textmodes/ispell.el (ispell-word):
2628 Don't alter args; set them only thru `interactive' spec.
2630 * textmodes/flyspell.el (flyspell-word):
2631 Don't alter FOLLOWING; set it only thru `interactive' spec.
2633 * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
2635 * net/browse-url.el (browse-url-maybe-new-window):
2636 Use called-interactively-p.
2638 * mail/supercite.el (sc-cite-region):
2639 Don't use interactive-p. Add arg INTERACTIVE.
2640 (sc-version): Don't use interactive-p. Rename arg to MESSAGE.
2642 * international/mule-cmds.el (set-input-method, toggle-input-method):
2643 Don't use interactive-p. Add arg INTERACTIVE.
2645 * eshell/esh-mode.el (eshell-show-maximum-output):
2646 Don't use interactive-p.
2647 (eshell-truncate-buffer): Just message, no error, if buffer is short.
2649 * mouse.el (mouse-show-mark): Get positions to delete from mark
2650 and point, not from mouse-drag-overlay.
2652 * imenu.el (imenu-eager-completion-buffer): Add :version.
2654 * filesets.el (filesets group): Add :version.
2656 2004-11-03 Daniel Pfeiffer <occitan@esperanto.org>
2658 * files.el (xml-based-modes): Delete var.
2659 (magic-mode-alist): New more general var.
2660 (set-auto-mode): Use it.
2662 * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
2663 when clicking from another window.
2665 2004-11-03 Thien-Thi Nguyen <ttn@gnu.org>
2667 * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
2668 (vc-cvs-annotate-time): Incorporate value of deleted var.
2669 Remove special-case handling of beginning-of-buffer cruft.
2670 Cache ending position (point) and return value in text property
2671 `vc-cvs-annotate-time', and consult it on subsequent invocations.
2673 * vc-cvs.el (vc-cvs-annotate-command):
2674 Delete extraneous lines from beginning of buffer.
2675 * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
2677 * progmodes/grep.el (grep-default-command): Take empty string
2678 for tag if all other methods yield nil. Shell-quote the tag.
2680 * vc.el (vc-annotate-display-autoscale): Add prefix-arg
2681 spec in `interactive' form, and mention it in the docstring.
2682 Also, make sure point is at bol after calling `annotate-time'.
2684 2004-11-02 Richard M. Stallman <rms@gnu.org>
2686 * cus-edit.el (customize-group-other-window):
2687 Select the window that displays the custom buffer.
2688 (custom-buffer-create-other-window): Likewise.
2690 * comint.el (comint-insert-input): Fix previous change.
2692 * emacs-lisp/elp.el (elp-instrument-function):
2693 Use called-interactively-p.
2695 * emacs-lisp/easymenu.el (easy-menu-intern):
2696 Don't downcase; rather, case-flip the first letter of each word.
2698 * emacs-lisp/easy-mmode.el (define-minor-mode):
2699 Use called-interactively-p.
2701 * emacs-lisp/bytecomp.el (byte-compile-warning-types):
2702 Add interactive-only.
2703 (byte-compile-warnings): Add interactive-only as option.
2704 (byte-compile-interactive-only-functions): New variable.
2705 (byte-compile-form): Warn about calls to functions
2706 in byte-compile-interactive-only-functions.
2708 * emacs-lisp/autoload.el (update-file-autoloads):
2709 Don't use interactive-p; take new arg SAVE-AFTER.
2711 * emacs-lisp/advice.el (ad-make-advised-definition):
2712 Use called-interactively-p.
2714 2004-11-02 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
2716 * files.el (find-file-existing): New function.
2718 * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
2719 find-file-existing. Add "New File..." that calls find-file.
2721 * diropen.pbm diropen.xpm: New files.
2723 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
2724 icon diropen. New tool bar item find-file-existing uses icon open.
2726 * dired.el (dired-read-dir-and-switches): Call read-driectory-name
2727 instead of read-file-name.
2729 2004-11-02 Ulf Jasper <ulf.jasper@web.de>
2731 * calendar/icalendar.el (icalendar-version): Increase to 0.08.
2732 (icalendar--split-value): Change name of work buffer.
2733 (icalendar--get-weekday-abbrev): Return nil on error.
2734 (icalendar--date-to-isodate): New function.
2735 (icalendar-convert-diary-to-ical)
2736 (icalendar-extract-ical-from-buffer): Use only two args for
2737 make-obsolete (XEmacs compatibility).
2738 (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
2739 (icalendar-export-region): Doc fix.
2740 If error, return non-nil and write errors to a buffer.
2741 Use correct weekday for weekly recurring events.
2742 Check whether date has been parsed for ordinary events.
2743 Make weekly events start in the year 2000.
2744 DTEND is non-inclusive, shift end date by one day if
2745 necessary (not for entries that have date and time).
2746 Rename local let variables: oops -> found-error, datestring ->
2749 2004-11-02 Kim F. Storm <storm@cua.dk>
2751 * files.el (set-auto-mode-0): Don't rely on dynamic binding of
2752 keep-mode-if-same variable. Add it as optional arg instead.
2753 (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
2755 * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
2756 substitute-command-keys will select lower-case bindings like those
2757 used in the static help texts.
2759 * descr-text.el (describe-text-properties): Don't err if called in
2760 the *Help* buffer; output to *Help-2* buffer instead.
2762 * kmacro.el (group kmacro): Add :version.
2763 (kmacro-keyboard-quit): New function to cleanup on C-g.
2764 (kmacro-start-macro): Set defining-kbd-macro to append when
2765 appending to last macro.
2767 * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
2769 2004-11-02 Nick Roberts <nickrob@snap.net.nz>
2771 * progmodes/gdb-ui.el (gdb-enable-debug-log)
2772 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
2773 (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
2774 Add :version keyword.
2776 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com>
2778 * progmodes/flymake.el (flymake-err-line-patterns):
2779 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
2780 `compilation-error-regexp-alist-alist' to internal Flymake format.
2782 * progmodes/flymake.el: Eliminate byte-compiler warnings.
2784 2004-11-01 Jay Belanger <belanger@truman.edu>
2786 * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
2787 with `interactive "s"'.
2789 2004-11-01 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
2791 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
2792 Revert change from 2004-10-16. '*' checks the current buffer, but the
2793 mouse click may be in another buffer.
2795 2004-11-01 John Paul Wallington <jpw@gnu.org>
2797 * files.el (large-file-warning-threshold): Add :version keyword.
2798 (kill-some-buffers): Doc fix.
2800 * thumbs.el (group thumbs): Add :version keyword.
2802 * textmodes/bibtex.el (bibtex-make-field): Fix typo.
2804 2004-11-01 Richard M. Stallman <rms@gnu.org>
2806 * textmodes/ispell.el (ispell-word): Don't use interactive-p.
2808 * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
2810 * allout.el (allout group): Add :version.
2811 (allout-init): Don't use interactive-p.
2812 (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
2813 (allout-forward-current-level, allout-backward-current-level):
2814 Don't use interactive-p.
2816 * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
2817 (bibtex-find-text): Likewise.
2819 * progmodes/vhdl-mode.el (vhdl-fill-region)
2820 (vhdl-beginning-of-statement): Don't use interactive-p.
2822 * progmodes/idlwave.el (idlwave-update-routine-info):
2823 Don't use interactive-p.
2825 * progmodes/idlw-shell.el (idlwave-shell-send-char):
2826 Don't use interactive-p.
2828 * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
2829 Don't use interactive-p.
2831 * progmodes/ada-xref.el (ada-make-body-gnatstub):
2832 Don't use interactive-p.
2834 * play/fortune.el (fortune-to-signature): Don't use interactive-p.
2835 (fortune-in-buffer): Doc fix.
2837 * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
2839 * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
2840 don't select the temporary buffer.
2841 (eudc-get-email): New optional arg ERROR; don't use interactive-p.
2842 (eudc-get-phone): Likewise.
2844 2004-11-01 Kim F. Storm <storm@cua.dk>
2846 * man.el (Man-xref-normal-file): Fix help-echo.
2848 2004-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
2850 * reveal.el (reveal-last-tick): New var.
2851 (reveal-post-command): Use it to avoid closing overlays when we're
2852 appending text to them.
2854 2004-10-31 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2856 * textmodes/bibtex.el: Require button.
2857 (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
2858 (bibtex-reference-keys): Distinguish between header keys and
2860 (bibtex-beginning-of-field): New function.
2861 (bibtex-url-map): Remove.
2862 (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
2863 (bibtex-font-lock-url-regexp): Assume that field names begin at
2864 the beginning of a line.
2865 (bibtex-font-lock-url): Simplify. Do not use bibtex-enclosing-field.
2866 Remove field delimiters. Use bibtex-beginning-of-field.
2867 Bugfix, point can be inside a field with a url.
2868 (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
2870 (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
2871 (bibtex-key-in-head): Simplify.
2872 (bibtex-current-line): Use bolp.
2873 (bibtex-parse-keys): Remove unused arg `add'.
2874 Use bibtex-type-in-head and bibtex-key-in-head.
2875 (bibtex-parse-entry, bibtex-autofill-entry):
2876 Use bibtex-type-in-head and bibtex-key-in-head.
2877 (bibtex-autokey-get-field): Do not alter case of replacement text.
2878 (bibtex-autokey-get-names): Do all processing of name list.
2879 (bibtex-autokey-get-year): New function.
2880 (bibtex-autokey-get-title): Do all processing of title words.
2881 (bibtex-generate-autokey): Simplify.
2882 (bibtex-string-files-init): Use default-directory.
2883 Allow for absolute file names in bibtex-string-files.
2884 (bibtex-files, bibtex-file-path): New variables.
2885 (bibtex-files-expand): New function.
2886 (bibtex-find-entry-globally): New command.
2887 (bibtex-summary-function): New variable.
2888 (bibtex-summary): Default value of bibtex-summary-function.
2889 (bibtex-find-crossref): New optional args pnt and split.
2890 (bibtex-complete-key-cleanup): Call bibtex-summary-function.
2891 (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
2892 (bibtex-validate): Fix docstring. Check only abbreviated month fields.
2893 Fix handling of required and alternative fields.
2894 Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
2895 Use cons and display-buffer.
2896 (bibtex-validate-globally): New command.
2897 (bibtex-clean-entry): Use bibtex-files-expand. Do not call
2898 bibtex-parse-keys and bibtex-parse-strings for updating
2899 bibtex-reference-keys and bibtex-strings.
2900 (bibtex-realign): Remove blank lines past the last entry.
2901 (bibtex-reformat): Use bibtex-entry-format as default.
2902 (bibtex-choose-completion-string): Remove.
2903 (bibtex-complete): Do not use bibtex-choose-completion-string.
2904 (bibtex-url): Simplify.
2906 2004-10-31 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
2908 * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
2909 (x-dnd-types-alist, x-dnd-open-file-other-window)
2910 (x-dnd-known-types): Add :version.
2912 2004-10-31 John Paul Wallington <jpw@gnu.org>
2914 * ibuffer.el (group ibuffer): Add :version keyword.
2916 2004-10-31 Kim F. Storm <storm@cua.dk>
2918 * ido.el (group ido): Add :version keyword.
2919 (ido-mode): Remove :version keyword.
2921 * emulation/cua-base.el (group cua): Add :version keyword.
2922 (cua-mode): Remove :version keyword.
2924 2004-10-30 Luc Teirlinck <teirllm@auburn.edu>
2926 * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
2928 * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
2930 (help-at-pt-timer-delay): Add :initialize keyword. Simplify :set
2932 (help-at-pt-display-when-idle): Remove autoload.
2934 2004-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
2936 * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
2938 2004-10-30 Juri Linkov <juri@jurta.org>
2940 * help.el (function-called-at-point):
2941 * help-fns.el (variable-at-point): Read -> intern.
2943 2004-10-30 Simon Josefsson <jas@extundo.com>
2945 * progmodes/autoconf.el (autoconf-font-lock-keywords):
2948 2004-10-29 Simon Josefsson <jas@extundo.com>
2950 * subr.el (read-passwd): Move back from password.el.
2952 * password.el: Remove, not ready yet.
2954 2004-10-29 Andreas Schwab <schwab@suse.de>
2956 * speedbar.el (speedbar-frame-parameters): Improve customize type.
2958 2004-10-29 Sam Steingold <sds@gnu.org>
2960 * mouse.el (mouse-show-mark): Replace the last occurrence of
2961 x-lost-selection-hooks with x-lost-selection-functions.
2963 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2965 * mouse.el (mouse-show-mark): Adjust to new name and don't assume
2966 x-lost-selection-functions is bound.
2968 * mouse-sel.el (mouse-sel-mode):
2969 * emacs-lisp/lselect.el: Adjust to new names for
2970 x-(lost|sent)-selection-functions.
2972 * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
2973 New obsolete aliases of x-lost-selection-functions and
2974 x-sent-selection-functions.
2976 2004-10-28 Kim F. Storm <storm@cua.dk>
2978 * imenu.el (imenu-scanning-message): Remove.
2979 (imenu-progress-message): Make it a no-op.
2981 2004-10-28 John Paul Wallington <jpw@gnu.org>
2983 * files.el (set-auto-mode): Call `throw' correctly.
2985 2004-10-28 Juri Linkov <juri@jurta.org>
2987 * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
2988 to search `Info-...' commands in `info' manual.
2989 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
2990 Add 'info-file "emacs" property.
2991 (Info-find-emacs-command-nodes): Fix index line number regexp.
2992 Set real line number (instead of fake 0) in first element of the
2994 (Info-goto-emacs-command-node): Use line number of first element
2995 to set point in the first found Info node.
2997 * progmodes/grep.el (grep-regexp-alist): Move match highlighting
2998 code to `grep-mode-font-lock-keywords'.
2999 (grep-mode-font-lock-keywords): Delete grep markers instead
3000 of making them invisible.
3002 2004-10-28 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
3004 * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
3005 and x-server-version in bug report.
3007 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org>
3009 * files.el (set-auto-mode-0): New function.
3010 (set-auto-mode): Use it to handle aliased modes and to
3011 be consistent between C-x C-f and C-x C-w.
3013 2004-10-28 Kenichi Handa <handa@m17n.org>
3015 * international/utf-8.el (utf-translate-cjk-charsets):
3016 Add katakana-jisx0201.
3018 * international/subst-jis.el: Add data for JISX0201.
3020 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
3022 * obsolete/hilit19.el (hilit-mode): New function.
3023 Move all the toplevel side-effecting stuff into it, so that loading
3024 hilit19 doesn't mess everything up any more.
3026 2004-10-27 Richard M. Stallman <rms@gnu.org>
3028 * add-log.el (add-change-log-entry): Set up mailing address
3029 and full name later, and don't alter add-log-mailing-address
3030 or add-log-full-name.
3032 * elide-head.el (elide-head): Change error to message.
3033 (elide-head-show): Likewise.
3035 * apropos.el (apropos-macrop): Doc fix.
3037 * mouse.el (mouse-show-mark): Do most processing the same
3038 regardless of transient-mark-mode.
3040 * shadowfile.el (shadow-copy-files): Use interactive-p
3041 only to control whether to print a message.
3043 * tar-mode.el (tar-mode): Use write-contents-functions,
3044 not write-contents-hooks.
3046 * eshell/em-unix.el (eshell-du-sum-directory): Don't use
3049 2004-10-27 Richard M. Stallman <rms@gnu.org>
3051 * strokes.el (strokes-unload-hook): Fix previous change.
3053 * type-break.el (type-break-run-at-time): Always use run-at-time;
3054 forget the alternatives.
3055 (type-break-cancel-function-timers): Always use cancel-function-timers;
3056 forget the alternatives.
3058 * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
3060 2004-10-27 Kenichi Handa <handa@m17n.org>
3062 * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
3064 * international/subst-gb2312.el: Likewise.
3066 * international/subst-big5.el: Likewise.
3068 * international/subst-ksc.el: Likewise.
3070 * international/utf-8.el (utf-translate-cjk-unicode-range-string):
3072 (utf-translate-cjk-set-unicode-range): New function.
3073 (utf-translate-cjk-unicode-range): Make it customizable.
3074 (utf-8-post-read-conversion):
3075 Use utf-translate-cjk-unicode-range-string.
3076 (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
3079 2004-10-26 Daniel Pfeiffer <occitan@esperanto.org>
3081 * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
3082 trivial variants to shorten the list.
3083 (xml-based-modes): New var.
3084 (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
3085 declaration higher priority than auto-mode-alist.
3087 * find-file.el (cc-other-file-alist): Bring it in line with
3088 cc-mode's auto-mode-alist entries and use \' instead of $.
3090 * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
3091 and add "Id" and "Name" submenus to it.
3093 * imenu.el (imenu--generic-function): Skip matches in comments.
3095 2004-10-26 Jay Belanger <belanger@truman.edu>
3097 * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
3098 (full-calc-keypad, calc-trail-display): Use an extra argument
3099 instead of `interactive-p'.
3101 * calc/calc-misc.el (calc-other-window): Use an extra argument
3102 instead of `interactive-p'.
3104 * calc/calc-rewr.el (calc-match): Use an extra argument instead of
3107 2004-10-26 Kim F. Storm <storm@cua.dk>
3109 * help.el (describe-key): Describe both down-event and up-event
3112 2004-10-26 Richard M. Stallman <rms@gnu.org>
3114 * woman.el (woman): Don't call interactive-p.
3116 * pcomplete.el (pcomplete): Instead of interactive-p,
3117 use an arg set non-nil by the interactive spec.
3119 * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
3120 use an arg set non-nil by the interactive spec.
3122 * man.el (Man-cleanup-manpage): Instead of interactive-p,
3123 use an arg set non-nil by the interactive spec.
3125 2004-10-26 Pavel Kobiakov <pk_at_work@yahoo.com>
3127 * progmodes/flymake.el (flymake-split-string):
3128 Use `flymake-split-string-remove-empty-edges' in any case.
3130 2004-10-26 Masatake YAMATO <jet@gyve.org>
3132 * progmodes/flymake.el (flymake-err-line-patterns):
3133 Use `compilation-error-regexp-alist-alist' instead of
3134 `compilation-error-regexp-alist'.
3136 2004-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3138 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
3139 verbatim face on the \ of \end{verbatim}.
3141 2004-10-25 Jay Belanger <belanger@truman.edu>
3143 * calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
3146 2004-10-25 Simon Josefsson <jas@extundo.com>
3148 * subr.el (read-passwd): Move to net/password.el.
3150 * net/password.el (read-passwd): Add. Autoload it.
3152 2004-10-25 Kai Grossjohann <kai.grossjohann@gmx.net>
3154 * mouse-sel.el (mouse-sel-mode): Specify custom group.
3156 * simple.el (process-file): Fix logic.
3158 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
3160 * indent.el (set-left-margin, set-right-margin): Delete redundant code.
3161 (increase-right-margin): Remove erroneous call to `interactive-p'.
3163 2004-10-24 Kim F. Storm <storm@cua.dk>
3165 * help.el (describe-mode): Fix 2004-10-13 change.
3166 Copy pure "Auto Fill" string so it can be propertized later
3167 without causing a read-only error.
3169 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
3171 * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
3174 2004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
3176 * simple.el (process-file): Accept nil for INFILE. Reported by
3179 2004-10-24 Masatake YAMATO <jet@gyve.org>
3181 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
3182 Handle periods and underscores in a function name.
3183 Remove the address fontification.
3185 2004-10-24 Masatake YAMATO <jet@gyve.org>
3187 * progmodes/asm-mode.el (asm-font-lock-keywords):
3188 Use font-lock-variable-name-face for registers.
3190 2004-10-24 Nick Roberts <nickrob@snap.net.nz>
3192 * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
3193 kill-all-local-variables.
3194 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
3195 (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
3196 Use kill-all-local-variables and provide mode-hooks.
3197 (gdb-assembler-font-lock-keywords): New font lock keywords definition.
3198 (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
3199 Suggested by Masatake YAMATO <jet@gyve.org>.
3201 2004-10-23 Kai Grossjohann <kai.grossjohann@gmx.net>
3203 * simple.el (process-file): New function, similar to call-process
3204 but supports file handlers.
3205 * vc.el (vc-do-command): Use it, instead of call-process.
3206 * net/tramp-vc.el (vc-do-command): Do not advise it if
3207 process-file is fboundp.
3208 * net/tramp.el (tramp-file-name-handler-alist): Add entry for
3210 (tramp-handle-process-file): New function.
3211 (tramp-file-name-for-operation): Support process-file.
3213 2004-10-23 Ulf Jasper <ulf.jasper@web.de>
3215 * calendar/icalendar.el (icalendar--weekday-array): New constant.
3216 (icalendar-weekdayabbrev-table)
3217 (icalendar-monthnumber-table): Delete.
3218 (icalendar--get-month-number): Use calendar-month-name-array.
3219 (icalendar--get-weekday-number): New function.
3220 (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
3221 (icalendar-export-region): Handle multi-line entries.
3222 (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
3224 2004-10-23 John Paul Wallington <jpw@gnu.org>
3226 * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
3227 `wildcards' set to t in interactive spec.
3229 * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
3230 interactive spec rather than use `interactive-p'.
3231 (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
3232 rather than use function `interactive-p'.
3234 2004-10-22 Kenichi Handa <handa@m17n.org>
3236 * international/mule.el (translate-region): Implement it in Lisp
3237 as a front end of translate-region-internal.
3239 2004-10-21 Jay Belanger <belanger@truman.edu>
3241 * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
3242 Declare these variables with defvar.
3244 * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
3245 is bound, only check to see if it is bound.
3247 2004-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
3249 * textmodes/tex-mode.el (tex-compilation-parse-errors):
3250 Don't output messages.
3252 * calc/calc-help.el (calc-describe-bindings): Fix last change.
3254 2004-10-21 John Paul Wallington <jpw@gnu.org>
3256 * calc/calc-graph.el (calc-graph-init):
3257 Use `set-process-query-on-exit-flag'.
3259 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org>
3261 * progmodes/compile.el (compilation-start): Rely on `cd' to get
3262 dir right and also allow argumentless cd.
3264 2004-10-19 Richard M. Stallman <rms@gnu.org>
3266 * textmodes/flyspell.el (flyspell-mode): Doc fix.
3268 * eshell/em-unix.el (eshell-grep):
3269 Don't bind compilation-process-setup-function.
3271 * comint.el (comint-insert-input): Use @ in `interactive'.
3272 (comint-input-filter-functions): Doc fix.
3273 (comint-kill-whole-line, comint-get-source): Doc fix.
3275 * progmodes/compile.el (compilation-setup):
3276 Don't set buffer-read-only if MINOR is non-nil.
3278 2004-10-19 Jay Belanger <belanger@truman.edu>
3280 * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
3281 (calc-emacs-type-gnu19): Remove.
3282 (calc-digit-map, calc-read-key-sequence, calc-read-key):
3283 Remove check for old emacs versions.
3285 * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
3286 (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
3289 * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
3290 the end of the minibuffer.
3291 (calc-do-alg-entry): Remove Emacs version check. Use `copy-keymap' to
3294 * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
3296 * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
3297 call that would be given when the current emacs was used.
3299 2004-10-19 Ulf Jasper <ulf.jasper@web.de>
3301 * calendar/icalendar.el: Set coding to utf-8.
3302 (icalendar-version): Increase to 0.07.
3303 (icalendar-monthnumber-table): Change March pattern.
3304 (icalendar-get-all-event-properties)
3305 (icalendar-set-event-property): Delete.
3306 (icalendar-all-events): No longer interactive.
3307 (icalendar-convert-diary-to-ical)
3308 (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
3310 (icalendar-export-file, icalendar-export-region): New functions;
3311 essentially old `icalendar-convert-diary-to-ical' but appending to
3312 target rather than overwriting.
3313 (icalendar-import-file): Append to target file rather than
3314 overwriting. Fourth arg deleted.
3315 (icalendar-import-buffer): New name for old
3316 `icalendar-extract-ical-from-buffer'.
3317 (icalendar--convert-string-for-import): New name for
3318 old `icalendar-convert-for-import'.
3319 (include-icalendar-files): Delete.
3320 Prefix for all internal functions changed from `icalendar-'
3323 2004-10-19 Richard M. Stallman <rms@gnu.org>
3325 * paths.el (news-path): Fix previous change.
3327 2004-10-18 Jay Belanger <belanger@truman.edu>
3329 * calc/calc-help.el (calc-describe-bindings):
3330 Set `buffer-read-only' to nil while working in the keybindings buffer;
3331 remove some extra information from the keybindings buffer.
3333 2004-10-18 David Ponce <david@dponce.com>
3335 * mouse.el (mouse-drag-move-window-top): New function.
3336 (mouse-drag-mode-line-1): Use it.
3338 2004-10-18 Thien-Thi Nguyen <ttn@gnu.org>
3340 * info.el (Info-fontify-node): For multiline refs,
3341 arrange to unfontify newline and surrounding whitespace.
3343 2004-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
3345 * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
3346 directory is missing.
3348 2004-10-17 John Paul Wallington <jpw@gnu.org>
3350 * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
3351 New customizable variable; whether to display buffers that match
3352 `ibuffer-maybe-show-predicates' by default.
3353 (ibuffer-maybe-show-predicates): Mention it in docstring.
3354 (ibuffer-display-maybe-show-predicates): New variable.
3355 (ibuffer-update): Prefix arg now toggles whether buffers that
3356 match `ibuffer-maybe-show-predicates' should be displayed.
3357 (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
3358 locally to heed `ibuffer-default-display-maybe-show-predicates'.
3359 (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
3361 2004-10-17 Michael Albinus <michael.albinus@gmx.de>
3363 * net/tramp.el: Redo sync with Tramp 2.0.45. Last commit did not
3366 2004-10-17 Daniel Pfeiffer <occitan@esperanto.org>
3368 * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
3369 (Buffer-menu-beginning): New helper function.
3370 (Buffer-menu-execute): Use it.
3371 (Buffer-menu-select): Use it.
3372 (Buffer-menu-sort): Use it and also keep markers.
3374 2004-10-17 Richard M. Stallman <rms@gnu.org>
3376 * paths.el (news-directory): Rename from news-path. Old name alias.
3377 (rmail-spool-directory): Use defvar.
3378 (sendmail-program): Use defcustom.
3379 (remote-shell-program): Use defcustom.
3380 (term-file-prefix): Use defvar.
3381 (abbrev-file-name): Use defvar.
3383 * term.el: Add maintainer.
3385 * subr.el (with-local-quit): Return nil if there's a quit.
3386 (read-passwd): Use with-local-quit. Doc fix.
3388 * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
3389 (strokes-unload-hook): Set as a variable with add-hook.
3391 * startup.el (fancy-splash-tail, normal-splash-screen):
3392 Update copyright year.
3394 * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
3396 * server.el (server-unload-hook): Set as a variable with add-hook.
3398 * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
3400 * frame.el (special-display-popup-frame):
3401 Make the buffer current as its frame is created.
3403 * delsel.el (delsel-unload-hook): Set as a variable.
3405 * comint.el (comint-output-filter-functions):
3406 Add comint-watch-for-password-prompt.
3407 (comint-read-noecho): Function deleted.
3408 (send-invisible): Use read-passwd.
3410 * fringe.el (fringe-mode-initialize): New function.
3411 (fringe-mode): Use fringe-mode-initialize as :initialize.
3413 2004-10-17 Kim F. Storm <storm@cua.dk>
3415 * language/indian.el (indian-script-language-alist): Swap value and doc.
3416 (indian-font-char-index-table): Doc fix.
3418 2004-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
3420 * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
3422 2004-10-16 Juri Linkov <juri@jurta.org>
3424 * progmodes/compile.el (compilation-start): Move let-binding of
3425 `process-environment' into `with-current-buffer' body.
3426 Reported by Matt Hodges <MPHodges@member.fsf.org>.
3428 2004-10-16 Richard M. Stallman <rms@gnu.org>
3430 * pcvs-util.el (cvs-bury-buffer):
3431 Don't call get-buffer-window for effect.
3433 * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
3435 * newcomment.el (comment-auto-fill-only-comments): Add autoload.
3437 * msb.el (msb-unload-hook): Set the variable.
3439 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
3440 Use * to err if buffer is readonly.
3442 * subr.el (looking-back): Return only t or nil.
3444 * whitespace.el (whitespace-unload-hook): Set the variable.
3446 * view.el (view-mode-enable): Set view-page-size and
3447 view-half-page-size to nil.
3448 (view-set-half-page-size-default): view-half-page-size = nil
3450 (View-scroll-page-forward): Use view-page-size-default.
3451 (View-scroll-page-backward): Likewise.
3452 (view-page-size, view-half-page-size): Doc fixes.
3454 * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
3456 * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
3458 * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
3459 "cl" like other files. Instead, call byte-compile-find-cl-functions.
3460 (byte-compile-log-1): Bind inhibit-read-only.
3461 (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
3462 (byte-compile-log-warning): Likewise.
3463 (byte-compile-file-form-require): Detect "cl" from the arg value.
3465 * progmodes/compile.el (compilation-start): Assume compilation-mode
3466 will make the buffer read-only.
3467 (compilation-mode): Take arg name-of-mode.
3468 (compilation-setup): Make buffer read-only.
3469 (compilation-handle-exit): Bind inhibit-read-only.
3471 * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
3472 (ispell-message): Likewise.
3473 (ispell-show-choices): Don't call get-buffer-window uselessly.
3474 (ispell-init-process): Use set-process-query-on-exit-flag.
3476 2004-10-16 Kim F. Storm <storm@cua.dk>
3478 * fringe.el (fringe-bitmaps): Only initialize when defined.
3480 * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
3481 (cvs-mode-find-file): Add optional `view' arg to enter view mode.
3483 * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
3485 2004-10-15 Simon Josefsson <jas@extundo.com>
3487 * net/password.el: Add.
3489 2004-10-14 Masatake YAMATO <jet@gyve.org>
3491 * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
3492 (gdb-script-end-of-defun): New function.
3493 (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
3494 `gdb-script-end-of-defun' as *-of-defun-function.
3496 2004-10-13 Daniel Pfeiffer <occitan@esperanto.org>
3498 * button.el (button-activate): Allow a marker to display as an action.
3500 * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
3502 * help.el (describe-mode): Use it to make minor mode list into
3505 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
3507 * vc.el (vc-annotate-display-select): Fix typo.
3509 * subr.el (substitute-key-definition-key): New function.
3510 (substitute-key-definition): Use it with map-keymap.
3511 (event-modifiers): Use push.
3512 (mouse-movement-p, with-temp-buffer): Simplify.
3514 2004-10-12 Jay Belanger <belanger@truman.edu>
3516 * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
3518 (calc-help-index-entries): New function.
3519 (calc-describe-function): Use `calc-help-function-list' instead of
3520 obarray for completion.
3521 (calc-describe-variable): Use `calc-help-variable-list' instead
3522 of obarray for completion.
3524 2004-10-12 Richard M. Stallman <rms@gnu.org>
3526 * info-look.el (info-lookup-file): Add info-file property.
3527 (info-lookup-symbol): Likewise.
3529 * info.el (info-xref): Add underlining.
3530 (info): Add info-file property.
3531 (Info-find-emacs-command-nodes): Specify case-sensitive search.
3533 2004-10-12 Michael Albinus <michael.albinus@gmx.de>
3535 Sync with Tramp 2.0.45.
3537 * net/tramp.el (top): Apply `def-edebug-spec' only if function is
3538 defined. This is not the case for XEmacs without package "edebug".
3539 (tramp-set-auto-save-file-modes): Set permissions of autosaved
3540 remote files to the permissions of the original file. This is not
3541 the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to
3542 `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>.
3543 (tramp-perl-decode): Fix an error in Perl implementation.
3544 $pending must be cleared every loop. Reported by Benjamin Place
3545 <benjaminplace@sprintmail.com>
3547 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
3548 Don't activate advice during definition. This is done later on,
3549 depending on test result of `substitute-in-file-name'.
3550 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3552 2004-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3554 * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
3556 * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
3558 2004-10-12 David Ponce <david@dponce.com>
3560 * recentf.el (recentf-edit-list): Update the menu when the recentf
3561 list has been modified.
3563 2004-10-12 Simon Josefsson <jas@extundo.com>
3565 * net/tls.el (tls-certtool-program): New variable.
3566 (tls-certificate-information): New function, based on
3567 ssl-certificate-information.
3569 2004-10-12 Kenichi Handa <handa@m17n.org>
3571 * international/mule.el (coding-system-equal): Move from mule-util.el.
3573 * international/mule-util.el (coding-system-equal): Move to mule.el.
3575 2004-10-12 Kim F. Storm <storm@cua.dk>
3577 * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
3578 reset kmacro-initial-counter-value if set.
3579 (kmacro-set-counter): Only set kmacro-counter if defining or executing
3580 macro. Set kmacro-initial-counter-value otherwise. Never set both.
3581 (kmacro-display): Show macro counter if non-zero.
3583 * subr.el (substitute-key-definition): Mention command remapping
3586 2004-10-11 Jay Belanger <belanger@truman.edu>
3588 * calc/calc-misc.el (calc-info-goto-node): New function.
3589 (calc-tutorial, calc-info-summary): Go to appropriate Calc info
3591 (calc-describe-copying, calc-describe-distribution)
3592 (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
3593 Go to appropriate info node in one step.
3595 2004-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3597 * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
3599 * font-lock.el (font-lock-apply-highlight): Fix last change.
3601 2004-10-11 Simon Josefsson <jas@extundo.com>
3603 * mail/smtpmail.el (smtpmail-open-stream): Look for
3604 starttls-gnutls-program instead of starttls-program iff
3605 starttls-use-gnutls is non-nil.
3606 (smtpmail-open-stream): Don't overwrite user settings of
3607 starttls-extra-arguments and starttls-extra-args.
3609 2004-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3611 * comint.el (comint-mouse-insert-input): Remove.
3612 (comint-insert-input): Make it work for mouse bindings.
3613 (comint-mode-map): Move defs into the declaration.
3614 (comint-output-filter): Typo.
3616 * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
3618 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net>
3620 * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
3621 (ange-ftp-call-chmod): Reference remote-shell-program instead of
3622 ange-ftp-remote-shell.
3624 2004-10-10 Andreas Schwab <schwab@suse.de>
3626 * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
3627 `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
3628 Reported by <sri@asu.edu>.
3630 2004-10-10 Benjamin Rutt <brutt@bloomington.in.us>
3632 * vc.el (vc-annotate-mode): Remove variable.
3633 (vc-annotate-display-select): Only call vc-annotate-mode
3634 if we're not in that mode already.
3636 2004-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
3638 * imenu.el (imenu--completion-buffer): Don't return t for rescan.
3639 (imenu-choose-buffer-index): Check here for rescan instead.
3641 * font-lock.el (font-lock-apply-highlight): Explicitly check the case
3642 where the face expression evals to nil.
3644 * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
3645 (tex-font-lock-keywords-2): Use it.
3646 (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
3648 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
3650 2004-10-09 Kim F. Storm <storm@cua.dk>
3652 * subr.el (progress-reporter-update): Define before first usage.
3653 (make-progress-reporter): Doc fix.
3655 2004-10-09 Luc Teirlinck <teirllm@auburn.edu>
3657 * textmodes/paragraphs.el (sentence-end-double-space)
3658 (sentence-end-without-period, sentence-end-without-space)
3659 (sentence-end): Doc fixes.
3661 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change)
3663 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
3664 Change paragraph-start regexp so we don't fill code starting with #'(.
3666 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change)
3668 * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
3670 (extract-address-components): Use it.
3672 2004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
3674 * subr.el (make-progress-reporter, progress-reporter-update)
3675 (progress-reporter-force-update, progress-reporter-do-update)
3676 (progress-reporter-done): New functions.
3678 * tar-mode.el (tar-summarize-buffer): Use progress reporter.
3680 * progmodes/etags.el (etags-tags-completion-table): Use progress
3682 (etags-tags-apropos): Likewise.
3684 2004-10-08 Alan Mackenzie <acm@muc.de>
3686 * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
3689 2004-10-08 Masatake YAMATO <jet@gyve.org>
3691 * server.el (server-process-filter): Wrap `process-send-region'
3692 by `condition-case' to guard the case when the pipe to PROC is closed.
3694 2004-10-07 Mark A. Hershberger <mah@everybody.org>
3696 * xml.el (xml-substitute-special): Limit handling of external entities.
3698 2004-10-06 Nick Roberts <nickrob@snap.net.nz>
3700 * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialise gdb-input-queue.
3702 2004-10-06 John Paul Wallington <jpw@gnu.org>
3704 * xml.el (xml-parse-dtd): Fix `error' call.
3706 2004-10-05 Mark A. Hershberger <mah@everybody.org>
3708 * xml.el (xml-substitute-special): Return a single string instead
3709 of a list of strings if an entity substitution is made.
3711 2004-10-05 Ulf Jasper <ulf.jasper@web.de>
3713 * calendar/icalendar.el: New file.
3715 2004-10-05 Juri Linkov <juri@jurta.org>
3717 * isearch.el (isearch-done): Set mark after running hook.
3718 Reported by Drew Adams <drew.adams@oracle.com>.
3720 * info.el (Info-history, Info-toc): Fix Info headers.
3721 (Info-toc): Narrow buffer before Info-fontify-node.
3722 (Info-build-toc): Don't check for special Info file names.
3723 Set main-file to nil if Info-find-file returns a symbol.
3725 2004-10-05 Emilio C. Lopes <eclig@gmx.net>:
3727 * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
3728 (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
3729 * calendar/cal-menu.el (calendar-mode-map): Ditto.
3731 2004-10-05 Glenn Morris <gmorris@ast.cam.ac.uk>
3733 * calendar/cal-iso.el (calendar-iso-read-args): New function,
3734 for old interactive spec from calendar-goto-iso-date.
3735 (calendar-goto-iso-date): Use it.
3736 (calendar-goto-iso-week): New function. Suggested by Emilio
3737 C. Lopes <eclig@gmx.net>.
3739 2004-10-04 Luc Teirlinck <teirllm@auburn.edu>
3741 * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
3742 `set-right-margin' bindings that follow the minor mode conventions.
3744 2004-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3746 * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
3747 (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
3748 (latex-block-args-alist): Add minipage and picture.
3749 (latex-block-body-alist): Use reftex-label if enabled.
3750 (latex-insert-block): Don't insert a \n if not necessary.
3751 (tex-compile-commands): Make sure dvips doesn't send to printer.
3752 (tex-compile-default): Handle the case where no executable is found.
3753 (latex-noindent-environments): New var.
3754 (latex-find-indent): Use it. Take an empty line as an arg-breaker.
3755 If tex-indent-allhanging is non-nil, make sure we only align for macros
3756 at beginning of line.
3758 2004-10-03 Daniel Pfeiffer <occitan@esperanto.org>
3760 * newcomment.el (comment-beginning): Doc fix and don't choke on
3761 unset `comment-end-skip' when at beginning of comment.
3763 2004-10-02 Dan Nicolaescu <dann@ics.uci.edu>
3765 * term.el (term-adjust-current-row-cache): Don't allow the current
3766 row to become negative.
3767 (term-emulate-terminal): Fix insert mode. Handle tab insertion at
3768 the end of the line. Fix scroll down. Add comments.
3769 (term-handle-ansi-escape): Don't exceed terminal width when moving
3771 (term-scroll-region): Move the cursor after setting the scroll region.
3773 2004-10-01 Luc Teirlinck <teirllm@auburn.edu>
3775 * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
3776 to `width' for consistency with docstring. Doc fix.
3778 2004-10-01 Martin Stjernholm <bug-cc-mode@gnu.org>
3780 * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
3781 This is necessary for derived modes.
3783 2004-09-30 Kim F. Storm <storm@cua.dk>
3785 * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
3786 (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
3788 * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
3789 kmacro-extract-lambda functions.
3790 (edit-kbd-macro): Handle kmacro lambda forms.
3791 Include counter and counter format in edit buffer.
3792 (edmacro-finish-edit): Get counter and format from edit buffer and
3793 update kmacro bindings when found.
3795 2004-09-29 Luc Teirlinck <teirllm@auburn.edu>
3797 * textmodes/paragraphs.el (forward-paragraph):
3798 Avoid args-out-of-range error when point winds up at the beginning of
3799 the buffer and hard newlines are enabled.
3801 * newcomment.el (comment-multi-line): Doc fix.
3803 2004-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
3805 * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
3806 (diff-fixup-modifs): Catch unified-diff file-headers.
3808 2004-09-29 Kim F. Storm <storm@cua.dk>
3810 * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
3811 (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
3812 (gdb-put-breakpoint-icon): Use breakpoint bitmap.
3814 * fringe.el (fringe-bitmap-p): New macro.
3815 (fringe-bitmaps): Add standard fringe bitmaps on load.
3817 2004-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
3819 * dired.el (dired-view-command-alist): Use more efficient regexps.
3820 Remove dubious arguments.
3821 (dired-align-file): New function.
3822 (dired-insert-directory): Use it.
3823 (dired-move-to-end-of-filename): Make the " -> " search more specific.
3824 (dired-buffers-for-dir): Remove unused var `pattern'.
3826 2004-09-28 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
3828 * calendar/diary-lib.el (list-diary-entries): Save diary buffer
3829 from diary display excursion. Store diary buffer's point for
3830 `simple-diary-display'.
3831 (simple-diary-display): Set window point and start when
3832 displaying buffer, to preserve point.
3834 2004-09-27 Luc Teirlinck <teirllm@auburn.edu>
3836 * textmodes/enriched.el (enriched-translations): Replace defconst
3839 2004-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3841 * printing.el: Doc fix.
3842 (pr-version): New version number (6.8.1).
3843 (pr-ps-file-using-ghostscript): Use make-temp-file instead of
3845 (pr-delete-file): Check if file exists before deleting it.
3846 Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
3848 2004-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
3850 * term.el (term-display-table): New variable.
3851 (term-mode): Use it.
3852 (term-exec-1): Set the coding system to binary.
3853 (term-emulate-terminal): Decode the string before inserting it.
3855 2004-09-26 Dan Nicolaescu <dann@ics.uci.edu>
3857 * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
3858 (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
3859 (map): Bind S-prior, S-next and S-insert.
3860 (term-mode): Set `indent-tabs-mode' to nil.
3861 (term-paste): New function to be bound to S-insert.
3862 (term-send-del, term-send-backspace): Change the strings sent.
3863 (term-termcap-format): Synchronyze with etc/e/eterm.ti.
3864 (term-handle-colors-array): Fix handling of underline and reverse.
3865 (term-handle-ansi-escape): Do not handle smcup/rmcup. Add comments.
3866 (term-erase-in-line): Fix comparison.
3867 (term-emulate-terminal): Fix line wrap handling.
3868 (term-start-output-log): Rename from `term-set-output-log'.
3869 (term-stop-output-log): Rename from `term-stop-photo'.
3870 (term-switch-to-alternate-sub-buffer): Comment out, unused.
3872 2004-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
3874 * dired.el (dired-move-to-filename): Don't output a message if
3875 raise-error is non-nil. Fix return position and value.
3877 * files.el (insert-directory): Obey --dired even with symlinks.
3879 2004-09-25 Lars Hansen <larsh@math.ku.dk>
3881 * ls-lisp.el (ls-lisp-format): Mark file names with property
3884 2004-09-25 Kim F. Storm <storm@cua.dk>
3886 * ido.el (ido-max-directory-size): New defcustom.
3887 (ido-decorations): Add "too big" element.
3888 (ido-directory-too-big): New dynamic var.
3889 (ido-may-cache-directory): Don't cache big directories.
3890 (ido-directory-too-big-p): New defun.
3891 (ido-set-current-directory): Update ido-directory-too-big.
3892 (ido-read-internal): Make empty ido-cur-item if too-big.
3893 (ido-buffer-internal): Use ido-read-internal directly instead of
3895 (ido-file-internal): Init ido-directory-too-big.
3896 (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
3897 and redo completion with full list.
3898 (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
3899 it, and show completions.
3900 (ido-all-completions): Let bind ido-directory-too-big to nil.
3901 (ido-exhibit): Handle ido-directory-too-big.
3902 (ido-read-buffer): Handle fallback to read-buffer.
3903 Init ido-directory-too-big.
3904 (ido-read-file-name, ido-read-directory-name, ido-completing-read):
3905 Init ido-directory-too-big.
3907 2004-09-24 Luc Teirlinck <teirllm@auburn.edu>
3909 * subr.el (delay-mode-hooks): Doc fix.
3911 2004-09-23 Luc Teirlinck <teirllm@auburn.edu>
3913 * textmodes/enriched.el
3914 (enriched-default-text-properties-local-flag): New variable.
3915 (enriched-mode): Make sure that enabling and disabling the mode is
3918 2004-09-23 H
\e,Ae
\e(Bkon Malmedal <hmalmedal@yahoo.no> (tiny change)
3920 * calendar/holidays.el (holiday-advent): Report on a specified day
3921 offset from advent, not just advent.
3922 (holiday-easter-etc): Report on one specified day offset from
3923 easter, not all easter holidays. Various Easter holidays moved to
3924 `christian-holidays' variable in calendar.el.
3925 * calendar/calendar.el (christian-holidays): Adapt for new
3926 behaviour of `holiday-advent' and `holiday-easter-etc' functions.
3928 2004-09-23 Kim F. Storm <storm@cua.dk>
3930 * image.el (insert-sliced-image): Add doc string.
3932 * ido.el (ido-choice-list): New dynamic var for `list' context.
3933 (ido-context-switch-command): New dynamic var.
3934 (ido-define-mode-map): Generalize switch between file/buffer contexts.
3935 (ido-read-internal): Handle new `list' context.
3936 Handle insert-buffer and insert-file ido-exit values.
3937 (ido-buffer-internal): New arg switch-cmd. Use it to setup
3938 ido-context-switch-command. Handle insert-file ido-exit value.
3939 (ido-read-buffer): Set ido-context-switch-command to 'ignore
3940 unless it is already bound by caller.
3941 (ido-file-internal): New arg switch-cmd. Use it to setup
3942 ido-context-switch-command. Handle insert-buffer ido-exit value.
3943 (ido-enter-insert-buffer, ido-enter-insert-file): New commands
3944 used for context switching.
3945 (ido-all-completions): Handle new `list' context.
3946 (ido-make-choice-list): Return choices for `list' context.
3947 (ido-find-file-in-dir, ido-display-file, ido-write-file)
3948 (ido-display-buffer, ido-kill-buffer): Disable context switching.
3949 (ido-insert-buffer, ido-insert-file): Setup context switching.
3950 (ido-exhibit): Handle `list' context.
3951 (ido-read-file-name): Disable context switching. Handle fallback.
3952 (ido-read-directory-name): Disable context switching.
3953 (ido-completing-read): New defun like completing-read. Setup and
3954 use new `list' context.
3956 2004-09-20 Jesper Harder <harder@ifa.au.dk>
3958 * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
3960 2004-09-21 Jay Belanger <belanger@truman.edu>
3962 * calc/calc-graph.el (calc-graph-add-curve): Move the call to
3963 `calc-graph-set-styles' so the gnuplot buffer will appear in a
3966 2004-09-21 Luc Teirlinck <teirllm@auburn.edu>
3968 * subr.el (after-change-major-mode-hook): Doc fix.
3970 2004-09-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3972 * printing.el: Doc fix. Add a new tip about the use of gsprint instead
3973 of ghostscript for monochrome PostScript file in Windows.
3975 2004-09-21 Kenichi Handa <handa@m17n.org>
3977 * descr-text.el (describe-char): Checking of quail activation
3980 2004-09-21 Jay Belanger <belanger@truman.edu>
3982 * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
3984 2004-09-20 Luc Teirlinck <teirllm@auburn.edu>
3986 * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
3987 after the mode hooks instead of before. Doc fix.
3989 2004-09-20 Jason Rumney <jasonr@gnu.org>
3991 * startup.el (command-line) [windows-nt]: Try .emacs first, then
3992 _emacs, but revert to .emacs if neither exists in home directory.
3994 2004-09-20 John Paul Wallington <jpw@gnu.org>
3996 * bindings.el (completion-ignored-extensions): Add .dfsl.
3998 2004-09-20 Richard M. Stallman <rms@gnu.org>
4000 * bindings.el (scroll-left): Make it disabled.
4002 * files.el (enable-local-eval): Doc fix.
4004 * indent.el (move-to-left-margin): Special case for minibuffer.
4006 * term.el (term-emulate-terminal): Turn off undo for output.
4007 Use with-current-buffer and save-selected-window.
4009 * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
4011 * progmodes/make-mode.el (makefile-fill-paragraph):
4012 Don't insist on spaces when looking for comments. # is enough.
4014 * files.el (hack-local-variables): Copy the variables list
4015 to another buffer, strip prefixes and suffixes there, then read.
4016 (enable-local-eval): Doc fix.
4017 (ignored-local-variables): Initialize to nil.
4018 (risky-local-variable-p): Don't check ignored-local-variables here.
4019 (hack-one-local-variable): Ignore var if in ignored-local-variables.
4021 2004-09-20 Dan Nicolaescu <dann@ics.uci.edu>
4023 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
4024 of = to "." (punctuation).
4026 2004-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4028 * subr.el (event-basic-type): Fix mask (extend to 22bits).
4030 2004-09-18 Luc Teirlinck <teirllm@auburn.edu>
4032 * textmodes/enriched.el (enriched-rerun-flag): New variable.
4033 (enriched-before-change-major-mode): New function.
4034 Add it to `change-major-mode-hook'.
4035 (enriched-after-change-major-mode): New function.
4036 Add it to `after-change-major-mode-hook'.
4037 (enriched-mode): Make it work correctly if called from
4038 `after-change-major-mode-hook'.
4039 No longer set `indent-line-function'.
4041 * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
4043 * subr.el (after-change-major-mode-hook): New variable.
4044 (run-mode-hooks): Implement it.
4046 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
4048 * battery.el (battery-linux-proc-apm): Use string-to-number.
4049 (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
4050 Use dolist (and less indentation). Use erase-buffer.
4051 Pre-initialize `design-capacity', `warn', and `low'.
4052 (battery-format): Use replace-regexp-in-string.
4054 2004-09-18 Ralph Schleicher <rs@nunatak.allgaeu.org>
4056 * battery.el: Delete superfluous empty lines.
4057 (battery-linux-proc-acpi): Attempt to gather information from all
4058 battery subdirectories regardless of their file name.
4059 (battery-linux-proc-apm): Replace all occurrences of
4060 battery-hex-to-int-2 with string-to-int (base 16).
4061 (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
4062 (battery-hex-map): Delete variable.
4064 2004-09-18 John Paul Wallington <jpw@gnu.org>
4066 * calc/calc-units.el (calc-quick-units): Fix overzealous
4069 2004-09-17 Jay Belanger <belanger@truman.edu>
4071 * calc/calc.el (calc-mode-var-list): Fix the value of
4072 `calc-matrix-brackets'.
4074 2004-09-17 Romain Francoise <romain@orebokech.com>
4076 * ibuf-ext.el (define-ibuffer-filter filename):
4077 Expand dired-directory since buffer-file-name is absolute.
4079 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu>
4081 * ediff-init.el (ediff-current-diff-face-A)
4082 (ediff-current-diff-face-B, ediff-current-diff-face-C)
4083 (ediff-current-diff-face-Ancestor)
4084 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
4085 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
4086 (ediff-even-diff-face-A, ediff-even-diff-face-B)
4087 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
4088 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
4089 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
4092 * term.el (term-down): Perform vertical motion if DOWN is negative.
4093 (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
4094 (term-termcap-format): Synchronyze with the eterm terminfo entry
4096 (term-handle-colors-array): If the current foreground or
4097 background are zero (i.e. unspecified), use the foreground and
4098 background of the default face for reverse video.
4099 (term-ansi-at-eval-string, term-ansi-default-fg)
4100 (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
4101 (term-mem): Delete ununsed function.
4102 (term-protocol-version): Increment.
4103 (term-current-face): Set to default.
4105 2004-09-15 Jay Belanger <belanger@truman.edu>
4107 * calc/calc.el (calc-mode-var-list): Define this variable.
4108 (calc-always-load-extensions, calc-line-numbering)
4109 (calc-line-breaking, calc-display-just, calc-display-origin)
4110 (calc-number-radix, calc-leading-zeros, calc-group-digits)
4111 (calc-group-char, calc-point-char, calc-frac-format)
4112 (calc-prefer-frac, calc-hms-format, calc-date-format)
4113 (calc-float-format, calc-full-float-format, calc-complex-format)
4114 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
4115 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
4116 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
4117 (calc-matrix-brackets, calc-language, calc-language-option)
4118 (calc-left-label, calc-right-label, calc-word-size)
4119 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
4120 (calc-display-raw, calc-internal-prec, calc-angle-mode)
4121 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
4122 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
4123 (calc-window-height, calc-display-trail, calc-show-selections)
4124 (calc-use-selections, calc-assoc-selections)
4125 (calc-display-working-message, calc-auto-why, calc-timing)
4126 (calc-mode-save-mode, calc-standard-date-formats)
4127 (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
4128 (calc-user-parse-tables, calc-gnuplot-default-device)
4129 (calc-gnuplot-default-output, calc-gnuplot-print-device)
4130 (calc-gnuplot-print-output, calc-gnuplot-geometry)
4131 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
4132 (calc-invocation-macro, calc-show-banner): Give these values as
4133 part of `calc-mode-var-list's initialization after the variables
4134 are declared with defvar.
4135 (calc-bug-address): Change email address to send bug reports to.
4136 Change the maintainer address at the top.
4137 (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
4138 than "\\.emacs" to determine if it is the user-init-file.
4140 * calc/calc-embed.el (calc-embedded-set-modes): Use
4141 `calc-mode-var-list' correctly.
4143 2004-09-15 Thien-Thi Nguyen <ttn@gnu.org>
4145 * vc.el (annotate-time): Document point handling.
4146 (vc-annotate-display-autoscale): Doc fix.
4148 2004-09-15 Miles Bader <miles@gnu.org>
4150 * generic.el (generic-make-keywords-list): Use symbol rather than
4151 word anchors in regexp.
4153 2004-09-14 Sean O'Rourke <sorourke@cs.ucsd.edu>
4155 * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
4156 no file name consider `dired-directory'.
4158 2004-09-14 Kim F. Storm <storm@cua.dk>
4160 * faces.el (cursor): Add face-no-inherit property. Doc fix.
4162 2004-09-14 Simon Josefsson <jas@extundo.com>
4164 * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
4166 * textmodes/dns-mode.el: Add.
4168 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
4170 * novice.el (disabled-command-hook): Use shorthand for obsolescence.
4171 (disabled-command-function): Make the ?\ char more obvious.
4173 * vc-arch.el (vc-arch-root, vc-arch-registered):
4174 * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
4176 2004-09-13 Hovav Shacham <hovav@sha1.stanford.edu>
4178 * windmove.el (windmove-frame-edges): Report coordinates of
4179 outside edges of frame, not inside edges.
4180 (windmove-coordinates-of-position): Convert into wrapper to new
4181 function `windmove-coordinates-of-window-position';
4182 `compute-motion' always applies to selected window.
4183 (windmove-coordinates-of-position): Update documentation to refer
4184 to Emacs 21 Lisp Reference Manual.
4185 (windmove-find-other-window): Fix off-by-one errors for max x,y.
4187 2004-09-13 Kim F. Storm <storm@cua.dk>
4189 * isearch.el (isearch-resume-in-command-history): Rename from
4190 isearch-resume-enabled and change default to nil.
4192 2004-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4194 * vc-hooks.el (vc-ignore-dir-regexp): New var.
4195 (vc-registered): Use it.
4196 (vc-find-root): New fun.
4198 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
4199 Don't tell to use \\{...} when it's already done.
4201 * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
4202 Provide a sample complex default.
4203 (bibtex-url, bibtex-font-lock-url): Adapt to new format.
4204 (bibtex-entry): Use mapc.
4206 2004-09-12 Kim F. Storm <storm@cua.dk>
4208 * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
4210 * emulation/cua-rect.el (cua--rectangle-operation): Let bind
4211 inhibit-field-text-motion to t so rectangles work in comint buffers.
4213 * simple.el (choose-completion-string): Set buffer before running
4214 choose-completion-string-functions hook so it can be buffer-local.
4216 2004-09-12 Daniel Pfeiffer <occitan@esperanto.org>
4218 * progmodes/compile.el (compilation-start): Parse command to see
4219 if it starts with a cd, and if so perform it for the *compilation*
4220 buffer. Change the header to reflect this.
4222 2004-09-11 Kim F. Storm <storm@cua.dk>
4224 * ido.el (ido-enable-dot-prefix): Doc fix.
4225 (ido-enable-dot-prefix): New defcustom.
4226 (ido-set-matches1): Use it.
4228 2004-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4230 * textmodes/bibtex.el (bibtex-mark-active)
4231 (bibtex-run-with-idle-timer): Move the `if' inside the defun.
4233 2004-09-10 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4235 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
4236 used in a case insensitive environment.
4237 (bibtex-mode-map): Rearrange order of menus.
4238 (bibtex-quoted-string-re): Obsolete.
4239 (bibtex-complete-key-cleanup): Variable replaced by new function.
4240 (bibtex-font-lock-keywords): Use backquotes.
4241 (bibtex-font-lock-url-regexp): New internal variable.
4242 (bibtex-name-in-field): New optional arg remove-opt-alt to remove
4244 (bibtex-insert-current-kill, bibtex-make-field)
4245 (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
4246 (bibtex-parse-field-text): Simplify.
4247 (bibtex-string=): New helper function.
4248 (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
4249 (bibtex-map-entries): Use bibtex-string=.
4250 (bibtex-search-entry): Use not.
4251 (bibtex-enclosing-field): Fix docstring.
4252 (bibtex-assoc-regexp): Obsolete.
4253 (bibtex-format-entry): Use assoc-string and bibtex-string=.
4254 (bibtex-autokey-get-names): Handle empty name field.
4255 (bibtex-parse-strings): Use assoc-string and unless.
4256 (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
4258 (bibtex-pop): Simplify.
4259 (bibtex-mode): Set font-lock-extra-managed-props.
4260 (bibtex-entry-update): Use assoc-string.
4261 (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
4262 (bibtex-autofill-entry): Use bibtex-string=.
4263 (bibtex-print-help-message): Simplify.
4264 (bibtex-find-entry): New optional arg START.
4265 (bibtex-validate): Use bibtex-string= and assoc-string.
4266 Do not call obsolete function compilation-parse-errors.
4267 (bibtex-remove-delimiters): Only remove delimiters if present.
4268 (bibtex-copy-entry-as-kill): Add docstring.
4269 (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
4270 Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
4271 (bibtex-complete): Use bibtex-predefined-month-strings,
4272 bibtex-string=, and new function bibtex-complete-key-cleanup.
4273 (bibtex-generate-url-list): New variable.
4274 (bibtex-url): New command bound to C-c C-l and mouse-2.
4275 (bibtex-url-map): New local keymap for bibtex-url-mouse.
4276 (bibtex-font-lock-url): New function.
4278 2004-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
4280 * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
4282 2004-09-09 Kim F. Storm <storm@cua.dk>
4284 * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
4285 counter and format with binding.
4286 (kmacro-name-last-macro): New defun. Like name-last-kbd-macro, but
4287 the declared macro uses own macro counter and format. Give symbol
4289 (kmacro-keymap): Bind kmacro-name-last-macro to n.
4290 (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
4291 (kmacro-end-and-call-macro): Doc fix.
4293 2004-09-09 Lars Hansen <larsh@math.ku.dk>
4295 * desktop.el (desktop-clear-preserve-buffers):
4296 Remove make-obsolete-variable.
4298 2004-09-08 Richard M. Stallman <rms@gnu.org>
4300 * buff-menu.el (list-buffers-noselect): Call format-mode-line
4301 with the buffer as argument.
4303 2004-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
4305 * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
4307 2004-09-08 Juri Linkov <juri@jurta.org>
4309 * replace.el (perform-replace): Use `query-replace-descr'.
4311 * cus-start.el (history-delete-duplicates): Specify customization.
4313 * diff-mode.el (diff-mode-map):
4314 * progmodes/compile.el (compilation-mode-map):
4315 * progmodes/grep.el (grep-mode-map):
4316 * replace.el (occur-mode-map): Rename `next-error-follow-mode'
4317 to `next-error-follow-minor-mode'.
4319 2004-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4321 * isearch.el (isearch-lazy-highlight-update): Take into account
4322 the case of zero-length match at the search bound.
4324 2004-09-08 Kim F. Storm <storm@cua.dk>
4326 * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
4327 change. Use zero width overlays when necessary.
4329 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4331 * subr.el (split-string): Docfix.
4333 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4335 * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
4336 (display-call-tree): Ensure newline after caller/calls blocks.
4338 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4340 * startup.el (command-line-1): Make option
4341 --directory/-L modify `load-path' straight away.
4343 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4345 * progmodes/grep.el (grep-mode): Use normal autoload cookie.
4347 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4349 * emacs-lisp/autoload.el (make-autoload):
4350 Handle `define-compilation-mode'.
4352 * emacs-lisp/lisp-mode.el (define-compilation-mode):
4353 Specify `doc-string-elt' property.
4355 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4357 * bs.el (bs-mode): Doc fix.
4359 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4361 * info.el (Info-insert-dir): Fix temp buffer leak bug.
4363 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
4365 * play/blackbox.el (bb-trace-ray): Avoid double tracing.
4367 2004-09-08 Kenichi Handa <handa@m17n.org>
4369 * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
4370 length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
4371 ps-mule-next-point -> 1+).
4373 * composite.el (encode-composition-rule): Add autoload cooky.
4375 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
4377 * format.el (buffer-auto-save-file-format): Make it permanent local.
4379 2004-09-07 Kim F. Storm <storm@cua.dk>
4381 * emacs-lisp/authors.el (authors-aliases): Add more aliases.
4382 (authors-fixed-entries): Fix typo.
4383 (authors-canonical-author-name): Compact multiple spaces.
4384 Ignore trivial names (e.g. only first name).
4386 * term.el (term-window-width): Only use full window width on
4387 window system if overflow-newline-into-fringe is enabled.
4388 (term-mode): Don't disable overflow-newline-into-fringe.
4390 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
4392 * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
4393 motion as seen on my Mac OS X xterms.
4395 * newcomment.el (uncomment-region-default, comment-region-default):
4396 New functions extracted from uncomment-region and comment-region.
4397 (comment-region, comment-region-function, uncomment-region)
4398 (uncomment-region-function): Use them.
4400 * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
4402 * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
4403 It's not crucial but can make sense at times.
4405 * vc-arch.el (vc-arch-workfile-version): Handle the special case before
4408 * vc.el (vc-buffer-context, vc-restore-buffer-context):
4409 Disable obsolete code.
4411 2004-09-07 Juri Linkov <juri@jurta.org>
4413 * progmodes/grep.el (grep-highlight-matches): Change default from
4414 `t' to `auto-detect', and type from `boolean' to `choice'. Doc fix.
4415 (grep-compute-defaults): Set `grep-highlight-matches' to `t'
4416 if grep option `--color' is available, or to `nil' otherwise.
4417 (grep-process-setup): Call `grep-compute-defaults' if
4418 `grep-highlight-matches' is not computed. Set env-vars only
4419 if `grep-highlight-matches' is `t'.
4420 (grep-use-null-device): Remove redundant type `boolean' (`choice'
4421 is already defined).
4423 * progmodes/compile.el (compilation-start): Use copy of
4424 `process-environment' created by `copy-sequence' to not
4425 modify env-vars in the global `process-environment'.
4427 2004-09-06 Eli Zaretskii <eliz@gnu.org>
4429 * simple.el (next-error-follow-minor-mode): Fix last change.
4431 2004-09-05 Luc Teirlinck <teirllm@auburn.edu>
4433 * textmodes/paragraphs.el (use-hard-newlines): Make it into a
4436 2004-09-04 Richard M. Stallman <rms@gnu.org>
4438 * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
4439 highlighting if the search string is empty.
4441 2004-09-04 Luc Teirlinck <teirllm@auburn.edu>
4443 * facemenu.el (facemenu-active-faces): Change condition of inner
4444 `while' loop to also check the first two elements of `face-atts'
4447 2004-09-04 John Paul Wallington <jpw@gnu.org>
4449 * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
4450 (thumbs-view-image-mode): Make buffer read-only.
4452 2004-09-04 Christopher J. Madsen <cjm@pobox.com>
4454 * textmodes/ispell.el (ispell-really-aspell): New defvar.
4455 (ispell-check-version): Set it.
4456 (ispell-send-replacement): New function.
4457 (ispell-process-line): Call ispell-send-replacement.
4459 2004-09-04 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
4461 * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
4462 Support choosing seconds with "s".
4464 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
4466 * terminal.el (te-escape): Show `?' in prompt for help key.
4468 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
4470 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
4472 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
4474 * simple.el (next-error-follow-minor-mode)
4475 (next-error-follow-mode-post-command-hook): New functions.
4476 (next-error-follow-last-line): New defvar.
4478 * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
4479 * progmodes/compile.el (compilation-mode-map): Likewise.
4480 * progmodes/grep.el (grep-mode-map): Likewise.
4481 * replace.el (occur-mode-map): Likewise.
4483 * newcomment.el (uncomment-region): Bind comment-use-global-state
4486 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
4488 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
4489 locally around the call to `revert-buffer'.
4491 2004-09-03 Juri Linkov <juri@jurta.org>
4493 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
4494 `isearch-adjusted' to `t'.
4495 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
4496 (isearch-message-prefix): Add "pending" for isearch-adjusted.
4497 (isearch-other-meta-char): Restore isearch-point unconditionally.
4498 (isearch-query-replace): Add new arg `regexp-flag' and use it.
4499 Set point to start of match if region is not active in transient
4500 mark mode (to include the current match to region boundaries).
4501 Push the search string to `query-replace-from-history-variable'.
4502 Add prompt "Query replace regexp" for isearch-regexp.
4503 Add region beginning/end as last arguments of `perform-replace.'
4504 (isearch-query-replace-regexp): Replace code by the call to
4505 `isearch-query-replace' with arg `t'.
4507 2004-09-03 Richard M. Stallman <rms@gnu.org>
4509 * startup.el (normal-top-level): Undo previous TERM change.
4511 2004-09-03 Kim F. Storm <storm@cua.dk>
4513 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
4514 highlight overlays; allow using RET when cursor is over a button.
4515 (cua--highlight-rectangle): Use it.
4516 (cua--rectangle-set-corners): Don't move backwards at eol.
4517 (cua--forward-line): Don't move into void after eob.
4519 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
4520 point is set (and displayed) inside rectangle.
4521 (cua--rectangle-operation): Fix for highlight of empty lines.
4522 (cua--highlight-rectangle): Fix highlight for tabs.
4523 Position cursor at left/right edge of rectangle using new `cursor'
4524 property on overlay strings.
4525 (cua--indent-rectangle): Don't tabify.
4526 (cua-rotate-rectangle): Ignore that point has moved.
4528 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4530 * term/mac-win.el: Add ASCII equivalents for some function keys.
4531 (mode-line-frame-identification): Sync with x-win.el.
4533 2004-09-02 Juri Linkov <juri@jurta.org>
4535 * progmodes/compile.el (compilation-buffer-name): Compare major
4536 mode with second element of compilation-arguments instead of third
4537 to reflect latest changes in compilation-arguments structure.
4538 (recompile): Use global variable `compilation-directory' to get
4539 recent compilation directory only when `recompile' is invoked NOT
4540 in the compilation buffer. Otherwise, use `default-directory' of
4541 the compilation buffer.
4542 (compilation-error-properties): Allow to funcall col and end-col.
4543 (compilation-mode-font-lock-keywords): Check col and end-col by
4545 (compilation-goto-locus): If end-mk is non-nil in transient mark
4546 mode don't activate the mark (and don't display message in
4547 push-mark), but highlight overlay between mk and end-mk.
4549 * progmodes/grep.el (grep-highlight-matches): New defcustom.
4550 (grep-regexp-alist): Add rule to highlight grep matches.
4551 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
4553 * info.el (Info-fontify-node): Don't compute other-tag
4554 if Info-hide-note-references=hide.
4556 * help.el (function-called-at-point):
4557 * help-fns.el (variable-at-point):
4558 Try `find-tag-default' when other methods failed.
4560 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
4561 Do not push mark if inhibit-mark-movement is non-nil.
4563 * textmodes/ispell.el (ispell-html-skip-alists):
4564 Fix backslashes in docstring.
4566 2004-09-01 Juri Linkov <juri@jurta.org>
4568 * isearch.el (isearch-wrap-function)
4569 (isearch-push-state-function): New defvars.
4570 (isearch-pop-fun-state): New defsubst.
4571 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
4572 (isearch-push-state): Set the result of calling
4573 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
4574 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
4575 restore the mode-specific starting point of terminated search.
4576 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
4577 (isearch-repeat): Call `isearch-wrap-function' if defined.
4578 (isearch-message-prefix): Don't add prefix "over" to the message
4579 for wrapped search if `isearch-wrap-function' is defined.
4580 (isearch-search): Call function saved in `isearch-pop-fun-state' to
4581 restore the mode-specific starting point of failed search.
4583 * info.el (Info-search-whitespace-regexp): Fix backslashes.
4584 (Info-search): Add new optional arguments for the sake of isearch.
4585 Replace whitespace in Info-search-whitespace-regexp literally.
4586 Add backward search. Don't call `Info-select-node' if regexp is
4587 found in the same Info node. Don't add node to Info-history for
4589 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
4590 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
4591 (Info-mode): Set local variables `isearch-search-fun-function',
4592 `isearch-wrap-function', `isearch-push-state-function',
4593 `search-whitespace-regexp'.
4595 * isearch.el: Remove ancient Change Log section.
4596 (isearch-string, isearch-message-string, isearch-point)
4597 (isearch-success, isearch-forward-flag, isearch-other-end)
4598 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
4599 (isearch-barrier, isearch-within-brackets)
4600 (isearch-case-fold-search): Add suffix `-state' to state-related
4601 defsubsts to avoid name clashes with other function names.
4603 * simple.el (next-error): New defgroup and defface.
4604 (next-error-highlight, next-error-highlight-no-select):
4606 (next-error-no-select): Let-bind next-error-highlight to the value
4607 of next-error-highlight-no-select before calling `next-error'.
4609 * progmodes/compile.el (compilation-goto-locus):
4610 Use `next-error' face instead of `region'. Set 4-th argument of
4611 `move-overlay' to `current-buffer' to move overlay to different
4612 source buffers. Use new variable `next-error-highlight'.
4614 * simple.el (next-error-find-buffer): Move the rule
4615 "if current buffer is a next-error capable buffer" after the
4616 rule "if next-error-last-buffer is set to a live buffer".
4617 Simplify to test all rules in one `or'.
4618 (next-error): Doc fix.
4619 (next-error, previous-error, first-error)
4620 (next-error-no-select, previous-error-no-select):
4621 Make arguments optional.
4623 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
4625 * macros.el (apply-macro-to-region-lines): Make it operate on all
4626 lines that begin in the region, rather than on all complete lines
4629 2004-08-31 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
4631 * x-dnd.el (x-dnd-protocol-alist): Document update.
4632 (x-dnd-known-types): Defcustom it.
4633 (x-dnd-handle-motif): Print message-atom in error message.
4635 2004-08-30 John Paul Wallington <jpw@gnu.org>
4637 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
4638 strings rather than programatically constructing message.
4640 2004-08-30 Richard M. Stallman <rms@gnu.org>
4642 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
4643 Don't return a string that would read as the wrong character code.
4645 2004-08-29 Kim F. Storm <storm@cua.dk>
4647 * emulation/cua-base.el (cua-auto-expand-rectangles):
4648 Remove automatic rectangle padding feature; replace by non-destructive
4649 virtual rectangle edges feature.
4650 (cua-virtual-rectangle-edges): New defcustom.
4651 (cua-auto-tabify-rectangles): New defcustom.
4652 (cua-paste): If paste into a marked rectangle, insert rectangle at
4653 current column, even if virtual; also paste exactly as many lines
4654 as has been marked (ignore additional lines or add empty lines),
4655 but paste whole source if only one line is marked.
4656 (cua--update-indications): No longer use overwrite-cursor to
4657 indicate rectangle padding
4659 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
4660 (cua--rectangle-virtual-edges): New defun.
4661 (cua--rectangle-get-corners): Remove optional PAD arg.
4662 (cua--rectangle-set-corners): Never do padding.
4663 (cua--forward-line): Remove optional PAD arg. Simplify.
4664 (cua-resize-rectangle-right, cua-resize-rectangle-left)
4665 (cua-resize-rectangle-down, cua-resize-rectangle-up):
4666 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
4667 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
4668 (cua--rectangle-move): Never do padding. Simplify.
4669 (cua--tabify-start): New defun.
4670 (cua--rectangle-operation): Add tabify arg. All callers changed.
4671 (cua--pad-rectangle): Remove.
4672 (cua--delete-rectangle): Handle delete with virtual edges.
4673 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
4674 (cua--insert-rectangle): Handle insert at virtual column.
4675 Perform auto-tabify if necessary.
4676 (cua--activate-rectangle): Remove optional FORCE arg.
4677 Never do padding. Simplify.
4678 (cua--highlight-rectangle): Enhance for virtual edges.
4679 (cua-toggle-rectangle-padding): Remove command.
4680 (cua-toggle-rectangle-virtual-edges): New command.
4681 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
4682 (cua--rectangle-post-command): Don't force rectangle padding.
4683 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
4685 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
4687 * indent.el (edit-tab-stops-buffer): Doc fix.
4689 2004-08-28 Richard M. Stallman <rms@gnu.org>
4691 * progmodes/grep.el (grep-default-command): Use find-tag-default.
4692 (grep-tag-default): Function deleted.
4694 * subr.el (find-tag-default): Move from etags.el.
4696 * progmodes/etags.el (find-tag-default): Move to subr.el.
4698 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
4699 into the basic character if it has an uppercase form.
4701 2004-08-27 Kenichi Handa <handa@m17n.org>
4703 * international/utf-8.el (utf-8-post-read-conversion): If the
4704 buffer is unibyte, temporarily make it multibyte.
4706 2004-08-27 Masatake YAMATO <jet@gyve.org>
4708 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
4710 2004-08-25 John Paul Wallington <jpw@gnu.org>
4712 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
4713 0, 1, and many mismatches in message.
4714 (tex-start-shell): Use `set-process-query-on-exit-flag'.
4716 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
4717 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
4719 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
4721 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
4722 vc-diff-switches differently.
4724 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
4726 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
4727 before and a real defvar after
4728 `speedbar-supported-extension-expressions'. This is to silence
4729 the compiler without breaking bootstrapping.
4731 2004-08-22 Richard M. Stallman <rms@gnu.org>
4733 * textmodes/flyspell.el (flyspell-word):
4734 Use set-process-query-on-exit-flag.
4735 (flyspell-highlight-duplicate-region): Take POSS as arg.
4736 (flyspell-word): Pass POSS as arg.
4738 * progmodes/ada-xref.el: Many doc and style fixes.
4739 (ada-find-any-references): Use compilation-start.
4740 (ada-get-ali-file-name): Improve error msg.
4741 (ada-get-ada-file-name): Likewise.
4743 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
4744 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
4746 * mail/mail-extr.el (mail-extr-all-top-level-domains):
4749 * whitespace.el (global-whitespace-mode): New alias
4750 for whitespace-global-mode.
4752 * speedbar.el (speedbar-file-regexp): Move definition up.
4753 (speedbar-mode, speedbar-set-mode-line-format):
4754 Use with-no-warnings.
4755 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
4757 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
4758 controls whether to display the error buffer.
4760 * ps-mule.el: Delete compatibility code for old Emacses.
4761 (ps-mule-find-wrappoint): Don't use chars-in-region.
4763 * frame.el (display-mouse-p, display-selections-p):
4764 Use with-no-warnings.
4766 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
4768 2004-08-22 David Kastrup <dak@gnu.org>
4770 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
4773 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
4775 2004-08-22 Andreas Schwab <schwab@suse.de>
4777 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
4779 2004-08-22 Masatake YAMATO <jet@gyve.org>
4781 * cvs-status.el (cvs-status-checkout): New function.
4782 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
4784 2004-08-21 David Kastrup <dak@gnu.org>
4786 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
4787 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
4788 has been converted to use hashtables, the relation `nil=none' is
4789 no longer valid, as `nil' is not a hashtable. This patch tries to
4790 reduce the number of resulting errors.
4792 2004-08-21 John Paul Wallington <jpw@gnu.org>
4794 * subr.el (process-kill-without-query): Made obsolete in
4795 version 21.4, not 21.5.
4797 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
4798 (vc-previous-comment, vc-next-comment)
4799 (vc-comment-search-reverse, vc-comment-search-forward)
4800 (vc-comment-to-change-log): Likewise.
4802 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
4804 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
4806 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
4807 Correct indentation of DEFMETHODS with non-standard method
4808 combinations (e.g., PROGN, MIN, MAX).
4810 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
4812 * startup.el (normal-top-level-add-subdirs-to-load-path):
4813 Avoid unnecessarily checking system-type.
4814 (normal-top-level): Set TERM to "dumb". Simplify.
4816 * avoid.el (mouse-avoidance-ignore-p): New fun.
4817 Also ignore switch-frame, select-window, double, and triple clicks.
4818 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
4819 (mouse-avoidance-fancy-hook): Use it.
4821 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
4823 * avoid.el (mouse-avoidance-nudge-mouse)
4824 (mouse-avoidance-banish-destination): Stay within the current window
4825 to avoid problems with mouse-autoselect-window.
4827 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4829 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
4830 the newer format of some messages in cvs-1.12.1.
4832 2004-08-19 Masatake YAMATO <jet@gyve.org>
4834 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
4835 (elp-results-jump-to-definition-by-mouse)
4836 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
4837 (elp-output-result): Use elp-output-insert-symname.
4839 2004-08-18 Kenichi Handa <handa@m17n.org>
4841 * language/cyrillic.el: Register koi8-r in
4842 ctext-non-standard-encodings-alist.
4843 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
4845 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
4847 * emacs-lisp/copyright.el (copyright-update-year): Delete code
4848 that replaces 20xy with xy.
4850 2004-08-17 John Paul Wallington <jpw@gnu.org>
4852 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
4853 (reb-force-update): Doc fix.
4855 2004-08-16 Richard M. Stallman <rms@gnu.org>
4857 * progmodes/which-func.el (which-func-update-1): Doc fix.
4859 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
4860 (sh-mode-abbrev-table): New variable.
4862 * progmodes/compile.el (compilation-mode): Doc fix.
4864 * emacs-lisp/lisp-mode.el (eval-last-sexp):
4865 Don't cons a new symbol each time.
4866 (eval-last-sexp-fake-value): New variable.
4868 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
4869 (copyright-update-year): Detect continuation of list of years.
4871 * term.el (term-default-fg-color, term-default-bg-color)
4872 (ansi-term-color-vector): Use `unspecified', not nil, as default.
4874 * imenu.el: Several doc fixes: don't say variables are buffer-local.
4876 2004-08-16 Davis Herring <herring@lanl.gov>
4878 * isearch.el (isearch-string, isearch-message-string, isearch-point)
4879 (isearch-success, isearch-forward-flag, isearch-other-end)
4880 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
4881 (isearch-barrier, isearch-within-brackets)
4882 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
4884 2004-08-16 Kenichi Handa <handa@m17n.org>
4886 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
4888 2004-08-15 Kenichi Handa <handa@m17n.org>
4890 * term/x-win.el (x-selection-value): If utf8 was successful but
4891 ctext was not, use utf8 string.
4893 2004-08-14 Davis Herring <herring@lanl.gov>
4895 * isearch.el: Remove accidental changes of March 4. Fix backing
4896 up when a regexp isearch is made more general. Use symbolic
4897 accessor functions for isearch stack frames to make usage clearer.
4898 (search-whitespace-regexp): Made groups in documentation shy (as
4899 is the group in the default value).
4900 (isearch-fallback): New function, addresses problems with regexps
4901 liberalized by `\|', adds support for liberalization by `\}' (the
4902 general repetition construct), and incorporates behavior for
4904 (isearch-}-char): New command, calls `isearch-fallback' with
4905 arguments appropriate to a typed `}'.
4906 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
4908 (isearch-mode-map): Bind `}' to `isearch-}-char'.
4909 (isearch-string, isearch-message,string, isearch-point)
4910 (isearch-success, isearch-forward-flag, isearch-other-end)
4911 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
4912 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
4913 New inline functions to read fields of a stack frame.
4915 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
4917 * battery.el (battery-linux-proc-acpi): Look into battery
4918 directories matching the literal string "CMB", too (required for
4919 Linux kernel version 2.6.7).
4921 2004-08-14 John Paul Wallington <jpw@gnu.org>
4923 * cus-start.el (read-file-name-completion-ignore-case): Add.
4924 (blink-cursor-alist): Change version to "21.4".
4926 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
4928 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
4930 * speedbar.el (speedbar-scan-subdirs): New option.
4931 (speedbar-file-lists): Don't ignore file-name case on Unix and use
4933 (speedbar-insert-files-at-point): Take an extra argument and use
4934 it to optionally find out if a subdir is empty. Also unreadable
4935 files don't get expand buttons.
4936 (speedbar-directory): New image (unused pixmap already existed).
4937 (speedbar-expand-image-button-alist): Use it.
4939 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
4941 CC Mode update to 5.30.9:
4943 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
4944 Move from cc-vars to cc-defs for dependency reasons. Fix the
4945 POSIX char class test to check that it works in
4946 `skip-chars-(forward|backward)' too.
4948 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
4949 first argument starts with a special brace list.
4951 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
4952 when `c-opt-type-concat-key' is used (i.e. in Pike).
4954 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
4955 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
4958 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
4961 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
4962 position for `arglist-intro', `arglist-cont-nonempty' and
4963 `arglist-close' when there are two arglist open parens on the same
4964 line and there's nothing in front of the first.
4966 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
4967 locking of qualified names in Java, which previously could fontify
4968 common indexing expressions in many cases. The standard Java
4969 naming conventions are used to tell them apart.
4971 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
4972 Fix inconsistency wrt opening parens on the first line inside a paren
4975 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
4976 compile time for the sake of `c-major-mode-is'.
4978 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
4979 `c-major-mode-is' in the event that this is used inside a
4982 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
4983 `c-lang-defconst' so that it works better with fallback languages.
4985 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
4986 it to fail to record the base mode.
4988 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
4989 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
4990 is used. Reorder the syntax checks to get more efficient
4991 skipping in some situations.
4993 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
4994 continuation which might precede the newly inserted '{'.
4996 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
4997 Fix cases where it could loop indefinitely.
4999 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
5000 size specs correctly. Only fontify identifiers in front of '('
5001 with as functions - don't accept any paren char. Tighten up
5002 initializer skipping to stop before function and class blocks.
5004 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
5005 the point could be left directly after an open paren when finding
5006 the beginning of the first decl in the block.
5008 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
5009 table when filtering out legitimate open parens to be recorded.
5010 This could cause cache inconsistencies when e.g.
5011 `c++-template-syntax-table' was temporarily in use.
5013 * progmodes/cc-engine.el (c-on-identifier)
5014 (c-simple-skip-symbol-backward): Small fix for handling "-"
5015 correctly in `skip-chars-backward'. Affected the operator lfun
5018 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
5019 Fix bug that could cause an error from `after-change-functions' when
5020 the changed region is at bob.
5022 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
5024 CC Mode update to 5.30.9:
5026 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
5027 to say that <TAB> doesn't insert WS into a CPP line.
5028 (c-indent-command, c-tab-always-indent): Amend doc strings.
5030 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
5031 checks for user errors, thus eliminating cryptic and unhelpful
5032 Emacs error messages. (1) Check the arg to `c-set-style' is a
5033 string. (2) Check that settings to `c-offsets-alist' are not
5036 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
5037 which precedes the newly inserted `{'.
5039 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
5041 Sync with Tramp 2.0.44.
5043 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
5044 function "tramp_file_attributes". Otherwise, file names
5045 containing spaces are misinterpreted. Reported by Magnus Henoch
5046 <mange@freemail.hu>.
5047 (tramp-handle-file-truename): FILENAME must be expanded first.
5048 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
5049 obscure results. Reported by D. Goel <deego@gnufans.org>.
5050 (tramp-handle-verify-visited-file-modtime): If file does not
5051 exist, say it is not modified if and only if that agrees with the
5052 buffer's record. Check whether a file is visiting the buffer, or
5053 the buffer has no recorded last modification time. Return t in
5054 case the visiting file doesn't exist. Suggested by Luc Teirlinck
5055 <teirllm@auburn.edu>.
5056 (tramp-handle-write-region): Pass modtime explicitely to
5057 `set-visited-file-modtime', because filename can be different
5058 from (buffer-file-name) if `file-precious-flag' is set.
5059 `set-visited-file-modtime' must be called always when `visit' is t
5060 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
5061 (tramp-handle-set-visited-file-modtime): If `time-list' is not
5062 nil, don't apply the whole body. If the file doesn't exists, set
5063 modtime to '(-1 65535). Suggested by Luc Teirlinck
5064 <teirllm@auburn.edu>.
5066 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
5068 * help.el (describe-bindings): Doc fix.
5070 * subr.el (kbd): Doc fix.
5072 2004-08-08 John Paul Wallington <jpw@gnu.org>
5074 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
5075 instead of `string-to-int'.
5076 (define-ibuffer-column mode): Fix indentation.
5078 2004-08-08 Lars Hansen <larsh@math.ku.dk>
5080 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
5082 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
5084 * subr.el (global-unset-key, local-unset-key): Doc fixes.
5086 * novice.el (disabled-command-function): New variable renamed from
5087 `disabled-command-hook'.
5088 (disabled-command-hook): Keep the _variable_ as alias for
5089 `disabled-command-function' and make obsolete.
5090 (disabled-command-function): Function renamed from
5091 `disabled-command-hook'. Adapt code to name change of the variable.
5093 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
5095 * simple.el (completion-root-regexp): New defvar.
5096 (completion-setup-function): Use it instead of a literal string.
5098 2004-08-07 John Paul Wallington <jpw@gnu.org>
5100 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
5101 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
5102 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
5103 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
5105 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
5107 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
5108 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
5110 2004-08-04 Kenichi Handa <handa@m17n.org>
5112 * international/encoded-kb.el (encoded-kbd-setup-keymap):
5113 Fix previous change.
5115 2004-08-03 Kenichi Handa <handa@m17n.org>
5117 * international/encoded-kb.el: The following changes are to
5118 utilize key-translation-map instead of minor mode map.
5119 (encoded-kbd-iso2022-non-ascii-map): Delete it.
5120 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
5121 (encoded-kbd-last-key): New function.
5122 (encoded-kbd-iso2022-single-shift): New function.
5123 (encoded-kbd-iso2022-designation)
5124 (encoded-kbd-self-insert-iso2022-7bit)
5125 (encoded-kbd-self-insert-iso2022-8bit)
5126 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
5127 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
5128 key-translation-map.
5129 (encoded-kbd-setup-keymap): Setup key-translation-map.
5130 (saved-key-translation-map): New variable.
5131 (encoded-kbd-mode): Save/restore key-translation-map.
5132 Adjust for the change of encoded-kbd-setup-keymap.
5134 2004-08-02 Kim F. Storm <storm@cua.dk>
5136 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
5137 and call compute-motion with nil for topos and width to get proper
5138 usable width and height for both window and non-window systems.
5140 * windmove.el (windmove-coordinates-of-position): Let compute-motion
5141 calculate usable window width and height.
5143 * window.el (window-buffer-height): Call compute-motion with nil width.
5145 2004-08-01 David Kastrup <dak@gnu.org>
5147 * replace.el (query-replace-read-from):
5148 Use `query-replace-compile-replacement'.
5149 (query-replace-compile-replacement): New function.
5150 (query-replace-read-to): Use `query-replace-compile-replacement'
5151 for repeating the last command.
5153 2004-08-01 John Paul Wallington <jpw@gnu.org>
5155 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
5156 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
5157 (pr-switches): Remove period from end of error messages.
5159 * help-mode.el (help-go-back): Likewise.
5161 * abbrev.el (only-global-abbrevs): Doc fix.
5162 (edit-abbrevs-map): Define within defvar.
5163 (quietly-read-abbrev-file): Doc fix.
5165 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
5167 * novice.el (enable-command, disable-command): Doc fixes.
5169 * subr.el (event-modifiers, event-basic-type): Doc fixes.
5171 2004-07-30 Richard M. Stallman <rms@gnu.org>
5173 * subr.el (with-local-quit): Doc fix.
5175 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
5177 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
5179 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
5181 * custom.el (defcustom): Doc fix.
5183 2004-07-28 Masatake YAMATO <jet@gyve.org>
5185 * progmodes/etags.el (etags-tags-apropos): Show building progress.
5187 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5189 * imenu.el (imenu-prev-index-position-function)
5190 (imenu-extract-index-name-function, imenu-name-lookup-function)
5191 (imenu--index-alist): Docstring redundancy fix.
5193 2004-07-25 Lars Hansen <larsh@math.ku.dk>
5195 * wdired.el (wdired-finish-edit): Require dired-aux before locally
5196 binding dired-backup-overwrite.
5198 2004-07-25 John Paul Wallington <jpw@gnu.org>
5200 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
5202 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
5204 * term/tty-colors.el (tty-color-approximate): Doc fix.
5206 * select.el (x-get-selection, x-set-selection): Doc fixes.
5208 * frame.el (make-frame): Doc fix.
5210 2004-07-24 Richard M. Stallman <rms@gnu.org>
5212 * mail/rmail.el (rmail-mime-charset-pattern):
5213 Don't include semicolon in the charset value.
5215 * replace.el (occur-next-error): Call set-window-point.
5216 (occur-engine): Handle negative NLINES.
5218 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
5220 * frame.el (modify-all-frames-parameters): Minor doc fix.
5221 (set-frame-configuration): Doc fix.
5223 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5225 * simple.el (completion-setup-function): Compute the common parts
5226 and the first difference place correctly when
5227 partial-completion-mode is on.
5229 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5231 * ps-print.el: Doc fix.
5232 (ps-print-version): New version 6.6.5.
5233 (ps-printing-region): Doc fix.
5234 (ps-generate-string-list): Comment fix.
5235 (ps-message-log-max): Code fix.
5237 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
5239 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
5240 generated PostScript.
5242 2004-08-17 Reiner Steib <Reiner.Steib@gmx.de>
5244 * net/tls.el (tls-process-connection-type): Fix docstring. (Sync
5245 with Gnus v5_10 branch.)
5247 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
5249 * calendar/time-date.el (time-to-number-of-days): New function.
5250 Imported from from Gnus.
5252 2004-07-22 Kim F. Storm <storm@cua.dk>
5254 * progmodes/make-mode.el: Fix comments.
5256 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5258 * printing.el: Doc fix.
5260 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
5262 * frame.el (modify-all-frames-parameters): Minor doc fix.
5264 2004-07-20 Richard M. Stallman <rms@gnu.org>
5266 * textmodes/fill.el (fill-nobreak-p): If this break point is
5267 at the end of the line, don't consider the newline which follows
5268 as a reason to return t.
5270 2004-07-19 John Paul Wallington <jpw@gnu.org>
5272 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
5274 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
5276 * dired-aux.el (dired-do-kill-lines): Expand docstring.
5277 Delete irrelevant code.
5279 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
5281 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
5282 New docstring. From Luc Teirlinck.
5284 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
5286 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
5288 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
5289 non-file buffers. We know it is nil.
5291 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
5293 Sync with Tramp 2.0.43.
5295 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
5296 Remove outdated comment.
5297 (tramp-locked, tramp-locker): New variables for implementing a
5299 (tramp-sh-file-name-handler): Use them to implement the global lock.
5301 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
5303 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
5304 calls to respective `xxx` calls.
5305 (tramp-process-alive-regexp): Precise doc string.
5306 (tramp-multi-action-process-alive): New defun.
5307 (tramp-multi-actions): Use it.
5308 (tramp-handle-find-backup-file-name): `copy-tree' is available
5309 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
5310 in order to avoid this function.
5311 (tramp-handle-write-region): Set current buffer. If connection
5312 wasn't open, `file-modes' has changed it accidently. Reported by
5313 David Kastrup <dak@gnu.org>.
5314 (tramp-enter-password, tramp-read-passwd): New arguments USER and
5316 (tramp-action-password, tramp-multi-action-password): Apply it.
5317 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
5318 name must still contain the port number. Otherwise, we have two
5319 Tramp buffers, with all the confusion. Reported by Myron Selby
5320 <myron@xytech.com> and Rolf Dubitzky
5321 <Dubitzky@physi.uni-heidelberg.de>.
5323 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
5324 HOST to `tramp-enter-passwd'.
5326 * net/tramp-vc.el (all): Code cleanup. Change all
5327 `tramp-handle-xxx' calls to respective `xxx` calls.
5329 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
5331 * emacs-lisp/testcover.el: New category "potentially-1valued" for
5332 functions that are not erroneous if either 1-valued or
5333 multi-valued. Detect functions in this class.
5334 (testcover-1value-functions, testcover-compose-functions)
5335 (testcover-progn-functions) Add some additional functions to lists.
5336 (testcover-mark): Bugfix when marking up the definition for an
5339 2004-07-17 Richard M. Stallman <rms@gnu.org>
5341 * replace.el (occur-read-primary-args): Pass default to
5342 read-from-minibuffer.
5344 * mail/footnote.el (footnote-section-tag): Use defcustom.
5346 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
5347 Compile font-lock-keywords, not KEYWORDS.
5348 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
5349 Add warn, check-type. Handle cerror like error.
5351 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
5353 * progmodes/which-func.el (which-func-keymap): New var.
5354 (which-func-face): New face.
5355 (which-func-format): Use them.
5357 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
5359 * buff-menu.el (list-buffers-noselect): Append the buffer's
5360 process status to its mode name.
5362 2004-07-16 Kim F. Storm <storm@cua.dk>
5364 * simple.el (inhibit-mark-movement): New defvar.
5365 (beginning-of-buffer, end-of-buffer): Do not push mark if
5366 inhibit-mark-movement is non-nil or C-u prefix is given.
5368 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
5369 Init to beginning-of-buffer and end-of-buffer.
5370 (cua--undo-push-mark): New defvar.
5371 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
5372 already active and command is in cua--preserve-mark-commands.
5373 Also fix check for shift modifier on non-window systems.
5374 (cua--post-command-handler): Clear inhibit-mark-movement if set.
5376 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
5378 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
5379 of two integers, instead of a cons.
5381 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
5382 `visited-file-modtime' now returns a list of two integers, instead
5385 * dired.el (dired-directory-changed-p): Ditto.
5387 * progmodes/grep.el (grep): Doc fix.
5389 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
5391 * autorevert.el (auto-revert-tail-mode)
5392 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
5393 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
5394 in both at the same time.
5395 (auto-revert-tail-mode): New command.
5396 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
5397 (auto-revert-handler): Revert only either tail or whole file.
5399 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
5400 add auto-revert-tail-mode.
5402 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5404 * printing.el: Doc fix. Change name of some funs.
5405 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
5406 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
5407 (pr-standard-file-name): New fun. Replace pr-standard-path.
5408 (pr-call-process): Code fix.
5410 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
5412 * subr.el (with-selected-window): Doc fix.
5414 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
5416 * subr.el (get-buffer-window-list): Doc fix.
5418 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
5420 * files.el (switch-to-buffer-other-window): Doc fix.
5422 * window.el (save-selected-window, one-window-p)
5423 (split-window-keep-point, split-window-vertically)
5424 (split-window-horizontally): Doc fixes.
5426 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5428 * printing.el: Doc fix. Now it uses call-process instead of
5429 shell-command for low command execution.
5430 (pr-version): New version number (6.8).
5431 (pr-shell-file-name): Option removed.
5432 (pr-shell-command): Fun removed.
5433 (pr-call-process): New fun. Replace pr-shell-command.
5434 (pr-standard-path, pr-remove-nil-from-list): New funs.
5435 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
5436 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
5437 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
5438 (pr-ps-utility-process, pr-txt-print): Code fix.
5440 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
5442 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
5445 2004-07-09 Lars Hansen <larsh@math.ku.dk>
5447 * wid-edit.el (widget-field-buffer): Doc fix.
5449 2004-07-09 John Paul Wallington <jpw@gnu.org>
5451 * emacs-lisp/re-builder.el (reb-update-overlays):
5452 Distinguish between one and several matches in message.
5454 2004-07-09 Richard M. Stallman <rms@gnu.org>
5456 * mouse.el (mouse-set-region-1): If transient-mark-mode
5457 is `identity', change it to `only'.
5459 * simple.el (current-word): Doc fix.
5461 2004-07-09 Mark A. Hershberger <mah@everybody.org>
5463 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
5464 so that it is more understanding of whitespace.
5466 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
5468 (("ns" . "element") (attr-list) children) instead of
5469 ((:ns . "element") (attr-list) children) in order to reduce the
5470 number of symbols used.
5471 (xml-skip-dtd): Change to use xml-parse-dtd but set
5472 xml-validating-parsing to nil.
5473 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
5474 (xml-substitute-entity): Remove in favor of new entity substitution.
5475 (xml-substitute-special): Rewrite in to substitute complex
5476 entities from DOCTYPE declarations.
5477 (xml-parse-fragment): Parse fragments from entity deleclarations.
5478 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
5479 (xml-parse-dtd, xml-substitute-special): Make validity checks
5480 conditioned on xml-validating-parser. Add "Not Well Formed" to
5481 error messages about well-formedness.
5483 2004-07-08 Steven Tamm <steventamm@mac.com>
5485 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
5486 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
5487 Do not treat double clicks and triple clicks specially in the
5488 scroll bar (preventing strange repositioning problems)
5490 2004-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
5492 * replace.el (query-replace-regexp-eval): Fix last change.
5494 2004-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
5496 * replace.el (query-replace-descr): New fun.
5497 (query-replace-read-from, query-replace-read-args): Default to the
5499 (query-replace-read-to): Quote the `from' string when displaying it.
5500 (query-replace-regexp-eval): Immediately check read-only status.
5501 Use query-replace-read-from to get the \n checking.
5502 Quote the `from' string when displaying it.
5503 (map-query-replace-regexp, occur-read-primary-args):
5504 Quote the `from' string when displaying it.
5506 * isearch.el (isearch-query-replace): Pass the regexp-ness and
5507 delimited-ness of the search to query-replace.
5509 * replace.el (query-replace-read-from, query-replace-read-to):
5510 New funs extracted from query-replace-read-args.
5511 (query-replace-read-args): Use them.
5513 * replace.el (query-replace-interactive, query-replace-read-args):
5514 Remove the `initial' special value.
5515 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
5516 (occur-engine): Remove unused var `matchend'.
5518 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
5519 Use the search string without prompting.
5521 2004-07-05 Kenichi Handa <handa@m17n.org>
5523 * international/mule.el (decode-coding-inserted-region):
5524 Set last-coding-system-used only when coding is nil.
5526 2004-07-03 Eli Zaretskii <eliz@gnu.org>
5528 * progmodes/grep.el (grep-compute-defaults, grep-command)
5529 (grep-program, find-program, grep-find-use-xargs, grep-history)
5530 (grep-find-history, grep-tag-default, grep-find-command)
5531 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
5532 Add autoload cookies, for unbundled packages that load `compile'
5533 and expect all grep-related symbols to become defined.
5535 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
5537 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
5538 (iimage-mode-image-search-path): New user option to search the
5540 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
5542 (iimage-mode-buffer): Use it.
5544 2004-07-03 Nick Roberts <nickrob@gnu.org>
5546 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
5548 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
5550 2004-07-03 Juri Linkov <juri@jurta.org>
5552 * replace.el (query-replace-read-args): Swallow space after 'foo,
5553 not after (quote foo). Match space only immediately after symbol,
5554 not anywhere in the whole string.
5556 2004-07-02 Richard M. Stallman <rms@gnu.org>
5558 * replace.el (query-replace-read-args): Swallow space after
5559 symbols, not after closeparens. But avoid error if string ends there.
5561 * progmodes/python.el (python-beginning-of-statement):
5562 Exit the loop if backward-up-list gets error.
5564 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
5566 2004-07-02 Andre Spiegel <spiegel@gnu.org>
5568 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
5569 only if vc-consult-headers is non-nil.
5571 2004-07-02 Juri Linkov <juri@jurta.org>
5573 * pcvs.el (cvs-mode-diff-repository): New command.
5575 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
5577 2004-07-01 Juri Linkov <juri@jurta.org>
5579 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
5580 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
5581 C-M-% to isearch-query-replace-regexp.
5582 (minibuffer-local-isearch-map): Add arrow key bindings.
5583 Bind C-f to isearch-yank-char-in-minibuffer.
5584 (isearch-forward): Doc fix.
5585 (isearch-edit-string): Doc fix.
5586 (isearch-query-replace, isearch-query-replace-regexp): New funs.
5587 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
5588 (isearch-yank-char): Add optional arg.
5589 (isearch-yank-char-in-minibuffer): New fun.
5591 * replace.el (query-replace-interactive): Change type from boolean
5592 to choice. Add value `initial'.
5593 (query-replace-read-args): Handle value `initial' of
5594 query-replace-interactive.
5596 2004-06-29 Kim F. Storm <storm@cua.dk>
5598 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
5599 (breakpoint-disabled-bitmap-face): Add :group 'gud.
5601 * progmodes/ada-xref.el (ada-tight-gvd-integration):
5604 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
5606 2004-06-29 Juri Linkov <juri@jurta.org>
5608 * replace.el (query-replace-read-args): Swallow a space after
5609 everything except )]" which in most cases means after a symbol.
5611 * emacs-lisp/pp.el (pp-buffer): Add autoload.
5613 2004-06-28 Richard M. Stallman <rms@gnu.org>
5615 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
5616 More changes to go with previous change in font-lock.el.
5618 2004-06-26 David Kastrup <dak@gnu.org>
5620 * replace.el (perform-replace): Highlight the match even in
5621 non-query mode if there is potential replace string editing.
5623 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
5625 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
5626 agree with new return value of `file-remote-p'.
5627 This syncs with Tramp 2.0.42.
5629 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
5630 according to new documentation of `file-remote-p'.
5632 * files.el (file-remote-p): Fix doc to say that return value is
5633 identification of remote system, if not nil.
5634 (file-relative-name): Use new return value of `file-remote-p'.
5636 2004-06-26 Nick Roberts <nickrob@gnu.org>
5638 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
5639 (gdb-goto-breakpoint): Fix breakage.
5641 2004-06-26 Eli Zaretskii <eliz@gnu.org>
5643 * man.el (Man-getpage-in-background): Add windows-nt to the list
5644 of systems where shell-file-name should be used instead of
5647 2004-06-25 Sam Steingold <sds@gnu.org>
5649 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
5650 function names `(setf symbol)'.
5652 2004-06-24 Richard M. Stallman <rms@gnu.org>
5654 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
5656 * font-lock.el (font-lock-keywords): Change format of compiled values.
5658 (font-lock-add-keywords): If font-lock-keywords is compiled,
5659 extract the uncompiled version, modify, then recompile.
5660 (font-lock-remove-keywords): Likewise.
5661 (font-lock-fontify-keywords-region): Handle changed format.
5662 (font-lock-compile-keywords): Handle changed format.
5663 (font-lock-set-defaults): Compile the keywords explicitly here.
5665 2004-06-24 David Kastrup <dak@gnu.org>
5667 * replace.el (query-replace-read-args): Implement `\,' and `\#'
5669 (query-replace-regexp): Doc string explaining this and the new
5670 `\?' replacement. Remove `\,' and `\#' implementation here, as it
5671 is better placed in `query-replace-read-args'.
5672 (replace-regexp): Explain `\,', `\#' and `\?'.
5673 (replace-match-data): New function for thorough reuse/destruction
5675 (replace-match-maybe-edit): Function for implementing `\?' editing.
5676 (perform-replace): Fix maintaining of the match stack including
5677 already matched regions, implement `\?', fix various problems
5678 with regions while editing and other stuff.
5679 (replace-highlight): Simplify.
5681 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
5683 * progmodes/grep.el (grep-error-screen-columns): New variable.
5684 (grep-regexp-alist): Give it the full functionality of gnu style
5685 compilation messages with line and column ranges. Ask me for the
5686 perl script I'm working on, that uses these.
5688 2004-06-23 Nick Roberts <nickrob@gnu.org>
5690 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
5692 (comint-insert-input, comint-mouse-insert-input): New functions
5693 based on comint-insert-clicked-input for two bindings but just
5696 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
5698 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
5700 2004-06-23 Lars Hansen <larsh@math.ku.dk>
5702 * files.el (write-contents-functions): Doc fix.
5704 2004-06-21 Juanma Barranquero <lektu@terra.es>
5706 * image.el (image-library-alist): Rewrite docstring in active voice.
5708 2004-06-20 Richard M. Stallman <rms@gnu.org>
5710 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
5712 * isearch.el (isearch-repeat): Avoid testing old match data.
5713 (isearch-message): Display trailing space in special font
5714 when search is failing.
5715 (isearch-search-fun-function): Doc fix.
5717 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
5719 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
5721 * frame.el (show-trailing-whitespace): Doc fix.
5723 * cus-edit.el (custom-variable-documentation): New function.
5724 (custom-variable): Use it.
5726 2004-06-19 Nick Roberts <nickrob@gnu.org>
5728 * man.el (Man-getpage-in-background): Revert previous change but
5729 make cygwin a special case.
5731 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
5733 * autorevert.el (global-auto-revert-non-file-buffers):
5736 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
5738 * progmodes/compile.el (compilation-error-properties): Store one
5739 more than end-col, if present, so that transient-mark-mode will
5740 highlight last char too.
5741 * progmodes/grep.el (grep-regexp-alist): Match columns and column
5744 2004-06-18 Jason Rumney <jasonr@gnu.org>
5746 * makefile.w32-in: Double percent signs in for loops.
5748 2004-06-17 David Kastrup <dak@gnu.org>
5750 * replace.el (query-replace-read-args): Only warn about use of \n
5751 and \t when we are doing a regexp replacement and the actual
5752 escaped character is n or t.
5753 (query-replace-regexp): Add \, and \# interpretation to
5754 interactive call and document it.
5755 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
5756 as shortkey for replace-count.
5757 (replace-quote): New function for doubling backslashes.
5759 2004-06-17 Juanma Barranquero <lektu@terra.es>
5761 * files.el (parse-colon-path, cd): Mention in docstring that the
5762 path separator is colon in GNU-like systems.
5764 * newcomment.el (comment-region-internal): Fix docstring.
5766 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
5767 (ewoc-invalidate, ewoc-collect): Doc fixes.
5768 (ewoc--create-node, ewoc--delete-node-internal):
5769 Fix typos in docstring.
5771 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
5773 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
5774 manual to docstring.
5776 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5778 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
5780 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
5782 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
5783 Add hyperlink to emacs-xtra manual to docstring.
5785 * autorevert.el (global-auto-revert-non-file-buffers):
5786 Add hyperlink to emacs-xtra manual to docstring, as well as an
5789 2004-06-14 Juanma Barranquero <lektu@terra.es>
5791 * image.el (image-library-alist): New variable to map image types
5792 to external libraries. Initialized to nil, unless system-specific
5794 (image-type-available-p): Determine whether an image type is
5795 available by calling `init-image-library'.
5797 * term/w32-win.el (image-library-alist): Initialize to a known set
5798 of probable library names.
5800 2004-06-14 Kenichi Handa <handa@m17n.org>
5802 * international/code-pages.el (windows-1256, cp1125): Fix tables
5803 for several characters.
5805 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
5807 2004-06-13 Richard M. Stallman <rms@gnu.org>
5809 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
5811 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
5812 not "`pc-selection-mode'".
5814 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
5816 * simple.el (previous-matching-history-element): Specify a default.
5818 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
5820 * cus-face.el (custom-declare-face): Simplify code.
5822 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
5824 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
5826 * files.el (before-save-hook): Add `time-stamp' to the options.
5828 * time-stamp.el (time-stamp): Recommend adding it to
5829 `before-save-hook', rather than `write-file-functions'.
5830 Make a similar change in `Commentary' section.
5832 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
5834 * diff-mode.el (diff-current-defun): If at start of hunk, use
5835 position of first change.
5837 2004-06-13 Lars Hansen <larsh@math.ku.dk>
5839 * dired-x.el (dired-mark-omitted): Bind to "*O".
5841 2004-06-12 Karl Fogel <kfogel@red-bean.com>
5843 * bookmark.el (bookmark-bmenu-relocate): New function, as
5844 suggested by David J. Biesack <David.Biesack@sas.com>.
5845 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
5846 (bookmark-bmenu-mode): Describe binding in doc string.
5847 (bookmark-set-filename): Save the bookmark list if it's time.
5849 2004-06-13 Kenichi Handa <handa@m17n.org>
5851 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
5852 (ccl-untranslated-to-ucs): Fix typo.
5854 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
5856 * progmodes/python.el (python-open-block-statement-p):
5857 Fix indentation after a block opening that contains a comment.
5859 2004-06-12 J
\e,Ai
\e(Br
\e,At
\e(Bme Marant <jerome@marant.org> (tiny change)
5861 * bindings.el (completion-ignored-extensions): Add file extensions
5862 of Python byte-compiled files.
5864 2004-06-12 Juri Linkov <juri@jurta.org>
5866 * info.el (Info-goto-node): Add autoload.
5867 (Info-toc): Add substring-no-properties on Info file name.
5868 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
5869 (Info-mode-map): Bind L to Info-history, T to Info-toc.
5871 2004-06-12 Kenichi Handa <handa@m17n.org>
5873 * international/mule-cmds.el (set-language-environment):
5874 Load subst tables if necessary.
5876 * international/mule.el (decode-char): Load subst tables if necessary.
5877 (encode-char): Likewise.
5879 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
5880 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
5881 (utf-16le-decode-loop): Set r5 to -1 before loop.
5882 (utf-16be-decode-loop): Likewise.
5883 (ccl-decode-mule-utf-16le): Add EOF processing block.
5884 (ccl-decode-mule-utf-16be): Likewise.
5885 (ccl-decode-mule-utf-16le-with-signature): Likewise.
5886 (ccl-decode-mule-utf-16be-with-signature): Likewise.
5887 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
5888 (ccl-mule-utf-16-encode-untrans): New CCL.
5889 (utf-16-decode-to-ucs): Handle pre-read character.
5890 (utf-16le-encode-loop): Handle surrogate pair.
5891 (utf-16be-encode-loop): Likewise.
5892 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
5893 of utf-16le-encode-loop.
5894 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
5895 of utf-16be-encode-loop.
5896 (mule-utf-16-post-read-conversion):
5897 Call utf-8-post-read-conversion at first.
5898 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
5899 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
5900 Add post-read-conversion and pre-write-conversion.
5902 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
5903 (utf-translate-cjk-unicode-range): New variable.
5904 (utf-translate-cjk-load-tables): New function.
5905 (utf-lookup-subst-table-for-decode): New function.
5906 (utf-lookup-subst-table-for-encode): New function.
5907 (utf-translate-cjk-mode): Init-value changed to t. Don't load
5908 tables here. Update safe-charsets of utf-* coding systems.
5909 (ccl-mule-utf-untrans): New CCL.
5910 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
5911 at end of each branch.
5912 (ccl-mule-utf-8-encode-untrans): New CCL.
5913 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
5914 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
5915 length of encoding. Don't return r0.
5916 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
5917 (utf-8-post-read-conversion): Narrow to region properly.
5918 If utf-translate-cjk-mode is on, load tables if necessary.
5919 Call utf-8-compose with hash-table arg if necessary.
5920 Call XXX-compose-region instead of XXX-post-read-convesion.
5921 (utf-8-pre-write-conversion): New function.
5922 (mule-utf-8): Include CJK charsets in safe-charsets if
5923 utf-translate-cjk-mode is on. Add pre-write-conversion.
5925 * international/characters.el: Temporarily set
5926 utf-translate-cjk-mode to nil.
5928 * language/devan-util.el (devanagari-compose-region):
5929 Add autoload cookie.
5931 * international/ccl.el (ccl-dump-call): Fix printing the
5934 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
5936 * dired.el (dired-revert): If buffer is marked unmodified before
5937 reverting, keep it marked unmodified.
5938 Adapt to new conventions for commenting out code.
5939 (dired-make-relative): Adapt to new conventions for commenting out code.
5941 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
5943 * eshell/esh-module.el (eshell-load-defgroups):
5944 Bind `vc-handled-backends' to nil when opening files.
5946 2004-06-11 Juanma Barranquero <lektu@terra.es>
5948 * files.el (parse-colon-path, cd): Doc fixes (refer to
5949 `path-separator', not colon).
5951 2004-06-10 Juanma Barranquero <lektu@terra.es>
5953 * newcomment.el (comment-search-forward)
5954 (comment-search-backward): Fix typos in docstring.
5955 (comment-region): Doc fix.
5957 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
5959 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
5960 switch is no longer stored in `dired-switches-alist'.
5962 * dired-aux.el (dired-insert-subdir): Do not store R switch in
5963 `dired-switches-alist'.
5965 2004-06-10 Kim F. Storm <storm@cua.dk>
5967 * pcvs.el (cvs-mode-diff-yesterday): New command.
5969 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
5971 2004-06-10 Juri Linkov <juri@jurta.org>
5973 * emacs-lisp/edebug.el (edebug-eval-defun):
5974 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
5977 * simple.el (eval-expression-print-format): Don't print additional
5978 information on the first call to `eval-print-last-sexp'.
5979 (next-error-find-buffer): Fix punctuation.
5980 (killing) <defgroup>: Fix punctuation.
5981 (yank-excluded-properties): Change group from editing to killing.
5983 * replace.el (perform-replace): Use `limit' to terminate the
5984 while-loop explicitly.
5986 2004-06-09 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
5988 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
5989 Use lc-*.xpm as prefix instead of *-locol.xpm.
5991 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
5992 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
5993 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
5994 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
5995 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
5996 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
5997 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
5998 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
5999 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
6000 * toolbar/lc-up_arrow.xpm:
6001 Rename from *-locol.xpm.
6003 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
6005 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
6006 include forms like &<str>; as valid url patterns.
6008 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
6010 * dired.el (dired-diff, dired-backup-diff)
6011 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
6012 (dired-do-chown, dired-do-touch, dired-do-print)
6013 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
6014 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
6015 (dired-create-directory, dired-do-copy, dired-do-symlink)
6016 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
6017 (dired-do-copy-regexp, dired-do-hardlink-regexp)
6018 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
6019 (dired-maybe-insert-subdir, dired-next-subdir)
6020 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
6021 (dired-kill-subdir, dired-tree-up, dired-tree-down)
6022 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
6023 (dired-run-shell-command, dired-query): Remove redundant,
6024 or incorrect, autoloads.
6026 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
6027 does not end in a slash. Add optional argument KILL-ROOT.
6029 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
6030 (dired-query): Add autoloads.
6032 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
6034 * progmodes/compile.el (compilation-set-window-height):
6035 Rearrange the save-* functions because a buffer can have several current
6036 point in different windows.
6037 (compilation-error-regexp-alist-alist): Recognize {standard input}
6038 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
6040 2004-06-08 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
6042 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
6043 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
6044 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
6045 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
6046 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
6047 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
6048 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
6049 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
6050 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
6051 * toolbar/up_arrow-locol.xpm:
6052 New versions of icons that uses fewer colors.
6054 * toolbar/tool-bar.el (tool-bar-local-item)
6055 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
6056 if display-color-cells is 256 or less.
6058 2004-06-08 Kim F. Storm <storm@cua.dk>
6060 * wid-edit.el (widget-specify-button): Use hand pointer rather
6061 than mouse-face as visible mouse-over effect.
6063 2004-06-07 Karl Fogel <kfogel@red-bean.com>
6065 * saveplace.el (save-place-alist-to-file): Bind `print-length'
6066 and `print-level' to nil when writing out `save-place-alist'.
6067 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
6069 2004-06-07 Juanma Barranquero <lektu@terra.es>
6071 * completion.el (completion-kill-region): Doc fix.
6073 * format.el (format-insert-annotations)
6074 (format-annotate-location): Doc fixes.
6075 (format-subtract-regions): Make arguments match their use in docstring.
6077 * simple.el (kill-region): Doc fix.
6079 * subr.el (insert-buffer-substring-no-properties)
6080 (insert-buffer-substring-as-yank): Doc fixes.
6082 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
6084 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
6086 (dired-reset-subdir-switches): New function.
6088 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
6089 Limit scope of `buffer-read-only' binding.
6091 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
6093 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
6094 eshell-explicit-command-char.
6096 2004-06-06 Juanma Barranquero <lektu@terra.es>
6098 * help-fns.el (help-argument-name): Inherit from italic face only
6099 if the frame supports it.
6101 2004-06-06 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
6103 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
6104 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
6105 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
6106 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
6107 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
6108 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
6109 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
6110 New conversions from xpm files.
6112 * toolbar/README: New file.
6114 2004-06-06 Richard M. Stallman <rms@gnu.org>
6116 * isearch.el (isearch-mode-map): Undo previous change.
6118 2004-06-05 Juri Linkov <juri@jurta.org>
6120 * bindings.el (debug-ignored-errors): Add regexps for history
6121 related messages. Remove $ from "No further undo information".
6122 Move Ediff's messages to ediff.el.
6124 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
6126 * cus-edit.el (custom-display): Add `min-colors'.
6128 * custom.el (defface): Add `supports' to docstring.
6130 * help-fns.el (help-argument-name): Add :group 'help.
6132 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
6134 * find-dired.el (find-ls-subdir-switches): New user option.
6135 (find-dired): No longer call `abbreviate-file-name' on DIR.
6136 Set `dired-subdir-switches' buffer-locally.
6138 * locate.el: Merge the two `Commentary' sections.
6139 (locate-ls-subdir-switches): New user option.
6140 (locate): Update for other changes.
6141 (locate-mode-map): Restore Dired binding for mouse-2.
6142 Bind `locate-mouse-view-file' to M-mouse-2.
6143 Bind `l' to `locate-do-redisplay'.
6144 (locate-main-listing-line-p, locate-do-redisplay): New functions.
6145 (locate-mouse-view-file, locate-tags, locate-find-directory):
6146 Print message if used outside main listing.
6147 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
6148 Various changes to support inserted subdirectories.
6149 (locate-insert-header): Change header of *Locate* buffer.
6151 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
6152 Change interactive default switches.
6153 (dired-rename-subdir-2): Update `dired-switches-alist'.
6154 (dired-insert-subdir, dired-kill-subdir):
6155 Handle `dired-switches-alist'. Do not mark buffer modified.
6156 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
6157 (dired-insert-subdir-doinsert): Omit messages.
6158 Handle `dired-subdir-switches'.
6159 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
6161 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
6162 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
6163 subdirs if -R switch is used for a subdir.
6164 (dired-mode): Set `dired-switches-alist'.
6165 (dired-build-subdir-alist): Only print number of directories in
6166 echo area when invoked interactively.
6168 2004-06-05 Lars Hansen <larsh@math.ku.dk>
6170 * dired-x.el (dired-omit-mode): Rename from
6171 dired-omit-files-p. Use define-minor-mode to define it.
6172 (dired-omit-files-p): Add as alias for dired-omit-mode.
6173 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
6175 (dired-mark-omitted): Add. Bind to M-O.
6177 2004-06-05 Kenichi Handa <handa@m17n.org>
6179 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
6181 2004-06-05 Juanma Barranquero <lektu@terra.es>
6183 * help-fns.el (help-argument-name): Reintroduce face.
6184 (help-default-arg-highlight): Use it, now that
6185 `face-differs-from-default-p' can be trusted.
6187 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
6189 * textmodes/table.el: Sentence commands added to Point Motion
6190 group; kill and backward-kill commands added to Extraction group.
6192 2004-06-04 Mario Lang <mlang@delysid.org>
6194 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
6195 systems appear to use mW, make the code handle this. Fix a
6196 division-by-zero bug while at it, and handle kernels with
6197 a slightly different layout in /proc/acpi.
6199 2004-06-04 Karl Fogel <kfogel@red-bean.com>
6201 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
6202 because the latter is a CL-ism. This fixes the bug reported by
6203 Shawn Boyette <mdxi@collapsar.net> in
6204 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
6206 2004-06-04 Miles Bader <miles@gnu.org>
6208 * faces.el (display-supports-face-attributes-p): Function moved to
6209 C code. Previously only the tty-related portion of this function
6210 was done in C; however the previous attempt to do a halfway-proper
6211 job for non-tty displays in lisp didn't work properly because of
6212 funny conditions during Emacs startup.
6213 (face-differs-from-default-p): Simplify, now that
6214 display-supports-face-attributes-p works properly on all display
6215 types. Remove :stipple from comparison; it doesn't really work
6218 2004-06-04 Miles Bader <miles@gnu.org>
6220 * faces.el (face-differs-from-default-p): Use a different
6221 implementation, so we can really check whether FACE displays
6224 2004-06-04 Miles Bader <miles@gnu.org>
6226 * faces.el (display-supports-face-attributes-p): Implement a
6227 `different from default' check for non-tty displays.
6229 2004-06-03 David Kastrup <dak@gnu.org>
6231 * woman.el (woman-mapcan): More concise code.
6232 (woman-topic-all-completions, woman-topic-all-completions-1)
6233 (woman-topic-all-completions-merge): Replace by a simpler and
6234 much faster implementation based on O(n log n) sort/merge instead
6235 of the old O(n^2) behavior.
6237 2004-06-03 Miles Bader <miles@gnu.org>
6239 * subr.el (read-number): Use canonical format for default in prompt.
6241 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
6242 Add regexp for " [...]" style defaults.
6244 2004-06-02 Romain Francoise <romain@orebokech.com>
6246 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
6247 groups: if the user asks for a hidden buffer, open the
6248 corresponding filter group to expose it.
6250 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
6251 `ibuffer-jump-to-buffer'.
6252 (ibuffer-jump-offer-only-visible-buffers): New user option.
6254 2004-06-02 Juanma Barranquero <lektu@terra.es>
6256 * faces.el (frame-update-faces): Add empty docstring so the one
6257 for `ignore' doesn't show through.
6259 * subr.el (process-kill-without-query): Remove spurious "\n" on
6260 obsolescence string.
6261 (focus-frame, unfocus-frame): Add obsolescence declaration and
6264 * international/mule.el (register-char-codings): Make alias for
6265 `ignore'. Move docstring to obsolescence info and remove redundancy.
6267 2004-06-02 Kim F. Storm <storm@cua.dk>
6269 * frame.el (blink-cursor-start): Turn cursor off initially so blink
6270 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
6272 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6274 * comint.el (comint-replace-by-expanded-history-before-point):
6275 Obey `start' as the docstring says.
6276 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
6277 (comint-update-fence): Prevent font-lock from running unnecessarily.
6278 (comint-dynamic-list-completions): Use with-current-buffer.
6280 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6282 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
6283 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
6284 (bibtex-entry-update): Handle alternatives and optional fields.
6285 (bibtex-parse-entry): Bugfix, handle empty key.
6287 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6289 * vc-arch.el (vc-arch-state): Don't assume the file exists.
6291 2004-05-31 Lars Hansen <larsh@math.ku.dk>
6293 * desktop.el (desktop-save): Don't save minor modes without a
6294 known mode initialization function.
6296 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
6298 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
6300 * autorevert.el: Update `Commentary' section.
6302 2004-05-30 Juanma Barranquero <lektu@terra.es>
6304 * dos-fns.el (convert-standard-filename):
6305 * files.el (convert-standard-filename):
6306 * w32-fns.el (convert-standard-filename):
6307 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
6309 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
6313 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
6314 (tramp-let-maybe): Move to an earlier spot in the file.
6315 Patch by Andreas Schwab.
6317 2004-05-30 Andreas Schwab <schwab@suse.de>
6319 * dired.el (dired-get-filename): Don't use dired-re-dot.
6321 2004-05-30 Richard M. Stallman <rms@gnu.org>
6323 * files.el (find-file): Doc fix.
6325 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
6327 2004-05-30 Nick Roberts <nickrob@gnu.org>
6329 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
6330 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
6331 modeline of the locals buffer.
6332 (gdb-goto-breakpoint): Handle gdbmi.
6333 (gdb-get-frame-number): Change for gdbmi.
6335 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
6337 * files.el (file-remote-p): Apply file name handler for operation
6338 `file-remote-p'. It isn' a property any longer.
6339 (file-relative-name): `fh' and `fd' get the required value via
6340 `find-file-name-handler' already.
6342 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
6343 (top): Remove setting of `file-remote-p' property for
6344 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
6346 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
6348 Version 2.0.41 of Tramp released.
6350 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
6351 Throw away if process has died.
6352 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
6353 (tramp-out-of-band-prompt-regexp): Rename to
6354 `tramp-process-alive-regexp', because its usage is widen.
6355 (tramp-actions-copy-out-of-band): Apply it.
6356 (tramp-actions-before-shell, tramp-multi-actions):
6357 Add `tramp-action-process-alive' action.
6358 (tramp-action-process-alive): New defun.
6359 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
6360 Add entry for `file-remote-p'.
6361 (tramp-handle-file-remote-p): New defun.
6362 (top): Remove setting of `file-remote-p'. Don't set
6363 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
6365 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
6368 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
6369 counted for (last) line. [They should or they shouldn't? --Stef]
6370 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
6372 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
6374 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
6375 not really necessary but seems to keep the shell history smaller
6376 in some cases. It is no substitute for setting HISTFILE and
6377 HISTSIZE from tramp-open-connection-setup-interactive-shell,
6378 though. Suggested by Luc Teirlinck.
6379 (tramp-open-connection-setup-interactive-shell): Export variables
6380 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
6381 (tramp-set-process-query-on-exit-flag): New compat function.
6382 (tramp-open-connection-multi, tramp-open-connection-su)
6383 (tramp-open-connection-rsh, tramp-open-connection-telnet)
6384 (tramp-do-copy-or-rename-file-out-of-band): Use it.
6385 (tramp-let-maybe): New macro, let-binds a variable only if it
6387 (tramp-check-ls-commands, tramp-handle-expand-file-name)
6388 (tramp-handle-file-truename): Use it.
6389 (tramp-completion-file-name-regexp-unified): Avoid matching
6390 filenames starting with "/:" -- those are reserved for
6391 file-name-non-special.
6393 * tramp-smb.el (tramp-smb-open-connection):
6394 Use tramp-set-process-query-on-exit-flag compat function.
6396 2004-05-29 Richard M. Stallman <rms@gnu.org>
6398 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
6400 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
6401 (eval-last-sexp-print-value): Print char equivalent regardless
6402 of standard-output value.
6404 * thumbs.el (thumbs-subst-char-in-string): Delete.
6405 (thumbs-thumbname): Use subst-char-in-string.
6406 (thumbs-resize-image): Use condition-case, not ignore-errors.
6407 (thumbs-kill-buffer): Likewise.
6409 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
6410 (thumbs-mode): Make buffer read-only.
6411 (thumbs-make-thumb): Unconditionally accept an existing file.
6412 (thumbs-insert-thumb): Add thumb-image-file property to the image.
6413 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
6414 (thumbs-show-thumbs-list): Error if images not supported.
6415 (thumbs-save-current-image): Improve prompt string.
6416 (thumbs-mode-map): Define u, R, x.
6417 (thumbs-unmark): New command.
6418 (thumbs-emboss-image): Minor cleanup.
6419 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
6420 (thumbs-rename-images): New command.
6421 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
6423 * thumbs.el (thumbs-current-image): New function.
6424 (thumbs-file-list, thumbs-file-alist): New functions.
6425 (thumbs-find-image): Delete arg L.
6426 Don't set up thumbs-fileL as buffer-local global var.
6427 (thumbs-find-image-at-point): Use thumbs-current-image.
6428 (thumbs-set-image-at-point-to-root-window): Likewise.
6429 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
6430 Record and warn about errors. Update thumbs-markedL for deletions.
6431 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
6432 (thumbs-redraw-buffer): Use thumbs-file-list.
6433 (thumbs-mark): Use thumbs-current-image.
6434 (thumbs-show-name): Use thumbs-current-image.
6436 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
6437 and imenu--last-menubar-index-alist.
6439 * subr.el (with-selected-window): Undo previous change.
6441 2004-05-29 John Paul Wallington <jpw@gnu.org>
6443 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
6444 (thumbs-mouse-find-image): New command.
6445 (thumbs-mode-map): Bind it to mouse-2.
6446 (thumbs-mode): Make mode-class special.
6447 (thumbs-view-image-mode): Likewise.
6449 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
6451 * flymake.el: New file.
6453 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
6455 * files.el (find-file-noselect-1): Do not bind
6456 `inhibit-read-only' to t during execution of
6457 `find-file-not-found-functions'.
6459 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6461 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
6462 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
6464 2004-05-28 Juri Linkov <juri@jurta.org>
6466 * simple.el (eval-expression-print-format): New fun.
6468 * simple.el (eval-expression):
6469 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
6470 * emacs-lisp/edebug.el (edebug-compute-previous-result)
6471 (edebug-eval-expression): Print additionally the value returned by
6472 `eval-expression-print-format'.
6474 * emacs-lisp/lisp.el (insert-pair-alist): New var.
6475 (insert-pair): Make arguments optional. Find character pair
6476 from `insert-pair-alist' according to the last input event.
6477 (insert-parentheses): Make arguments optional.
6478 (raise-sexp, delete-pair): New funs.
6480 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
6481 (emacs-lisp-mode-map, lisp-interaction-mode-map):
6482 Bind C-M-q to `indent-pp-sexp'.
6484 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
6485 `pp-to-string' modified to be able to format text with newlines.
6486 (pp-to-string): Move the buffer-formatting part of the code to
6487 `pp-buffer'. Call `pp-buffer'.
6489 * info.el (Info-desktop-buffer-misc-data): Don't save information
6490 about virtual files.
6491 (Info-restore-desktop-buffer): Restore Info buffers in prepared
6492 buffers with names obtained from the desktop file instead of the
6493 default *info* buffer.
6495 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6497 * subr.el (with-selected-window): Only save/restore the selected window.
6499 * progmodes/compile.el (compilation-error-regexp-alist):
6500 Use expand-file-name and data-directory.
6502 * progmodes/grep.el (grep-tree): Rework previous fix.
6504 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
6505 after the user marked text with the mouse.
6507 * startup.el (command-line): Keep the first regexp of
6508 auto-save-file-name-transforms intact.
6510 2004-05-28 Juanma Barranquero <lektu@terra.es>
6512 * cus-edit.el (customize-face, customize-face-other-window)
6513 (custom-face-edit-delete): Make arguments match their use in
6515 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
6518 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
6521 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
6522 `nbutlast' are in subr.el).
6524 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
6525 (set-w32-system-coding-system): Doc fixes.
6527 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
6528 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
6529 Make arguments match their use in docstring.
6530 (artist-draw-region-trim-line-endings)
6531 (artist-mouse-choose-operation): Fix typo in docstring.
6532 (artist-key-set-point-common): Doc fix.
6534 2004-05-28 Simon Josefsson <jas@extundo.com>
6536 * mail/smtpmail.el (smtpmail-open-stream):
6537 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
6539 2004-05-26 Simon Josefsson <jas@extundo.com>
6541 * starttls.el: Merge with my GNUTLS based starttls.el.
6542 (starttls-gnutls-program, starttls-use-gnutls)
6543 (starttls-extra-arguments, starttls-process-connection-type)
6544 (starttls-connect, starttls-failure, starttls-success): New variables.
6545 (starttls-program, starttls-extra-args): Doc fix.
6546 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
6547 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
6548 and pass on to corresponding *-gnutls function if it is set.
6550 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
6552 * autorevert.el (auto-revert-handler): Disable auto-reverting of
6555 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
6557 * files.el (file-name-non-special): There are more operations
6558 which need handling: `find-backup-file-name',
6559 `insert-file-contents', `verify-visited-file-modtime',
6560 `write-region'. Rename t value of method to `add'. Add new
6561 methods `quote' and `unquote-then-quote' to file-arg-indices.
6563 2004-05-25 Juri Linkov <juri@jurta.org>
6565 * info.el (Info-toc): Call Info-mode on intermediate buffer.
6566 (Info-index-nodes): Enclose code in condition-case to catch errors.
6567 (Info-index-node): Don't search all index nodes if request is only
6568 for the current node and file is not in the cache of index nodes.
6569 (Info-mode-map): Bind Info-copy-current-node-name to `w'
6570 for consistency with dired-copy-filename-as-kill.
6571 Bind `S' to Info-search-case-sensitively.
6572 (Info-copy-current-node-name): New arg. With zero prefix arg put
6573 the name inside a function call to `info'. Display copied text in
6576 2004-05-25 Sam Steingold <sds@gnu.org>
6578 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
6579 strip the package prefix from the symbol name, if any.
6580 Make it the `find-tag-default-function' for `lisp-mode'.
6582 2004-05-25 John Paul Wallington <jpw@gnu.org>
6584 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
6585 instead of obsolete `process-kill-without-query'.
6587 * textmodes/texinfmt.el (texinfo-indexvar-alist):
6588 Declare as variable, not constant.
6590 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
6592 * files.el (find-file-noselect-1): Fix bug introduced by
6593 Revision 1.694. As a side effect, `inhibit-read-only'
6594 is again, by default, t during execution of
6595 `find-file-not-found-functions'.
6596 (insert-directory): Check that lines were really inserted by
6597 the --dired switch, before erasing them.
6599 2004-05-24 Nick Roberts <nickrob@gnu.org>
6601 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
6602 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
6603 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
6604 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
6605 gud-minor-mode (gdbmi).
6607 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
6609 * net/browse-url.el (browse-url-interactive-arg): Enable user to
6610 explicitly select the text to be taken as URL.
6612 2004-05-23 Juri Linkov <juri@jurta.org>
6614 * info.el (Info-index-nodes): New var and fun.
6615 (Info-goto-index, Info-index, info-apropos)
6616 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
6617 (Info-index): Fix docstring. Store and restore Info-history-list.
6618 (Info-complete-nodes): New var.
6619 (Info-complete-menu-item): Use it.
6620 (Info-index-node): New fun.
6621 (Info-final-node, Info-forward-node, Info-backward-node)
6622 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
6623 Use Info-index-node.
6624 (Info-extract-menu-item, Info-extract-menu-counting): Set second
6625 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
6626 (Info-find-node-2): If a node with period in its name not found,
6627 try to find a node without the name part after period.
6628 (Info-select-node): Call Info-fontify-node only if
6629 Info-fontify-maximum-menu-size is not nil.
6630 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
6631 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
6632 Preserve Info-history-list.
6633 (Info-toc): Set Info-current-file.
6634 (Info-build-toc): Move point to the beginning of the buffer.
6635 Add main-file variable.
6636 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
6637 Use backslashed representation of the control character ^_.
6639 * textmodes/texinfmt.el (texinfo-print-index): Print index line
6640 numbers in the new Texinfo 4.7 format.
6642 * add-log.el (change-log-font-lock-keywords): Remove `:' from
6643 regexps for function and variable names.
6645 * descr-text.el (describe-property-list): Add [show] button for
6646 `syntax-table' property with action to pp to a separate buffer.
6647 (describe-char): Replace search-forward by re-search-forward with
6648 whitespace regexp after "character:" to not fail in too narrow windows.
6650 * simple.el (next-error-find-buffer): Add a rule to return
6651 next-error capable buffer if one window on the selected frame
6652 displays such buffer.
6654 2004-05-23 Nick Roberts <nickrob@gnu.org>
6656 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
6657 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
6658 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
6659 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
6660 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
6661 Handle new value for gud-minor-mode (gdbmi).
6662 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
6663 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
6664 Change from local to global gdb variable set.
6665 (gdb-ann3): Initialise above gdb variable set.
6666 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
6667 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
6668 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
6669 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
6670 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
6671 (gdb-info-locals-handler, gdb-invalidate-assembler)
6672 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
6673 set as global variables.
6674 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
6676 (gdb-info-breakpoints-custom): Fix regexp.
6677 (def-gdb-var): Delete.
6679 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
6680 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
6681 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
6682 a new mode. The file (gdb-mi.el) for this mode will be included
6683 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
6686 2004-05-23 Jesper Harder <harder@ifa.au.dk>
6688 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
6689 interpreted as a directory.
6691 2004-05-22 Richard M. Stallman <rms@gnu.org>
6693 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
6696 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
6698 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
6699 Use assoc-string, not assoc-ignore-case.
6701 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
6703 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
6704 If moving back then fwd gets a defun that ends before point,
6705 try again moving fwd then back.
6707 * files.el (file-name-non-special): Allow t in file-arg-indices
6708 to mean requote the return value. Use `identity' as an element
6709 rather than as the whole value.
6711 * gs.el (gs-options): Add -dSAFER. Mark it risky.
6713 2004-05-22 Juanma Barranquero <lektu@terra.es>
6715 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
6717 (help-highlight-arguments): Skip function name before searching
6720 2004-05-21 Juanma Barranquero <lektu@terra.es>
6722 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
6723 Don't mention in the docstring these arguments meant for
6724 internal (recursive) use only.
6725 (allout-char-spec): Comment out (it's not implemented).
6726 (allout-old-expose-topic, allout-exposure): Fix docstring and add
6727 obsolescence declaration.
6728 (allout-flatten-exposed-to-buffer)
6729 (allout-indented-exposed-to-buffer): Fix typos in docstring.
6730 (my-mark-marker): Doc fix.
6731 (produce-allout-mode-map, allout-sibling-index)
6732 (allout-isearch-expose, allout-distinctive-bullet)
6733 (allout-open-topic, allout-reindent-body)
6734 (allout-rebullet-heading, allout-process-exposed)
6735 (allout-insert-listified, allout-latex-verb-quote)
6736 (allout-insert-latex-header, allout-insert-latex-trailer):
6737 Make arguments match their use in docstring.
6738 (allout-primary-bullet, allout-old-style-prefixes)
6739 (allout-inhibit-protection, allout-init, allout-mode)
6740 (allout-before-change-protect, allout-flag-region):
6741 Use "Emacs" instead of "emacs" in docstrings.
6743 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
6745 * international/characters.el: Modify syntax of more characters.
6747 2004-05-21 Masatake YAMATO <jet@gyve.org>
6749 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
6750 (etags-tags-completion-table): Show parsing progress.
6752 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
6754 * locate.el (locate-prompt-for-command): Shorten first line of
6756 (locate-mode): Expand docstring and include keymap summary.
6758 * files.el (find-file-noselect-1): Limit the scope of the
6759 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
6760 is, by default, nil during the execution of
6761 `find-file-not-found-functions' and `find-file-hook'.
6763 2004-05-20 Michael Mauger <mmaug@yahoo.com>
6765 * facemenu.el (facemenu-color-name-equal): New function.
6766 (list-colors-display): Use it to compare colors instead of
6767 facemenu-color-equal.
6769 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
6771 * compare-w.el (compare-windows-face): Use min-colors instead of
6772 checking for tty or pc types.
6774 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
6776 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
6777 (completion-setup-function): Use with-current-buffer.
6778 Properly save excursion. Simplify.
6779 Don't assume there is necessarily a `mouse-face' property somewhere.
6781 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
6783 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
6785 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
6786 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
6787 Use with-current-buffer.
6788 (byte-goto-log-buffer): Delete.
6789 (byte-compile-log-file): Call compilation-forget-errors.
6791 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
6793 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
6794 output messages into the search result.
6796 2004-05-19 Masatake YAMATO <jet@gyve.org>
6798 * wid-edit.el (widget-radio-button-notify): Revert my last
6799 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
6801 2004-05-19 Kenichi Handa <handa@m17n.org>
6803 * international/characters.el: Fix syntax (open/close) of CJK chars.
6805 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
6807 * help-mode.el (help-go-back): Don't depend on position of back button.
6809 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
6811 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
6812 files files don't contain an accidental additional /.
6814 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
6817 2004-05-18 Masatake YAMATO <jet@gyve.org>
6819 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
6820 to widget-apply. :action method assumes 2 arguments, not 3.
6822 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
6824 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
6826 (hs-special-modes-alist): Add an f90-mode entry.
6828 2004-05-17 Sam Steingold <sds@gnu.org>
6830 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
6831 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
6833 2004-05-16 Kim F. Storm <storm@cua.dk>
6835 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
6837 2004-05-15 John Wiegley <johnw@newartisans.com>
6839 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
6840 (eshell-output-object-to-target): Improve output speed 20% by not
6841 calling `eshell-stringify' if something is already known to be a string.
6843 2004-05-15 Alex Ott <ott@jet.msk.su>
6845 * textmodes/ispell.el (ispell-local-dictionary-alist):
6846 Add windows-1251 to the choice of coding systems.
6847 (ispell-dictionary-alist-6): Add support for "russianw.aff",
6850 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
6852 * progmodes/compile.el (compilation-warning-face)
6853 (compilation-info-face): Use min-colors.
6855 2004-05-15 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
6857 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
6858 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
6859 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
6860 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
6861 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
6862 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
6863 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
6864 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
6865 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
6866 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
6867 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
6868 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
6869 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
6870 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
6872 2004-05-15 Kim F. Storm <storm@cua.dk>
6874 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
6875 Use it to set triggered-p element of timer.
6876 (timer-event-handler): Set triggered-p element non-nil while running
6879 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6881 * descr-text.el (describe-char-unicode-data)
6882 (describe-char-unicodedata-file): Re-enable the unicode code now that
6883 the licensing issues have been cleared in the unicode-4 license.
6884 (describe-text-properties-1): Remove unused `overlay' var.
6885 (describe-char): Remove unused var `buffer'.
6887 2004-05-14 David Ponce <david@dponce.com>
6889 * tree-widget.el: New file.
6891 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
6893 * language/european.el ("Brazilian Portuguese"): Add support for
6894 Brazilian Portuguese.
6896 2004-05-13 John Wiegley <johnw@newartisans.com>
6898 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
6899 `recentf-mode' if this variable has been customized to t.
6901 * eshell/esh-test.el (eshell-test): Call the function
6902 `emacs-version' rather than trying to build a custom version string.
6904 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6906 * net/telnet.el (telnet-mode): Use define-derived-mode.
6907 Don't modify the global value of comint-prompt-regexp.
6909 2004-05-13 John Paul Wallington <jpw@gnu.org>
6911 * version.el (emacs-version): Check for `gtk' feature before
6912 `x-toolkit' feature.
6914 2004-05-13 Juanma Barranquero <lektu@terra.es>
6916 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
6917 arguments in the docstring, they're used only in recursive calls.
6919 * help-fns.el (help-arg-highlighting-function)
6920 (help-argument-name): Delete.
6921 (help-default-arg-highlight): New function.
6922 (help-do-arg-highlighting): Use it.
6924 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
6926 * calendar/appt.el (appt-disp-window):
6927 Use `calendar-set-mode-line' for a centered mode-line.
6929 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
6931 * calendar/appt.el (appt-disp-window): Do not split window
6932 excessively when `split-height-threshold' is low.
6934 2004-05-12 Nick Roberts <nickrob@gnu.org>
6936 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
6937 kill-buffer-hook here and make it local.
6938 (gud-kill-buffer-hook): Use kill-process for a sure kill.
6940 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
6942 * progmodes/compile.el (compilation-set-window-height):
6943 Use save-excursion to protect against misplaced marker.
6945 2004-05-12 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
6947 * custom.el (defface): Document that type can have value gtk.
6949 * faces.el (face-spec-set-match-display): Handle type gtk in display.
6951 2004-05-12 Kenichi Handa <handa@m17n.org>
6953 * descr-text.el: Require quail at comile time.
6954 (describe-char): If an input method is on and it supports the
6955 character, show how to input it.
6957 * international/quail.el (quail-install-decode-map): Accept a
6958 char-table whose subtype is `quail-decode-map'.
6959 (quail-store-decode-map-key, quail-gen-decode-map1)
6960 (quail-gen-decode-map, quail-find-key1, quail-find-key)
6961 (quail-show-key): New functions.
6963 2004-05-12 Juanma Barranquero <lektu@terra.es>
6965 * generic.el (define-generic-mode): Remove redundant arglist info.
6967 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
6968 Make arguments match their use in docstring.
6969 (help-arg-highlighting-function): New variable.
6970 (help-argument-name): Mention it in the docstring.
6971 (help-do-arg-highlight): Use it. Expand regexp to accept also
6972 ARG-xxx and xxx-ARG references.
6974 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
6976 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
6977 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
6978 and "mailto:addr1?to=addr2" equal.
6980 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
6982 * man.el (Man-getpage-in-background): Use shell-file-name
6983 and shell-command-switch variables instead of hard-coded values.
6985 2004-05-11 Eli Zaretskii <eliz@gnu.org>
6987 * iimage.el: New file.
6989 2004-05-11 Juanma Barranquero <lektu@terra.es>
6991 * custom.el (custom-initialize-default, defcustom):
6992 Fix typo in docstring.
6994 * files.el (set-visited-file-name, file-expand-wildcards):
6997 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
6999 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
7001 * subr.el (eventp): Be more discriminating with integers.
7003 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
7005 * progmodes/compile.el (compile): Add universal prefix arg.
7006 (compilation-error-regexp-alist-alist): Add edg patterns.
7008 2004-05-10 Sam Steingold <sds@gnu.org>
7010 * textmodes/ispell.el (ispell-message):
7011 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
7013 2004-05-10 Dave Love <fx@gnu.org>
7015 * progmodes/python.el (help-buffer): Autoload when compiling.
7016 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
7017 (run-python): Prepend to any existing PYTHONPATH.
7019 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
7021 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
7022 for pending breakpoints.
7024 2004-05-10 Richard M. Stallman <rms@gnu.org>
7026 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
7027 directly without calling any functions in Rmail.
7028 (unrmail-unprune): Function deleted.
7030 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
7032 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
7035 2004-05-10 Kenichi Handa <handa@m17n.org>
7037 * descr-text.el (describe-char): Fix previous change. Don't make
7038 a unibyte character to multibyte in the *Help* buffer.
7040 2004-05-10 Miles Bader <miles@gnu.org>
7042 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
7043 buffer an error if the debugger process is actually running.
7045 2004-05-10 Juanma Barranquero <lektu@terra.es>
7047 * help-fns.el (help-argument-name): Default to italic.
7048 (help-highlight-arguments): Return always (usage . doc), even when
7051 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
7052 (define-ibuffer-filter): Add usage info.
7053 (define-ibuffer-op): Add usage info (but CL-style defaults for
7054 keyword args are not shown).
7056 * subr.el (remove-overlays, read-passwd): Fix docstring.
7057 (start-process-shell-command): Fix docstring. Put usage info in a
7058 format usable by `describe-function'.
7059 (open-network-stream, open-network-stream-nowait)
7060 (open-network-stream-server): Fix docstring.
7062 2004-05-09 Jason Rumney <jasonr@gnu.org>
7064 * international/code-pages (cp932, cp936, cp949, c950): Remove.
7065 Only define cp125* if windows-125* is already defined.
7067 * language/korean.el (cp949): Add alias.
7069 * language/chinese.el (cp936, cp950): Add aliases.
7071 * language/japanese.el (cp932): Add alias.
7073 * term/w32-win.el: Require code-pages.
7075 * international/mule-cmds.el (set-locale-environment):
7076 On MS-Windows use ansi code-page for default coding-systems.
7077 Set up paper sizes for Windows 3 letter languages.
7079 * international/code-pages.el (cp932, cp936, cp949, cp950):
7080 Add aliases. Also add cp125* if not already defined.
7082 2004-05-09 Juanma Barranquero <lektu@terra.es>
7084 * help-fns.el (help-highlight-arguments): Don't try to highlight
7085 missing or autoloaded arglists. Accept structured arguments, like
7086 the first ones of `do' and `flet'.
7088 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
7089 (cvs-get-marked): Remove redundant arglist info.
7091 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
7092 Don't use CL-style default args.
7094 2004-05-08 Andreas Schwab <schwab@suse.de>
7096 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
7098 * international/subst-ksc.el: Fix references to utf-translate-cjk
7099 into utf-translate-cjk-mode.
7100 * international/subst-big5.el: Likewise.
7101 * international/subst-gb2312.el: Likewise.
7102 * international/subst-jis.el: Likewise.
7103 * international/utf-16.el: Likewise.
7104 * international/utf-8.el: Likewise.
7106 2004-05-08 John Wiegley <johnw@newartisans.com>
7108 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
7109 "virtual buffers" (off by default), which makes it possible to
7110 switch to the "virtual" buffers of recently visited files. When a
7111 buffer name search fails, and this option is on, iswitchb will
7112 look at the list of recently visited files, and permit matching
7113 against those names. When the user hits RET on a match, it will
7115 (iswitchb-read-buffer): Add two optional arguments, which makes
7116 isearchb.el possible.
7117 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
7118 (iswitchb-next-match): Add support for virtual buffers.
7120 * isearchb.el: This module extends iswitchb to provide "as you
7121 type" buffer selection.
7123 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
7124 Ignore the read-only property when flyspell highlighting is on.
7125 Not ignoring it leads to a series of confusing errors.
7126 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
7127 but also make sure to call flyspell-incorrect-hook.
7128 (flyspell-maybe-correct-transposition): Perform transposition test
7129 by bit twiddling a string, rather than using a temp buffer.
7130 (flyspell-maybe-correct-doubling): Use a string rather than a temp
7131 buffer. This is also the original version of the code, which
7132 could not be checked in before due to a previous lack of
7133 assignment papers. This version has seen heavy usage on my system
7134 for several years now.
7136 * calendar/cal-bahai.el: New file, which adds support for the
7137 Baha'i calendar to Emacs. This calendar is based on a solar year
7138 of 19 months of 19 days, with 4 intercalary days. Each year
7139 begins on March 21, with the calendar starting in 1844.
7141 * calendar/cal-menu.el, calendar/calendar.el,
7142 calendar/diary-lib.el, calendar/holidays.el: Added support for
7145 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
7146 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
7147 function can be used outside of eshell buffers.
7148 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
7150 2004-05-08 Juanma Barranquero <lektu@terra.es>
7152 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
7153 word constituent so FOO-ARG is not recognized as an arg.
7154 (help-highlight-arguments): Don't skip lists in mandatory arguments.
7156 * simple.el (next-error): Fix typo in docstring.
7157 (open-line): Make argument names match their use in docstring.
7158 (split-line): Fix docstring.
7160 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
7161 usable by `describe-function'.
7162 (gensym, gentemp, typep, ignore-errors): Make argument names match
7163 their use in docstring.
7165 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
7166 argument to `help-setup-xref'.
7168 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
7170 Version 2.0.40 of Tramp released.
7172 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
7173 Use symbol-function to invoke functions only known on some Emacs
7174 flavors. This avoids byte-compiler warnings. Reported by Kevin
7175 Scaldeferri <kevin@scaldeferri.com>.
7176 (tramp-do-copy-or-rename-file-via-buffer): Rename from
7177 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
7178 consistent with the other tramp-do-* functions.
7179 (tramp-do-copy-or-rename-file): Calls adjusted.
7180 (tramp-process-initial-commands): Avoid liveness check on shell --
7181 we know that it must be alive since we're opening a connection at
7183 (tramp-last-cmd): New internal variable.
7184 (tramp-process-echoes): New tunable.
7185 (tramp-send-command): Set tramp-last-cmd.
7186 (tramp-wait-for-output): Delete echo, if applicable.
7187 (tramp-read-passwd): Construct the key for the password cache in a
7188 way that works for multi methods, too.
7189 (tramp-bug): Add backup-directory-alist and
7190 bkup-backup-directory-info to bug reports, with Tramp counterparts.
7192 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
7194 * net/tramp*.el: Suppress byte-compiler warnings where possible.
7196 * net/tramp.el (tramp-out-of-band-prompt-regexp)
7197 (tramp-actions-copy-out-of-band): New defcustoms.
7198 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
7199 used instead of a synchronous one. Allows password entering.
7200 (tramp-action-out-of-band): New defun.
7201 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
7202 Remove restriction with password from doc string.
7203 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
7204 `tramp-out-of-band-prompt-regexp',
7205 `tramp-actions-copy-out-of-band', `password-cache' and
7206 `password-cache-expiry'.
7207 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
7209 (tramp-touch): FILE can be a local file, too.
7210 (TODO): Remove items done.
7211 (tramp-handle-insert-directory): Properly quote file name also if
7212 not full-directory-p. Handle wildcard case. Reported by Andreas
7213 Schwab <schwab@suse.de>.
7214 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
7216 (tramp-handle-file-local-copy, tramp-handle-write-region):
7217 The permissions of the temporary file are set if filename exists.
7218 Reported by Ted Stern <stern@cray.com>.
7219 (tramp-backup-directory-alist)
7220 (tramp-bkup-backup-directory-info): New defcustoms.
7221 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
7222 (tramp-handle-find-backup-file-name): New function.
7223 Implements Tramp's find-backup-file-name.
7225 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
7226 for `find-backup-file-name'.
7228 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
7229 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
7231 2004-05-07 Lars Hansen <larsh@math.ku.dk>
7233 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
7235 2004-05-07 Juanma Barranquero <lektu@terra.es>
7237 * subr.el (lambda): Add arglist description to docstring.
7238 (declare): Fix typo in docstring.
7239 (open-network-stream): Fix docstring.
7240 (process-kill-without-query): Fix docstring and add obsolescence info.
7241 (last, butlast, nbutlast): Make arguments match their use in docstring.
7242 (insert-buffer-substring-no-properties): Likewise.
7243 (insert-buffer-substring-as-yank): Likewise.
7244 (split-string): Fix docstring.
7246 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
7247 Make argument names match their use in docstring.
7249 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
7251 2004-05-06 Nick Roberts <nickrob@gnu.org>
7253 * progmodes/gdb-ui.el: Improve/extend documentation strings.
7254 Fit first sentence on one line for apropos-command.
7256 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7258 Changes largely merged in from Dave Love's code.
7259 * progmodes/python.el: Doc fixes.
7260 (python-mode-map): Add python-complete-symbol.
7261 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
7262 (python-comment-indent, python-complete-symbol)
7263 (python-symbol-completions, python-partial-symbol)
7264 (python-try-complete): New.
7265 (python-indent-line): Remove optional arg. Use python-block-end-p.
7266 (python-check): Bind compilation-error-regexp-alist.
7267 (inferior-python-mode): Use rx. Move keybindings to top level.
7268 Set comint-input-filter.
7269 (python-preoutput-filter): Use rx.
7270 (python-input-filter): Re-introduce.
7271 (python-proc): Start new process if necessary.
7272 Check python-buffer non-nil.
7273 (view-return-to-alist): Defvar.
7274 (python-send-receive): New.
7275 (python-eldoc-function): Use it.
7276 (python-mode-running): Don't defvar.
7277 (python-mode): Set comment-indent-function.
7278 Maybe update hippie-expand-try-functions-list.
7279 (python-indentation-levels): Initialize differently.
7280 (python-block-end-p): New.
7281 (python-indent-line): Use it.
7282 (python-compilation-regexp-alist): Augment.
7283 (run-python): Import `emacs' module to Python rather than loading
7284 code directly. Set python-buffer differently.
7285 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
7287 (python-send-command): Go to end of comint buffer.
7288 (python-load-file): Use python-proc, emacs.eimport.
7289 (python-describe-symbol): Simplify interactive form.
7290 Use emacs.help. Do use temp-buffer-show-hook.
7291 Call print-help-return-message.
7292 (hippie-exp): Require when compiling.
7293 (python-preoutput-continuation): Use rx.
7295 * diff-mode.el (diff-make-unified): Fix regexp.
7297 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
7299 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
7300 filter groups from the buffer when rebuilding the Ibuffer buffer
7301 and `ibuffer-show-empty-filter-groups' is nil.
7303 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7305 * ps-print.el (ps-print-quote): Call ps-value-string.
7306 (ps-setup): Call ps-comment-string.
7307 (ps-value-string, ps-comment-string): New funs.
7309 2004-05-06 Juanma Barranquero <lektu@terra.es>
7311 * ehelp.el (electric-help-command-loop): Check whether the last
7312 character is visible, not (point-max).
7314 * help-fns.el (help-argument-name): Default to bold; don't inherit
7315 from font-lock-variable-name-face.
7316 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
7318 2004-05-05 Kenichi Handa <handa@m17n.org>
7320 * descr-text.el (describe-char): Copy the character with text
7321 properties and overlays into the first line, and call
7322 describe-text-properties on it.
7324 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
7326 * iswitchb.el (iswitchb-global-map): Fix typo.
7327 Remove unwanted ###autoloads from source file.
7329 2004-05-05 Lars Hansen <larsh@math.ku.dk>
7331 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
7332 in run-hooks. Use substitute-command-keys in message.
7333 (wdired-abort-changes): Add message.
7335 2004-05-03 Michael Mauger <mmaug@yahoo.com>
7337 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
7338 (sql-emacs20-p): Remove.
7339 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
7340 (sql-builtin-face, sql-doc-face): Remove.
7341 (sql-mode-ansi-font-lock-keywords)
7342 (sql-mode-oracle-font-lock-keywords)
7343 (sql-mode-postgres-font-lock-keywords)
7344 (sql-mode-linter-font-lock-keywords)
7345 (sql-mode-ms-font-lock-keywords)
7346 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
7347 (sql-product-font-lock): Fix font-lock reset when font rules change.
7348 (sql-highlight-product): Remove incorrect font-lock reset logic.
7350 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
7352 * ses.el (ses-set-parameter): Fix typo.
7354 2004-05-04 Kim F. Storm <storm@cua.dk>
7356 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
7357 Must expand directory for completion to work; and don't mess with
7358 process-environment.
7359 (ido-read-file-name): If command has ido property, don't use ido
7360 if value is ignore, or read as directory if value is dir.
7361 Set ido ignore property for dired-do-rename command.
7363 2004-05-04 Juanma Barranquero <lektu@terra.es>
7365 * ehelp.el (electric-help-command-loop, electric-help-undefined)
7366 (electric-help-help): Check against unmapped commands.
7368 * help-fns.el (help-argument-name): New face, inheriting from
7369 font-lock-variable-name-face, to highlight function arguments in
7370 `describe-function' and `describe-key'.
7371 (help-do-arg-highlight): Auxiliary function to highlight a given
7372 list of arguments in a string.
7373 (help-highlight-arguments): Highlight the function arguments and
7374 all uses of them in the docstring.
7375 (describe-function-1): Use it. Do docstring output via `insert',
7376 not 'princ', so text attributes are preserved.
7378 * winner.el (winner-mode-map): Move `winner-undo' and
7379 `winner-redo' to C-c <left> and C-c <right>, respectively (the
7380 previous bindings conflict with `prev-buffer', `next-buffer').
7382 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7384 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
7385 (bibtex-entry-update): New command bound to C-c C-u.
7386 (bibtex-text-in-string): Fix regexp.
7387 (bibtex-assoc-of-regexp): Remove.
7388 (bibtex-progress-message): Fix docstring.
7389 (bibtex-inside-field): Use if.
7390 (bibtex-assoc-regexp): New function.
7391 (bibtex-format-entry): Make code more robust so that it formats
7393 (bibtex-autokey-demangle-title): Merge with obsolete function
7394 bibtex-assoc-of-regexp.
7395 (bibtex-field-list): New function.
7396 (bibtex-entry): Use bibtex-field-list.
7397 (bibtex-parse-entry): Fix docstring.
7398 (bibtex-print-help-message): Use bibtex-field-list.
7399 (bibtex-make-field): Use bibtex-field-list.
7400 (bibtex-entry-index): Bugfix. Return crossref key if required.
7401 (bibtex-lessp): Fix docstring.
7403 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
7405 * select.el (xselect-convert-to-string): Move comment to intended line.
7407 2004-05-03 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
7409 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
7410 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
7412 2004-05-03 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
7414 * term/x-win.el (x-clipboard-yank): Don't exit on error from
7417 2004-05-03 Jason Rumney <jasonr@gnu.org>
7419 * makefile.nt: Remove.
7421 2004-05-03 Kim F. Storm <storm@cua.dk>
7423 * emulation/cua-base.el (cua--update-indications): Fix last change.
7424 (cua-mode): Deactivate mark when cua-mode is enabled.
7426 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
7428 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
7430 2004-05-03 Nick Roberts <nickrob@gnu.org>
7432 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
7433 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
7434 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
7435 window over visible frames.
7436 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
7438 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
7440 * progmodes/compile.el (compilation-gcpro): New var.
7441 (compilation-fake-loc): Use it.
7442 (compilation-forget-errors): Reset it.
7444 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
7446 * diff-mode.el (diff-header-face, diff-file-header-face):
7449 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7451 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
7452 (bibtex-clean-entry): Disentangle code.
7453 (bibtex-realign): New function.
7454 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
7455 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
7456 Remove undocumented optional arg called-by-convert-alien.
7457 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
7458 for sorting instead of bibtex-sort-buffer.
7460 2004-05-02 Eli Zaretskii <eliz@gnu.org>
7462 * progmodes/compile.el (compilation-start): In the
7463 no-async-subprocesses branch, call sit-for to give redisplay a
7464 chance to show the updated process status in the mode line, and
7465 fontify the buffer explicitly after the process exits.
7467 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
7469 * progmodes/python.el (python-compilation-line-number): Remove.
7470 (python-compilation-regexp-alist): Don't use it any more.
7471 (python-orig-start, python-input-filter): Remove.
7472 (inferior-python-mode): Don't set up comint-input-filter-functions.
7473 (python-send-region): Use compilation-fake-loc.
7475 * progmodes/compile.el (compilation-messages-start): New var.
7476 (compilation-mode): Don't setup next-error-function here.
7477 (compilation-setup): Set it up here instead (for minor modes as well).
7478 Make compilation-messages-start buffer local.
7479 (compilation-next-error-function): Use it.
7480 (compilation-forget-errors): Set compilation-messages-start.
7482 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
7484 * ielm.el (ielm-prompt-read-only): Update docstring.
7486 * comint.el (comint-prompt-read-only): Update docstring.
7487 (comint-update-fence, comint-kill-whole-line)
7488 (comint-kill-region): New functions.
7490 * simple.el (kill-whole-line): Use "p" instead of "P" in
7493 2004-05-01 Juanma Barranquero <lektu@terra.es>
7495 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
7496 format arglist so default values in CL-style argument lists are
7499 2004-05-01 Jason Rumney <jasonr@gnu.org>
7501 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
7503 2004-05-01 Kenichi Handa <handa@m17n.org>
7505 * international/titdic-cnv.el (miscdic-convert): Don't generate a
7506 quail file if it is up to date.
7508 2004-04-30 Juri Linkov <juri@jurta.org>
7510 * cus-edit.el (custom-mode-map):
7511 Add key binding `C-x C-s' to `Custom-save'.
7513 * outline.el (outline-blank-line): New var.
7514 (outline-next-preface, outline-show-heading)
7515 (outline-end-of-subtree): Use it.
7517 * dired-aux.el (dired-touch-initial): New fun.
7518 (dired-do-chxxx): Call it for op-symbol `touch'.
7519 (dired-diff): Use `dired-dwim-target-directory'
7520 if current dired buffer has no buffer mark.
7522 * bindings.el (propertized-buffer-identification):
7523 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
7524 Add C-M-arrow keys for consistency.
7526 * files.el (confirm-kill-emacs):
7527 Change group from top-level `emacs' to `convenience'.
7529 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
7530 Push mark on the first call of successive command calls.
7531 (insert-pair): New fun created from `insert-parentheses' with
7532 `open' and `close' arguments added. Enclose active regions
7533 in paired characters. Compare adjacent characters syntax with
7534 inserted characters syntax before inserting a space.
7535 (insert-parentheses): Call `insert-pair' with ?\( ?\).
7537 * delsel.el: Don't put `delete-selection' property
7538 on `insert-parentheses' symbol to take advantage of
7539 region handling in `insert-pair' function.
7540 Suggested by Stephan Stahl <stahl@eos.franken.de>.
7542 2004-04-30 Kim F. Storm <storm@cua.dk>
7544 * emulation/cua-base.el: Add support for changing cursor types;
7545 based on patch from Michael Mauger.
7546 (cua-normal-cursor-color, cua-read-only-cursor-color)
7547 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
7548 Customization cursor type and/or cursor color.
7549 (cua--update-indications): Handle cursor type changes.
7550 (cua-mode): Update cursor indications if enabled.
7552 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
7554 * mouse.el (mouse-drag-copy-region): New defcustom.
7555 (mouse-set-region, mouse-drag-region-1): Use it.
7557 * simple.el (kill-ring-save): If region face background color is
7558 unspecified (if no highlighting), show extent of fully visible
7559 region even if transient-mark-mode is enabled.
7561 * emulation/cua-base.el (cua--standard-movement-commands):
7562 Add cua-scroll-up and cua-scroll-down.
7563 (cua-scroll-up, cua-scroll-down): New commands.
7564 (cua--init-keymaps): Remap scroll-up and scroll-down.
7566 * emulation/cua-rect.el (cua--convert-rectangle-as):
7568 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
7569 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
7570 New commands (suggested by Jordan Breeding).
7572 2004-04-30 Juanma Barranquero <lektu@terra.es>
7574 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
7576 2004-04-30 Mario Lang <mlang@delysid.org>
7578 * diff.el (diff-switches): Fix typo in docstring.
7580 2004-04-30 Alex Schroeder <alex@gnu.org>
7582 * xml.el (xml-debug-print-internal): Don't add newline and
7583 indentation to text nodes and write empty elements as empty tags
7584 instead of opening and closing tags.
7585 (xml-debug-print): Take optional indent-string argument.
7586 (xml-print): Alias for xml-debug-print.
7588 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
7590 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
7591 than duplicate call to `line-beginning-position'.
7593 * progmodes/f90.el (f90-get-present-comment-type):
7594 Return whitespace, as well as comment chars, for consistent filling
7595 of comment blocks. Use `match-string-no-properties'.
7596 (f90-break-line): Trim trailing whitespace when filling comments.
7598 2004-04-30 Dave Love <fx@gnu.org>
7600 * calendar/diary-lib.el (diary-outlook-formats): New variable.
7601 (diary-from-outlook-internal, diary-from-outlook)
7602 (diary-from-outlook-gnus, diary-from-outlook-rmail):
7603 New functions to import diary entries from Outlook-format
7604 appointments in mail messages.
7606 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7608 * progmodes/python.el (python-send-command): New fun.
7609 (python-send-region, python-load-file): Use it.
7611 * progmodes/compile.el (compilation-last-buffer): Add var alias.
7613 * help-fns.el (help-C-file-name): Use new subr-name.
7614 Prepend `src/' to the file name.
7615 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
7616 (describe-function-1, describe-variable): Only find a C source file
7617 name if DOC is already loaded.
7619 * help-mode.el (help-function-def, help-variable-def):
7620 Use the new find-function-search-for-symbol functionality.
7621 Allow FILE to be `C-source'.
7623 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
7624 (find-function-C-source): New fun.
7625 (find-function-search-for-symbol): Use it.
7627 2004-03-29 Michael Mauger <mmaug@yahoo.com>
7629 * progmodes/sql.el (sql-product-alist): Rename variable
7630 `sql-product-support'. Add Postgres login parameters.
7631 (sql-set-product, sql-product-feature): Update with renamed variable.
7632 (sql-connect-postgres): Add username prompt.
7633 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
7634 Make patterns less product specific.
7635 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
7636 (sql-mode-abbrev-table): Modify initialization.
7637 (sql-builtin-face): Add variable.
7638 (sql-keywords-re): Add macro.
7639 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
7640 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
7641 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
7642 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
7643 (sql-mode-linter-font-lock-keywords)
7644 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
7645 (sql-mode-sybase-font-lock-keywords)
7646 (sql-mode-informix-font-lock-keywords)
7647 (sql-mode-interbase-font-lock-keywords)
7648 (sql-mode-ingres-font-lock-keywords)
7649 (sql-mode-solid-font-lock-keywords)
7650 (sql-mode-sqlite-font-lock-keywords)
7651 (sql-mode-db2-font-lock-keywords): Default to nil.
7652 (sql-product-font-lock): Always highlight ANSI keywords.
7653 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
7654 (sql-send-string): Add function.
7656 2004-04-29 Dave Love <fx@gnu.org>
7658 * progmodes/cfengine.el (cfengine-beginning-of-defun)
7659 (cfengine-end-of-defun): Ensure progress through buffer.
7661 * info-look.el (cfengine-mode): Accept a terminal ().
7663 2004-04-29 Juri Linkov <juri@jurta.org>
7665 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
7666 instead of isearch-yank-word-or-char. Add new key bindings for
7667 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
7668 (isearch-del-char): New fun.
7669 (isearch-forward, isearch-edit-string): Update docstring.
7670 (isearch-yank-char): Doc fix.
7671 (isearch-other-meta-char): Restore point after scrolling.
7673 * progmodes/compile.el (compilation-context-lines): Add nil option
7674 to disable compilation output window scrolling.
7675 (compilation-set-window): Use it.
7677 * outline.el (outline-next-preface, outline-show-heading):
7678 Don't leave unhidden blank line before heading.
7679 (outline-end-of-subtree): Include last newline into subtree.
7680 (hide-entry): Leave point at beginning of heading instead of end.
7681 (outline-up-heading): Push mark for the first call of successive
7684 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
7686 * comint.el (comint-prompt-read-only): New variable.
7687 (comint-output-filter): Implement it.
7689 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
7690 (ielm-prompt-internal): New variable.
7691 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
7692 (ielm-send-input): Delete unused variable `buf'.
7693 (ielm-eval-input): Use `ielm-prompt-internal'.
7694 (inferior-emacs-lisp-mode): Use new variables
7695 `comint-prompt-read-only' and `ielm-prompt-internal'.
7696 Get rid of obsolete variable `directory-sep-char'.
7697 (ielm): Use `zerop'.
7699 2004-04-29 John Paul Wallington <jpw@gnu.org>
7701 * thumbs.el (toplevel): Require cl at compile time.
7702 Remove conditional definitions of `ignore-errors' and `caddar'
7703 because they occur at run time.
7705 2004-04-28 Nick Roberts <nickrob@gnu.org>
7707 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
7708 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
7709 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
7710 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
7712 * progmodes/gud.el (gud-common-init): Throw an error if program is
7713 already running under gdb.
7715 2004-04-28 John Paul Wallington <jpw@gnu.org>
7717 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
7718 (thumbs-show-image-num): Move assignment of
7719 `thumbs-current-image-filename' within scope of `i'.
7720 (thumbs-emboss-image): Don't use `evenp'.
7722 2004-04-28 Richard M. Stallman <rms@gnu.org>
7724 * progmodes/compile.el (compilation-context-lines): Default now 0.
7726 2004-04-28 Juanma Barranquero <lektu@terra.es>
7728 Use `time-less-p' from calendar/time-date.el instead of defining
7729 custom versions of it.
7731 * pcomplete.el (pcomplete-time-less-p): Remove.
7733 * thumbs.el (time-less-p): Remove.
7735 * calendar/timeclock.el (timeclock-time-less-p): Remove.
7736 (timeclock-generate-report): Use `time-less-p'.
7738 * emacs-lisp/autoload.el (autoload-before-p): Remove.
7739 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
7741 2004-04-28 Masatake YAMATO <jet@gyve.org>
7743 * subr.el (remove-overlays): Make arguments optional.
7745 * wid-edit.el (widget-specify-button): Put evaporate to the
7747 (widget-specify-sample): Put evaporate to the overlay for sample.
7748 (widget-specify-doc): Put evaporate to the overlay for documentation.
7750 2004-04-27 Jesper Harder <harder@ifa.au.dk>
7752 * info.el (info-apropos): Make it an index node. Align node names
7755 2004-04-27 Eli Zaretskii <eliz@gnu.org>
7757 * net/browse-url.el (browse-url-netscape-sentinel)
7758 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
7759 (browse-url-epiphany-sentinel, browse-url-mosaic):
7760 Use browse-url-*-program instead of a literal program name.
7762 2004-04-27 Kevin Ryde <user42@zip.com.au>
7764 * eshell/em-alias.el:
7765 * eshell/em-dirs.el:
7766 * eshell/em-hist.el:
7767 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
7768 features when M-x customize-group loads modules before the main
7771 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
7773 * subr.el (momentary-string-display): Support EXIT-CHAR that is
7774 either a character representation of an event or an event
7777 * type-break.el: Capitalise Emacs and Lisp.
7778 (type-break-good-break-interval, type-break-demo-boring-stats)
7779 (type-break-terse-messages, type-break-file-name): New defcustoms.
7780 (type-break-post-command-hook)
7781 (type-break-warning-countdown-string): Quote variable names in doc.
7782 (type-break-interval-start, type-break-auto-save-file-name): New vars.
7783 (type-break-mode): Document type-break-good-break-interval and the
7784 "session" file. Schedule break according to the session file.
7785 Kill session file buffer on exit. Organise for save-some-buffers
7786 to always save the session file.
7787 (type-break-mode-line-message-mode, type-break-query-mode):
7788 Uppercase arguments.
7789 (type-break-file-time, type-break-file-keystroke-count, timep)
7790 (type-break-choose-file, type-break-get-previous-time)
7791 (type-break-get-previous-count): New defuns.
7792 (type-break): Avoid break querying after a completed break in the
7793 case where the query was initiated during user invocation of the
7794 break. Optional terse messages.
7795 Use type-break-good-break-interval if type-break-good-rest-interval is
7796 nil. File the break time.
7797 (type-break-schedule): New optional args for overriding the use of
7799 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
7801 (type-break-check): File the keystroke count.
7802 (type-break-do-query): Prevent a second query when the break is
7803 interrupted. Optional terse message.
7804 (type-break-keystroke-reset): Record the start of a typing interval.
7805 (type-break-demo-boring): Optional terse messages. Display word
7806 per minute and keystroke counts according to
7807 type-break-demo-boring-stats.
7809 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
7811 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
7812 directories, make sure they exist under archive-tmpdir.
7814 2004-04-27 Juri Linkov <juri@jurta.org>
7816 * help.el (view-emacs-news): With argument, display info for the
7817 selected version by finding it among different NEWS files, and
7818 narrowing the buffer to the selected version.
7820 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
7821 same-window-buffer-names.
7822 (info): New arg `buffer'. Use it. Doc fix. Read file name for
7823 non-numeric prefix argument, append the number to the buffer name
7824 for numeric prefix argument.
7825 (info-other-window): Bind same-window-regexps to nil.
7826 (Info-reference-name): Rename to Info-point-loc.
7827 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
7828 and Info-find-index-name for stringy Info-point-loc.
7829 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
7830 without middle `.', but with final `.' and optional line number
7831 for it. Set Info-point-loc for index nodes.
7832 (Info-index): Remove middle `.' from index entry regexp.
7833 Modify line number regexp.
7834 (Info-index-next): Decrement line number.
7835 (info-apropos): Remove middle `.' from index entry regexp.
7836 Add optional line number regexp at the end. Add matched value
7837 for line number to the result list and insert it to the buffer.
7838 Replace match-string by match-string-no-properties.
7839 Reorder result list.
7840 (Info-fontify-node): Hide index line numbers.
7841 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
7843 (Info-follow-reference): Use `str' instead of
7844 Info-following-node-name-re.
7845 (Info-toc): Use full file names. Set Info-current-node to "Top".
7846 (Info-fontify-node): Compare file names without directory name.
7847 (Info-try-follow-nearest-node): Don't set Info-reference-name.
7848 Set second arg of Info-extract-menu-node-name for index nodes.
7849 (info-xref-visited): Use magenta3 instead of magenta4.
7850 (Info-mode): Add info-apropos to docstring.
7852 * log-view.el (log-view-diff): Replace interactive code "r"
7853 by a list to allow to call it even if region is not active.
7855 * paren.el (show-paren-highlight-openparen): New var.
7856 (show-paren-function): Turn on openparen highlighting when
7857 matching forward if show-paren-highlight-openparen is non-nil.
7859 * simple.el (kill-ring-save): Use blink-matching-delay instead of
7860 the constant value 1.
7861 (completions-common-part): Expand docstring.
7863 * textmodes/picture.el (picture-mode-map): Add arrow keys.
7865 2004-04-27 Kim F. Storm <storm@cua.dk>
7867 * image.el (insert-sliced-image): Use line-height instead of
7868 line-spacing property on newline.
7870 2004-04-26 Lars Hansen <larsh@math.ku.dk>
7872 * desktop.el (desktop-buffer-misc-data-function): Rename to
7873 desktop-save-buffer and change docstring.
7874 (desktop-buffer-modes-to-save): Delete.
7875 (desktop-save-buffer-p): Use desktop-save-buffer instead of
7876 desktop-buffer-modes-to-save.
7877 (desktop-save): Rename desktop-buffer-misc-data-function to
7878 desktop-save-buffer and allow non-function value.
7879 (desktop-missing-file-warning): Correct docstring.
7881 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
7882 to desktop-save-buffer.
7884 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
7885 desktop-save-buffer.
7887 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
7889 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
7891 2004-04-26 Eli Zaretskii <eliz@gnu.org>
7893 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
7895 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
7897 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
7898 (ielm): Only go to the end of the buffer when starting a new process.
7900 2004-04-25 Juanma Barranquero <lektu@terra.es>
7902 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
7903 mode line. Bind `inhibit-read-only' to t before modifying
7904 properties of text in the buffer.
7905 (ielm): Force point to the end of buffer, even when running ielm
7908 2004-04-25 Jesper Harder <harder@ifa.au.dk>
7910 * info.el (info-apropos): Reset Info-complete-cache.
7912 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
7914 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7915 Also recognize severe Irix et al. messages.
7916 (compilation-normalize-filename, compile-abbreviate-directory):
7918 (compilation-get-file-structure): New function inherits
7919 functionality of the two preceding ones.
7920 (compilation-internal-error-properties, compilation-fake-loc):
7921 Use it so that different paths to the same file share the same
7922 markers. Also optimize finding adjacent marker slightly.
7924 2004-04-25 Kim F. Storm <storm@cua.dk>
7926 * image.el (insert-sliced-image): Add line-spacing t property
7927 to newlines separating image lines.
7929 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
7931 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
7933 * ielm.el (ielm-prompt-read-only): New user option.
7934 (ielm-prompt): Expand docstring to describe new behavior.
7935 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
7936 mention it in the docstring.
7938 2004-04-24 Andreas Schwab <schwab@suse.de>
7940 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
7942 * diff.el (diff): Set default-directory in diff buffer.
7944 2004-04-24 Eli Zaretskii <eliz@gnu.org>
7946 * mail/sendmail.el (mail-bury): Don't delete the frame where the
7947 mail was being composed if the terminal cannot display more than
7948 one frame; instead, switch to previous frame.
7950 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
7951 (rmail-start-mail): Support rmail-mail-new-frame even on
7952 terminals that can display only one frame at a time.
7954 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7956 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
7957 (checkdoc-output-font-lock-keywords): Remove error regexp.
7958 (checkdoc-output-mode-map): Remove.
7959 (checkdoc-output-mode): Derive from compilation-mode.
7960 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
7962 * dired.el (dired-mode-map): Add a menu entry for wdired.
7964 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
7965 (rx-bracket, rx-check-any, rx-any): Clean up name space.
7967 * wdired.el: (wdired-mode-map): Move init into declaration.
7968 Fix `return' binding.
7969 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
7970 Use force-mode-line-update.
7971 (wdired-get-filename): Use `unless'.
7972 (wdired-preprocess-files): Don't assume names have no \n and use / for
7974 (wdired-normalize-filename): Use replace-regexp-in-string.
7975 (wdired-load-hooks): Remove.
7976 (wdired-mode-hooks): Rename to wdired-mode-hook.
7978 * info-look.el: Add support for cfengine-mode.
7979 (info-lookup-setup-mode): Use dolist.
7981 2004-04-23 Juan Le
\e,As
\e(Bn Lahoz Garc
\e,Am
\e(Ba <juan-leon.lahoz@tecsidel.es>
7983 * wdired.el: New file.
7985 2004-04-23 Juanma Barranquero <lektu@terra.es>
7987 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
7989 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
7990 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
7991 (pcomplete--help, pcomplete--here): Doc fixes.
7993 2004-04-23 Andre Spiegel <spiegel@gnu.org>
7995 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
7996 handles wrong-number-of-arguments in backend call.
7998 * vc.el (vc-print-log): Likewise.
8000 2004-04-20 Dave Love <fx@gnu.org>
8002 * emacs-lisp/rx.el: Doc fixes.
8003 (rx-constituents): Add/extend many forms.
8004 (rx-check): Check form is a list.
8006 (rx-check-any, rx-any, rx-check-not): Modify.
8008 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
8009 (rx-kleene): Use rx-trans-forms.
8010 (rx-quote-for-set): Delete.
8011 (rx): Allow multiple args.
8013 2004-04-23 Kenichi Handa <handa@m17n.org>
8015 * international/mule-util.el (char-displayable-p): Simplify by
8016 using internal-char-font.
8018 2004-04-23 Juanma Barranquero <lektu@terra.es>
8020 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
8022 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8024 * diff-mode.el (diff-next-error): New fun.
8025 (diff-mode): Use it.
8027 * simple.el (next-error): Change arg name.
8028 Add support for the documented C-u C-x ` usage.
8030 * frame.el (special-display-popup-frame, next-multiframe-window)
8031 (previous-multiframe-window): Only consider frames on same display.
8033 2004-04-22 Lars Hansen <larsh@math.ku.dk>
8035 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
8036 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
8038 2004-04-22 Kim F. Storm <storm@cua.dk>
8040 * net/telnet.el (telnet): Add optional port arg.
8042 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
8044 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8045 Minor sanity check on the `hyperlink' slot.
8047 * Makefile.in (recompile): Compile new files.
8049 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
8050 Add byte-recompile-directory's optional `arg'.
8052 * cvs-status.el (cvs-tree-use-charset): New var.
8053 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
8054 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
8055 (cvs-status-cvstrees): Use it.
8057 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
8058 Make it a normal major mode.
8059 (checkdoc-buffer-label): Make sure the file name is meaningful.
8060 (checkdoc-output-to-error-buffer): Remove.
8061 (checkdoc-error, checkdoc-start-section): Rewrite.
8063 * info.el (info-node, info-menu-5, info-xref, info-header-node)
8064 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8065 (Info-title-4-face): Use new syntax.
8066 (info-xref-visited): Inherit from info-xref.
8068 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
8070 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
8072 * simple.el (next-error-last-buffer, next-error-function):
8073 New variables for the next-error framework.
8074 (next-error-buffer-p): New function.
8075 (next-error-find-buffer): Generalize compilation-find-buffer.
8076 (next-error, previous-error, first-error, next-error-no-select)
8077 (previous-error-no-select): Move from compile.el.
8079 * replace.el (occur-next-error, occur-1): Hook into the next-error
8082 * progmodes/compile.el (compilation-start):
8083 Set next-error-last-buffer so next-error knows where to jump.
8084 (compilation-setup): Set the buffer-local variable
8085 next-error-function to 'compilation-next-error-function.
8086 (compilation-buffer-p, compilation-buffer-internal-p): Use an
8087 alternate way to find if a buffer is a compilation buffer, for
8088 next-error convenience.
8089 (next-error-no-select, previous-error-no-select, next-error)
8090 (previous-error, first-error): Move to simple.el.
8091 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
8092 (compilation-last-buffer): Remove.
8093 (compilation-start, compilation-next-error, compilation-setup)
8094 (compilation-next-error-function, compilation-find-buffer):
8095 Remove compilation-last-buffer use.
8097 2004-04-21 Juanma Barranquero <lektu@terra.es>
8099 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
8100 (font-lock-warning-face): Fix spacing.
8102 * makefile.w32-in (WINS): Add url/ directory.
8104 2004-04-21 Lars Hansen <larsh@math.ku.dk>
8106 * desktop.el (desktop-buffer-mode-handlers): New variable.
8107 Alist of major mode specific functions to restore a desktop buffer.
8108 (desktop-buffer-handlers): Make variable obsolete.
8109 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
8110 Catch errors signaled in handlers. Update buffer count.
8111 Evaluate desktop-buffer-point.
8112 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
8114 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
8116 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
8117 move to mail/rmail.el.
8118 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
8120 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
8121 On fail, print message (to message buffer) even if
8122 desktop-missing-file-warning is nil.
8123 (desktop-buffer-misc-data-function): New buffer local variable.
8124 Function returning major mode specific data.
8125 (desktop-buffer-misc-functions): Make variable obsolete.
8126 (desktop-save): Use desktop-buffer-misc-data-function.
8127 (desktop-buffer-dired-misc-data): Rename to
8128 dired-desktop-buffer-misc-data and move to dired.el.
8129 (desktop-buffer-info-misc-data): Rename to
8130 Info-desktop-buffer-misc-data and move to info.el.
8131 (desktop-read): Add message about number of buffers restored/failed.
8133 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
8134 Add parameters. Pause to display error only when
8135 desktop-missing-file-warning is non-nil.
8136 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
8137 (dired-mode): Bind desktop-buffer-misc-data-function.
8139 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
8141 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
8142 (Info-mode): Bind desktop-buffer-misc-data-function.
8144 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
8147 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
8150 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
8152 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
8153 the case of letters in case-insensitive expansions when the
8154 abbrev is preceded by characters with letter syntax.
8156 2004-04-21 Richard M. Stallman <rms@gnu.org>
8158 * progmodes/cperl-mode.el (cperl-putback-char):
8159 Delete Emacs 18 definition.
8161 * international/mule.el (ctext-post-read-conversion):
8162 Use assoc-string, not assoc-ignore-case.
8164 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
8166 * emacs-lisp/easymenu.el (easy-menu-add):
8167 Do call x-popup-menu, but only if it's defined.
8169 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
8171 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
8172 Handle multiple args: compile like progn.
8174 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
8175 take all args as &rest arg.
8177 * autoinsert.el (auto-insert-alist): Insert the user's name in
8178 copyright notice, rather than Free Software Foundation.
8180 2004-04-21 Kenichi Handa <handa@m17n.org>
8182 * descr-text.el (describe-char): Make it work on *Help* buffer.
8184 2004-04-21 Kim F. Storm <storm@cua.dk>
8186 * image.el (insert-image): Add optional SLICE arg.
8187 (insert-sliced-image): New defun.
8189 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
8191 * subr.el (read-number): Check whether `default' is nil.
8193 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8195 * progmodes/compile.el (compilation-error-properties):
8197 (compilation-internal-error-properties): New one.
8198 (compilation-compat-error-properties): Use it. Fix the non-marker case.
8200 2004-04-20 Richard M. Stallman <rms@gnu.org>
8202 * window.el (split-window-save-restore-data):
8203 Don't update the data if OLD-INFO is nil.
8205 * view.el (view-return-to-alist): Mark it permanent local.
8207 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
8209 * recentf.el (recentf-save-list): Catch and warn about errors.
8211 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
8212 so "Buffers" won't be pure.
8214 * help-mode.el (help-mode-finish): Set help-return-alist first
8215 thing, setting only the entry for the selected window.
8217 * help-fns.el (describe-function-1): If many non-control non-meta
8218 keys run the command, don't list all of them.
8220 2004-04-20 Juanma Barranquero <lektu@terra.es>
8222 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
8223 arg. Copied from Andre Spiegel's patch of 2004-03-21.
8225 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
8227 2004-04-20 Kenichi Handa <handa@m17n.org>
8229 * international/quail.el (quail-lookup-key): New optional arg
8231 (quail-get-translations): Call quail-lookup-key with
8232 NOT-RESET-INDICES t.
8233 (quail-completion): Likewise.
8234 (quail-lookup-map-and-concat): Likewise.
8236 2004-04-20 Kenichi Handa <handa@m17n.org>
8238 * international/quail.el (quail-update-translation): Don't insert
8239 such an unsupported multibyte char in a unibyte buffer.
8241 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
8243 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
8244 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
8245 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
8246 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
8247 (gdb-frame-assembler-buffer): Improve behaviour with
8249 (gdb-display-buffer): Extend search to all visible frames.
8251 2004-04-19 Eli Zaretskii <eliz@gnu.org>
8253 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
8254 characters left after base64 decoding.
8255 (rmail-decode-region): Use -dos variety of `coding', to remove any
8256 ^M characters left after qp or base64 decoding.
8258 2004-04-19 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
8260 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
8263 2004-04-19 Stephen Eglen <stephen@gnu.org>
8265 * add-log.el (add-change-log-entry): Update doc string to mention
8266 add-log-full-name and add-log-mailing-address.
8268 2004-04-18 Juri Linkov <juri@jurta.org>
8270 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
8271 (Info-find-node-2): Simplify error message.
8272 (Info-insert-dir): Use Info-following-node-name.
8273 (Info-goto-node): Remove *info-history* and *info-toc*.
8274 (Info-history): Create a node of the virtual history file.
8275 (Info-toc): Create a node of the virtual toc file.
8276 (Info-insert-toc): New arg `curr-file' for reference file names.
8277 (info-apropos): Remove redundant var binding for temp-file.
8278 (Info-index, Info-index-next, Info-mode): Doc fix.
8279 (Info-goto-emacs-command-node): Don't jump to *info* from
8280 non-*info* Info buffers.
8281 (Info-fontify-node): Don't show the file name of external
8282 references if `Info-hide-note-references' is `hide'. Don't hide
8283 newlines at the end of paragraphs.
8285 * international/mule-diag.el (list-input-methods):
8286 Fix args to help-xref-button.
8288 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
8289 to put into effect local variables from TUTORIAL files.
8291 * textmodes/paragraphs.el (sentence-end) <function>: New fun
8292 with default value taken from the variable `sentence-end'.
8293 (sentence-end) <defcustom>: Set default to nil. Doc fix.
8294 Add nil const to :type.
8295 (sentence-end-without-period, sentence-end-double-space)
8296 (sentence-end-without-space): Doc fix.
8298 * textmodes/paragraphs.el (forward-sentence):
8299 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
8300 (fill-delete-newlines):
8301 * progmodes/cc-cmds.el (c-beginning-of-statement):
8302 Use function `sentence-end' instead of variable `sentence-end'.
8304 2004-04-18 Andreas Schwab <schwab@suse.de>
8306 * progmodes/compile.el (compilation-start): Set window start to
8307 point-min if compilation-scroll-output is nil.
8309 2004-04-18 John Wiegley <johnw@newartisans.com>
8311 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
8313 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
8315 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
8316 (gdb-info-breakpoints-custom): Revert previous change.
8317 (gdb-view-assembler): Update assembler if necessary.
8318 (gdb-frame-handler): Parse correctly for gdb-current-frame.
8319 (gdb-display-source-buffer): Update properly when both source and
8320 assembler are visible.
8322 2004-04-17 John Wiegley <johnw@newartisans.com>
8324 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
8325 which limits the number of names shown in the minibuffer. Off by
8327 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
8328 up iswitchb for users with a multitude of open buffers by showing
8329 only the first and last N/2 buffers in the completion list (which
8330 is enough to aid C-s/C-r, and to know that more characters are
8331 needed to refine the completion list).
8333 2004-04-17 Richard M. Stallman <rms@gnu.org>
8335 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
8336 (file-truename): Expand all ~ constructs directly.
8337 (insert-directory): Delete any error msg output by the
8338 `insert-directory-program'.
8340 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
8341 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
8342 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
8343 (allout-init): Use find-file-hook, not find-file-hooks.
8344 (allout-mode): Eliminate Emacs 18 support.
8345 Use write-contents-functions, not local-write-file-hooks.
8347 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
8349 * progmodes/compile.el (compilation-error-properties): Fix for
8350 adding messages when there are already markers for their file.
8351 (compilation-fake-loc): New function.
8353 2004-04-16 Dave Love <fx@gnu.org>
8355 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
8356 (python-load-file): Fix python-orig-start setting.
8358 * progmodes/compile.el: Doc fixes.
8359 (compilation-error-regexp-alist-alist)
8360 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
8361 (compilation-assq): Wrap in eval-when-compile.
8362 (compilation-mode-font-lock-keywords): Don't use list*.
8363 (compilation-start): Avoid warning.
8364 (compilation-compat-error-properties)
8365 (compilation-directory-properties): Add keymap property.
8366 (compilation-parsing-end): Make it a marker for better compatibility.
8368 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
8370 2004-04-16 Mark A. Hershberger <mah@everybody.org>
8372 * xml.el: Doc fixes.
8373 (xml-get-children): Only looks at sub-tags and ignore strings.
8375 * xml.el (xml-parse-tag): Avoid overwriting node-name.
8377 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8379 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
8381 2004-04-16 Andre Spiegel <spiegel@gnu.org>
8383 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
8385 * vc.el (vc-print-log): Likewise.
8387 2004-04-16 Masatake YAMATO <jet@gyve.org>
8389 * simple.el (completion-setup-function): Set an initial value
8390 to `element-common-end' before entering loop. Set a value
8391 to `element-common-end' at the end of loop.
8392 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
8393 (completions-common-part): Rename from completion-de-emphasis.
8394 (completions-first-difference): Rename from completion-emphasis.
8397 2004-04-16 Juanma Barranquero <lektu@terra.es>
8399 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
8400 (bookmark-edit-annotation-mode): Add mode name.
8402 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8404 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
8405 for nested conflict markers.
8406 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
8408 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
8410 * progmodes/gdb-ui.el (gdb-goto-info): New function.
8412 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
8414 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8416 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
8417 Give a backtrace if requested.
8419 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
8421 * progmodes/python.el (python-mouse-2-command, python-RET-command):
8422 Remove unused functions.
8423 (python-orig-start-line, python-orig-file): Remove.
8424 (python-orig-start): New var.
8425 (python-input-filter, python-compilation-line-number)
8426 (python-send-region, python-load-file): Use it.
8428 * info.el (info): Always jump to *info*.
8430 * subr.el (posn-set-point): New function.
8432 * mouse.el (mouse-set-point): Use it.
8434 * progmodes/compile.el (compile-goto-error): Use it.
8435 (compilation-button-map): New keymap.
8436 (compilation-error-properties): Use it.
8437 (compilation-shell-minor-mode-map): Don't bind mouse-2.
8439 * smerge-mode.el (smerge-popup-context-menu): Use it.
8441 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
8442 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
8443 mouse and non-mouse case.
8445 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
8446 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
8448 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
8449 Make it work for non-mouse events.
8451 * pcvs-info.el (cvs-status-map): Update binding name.
8453 2004-04-14 Mark A. Hershberger <mah@everybody.org>
8455 * xml.el (xml-maybe-do-ns): New function to handle namespace
8456 parsing of both attribute and element names.
8457 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
8458 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
8459 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
8460 (xml-parse-attlist): Make it do its own namespace parsing.
8462 2004-04-14 Dave Love <fx@gnu.org>
8464 * progmodes/python.el (run-python): Fix use of \n.
8465 (python-load-file): Remove `try' from Python fragment.
8466 (python-describe-symbol): Fix message.
8468 * comint.el: Doc fixes.
8469 (comint-last-input-start, comint-last-input-end)
8470 (comint-last-output-start): Give them values.
8471 (comint-arguments): Avoid warning.
8472 (comint-skip-prompt): Use line-end-position.
8473 (comint-backward-matching-input): Rename arg to agree with doc.
8474 (comint-extract-string): Use syntax-ppss.
8475 (comint-dynamic-simple-complete): Delete useless list construction.
8476 (comint-redirect-subvert-readonly): New.
8477 (comint-redirect-preoutput-filter): Use it.
8479 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
8480 Correctly handle negative arguments when calling hook functions.
8482 2004-04-14 Jesper Harder <harder@ifa.au.dk>
8484 * info.el (info-apropos): Don't clobber Info-history-list.
8486 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
8488 * progmodes/compile.el (compilation-setup):
8489 Localize overlay-arrow-position.
8490 (compilation-sentinel): Restructure code equivalently.
8491 (compilation-next-error): Find message on same line after point if
8492 not found before point.
8493 (compile-mouse-goto-error): Restore function so that compilation
8494 buffer need not be current and use compile-goto-error.
8495 (compile-goto-error): Restore function.
8496 (next-error): Set overlay-arrow-position.
8497 (compilation-forget-errors): Don't localize already local
8498 compilation-locs and remove FIXME about refontifying.
8500 2004-04-14 Kim F. Storm <storm@cua.dk>
8502 * startup.el (emacs-quick-startup): New defvar (set by -Q).
8503 (command-line): New option -Q. Like -q --no-site-file, but
8504 in addition it also disables menu-bar, tool-bar, scroll-bars,
8505 tool-tips, and the blinking cursor.
8506 (command-line-1): Skip startup screen if -Q.
8507 (fancy-splash-head): Use ":align-to center" prop to center splash image.
8509 * emulation/cua-base.el (cua-read-only-cursor-color)
8510 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
8512 2004-04-13 Dave Love <fx@gnu.org>
8514 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
8515 (syntax): Don't require.
8516 (python) <defgroup>: Add :version.
8517 (python-quote-syntax): Re-written.
8518 (inferior-python-mode): Move stuff here from run-python and add
8520 (python-preoutput-continuation, python-preoutput-result)
8521 (python-dotty-syntax-table): New.
8522 (python-describe-symbol): Use them.
8523 (run-python): Move stuff to inferior-python-mode. Modify code
8525 (python-send-region): Use python-proc, python-send-string.
8526 (python-send-string): Send newlines too. Callers changed.
8527 (python-load-file): Re-written.
8528 (python-eldoc-function): New.
8529 (info-look): Don't require.
8530 (python-after-info-look): New. A modified version of former
8531 top-level code for use with eval-after-load.
8532 (python-maybe-jython, python-guess-indent): Use widened buffer.
8533 (python-fill-paragraph): Re-written.
8534 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
8535 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
8537 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8539 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
8540 Set compilation-error-regexp-alist earlier.
8542 * progmodes/compile.el (compilation-minor-mode-map)
8543 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
8544 (compile-goto-error): Re-merge the mouse and non-mouse commands.
8546 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8548 * progmodes/compile.el (compile-goto-error): Select the buffer/window
8549 corresponding to the event.
8551 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
8553 * loadup.el: Add cygwin to system-type list, for unexec() support.
8555 2004-04-12 John Paul Wallington <jpw@gnu.org>
8557 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
8558 (ibuffer-restore-window-config-on-quit): New variable to replace
8559 `ibuffer-delete-window-on-quit'. Update all references.
8560 (ibuffer-prev-window-config): New variable.
8561 (ibuffer-quit): Restore previous window configuration instead of
8563 (ibuffer): Save window configuration before showing Ibuffer buffer.
8565 * help.el (describe-mode): Doc fix.
8567 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8569 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
8570 not to treat nil as a function.
8572 * vc-arch.el (vc-arch-root): Be a bit more careful.
8573 (vc-arch-register): Save the buffer if we modified it.
8574 (vc-arch-delete-rej-if-obsolete): Save excursion.
8575 (vc-arch-find-file-hook): Use the simpler after-save-hook.
8576 (vc-arch-responsible-p, vc-arch-init-version): New functions.
8578 * net/ldap.el (ldap-search): Use list*.
8580 2004-04-12 Juri Linkov <juri@jurta.org>
8582 * info.el (Info-follow-reference): Allow multiline reference name.
8584 2004-04-11 Dave Love <fx@gnu.org>
8586 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
8588 * progmodes/python.el: New file.
8590 2004-04-11 Andre Spiegel <spiegel@gnu.org>
8592 * vc-hooks.el (vc-arg-list): Function removed.
8593 (vc-default-workfile-unchanged-p): Use condition-case to check for
8594 backward compatibility.
8596 * vc.el (vc-print-log): Use condition-case to check for backward
8599 2004-04-11 Juri Linkov <juri@jurta.org>
8601 * dired.el (dired-faces): New defgroup.
8602 (dired-header, dired-mark, dired-marked, dired-flagged)
8603 (dired-warning, dired-directory, dired-symlink, dired-ignored):
8605 (dired-header-face, dired-mark-face, dired-marked-face)
8606 (dired-flagged-face, dired-warning-face, dired-directory-face)
8607 (dired-symlink-face, dired-ignored-face): New face variables.
8608 (dired-font-lock-keywords): Use them instead of font-lock faces.
8609 Split the rule for dired marks into 3 separate rules: for marks,
8610 marked file names and flagged file names.
8612 * help-mode.el (help-make-xrefs): Add a final newline to the
8615 2004-04-11 John Paul Wallington <jpw@gnu.org>
8617 * replace.el (occur-engine): Distinguish between one and several
8618 matches in the matches per buffer heading.
8620 2004-04-11 Kim F. Storm <storm@cua.dk>
8622 * ido.el (ido-confirm-unique-completion): New defcustom.
8623 (ido-complete): Use it.
8624 (ido-write-file): Set it to t unconditionally.
8626 2004-04-10 Miles Bader <miles@gnu.org>
8628 RCS keyword removal (only non-comment changes are enumerated here):
8630 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
8631 (byte-compile-insert-header): Don't use `byte-compile-version'.
8632 * forms.el (forms-version): Variable removed.
8633 (forms-mode): Don't use `forms-version'.
8634 * recentf.el (recentf-version): Variable removed.
8635 * progmodes/delphi.el (delphi-version): Variable removed.
8636 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
8638 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
8640 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
8642 2004-04-09 Jesper Harder <harder@ifa.au.dk>
8644 * info.el (info-apropos): Improve menu item regexp.
8646 2004-04-09 Simon Josefsson <jas@extundo.com>
8648 * mail/smtpmail.el: Add comment, based on report by
8649 kdc@rcn.com (Kevin D. Clark).
8651 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8653 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8654 Redo one more thing that I didn't notice Daniel had undone.
8656 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
8658 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
8659 (gdb-goto-breakpoint, gdb-display-buffer)
8660 (gdb-display-source-buffer, gdb-view-source-function)
8661 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
8662 (gdb-source-info, gdb-frame-handler): Don't specify a window
8664 (gdb-info-breakpoints-custom): Remove superfluous update of
8666 (gdb-many-windows): Make settable outside gdb.
8668 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
8670 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
8671 Derive from fundamental-mode rather than text-mode.
8673 2004-04-08 Juri Linkov <juri@jurta.org>
8675 * info.el (Info-history): Doc fix.
8676 (Info-history-list): New var.
8677 (info-xref): Change magenta4 to blue, remove bold for dark and
8678 light backgrounds, change bold to underline for non-color classes.
8679 (info-xref-visited): New face.
8680 (Info-fontify-visited-nodes): New custom.
8681 (Info-hide-note-references): Add new value `hide'. Doc fix.
8682 (Info-reference-name): New var.
8683 (Info-selection-hook): New custom.
8684 (Info-edit-mode-hook): New var.
8685 (Info-find-file): New fun.
8686 (Info-find-node): Move part of code to Info-find-file.
8687 (Info-find-node-2): Add anchors to Info-history-list. Move point
8688 to the place with the reference name if name is defined.
8689 (Info-select-node): Add current node to Info-history-list.
8690 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
8691 (Info-search-whitespace-regexp): New custom.
8692 (Info-search-case-fold): New var.
8693 (Info-search): Add "case-sensitively" to the prompt.
8694 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
8695 (Info-search-case-sensitively, Info-search-next): New fun.
8696 (Info-up): Move point to the menu item of the current node.
8697 (Info-history): New fun. Add *info-history* to
8698 same-window-buffer-names.
8699 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
8700 (Info-insert-toc): New fun.
8701 (Info-build-toc): New fun.
8702 (Info-follow-reference): Add new arg `fork'. Doc fix.
8703 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
8704 with the same name prefer the reference closest to point.
8705 (Info-next-reference): Replace * by + in the *Note regexp.
8706 Add regexp for http:// and ftp://. Skip the *Note prefix.
8707 (Info-prev-reference): Replace * by + in the *Note regexp.
8708 Add regexp for http:// and ftp://. Skip the *Note prefix.
8709 (Info-follow-nearest-node): Add new arg `fork'.
8710 (Info-try-follow-nearest-node): Add new arg `fork'.
8711 Call browse-url for http:// and ftp:// references.
8712 Set Info-reference-name for index entries.
8713 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
8714 Info-search-next, Info-history, Info-toc, clone-buffer.
8715 (Info-menu-update): Replace * by + in the *Note regexp.
8716 (Info-mode): Add documentation for Info-history, Info-toc,
8717 Info-search-case-sensitively, Info-search-next, clone-buffer.
8718 (Info-fontify-menu-headers): Remove fun. Move code to
8720 (Info-fontify-node): Add docstring. Add local vars
8721 fontify-visited-p and not-fontified-p. If not-fontified-p is t
8722 then fontify header line, titles, menu headers, http and ftp
8723 references, refill paragraphs. If not-fontified-p is t or
8724 fontify-visited-p is t then fontify cross references, menu items.
8725 Fontify menu headers. Fontify http and ftp references.
8726 Change regexp for cross references to require whitespace after *Note,
8727 add matching groups for file and node names. Remove hack for quote.
8728 Use display property for Info-hide-note-references=t. Use fifth
8729 or fourth match for help-echo. Display visited nodes in a
8730 different face. Unhide file names of external references.
8731 Unhide newlines. Display visited menu items in a different face.
8733 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
8735 * progmodes/compile.el: Require CL.
8736 (compilation-mode-font-lock-keywords): Re-install the "line as
8739 * help-fns.el (help-C-source-directory): New var.
8740 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
8741 (describe-function-1, describe-variable): Use them.
8743 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
8744 to C source files specially.
8746 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
8748 * info.el (Info-hide-cookies-node): New function.
8749 (Info-select-node): Use it.
8750 (Info-display-images-node): Remove message with image file name.
8752 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
8754 * progmodes/compile.el (compilation-warning-face)
8755 (compilation-info-face, compilation-skip-threshold)
8756 (compilation-skip-visited, compilation-context-lines):
8757 Declare :version when added to Emacs.
8758 (compilation-error-regexp-alist-alist): Extend caml and irix.
8759 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
8760 (compilation-mode-font-lock-keywords): Temporarily undo line as
8761 function patch, which wasn't ready.
8763 2004-04-07 Kenichi Handa <handa@m17n.org>
8765 * international/latin1-disp.el (latin1-display-setup): Check each
8766 character is displayable or not instead of calling
8767 latin1-display-check-font.
8769 2004-04-06 Kenichi Handa <handa@m17n.org>
8771 * language/ethio-util.el (ethio-sera-being-called-by-w3):
8773 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
8774 instead of sera-being-called-by-w3.
8775 (ethio-fidel-to-sera-buffer): Likewise.
8776 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
8777 instead of sera-being-called-by-w3.
8778 (ethio-write-file): Likewise.
8780 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8782 * printing.el: Doc fix.
8784 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
8786 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
8787 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
8788 (gdb-setup-windows): Only use separate IO buffer if required.
8790 2004-04-06 Kim F. Storm <storm@cua.dk>
8792 * term.el (term-is-xemacs): Remove.
8793 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
8794 (term-window-width): New function.
8795 (term-mode, term-check-size): Use it.
8796 (term-mode): Disable overflow-newline-into-fringe in term buffer.
8798 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
8800 * cus-edit.el (custom-add-parent-links): Change unbound variable
8803 2004-04-05 Jesper Harder <harder@ifa.au.dk>
8804 * info.el (info-apropos): New function.
8805 (Info-mode-menu): Add it.
8806 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
8808 * help-mode.el (help-make-xrefs): Recognize aliased variable with
8809 inherited docstring.
8811 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
8813 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8815 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
8817 * progmodes/compile.el (font-lock): Don't require any more.
8818 (compilation-error-properties, compilation-start, compilation-sentinel)
8819 (compilation-filter, next-error): Use with-current-buffer.
8820 (compilation-skip-to-next-location, compilation-skip-threshold)
8821 (compilation-skip-visited): Move to silence the byte-compiler.
8822 (compilation-setup): Simplify.
8823 (compilation-next-error): Use line-(beginning|end)-position.
8824 Make sure `pt' is non-nil before using compilation-loop.
8825 (compile-goto-error): Add optional event arg. Use it.
8826 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
8827 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
8828 Update the binding for mouse-2.
8829 (first-error): Set compilation-current-error to nil rather than bob.
8830 (compilation-parsing-end, compilation-parse-errors-function)
8831 (compilation-error-list, compilation-old-error-list):
8832 "New" compatibility variables.
8833 (compile-buffer-substring, compilation-compat-error-properties)
8834 (compilation-compat-parse-errors, compilation-forget-errors):
8835 New compatibility functions.
8836 (compilation-mode-font-lock-keywords): Use them.
8838 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
8840 * autorevert.el (auto-revert-handler): If point (or a window
8841 point) is at the end of the buffer, keep it there after
8842 reverting. This allows to tail a file.
8843 Mention this in the `Commentary'.
8845 * format.el (format-write-file): Add optional argument CONFIRM
8846 and make it behave like the analogous argument to `write-file'.
8848 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8850 * progmodes/ebnf2ps.el: Doc fix.
8851 (ebnf-version): New version number (4.2).
8852 (ebnf-syntax): Customization and docstring fix.
8853 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
8854 Put autoloaded funs before first use.
8855 (ebnf-style-database): Add dtd entry.
8856 (ebnf-syntax-alist): Add dtd initialization.
8857 (ebnf-token-sequence): New fun.
8858 (ebnf-comment-table): Add new comment action character.
8859 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
8861 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
8862 Type Definition for XML).
8864 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
8865 * progmodes/ebnf-bnf.el (ebnf-sequence):
8866 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
8867 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
8868 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
8869 Code simplification: call ebnf-token-sequence.
8871 2004-04-04 Eli Zaretskii <eliz@gnu.org>
8873 * calendar/timeclock.el (timeclock-relative)
8874 (timeclock-get-project-function, timeclock-get-workday-function)
8875 (timeclock-query-out, timeclock-when-to-leave)
8876 (timeclock-when-to-leave-string, timeclock-log-data)
8877 (timeclock-generate-report, timeclock-in): Doc fixes.
8879 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
8881 * url/: New dir. Import the URL package from its repository.
8883 2004-04-03 Andreas Schwab <schwab@suse.de>
8885 * diff-mode.el (diff-mode): Fix missing quote.
8887 2004-04-03 Juri Linkov <juri@jurta.org>
8889 * descr-text.el (describe-property-list): Add `font-lock-face'.
8891 * dired.el (dired-font-lock-keywords): Fix permission regexps.
8893 2004-04-02 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
8895 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
8896 Use utf-16le on little endian machines and utf-16be otherwise.
8898 2004-04-02 David Kastrup <dak@gnu.org>
8900 * net/browse-url.el (browse-url-generic): Use call-process
8901 instead of start-process to allow browsers that fork and detach.
8903 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
8905 * compile.el (compilation-current-error): New var.
8906 (compilation-setup, compile-mouse-goto-error)
8907 (compile-goto-error, next-error): Use it.
8908 (compilation-skip-to-next-location): Default to t, which gives
8909 contiguous skipping like old compile (where this was redundant).
8910 (compilation-next-error): Prevent previous-* commands from moving
8911 back to message at or just before point.
8913 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
8915 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
8916 (gdb-source-info): Don't display source at startup, if required.
8917 (gdb-show-main): New option.
8918 (gdba): Update documentation.
8919 (gdb-source): Cover case of auto-display output.
8921 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
8923 * autorevert.el: Delete obsolete autoload's and defvar's.
8924 (auto-revert-check-vc-info): New user option.
8925 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
8926 (auto-revert-handler-vc): Delete.
8927 (auto-revert-handler): Treat return value `fast' of
8928 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
8930 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
8933 * files.el (buffer-stale-function): Doc change.
8935 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8937 * printing.el: New tip on Tips section.
8938 (pr-version): New version number (6.7.4).
8939 (pr-shell-file-name): Initialization fix.
8941 2004-03-31 Juri Linkov <juri@jurta.org>
8943 * dired.el: Add autoload for `dired-do-touch'.
8944 (dired-touch-program): New var.
8945 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
8946 (dired-no-confirm): Add `touch' to docstring.
8948 * dired-aux.el (dired-do-touch): New fun.
8949 (dired-do-chxxx): Add argument -t for touch operation.
8951 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
8952 `dired-move-to-filename-regexp'.
8954 2004-03-31 H
\e,Ae
\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
8956 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
8958 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8960 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
8961 and only if the buffer was modified.
8963 2004-03-30 Kenichi Handa <handa@m17n.org>
8965 * international/characters.el: Delete pairs for U+2308..U+230B.
8967 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
8969 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
8970 to detect the beginning of a level 2 or 3 annotation.
8972 2004-03-29 Kenichi Handa <handa@m17n.org>
8974 * international/ucs-tables.el (ucs-insert): Fix the error message.
8976 2004-03-29 Kenichi Handa <handa@m17n.org>
8978 * international/mule-util.el (char-displayable-p): Fix generation
8981 * Makefile.in (setwins, setwins_almost): Change directory to $wd
8982 before finding directories by `find'.
8984 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8986 * subr.el (interactive-form): Delete. Now implemented in C.
8988 * pcvs.el (cvs-parse-process): Workaround for Darwin.
8990 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
8991 (vc-diff-label): New fun.
8992 (vc-diff-internal): Use it.
8994 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
8996 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8998 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
9000 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
9001 specify XML (EBNFX).
9003 * progmodes/ebnf2ps.el: Doc fix.
9004 (ebnf-version): New version number (4.1).
9005 (ebnf-syntax): Adjust customization.
9006 (ebnf-style-database): Add ebnfx entry.
9007 (ebnf-syntax-alist): Add ebnfx initialization.
9008 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
9010 * printing.el: Doc fix.
9011 (pr-version): New version number (6.7.3).
9012 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
9013 returns nil for mouse position. Reported by Drew Adams
9014 <drew.adams@oracle.com>.
9015 (pr-update-menus): Modify interactive declaration. Reported by Drew
9016 Adams <drew.adams@oracle.com>.
9018 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
9020 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
9021 (gud-gdba-marker-filter): Log the process input and output, if
9022 required. From Stefan Monnier.
9023 (gdb-debug-log, gdb-enable-debug-log): New variables.
9024 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
9026 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9028 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
9029 From lorentey@elte.hu (L
\e$,1 q
\e(Brentey K
\e,Aa
\e(Broly).
9031 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
9033 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
9034 Call vc-find-file-hook here instead of in auto-revert-buffers.
9035 (auto-revert-buffers): Delete call to vc-find-file-hook.
9036 (auto-revert-verbose, global-auto-revert-non-file-buffers)
9037 (global-auto-revert-mode, auto-revert-set-timer)
9038 (auto-revert-handler, auto-revert-buffers): Doc fixes.
9040 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
9042 * woman.el (woman-change-fonts): Rename local variable
9043 woman-font-alist to font-alist to avoid a compiler warning.
9045 2004-03-27 Dave Love <fx@gnu.org>
9047 * emacs-lisp/rx.el (rx): Doc fix.
9048 Fix copyright years.
9050 * strokes.el (strokes-global-set-stroke-string): New function.
9051 (strokes-list-strokes): Cope with strings, not just commands.
9052 Set foreground colour of image.
9053 (strokes-global-set-stroke): Doc fix.
9055 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
9057 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
9059 (Buffer-menu-files-only): New variable.
9060 (Buffer-menu-toggle-files-only): New function.
9061 (Buffer-menu-mode-map): Bind it to `T'.
9062 (Buffer-menu-mode): Mention `T' in docstring.
9063 Set buffer-stale-function.
9064 (list-buffers-noselect): Mark buffer non-modified and set
9065 Buffer-menu-files-only.
9067 * dired.el (buffer-stale-function): Remove no longer needed defvar.
9069 * autorevert.el (auto-revert-handler): Print revert message
9070 before, rather than after, reverting.
9071 (buffer-stale-function): Move to files.el.
9073 * files.el (buffer-stale-function): Move here from autorevert.el.
9075 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9077 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
9079 * calc/calc.el (calc-mode-map): Use mapc.
9081 * apropos.el (apropos-mode): Don't autoload.
9082 (apropos-symbols-internal): New fun. Extracted from `apropos'.
9084 (apropos-print): Add optional `text' argument.
9085 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
9086 Don't assume point-min == 1.
9088 * bs.el (bs-buffer-list): Use buffer-local-value.
9089 (bs--set-toggle-to-show): Use with-current-buffer.
9091 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
9093 (list-buffers-noselect): Use them. Adjust :align-to to new style.
9095 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
9097 * dabbrev.el (dabbrev-expand): Fix regexp construction.
9098 (dabbrev--find-expansion): Use pop.
9099 (dabbrev--search): Use match-string-no-properties.
9101 * dired.el (dired-mode): Use run-mode-hooks.
9102 (dired-move-to-end-of-filename): Use match-string.
9104 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
9105 is bound before using it.
9106 (ediff-verbose-p): Make it into a var since it's not constant.
9108 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
9110 * faces.el (read-face-font): Don't cons up unnecessarily.
9111 (header-line, tool-bar): Share common parts.
9113 * files.el (file-relative-name): Use compare-strings.
9115 * finder.el (finder-mode): Follow coding convention.
9117 * subr.el (read-number): New function.
9119 * ses.el (ses-read-number): Move to subr.el.
9120 (ses-set-header-row): Use read-number.
9122 2004-03-26 Andre Spiegel <spiegel@gnu.org>
9124 * vc-hooks.el (vc-arg-list): New function, which handles both
9125 compiled and uncompiled code.
9126 (vc-default-workfile-unchanged-p): Use it.
9128 * vc.el (vc-print-log): Undo prev change, use new function
9129 vc-arg-list from vc-hooks.el.
9131 2004-03-26 Masatake YAMATO <jet@gyve.org>
9133 * simple.el (completion-setup-function): Emphasize the
9134 first uncommon characters in the completions; and de-emphasize
9135 the common prefix substrings.
9136 (completion-emphasis): New face.
9137 (completion-de-emphasis): New face.
9139 2004-03-25 Juanma Barranquero <lektu@terra.es>
9141 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
9142 Comment out (it's unused and unfinished code).
9144 2004-03-25 Sam Steingold <sds@gnu.org>
9146 * vc.el (vc-print-log): Fix a bug in the last patch:
9147 backend-function may be a byte-compiled object, not a lambda.
9149 2004-03-25 Juri Linkov <juri@jurta.org>
9151 * descr-text.el (describe-property-list): Add a button
9152 for `face' property that calls `describe-face'.
9153 Suggested by luis fernandes <elf@ee.ryerson.ca>
9155 * international/mule.el (keyboard-coding-system):
9156 * kmacro.el (kmacro-call-macro): Fix docstring.
9158 * dired.el: Fix comments.
9160 * textmodes/fill.el (fill): Fix Info link.
9162 * font-lock.el (fast-lock, lazy-lock):
9163 * jit-lock.el (jit-lock): Remove links to removed Support Modes
9166 * eshell/eshell.el (eshell): Fix broken info-link.
9168 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
9169 * eshell/em-banner.el (eshell-banner):
9170 * eshell/em-smart.el (eshell-smart):
9171 * eshell/esh-cmd.el (eshell-cmd):
9172 Comment out broken info-links to incomplete Info manual.
9174 * info-xref.el: Fix commentary.
9176 2004-03-25 Kevin Ryde <user42@zip.com.au>
9178 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
9179 Remove spurious node duplicate suppression, doesn't work, not wanted.
9180 (info-xref-output): Take format style args, add "sit-for 0" to let
9181 user see the results as they progress.
9182 (info-xref-check-all-custom): New function.
9184 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
9186 * gdb-ui.el: Moved to progmodes.
9188 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
9190 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
9192 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
9194 * calendar/appt.el (appt-check): Remove superfluous progn.
9195 When finished with diary buffer: if it was not being displayed
9196 before, kill it; otherwise restore its original state.
9197 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
9199 * calendar/calendar.el (calendar-set-mode-line): Use total
9200 available mode-line width, rather than frame-width.
9202 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
9203 after mode change so effect not lost.
9205 2004-03-23 Dave Love <fx@gnu.org>
9207 * dired.el (dired) <defgroup>: Add link to manual.
9208 (dired-font-lock-keywords): Add highlighting on unusual permissions.
9209 (dired-revert): Use dolist.
9210 (dired-mode-map): Add U binding.
9211 (dired-mode): Add font-lock-beginning-of-syntax-function.
9212 (dired-garbage-files-regexp): Make it a defcustom.
9214 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9216 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
9217 is equivalent to nil.
9218 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
9219 (vc-arch-mode-line-string): Accept `added' state.
9220 (vc-arch-state): Use inode-sigs if available.
9221 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
9222 Copy&delete existing id file if any. Fallback if uuidgen is absent.
9223 (vc-arch-tagline-re): New var.
9224 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
9226 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
9227 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
9229 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
9230 (vc-file-not-found-hook): Use it.
9232 * diff-mode.el (diff-default-read-only): Change default.
9233 (diff-mode-hook): Make it a defcustom. Add some options.
9234 (diff-mode-map): Bind diff-refine-hook.
9235 (diff-yank-handler): New var.
9236 (diff-yank-function): New fun.
9237 (diff-font-lock-keywords): Use them.
9238 (diff-end-of-file): Handle case where file-header looks like diff text.
9239 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
9240 (diff-file-kill): Delete a subsequent empty line, if applicable.
9241 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
9242 (diff-find-file-name): Use it.
9243 (diff-tell-file-name): New command.
9244 (diff-mode): Be careful with view-mode.
9245 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
9246 New functions, for use in diff-mode-hook.
9247 (diff-find-source-location): Catch "regex too large" errors.
9248 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
9249 (diff-refine-hunk): New command.
9251 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
9252 (smerge-context-menu-map): Remove unused var.
9253 (smerge-keep-all): Preserve markers.
9254 (smerge-keep-n): New fun.
9255 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
9256 (smerge-keep-current, smerge-ediff): Use it.
9257 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
9258 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
9259 (smerge-resolve): Resolve trivial 3-part conflicts.
9261 2004-03-23 Juri Linkov <juri@jurta.org>
9263 * man.el (Man-width): New var.
9264 (Man-getpage-in-background): Use it.
9265 (Man-support-local-filenames): New var and fun.
9266 (Man-build-man-command): Don't add a second %s.
9267 (Man-fontify-manpage): Clean up message.
9268 (Man-mode): Set outline-regexp, outline-level,
9269 imenu-generic-expression.
9271 * woman.el (woman-fill-frame): Doc fix.
9272 (woman-decode-region): Use window-width instead of frame-width.
9274 * abbrevlist.el (list-one-abbrev-table):
9275 * descr-text.el (describe-char):
9276 * international/mule-diag.el (describe-current-coding-system):
9277 * international/quail.el (quail-insert-decode-map):
9278 Use window-width instead of frame-width.
9280 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
9281 (jka-compr-mode-alist-additions): Add tbz.
9282 (jka-compr-write-region, jka-compr-insert-file-contents):
9283 Add message for undefined compress-program.
9284 (jka-compr-write-region): Remove redundant var bindings.
9286 * dired-x.el (dired-guess-shell-alist-default): Add choices for
9287 extracting files into subdirectory. Add tbz and dz. Fix regexps.
9288 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
9289 (dired-man): Use dired-guess-shell-command.
9290 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
9291 Change default nil to t.
9293 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
9294 (dired-compare-directories): Add default value for empty input.
9296 * help-at-pt.el: Move suggestions for key bindings to Commentary.
9298 * time.el (display-time-string-forms): Fix help-echo date format.
9300 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
9302 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
9303 (buffer-stale-function): New variable.
9304 (auto-revert-list-diff, auto-revert-dired-file-list)
9305 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
9306 (auto-revert-handler): Take over some functionality of deleted
9308 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
9310 * dired.el (dired-directory-changed-p): New fun, extracted from
9311 dired-internal-noselect.
9312 (dired-buffer-stale-p): New fun.
9313 (dired-internal-noselect): Use dired-directory-changed-p.
9314 Eliminate revert messages.
9315 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
9317 2004-03-23 Kenichi Handa <handa@m17n.org>
9319 * international/characters.el: Setup syntaxes for more parentheses
9322 * international/mule-cmds.el (select-safe-coding-system):
9323 Merge coding-system and auto-cs before comparing them.
9325 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
9327 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
9329 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
9330 normal-auto-fill-function and comment-indent-function.
9331 The default values now work just as well.
9332 Don't set font-lock-beginning-of-syntax-function since we already set
9333 syntax-begin-function.
9334 (lisp-outline-level): Put ;;;###autoload at same level as (.
9335 (prin1-char): Quote special chars.
9337 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
9338 than with-no-warnings.
9340 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
9341 if the source location can't be found.
9342 (edebug-compute-previous-result): Use prin1-char.
9344 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
9345 (debug-ignored-errors): Add an entry.
9347 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
9348 (byte-compile-file): Output warning when deleting a file.
9350 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
9351 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
9353 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
9354 (byte-compile-inline-expand): Use backquote.
9355 (byte-optimize-pure-func): Rename from byte-optimize-concat.
9356 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
9358 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
9360 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
9362 2004-03-22 Juri Linkov <juri@jurta.org>
9364 * finder.el (finder-known-keywords): Fix data, tex, unix.
9366 * play/landmark.el: Fix keywords.
9368 * language/ethio-util.el (ethio-find-file): Doc fix.
9370 * emacs-lisp/warnings.el: Doc fix.
9372 * textmodes/ispell.el (ispell-help): Doc fix.
9374 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
9376 * format.el (format-insert-file): Always return a list of two
9377 elements, like insert-file-contents does.
9379 2004-03-21 Andre Spiegel <spiegel@gnu.org>
9381 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
9382 and vc-BACKEND-diff.
9383 (vc-print-log): If the print-log implementation supports it, use
9384 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
9385 (vc-version-diff, vc-diff-internal): Doc fixes.
9387 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
9388 implementation supports it, let diff output go to *vc*,
9389 not *vc-diff*, since this is an internal call.
9391 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
9393 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
9395 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
9397 2004-03-21 Dave Love <fx@gnu.org>
9399 * progmodes/cfengine.el (cfengine-mode):
9400 Set parse-sexp-ignore-comments.
9402 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
9404 2004-03-21 Juanma Barranquero <lektu@terra.es>
9406 * allout.el (allout-mode): Fix docstring.
9408 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
9410 * files.el (insert-directory): Fix bug if SWITCHES is a list.
9412 * autorevert.el (auto-revert-interval): Make new value take
9413 effect immediately when set through Custom.
9414 (auto-revert-set-timer): Add interactive declaration.
9416 2004-03-19 David Ponce <david@dponce.com>
9418 * ruler-mode.el (ruler-mode-header-line-format-old):
9419 Don't `make-variable-buffer-local'.
9420 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
9421 (ruler-mode-header-line-format): Simply funcall the above.
9422 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
9423 to save/restore a previous header line format.
9424 (ruler-mode-space): Don't depend on a numeric WIDTH value.
9425 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
9426 fringes and margins width.
9427 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
9429 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9431 * log-edit.el (log-edit-font-lock-keywords): Typo.
9433 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
9434 (tex-send-tex-command): Rather than here.
9435 (tex-compilation-parse-errors): Simplify.
9437 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
9439 * time.el (display-time-string-forms): Add help-echo with date on time.
9441 * composite.el (compose-region): Use restore-buffer-modified-p.
9443 * disp-table.el (standard-display-8bit): Simplify.
9445 * server.el (server-process-filter): Delete temp frame.
9447 * add-log.el (add-change-log-entry): Simplify.
9449 2004-03-19 Kim F. Storm <storm@cua.dk>
9451 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
9452 (hexl-follow-line): Don't require 'fringe.
9454 * progmodes/compile.el (compilation-start): Always set
9455 compilation-last-buffer and return it.
9457 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
9459 * simple.el (clone-buffer): Doc fix.
9461 2004-03-18 Juanma Barranquero <lektu@terra.es>
9463 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
9465 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9467 * log-edit.el (log-edit-font-lock-keywords): New var.
9468 (log-edit-mode): Use it.
9470 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
9472 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
9473 properly for watching in speedbar.
9475 2004-03-17 Masatake YAMATO <jet@gyve.org>
9477 * smerge-mode.el (smerge-popup-context-menu):
9478 Put `unwind-protect' around `overlay-put' and `popup-menu'.
9480 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9482 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
9483 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
9484 Take sealed revisions into account.
9485 (vc-arch-checkin): Extract a summary line from the message.
9487 2004-03-16 Masatake YAMATO <jet@gyve.org>
9489 * register.el (register): Provide `register' feature.
9491 2004-03-15 Masatake YAMATO <jet@gyve.org>
9493 Added context menu support in smerge mode.
9494 Most of the part is written by Stefan Monnier.
9496 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
9497 New keymap and menu.
9498 (smerge-text-properties): New function.
9499 (smerge-remove-props): New function.
9500 (smerge-popup-context-menu): New function.
9501 (smerge-resolve): Call `smerge-remove-props'.
9502 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
9503 (smerge-keep-current): Ditto.
9504 (smerge-kill-current): New function.
9505 (smerge-match-conflict): Put text properties.
9506 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
9508 2004-03-15 David Ponce <david@dponce.com>
9510 * ruler-mode.el: (ruler-mode-left-fringe-cols)
9511 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
9512 (ruler-mode-right-scroll-bar-cols): Remove.
9513 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
9514 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
9515 Use fringe-columns and scroll-bar-columns.
9517 2004-03-15 Masatake YAMATO <jet@gyve.org>
9519 * hl-line.el (hl-line-range-function): New variable.
9520 (hl-line-move): New function.
9521 (global-hl-line-highlight): Use `hl-line-move'.
9522 (hl-line-highlight): Ditto.
9524 * scroll-bar.el (scroll-bar-columns):
9525 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
9527 * ruler-mode.el (top-level): Require scroll-bar and fringe.
9528 (ruler-mode-left-fringe-cols)
9529 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
9530 (ruler-mode-right-scroll-bar-cols)
9531 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
9532 (ruler-mode-ruler-function): New variable.
9533 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
9534 if the value for `ruler-mode-ruler-function'is given.
9536 * hexl.el (hexl-mode-hook): Make the hook customizable.
9537 (hexl-address-area, hexl-ascii-area): New customize variables.
9538 (hexlify-buffer): Put font-lock-faces on the address area and
9540 (hexl-activate-ruler): New function.
9541 (hexl-follow-line): New function.
9542 (hexl-highlight-line-range): New function.
9543 (hexl-mode-ruler): New function.
9545 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
9547 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
9548 (vc-default-find-file-hook): New fun.
9549 (vc-find-file-hook): Call new find-file-hook operation.
9551 * vc-arch.el: New file.
9553 2004-03-12 Jesper Harder <harder@ifa.au.dk>
9555 * info-look.el (info-lookup): Reuse an existing Info window.
9557 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
9559 * woman.el (woman-preserve-ascii): Default value changed to t and
9562 2004-03-12 Richard M. Stallman <rms@gnu.org>
9564 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
9567 * replace.el (occur-engine): Change message for count of matches.
9569 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
9570 For strings, do compare text properties.
9572 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
9574 * progmodes/compile.el (compile-auto-highlight)
9575 (compilation-error-list, compilation-old-error-list)
9576 (compilation-parse-errors-function, compilation-parsing-end)
9577 (compilation-error-message, compilation-directory-stack)
9578 (compilation-enter-directory-regexp-alist)
9579 (compilation-leave-directory-regexp-alist)
9580 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
9581 (compilation-current-file, compilation-regexps): Remove vars.
9583 (compile-error-at-point, compilation-error-filedata)
9584 (compilation-error-filedata-file-name, compile-reinitialize-errors)
9585 (compilation-next-error-locus, compilation-forget-errors)
9586 (count-regexp-groupings, compilation-parse-errors)
9587 (compile-collect-regexps, compile-buffer-substring): Remove funs.
9589 (compile-internal): Make obsolete.
9591 (compilation-first-column, compilation-error)
9592 (compilation-directory-matcher, compilation-page-delimiter)
9593 (compilation-mode-font-lock-keywords, compilation-debug)
9594 (compilation-error-face, compilation-warning-face)
9595 (compilation-info-face, compilation-line-face)
9596 (compilation-column-face, compilation-enter-directory-face)
9597 (compilation-leave-directory-face, compilation-skip-threshold)
9598 (compilation-skip-visited, compilation-context-lines): New vars.
9600 (compilation-warning-face, compilation-info-face)
9601 (compilation-message-face): New faces.
9603 (compilation-error-regexp-alist-alist): New constant.
9605 (compilation-face, compilation-directory-properties)
9606 (compilation-assq, compilation-error-properties, compilation-start)
9607 (define-compilation-mode, compilation-loop)
9608 (compilation-set-window): New functions.
9610 (compile): Additional argument for interactive compiles like TeX.
9612 * progmodes/grep.el (kill-grep): Move here from compile.el
9613 (grep-error, grep-hit-face, grep-error-face)
9614 (grep-mode-font-lock-keywords): New variables.
9615 (grep-regexp-alist): Simplify regexp and add `binary' case.
9616 (grep-mode): New mode.
9617 (grep-process-setup): Simplify.
9619 2004-03-11 Jason Rumney <jasonr@gnu.org>
9621 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
9622 letters on DOS/Windows.
9624 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
9626 * server.el (server-name): New var.
9627 (server-socket-dir): New var to replace server-socket-name.
9628 (server-start): Use them.
9630 2004-03-11 Simon Josefsson <jas@extundo.com>
9632 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
9633 died to avoid infloop. Reported by Jonathan Glauner
9634 <jglauner@sbum.org>.
9636 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
9638 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
9639 (smerge-mode-menu): Use it to deactivate menu entries.
9640 (smerge-keep-current): New fun.
9641 (smerge-keep-current): Use it.
9643 2004-03-10 John Paul Wallington <jpw@gnu.org>
9645 * foldout.el (foldout-fold-list, foldout-modeline-string):
9646 Declare them as variables, not constants.
9648 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9650 * ps-print.el: Modification to print *Messages* buffer.
9651 (ps-print-version): New version 6.6.4.
9652 (ps-message-log-max): New fun.
9653 (ps-spool-without-faces, ps-spool-with-faces)
9654 (ps-count-lines-preprint): Code fix.
9656 * printing.el: New tips in Tips section.
9658 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9660 * delim-col.el: Doc fix.
9662 * printing.el: Doc fix. New doc section (Tips).
9664 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
9666 * type-break.el (type-break-emacs-variant): Remove.
9667 (type-break-run-at-time, type-break-cancel-function-timers):
9668 Use fboundp rather than version name and number.
9670 2004-03-09 Masatake YAMATO <jet@gyve.org>
9672 * hexl.el (hexl-mode): Use `make-local-variable' instead of
9673 `make-variable-buffer-local'.
9675 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
9677 * find-dired.el (find-dired): Call `shell-command' instead of
9678 `start-process-shell-command'. By this, Tramp takes over
9679 handling of remote directories.
9681 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
9683 * newcomment.el (comment-use-global-state): New var.
9684 (comment-search-forward): Use it.
9686 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
9688 * cus-edit.el (fill) <defgroup>: Move to fill.el.
9690 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
9691 (enable-kinsoku): Make it a defcustom.
9692 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
9693 paragraph to same-comment-start-marker.
9695 2004-03-07 Dave Love <fx@gnu.org>
9697 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
9698 (browse-url-mail): Use it.
9700 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
9701 (rfc2368-unhexify-string): Use replace-regexp-in-string.
9703 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
9705 * woman.el (woman-man.conf-path): Doc fix.
9706 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
9708 2004-03-07 Eli Zaretskii <eliz@gnu.org>
9710 * sort.el (sort-columns): Remove ms-dos from the list of systems
9711 where the external `sort' command is not used.
9713 2004-03-07 Kim F. Storm <storm@cua.dk>
9715 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
9716 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
9717 from overlay-arrow-variable-list.
9718 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
9720 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
9722 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
9723 overlay arrow string properly for the assembler buffer.
9725 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
9727 * mail/sendmail.el (mail-mode): Fix last change.
9729 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
9731 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
9732 for the assembler buffer.
9733 (gdb-assembler-custom): Position the overlay arrow.
9734 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
9736 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
9738 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
9740 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
9741 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
9743 * mail/sendmail.el (mail-mode): Set comment-start-skip.
9745 * newcomment.el (uncomment-region): Allow non-terminated comment.
9746 (comment-normalize-vars): Check the user-specified comstart marker.
9748 2004-03-04 Jesper Harder <harder@ifa.au.dk>
9750 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
9751 Otherwise, do use it if the region only contains font-lock text
9754 2004-03-04 Masatake YAMATO <jet@gyve.org>
9756 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
9757 as the callback function for eldoc.
9758 (hexl-print-current-point-info): New function.
9759 (hexl-current-address): Print the address in both decimal
9760 and hexadecimal format.
9762 2004-03-04 Richard M. Stallman <rms@gnu.org>
9764 * mail/rmail.el (rmail-convert-to-babyl-format):
9765 Specify t for UNIBYTE when calling mail-unquote-printable-region.
9767 * mail/mail-utils.el (mail-unquote-printable-region):
9770 * startup.el (command-switch-alist): Doc fix.
9772 * simple.el (undo): Temporarily set this-command to `undo-start',
9773 then set it to `undo' once undo-start returns without error.
9775 * simple.el (minibuffer-history-sexp-flag): Doc fix.
9777 * simple.el (kill-line): Don't disregard trailing whitespace
9778 in eol condition, if show-trailing-whitespace is set.
9780 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
9781 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
9782 When disabling, restore old values only if mouse-sel-has-been-enabled.
9784 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
9785 (isearch-{-char): New function.
9786 (isearch-mode-map): Bind { to isearch-{-char.
9788 * font-lock.el (lisp-font-lock-keywords-2):
9789 Turn off the CL with-... and do-... general patterns.
9790 Instead, recognize several specific with... and do... constructs.
9792 * files.el (switch-to-buffer-other-window):
9793 Bind same-window-buffer-names and same-window-regexps to nil.
9794 (switch-to-buffer-other-frame): Likewise.
9796 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
9798 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
9799 recognizing leading comment on code line.
9801 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
9803 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
9804 hidden files/directories.
9806 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
9808 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
9809 only comment-start (in case the mode hasn't set it).
9811 * Makefile.in (AUTOGENEL): New var.
9812 (bootstrap-prepare): Rename from bootstrap-clean.
9813 Don't remove elc files.
9814 (maintainer-clean): New target.
9816 * xml.el (xml-get-attribute-or-nil): Simplify.
9818 2004-03-02 Juri Linkov <juri@jurta.org>
9820 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
9821 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
9822 URL to prevent their substitution with the environment variable
9825 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9827 * ps-print.el: Doc fix.
9828 (ps-print-version): New version number (6.6.3).
9829 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
9831 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
9833 (ps-time-stamp-yyyy-mm-dd): New fun.
9834 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
9836 2004-03-02 Kim F. Storm <storm@cua.dk>
9838 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
9840 2004-03-01 Juanma Barranquero <lektu@terra.es>
9842 * allout.el (allout-rebullet-heading): Fix typo in docstring.
9844 * desktop.el (desktop-file-version)
9845 (desktop-after-read-hook): Fix typos.
9846 (desktop-clear-preserve-buffers): Remove redundant info in
9847 docstring already shown by the obsolescence message.
9848 (desktop-truncate, desktop-internal-v2s)
9849 (desktop-value-to-string): Change argument name to match docstring.
9851 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
9853 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
9856 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9858 * printing.el: Replace "As Is..." in PostScript file print/preview by
9859 "No Preprocessing...". Suggested by Colin Marquardt
9860 <_marquardt_@zmd.de>.
9861 (pr-insert-section-4): Adjust buffer interface.
9863 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
9865 Version 2.0.39 of Tramp released.
9867 * net/tramp.el (tramp-handle-file-local-copy)
9868 (tramp-handle-write-region, tramp-open-connection-rsh):
9869 Variable name typo. Small change. From Patrick Tullmann
9870 <tullmann@flux.utah.edu>.
9871 (tramp-process-connection-type): New variable.
9872 (tramp-maybe-open-connection): Use it.
9873 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
9874 (tramp-touch): Set last-modified time of a remote file.
9875 (tramp-handle-write-region): Say which function is used when encoding.
9877 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
9879 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
9880 case of non-existing filename, too. Reported by Christoph Bauer
9881 <c_bauer@informatik.uni-kl.de>.
9882 (tramp-smb-get-file-entries): The directory in question should
9883 have permissions "drwxrwxrwx". Just virtual, because we don't
9884 know the real permissions. Don't we know?
9885 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
9886 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
9887 (tramp-smb-wait-for-output): Optimize algorithm getting pending
9888 output. If it was received chunkwise, there have been problems.
9889 Remove the "prompt not found" error message; it is obvious.
9891 (tramp-smb-process-running): Remove. Since we acknowledge the
9892 virtual prompt for shares, there's no need for distinction of
9893 reading shares (process ends afterwards) and interactive mode of
9895 (tramp-smb-open-connection): Setting process sentinel removed.
9896 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
9897 "NT_STATUS_NETWORK_ACCESS_DENIED".
9898 (tramp-smb-maybe-open-connection): Set `process-connection-type'
9899 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
9900 (top-level): Setting default value in `tramp-default-method-alist'
9901 corrected. Order of USER and HOST have been wrong.
9902 Nobody complained for months ...
9903 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
9904 (tramp-smb-open-connection): Clear password cache if login has failed.
9906 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
9907 `tramp-unified-filenames'.
9908 (tramp-completion-mode): Make test for XEmacs explicitely.
9909 `event-to-character' can exists in Emacs packages too.
9910 Reported by Matt Swift <swift@alum.mit.edu>.
9911 (tramp-buffer-name): Buffer name must contain the user if exists.
9912 Reported by Adrian Phillips <a.phillips@met.no>.
9913 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
9914 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
9915 (tramp-do-copy-or-rename-file-out-of-band): Rename from
9916 `tramp-do-copy-or-rename-file-one-local', because it handles also
9917 the case both files use the same out-of-band method.
9918 Implementation added.
9919 (tramp-handle-file-local-copy, tramp-handle-write-region):
9920 Out-of-band handling removed. `copy-file' called instead, which
9921 calls `tramp-do-copy-or-rename-file-out-of-band'.
9922 (tramp-action-password): Check for out-of-band method removed.
9923 This function is used for 'login-program.
9924 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
9926 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
9927 and `tramp-parse-sknownhosts'.
9928 (tramp-completion-function-alist): It's a defvar now, because we
9929 want to apply the optimized `tramp-set-completion-function'
9930 instead of a static list.
9931 (tramp-set-completion-function): Implementation tuned.
9932 Avoid double entries, and entries where the function or the
9933 file/directory doesn't exist.
9934 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
9936 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
9937 (tramp-handle-dired-compress-file): New function.
9938 (tramp-async-proc): New variable.
9939 (tramp-handle-shell-command): Adding asynchronous processes.
9940 They are far from being perfect, but it works at least for
9941 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
9942 (top-level): Require password.el if visible. Should be mandatory
9943 once No Gnus has found its way into (X)Emacs.
9944 (tramp-read-passwd): Invoke `password-read' if available,
9945 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
9946 fallback any longer.
9947 (tramp-clear-passwd): New function.
9948 (tramp-process-actions, tramp-process-multi-actions):
9949 Clear password cache if login has failed.
9951 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
9953 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
9954 `ange-ftp-ftp-name-res'. There could be incorrect values from
9955 previous calls in case the "ftp" method is used in the Tramp file
9956 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
9958 2004-02-28 Richard M. Stallman <rms@gnu.org>
9960 * term.el (term-mouse-paste): Call mouse-set-point.
9962 * thumbs.el: New file.
9964 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9966 * progmodes/ebnf-abn.el: Doc fix.
9968 * progmodes/ebnf-bnf.el: Doc fix.
9969 (ebnf-repeat): Code fix.
9971 * progmodes/ebnf2ps.el: Doc fix.
9972 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
9974 2004-02-28 Juri Linkov <juri@jurta.org>
9976 * ffap.el (dired-at-point): Additional writability test for
9977 relative directory names.
9978 (dired-at-point-prompter): Treat directories as a directory, get
9979 the directory component from files.
9980 (ffap-string-at-point): Return string from region if region is active.
9981 (ffap-file-at-point): Remove redundant code.
9983 2004-02-28 Kim F. Storm <storm@cua.dk>
9985 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
9986 Initialize margin area images to nil.
9987 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
9988 (breakpoint-enabled-bitmap-face)
9989 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
9990 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
9991 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
9992 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
9993 (gdb-reset): Use gdb-remove-breakpoint-icons.
9994 (gdb-put-string): Add dprop arg to specify alternative display
9995 property (for setting fringe bitmap).
9996 (gdb-remove-strings): Doc fix.
9997 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
9998 icon in fringe (if available), or else as icon or text in display
9999 margin. Creates necessary icons in breakpoint-bitmap,
10000 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
10001 Also make left window margin if required.
10002 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
10003 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
10005 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
10006 gdb-put-breakpoint-icon.
10007 (gdb-assembler-mode): Don't set left-margin-width here.
10009 2004-02-27 Kevin Ryde <user42@zip.com.au>
10011 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
10012 comma, so that it DTRT in macros.
10014 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
10016 * progmodes/sh-script.el (sh-shell-arg)
10017 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
10018 (sh-leading-keywords, sh-other-keywords): Fix custom type.
10020 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
10022 * faces.el (face-spec-set-match-display): Add a new attribute,
10024 (region, highlight, secondary-selection): Use `min-colors'.
10026 * custom.el (defface): Add documentation for `min-colors'.
10028 * font-lock.el (font-lock-comment-face, font-lock-string-face)
10029 (font-lock-keyword-face, font-lock-function-name-face)
10030 (font-lock-variable-name-face, font-lock-constant-face):
10033 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
10035 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10037 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
10038 define assq-delete-all if it's not defined.
10039 (ebnf-generate-region): Code fix.
10041 * printing.el: Doc fix.
10042 (pr-version): New version number (6.7.2).
10043 (pr-command): Return empty string if command is an empty string.
10045 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10047 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
10049 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
10050 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
10051 semi-down-full. Fix a bug on productions like test = {"test"}* | (
10052 "tt" ["test"] ). Reported by Markus Dreyer
10053 <mdreyer@ix.urz.uni-heidelberg.de>.
10054 (ebnf-version): New version number (4.0).
10055 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
10056 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
10057 (ebnf-delete-style): New commands.
10058 (ebnf-directory, ebnf-file): New funs.
10059 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
10060 (ebnf-production-name-p, ebnf-stop-on-error): New options.
10061 (ebnf-syntax-alist): New var.
10062 (ebnf-element-width): New fun replacing ebnf-list-width.
10063 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
10064 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
10065 (ebnf-prologue): Adjust vars.
10066 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
10067 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
10068 (ebnf-check-style-values, ebnf-generate-production)
10069 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
10070 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
10071 (ebnf-token-repeat): Code fix.
10073 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
10074 %right, %left and %prec. Suggested by Matthew K. Junker
10075 <junker@alum.mit.edu>.
10076 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
10078 * progmodes/ebnf-iso.el: Doc fix.
10079 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
10080 (ebnf-iso-lex): Code fix.
10082 * progmodes/ebnf-bnf.el: Doc fix.
10083 (ebnf-bnf-lex): Code fix.
10085 * progmodes/ebnf-otz.el: Doc fix.
10087 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
10089 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
10090 (abbrev-prefix-mark): Doc fix.
10092 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
10094 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
10095 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
10096 (gdb-var-delete): Make interactive (really).
10097 (gdb-edit-value): Make non-interactive.
10099 * progmodes/gud.el (gud-speedbar-menu-items):
10100 Add gdb-var-delete and, indirectly, gdb-edit-value.
10101 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
10102 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
10103 (gud-gdb-marker-filter): Add comment for annotations.
10105 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
10107 * calendar/calendar.el (generate-calendar)
10108 (calendar-read-date): Prevent display of BC calendars once more -
10109 reverts 2003-10-01 change.
10110 (generate-calendar-month): Doc fix.
10112 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
10114 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
10115 return value of increment-calendar-month.
10117 2004-02-21 Stephen Compall <s11@member.fsf.org>
10119 * saveplace.el (save-place-forget-unreadable-files)
10120 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
10121 (save-place-forget-unreadable-files): New function.
10122 (save-place-alist-to-file): Use it to filter out files that are
10123 no longer readable.
10125 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
10126 current Texinfo environment, using the same method as in
10127 `texinfo-insert-@end', and insert a space rather than a newline if
10128 point in a @table environment.
10130 2004-02-21 Juri Linkov <juri@jurta.org>
10132 * ffap.el (ffap-file-at-point): Try parent directories.
10134 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
10136 * vcursor.el (vcursor-modifiers): New defcustom.
10137 (vcursor-cs-binding): Use vcursor-modifiers instead of a
10140 2004-02-21 Masatake YAMATO <jet@gyve.org>
10142 * play/animate.el (animate-birthday-present): Accept names other
10145 2004-02-21 Juri Linkov <juri@jurta.org>
10147 * startup.el: Remove table of command line arguments from the
10148 Commentary section.
10150 2004-02-20 John Wiegley <johnw@newartisans.com>
10152 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
10153 again" modifier from 'e' to 'E', since 'e' is also used by the
10154 "file extension" modifier.
10156 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
10158 * help-fns.el (describe-categories): Doc fix.
10160 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
10162 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
10163 temporary file for buffer already visiting one. This change makes
10164 output likely to be directly usable by patch program.
10165 Suggested by Adrian Aichner <adrian@xemacs.org>
10167 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
10169 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
10170 case of variables defined in compound statements.
10171 (gdb-setup-windows, gdb-source-info, gdb-source-info):
10172 Simplify constructions using switch-to-buffer.
10174 2004-02-19 Simon Josefsson <jas@extundo.com>
10176 * play/morse.el: Fix typo.
10177 (morse-code): Add @.
10179 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
10181 * calendar/appt.el (appt-display-format): Change default to
10182 'ignore, for backwards compatibility.
10183 (appt-display-message): If appt-display-format is 'ignore,
10184 respect old vars appt-msg-window and appt-visible.
10185 (appt-activate): Don't depend on return value of cancel-timer.
10187 * calendar/calendar.el (calendar-holidays): Doc fix.
10189 * calendar/cal-coptic.el (coptic-prompt-for-date):
10190 Use assoc-string instead of assoc-ignore-case.
10191 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
10192 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
10193 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
10194 * calendar/cal-islam.el (calendar-goto-islamic-date)
10195 (mark-islamic-diary-entries): Ditto.
10196 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
10197 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
10198 (calendar-read-mayan-tzolkin-date): Ditto.
10199 * calendar/calendar.el (calendar-read-date): Ditto.
10200 * calendar/diary-lib.el (mark-diary-entries): Ditto.
10202 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
10204 * progmodes/executable.el (executable-command-find-posix-p):
10205 Fix choice of the directory.
10207 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
10209 * simple.el (interprogram-cut-function)
10210 (interprogram-paste-function, kill-new, kill-append):
10212 (kill-region): Make it return nil. Doc fix.
10213 (yank-pop): Make its argument optional.
10214 (yank): Make ARG `-' equivalent to `-1'.
10216 2004-02-17 Eli Zaretskii <eliz@gnu.org>
10218 * mail/rmail.el (rmail-get-new-mail): Don't reference
10219 rmail-use-spam-filter if rmail-spam-filter is not loaded.
10221 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
10223 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
10224 if one of global-auto-revert-non-file-buffers or autorevert-mode
10227 2004-02-16 Eli Zaretskii <eliz@gnu.org>
10229 * subr.el (delete-dups): A better implementation from Karl Heuer
10232 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
10234 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
10236 * progmodes/icon.el (icon-indent-command): Ditto.
10237 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
10239 2004-02-16 Eli Zaretskii <eliz@gnu.org>
10241 * progmodes/grep.el (grep-compute-defaults): Undo change from
10242 2004-01-29: don't use executable-command-find-posix-p.
10244 2004-02-16 Richard Sharman <rsharman@pobox.com>
10246 * hilit-chg.el: Use require instead of eval-and-compile.
10247 (highlight-compare-buffers): New function.
10249 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
10251 * man.el (Man-fontify-manpage): Render section headings in
10252 `Man-overstrike-face' even when overstrike was not used by man
10253 formatter for section headings.
10255 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
10257 * rmail-spam-filter.el: (vm-use-spam-filter)
10258 (rsf-min-region-length-added-to-spam-list): New variables.
10259 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
10260 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
10261 spam testing. Don't delete spam message if automatic deletion
10262 after output via variable rmail-delete-after-output is turned on.
10263 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
10264 rsf-bbdb-dont-create-entries-for-spam.
10265 (check-field): New function, extracted from code in
10266 rmail-spam-filter to ease addition of header fields like content-type.
10267 (message-content-type): New variable to check the content-type:
10268 field added, also in defcustom of rsf-definitions-alist.
10269 (rmail-spam-filter): Replace repeated test code for header fields
10270 by calls to check-field; change the call to
10271 rmail-output-to-rmail-file such that rmail-current-message stays
10272 the same to avoid wrong deletion of unseen flags.
10273 (rsf-add-contents-type): New function to convert old format
10274 of rmail-spam-definitions-alist into new one.
10275 Change prefixes of all variables and functions from
10276 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
10278 2004-02-16 Eli Zaretskii <eliz@gnu.org>
10280 * loadhist.el (unload-hook-features-list): New defvar.
10282 2004-02-16 Dave Love <fx@gnu.org>
10284 * loadhist.el (unload-feature): Doc fix. Rename flist to
10285 unload-hook-features-list.
10287 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
10289 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
10290 cookie. Don't check if we are looking-at open-formula.
10292 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
10294 * subr.el (match-string-no-properties): Use substring-no-properties.
10296 2004-02-16 Eli Zaretskii <eliz@gnu.org>
10298 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
10299 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
10300 Use lower-case "rx" in all error message.
10302 2004-02-16 Dave Love <fx@gnu.org>
10304 * emacs-lisp/rx.el (rx-or): Put group around result.
10305 (rx-constituents): Add backref.
10306 (rx-syntax): Add string-delimiter, comment-delimiter.
10307 (rx-categories): Add combining-diacritic.
10308 (rx-check-not, rx-greedy, rx): Doc fix.
10309 (rx-backref, rx-check-backref): New.
10311 2004-02-16 Jesper Harder <harder@ifa.au.dk>
10313 * newcomment.el (uncomment-region): Allow eob as comment end.
10315 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
10317 * filecache.el: All message and error commands now use prefix
10318 "Filecache:" to make it easy to read *Messages* buffer.
10320 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
10322 * autorevert.el: Add support to detect changed dired and VC buffers.
10323 (auto-revert-active-p, auto-revert-list-diff)
10324 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
10325 (auto-revert-handler, auto-revert-active-p): New functions.
10326 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
10327 and `auto-revert-active-p'.
10328 (eval-when-compile): Defvar dired-directory and vc-mode.
10329 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
10330 (auto-revert-handler-vc): New functions.
10332 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
10334 * progmodes/compile.el (compilation-directory): New defvar.
10335 (compile): Save current directory in compilation-directory.
10336 (recompile): Bind default-directory to compilation-directory if
10339 2004-02-16 Dave Love <fx@gnu.org>
10341 * newcomment.el (comment-insert-comment-function)
10342 (comment-region-function, uncomment-region-function): New.
10343 (comment-indent): Use comment-insert-comment-function.
10344 (uncomment-region): Use uncomment-region-function.
10345 (comment-region): Use comment-region-function.
10347 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
10349 2004-02-16 Richard Stallman <rms@gnu.org>
10351 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
10352 loaddefs* and ldefs-boot*.
10354 2004-02-16 Eli Zaretskii <eliz@gnu.org>
10356 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
10357 and email address at the beginning and end of the address.
10359 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
10360 anchored at the beginning of the email address.
10362 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
10364 * international/ccl.el (ccl-compile-write): Pass `left' to
10365 ccl-embed-code to generate correct code of write-expr-register.
10367 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
10369 * progmodes/grep.el (grep-compute-defaults): Fix typos.
10371 2004-02-15 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
10373 * x-dnd.el: Mention support for Motif in commentary.
10374 (x-dnd-handle-drag-n-drop-event): Ditto.
10376 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
10378 * ses.el: Use "ses--" prefixes for buffer-local variables.
10379 Use (point-min) instead of 1, even when we know the buffer
10381 (ses-build-load-map): Delete. Distribute its content to defconst's for
10383 (ses-menu, ses-header-line-menu): New menus.
10384 (ses-mode-map): Use them.
10385 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
10387 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
10389 * Makefile.in: Fix the CC Mode recompile kludge so it works
10390 when building in a different directory.
10392 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
10394 * simple.el (kill-new): Put yank-handler property on the entire string.
10396 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
10398 * diff.el: Don't use compile any more, use diff-mode instead.
10399 (diff-regexp-alist, diff-old-file, diff-new-file)
10400 (diff-parse-differences, diff-process-setup): Remove.
10401 (diff-sentinel): New fun.
10402 (diff): Use it. Run the process ourselves.
10403 Use diff-mode for the rest of the processing.
10405 * diff.el (diff): Simplify code handling `switch'.
10407 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
10409 * pcvs-defs.el (cvs-menu): Add `tag'.
10411 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
10413 * simple.el (kill-append): Doc fix.
10415 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10416 Adapt outline-regexp to the new conventions for commenting out code.
10418 2004-02-11 John Paul Wallington <jpw@gnu.org>
10420 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
10422 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
10424 * diff.el (diff-switches): New fun.
10425 (diff, diff-backup): Use it.
10426 (diff): Clean up the args construction. Use backquote.
10427 Use listp instead of consp to avoid putting a nil arg.
10428 (diff): Add a revert-buffer function.
10430 2004-02-10 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
10432 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
10433 handled by x-dnd-handle-file-name.
10434 (x-dnd-known-types): Add COMPOUND_TEXT.
10435 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
10436 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
10438 (x-dnd-forget-drop): Ditto.
10439 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
10440 (x-dnd-handle-one-url): Return private when inserting text.
10441 (x-dnd-insert-ctext): New function.
10442 (x-dnd-handle-file-name): New function for FILE_NAME.
10443 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
10444 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
10445 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
10447 2004-02-10 Kenichi Handa <handa@m17n.org>
10449 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
10450 instead of while loop.
10452 2004-02-10 Miles Bader <miles@gnu.org>
10454 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
10456 2004-02-09 Kenichi Handa <handa@m17n.org>
10458 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
10461 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
10463 * Makefile.in: Added extra dependencies in the recompile target
10464 needed to cope with the compile time macro expansions in CC Mode.
10466 2004-02-09 Kim F. Storm <storm@cua.dk>
10468 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
10469 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
10470 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
10471 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
10472 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
10473 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
10474 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
10475 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
10476 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
10477 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
10478 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
10480 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
10482 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
10483 Don't allow shrink if there's a window on our right.
10485 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
10486 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
10487 Bring together declaration and initialization.
10488 (prolog-mode-variables): Don't set the syntax table.
10489 Don't set paragraph-start and comment-indent-function.
10490 Add /*..*/ to the comment regexps.
10491 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
10492 (prolog-mode-map): Don't bind TAB.
10493 (prolog-mode): Set the syntax table.
10494 (prolog-comment-indent): Remove.
10495 (inferior-prolog-mode-map): Initialize in the declaration.
10496 (inferior-prolog-mode-syntax-table)
10497 (inferior-prolog-mode-abbrev-table): New vars.
10498 (inferior-prolog-mode): Derive from comint-mode.
10499 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
10500 minibuffer windows.
10502 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
10503 in file names, as long as it is unabmiguous.
10505 2004-02-08 Andreas Schwab <schwab@suse.de>
10507 * textmodes/reftex-toc.el
10508 (reftex-toc-load-all-files-for-promotion): Remove useless use of
10511 * textmodes/refer.el (refer-find-entry-internal): Remove extra
10512 format string arguments.
10514 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
10517 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
10519 * play/zone.el (zone-call): Fix format string.
10521 * net/webjump.el (webjump-builtin): Add missing format string argument.
10523 * midnight.el (midnight-delay-set): Remove extra format string argument.
10525 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
10527 * hexl.el (hexl-insert-char): Add missing format string argument.
10529 * format.el (format-decode): Fix format string.
10531 * emulation/vi.el (vi-mode): Remove extra format string argument.
10532 (vi-repeat-last-search): Likewise.
10533 (vi-reverse-last-search): Likewise.
10534 (vi-goto-mark): Likewise.
10535 (vi-reverse-last-find-char): Likewise.
10536 (vi-repeat-last-find-char): Likewise.
10537 (vi-locate-def): Likewise.
10539 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
10541 * ediff-util.el (ediff-toggle-read-only): Remove extra format
10543 (ediff-toggle-regexp-match): Likewise.
10545 * dired-aux.el (dired-do-query-replace-regexp): Add missing
10546 format string argument.
10548 * calc/calc-map.el (calc-get-operator): Remove extra format
10551 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
10553 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
10556 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
10558 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
10560 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
10562 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
10563 (cl-struct-setf-expander): Likewise.
10565 * vc.el (with-vc-file): Fix unsafe uses of error.
10566 (vc-cancel-version): Likewise.
10568 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
10570 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
10571 thousands separator; fixes <class>:<line-number> regexp for
10572 non-english locales.
10574 2004-02-08 Andreas Schwab <schwab@suse.de>
10576 * view.el (view-mode-enable): Revert previous change.
10578 2004-02-07 Kim F. Storm <storm@cua.dk>
10580 * simple.el (line-number-at-pos): Rename from line-at-pos.
10581 Uses changed (what-line and vc-annotate-warp-version).
10583 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
10585 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
10586 (diff-mode): Remove aborted attempt at support for compile.el.
10587 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
10589 2004-02-06 Andreas Schwab <schwab@suse.de>
10591 * view.el (view-mode-enable): Add view-mode-map to
10592 minor-mode-overriding-map-alist.
10594 2004-02-05 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
10596 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
10598 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
10600 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
10601 with point inside rather than after the paragraph.
10603 2004-02-04 Sam Steingold <sds@gnu.org>
10605 * mail/smtpmail.el (smtpmail-try-auth-methods):
10606 Do not try authentication when no mechanism is available.
10607 Pass port-name as defaultport to `netrc-machine'.
10609 2004-02-04 Stephen Eglen <stephen@gnu.org>
10611 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
10612 to show how minibuffer height can be constrained.
10614 2004-02-04 John Paul Wallington <jpw@gnu.org>
10616 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
10618 2004-02-03 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
10620 * x-dnd.el: New file for drag and drop.
10622 * term/x-win.el: require x-dnd, set after-make-frame-functions
10623 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
10626 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
10627 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
10628 (dired-dnd-handle-file): New functions for drag and drop support.
10629 (dired-mode): Initialize drag and drop if x-dnd present.
10631 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
10633 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
10634 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
10635 (cperl-mode): Set fill-paragraph-function.
10636 (cperl-fill-paragraph): Make it non-interactive.
10638 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
10640 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
10642 2004-02-02 David Kastrup <dak@gnu.org>
10644 * replace.el (perform-replace): Allow 'literal argument in
10645 regexp-flag to indicate literal replacement.
10646 (query-replace-regexp-eval): Use it.
10648 2004-02-01 Andreas Schwab <schwab@suse.de>
10650 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
10652 2004-02-01 Stephen Eglen <stephen@gnu.org>
10654 * info-look.el: Add support for maxima-mode. Update commentary
10655 because info-lookup-symbol is now bound to C-h S.
10657 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
10659 * simple.el (edit-and-eval-command): Bind print-level and
10660 minibuffer-history-sexp-flag around call to read-from-minibuffer.
10661 Correct initial position in command-history.
10663 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
10665 * files.el (read-directory-name): Adapt the docstring to recent
10666 change in Fread_file_name.
10668 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
10670 * ses.el (ses-print-cell): If print format too wide for column
10671 width, truncate decimal places if that helps to avoid "#####" fill.
10672 * ses.el (ses-initial-column-width): Revert previous change.
10674 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
10676 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
10677 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
10679 (jit-lock-mode): Setup/cancel the new timer.
10680 (jit-lock-context-fontify): New fun. Extracted from
10681 context fontification code of jit-lock-stealth-fontify.
10682 (jit-lock-stealth-fontify): Don't do context fontification any more.
10684 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
10685 (jit-lock-fontify-now): Handle the `quit' case.
10686 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
10688 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
10690 * progmodes/executable.el (executable-command-find-posix-p):
10691 New. Check if find handles arguments Posix-style.
10693 * progmodes/grep.el (grep-compute-defaults):
10694 Use executable-command-find-posix-p.
10695 (grep-find): Check `grep-find-command'.
10697 * filecache.el (file-cache-find-posix-p): Delete.
10698 (file-cache-add-directory-using-find):
10699 Use `executable-command-find-posix-p'.
10701 2004-01-29 Dave Love <fx@gnu.org>
10703 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
10704 Iterate the hook function if arg is given.
10705 (mark-defun, narrow-to-defun): Change order of finding the limits.
10707 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
10708 (byte-compile-format-warn): New.
10709 (byte-compile-callargs-warn): Use it.
10710 (Format, message, error): Add byte-compile-format-like property.
10711 (byte-compile-maybe-guarded): New.
10712 (byte-compile-if, byte-compile-cond): Use it.
10713 (byte-compile-lambda): Compile interactive forms,
10714 just to make warnings about them.
10716 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
10718 * ses.el (ses-initial-column-width): Increase to 14, so it will
10719 work well with the default printer of "%.7g" for extreme values
10720 like "-1.234567e+07".
10722 2004-01-29 Kenichi Handa <handa@m17n.org>
10724 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
10726 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
10728 * dos-w32.el: Added support for the `default-printer-name' function.
10730 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
10732 * server.el (server-socket-name): Don't use the hostname in the
10733 socket name since /tmp is local to the host anyway.
10735 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
10736 robust check of widening and fix var-naming.
10738 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
10740 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
10741 or rmail-spam- to rsf- in all function and variable names.
10742 (rsf-min-region-to-spam-list): New variable.
10743 (rsf-bbdb-auto-delete-spam-entries): Rename from
10744 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
10745 scanned together with the recipients field for spam testing; Don't
10746 delete spam message if rmail-delete-after-output is non-nil;
10747 (rsf-check-field): New function, extracted from code in
10748 rmail-spam-filter to ease addition of header fields like
10750 (message-content-type): New variable. The content-type: field was
10751 added also in defcustom of rsf-definitions-alist;
10752 (rmail-spam-filter): Replace repeated test code for header fields
10753 by calls to check-field; change the call to
10754 rmail-output-to-rmail-file such that rmail-current-message stays
10755 the same to avoid wrong deletion of unseen flags.
10756 (rmail-use-spam-filter): Add autoload cookie.
10758 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
10760 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
10761 (file-cache-add-directory-using-find): Add Cygwin support.
10762 (file-cache-find-command-posix-flag): New user variable.
10764 * filecache.el (file-cache-add-directory): Check for
10765 directories an remove them from dir-files.
10767 2004-01-27 Richard M. Stallman <rms@gnu.org>
10769 * man.el (Man-fontify-manpage): Clean up message.
10771 2004-01-27 Kenichi Handa <handa@m17n.org>
10773 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
10774 (sentence-end): Define using sentence-end-without-space.
10776 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
10777 a sentence ends with one of a character in sentence-end-without-space.
10779 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
10781 * font-lock.el (font-lock): Add jit-lock as explicit group member.
10782 (jit-lock): Group declaration moved to jit-lock.el.
10783 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
10786 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
10787 (jit-lock-context-unfontify-pos): Rename from
10788 jit-lock-first-unfontify-pos.
10789 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
10791 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
10793 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
10794 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
10795 (fortran-fill): When filling a string, adjust re-search-backward
10796 argument for special case of string just on fill-column.
10797 When filling non-string, allow one extra char if
10798 fortran-break-before-delimiters is non-nil.
10799 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
10800 Use fortran-break-delimiters-re and fortran-no-break-re to
10801 correctly handle cases such as "**".
10803 * progmodes/f90.el (f90-break-delimiters): Doc fix.
10804 (f90-no-break-re): Add some extra tokens. Doc fix.
10806 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
10808 * mail/rmail-spam-filter.el:
10809 Use two semicolons as Commentary line prefix.
10810 Add ";;; Code:" stylized comment.
10811 Delete end-of-line whitespace.
10812 Wrap (require 'cl) with `eval-when-compile'.
10814 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
10816 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
10817 at the top level of vc.el.
10819 2004-01-23 Andre Spiegel <spiegel@gnu.org>
10821 * vc.el (vc-current-line): Function removed. This is now done by
10822 the new function line-at-pos in simple.el.
10823 (vc-annotate-warp-version): Use line-at-pos instead of
10826 2004-01-22 Kim F. Storm <storm@cua.dk>
10828 * simple.el (line-at-pos): New defun.
10829 (what-line): Use it. Optimize by only counting lines in narrowed
10832 2004-01-22 Kenichi Handa <handa@m17n.org>
10834 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
10835 point (register r1) only for charset mule-unicode-0100-24ff.
10837 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
10839 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
10840 trailing white space and ensure a final newline.
10842 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
10843 Add autoload cookie.
10845 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
10847 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
10848 activate view-mode explicitly.
10850 2004-01-21 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
10852 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
10853 use clipboard first.
10855 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
10857 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
10858 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
10859 (vc-mcvs-cvs): Remove.
10860 (vc-mcvs-command): Remove use of assert.
10862 * outline.el (outline-insert-heading): Tighten up match.
10863 (outline-demote, outline-move-subtree-down): Don't assume anything
10864 about outline-regexp.
10866 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
10867 (texinfo-show-structure): Explicitly add ^, and simplify.
10869 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
10871 * calendar/appt.el (appt-check): Restore usage of
10872 appt-issue-message deleted in previous change.
10873 (top-level): Activate package when loaded (needed for backwards
10876 2004-01-20 Jesper Harder <harder@ifa.au.dk>
10878 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
10879 following previous change to smtpmail-send-data.
10881 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
10883 * vc.el (vc-default-previous-version): Doc enhancement.
10884 (vc-default-next-version): New function.
10885 (vc-print-log): New arg FOCUS-REV.
10886 (vc-annotate-mode): Derive from view-mode.
10887 (vc-annotate): New args REVISION, DISPLAY-MODE.
10888 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
10889 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
10890 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
10891 (vc-annotate-show-diff-revision-at-line, vc-current-line)
10892 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
10894 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
10896 2004-01-19 Karl Berry <karl@gnu.org>
10898 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
10901 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
10903 * subr.el (delete-dups): New function.
10905 2004-01-19 Karl Berry <karl@gnu.org>
10907 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
10908 with ^, since that's what texinfo-show-structure
10909 documentation says (plus it works much better in texinfo.txi).
10911 2004-01-18 Jesper Harder <harder@ifa.au.dk>
10913 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
10915 2004-01-18 David Ponce <david@dponce.com> (tiny change)
10917 * progmodes/which-func.el (which-function-mode): Don't cancel
10918 which-func-update-timer if not set.
10920 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
10922 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
10923 Remove spurious left square bracket in XX:XXam regexp.
10925 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
10927 * progmodes/cc-defs.el: Do not require cl at run time.
10929 2004-01-16 Richard M. Stallman <rms@gnu.org>
10931 * emacs-lisp/cl.el (cl-cannot-unload): New function.
10932 (cl-unload-hook): Defvar this to run cl-cannot-unload.
10934 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
10935 Call rmail-spam-filter. Delete and expunge spam.
10936 Print number of spam messages deleted.
10937 Save and restore the deletion status of old messages when reading
10938 new mail with spam filter, so that expunging spam does not expunge
10939 msgs deleted by the user.
10940 (rmail-only-expunge): Add an optional argument dont-show to
10941 prevent showing message after expunge.
10943 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
10945 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
10946 * subr.el (declare): New macro.
10948 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
10950 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
10952 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
10954 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10955 Test window-system rather than system-type (for X11/Mac).
10957 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
10959 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
10961 2004-01-12 Richard M. Stallman <rms@gnu.org>
10963 * mail/rmail.el (rmail-convert-to-babyl-format):
10964 Use mail-unquote-printable-region.
10965 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
10966 (rmail-hex-char-to-integer): Functions deleted.
10968 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
10969 (mail-unquote-printable-region): New arg NOERROR.
10970 For invalid encoding, either signal an error to just return nil.
10972 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
10974 * calendar/appt.el: Update copyright and commentary.
10975 (appt-issue-message): Make obsolete.
10976 (appt-visible, appt-msg-window): Make obsolete, in favour of
10977 appt-display-format.
10978 (appt-display-mode-line, appt-display-duration)
10979 (appt-display-diary, appt-time-msg-list, appt-mode-string)
10980 (appt-prev-comp-time, appt-display-count, appt-timer)
10981 (appt-convert-time): Doc change.
10982 (appt-disp-window-function, appt-delete-window-function):
10983 Use defcustom rather than defvar.
10984 (appt-display-format): New variable.
10985 (appt-display-message): New function with display code from appt-check.
10986 (appt-check): Add optional FORCE argument. Doc change.
10987 Add appt-make-list to diary-hook if displaying diary.
10988 Remove checking of view-diary-entries-initially.
10989 Message display section removed to new function appt-display-message.
10990 (appt-display-window): Doc change. Remove unused internal var
10991 this-buffer. Do not beep, since appt-display-message does that.
10992 (appt-make-list): Doc change. Use caar.
10993 (appt-sort-list): Simplify by using builtin sort function.
10994 (appt-update-list): New function for updating appts when diary is
10996 (appt-activate): New autoloaded function to toggle package
10999 * calendar/cal-x.el: (calendar-one-frame-setup)
11000 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
11002 * calendar/calendar.el: Update copyright.
11003 (view-diary-entries-initially, european-calendar-style): Doc change.
11004 (calendar-setup): Make defcustom rather than defvar.
11005 (mark-visible-calendar-date): Initialize temp-face and faceinfo
11006 in let binding so local to function.
11008 * calendar/diary-lib.el: Update copyright.
11009 (diary, diary-entry-time): Doc change.
11010 (list-diary-entries): Doc change. Trivial logic change.
11011 (fancy-diary-display): Restore make-face command mistakenly
11012 deleted 2003-05-08.
11013 (show-all-diary-entries): Allow to pop-up frame if needed.
11015 2004-01-09 John Paul Wallington <jpw@gnu.org>
11017 * bindings.el (mode-line-change-eol): Add EVENT parameter.
11018 Temporarily select EVENT's window for changing eol type.
11020 2004-01-09 Deepak Goel <deego@gnufans.org>
11022 * calendar/diary-lib.el (diary-entry-time):
11023 Also accept time in the form XX[.XX][am/pm/AM/PM].
11024 (fancy-diary-font-lock-keywords): Likewise.
11025 (diary-font-lock-keywords): Likewise.
11026 * calendar/appt.el (appt-add): Likewise.
11027 (appt-make-list): Likewise.
11028 (appt-convert-time): Likewise.
11030 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
11032 * gdb-ui.el (gdb-ann3): Revert previous change.
11033 (gdb-source-info): Allow for case of where compilation directory
11036 2004-01-08 John Paul Wallington <jpw@gnu.org>
11038 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
11040 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
11042 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
11044 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
11045 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
11047 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
11049 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
11051 * files.el (write-file-functions, write-contents-functions):
11052 Clarify docstrings.
11054 2004-01-07 Kenichi Handa <handa@m17n.org>
11056 * international/mule.el (set-auto-coding): Fix for the case that
11057 end-of-line is only CR.
11059 2004-01-07 Kim F. Storm <storm@cua.dk>
11061 * subr.el (event-start, event-end): Doc fix.
11062 (posn-string, posn-image): New defuns.
11063 (posn-object): Return either image or string object.
11064 (posn-object-x-y): Return 8th element of position.
11065 (posn-object-width-height): New defun.
11067 2004-01-06 Andreas Schwab <schwab@suse.de>
11069 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
11072 2004-01-05 Karl Berry <karl@gnu.org>
11074 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
11077 2003-12-31 Simon Josefsson <jas@extundo.com>
11079 * files.el (before-save-hook): Add.
11080 (basic-save-buffer): Use before-save-hook.
11082 * emacs-lisp/copyright.el: Fix comment to recommend
11083 before-save-hook instead of write-file-functions.
11085 2004-01-05 Richard M. Stallman <rms@gnu.org>
11087 * finder.el (finder-commentary): Call delete-other-windows.
11089 * net/ange-ftp.el (ange-ftp-file-attributes):
11090 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
11092 2004-01-04 Karl Berry <karl@gnu.org>
11094 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
11095 comment characters % and # in the copyright year notice,
11098 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
11100 * wid-edit.el (default): Define dummy :value-delete.
11101 Reported by Jesper Harder <harder@ifa.au.dk>.
11103 2004-01-03 Richard M. Stallman <rms@gnu.org>
11105 * progmodes/compile.el (compile-internal): Use point, not point-min,
11106 for set-window-point.
11108 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
11110 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
11112 * progmodes/grep.el (grep-mode-map):
11113 Don't remap next-line, previous-line.
11115 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
11117 * speedbar.el (speedbar-edit-line): Change regexp to position
11118 the cursor on the first character of this line's button.
11120 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
11122 * subr.el (functionp): Doc fix.
11124 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
11126 * progmodes/idlwave.el (idlwave-make-tags):
11127 * textmodes/flyspell.el (flyspell-large-region):.
11128 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
11129 * emulation/viper-util.el (viper-glob-unix-files):
11130 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
11131 * man.el (Man-init-defvars):
11132 * jka-compr.el (jka-compr-call-process):
11133 * files.el (get-free-disk-space,insert-directory):
11134 * ediff-ptch.el (ediff-test-patch-utility):
11135 * ediff-diff.el (ediff-test-utility):
11136 * dired-aux.el (dired-check-process):
11137 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
11138 test the return value of call-process, because it can be a string.
11140 2003-12-31 John Paul Wallington <jpw@gnu.org>
11142 * bindings.el (completion-ignored-extensions): Add .pfsl.
11144 2003-12-31 Kim F. Storm <storm@cua.dk>
11146 * ido.el (ido-nonreadable-directory-p): New defun to check for
11147 nonreadable directory without activating tramp (to avoid problems
11148 with checking incomplete tramp paths).
11149 (ido-set-current-directory, ido-file-internal)
11150 (ido-file-name-all-completions1): Use it.
11152 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
11154 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
11155 documentation if the anchor (or node) name is preceded by `info
11156 anchor' or `Info anchor' in addition to earlier `info node' and
11158 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
11160 2003-12-30 Eli Zaretskii <eliz@gnu.org>
11162 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
11163 error in arguments to base64-decode-region. Remove ^M characters
11164 after decoding base64.
11166 2003-12-30 Simon Josefsson <jas@extundo.com>
11168 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
11169 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
11170 have only been distributed with Emacs for some years.
11171 (texinfo-mode-hook): Customize.
11173 2003-12-30 Eli Zaretskii <eliz@gnu.org>
11175 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
11176 cleaner (suggested by Richard Stallman).
11178 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
11179 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
11180 file-name clashes on 8+3 DOS filesystems.
11182 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
11183 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
11184 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
11185 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
11186 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
11187 file-name clashes on 8+3 filesystems.
11189 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
11190 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
11191 file-name clashes on 8+3 DOS filesystems.
11193 2003-12-29 Richard M. Stallman <rms@gnu.org>
11195 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
11196 Upcase the character.
11198 * textmodes/flyspell.el (mail-mode-flyspell-verify):
11199 Search for header separator alone on a line, literally,
11200 and search for it backward, not forward.
11201 (flyspell-abbrev-table): Always use global-abbrev-table
11202 if there is no local one.
11204 * progmodes/sh-script.el (sh-get-indent-info):
11205 Don't move point back if at bob.
11207 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
11209 * play/handwrite.el (handwrite): Make the handwrite credit message
11210 a comment rather than an output command.
11212 * obsolete/sc.el: Display message that this file is obsolete.
11214 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
11216 * mail/rfc822.el (rfc822-address-start): Declare variable.
11217 Renamed from address-start. All uses changed.
11219 * term.el (term-exec): Set up sentinel.
11220 (term-sentinel): New function.
11221 (term-handle-exit): New function.
11223 * subr.el (assoc-ignore-case, assoc-ignore-representation):
11224 Use assoc-string, and mark them obsolete.
11225 (delay-mode-hooks): Mark as permanent local.
11227 * simple.el (sendmail-user-agent-compose): Use assoc-string.
11229 * register.el (copy-rectangle-to-register): Doc fix.
11231 * info.el (Info-insert-dir): Use assoc-string.
11233 * info-look.el (info-lookup): Use assoc-string.
11235 * frame.el (pop-up-frame-function): Use quote, not `function'.
11236 (frame-notice-user-settings): Calculate ADJUSTED-TOP
11237 copying with lists as coordinate values.
11239 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
11241 * find-dired.el (kill-find): New command.
11242 (find-dired): Make buffer read-only.
11243 Set up a keymap with C-c C-k running kill-find.
11244 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
11246 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
11248 * filecache.el (file-cache-ignore-case): New variable.
11249 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
11251 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
11252 (comint-dynamic-complete-as-filename): Rename local vars.
11253 (comint-dynamic-list-filename-completions): Likewise.
11255 * comint.el (comint-dynamic-list-completions-config): New var.
11256 (comint-dynamic-list-completions): Handle both SPC and TAB right.
11258 * comint.el (comint-file-name-chars): Add [].
11259 (comint-word): Use skip-chars-backward, not search.
11261 * shell.el (shell-file-name-chars): Add [].
11263 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
11265 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
11267 * generic.el (define-generic-mode): Doc fix.
11269 2003-12-29 Eli Zaretskii <eliz@gnu.org>
11271 * files.el (kill-some-buffers): Doc fix.
11273 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
11275 * comint.el (comint-watch-for-password-prompt): Pass `string' as
11276 arg to send-invisible
11277 (send-invisible): Doc fix. The argument is now a prompt, not the
11279 (comint-read-noecho): Doc fix.
11281 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
11283 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
11284 "@", as required by some ISP hosting service. Fix defcustom
11285 argument syntax errors that prevented use of customization.
11287 2003-12-29 Eli Zaretskii <eliz@gnu.org>
11289 * xml.el (xml-get-attribute-or-nil): Doc fix.
11291 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
11293 * net/zone-mode.el (zone-mode): Use write-file-functions, not
11296 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
11298 * autorevert.el (auto-revert-interval): Doc fix.
11300 2003-12-29 Mark A. Hershberger <mah@everybody.org>
11302 * xml.el (xml-get-attribute-or-nil): New function, like
11303 xml-get-attribute, but returns nil if the attribute was not found.
11304 (xml-get-attribute): Convert to defsubst, uses
11305 xml-get-attribute-or-nil.
11307 2003-12-29 Eli Zaretskii <eliz@gnu.org>
11309 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
11311 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
11313 * custom.el (custom-declare-theme): Use `value' when putting
11314 properties on `theme'.
11316 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
11318 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
11319 for each yank-handler segment.
11320 (insert-for-yank-1): New function, with the body of the previous
11323 * textmodes/table.el (table-yank-handler): New defcustom.
11324 (table--put-cell-indicator-property): Put yank-handler property
11325 that indicates the yank handler for the table cell.
11327 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
11329 * generic-x.el (etc-modules-conf-generic-mode): A more complete
11332 2003-12-29 Eli Zaretskii <eliz@gnu.org>
11334 * international/mule-cmds.el (reset-language-environment)
11335 (set-language-environment): Don't invoke fontset-related functions
11336 if fontset-list is not fboundp.
11338 2003-12-29 Kenichi Handa <handa@m17n.org>
11340 * international/mule-cmds.el (reset-language-environment):
11341 Call set-overriding-fontspec-internal with nil.
11342 (set-language-environment): Call set-overriding-fontspec-internal
11343 if the language environment specify `overriding-fontspec'.
11344 (language-info-alist): Doc added.
11346 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
11347 characters of mule-unicode-0100-24ff.
11348 (ccl-encode-windows-1251-font): New CCL program.
11349 ("Bulgarian"): Specify overriding-fontspec.
11350 ("Belarusian"): Likewise.
11352 2003-12-28 Sam Steingold <sds@gnu.org>
11354 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
11355 parameter ID-FORMAT to conform with the 2003-11-30 patch.
11357 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
11359 * progmodes/gud.el (gud-gdb-command-name): Set default to
11360 "gdb --annotate=3".
11361 (gud-gdb-marker-filter): Look out for annotations.
11362 (gdb-first-pre-prompt): New variable.
11363 Remove trailing white space.
11365 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
11367 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
11368 annotations are detected.
11369 (gud-gdba-marker-filter): Use global variable gud-marker-acc
11370 instead of a local one to allow transition from
11371 gud-gdb-marker-filter.
11372 Remove trailing white space.
11374 2003-12-27 Kim F. Storm <storm@cua.dk>
11376 * ido.el: Handle non-readable directories.
11377 (ido-decorations): Add 9th element for non-readable directory.
11378 (ido-directory-nonreadable): New dynamic var.
11379 (ido-set-current-directory): Set it.
11380 (ido-read-buffer, ido-file-internal):
11381 (ido-read-file-name, ido-read-directory-name): Let-bind it.
11382 (ido-file-name-all-completions1): Return empty list for
11383 non-readable directory.
11384 (ido-exhibit): Print [Not readable] if directory is not readable.
11385 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
11386 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
11389 2003-12-27 Lars Hansen <larsh@math.ku.dk>
11391 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
11392 calls to directory-files-and-attributes and file-attributes.
11393 (ls-lisp-format): Remove system dependent handling of user and
11396 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
11398 * ffap.el (ffap-read-file-or-url): Revert previous change.
11400 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
11402 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
11403 new list of included files called `files-with-node-lines', that
11404 only have node lines. This way @include commands can include any
11405 file, such as version and update files without node lines, not
11406 just files that are chapters.
11408 2003-12-25 Andreas Schwab <schwab@suse.de>
11410 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
11413 2003-12-08 Miles Bader <miles@gnu.org>
11415 * dired.el (dired-between-files): Always use dired-move-to-filename,
11416 which is more robust in non-english locales.
11418 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
11420 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
11422 2003-12-24 Andreas Schwab <schwab@suse.de>
11424 * shell.el (shell-file-name-quote-list): Add backslash.
11426 * comint.el (comint-quote-filename): Correctly handle backslash
11427 in comint-file-name-quote-list.
11429 2003-12-24 Kenichi Handa <handa@m17n.org>
11431 * international/mule-cmds.el (set-default-coding-systems):
11432 Call ucs-set-table-for-input for all buffers that don't have local
11433 value of buffer-file-coding-system.
11435 * international/ucs-tables.el (ucs-set-table-for-input):
11436 If translation-table-for-encode is a symbol, get its
11437 translation-table property.
11439 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
11441 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
11442 to `completing-read' on a recently fixed bug.
11444 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
11445 instead of SPACE, to get the list of possible fringe modes.
11446 SPACE only works if both `partial-completion-mode' and
11447 `completion-auto-help' are nil.
11449 * complete.el (PC-is-complete-p): Delete.
11450 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
11451 calls to `test-completion'.
11453 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
11455 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
11456 to edit values when there are no children.
11458 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
11459 a mode called "Assembler" already exists.
11460 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
11461 (gud-watch): Use format option. Remove font properties from string.
11462 (gdb-var-create-handler, gdb-var-list-children-handler):
11463 Don't bother about properties as there are none.
11464 (gdb-var-create-handler, gdb-var-list-children-handler)
11465 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
11466 with two arguments.
11467 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
11468 Let speedbar show value changes with a different font.
11469 (gdb-edit-value): New defun.
11470 (gdb-clear-partial-output, gdb-clear-inferior-io)
11471 (def-gdb-auto-update-handler): Use erase-buffer.
11472 (gdb-frame-handler): Display watch expressions in
11473 FUNCTION::VARIABLE format if required.
11475 2003-12-23 John Paul Wallington <jpw@gnu.org>
11477 * info.el (Info-unescape-quotes, Info-split-parameter-string)
11478 (Info-goto-emacs-command-node): Doc fixes.
11480 2003-12-12 Jesper Harder <harder@ifa.au.dk>
11482 * cus-edit.el (custom-add-parent-links): Define "many".
11484 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
11486 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
11487 (widget-child-validate, widget-type-value-create)
11488 (widget-type-default-get, widget-type-match): New functions.
11489 (lazy): New widget.
11490 (menu-choice, checklist, radio-button-choice, editable-list)
11491 (group, documentation-string): Remove redundant (per 2003-10-25
11492 change) calls to `widget-children-value-delete'.
11493 (widget-choice-value-get, widget-choice-value-inline): Remove.
11494 (menu-choice): Update widget.
11496 2003-12-03 Kenichi Handa <handa@m17n.org>
11498 * language/cyrillic.el: Register "microsoft-cp1251" in
11499 ctext-non-standard-encodings-alist.
11500 ("Bulgarian"): Add ctext-non-standard-encodings.
11501 ("Belarusian"): Likewise.
11503 * international/mule-conf.el (compound-text-with-extensions):
11504 Change the type to 2 (iso-2022 base).
11506 * international/mule.el (ctext-non-standard-encodings-alist):
11508 (ctext-non-standard-encodings): New variable.
11509 (ctext-post-read-conversion): Fully re-written.
11510 (ctext-non-standard-designations-alist): Delete it.
11511 (ctext-non-standard-encodings-table): New function.
11512 (ctext-pre-write-conversion): Fully re-written.
11514 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
11516 * cus-edit.el (custom-add-parent-links): Add documentation links
11517 for parent, if the item has none of its own.
11519 2003-11-30 Richard M. Stallman <rms@gnu.org>
11521 * dired-aux.el (dired-do-query-replace-regexp):
11522 Report files visited read-only.
11524 2003-11-30 Juri Linkov <juri@jurta.org>
11526 * dired-aux.el (dired-compare-directories): New command.
11527 (dired-file-set-difference, dired-files-attributes): New functions.
11529 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
11530 Version 2.0.38 of Tramp released.
11532 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
11533 Charles Curley <charlescurley@charlescurley.com>.
11534 (tramp-multi-connection-function-alist): Add ssht entry which adds
11535 "-e none -t -t" to the list of ssh args. Suggested by Adrian
11537 (tramp-get-method-parameter): New function to retrieve a method
11538 parameter. This allows for omission of method parameters.
11541 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
11543 * net/tramp.el: Add new optional parameter ID-FORMAT to
11544 `file-attributes'. Calls of `file-attributes' won't use this
11545 parameter for backward compatibility reasons.
11546 (tramp-perl-file-attributes): Add a new parameter to Perl script
11547 in order to handle uid/gid as strings, if desired.
11548 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
11549 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
11550 order to make the function more general.
11551 (tramp-handle-file-attributes): Replace proprietary optional
11552 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
11553 (tramp-handle-file-attributes-with-perl): Handle parameter
11554 NONNUMERIC if set. This wasn't done in the past.
11555 (tramp-post-connection): Apply second parameter "$2" if
11556 `tramp-remote-perl' is called.
11558 * net/tramp-smb.el (tramp-smb-handle-delete-file):
11559 Correct cut'n'waste error (`filename' instead of `directory').
11560 (tramp-smb-handle-directory-files-and-attributes)
11561 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
11562 introduced parameter ID-FORMAT.
11563 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
11564 error (`directory' instead of `ldir').
11566 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
11567 `file-attributes' has a second parameter. If yes, apply it with
11568 value "'integer". Otherwise, don't use that parameter (default is
11571 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
11573 * help.el (help-map): Bind `display-local-help' to `C-h .'.
11574 (help-for-help): Add `C-h .' to the listed Help options.
11575 Remove trailing whitespace.
11577 * help-at-pt.el: New file.
11579 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
11581 * subr.el (noreturn, 1value): New macros for test coverage.
11582 See `testcover.el'.
11584 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
11586 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
11587 for macro `1value'.
11588 (testcover-1value): New function. Checks that a 1value form
11589 actually returns only one value. Requested by RMS.
11591 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
11593 * gdb-ui.el (gud-watch, gdb-var-create-handler)
11594 (gdb-var-list-children, gdb-var-list-children-handler)
11595 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
11596 gdb commands that use mi to keep them out of the command history.
11598 2003-11-29 Jan Dj
\e,Ad
\e(Brv <jan.h.d@swipnet.se>
11600 * cus-start.el (all): Add use-file-dialog.
11602 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
11604 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
11606 2003-11-27 Kim F. Storm <storm@cua.dk>
11608 * subr.el (posn-object-x-y): New defun.
11610 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
11612 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
11613 Don't use `space' for \\\n.
11614 Be more selective as to which # are comment-starters.
11616 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
11618 * subr.el (number-sequence): Improve handling of floating point
11619 arguments (suggested by Kim Storm). Allow negative arguments.
11621 2003-11-26 Kenichi Handa <handa@m17n.org>
11623 * international/mule-cmds.el (standard-display-european-internal):
11624 Cancel the standard-display-table setting for ` and '.
11626 2003-11-26 Kim F. Storm <storm@cua.dk>
11628 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
11629 New defcustoms to add ffap-like functionality to ido.
11630 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
11631 (ido-no-final-slash): New defun.
11632 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
11633 (ido-read-file-name): ): Toggle VC checking via
11634 vc-handled-backends instead of vc-master-templates.
11635 (ido-file-internal): Handle ido-use-url-at-point and
11636 ido-use-filename-at-point via code borrowed from ffap-guesser.
11637 Handle new ido-exit code ffap.
11638 (ido-sort-list): Ignore final slash when sorting file names.
11640 2003-11-25 Kim F. Storm <storm@cua.dk>
11642 * emulation/cua-base.el (cua--standard-movement-commands):
11643 Add forward-sentence and backward-sentence.
11645 2003-11-25 Stephen Eglen <stephen@gnu.org>
11647 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
11648 iswitchb-exit is set to 'usefirst when user selects buffer at head
11649 of list using RET. (Selecting buffers at the head of the list was
11650 broken if the substring was also a complete buffername.)
11652 2003-11-23 Kim F. Storm <storm@cua.dk>
11654 * progmodes/compile.el (grep-command, grep-use-null-device)
11655 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
11656 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
11657 (grep-regexp-alist, grep-program, find-program)
11658 (grep-find-use-xargs, grep-history, grep-find-history)
11659 (grep-process-setup, grep-compute-defaults)
11660 (grep-default-command, grep, grep-tag-default, grep-find)
11661 (grep-expand-command-macros, grep-tree-last-regexp)
11662 (grep-tree-last-files, grep-tree): Move grep variables, functions
11663 and commands to new file grep.el.
11664 (compilation-mode-map): Remove grep commands from Compile sub-menu.
11665 (compilation-process-setup-function): Doc fix.
11666 (compilation-highlight-regexp, compilation-highlight-overlay): New
11667 defvars used for highlighting current compile error in source buffer.
11668 (compile-internal): New optional args HIGHLIGHT-REGEXP and
11669 LOCAL-MAP which overrides compilation-highlight-regexp and
11670 compilation-mode-map for this compilation.
11671 Delay calling compilation-set-window-height until after running
11672 compilation-process-setup-function so it can buffer-local override
11673 compilation-window-height.
11674 Check buffer-local value of compilation-scroll-output.
11675 (compilation-set-window-height): Use buffer-local value of
11676 compilation-window-height.
11677 (compilation-revert-buffer): Don't pass (undefined)
11678 preserve-modes arg to revert-buffer.
11679 (next-error-no-select, previous-error-no-select): New commands.
11680 (compilation-goto-locus): Temporarily highlight current match in
11681 source buffer using compilation-highlight-regexp.
11683 * progmodes/grep.el: New file with grep code from compile.el.
11684 (grep): New defcustom group.
11685 (grep-window-height): New defcustom, like compilation-window-height.
11686 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
11687 (grep-scroll-output): New defcustom, like compilation-scroll-output.
11688 (grep-command, grep-use-null-device, grep-find-command)
11689 (grep-tree-files-aliases, grep-tree-ignore-case)
11690 (grep-tree-ignore-CVS-directories): Move to grep custom group.
11691 (grep-setup-hook): New hook variable.
11692 (grep-mode-map): New keymap for grep commands. Add Grep menu.
11693 (grep-last-buffer): New defvar, override compilation-last-buffer.
11694 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
11695 Call compile-internal with args highlight-regexp and grep-mode-map.
11697 2003-11-23 Kim F. Storm <storm@cua.dk>
11699 * subr.el (event-start, event-end): Doc fix.
11700 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
11701 (posn-area, posn-actual-col-row, posn-object): New defuns.
11702 (posn-col-row): Simplify doc. Rewrite to use cond.
11703 (posn-point): Also return buffer position for events outside text
11704 area (that info is now present in the event position).
11706 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
11707 mouse-set-point so that hscroll still works now that clicks on
11708 fringes generate specific mouse events.
11709 (mouse-set-point): Note that it now works in fringes and margins
11710 too due to new semantics of posn-point in fringes and margins.
11712 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
11713 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
11715 2003-11-20 Kim F. Storm <storm@cua.dk>
11717 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
11718 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
11719 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
11720 to 100 for icons to avoid increasing line height when shown.
11722 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
11724 * newcomment.el (comment-normalize-vars): Initialize properly if
11725 comment-start was nil.
11727 2003-11-19 Andreas Schwab <schwab@suse.de>
11729 * simple.el (set-variable): Fix indentation.
11731 2003-11-17 Kenichi Handa <handa@m17n.org>
11733 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
11736 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
11738 * international/latin1-disp.el (latin1-display): Fix docstring.
11740 2003-11-16 John Wiegley <johnw@newartisans.com>
11742 * eshell/em-ls.el (eshell-ls-file): There are times with
11743 size-width is nil and uncomputed (when directories are created in
11744 dired, for example); in this case, 4 is reasonable default value,
11745 although it may caused skewed new entries (which could be avoided
11746 by returning the original value of 8 in all cases, but 99% of the
11747 time this is a waste of whitespace).
11749 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
11751 * cc-engine.el (c-guess-continued-construct)
11752 (c-guess-basic-syntax): Check a little more carefully if it's a
11753 function declaration when an unknown construct followed by a block
11754 is found inside a statement context. This avoids macros followed
11755 by blocks to be taken as function declarations.
11757 (c-guess-continued-construct): Change the analysis of a statement
11758 continuation with a brace open to `substatement-block', for
11759 consistency with recognized statements.
11761 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
11762 start is in a position so that `c-beginning-of-statement-1' jumped
11763 to the beginning of the same statement.
11765 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
11766 Don't accept binary operators in the arglist if we're in a function
11767 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
11768 template recognition in cases like "if (a < b || c > d)".
11770 (c-restricted-<>-arglists): New more appropriate name for
11771 `c-disallow-comma-in-<>-arglists'.
11773 Accessing functions updated for the variable name change.
11775 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
11776 match data could get clobbered if NOT-INSIDE-TOKEN is used.
11778 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
11781 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
11782 instead of duplicating parts of it. This fixes bogus label
11785 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
11786 of checking the context in which to apply the minimum indentation,
11787 so that it isn't enforced in e.g. namespace blocks.
11789 * cc-vars.el (c-inside-block-syms): New constant used by
11790 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
11791 to somewhat reduce the risk of becoming stale.
11793 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
11794 cc-cmds to cc-engine to allow use from cc-align.
11796 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
11797 qualified identifiers containing "::".
11799 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
11800 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
11802 * cc-vars.el (c-emacs-features): Use a space in front of the name
11803 of the temporary buffer. That also avoids dumping problems in
11804 XEmacs due to undo info being left around after the buffer is killed.
11806 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
11807 arglist to see if it's a K&R style declaration.
11809 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
11810 before returning `knr-argdecl-intro'.
11812 2003-11-16 John Wiegley <johnw@newartisans.com>
11814 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
11815 field in a long-listing always 8 characters, use `size-width',
11816 which has already been computed.
11818 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
11820 * subr.el (minor-mode-list): Add `hs-minor-mode'.
11822 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
11824 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
11825 Support operation while narrowed, with `diff-restrict-view'.
11827 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
11829 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11830 Take additional optional arg NARROWFUN. For the generated functions:
11831 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
11832 include frags that arrange to check for and save narrowing state before
11833 the move and then conditionally call NARROWFUN after the move.
11835 2003-11-14 John Wiegley <johnw@newartisans.com>
11837 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
11838 that was optional, but obviously missing based on surrounding code.
11840 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
11841 string arguments to numbers unless the whole argument was seen as
11844 2003-11-14 Kenichi Handa <handa@m17n.org>
11846 * international/mule.el (ctext-non-standard-encodings-alist):
11847 Fix coding systems.
11849 2003-11-10 Kenichi Handa <handa@m17n.org>
11851 * language/kannada.el ("Kannada"): Add sample-text.
11853 * language/knd-util.el (kannada-compose-region)
11854 (kannada-compose-string, kannada-post-read-conversion):
11855 Add autoload cookie.
11857 * international/quail.el (quail-completion): Change the message
11858 "corresponding translations" to "corresponding characters".
11860 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
11862 * descr-text.el (describe-char): Fix typo.
11864 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
11866 These changes are to support Kannada language/script.
11868 * Makefile.in (DONTCOMPILE): Add kannada.el.
11870 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
11872 * loadup.el: Preload kannada.el.
11874 * language/ind-util.el (ucs-kannada-to-is13194-alist)
11875 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
11878 * language/kannada.el: New file.
11880 * language/knd-util.el: New file.
11882 2003-11-07 Andreas Schwab <schwab@suse.de>
11884 * progmodes/autoconf.el (autoconf-font-lock-keywords):
11885 Also highlight AH_*.
11887 * xml.el (xml-parse-dtd): Fix misplaced paren.
11889 2003-11-07 Kenichi Handa <handa@m17n.org>
11891 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
11893 2003-11-05 Juri Linkov <juri@jurta.org>
11895 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
11896 (desktop-buffer-file): Use saved buffer-file-coding-system
11897 for file reading. Set auto-insert to nil to prevent automatic
11898 insertion into restored empty files.
11900 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
11902 * files.el (risky-local-variable-p): Make second argument optional.
11904 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11906 * subr.el (add-hook): Fix last change.
11908 2003-11-03 Eli Zaretskii <eliz@gnu.org>
11910 * mail/rmail.el (rmail-convert-to-babyl-format):
11911 If base64-decode-region signals an error, catch it and silently
11914 2003-11-01 Mark A. Hershberger <mah@everybody.org>
11916 * xml.el (xml-parse-region): Allow comments to appear after the
11917 topmost element has closed.
11918 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
11919 (xml-ns-expand-attr): New functions to do namespace handling.
11920 (xml-intern-attrlist): Back-compatible handling of attribute names.
11921 (xml-parse-tag): Move namespace handling to separate functions.
11922 Now produces elements in the form ((:ns . "element") (attr-list)
11923 children) instead of ('ns:element (attr-list) children).
11924 (xml-parse-attlist): Fix attribute parsing.
11925 (xml-parse-dtd): Change parsing so that it produces strings
11926 instead of interned symbols.
11928 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
11930 * dired.el (dired-ls-sorting-switches): Doc fix.
11932 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
11934 * emacs-lisp/rx.el (rx-or): Fix the case of
11935 "(rx (and ?a (or ?b ?c) ?d))".
11937 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
11939 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
11940 (texinfo-format-region): Use it.
11941 (texinfo-format-buffer-1): Ditto.
11943 2003-11-01 Alan Mackenzie <acm@muc.de>
11945 Changes to allow scrolling whilst in isearch mode:
11946 * isearch.el (isearch-unread-key-sequence): New function,
11947 extracted from isearch-other-meta-char.
11948 (top level): (put 'foo 'isearch-scroll) on all Emacs's
11949 "scrollable" standard functions.
11950 (isearch-allow-scroll): New customizable variable.
11951 (isearch-string-out-of-window, isearch-back-into-window)
11952 (isearch-reread-key-sequence-naturally)
11953 (isearch-lookup-scroll-key): New functions.
11954 (isearch-other-meta-char): Doc string and functionality enhanced.
11955 Now accepts a prefix argument.
11956 (isearch-lazy-highlight-window-end): New variable.
11957 (isearch-lazy-highlight-new-loop): Pay attention to the window's
11958 end (thru isearch-lazy-highlight-window-end), not only its start.
11960 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
11961 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
11962 (universal-argument, universal-argument-more, negative-argument)
11963 (digit-argument, universal-argument-other-key): Minor changes.
11965 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
11967 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
11968 recursively if the last message is deleted, thus avoiding an
11971 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
11973 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
11974 (tex-main-file): Don't add .tex if the extension is already present.
11975 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
11977 2003-10-29 Lute Kamstra <lute@gnu.org>
11979 * progmodes/octave-inf.el (inferior-octave-prompt):
11980 Recognize version number in prompt.
11982 2003-10-28 Dave Love <fx@gnu.org>
11984 * international/characters.el: Fix some Unicode ranges.
11986 2003-10-28 Kenichi Handa <handa@m17n.org>
11988 * disp-table.el (standard-display-8bit)
11989 (standard-display-default, standard-display-ascii)
11990 (standard-display-g1, standard-display-graphic)
11991 (standard-display-underline): Assure that standard-display-table
11992 is a display table.
11994 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
11996 * simple.el (reindent-then-newline-and-indent): Delete space *after*
11997 reindenting the first line.
11999 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
12001 * wid-edit.el (widget-default-delete): Always delete child widgets.
12003 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
12005 * newcomment.el (comment-indent): Don't call indent-according-to-mode
12006 if the line has code.
12007 Don't try to line up with something that's too far left.
12009 * progmodes/octave-mod.el (octave-comment-start): Simplify.
12010 (octave-mode-syntax-table): Add % as a comment starter.
12011 (octave-point): Remove.
12012 (octave-in-comment-p, octave-in-string-p)
12013 (octave-not-in-string-or-comment-p, calculate-octave-indent)
12014 (octave-blink-matching-block-open, octave-auto-fill):
12015 Use line-(beginning|end)-position instead.
12017 2003-10-23 Francesco Potort
\e,Al
\e(B <pot@gnu.org>
12019 * emacs-lisp/authors.el (authors-aliases): Add correct realname
12020 for Francesco Potort
\e,Al
\e(B.
12022 2003-10-23 Dave Love <fx@gnu.org>
12024 * international/mule-cmds.el (locale-charset-to-coding-system):
12025 Don't rely on nil being a coding system.
12027 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
12028 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
12029 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
12031 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
12033 * gdb-ui.el (gdb-current-language): New variable.
12034 (gdb-update-flag): Remove variable.
12035 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
12036 (gdb-take-last-elt): Remove function.
12037 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
12038 (gdb-post-prompt): Check for variable object changes here.
12040 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
12041 object changes in gdb-ui.el.
12043 2003-10-21 Richard M. Stallman <rms@gnu.org>
12045 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
12047 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
12048 Don't check for foo*/ wildcard form here.
12049 (insert-directory): Recognize foo*/ as a wildcard.
12050 Separate wildcard-regexp variable from the arg, wildcard.
12052 * subr.el (add-hook): Correctly detect when make-local-hook was used.
12053 (remove-hook): Correctly handle strange cases about local hooks.
12055 2003-10-21 David Ponce <david@dponce.com>
12057 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
12058 argument REAL, to return a real number instead of a rounded
12059 integer value. Define as inline function.
12060 (ruler-mode-right-fringe-cols): Likewise.
12061 (ruler-mode-scroll-bar-cols): New function.
12062 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
12063 (ruler-mode-right-scroll-bar-cols): Likewise.
12064 (ruler-mode-space): New function.
12065 (ruler-mode-ruler): Use it. Handle variations of fringe style,
12066 scroll bar mode and margins in a more robust way.
12068 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
12070 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
12071 (antlr-c-init-language-vars): New function.
12072 (antlr-mode): Use it with cc-mode before v5.29.
12073 (antlr-c-common-init): Don't set some local vars here.
12074 (antlr-mode): Set them here.
12075 (antlr-c-forward-sws): New function alias.
12076 (antlr-mode): Redefine with cc-mode before v5.30.
12077 (antlr-skip-sexps): Use it.
12078 (antlr-skip-exception-part): Ditto.
12079 (antlr-skip-file-prelude): Ditto.
12080 (antlr-outside-rule-p): Ditto.
12081 (antlr-end-of-body): Ditto.
12082 (antlr-option-kind): Ditto.
12083 (antlr-insert-option-area): Ditto.
12084 (antlr-file-dependencies): Ditto.
12086 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12088 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
12089 Move backward only if point was not inside an entry.
12091 2003-10-21 Richard M. Stallman <rms@gnu.org>
12093 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
12095 2003-10-21 Juri Linkov <juri@jurta.org>
12097 * compare-w.el: Automatically skip non-matching text to resync.
12098 (compare-windows-whitespace): Doc fix.
12099 (compare-windows-sync, compare-windows-sync-string-size)
12100 (compare-windows-recenter, compare-ignore-whitespace)
12101 (compare-windows-highlight, compare-windows-face): New variables.
12102 (compare-windows): Use compare-windows-sync.
12103 (compare-windows-highlight, compare-windows-dehighlight)
12104 (compare-windows-sync-regexp)
12105 (compare-windows-sync-default-function): New functions.
12107 2003-10-21 Juri Linkov <juri@jurta.org>
12109 * diff.el (diff-parse-differences): Don't visit the files now;
12110 instead, just record the error locus.
12112 2003-10-21 Dave Love <fx@gnu.org>
12114 * progmodes/cfengine.el: New file.
12116 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
12118 * complete.el (PC-do-completion): Do not forget to use `pred' as the
12119 default-directory when completing file names.
12121 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
12123 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
12124 followed by the word `face', it gets treated as a face, even if
12125 it is also defined as a variable or a function.
12127 2003-10-20 Dave Love <fx@gnu.org>
12129 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12130 Avoid incf in macro expansion.
12132 2003-10-20 John Paul Wallington <jpw@gnu.org>
12134 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
12135 `evenp' so we don't implicitly require cl library at runtime.
12137 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
12139 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
12140 (help-make-xrefs): Only make cross-references for faces if
12141 preceded or followed by the word `face'. Do not make a
12142 cross-reference for variables without variable documentation,
12143 unless preceded by the word `variable' or `option'. Update doc
12144 string accordingly.
12146 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
12148 * progmodes/hideshow.el: Rewrite one-armed `if'
12149 constructs using either `when' or `unless'.
12150 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
12152 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
12154 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
12155 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
12158 2003-10-16 Eli Zaretskii <eliz@gnu.org>
12160 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
12161 message while converting to Babyl.
12163 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
12165 * allout.el (allout-mode): Doc fix.
12167 2003-10-16 Lute Kamstra <lute@gnu.org>
12169 * subr.el (force-mode-line-update): Fix docstring.
12171 2003-10-14 Dave Love <fx@gnu.org>
12173 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
12174 (default-input-method): Add :link, improve :type.
12175 (locale-charset-language-names): Fix utf-8 pattern.
12176 (locale-charset-match-p, locale-charset-alist)
12177 (locale-charset-to-coding-system): New.
12178 (set-locale-environment): Deal with codeset part of locale specs.
12180 2003-10-14 Lute Kamstra <lute@gnu.org>
12182 * fringe.el (fringe-mode): Use active voice in docstring.
12183 (set-fringe-style): Ditto.
12185 2003-10-13 Lute Kamstra <lute@gnu.org>
12187 * fringe.el (fringe-mode): Fix docstring.
12188 (set-fringe-style): Ditto.
12190 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
12192 * ediff-mult.el (ediff-filegroup-action):
12193 Use ediff-default-filtering-regexp.
12195 * ediff-util.el (ediff-recenter): Don't call
12196 ediff-restore-highlighting twice.
12197 (ediff-select-difference): Set current difference.
12198 (ediff-unselect-and-select-difference): Add comment.
12200 * ediff.el (ediff-directories,ediff-directory-revisions)
12201 (ediff-directories3,ediff-merge-directories)
12202 (ediff-merge-directories-with-ancestor)
12203 (ediff-merge-directory-revisions)
12204 (ediff-merge-directory-revisions-with-ancestor):
12205 Use ediff-default-filtering-regexp.
12207 2003-10-12 Andreas Schwab <schwab@suse.de>
12209 * international/mule-cmds.el (locale-charset-language-names):
12210 Simplify regex by removing unused grouping.
12212 2003-10-10 Dave Love <fx@gnu.org>
12214 * bindings.el: Don't bind stop.
12216 2003-10-08 Miles Bader <miles@gnu.org>
12218 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
12219 face instead of attempting to emulate it.
12221 2003-10-07 Kenichi Handa <handa@m17n.org>
12223 * international/mule-diag.el (list-coding-systems-1): List coding
12224 systems that are loaded automatically.
12226 * international/code-pages.el (iso-8859-11): Add autoload cookie.
12228 * international/mule.el (autoload-coding-system): New function.
12230 2003-10-07 Andreas Schwab <schwab@suse.de>
12232 * log-edit.el (log-edit-changelog-entries): Prefer local value of
12233 change-log-default-name in the buffer visiting the file.
12235 2003-10-06 Dave Love <fx@gnu.org>
12237 * files.el (find-file-hook): Customize.
12238 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
12240 * bindings.el (completion-ignored-extensions): Remove .log.
12241 (global-map): Add again, open, stop keys.
12243 2003-10-05 Richard M. Stallman <rms@gnu.org>
12245 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
12246 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
12247 Use sh-modify directly.
12248 (sh-select): Use sh-append, not eval.
12250 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
12252 * info.el (Info-following-node-name): New function.
12254 * loadhist.el (unload-feature-special-hooks):
12255 Rename from loadhist-hook-functions.
12256 (loadhist-hook-functions): Now an alias.
12258 2003-10-04 Eli Zaretskii <eliz@gnu.org>
12260 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
12261 file-name clashes on 8+3 filesystems.
12263 * Makefile.in (DONTCOMPILE, bootstrap-clean):
12264 Rename loaddefs-boot.el to ldefs-boot.el
12266 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
12267 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
12269 2003-10-03 Lute Kamstra <lute@gnu.org>
12271 * info.el (Info-mode): Revert previous change.
12272 (Info-escape-percent): New function.
12273 (Info-fontify-node): Use it.
12275 2003-10-02 Andreas Schwab <schwab@suse.de>
12277 * loaddefs-boot.el: Regenerated.
12279 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
12281 * ffap.el: Remove defadvice related code from CVS since `complete'
12282 provides a `PC-completion-as-file-name-predicate' variable that
12285 2003-10-02 Kenichi Handa <handa@m17n.org>
12287 * international/utf-8.el (ccl-decode-mule-utf-8):
12288 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
12290 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
12291 * international/subst-big5.el: Likewise.
12292 * international/subst-gb2312.el: Likewise.
12293 * international/subst-ksc.el: Likewise.
12295 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
12297 * calendar/calendar.el (increment-calendar-month)
12298 (calendar-leap-year-p, calendar-absolute-from-gregorian)
12299 (generate-calendar, calendar-read-date, calendar-interval)
12300 (calendar-day-of-week): Handle years BC.
12301 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
12303 2003-10-01 Dave Love <fx@gnu.org>
12305 * language/cyrillic.el (cp1251): Alias for windows-1251.
12307 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
12310 2003-10-01 Lute Kamstra <lute@gnu.org>
12312 * files.el: Fix typo.
12313 * imenu.el (imenu--generic-function): Docstring fix.
12315 2003-09-30 Richard M. Stallman <rms@gnu.org>
12317 * dired.el (dired-mode): Handle dired-directory as a list.
12319 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
12321 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
12323 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
12325 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
12326 Replace gud-display with gud-watch.
12327 (gud-speedbar-buttons): Add stuff for watching expressions
12328 in the speedbar when using M-x gdba. Use dolist on old part
12331 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
12332 (gdb-update-flag): New variables.
12333 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
12334 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
12335 (gud-watch, gdb-var-create-handler) : New functions.
12336 (gdb-var-list-children, gdb-var-list-children-handler)
12337 (gdb-var-create-regexp, gdb-var-update-regexp)
12338 (gdb-var-list-children-regexp): New constants.
12339 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
12340 (gdb-annotation-rules): Reduce annotation set (level 3).
12341 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
12342 (gdb-post-prompt): Don't update GDB buffers every time speedbar
12344 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
12345 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
12346 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
12347 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
12348 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
12349 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
12350 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
12351 (gud-display, gud-display1)
12352 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
12353 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
12354 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
12355 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
12356 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
12357 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
12358 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
12359 (gdb-display-display-buffer, gdb-toggle-display)
12360 (gdb-delete-display, gdb-expressions-popup-menu)
12361 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
12362 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
12365 2003-09-30 Richard M. Stallman <rms@gnu.org>
12367 * progmodes/ada-mode.el (ada-mode): Don't use advice.
12368 Instead, set which-func-functions.
12370 * progmodes/which-func.el (which-func-modes): Add ada-mode.
12371 (which-func-functions): New variable.
12372 (which-function): Use that.
12374 * info.el (Info-mode): Double each `%' in header line.
12376 * emacs-lisp/lisp-mnt.el (lm-with-file):
12377 When FILE is nil, run BODY in current buffer.
12379 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
12381 * help.el (describe-mode): Start with a brief list of minor modes.
12382 Find them thru minor-mode-list so as to find them all.
12383 Show them in alphabetical order.
12385 * mail/sendmail.el (mail-aliases): Doc fix.
12387 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
12389 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
12391 * mail/rmailsum.el (rmail-make-summary-line-1):
12392 Change comma after last label to a space.
12393 (rmail-summary-font-lock-keywords): Adapt to that change.
12395 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
12397 * progmodes/scheme.el (scheme-mode-variables): When setting
12398 `font-lock-defaults', also specify that "#" should
12399 be interpreted with `word' syntax.
12400 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
12402 2003-09-30 Lars Hansen <larsh@math.ku.dk>
12404 * desktop.el: A lot of comments updated.
12405 (desktop-save-mode): Minor mode introduced.
12406 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
12407 (desktop-load-default): Function made obsolete.
12408 (desktop-locals-to-save): Variable made customizable.
12409 (desktop-read): Optional parameter `dirname' added.
12410 (desktop-change-dir, desktop-revert): Parameter `dirname' in
12411 `desktop-read' used.
12412 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
12414 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
12416 * whitespace.el (whitespace-clean-msg): Add user customizable message
12417 for displaying ``clean'' output.
12418 (whitespace-buffer): Use `whitespace-clean-msg'.
12419 (whitespace-global-mode): Fix typo.
12421 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
12423 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
12425 2003-09-29 Lute Kamstra <lute@gnu.org>
12427 * bindings.el (mode-line-modes): Remove superfluous :propertize
12428 construct in initialization.
12429 (mode-line-position): Change cons cell into proper list in
12432 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
12434 * international/mule.el (decode-coding-inserted-region): Use car
12435 of the return value of find-operation-coding-system.
12437 2003-09-29 Kenichi Handa <handa@m17n.org>
12439 * descr-text.el (describe-char): Fix previous change.
12441 2003-09-28 Kenichi Handa <handa@m17n.org>
12443 * descr-text.el (describe-char-display): New function.
12444 (describe-char): Pay attention to display table on describing how
12445 a character is displayed.
12447 * international/mule-cmds.el (encoded-string-description):
12448 Prepend "0x" to each encoded byte.
12450 2003-09-28 Andreas Schwab <schwab@suse.de>
12452 * find-file.el (ff-special-constructs): Add autoload cookie.
12454 2003-09-28 Kevin Ryde <user42@zip.com.au>
12456 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
12457 makeinfo appends to duplicate index entries.
12459 2003-09-28 Eli Zaretskii <eliz@gnu.org>
12461 * dired-x.el (dired-clean-tex): Doc fix.
12463 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
12464 using a Chinese tutorial.
12466 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
12468 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
12469 between "MAIL FROM:" and "RCPT TO:" and the following address.
12471 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
12473 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
12475 2003-09-28 David Ponce <david@dponce.com>
12477 * recentf.el (recentf-initialize-file-name-history): New defcustom.
12478 (recentf-load-list): When `recentf-initialize-file-name-history'
12479 is non-nil, initialize an empty `file-name-history' with the
12482 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
12484 * man.el (Man-default-man-entry): Remove the leading `*' from the
12487 2003-09-26 Lute Kamstra <lute@gnu.org>
12489 * bindings.el (mode-line-position): Mention size indication in
12492 2003-09-26 Andre Spiegel <spiegel@gnu.org>
12494 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
12496 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
12497 because it's autoloaded now.
12499 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
12501 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
12502 (sh-font-lock-keywords, sh-feature): Fix previous change of
12503 sh-feature to avoid infloop with sh-font-lock-keywords.
12505 2003-09-25 Kim F. Storm <storm@cua.dk>
12507 * frame.el (frame-current-scroll-bars): New defun.
12509 * window.el (window-current-scroll-bars): New defun.
12511 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12513 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
12514 cause errors when the state cache contains info on parts that have
12517 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12519 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
12520 `c-setup-paragraph-variables' has to be used when this variable is
12521 changed; it doesn't work to reinitialize the mode since that
12522 typically clobbers the variable.
12524 * progmodes/cc-styles.el (c-setup-paragraph-variables):
12525 Make it interactive.
12527 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12529 * progmodes/cc-fonts.el (c-font-lock-declarations):
12530 Fix recognition of constructors and destructors for classes whose
12531 names are matched by `*-font-lock-extra-types'.
12533 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
12534 followed by an identifier in C++ then it's a type.
12536 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12538 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
12539 problem that primarily affected XEmacs. Don't use faces to find
12540 unterminated strings since Emacs and XEmacs fontify strings
12541 differently - this function should now work better in XEmacs.
12543 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12545 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
12546 `expand-abbrev' workaround which caused braces to misbehave inside
12549 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
12550 handling. This bug could cause interactive font locking to bail out.
12552 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
12554 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
12555 Handle paren-style types in Pike. Also fixed some cases of
12556 insufficient handling of unbalanced parens.
12558 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
12560 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
12561 common shell prompts that are not common filename or URL characters.
12562 (ffap-file-at-point): Use the new regexp to strip the prompts from
12563 the file names. This is an issue mostly for user prompts that
12564 don't have a trailing space and find-file-at-point is invoked from
12565 within a shell inside Emacs.
12567 2003-09-24 Andre Spiegel <spiegel@gnu.org>
12569 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
12570 stamps numerically, rather than textually.
12572 2003-09-24 Kenichi Handa <handa@m17n.org>
12574 * language/devan-util.el (devanagari-post-read-conversion):
12575 * language/mlm-util.el (malayalam-post-read-conversion):
12576 * language/tml-util.el (tamil-post-read-conversion):
12577 Add autoload cookie.
12579 * international/utf-8.el (utf-8-post-read-conversion):
12580 Call post-read-conversion functions for Devanagari, Malayalam,
12583 2003-09-23 Dave Love <fx@gnu.org>
12585 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
12587 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
12589 * progmodes/gud.el (perldb): Add gud-until to list of commands.
12592 2003-09-22 Richard M. Stallman <rms@gnu.org>
12594 * progmodes/sh-script.el (sh-mode-default-syntax-table):
12595 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
12596 (sh-mode-syntax-table-input): New variable.
12597 (sh-require-final-newline): Don't use eval.
12598 (sh-builtins, sh-leading-keywords, sh-other-keywords)
12599 (sh-variables, sh-font-lock-keywords): Don't use eval.
12600 (sh-set-shell): When setting require-final-newline,
12601 treat value = `require-final-newline' as don't change it.
12602 Set sh-mode-syntax-table locally based on
12603 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
12605 * progmodes/compile.el (compile-internal):
12606 Call compilation-set-window-height before setting window start.
12608 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
12610 * emacs-lisp/bytecomp.el (byte-compile-log-file):
12611 Clear out byte-compile-last-warned-form.
12613 2003-09-22 Richard M. Stallman <rms@gnu.org>
12615 * woman.el (woman-file-name, woman-follow-word):
12616 If current-word returns nil, use "".
12618 * simple.el (eval-expression): Bind standard-output in to-buffer case.
12620 2003-09-22 Richard M. Stallman <rms@gnu.org>
12622 * emacs-lisp/lisp-mnt.el (lm-with-file):
12623 Don't visit the file, just use insert-file-contents in temp buffer.
12625 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
12627 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
12628 Add surrounding \\( and \\) around the header, as in
12629 for lm-history-header 'Change Log\\|History'.
12631 2003-09-22 John Paul Wallington <jpw@gnu.org>
12633 * progmodes/ld-script.el: Add Commentary section,
12634 minor cleanup of file header.
12635 (ld-script-font-lock-keywords): Doc fix.
12636 (toplevel): Provide `ld-script' feature.
12638 2003-09-21 Kim F. Storm <storm@cua.dk>
12640 * scroll-bar.el (set-scroll-bar-mode): Initialize to
12641 new built-in variable default-frame-scroll-bars.
12642 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
12643 scroll-bar-mode; notably, use it instead of t when we toggle
12645 (toggle-scroll-bar): Use default-frame-scroll-bars.
12647 2003-09-19 Masatake YAMATO <jet@gyve.org>
12649 * pcvs.el (cvs-do-removal): Change the prompt depending on
12652 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
12654 * startup.el (command-line-1): Stop startup-echo-area-message
12655 being hidden by "Loading image..." message.
12656 (use-fancy-splash-screens-p, display-splash-screen):
12657 Move display-graphic-p test from latter to former.
12659 * progmodes/sh-script.el (sh-font-lock-keywords):
12660 Highlight escaped EOLs differently from other backslash constructs.
12662 2003-09-19 Richard M. Stallman <rms@gnu.org>
12664 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
12666 (edebug-enter, edebug-outside-excursion): Use them.
12668 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
12669 Fix the condition for whether to print "In WHERE".
12671 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
12673 * finder.el (finder-mode-hook): New variable.
12674 (finder-mode): Run hook finder-mode-hook
12676 2003-09-18 Masatake YAMATO <jet@gyve.org>
12678 * progmodes/ebrowse.el: Fix broken magic autoload comments.
12680 2003-09-17 Mario Lang <mlang@delysid.org>
12682 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
12683 "p %e" to actually print the value in the GUD buffer.
12685 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
12687 From David Ponce <david.ponce@wanadoo.fr>:
12688 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
12689 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
12690 from loaddefs-boot.el if necessary.
12692 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
12694 * progmodes/gud.el (gud-find-class): Make jdb work again since
12695 cc-mode changed the syntactic information.
12697 2003-09-15 David Ponce <david@dponce.com>
12699 * recentf.el: (recentf-exclude): Accept predicates too.
12700 (recentf-file-readable-p): New function.
12701 (recentf-include-p): Handle predicates in recentf-exclude.
12702 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
12703 (recentf-cleanup): Likewise.
12704 (recentf-save-list): Use write-file to handle backup of
12707 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
12709 * loaddefs-boot.el: Renamed from `loaddefs.el'
12710 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
12711 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
12714 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
12716 * electric.el (Electric-pop-up-window): For the `one-window' case,
12717 no longer disconcertingly move point in the original buffer.
12719 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12721 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
12723 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
12725 * dired.el (dired-mode-map): Fix typo.
12727 2003-09-11 Richard M. Stallman <rms@gnu.org>
12729 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
12731 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
12733 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
12734 the function is less noisy. Now only `kill-buffer' can ask questions.
12736 2003-09-10 Mario Lang <mlang@delysid.org>
12738 * battery.el: Update Commentary and Copyright.
12739 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
12740 appear due to wrong ordering of the expressions in `or'.
12742 2003-09-09 Lute Kamstra <lute@gnu.org>
12744 * misc.el (upcase-char): Fix docstring.
12745 (zap-up-to-char): New command.
12747 2003-09-08 David Ponce <david@dponce.com>
12749 Ensure that recentf correctly updates the menu bar.
12750 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
12751 (recentf-menu-bar): New function.
12752 (recentf-clear-data): Use it
12753 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
12754 of easy-menu-change.
12756 2003-09-08 Lute Kamstra <lute@gnu.org>
12758 * simple.el (size-indication-mode): New.
12759 * bindings.el (mode-line-position): Add buffer size indicator.
12761 2003-09-04 Mario Lang <mlang@delysid.org>
12763 * battery.el (battery-linux-proc-acpi): New function.
12764 (battery-status-function): Modify default value calculation to also
12765 check for availability of ACPI.
12766 (battery-echo-area-format): Ditto.
12767 (battery-mode-line-format): Ditto.
12769 2003-09-06 Dave Love <fx@gnu.org>
12771 * ielm.el (ielm-mode-hook): Add :options.
12773 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
12774 (eldoc-print-current-symbol-info): Use it.
12776 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
12778 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
12779 being displayed in GUD buffer.
12780 (gdb-idle-input-queue): Remove var. Use just one queue.
12781 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
12782 Remove functions. Use just one queue.
12783 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
12784 (gdb-invalidate-assembler, gdb-get-current-frame):
12785 Modify functions. Use just one queue.
12787 2003-09-04 Dave Love <fx@gnu.org>
12789 * cus-start.el: Add blink-cursor-alist.
12791 * ruler-mode.el (ruler-mode-fill-column-char)
12792 (ruler-mode-current-column-char): Use char-displayable-p,
12795 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
12797 * language/european.el (windows-1252): Move from code-pages.
12799 * language/cyrillic.el ("Windows-1251"): Delete.
12800 ("Bulgarian", "Belarusian"): Remove `features'.
12801 (windows-1251): Move from code-pages.
12803 * international/mule-diag.el (non-iso-charset-alist):
12804 Remove `codepage' stuff.
12805 (print-designation, list-coding-systems-1): Output fixes.
12807 * international/code-pages.el (cp-make-translation-table)
12808 (cp-valid-codes): Made defsubsts.
12809 (cp-fix-safe-chars): Delete.
12810 (mule-diag): Don't require.
12811 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
12812 (top-level): Check for defined coding system when defining
12813 cp... aliases. Change w32-add-charset-info test to avoid warning.
12814 (non-iso-charset-alist): Defvar when compiling.
12815 (cp-make-coding-system): Doc fix.
12817 2003-09-02 Jason Rumney <jasonr@gnu.org>
12819 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
12820 line-ends from CVS before doing conversion.
12822 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
12824 * calendar/diary-lib.el (diary-header-line-flag)
12825 (diary-header-line-format): New variables.
12826 (list-diary-entries): Use them to set header line in simple diary.
12828 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
12829 other than font-lock-string-face to highlight backslashes.
12831 2003-09-01 Jason Rumney <jasonr@gnu.org>
12833 * international/titdic-cnv.el (tit-read-key-value): Include \r in
12836 2003-09-01 Dave Love <fx@gnu.org>
12838 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
12840 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
12841 and :help; also line and column numbers labels.
12843 * international/mule-util.el (char-displayable-p): Move from
12844 latin1-disp, rename and autoload.
12846 * international/latin1-disp.el (latin1-char-displayable-p):
12847 Now obsolete alias. Replace uses with char-displayable-p.
12848 (latin1-display-ucs-per-lynx): Fix last change.
12850 * international/mule-cmds.el (standard-display-european-internal):
12851 Don't use char code for Latin-1 NBSP.
12852 <XFree86 4>: Unfrob NBSP display table. Set display table to use
12853 U+2018, U+2019 for `'.
12854 (select-safe-coding-system): Message fix.
12856 2003-09-01 Kenichi Handa <handa@m17n.org>
12858 * international/fontset.el (setup-default-fontset): For Thai
12859 font, specify "*" family.
12861 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
12863 * progmodes/compile.el (previous-error): Accept a prefix
12864 argument, similarly to next-error.
12866 2003-08-31 Masatake YAMATO <jet@gyve.org>
12868 * pcvs.el (cvs-do-removal): Use = instead of eq to check
12869 the number of files. Bind the number of files to a local
12870 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
12872 2003-08-30 Eli Zaretskii <eliz@gnu.org>
12874 * vc-hooks.el (vc-make-version-backup): Fix the change made on
12875 2003-07-26: msdos-long-file-names is a function, not a variable.
12877 2003-08-29 Richard M. Stallman <rms@gnu.org>
12879 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
12880 Do nothing with mail-personal-alias-file if it is nil.
12882 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
12883 Do nothing if mail-personal-alias-file is nil.
12885 * term.el (term-exec-1): Bind coding-system-for-read.
12887 * dired.el (dired-mouse-find-file-other-window):
12888 Use dired-view-command-alist here, as in dired-view-file.
12889 (dired-view-command-alist): Use %s to substitute file name.
12890 Handle .ps_pages, .eps, .jpg, .gif, .png.
12892 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
12894 * info.el (Info-mode-map): Bind S-tab and <backtab> to
12895 `Info-prev-reference', instead of M-tab.
12897 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
12899 * simple.el (blink-matching-open): Work correctly on chars that
12900 are designated as parens through the syntax-table text property.
12902 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
12904 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
12905 line break position in the middle of a non-kinsoku (e.g. latin)
12906 word, making it skip until either a space or a character with
12908 (kinsoku-longer): Test for end of buffer.
12910 2003-08-28 Eli Zaretskii <eliz@gnu.org>
12912 * mail/rmail.el (rmail-convert-to-babyl-format):
12913 Detect quoted-printable- and base64-encoded messages and decode them
12914 automatically. Set the message's encoding from the charset=
12915 header, if any. Decode base64-encoded messages in Mail format as well.
12917 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
12919 * mail/smtpmail.el: Fix previous change.
12920 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
12921 calling smtpmail-via-smtp.
12922 (smtpmail-via-smtp): Add fall-back values for envelope-from.
12924 2003-08-26 John Paul Wallington <jpw@gnu.org>
12926 * image.el (image-jpeg-p): Don't search beyond length of data.
12928 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
12930 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
12931 misfeature in `expand-abbrev' which caused electric keywords like
12932 "else" to disappear if an open brace was typed directly afterwards.
12934 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
12936 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
12937 mandatory in `define-widget'.
12939 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
12940 Don't align the operators "!=", "<=" and ">=" as assignment operators.
12942 (c-assignment-operators): New language constant that only contains
12943 the assignment operators.
12945 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
12947 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
12949 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
12950 Safeguard against unbalanced sexps.
12952 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
12954 * version.el (emacs-version): Check for gtk. Include gtk version info.
12956 2003-08-25 John Paul Wallington <jpw@gnu.org>
12958 * man.el (Man-default-man-entry): Don't whizz past the section
12959 number before looking for it.
12961 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
12963 * progmodes/gud.el (gud-display-line): Don't set window-point if
12964 source buffer is not visible. (Only happens with M-x gdba.)
12966 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
12968 (gdb-source, gdb-source-info): Update to assembler unnecessary
12969 as its done after each GDB command anyway.
12970 (gdb-pre-prompt): Use with-current-buffer.
12971 (gdb-insert-field): Add help-echo text.
12972 (gdb-invalidate-assembler): Re-display of assembler now done in
12973 gdb-info-breakpoints-custom.
12974 (gdb-info-breakpoints-custom): Force re-display of assembler to
12975 happen *after* update of breakpoints buffer.
12976 (gdb-display-source-buffer): Don't choke if gdb-source-window
12978 (gdb-put-string, gdb-put-arrow): Remove free variables.
12980 2003-08-24 John Paul Wallington <jpw@gnu.org>
12982 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
12984 * man.el (Man-default-man-entry): Strip text properties when
12985 snarfing parts of entry because `format' preserves properties.
12987 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
12989 * files.el (file-newest-backup): Use `expand-file-name'.
12991 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
12992 Allow the diary to pop up a new frame, if needed.
12994 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
12995 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
12996 (smtpmail-send-it): Make treatment of envelope-from consistent with
12999 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
13000 (sh-leading-keywords): Add the bash `time' reserved word.
13001 (sh-variables): Add some bash variables.
13002 (sh-add-completer): Fix nil branch of case statement.
13004 2003-08-24 Masatake YAMATO <jet@gyve.org>
13006 * progmodes/ld-script.el: New file.
13008 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
13010 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
13012 2003-08-23 Andre Spiegel <spiegel@gnu.org>
13014 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
13015 Better explain obsolescence, and what to use instead.
13017 2003-08-23 Masatake YAMATO <jet@gyve.org>
13019 * pcvs.el (cvs-do-removal): Show the deleted file name
13022 2003-08-20 Dave Love <fx@gnu.org>
13024 * international/mule.el (make-coding-system)
13025 (set-buffer-file-coding-system): Doc fix.
13027 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
13029 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
13031 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
13033 * international/utf-16.el: Add mime-text-unsuitable coding system
13036 * international/latin1-disp.el (latin1-display): Add ?
\e$,1s"
\e(B.
13038 * cus-edit.el: Add some :links.
13041 * textmodes/bib-mode.el (bib): Add :group external.
13043 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
13045 * wid-edit.el (widget-echo-help): Make it handle expressions that
13046 evaluate to strings.
13048 2003-08-18 Michael Mauger <mmaug@yahoo.com>
13050 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
13052 Simplify selection of SQL products to define highlighting and
13053 interactive mode. Includes detailed instructions on adding
13054 support for new products.
13056 * progmodes/sql.el (sql-product): New variable. Identifies SQL
13057 product for use in highlighting and interactive mode.
13058 (sql-interactive-product): New variable. SQL product for
13059 sql-interactive-mode.
13060 (sql-product-support): New variable. Specifies product-specific
13061 parameters to drive highlighting and interactive mode.
13062 (sql-imenu-generic-expression): Add more object types.
13063 (sql-sqlite-options): Correct comment.
13064 (sql-ms-program): Use "osql" rather than "isql".
13065 (sql-prompt-regexp, sql-prompt-length): Update comment.
13066 (sql-mode-menu): Add "Start SQLi session" entry.
13067 Replace Highlighting submenu with Product menu. Fix Send Region entry.
13068 (sql-mode-abbrev-table): Add abbreviations. Support of
13069 SYSTEM-FLAG on define-abbrev. Support was removed with last
13070 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
13071 (sql-mode-font-lock-object-name): Add font-lock pattern for object
13073 (sql-mode-ansi-font-lock-keywords): Set as default value.
13074 (sql-mode-oracle-font-lock-keywords): Set as default value.
13075 Support Oracle 9i keywords.
13076 (sql-mode-postgres-font-lock-keywords): Set as default value.
13077 (sql-mode-linter-font-lock-keywords): Set as default value.
13078 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
13080 (sql-mode-sybase-font-lock-keywords)
13081 (sql-mode-interbase-font-lock-keywords)
13082 (sql-mode-sqlite-font-lock-keywords)
13083 (sql-mode-strong-font-lock-keywords)
13084 (sql-mode-mysql-font-lock-keywords)
13085 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
13087 (sql-mode-font-lock-defaults): Update comment.
13088 (sql-product-feature): New function. Returns feature associated
13089 with a product from `sql-product-support' alist.
13090 (sql-product-font-lock): New function. Set font-lock support
13091 based on `sql-product'.
13092 (sql-add-product-keywords): New function. Add font-lock rules to
13093 product-specific keyword variables.
13094 (sql-set-product): New function. Set `sql-product' and apply
13095 appropriate font-lock highlighting.
13096 (sql-highlight-product): New function. Set font-lock support
13097 based on a product. Also set mode name to include product name.
13098 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
13099 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
13100 Use `sql-set-product'.
13101 (sql-highlight-ms-keywords)
13102 (sql-highlight-sybase-keywords)
13103 (sql-highlight-interbase-keywords)
13104 (sql-highlight-strong-keywords)
13105 (sql-highlight-mysql-keywords)
13106 (sql-highlight-sqlite-keywords)
13107 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
13108 (sql-get-login): Prompt in the same order as the tokens.
13109 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
13110 (sql-product-interactive): New function. Common portions of
13111 product-specific interactive mode wrappers.
13112 (sql-interactive-mode): Rewritten to use product features.
13113 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
13114 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
13115 (sql-db2, sql-linter): Use `sql-product-interactive'.
13116 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
13117 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
13118 (sql-connect-ingres, sql-connect-postgres)
13119 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
13120 New functions. Format command line parameters and invoke comint on
13121 the appropriate interpreter. Code was in the corresponding
13122 `sql-xyz' function before.
13123 (sql-connect-ms): New function. Support -E argument to use
13124 operating system credentials for authentication.
13126 2003-08-18 Kenichi Handa <handa@m17n.org>
13128 * international/mule.el (encode-char): Fix for the ASCII case.
13130 2003-08-15 Kenichi Handa <handa@m17n.org>
13132 * international/fontset.el (setup-default-fontset): Change "*" to
13133 nil in the specifications of font family.
13135 2003-08-18 Kim F. Storm <storm@cua.dk>
13137 * kmacro.el (kmacro-keymap): Group related bindings in
13138 initialization for clarity. Bind C-s to start macro.
13139 Remove C-r binding.
13140 (kmacro-initial-counter-value): New defvar to hold initial counter
13141 value in case we set the value before defining a macro.
13142 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
13143 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
13144 not defining or executing macro. Doc fix.
13145 (kmacro-add-counter): Clear kmacro-initial-counter-value.
13146 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
13147 temporarily view older elements on the macro ring without cycling
13149 (kmacro-display): Doc fix.
13150 (kmacro-exec-ring-item): New helper function.
13151 (kmacro-call-ring-2nd): Use it.
13152 (kmacro-call-ring-2nd-repeat): Doc fix.
13153 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
13154 (kmacro-end-or-call-macro): Execute last viewed macro (using
13155 kmacro-exec-ring-item) from ring if this follows
13156 kmacro-view-macro. This allows us to find a macro on the ring
13157 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
13158 the ring to bring it to the head of the ring.
13159 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
13160 Allow binding to reserved keys without specifying C-x C-k prefix.
13161 Ask for confirmation if entered key sequence is already bound to
13162 a non-macro command.
13163 (kmacro-view-macro): Repeating command will show older elements
13164 on the macro ring; C-k will execute the last viewed macro.
13165 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
13166 property from 'ring to 'head.
13168 2003-08-17 Alan Shutko <ats@acm.org>
13170 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
13171 keeping December out of the alist.
13173 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
13175 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
13176 * calendar/calendar.el (calendar-mode-map): Bind it to key.
13177 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
13178 (calendar-flatten): New function.
13179 (calendar-mouse-view-other-diary-entries)
13180 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
13181 in the menu title and to show multi-line diary entries correctly
13184 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
13186 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
13187 defcustom, because the default was recently changed.
13189 2003-08-16 Richard M. Stallman <rms@gnu.org>
13191 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
13193 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
13194 New subroutine, broken out of eval-last-sexp-1.
13195 (eval-last-sexp-1): Use eval-last-sexp-print-value.
13197 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
13199 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
13201 * simple.el (eval-expression): Use eval-last-sexp-print-value.
13203 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
13205 * progmodes/compile.el (compilation-error-regexp-alist):
13206 Add Java ANt error detection as described in document
13207 http://ant.apache.org/faq.html
13209 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
13211 * simple.el (backward-word, forward-to-indentation)
13212 (backward-to-indentation): Argument changed to optional.
13213 (next-line, previous-line): Use `or' instead of `unless'.
13215 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13217 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
13218 instead of a constant.
13220 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
13222 * shell.el (shell): With prefix-arg, suggest a new buffer name.
13224 2003-08-12 Andre Spiegel <spiegel@gnu.org>
13226 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
13227 (vc-sccs-workfile-version): Search the entire delta table, rather
13228 than just the first entry, because that might be a deleted version.
13230 2003-08-11 Karl Fogel <kfogel@red-bean.com>
13232 * menu-bar.el (menu-bar-options-menu): Supply a body for the
13233 [save-place] binding in the Options menu. Have it require
13234 'saveplace' and then toggle the variable manually, to avoid an an
13235 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
13236 for the bug report.
13238 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
13240 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
13241 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
13242 (gdb-info-threads-custom): Add help-echo text.
13243 (gdb-display-back): Don't use purecopy.
13244 (gdb-info-breakpoints-custom, gdb-reset)
13245 (gdb-assembler-custom): Use display-images-p to test if breakpoint
13246 icons can be displayed.
13248 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
13250 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
13252 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
13254 * bookmark.el (bookmark-completing-read):
13255 Return a string, instead of a list of one string.
13256 Use a popup menu if activated from the mouse.
13257 (bookmark-edit-annotation): Remove unused vars.
13258 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
13259 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
13260 to bookmark-completing-read.
13261 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
13262 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
13263 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
13265 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
13266 (bookmark-menu-jump, bookmark-menu-insert)
13267 (bookmark-popup-menu-and-apply-function)
13268 (bookmark-menu-popup-paned-bookmark-menu): Remove.
13269 (bookmark-menu-build-paned-menu): Remove by folding it into
13270 bookmark-menu-popup-paned-menu.
13271 (menu-bar-bookmark-map): Move the define-key statements here.
13272 Use the "non-menu" commands since they now pop up a menu if needed.
13273 (bookmark-exit-hook-internal): Simplify.
13275 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
13277 * reftex-toc.el (reftex-toc-rename-label): New function.
13278 (reftex-toc-check-docstruct): New function.
13280 * reftex.el (reftex-region-active-p): New function.
13282 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
13283 regexp to find the \bibliography macro.
13285 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
13286 which does not exist in LaTeX.
13287 (reftex-cite-format-builtin): Added amsrefs support.
13288 (reftex-toc-confirm-promotion): New option
13291 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
13292 (reftex-toc-demote, reftex-toc-promote)
13293 (reftex-toc-do-promote, reftex-toc-promote-prepare)
13294 (reftex-toc-promote-action, reftex-toc-extract-section-number)
13295 (reftex-toc-newhead-from-alist)
13296 (reftex-toc-load-all-files-for-promotion): New functions.
13297 (reftex-toc-help): Added description of new keys.
13298 (reftex-toc-split-windows-fraction): New option.
13299 (reftex-recenter-toc-when-idle): Search *toc* window on all
13301 (reftex-toc): Additional parameter REUSE
13302 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
13303 with REUSE argument.
13304 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
13305 the call of `reftex-toc'.
13306 (reftex-make-separate-toc-frame): New function .
13307 (reftex-toc-recenter): When called with triple prefix arg, call
13308 `reftex-make-separate-toc-frame' first.
13309 (reftex-toc-toggle-dedicated-frame): New command.
13310 (reftex-toc-quit): Adapted to delete frame when called in
13313 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
13314 all enclosing macros.
13317 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13319 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
13322 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13324 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
13326 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
13328 * calendar/calendar.el (list-diary-entries-hook)
13329 (diary-display-hook, nongregorian-diary-listing-hook)
13330 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
13331 Add some customize options for these hooks.
13332 (calendar-abbrev-construct): Don't try to take a substring longer
13333 than the original string.
13335 2003-08-05 Richard M. Stallman <rms@gnu.org>
13337 * emacs-lisp/testcover.el (noreturn): Report error if does return.
13338 (testcover-reinstrument-clauses): Doc fix.
13340 * emacs-lisp/warnings.el: Doc fixes, args renamed.
13341 (warning-type-format): Rename from warning-group-format.
13343 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
13344 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
13345 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
13346 to prevent warnings about defvar for an obsolete variable.
13348 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
13349 warning-group-format renamed to warning-type-format.
13351 * subr.el (read-passwd): Use clear-string instead of fillarray.
13353 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
13354 Use vconcat instead of concat.
13355 (edmacro-sanitize-for-string): New function.
13357 2003-08-05 Dave Love <fx@gnu.org>
13359 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
13360 line-number-display-limit-width.
13362 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
13364 2003-08-05 Kenichi Handa <handa@m17n.org>
13366 * international/code-pages.el: Don't require mule-diag.
13368 * international/mule-diag.el (non-iso-charset-alist):
13369 Add autoload cookie.
13371 * language/devan-util.el (dev-glyph-order): Add an entry for the
13374 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
13376 * calendar/calendar.el (diary-file, diary-file-name-prefix)
13377 (european-calendar-style, diary-date-forms)
13378 (calendar-day-name-array, calendar-month-name-array): Doc change.
13379 (generate-calendar-month): Adapt for new behaviour of
13380 `calendar-day-name' function.
13381 (calendar-abbrev-length, calendar-day-abbrev-array)
13382 (calendar-month-abbrev-array): New variables.
13383 (calendar-abbrev-construct): New function.
13384 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
13385 rather than fixing abbrevs at some width. Calling syntax change.
13386 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
13387 (calendar-date-string): Adapt for new behaviours of
13388 `calendar-day-name' and `calendar-month-name' functions.
13390 * calendar/diary-lib.el (list-diary-entries): Adapt for new
13391 behaviour of `calendar-day-name' and `calendar-month-name' functions.
13392 (diary-name-pattern): Use abbrev arrays, rather than fixing
13393 abbrevs at three chars. Calling syntax change.
13394 (mark-diary-entries): Adapt for new behaviours of
13395 `diary-name-pattern' and `calendar-make-alist' functions.
13396 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
13397 `diary-name-pattern' function.
13398 (font-lock-diary-date-forms): Use abbrev arrays, rather than
13399 fixing abbrevs at three chars. Calling syntax change.
13400 (cal-hebrew, cal-islam): Require when compiling.
13401 (diary-font-lock-keywords): Adapt for new behaviour of
13402 `font-lock-diary-date-forms' function.
13404 * calendar/cal-hebrew.el: Reposition some code so defined before used.
13405 (calendar-hebrew-month-name-array-common-year)
13406 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
13407 (list-hebrew-diary-entries): Adapt for new behaviours of
13408 `calendar-day-name' and `add-to-diary-list' functions.
13409 (mark-hebrew-diary-entries): Adapt for new behaviours of
13410 `diary-name-pattern' and `calendar-make-alist' functions.
13412 * calendar/cal-islam.el (calendar-islamic-month-name-array):
13414 (list-islamic-diary-entries): Adapt for new behaviours of
13415 `calendar-day-name' and `add-to-diary-list' functions.
13416 (mark-islamic-diary-entries): Adapt for new behaviours of
13417 `diary-name-pattern' and `calendar-make-alist' functions.
13419 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
13420 `calendar-month-name' function.
13422 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
13424 * calendar/solar.el (solar-seasons-data): Move definition before use.
13426 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
13427 (cal-tex-LaTeX-hourbox): Move definition before use.
13429 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
13430 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
13432 (displayed-month, displayed-year): Define for compiler.
13434 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
13436 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
13437 MODE. Renamed from c-init-c-language-vars'.
13438 (c-initialize-cc-mode): Change accordingly.
13439 (c-common-init): Ditto.
13441 (c++-mode): Use `c-init-language-vars-for'.
13442 (objc-mode): Ditto.
13443 (java-mode): Ditto.
13445 (pike-mode): Ditto.
13448 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
13450 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
13451 or not the point moved.
13453 (c-search-decl-header-end): Don't trip up on operator identifiers
13454 in C++ and operators like == in all languages.
13456 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
13457 Detect leading labels correctly.
13459 2003-08-02 Andreas Schwab <schwab@suse.de>
13461 * textmodes/ispell.el: Don't redo key bindings on loading, put
13462 them only in loaddefs.el.
13463 * bookmark.el: Likewise.
13464 * dabbrev.el: Likewise.
13465 * emerge.el: Likewise.
13467 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
13468 has more than one member.
13470 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
13472 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13474 * lpr.el (printify-region): It was ending conversion before the
13475 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
13477 2003-07-31 John Paul Wallington <jpw@gnu.org>
13479 * net/browse-url.el (browse-url-epiphany): Doc fix.
13481 2003-07-30 Kenichi Handa <handa@m17n.org>
13483 * international/fontset.el (setup-default-fontset):
13484 Change registry names of Akurti fonts.
13486 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
13488 * comint.el (comint-read-noecho): Use `clear-string' instead of
13491 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
13493 * outline.el (outline-mode-hook): Add defvar.
13495 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
13497 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
13498 Restore assembler in source window if that is what has been selected.
13499 (menu): Add gdb-restore-windows to menu. Make gdba
13500 specific menus only visible from gdba.
13502 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
13504 * progmodes/compile.el (compilation-environment): New user variable.
13505 (compile-internal): Respect it.
13507 2003-07-23 Masatake YAMATO <jet@gyve.org>
13509 * progmodes/gud.el (gdb-script-font-lock-keywords):
13510 Put `font-lock-function-name-face' on a symbol which includes
13511 `-' like `hook-run'. Put font-lock-variable-name-face
13512 on a symbol starting with $.
13514 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
13516 * files.el (set-visited-file-name): Use truename for buffer-file-name.
13518 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
13520 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
13522 2003-07-26 Andre Spiegel <spiegel@gnu.org>
13524 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
13525 Use with-no-warnings.
13526 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
13527 rather than to find-file-not-found-hook, which doesn't exist.
13529 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
13531 * international/quail.el (quail-translate-key): Fix previous change.
13533 2003-07-25 John Paul Wallington <jpw@gnu.org>
13535 * server.el (server-start): Check `server-process' is non-nil
13536 before killing it to avoid killing current buffer's process.
13538 * simple.el (choose-completion-string): Use `minibufferp';
13539 test `completion-reference-buffer' if `buffer' arg is nil.
13540 (push-mark): Use `when' and `unless'.
13541 (pop-mark): Use `when'.
13543 * mouse-sel.el (mouse-sel-get-selection-function):
13544 Check `x-last-selected-text-primary'. Don't barf if it or
13545 `x-last-selected-text' aren't bound.
13547 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
13549 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
13551 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
13553 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
13555 2003-07-23 John Paul Wallington <jpw@gnu.org>
13557 * tooltip.el (defface tooltip): Inherit from variable-pitch.
13559 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
13561 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
13562 string. Defvar the derived hook.
13564 * macros.el (insert-kbd-macro): Escape double quote character.
13565 From Thomas W Murphy <twm@andrew.cmu.edu>.
13567 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
13569 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
13570 to match the specific mark rather than reusing comment-start-skip.
13572 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
13574 * progmodes/hideshow.el (hs-special-modes-alist):
13575 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
13577 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
13579 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
13582 2003-07-21 John Paul Wallington <jpw@gnu.org>
13584 * subr.el (with-selected-window): Add closing paren.
13586 2003-07-21 Richard M. Stallman <rms@gnu.org>
13588 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
13589 (lisp-mode): Likewise.
13591 * subr.el (with-selected-window): Copy code form save-selected-window
13592 so as to call select-window with norecord arg.
13593 (dynamic-completion-table): Doc fix.
13594 (lazy-completion-table): Doc fix.
13596 * international/mule-cmds.el (set-locale-environment):
13597 langinfo renamed to locale-info.
13599 * international/mule.el (auto-coding-functions): Doc fix.
13601 2003-07-21 Kenichi Handa <handa@m17n.org>
13603 * international/quail.el (quail-translate-key):
13604 Update quail-current-str correctly.
13606 2003-07-21 Andreas Schwab <schwab@suse.de>
13608 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
13611 2003-07-20 Kai Gro
\e,A_
\e(Bjohann <kai.grossjohann@gmx.net>
13612 Version 2.0.36 of Tramp released.
13614 * net/tramp.el (tramp-default-password-end-of-line): Rename from
13615 tramp-password-end-of-line.
13616 (tramp-password-end-of-line): New method parameter.
13617 (tramp-get-password-end-of-line): Function to access method
13618 parameter `tramp-password-end-of-line', or variable
13619 `tramp-default-password-end-of-line' (default value).
13620 (tramp-methods): Add entries for new parameter
13621 tramp-password-end-of-line.
13622 (tramp-enter-password): Use new function
13623 `tramp-get-password-end-of-line'.
13624 (tramp-handle-insert-file-contents): Do not
13625 unconditionally inhibit the file operation file-local-copy, only
13626 do that when the inhibit-file-name-operation is currently
13627 insert-file-contents. This fixes finding remote CVS-controlled
13628 files. (It would barf on inserting the CVS/Entries file
13629 literally, because the file-local-copy handler wasn't called.)
13630 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
13631 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
13632 (tramp-initial-commands): New variable.
13633 (tramp-process-initial-commands): New function, using the variable.
13634 (tramp-open-connection-setup-interactive-shell): Call the new function.
13635 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
13636 method into the buffer name, never use nil. Reported by Hanak
13637 David <dhanak@inf.bme.hu>.
13638 (tramp-open-connection-setup-interactive-shell): Erase buffer
13639 before sending "stty -onlcr".
13641 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
13643 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
13645 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
13647 2003-07-19 John Paul Wallington <jpw@gnu.org>
13649 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
13650 (artist-draw-rect, artist-draw-square): Doc fixes.
13652 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
13654 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
13656 2003-07-19 Kenichi Handa <handa@m17n.org>
13658 * international/kkc.el (kkc-show-conversion-list-update):
13659 Highlight the correct candidate in the message.
13661 2003-07-18 John Paul Wallington <jpw@gnu.org>
13663 * simple.el (current-word): Don't include punctuation char when
13664 `really-word' arg is non-nil.
13666 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
13668 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
13669 moved to the directory obsolete.
13671 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
13673 * info.el (Info-menu-entry-name-re): Allow newlines in
13676 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
13677 syntax-ppss-after-change-function.
13678 (syntax-ppss-after-change-function): New alias. Update uses.
13679 (syntax-ppss): Catch the case where the buffer is narrowed.
13681 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
13683 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
13684 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
13686 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
13688 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
13689 since it might be modified.
13691 * progmodes/cc-langs.el (c++-make-template-syntax-table)
13692 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
13693 names to these language constants.
13695 2003-07-15 Kim F. Storm <storm@cua.dk>
13697 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
13700 2003-07-14 Mark A. Hershberger <mah@everybody.org>
13702 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
13705 2003-07-13 Juanma Barranquero <lektu@terra.es>
13707 * frame.el (modify-all-frames-parameters): Reinstall (copyright
13710 2003-07-13 Karl Eichwalder <ke@suse.de>
13712 * textmodes/po.el (po-find-charset): White space at the start of the
13713 Content-Type field body is non-mandatory.
13715 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
13717 * textmodes/texinfo.el (texinfo-section-list):
13718 Append appendixsection; a synonym for appendixsec.
13720 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
13722 * man.el (Man-translate-cleanup): New.
13723 (Man-translate-references): Call `Man-translate-cleanup' to clean
13724 leading, trailing and middle spaces.
13726 2003-07-13 Lars Hansen <larsh@math.ku.dk>
13728 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
13729 Handle `dired-directory' being a list.
13731 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
13733 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
13736 2003-07-12 Richard M. Stallman <rms@gnu.org>
13738 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
13740 * progmodes/cc-defs.el (c-make-keywords-re):
13741 Don't use delete-duplicates.
13742 (c-lang-const): Don't use mapcan.
13744 * apropos.el (apropos-show-scores): Make it customizable.
13745 Document new meaning.
13746 (apropos): Compute scores from symbols.
13747 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
13749 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13751 * ps-bdf.el: Fix copyright line.
13752 (bdf-directory-list): Fix initialization code.
13754 2003-07-11 John Paul Wallington <jpw@gnu.org>
13756 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
13757 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
13758 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
13760 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
13762 * emacs-lisp/ring.el (ring-elements): Doc fix.
13764 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
13766 * calendar/timeclock.el (timeclock-relative)
13767 (timeclock-ask-before-exiting, timeclock-use-display-time):
13769 (timeclock-modeline-display): Give a message if
13770 `timeclock-use-display-time' is non-nil but `display-time-mode'
13773 2003-07-11 Kenichi Handa <handa@m17n.org>
13775 * international/mule-cmds.el (set-language-environment):
13776 Set current-language-environment to the correct string.
13778 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13780 * ps-print.el: Print line number correctly in a region. Reported by
13781 Tim Allen <timallen@ls83.fsnet.co.uk>.
13782 (ps-print-version): New version number (6.6.2).
13783 (ps-printing-region): Code fix.
13785 2003-07-10 John Paul Wallington <jpw@gnu.org>
13787 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
13788 this function can be called from `add-completions-from-tags-table'.
13790 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
13792 * calendar/timeclock.el (timeclock-use-display-time)
13793 (timeclock-day-over-hook, timeclock-workday-remaining)
13794 (timeclock-status-string, timeclock-when-to-leave)
13795 (timeclock-when-to-leave-string, timeclock-log-data)
13796 (timeclock-find-discrep, timeclock-day-base)
13797 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
13798 (timeclock-modeline-display): Set the variable
13799 `timeclock-modeline-display'.
13800 (timeclock-update-modeline): Doc fix. Respect value of
13801 `timeclock-relative'.
13803 2003-07-09 Richard M. Stallman <rms@gnu.org>
13805 * textmodes/reftex-parse.el (reftex-all-document-files):
13806 Add autoload cookie.
13808 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
13809 (reftex-scanning-info-available-p): Add autoload cookie.
13811 * international/mule-cmds.el
13812 (set-display-table-and-terminal-coding-system): Delete duplicate
13813 aset on standard-display-table.
13815 * view.el (view-file): If existing buffer's major mode is special,
13816 don't go into view mode.
13818 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
13820 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
13822 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
13823 buffer changes; there's third party code that calls this function
13826 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
13828 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
13829 (autodoc-font-lock-keywords): Don't byte compile on font lock
13830 initialization when running from byte compiled files.
13832 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
13834 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
13835 statement ends with auto-increment "++".
13837 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
13839 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
13840 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
13841 these are changed, so declare them as variables and not constants.
13843 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
13845 * subr.el (dolist, dotimes): Doc fix.
13847 2003-07-08 Kim F. Storm <storm@cua.dk>
13849 * international/mule-cmds.el
13850 (set-display-table-and-terminal-coding-system): Don't break
13851 bootstrap if standard-display-table isn't setup yet.
13853 2003-07-07 Richard M. Stallman <rms@gnu.org>
13855 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
13856 Give it a doc string, and autoload it.
13858 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
13859 Use with-no-warnings.
13861 * info.el (Info-search): If find invisible text, search again.
13863 * isearch.el (search-whitespace-regexp): Add a shy group around it.
13865 * man.el (Man-name-regexp): Match + as part of name.
13867 * simple.el (visible-mode): Rename from vis-mode.
13868 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
13870 * simple.el (current-word): New arg REALLY-WORD specifies
13871 don't include punctuation chars.
13873 * emacs-lisp/debug.el (debug, debugger-env-macro):
13874 Use with-no-warnings while accessing and binding unread-command-char.
13876 * international/mule-cmds.el
13877 (set-display-table-and-terminal-coding-system): Use explicit loop
13878 instead of calling standard-display-default.
13880 * net/ange-ftp.el (ange-ftp-file-symlink-p):
13881 Use condition-case to catch error in ange-ftp-get-files.
13883 * net/browse-url.el (browse-url-browser-function):
13884 Add alternative for Epiphany.
13885 (browse-url-epiphany-program, browse-url-epiphany-arguments)
13886 (browse-url-epiphany-startup-arguments)
13887 (browse-url-epiphany-new-window-is-tab): New variables.
13888 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
13890 * progmodes/compile.el (compile-auto-highlight): Default now t.
13891 (compile): Doc fix.
13892 (compilation-next-error): Fix previous change.
13894 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
13896 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
13898 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
13900 * gdb-ui.el (gdb-source-info): Display current frame when
13901 attaching to an existing process.
13902 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
13903 while laying out windows when attaching to an existing process.
13905 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
13907 * info.el (Info-menu): Use Info-menu-entry-name-re.
13909 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
13911 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
13912 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
13914 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
13915 to match the same text.
13917 2003-07-06 John Paul Wallington <jpw@gnu.org>
13919 * vc.el (vc-annotate-offset): Move defvar up.
13921 2003-07-06 Kim F. Storm <storm@cua.dk>
13923 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
13924 This should fix the infinite loop when extracting menu names.
13926 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
13928 * files.el (auto-mode-alist, interpreter-mode-alist):
13929 Remove entries to CC Mode modes to avoid duplicates; they are now added
13930 with autoload directives in cc-mode.el.
13932 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
13934 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
13935 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
13936 these are changed, so declare them as variables and not constants.
13938 * progmodes/cc-mode.el: Fix some autoload problems: Try to
13939 ensure that the entry for ".c" extension comes before the one for
13940 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
13941 Fix incorrect entries that were added to `interpreter-mode-alist'.
13942 Move the autoload directives for AWK to the top level since they
13943 aren't recognized anywhere else. Do not use the new AWK mode doc
13944 in the autoload form for the old AWK mode.
13946 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13948 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
13949 (bibtex-sort-ignore-string-entries): Default value t.
13950 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
13951 erroneously in previous version.
13952 (bibtex-string-files): Docstring reflects new parsing scheme.
13953 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
13954 docstring, add # as one of the chars to crush
13955 (bibtex-autokey-prefix-string, bibtex-autokey-names)
13956 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
13957 (bibtex-autokey-name-change-strings)
13958 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
13959 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
13960 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
13961 (bibtex-autokey-title-terminators)
13962 (bibtex-autokey-titlewords-stretch)
13963 (bibtex-autokey-titleword-ignore)
13964 (bibtex-autokey-titleword-case-convert)
13965 (bibtex-autokey-titleword-abbrevs)
13966 (bibtex-autokey-titleword-abbrevs)
13967 (bibtex-autokey-titleword-change-strings)
13968 (bibtex-autokey-titleword-length)
13969 (bibtex-autokey-titleword-separator)
13970 (bibtex-autokey-name-year-separator)
13971 (bibtex-autokey-year-title-separator)
13972 (bibtex-autokey-before-presentation-function)
13973 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
13975 (bibtex-strings, bibtex-reference-keys):
13976 Use lazy-completion-table and make-variable-buffer-local.
13977 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
13978 (bibtex-braced-string-syntax-table)
13979 (bibtex-quoted-string-syntax-table): New variables.
13980 (bibtex-parse-nested-braces): Remove.
13981 (bibtex-parse-field-string): Use syntax table and forward-sexp.
13982 (bibtex-parse-association): Simplify.
13983 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
13984 (bibtex-parse-field-text): Simplify.
13985 (bibtex-search-forward-field, bibtex-search-backward-field):
13986 argument BOUND can take value t.
13987 (bibtex-start-of-field, bibtex-start-of-name-in-field)
13988 (bibtex-end-of-name-in-field, bibtex-end-of-field)
13989 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
13990 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
13991 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
13992 (bibtex-skip-to-valid-entry): Return buffer position of beginning
13993 and ending of entry. Update for changes of bibtex-search-entry.
13995 (bibtex-map-entries): FUN is called with three arguments.
13996 (bibtex-search-entry): Return a cons pair with buffer positions of
13997 beginning and end of entry.
13998 (bibtex-enclosing-field): Simplify.
13999 (bibtex-format-entry): Use booktitle to set a missing title.
14000 (bibtex-autokey-get-names): Fiddle with regexps.
14001 (bibtex-generate-autokey): Use identity.
14002 (bibtex-parse-keys): Use simplified parsing algorithm if
14003 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
14004 arguments. Return alist of keys.
14005 (bibtex-parse-strings): Simplify. Return alist of strings.
14006 (bibtex-complete-string-cleanup): Fix docstring.
14007 (bibtex-read-key): New function.
14008 (bibtex-mode): Fix docstring. Do not parse for keys and
14009 strings when the mode is entered. Set fill-paragraph-function to
14010 bibtex-fill-field. Setup font-lock-mark-block-function the way
14011 font-lock intended.
14012 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
14013 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
14014 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
14015 (bibtex-Preamble): Avoid hard coded constants.
14016 (bibtex-make-field): Fix docstring. Simplify.
14017 (bibtex-beginning-of-entry): Always return new position of point.
14018 (bibtex-end-of-entry): Rearrange cond clauses.
14019 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
14020 Update for changes of bibtex-map-entries.
14021 (bibtex-ispell-abstract): Do not move point.
14022 (bibtex-entry-index): Use downcase. Simplify.
14023 (bibtex-lessp): Handle catch-all.
14024 (bibtex-find-crossref): Turn into a command.
14025 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
14026 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
14028 (bibtex-fill-field-bounds): New function.
14029 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
14030 (bibtex-fill-entry): Use bibtex-fill-field-bounds
14031 (bibtex-String): Use bibtex-strings. Always obey
14032 bibtex-sort-ignore-string-entries.
14034 2003-07-05 John Paul Wallington <jpw@gnu.org>
14036 * cus-theme.el (customize-create-theme):
14037 Call `customize-create-theme' in Reset widget's notify function.
14039 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
14040 (ibuffer-mark-interactive): Use `or' instead of `unless'.
14041 (define-ibuffer-column name): Add summarizer.
14042 (define-ibuffer-column size): Likewise.
14043 (define-ibuffer-column filename): Likewise.
14044 (define-ibuffer-column process): Likewise. Change BODY's output too.
14045 (define-ibuffer-column filename-and-process): Likewise, likewise.
14046 (ibuffer): Remove local vars `already-in' and `need-update'.
14048 * ibuf-ext.el: Don't require `derived' at compile-time.
14050 2003-07-05 Kim F. Storm <storm@cua.dk>
14052 * info.el: Disable paragraph refilling.
14053 (Info-refill-paragraphs): New defcustom.
14054 (Info-fontify-node): Use it.
14056 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
14058 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
14059 thingies from constructors created by defstruct.
14061 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
14062 the default value of the variable.
14063 (byte-code-meter): Move declaration to top level.
14065 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
14067 * info.el (Info-following-node-name-re): New fun.
14068 (Info-following-node-name): Remove.
14069 (Info-insert-dir): Use the new fun.
14070 (Info-extract-pointer): Don't save restriction; use new fun.
14071 (Info-menu-entry-name-re): New const.
14072 (Info-menu-entry-name-re): Use it along with new fun.
14073 (Info-node-spec-re): Use new fun.
14074 (Info-complete-menu-item, Info-fontify-node): Use new const.
14075 (Info-goto-node, Info-follow-reference, Info-menu-update):
14077 (Info-follow-reference): Use assoc-string.
14078 Use a list of strings for the completion table.
14079 (Info-fontify-node): Use match-string, line-end-position.
14080 Limit the search for `node:' to the first line.
14082 * newcomment.el (uncomment-region): Remove padding coming from
14083 comment-start rather than just from comment-padding.
14085 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
14086 (vc-cvs-stay-local-p): Use vc-stay-local-p.
14087 (vc-cvs-rename-file): Remove (use the default).
14088 (vc-cvs-register): Register parent dir if needed.
14089 (vc-cvs-could-register): Return non-nil if parent can be registered.
14090 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
14091 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
14093 * vc-svn.el (vc-svn-use-edit): Make it into a const.
14094 (vc-svn-update): Fix the arguments to `svn'.
14095 (vc-svn-diff-tree): Just use `vc-svn-diff'.
14096 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
14097 Simple implementations, assuming `name' is a URL.
14099 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
14100 set of chars allowed unquoted in a case pattern.
14102 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
14104 * font-lock.el (font-lock-extra-types-widget)
14105 (c-font-lock-extra-types, c++-font-lock-extra-types)
14106 (objc-font-lock-extra-types, java-font-lock-extra-types)
14107 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
14108 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
14109 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
14110 (font-lock-match-c++-structor-declaration)
14111 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
14112 (c++-font-lock-keywords-3, c++-font-lock-keywords)
14113 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
14114 (objc-font-lock-keywords-3, objc-font-lock-keywords)
14115 (java-font-lock-keywords-1, java-font-lock-keywords-2)
14116 (java-font-lock-keywords-3, java-font-lock-keywords)
14117 (java-font-lock-syntactic-face-function): Remove obsolete code
14118 and constants. It's all in cc-fonts.el now.
14120 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
14122 * mail/sendmail.el (mail-specify-envelope-from)
14123 (mail-envelope-from): Doc fix.
14125 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
14127 * generic-x.el: Do away with the dependency on `c-emacs-features'
14128 when populating `rul-generic-mode-syntax-table'; we already know
14131 See ChangeLog.10 for earlier changes.
14133 ;; Local Variables:
14134 ;; coding: iso-2022-7bit
14137 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
14138 Copying and distribution of this file, with or without modification,
14139 are permitted provided the copyright notice and this notice are preserved.
14141 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1