*** empty log message ***
[emacs.git] / lisp / ChangeLog
blobe71172504225326f833e190d5bf3678a3e9ed8c3
1 2004-11-24  Richard M. Stallman  <rms@gnu.org>
3         * textmodes/ispell.el (ispell-check-version):
4         If default-directory is nonexistent, use home dir.
6         * progmodes/grep.el (grep-regexp-alist):
7         Don't match parens around line numbers.
9         * progmodes/cperl-mode.el (cperl-indent-region)
10         (cperl-imenu--create-perl-index, cperl-xsub-scan): 
11         Don't print progress messages.
13         * progmodes/compile.el (compilation-mode-map):
14         Don't inherit from compilation-minor-mode-map;
15         copy its bindings instead.  But the menu bar Compile
16         entry now does inherit from compilation-menu-map.
18         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
19         Use with-no-warnings around compiler-macroexpand.
21         * imenu.el: Don't always require newcomment.
22         (imenu--generic-function): Call comment-normalize-vars
23         if we have a comment syntax.
24         Exit the loop if REGEXP matches the null string.
25         Test comment-start as well as comment-start-skip
26         when deciding whether to check for comments.
28         * tooltip.el (tooltip-mode): Doc fix.
30         * term.el (term-escape-char, term-mode): Doc fixes.
32 2004-11-24  Dave Love  <fx@gnu.org>
34         * progmodes/python.el (python-font-lock-syntactic-keywords):
35         Check for escapes in the regexp.
36         (python-quote-syntax): Don't do it here.
38 2004-11-25  Nick Roberts  <nickrob@snap.net.nz>
40         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
41         (gdb-frames-mode-map, gdb-threads-mode-map)
42         (gdb-registers-mode-map, gdb-locals-mode-map)
43         (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
44         (dedicated-switch-to-buffer): Rename to gdb-set-window-buffer.
46         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
47         (dedicated-switch-to-buffer): Rework.
48         (gdb-var-evaluate-expression-handler, gdb-put-string):
49         Remove unused variable bindings.
50         (gdb-setup-windows, gdb-display-buffer):
51         Simplify. Use pop-to-buffer.
52         (gdb-view-source-function): Simplify.
53         (gdb-frame-breakpoints-buffer):
54         Use pop-to-buffer, special-display-regexps.
56 2004-11-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
58         * progmodes/f90.el (f90-smart-end)
59         (f90-previous-statement, f90-beginning-of-block): Doc fix.
60         (f90-calculate-indent): Handle un-named PROGRAM blocks.
61         (f90-end-of-block): Doc fix.  Make check of outermost block
62         conditional on value of `f90-smart-end'.
63         (f90-block-match): Hack to deal with un-named PROGRAM blocks.
64         Handle case where END-BLOCK is nil.
65         (f90-match-end): Handle un-named PROGRAM blocks.
66         (f90-backslash-not-special): New function.
68 2004-11-24  Jay Belanger  <belanger@truman.edu>
70         * calc/calc.el (calc-embedded-active): Removed unnecessary
71         declaration.
72         (calc-show-banner): Removed redundant declaration.
74         * calc/calc-graph.el (calc-gnuplot-default-device)
75         (calc-gnuplot-default-output, calc-gnuplot-print-device)
76         (calc-gnuplot-print-output, calc-gnuplot-geometry)
77         (calc-graph-default-resolution, calc-graph-default-resolution-3d):
78         Remove redundant initial values.
80         * calc/calc-arith.el (math-scalar-functions)
81         (math-nonscalar-functions, math-scalar-if-args-functions)
82         (math-real-functions, math-positive-functions)
83         (math-nonnegative-functions, math-real-scalar-functions)
84         (math-real-if-arg-functions, math-integer-functions)
85         (math-num-integer-functions, math-rounding-functions)
86         (math-float-rounding-functions, math-integer-if-args-functions)
87         (math-super-types): Move declarations to earlier in file.
88         (math-unit-prefixes): Declared it.
89         (math-floor-prec, math-trunc-prec): New variables.
90         (math-trunc-fancy): Replace variable prec by declared variable.
91         (math-floor-fancy): Replace variable prec by declared variable.
92         (math-com-bterms): New variable.
93         (math-commutative-equal, math-commutative-collect):
94         Replace variable bterms by declared variable.
96         * calc/calc-misc.el (math-trunc): Replace variable prec by
97         math-trunc-prec.
98         (math-floor): Replace variable prec by math-floor-prec.
100         * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
101         (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
102         (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
103         (math-format-date, math-format-date-part): Replace variables
104         date, dt, year, month, day, weekday, hour, minute, second and
105         bc-flag by declared variables.
106         (math-pd-str): New variable.
107         (math-parse-date, math-parse-date-word, math-parse-standard-date):
108         Replace variable str by declared variable.
109         (math-daylight-savings-hook, math-tzone-names): Move definitions
110         to earlier in the file.
111         (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
112         (math-sh-year): New variable.
113         (math-setup-add-holidays, math-setup-holidays)
114         (math-setup-year-holiday): Replace variable `year' by declared
115         variable.
117         * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
118         New variables.
119         (math-nth-root-float, math-nth-root-float-iter): Replace variables
120         n, nf and nfm1 by declared variables.
121         (math-nri-n): New variable.
122         (math-nth-root-int, math-nth-root-int-iter): Replace variable n by
123         declared variable.
124         (calcFunc-log): Removed misplaced condition.
126 2004-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
128         * generic.el (generic-mode-set-comments): Accept an empty comment-end.
130 2004-11-24  Nick Roberts  <nickrob@snap.net.nz>
132         * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
133         (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
134         Dedicate gdb-related windows.
135         (gdb-display-buffer): Dedicate gdb-related windows. Don't grab
136         other frames.
137         (gdb-reset): Remove dedicated property after debugging.
139 2004-11-24  Jay Belanger <belanger@truman.edu>
141         * calc/calc-sel.el: Add comment.
143         * calc/calc.el (math-stack-value-offset): Replace variables c,
144         wid and off with math-svo-c, math-svo-wid and math-svo-off.
146         * calc/calccomp.el (math-comp-sel-tag): Declare it.
147         (math-svo-c, math-svo-wid, math-svo-off): New variables.
148         (math-stack-value-offset-fancy): Replace variables c, wid and off
149         by declared variables.
150         (math-comp-just, math-comp-comma-spc): New variables.
151         (math-compose-expr, math-compose-matrix): Replace variable `just'
152         by declared variable.
153         (math-comp-vector-prec): New variable.
154         (math-compose-expr, math-compose-matrix, math-compose-rows):
155         Replace variable vector-prec by declared variable.
156         (math-comp-left-bracket, math-comp-right-bracket)
157         (math-comp-comma): New variables.
158         (math-compose-expr, math-compose-rows): Replace variables
159         left-bracket, right-bracket and comma by declared variables.
160         (math-comp-full-width): New variable.
161         (math-comp-to-string-flat, math-comp-to-string-flat-term):
162         Replace variable full-width by declared variable.
163         (math-comp-highlight, math-comp-word, math-comp-level)
164         (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
165         (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
166         New variables.
167         (math-comp-to-string-flat, math-comp-to-string-flat-term)
168         (math-comp-sel-flat-term): Replace variables comp-highlight,
169         comp-word, comp-level, comp-margin, comp-pos and comp-buf by
170         declared variables.
171         (math-comp-simplify, math-comp-simplify-term)
172         (math-comp-add-string, math-comp-add-string-sel):
173         Replace variables comp-highlight, comp-buf, comp-base,
174         comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
176 2004-11-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
178         * cus-start.el (all): Add x-use-old-gtk-file-dialog.
180         * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
181         and x-server-version may throw.
183 >>>>>>> 1.6662
184 2004-11-23  Kim F. Storm  <storm@cua.dk>
186         * subr.el (substitute-key-definition-key): Optimize.
187         Don't call indirect-function for nil defn (always signals error).
189         * ido.el (ido-read-internal): Fix require-match check when
190         ido-directory-too-big is set.
192 2004-11-23  Jay Belanger  <belanger@truman.edu>
194         * calc/calc-ext.el (math-read-replacement-list)
195         (math-read-superscripts): New variables.
196         (math-read-preprocess-string): New function.
197         (math-read-expr): Filter input through math-read-preprocess-string.
199         * calc/calc-aent.el (math-read-exprs): Filter input through
200         math-read-preprocess-string.
202 2004-11-23  Daniel Pfeiffer  <occitan@esperanto.org>
204         * progmodes/compile.el (compilation-start): In cd command use
205         substitute-env-vars -- not quite shell compatible but better than
206         nothing.
207         (compilation-error-regexp-alist-alist): Simplify ftnchek to only
208         handle the newer versions messages, which are more parseable.
210 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
212         * reveal.el (reveal-mode-map): New var.
213         (reveal-mode): Use it.
215 2004-11-23  Nick Roberts  <nickrob@snap.net.nz>
217         * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
218         (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
220 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
222         * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
223         header-line when needed.
224         Use fixed-pitch only in the header-line.
225         Build the underline automatically.  Use emdash if available.
227 2004-11-22  Richard M. Stallman  <rms@gnu.org>
229         * dired.el (dired-recursive-copies): Move from dired-aux.el.
230         * dired-aux.el (dired-recursive-copies): Move to dired.el.
232 2004-11-22  Nick Roberts  <nickrob@snap.net.nz>
234         * progmodes/gdb-ui.el (gdb-resync): New function.
235         (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
236         (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
237         Use it to fail more gracefully.
238         (gdb-variables): Delete variable.
239         Re-order variables to reduce byte-compiler warnings.
241 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
243         * descr-text.el (describe-char):
244         * paren.el (show-paren-function):
245         * subr.el (syntax-after): Undo last change.
247         * progmodes/python.el (run-python): Don't hard code *Python*.
248         Don't modify global process-environment.
249         (python-send-region, python-load-file): Don't assume that
250         python-buffer == (process-buffer (python-proc)).
251         (python-switch-to-python): Simplify.
253         * dired.el (dired-align-file): Don't assume line starts with spaces.
255 2004-11-21  Jay Belanger  <belanger@truman.edu>
257         * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
258         Replace variable `lines' by math-read-big-lines.
259         (math-read-big-expr): Replace variables the-baseline, the-h2
260         and err-msg by math-read-big-baseline, math-read-big-h2 and
261         math-read-err-msg.
262         (math-read-big-bigp): Replace variable h2 with math-rb-h2.
264         * calc/calc-lang.el (math-read-big-rec): Fix typo.
265         (math-read-big-balance): Replace unbound variable by value.
266         (math-read-big-lines): New variable.
267         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
268         (math-read-big-error, math-read-big-balance): Replace variable
269         `lines' by declared variable.
270         (math-read-big-baseline, math-read-big-h2): New variables.
271         (math-read-big-rec): Replace variables the-baseline and the-h2
272         by declared variables.
273         (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
274         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
275         (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
276         declared variables.
277         (math-read-big-err-msg): New variable.
278         (math-read-big-error): Replace variable err-msg by declared variable.
280 2004-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
282         * ses.el: Add coding cookie.
283         Fix up docstrings, follow new commenting conventions.
284         (ses-header-line-menu): Fix missing variable rename for header-row.
285         (ses-cell-size): Remove.
286         (ses-make-cell): New function.
287         (ses-cell, ses-insert-row, ses-insert-column): Use it.
288         (ses-calculate-cell): Remove unused var `symbol'.
289         (ses-narrowed-p): New function.
290         (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
291         (ses-initial-file-trailer): Change ;;; to ;; for local vars.
292         (ses-load, ses-reconstruct-all): Adjust string search accordingly.
293         (ses-setup): Use restore-buffer-modified-p.
294         (ses-cleanup): Remove unused var `end'.
295         (ses-header-string-left-offset): Remove.
296         (ses-create-header-string): Adjust to new behavior of `align-to'.
297         Truncate excessively large fields to preserve alignment.
298         (ses-reconstruct-all): Remove unused var `refs'.
299         (ses-read-cell-printer): Remove unused var `prompt'.
300         (ses-delete-row): Remove unused var `pos'.
301         (ses-delete-column): Remove unused var `new'.
303 2004-11-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
305         * ps-print.el: Insert :version tag into all defgroup and defcustom.
306         Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
307         Eliminate eval-and-compile usage.
308         (ps-insert-file): Use insert-file-contents instead of insert-file.
309         (ps-setup): Code fix.
311         * printing.el (pr-setup, lpr-setup): Code fix.
313 2004-11-21  Jay Belanger  <belanger@truman.edu>
315         * calc/calc-prog.el (math-integral-cache-state, calc-lang)
316         (calc-original-buffer): Declare them.
317         (calc-user-formula-alist): New variable.
318         (calc-user-define-formula, calc-fix-user-formula)
319         (calc-user-define-composition, calc-finish-formula-edit):
320         Replace variable `alist' by declared variable.
321         (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
322         (var-q7, var-q7, var-q8, var-q9): Declare them.
323         (calc-kbd-push): Don't check to see if var-q0 through var-q9
324         are bound.
325         (calcFunc-typeof): Replace undeclared variable by expression.
326         (math-exp-env): New variable.
327         (math-define-body, math-define-exp): Replace exp-env by declared var.
328         (math-define-exp): Replace misplaced variable by expression.
330         * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
331         (calc-curve-model, calc-curve-coefnames): New variables.
332         (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
333         varnames, model and coefnames by declared variables.
334         (math-root-widen): New variable.
335         (math-search-root, math-find-root): Replace variable root-widen by
336         declared variable.
337         (var-DUMMY): Declare it.
338         (math-root-vars, math-min-vars): Move the declarations to earlier in
339         the file.
340         (math-brent-min): Make d a local variable.
341         (math-find-minimum): Replace non-existent variable.
342         (math-ninteg-romberg): Remove unnecessary variable.
343         (math-ninteg-temp): New variable.
344         (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
345         integ-temp by declared variable.
346         (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
347         New variables.
348         (math-general-fit): Replace variables first-var, first-coef and
349         new-coefs by declared variables.
350         (calcFunc-fitvar): Replace variable first-var by declared variable.
351         (calcFunc-fitparam): Replace variable first-coef by declared variable.
352         (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
353         (math-all-vars-vars, math-all-vars-found): New variables.
354         (math-all-vars-in, math-all-vars-rec): Replace variables vars and
355         found by declared variable math-all-vars-vars.
357 2004-11-20  Luc Teirlinck  <teirllm@auburn.edu>
359         * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
360         of `defconst'.
362 2004-11-20  Richard M. Stallman  <rms@gnu.org>
364         * isearch.el (isearch-mode-map): Don't bind SPC.
365         (isearch-whitespace-chars): Function deleted.
366         (isearch-search): Bind search-spaces-regexp.
367         (isearch-lazy-highlight-search): Likewise.
368         (search-whitespace-regexp): Doc fix.
369         (isearch-forward-regexp): Doc fix.
371         * emacs-lisp/bytecomp.el (byte-compile-form):
372         Move the calls to byte-compile-set-symbol-position,
373         to avoid having two for the same symbol occurrence.
375         * comint.el (comint-input-ring-size): Increase to 150.
377         * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
378         New variables.
379         (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
380         (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
382         * imenu.el (imenu--generic-function):
383         Ensure we keep moving backward even if BEG isn't further back.
385         * replace.el (query-replace-read-to, query-replace-read-from):
386         Specify t for KEEP-ALL in read-from-minibuffer.
388         * progmodes/python.el (python-switch-to-python):
389         If Python isn't running, start it.
390         Don't alter debug-ignored-errors.
392         * progmodes/cperl-mode.el (cperl-indent-region):
393         Don't mind imenu-scanning-message.
395         * bindings.el (global-map): Bind C-e to move-end-of-line.
397         * simple.el (line-move-finish): New arg FORWARD.
398         Ignore invisible newlines, not intangible ones.
399         Conditions for acceptable stopping positions depend on FORWARD.
400         (line-move): Pass FORWARD arg to line-move-finish.
402         * buff-menu.el (list-buffers-noselect): Eliminate space at the start
403         of HEADER.  Compensate for this change in the code to add display
404         properties.  Don't make the first line intangible.
406         * info.el (Info-search): Fix previous change.
408 2004-11-20  Thien-Thi Nguyen  <ttn@gnu.org>
410         * Makefile.in (recompile): Revert 2004-11-19 change.
411         (compile): Likewise.
413 2004-11-19  Luc Teirlinck  <teirllm@auburn.edu>
415         * Makefile.in (compile): Set `max-specpdl-size' before compiling.
417 2004-11-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
419         * progmodes/ebnf2ps.el: Fix typos.  Insert :version tag into all
420         defgroup and defcustom.  Eliminate eval-and-compile usage.
422         * progmodes/ebnf-otz.el: Fix typos.
424 2004-11-19  Jay Belanger  <belanger@truman.edu>
426         * calc/calc-yank.el (calc-edit-disp-trail): New variable.
427         (calc-edit-finish, calc-finish-stack-edit): Replace variable
428         disp-trail by declared variable.
430         * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
431         (calc-finish-selection-edit):  Replace variable disp-trail by
432         declared variable.
433         (calc-selection-cache-entry): Move declaration to earlier in the file.
434         (calc-selection-cache-num, calc-selection-cache-comp)
435         (calc-selection-cache-offset, calc-selection-true-num)
436         (calc-final-point-line, calc-final-point-column)
437         (calc-original-buffer): Declare them.
438         (calc-fnp-op, calc-fnp-num): New variables.
439         (calc-find-nth-part, calc-find-nth-part-rec)
440         (calc-select-previous): Replace op and num by declared variables.
441         (calc-rsf-old, calc-rsf-new): New variables.
442         (calc-replace-sub-formula, calc-replace-sub-formula-rec):
443         Replace variables old and new by declared variables.
444         (calc-sel-reselect): New variable.
445         (calc-auto-selection, calc-enter-selection, calc-edit-selection)
446         (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
447         (calc-sel-mult-both-sides, calc-sel-add-both-sides):  Replace variable
448         reselect with declared variable.
450         * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
451         (math-bound-vars, math-conds, math-copy-neg, math-rhs)
452         (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
453         (math-import-list, math-rewrite-phase): Declare them.
454         (math-rewrite):  Use let* to declare variables.
455         (calc-rewrite-selection): Make rules a local variable.
456         (calc-rewr-sel): New variable.
457         (calc-rewrite-selection, calc-locate-selection-marker)
458         (calc-rewrite): Use the declared variable calc-rewr-sel instead
459         of sel.
460         (math-rewrite-whole-expr): New variable.
461         (math-rewrite, math-rewrite-phase): Replace variable expr by
462         declared variable.
463         (math-rewrite-heads-heads, math-rewrite-heads-skips)
464         (math-rewrite-heads-blanks ): New variables.
465         (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
466         heads, skips and blanks by declared variables.
467         (math-rwcomp-subst-old, math-rwcomp-subst-new)
468         (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
469         New variables.
470         (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
471         old, new, old-func and new-func by declared variables.
472         (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
473         Remove unnecessary variable.
474         (math-apply-rw-regs): New variable.
475         (math-apply-rewrites, math-rwapply-replace-regs)
476         (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
477         (math-apply-rw-ruleset): New variable.
478         (math-apply-rewrites, math-rwapply-remember): Replace variable
479         ruleset by declared variable.
481 2004-11-19  Richard M. Stallman  <rms@gnu.org>
483         * info.el (Info-search): Use search-whitespace-regexp.
485 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
487         * vc-rcs.el (vc-rcs-parse): New function.
488         (vc-rcs-annotate-command): Likewise.
489         (vc-rcs-annotate-current-time): Likewise.
490         (vc-rcs-annotate-time): Likewise.
491         (vc-rcs-annotate-extract-revision-at-line): Likewise.
493 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
495         * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
497 2004-11-18  Jay Belanger  <belanger@truman.edu>
499         * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
501 2004-11-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
503         * printing.el: Eliminate use of interactive-p and eval-and-compile.
504         Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
505         Use make-temp-file to generate PostScript files in any situation.
506         (pr-ps-temp-file): Now specify a prefix to generate temporary files.
507         (pr-interactive-p): Eliminate var.
508         (pr-save-interactive): Eliminate macro.
509         (pr-interface, pr-ps-directory-preview)
510         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
511         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
512         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
513         (pr-ps-buffer-ps-print, pr-ps-region-preview)
514         (pr-ps-region-using-ghostscript, pr-ps-region-print)
515         (pr-ps-region-ps-print, pr-ps-mode-preview)
516         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
517         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
518         (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
519         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
520         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
521         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
522         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
523         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
524         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
525         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
526         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
527         (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
528         Eliminate pr-save-interactive usage.
529         (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
530         Eliminate pr-interactive-p usage.
531         (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
532         (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
533         (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
534         (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
535         (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
536         (pr-toggle-header-menu, pr-toggle-header-frame-menu)
537         (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
538         New funs.
539         (pr-ps-file): Use make-temp-file to generate a temporary file.
541 2004-11-17  Jay Belanger  <belanger@truman.edu>
543         * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
544         a local variable.
545         (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
546         (math-top-only): New variable.
547         (math-simplify, math-simplify-step): Replace variable top-only by
548         declared variable math-top-only.
549         (math-simplify-expr): Declare it.
550         Replace argument expr in all calls of math-defsimplify by
551         math-simplify-expr.
552         (math-simplify-plus, math-simplify-times, math-simplify-divide)
553         (math-simplify-divisor, math-simplify-one-divisor)
554         (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
555         (math-simplify-pow): Replace variable expr by declared variable
556         math-simplify-expr.
557         (math-simplify-divisor): Remove local variables temp and op.
558         (math-simplify-one-divisor): Make temp and op local variables.
559         (math-simplify-divisor-nover, math-simplify-divisor-dover):
560         New variables.
561         (math-simplify-divisor, math-simplify-one-divisor):
562         Replace variables nover and dover by declared variables.
563         (math-expr-subst-new, math-expr-subst-old): New variables.
564         (math-expr-subst, math-expr-subst-rec): Replace variables new
565         and old by declared variables.
566         (math-is-poly-degree, math-is-poly-loose): New variables.
567         (math-is-polynomial, math-is-poly-rec): Replace variables degree
568         and loose by declared variables.
569         (math-poly-base-const-ok, math-poly-base-pred): New variables.
570         (math-polynomial-base, math-polynomial-base-rec):
571         Replace variables const-ok and mpb-pred by declared variables.
573         * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
575         * calc/calc-ext.el (math-defsimplify): Change the argument in
576         the created function to math-simplify-expr.
578         * calc/calc-units.el (math-simplify-expr): Declare it.
579         Replace argument expr in all calls of math-defsimplify by
580         math-simplify-expr.
581         (math-simplify-units-prod): Replace variable expr by declared
582         variable math-simplify-expr.
584 2004-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
586         * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
587         Replace mapcar->dolist, format->string.
589 2004-11-17  Miles Bader  <miles@gnu.org>
591         * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
592         * progmodes/idlwave.el: Remove RCS keywords.
594 2004-11-17  J.D. Smith  <jdsmith@as.arizona.edu>
596         * progmodes/idlwave.el, progmodes/idlw-toolbar.el
597         * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
598         Update to IDLWAVE version 5.5.  Too many changes to list them here.
599         * progmodes/idlw-help.el: New file.
601 2004-11-16  Richard M. Stallman  <rms@gnu.org>
603         * international/iso-cvt.el (iso-tex2iso-trans-tab):
604         Discard spaces after \i according to TeX rules.
606         * international/mule.el (set-buffer-file-coding-system):
607         New arg NOMODIFY.
608         (after-insert-file-set-coding): Pass that new arg.
609         Prevent set-buffer-multibyte from trying to lock the file.
611         * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
613         * saveplace.el (save-place): Doc fix.
615         * dabbrev.el (dabbrev-expand): When handling SPC M-/,
616         temporarily widen before finding the following word to copy.
618         * emacs-lisp/lucid.el (map-keymap): Definition deleted.
619         (cl-map-keymap): Definition deleted.
621         * subr.el (map-keymap-internal): New function.
623 2004-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
625         * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
626         when pressing rather than when releasing mouse-2.  Simplify.
628 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
630         * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
631         (compilation-mode): Set it here instead.
633         * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
635         * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
636         (loop, cl-parse-loop-clause, defsetf): Use backquote.
638 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
640         * progmodes/compile.el (compilation-internal-error-properties):
641         Fix up a transposition-typo.  Check end-col before using it.
643 2004-11-14  Frederic Han  <han@math.jussieu.fr>  (tiny change)
645         * international/iso-cvt.el (iso-tex2iso-trans-tab):
646         Discard whitespace after macro \i when converting it.
648 2004-11-16  Juri Linkov  <juri@jurta.org>
650         * emacs-lisp/find-func.el (find-function-regexp):
651         Optimize `define-minor-mode'.  Add `defun-cvs-mode'.
652         Add `deffoo'.  Add `f' to [^cgv] to exclude `defface'.
653         Remove invalid `\W' from [^cgv\W].  Doc fix.
654         (find-function-search-for-symbol): Replace "\\>" with "\\_>".
656 2004-11-15  Luc Teirlinck  <teirllm@auburn.edu>
658         * play/life.el: Maintainer is now FSF.
659         (life-patterns, life-neighbor-deltas, life-window-start)
660         (life-current-generation, life-generation-string): Use defvar
661         instead of defconst.
663 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
665         * progmodes/compile.el (compilation-move-to-column): New fun.
666         (compilation-internal-error-properties)
667         (compilation-next-error-function): Use it to make sure we don't go past
668         the end of line.
670 2004-11-15  John Paul Wallington  <jpw@gnu.org>
672         * autoinsert.el (auto-insert-alist): Insert the user's name in
673         copyright notice, rather than Free Software Foundation, for the
674         Emacs Lisp header case too.
676 2004-11-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
678         * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
679         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
680         (pr-switches-string): If SWITCHES is nil, return nil.  Otherwise,
681         return the list of string in a string.
682         (pr-call-process): Message if calling process returns an error, that
683         is, the exit status is different of zero.
685 2004-11-15  Jay Belanger  <belanger@truman.edu>
687         * calc/calcalg2.el (math-integrate-by-parts):  Remove unused
688         variable var-thing.
689         (math-integ-depth, math-integ-level, math-integral-limit)
690         (math-enable-subst, math-any-substs, math-integ-msg)
691         (math-prev-parts-v, math-good-parts, math-max-integral-limit)
692         (math-int-threshold, math-int-factors, math-double-roots)
693         (math-solve-simplifying, var-IntegLimit, math-solve-sign)
694         (var-GenCount):  Declare these variables.
695         (calcFunc-integ):  Don't check if var-IntegLimit is bound.
696         (math-integral-cache, math-integral-cache-state):
697         Move declarations to earlier in the file.
698         (math-deriv-var, math-deriv-total, math-deriv-symb)
699         (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
700         (math-so-far, math-integ-expr, math-expr-parts, calc-low)
701         (calc-high, math-solve-var, math-solve-full, math-solve-vars)
702         (math-try-solve-sign, math-solve-b, math-solve-system-vv)
703         (math-solve-res):  New variables
704         (math-derivative, calcFunc-deriv, calcFunc-tderiv)
705         (math-integral, math-replace-integral-parts)
706         (math-integrate-by-parts, calc-dump-integral-cache)
707         (math-try-integral, math-do-integral, math-do-integral)
708         (math-do-integral-methods, math-try-solve-for)
709         (math-try-solve-prod, math-solve-poly-funny-powers)
710         (math-solve-crunch-poly, math-decompose-poly)
711         (math-solve-find-root-term, math-find-root-in-prod)
712         (math-integ-try-linear-substitutions)
713         (math-integ-try-substitutions, math-expr-rational-in)
714         (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
715         (math-solve-prod, math-solve-quartic, math-poly-all-roots)
716         (math-solve-for, math-solve-system, math-solve-system-rec)
717         (math-solve-get-sign, math-solve-get-int)
718         (math-solve-system-subst): Replace undeclared variables with newly
719         declared variables.
721 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
723         * winner.el (winner-active-region, winner-edges, winner-window-list):
724         Define at toplevel.
725         (winner-mode-map): Move init inside declaration.
727 2004-11-14  Luc Teirlinck  <teirllm@auburn.edu>
729         * files.el (convert-standard-filename): Doc fix.
731 2004-11-14  Daniel Pfeiffer  <occitan@esperanto.org>
733         * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
734         passwd, group, shadow, default/* and pam.d/*.
736 2004-11-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
738         * printing.el (pr-menu-spec): Adjust menu specification.
740 2004-11-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
742         * printing.el: Doc fix.  Insert :version tag into all defcustom.
743         Handle interactive-p as is recommended in Emacs Lisp Reference.
744         Set the file permission bits for newly created files.
745         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
746         The printing menu specification (in `pr-menu-spec') was merged.
747         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
748         (pr-version): New version number (6.8.3).
749         (pr-file-modes): New option.
750         (pr-interactive-p): New var.
751         (pr-save-interactive, pr-save-file-modes): New macros.
752         (pr-setup): Code fix.
753         (pr-menu-spec): Menu specification merged.
754         (pr-call-process, pr-text2ps): Set file permission bits.
755         (pr-despool-print): Set file permission bits.  Handle interactive-p as
756         is recommended.
757         (pr-interface, pr-ps-directory-preview)
758         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
759         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
760         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
761         (pr-ps-buffer-ps-print, pr-ps-region-preview)
762         (pr-ps-region-using-ghostscript, pr-ps-region-print)
763         (pr-ps-region-ps-print, pr-ps-mode-preview)
764         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
765         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
766         (pr-despool-using-ghostscript, pr-despool-ps-print)
767         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
768         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
769         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
770         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
771         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
772         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
773         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
774         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
775         (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
776         (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
777         Handle interactive-p as is recommended.
779 2004-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
781         * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
782         (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
784         * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
785         so it doesn't forget to highlight the beginning of the region either.
787 2004-11-13  Daniel Pfeiffer  <occitan@esperanto.org>
789         * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
790         (c-font-lock-init): Eliminate obsolete make-local-hook.
791         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
792         (awk-mode): Use run-mode-hooks.
794         * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
796 2004-11-13  Kim F. Storm  <storm@cua.dk>
798         * mouse.el (mouse-drag-copy-region): Add :version.
799         (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
800         while dragging mode line, so mode line can be dragged downwards.
801         (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
802         while pressing mouse button so window doesn't scroll until we
803         release the mouse if clicking on partially visible line.
805 2004-11-12  Jay Belanger  <belanger@truman.edu>
807         * calc/calc-graph.el (calc-dumb-map):  Declare it.
808         (calc-graph-show-dumb):  Check if calc-dumb-map is non-nil rather
809         than unbound.
810         (calc-graph-name):  Made `end' a local variable.
811         (calc-graph-lookup):  Made `varname' a local variable.
812         (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
813         Declare them.
814         (calc-graph-format-data):  Don't check if var-PlotRejects is bound.
815         (calc-graph-plot, calc-graph-compute-3d):  Remove references to
816         the unused variable y3vec.
817         (calc-graph-show-dumb):  Remove reference to unused variable found-pt.
818         (calc-graph-kill-hook, calc-graph-plot):  Remove reference to
819         calc-graph-prev-kill-hook.
820         (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
821         (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
822         (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
823         (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
824         (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
825         (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
826         (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
827         (calc-graph-y3value, calc-graph-y3name)
828         (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
829         (calc-graph-stepcount, calc-graph-is-splot)
830         (calc-graph-surprise-splot, calc-graph-blank)
831         (calc-graph-non-blank, calc-graph-curve-num):  New variables.
832         (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
833         (calc-graph-recompute-2d, calc-graph-compute-3d)
834         (calc-graph-format-data): Replace undeclared variables with the
835         above newly declared variables.
837 2004-11-12  Diane Murray  <dsm@muenster.de>  (tiny change)
839         * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
840         `rsf-beep' and `rsf-sleep-after-message'.
842         * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
843         list if `message-sender' is non-nil.
845 2004-11-12  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
847         * desktop.el (desktop-create-buffer, desktop-save): Avoid some
848         consing by using mapc instead of mapcar.
850 2004-11-12  Nick Roberts  <nickrob@snap.net.nz>
852         * tooltip.el (require): Explain why CL is needed.
854 2004-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
856         * printing.el: Insert :version into defgroup (printing).  All reference
857         to Files option in menubar were changed to File.
858         (pr-version): New version number (6.8.2).
859         (pr-get-symbol): Call easy-menu-intern.
860         (pr-region-active-p): Now is a fun (it was defsubst).  To avoid
861         compilation gripes.
863 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
865         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
866         new byte-compile-function-environment binding to t.
868         * font-lock.el (font-lock-fontify-syntactically-region):
869         Don't forget to highlight the last char when we hit `end'.
871         * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
872         (mwheel-scroll): Adjust accordingly.
874         * cvs-status.el: Reduce spurious warnings.
875         (cvs-status-checkout): Remove.
876         (cvs-status-mode-map): Use cvs-mode-checkout instead.
878         * pcvs.el (cvs-mode-checkout): New command.
880         * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
882         * tooltip.el: Require CL.
884         * emacs-lisp/bytecomp.el: Use push.
885         (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
886         (defalias): Remove the `byte-compile' property and add
887         a `byte-hunk-handler'.
889 2004-11-11  Juri Linkov  <juri@jurta.org>
891         * info.el (Info-search): Save match data for isearch.
892         Skip Tag Table node.
894         * descr-text.el (describe-char): Replace syntax-after with code
895         from its previous version.
897         * files.el (magic-mode-alist): Use optimization for SGML mode too.
898         (set-auto-mode): Doc fix.  Remove unused variable `xml'.
900         * international/mule.el (sgml-html-meta-auto-coding-function):
901         Remove > after <html to allow HTML attributes.
903 2004-11-11  Jay Belanger  <belanger@truman.edu>
905         * calc/calc-comb.el (math-prime-factors-finished):  Declare it as
906         a variable.
907         (calcFunc-dfac):  Replace unbound max by n.
908         (math-stirling-local-cache):  New variable.
909         (math-stirling-number, math-stirling-1, math-stirling-2):
910         Replace the variable `cache' by the declared variable
911         math-stirling-local-cache.
912         (var-RandSeed):  Declare it as a variable.
913         (math-init-random-base, math-random-digit):  Don't check to see if
914         var-RandSeed is bound.
915         (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
916         Declare them instead of just setting them.
917         (math-init-random-base):  Made i a local variable.
918         (math-random-digit):  Made math-random-last a local variable.
919         (math-prime-test-cache):  Move declaration to before it is used.
920         (math-prime-test-cache-k, math-prime-test-cache-q)
921         (math-prime-test-cache-nm1, math-prime-factors-finished):
922         Declare them as variables.
924 2004-11-11  Jay Belanger  <belanger@truman.edu>
926         * calc/calc-ext.el (math-defcache):  Use defvar for the new
927         variables it creates.
929 2004-11-11  Lars Hansen  <larsh@math.ku.dk>
931         * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
932         (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
933         (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
934         (desktop-save): Add :version.
936 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
938         * printing.el (pr-get-symbol): Don't downcase.
940 2004-11-10  Jay Belanger  <belanger@truman.edu>
942         * calc/calc-aent.el (calc-do-quick-calc):  Use kill-new to append
943         string to kill-ring.
945         * calc/calc-aent.el (calc-alg-exp, math-toks)
946         (math-exp-pos,math-exp-old-pos, math-exp-token)
947         (math-exp-keep-spaces, math-exp-str):  New variables.
948         (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
949         (calcAlg-enter):  Use declared variable calc-alg-exp.
950         (math-build-parse-table, math-find-user-token):  Use declared
951         variable math-toks.
952         (math-read-exprs, math-read-token, calc-check-user-syntax)
953         (calc-match-user-syntax, match-factor-after, math-read-factor):
954         Use declared variables math-exp-pos math-exp-old-pos.
955         (math-read-exprs, math-read-token, math-read-expr-level)
956         (calc-check-user-syntax, calc-match-user-syntax)
957         (match-factor-after, math-read-factor):  Use declared variable
958         math-exp-token.
959         (math-read-exprs, math-read-expr-list, math-read-token)
960         (math-read-factor):  Use declared variable math-exp-keep-spaces.
961         (math-read-exprs, math-read-token):  Use declared variable
962         math-exp-str.
963         (calc-match-user-syntax):  Make m a local variable.
965         * calc/calc-ext.el (math-read-expr):  Use declared variables
966         math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
967         math-exp-keep-spaces.
969         * calc/calc-forms.el (math-read-angle-bracket):  Use declared
970         variables math-exp-pos, math-exp-str.
972         * calc/calc-lang.el (math-parse-tex-sum):  Use declared variable
973         math-exp-old-pos.
974         (math-parse-fortran-vector, math-parse-fortran-vector-end)
975         (math-parse-eqn-prime):  Use declared variable math-exp-token.
977         * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
978         Use declared variable math-exp-pos.
979         (math-check-for-commas):  Use declared variable math-exp-str.
980         (math-read-brackets):  Use declared variables math-exp-old-pos,
981         math-exp-keep-spaces.
982         (math-read-brackets, math-read-vector, math-read-matrix):
983         Use declared variable math-exp-token.
985 2004-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
987         * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
988         where the keymap is a symbol.
989         (easy-menu-add-item): Use keymap-prompt.  Simplify.
991         * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
993         * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
994         (sgml-parse-tag-backward): Use it to skip spurious < or >.
996 2004-11-10  Thien-Thi Nguyen  <ttn@gnu.org>
998         * ebuff-menu.el: Doc fixes throughout.
999         (electric-buffer-menu-mode-hook): New defvar.
1001 2004-11-10  Nick Roberts  <nickrob@snap.net.nz>
1003         * tooltip.el: Don't require cl, comint, gud, gdb-ui for
1004         compilation. The resulting compiler warnings appear to be harmless.
1006 2004-11-10  Daniel Pfeiffer  <occitan@esperanto.org>
1008         * textmodes/conf-mode.el: New file.
1010         * files.el (auto-mode-alist, magic-mode-alist): Use it.
1012 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1014         * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
1016 2004-11-09  Jay Belanger  <belanger@truman.edu>
1018         * calc/calc-ext.el (calc-init-extensions):  Remove old code.
1020         * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
1021         (calc-z-prefix-buf, calc-z-prefix-msgs):  New variables.
1022         (calc-z-prefix-help, calc-user-function-list):  Use declared
1023         variables calc-z-prefix-buf, calc-z-prefix-msgs.
1024         (math-map-tree, math-map-tree-rec):  Use declared variables
1025         math-mt-many, math-mt-func.
1026         (math-read-expression, math-read-string):  Use declared variable
1027         math-expr-data.
1029         * calc/calc-ext.el (math-normalize-nonstandard):  Use declared
1030         variable math-normalize-a.
1032         * calc/calc.el (math-normalize-a):  New variable.
1033         (math-normalize):  Use declared variable math-normalize-a.
1035         * calc/calc-poly.el (math-expand-form):  Use declared variable
1036         math-mt-many.
1038         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
1039         Use declared variable math-mt-many.
1040         (math-rewrite):  Use declared variable math-mt-func.
1042         * calc/calc-vec.el (math-read-brackets, math-read-vector)
1043         (math-read-matrix):  Use declared variable math-expr-data.
1045         * calc/calc-lang.el (math-parse-fortran-vector)
1046         (math-parse-fortran-vector-end, math-parse-tex-sum)
1047         (math-parse-eqn-matrix, math-parse-eqn-prime)
1048         (math-read-math-subscr):  Use declared variable math-expr-data.
1050         * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
1051         (math-read-expr-level, math-read-token, calc-check-user-syntax)
1052         (calc-match-user-syntax, math-read-if, math-factor-after)
1053         (math-read-factor):  Use declared variable math-expr-data.
1055 2004-11-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
1057         * calendar/diary-lib.el (diary-from-outlook)
1058         (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
1059         interactive-p; but rather new optional argument NOCONFIRM.
1061 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1063         * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
1064         (easy-menu-name-match): Revert correspondingly.
1066 2004-11-09  Richard M. Stallman  <rms@gnu.org>
1068         * emacs-lisp/bytecomp.el (byte-compile-defalias):
1069         Turn off warnings for the new function even if definition not constant.
1070         If the definition isn't a quoted symbol, record (FUNCTION . t).
1071         (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
1072         (byte-compile-callargs-warn): Handle (FUNCTION . t).
1073         (display-call-tree, byte-compile-arglist-warn):
1074         Handle t returned by byte-compile-fdefinition.
1076 2004-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1078         * Makefile.in (maintainer-clean): Depend on distclean.
1080         * help-fns.el (help-C-file-name): File name must be in build-files
1081         to be returned.
1083 2004-11-09  Jay Belanger  <belanger@truman.edu>
1085         * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
1086         (calc-start-hook, calc-end-hook, calc-load-hook):  New variables.
1088         * calc/calc.el (calc, calc-trail-display, calc-mode):
1089         Remove obsolete sections.
1091         * calc/calc.el (calc-x-paste-text):  Remove.
1093         * calc/calc-ext.el (calc-init-extensions):  Bind calc-yank to
1094         mouse-2.
1096 2004-11-09  Nick Roberts  <nickrob@snap.net.nz>
1098         * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
1099         (gdb-info-frames-custom, gdb-frame-handler): Use it to find
1100         current frame (in case of recursive calls).
1101         (gdb-show-changed-values): Add :version keyword.
1103 2004-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1105         * international/mule-cmds.el: Change coding-system to utf-8.
1106         (select-safe-coding-system-interactively):
1107         New function extracted from select-safe-coding-system.
1108         (select-safe-coding-system): Use it.
1110 2004-11-08  Richard M. Stallman  <rms@gnu.org>
1112         * subr.el (syntax-after): Doc fix.
1114         * paren.el (show-paren-function): Change calls to syntax-after
1115         for new way of returning the value.
1117         * menu-bar.el (menu-bar-file-menu): Make this the real name
1118         and menu-bar-files-menu the alias.  Use the former.
1119         (global-map): Use `file', not `files', as the symbol.
1121         * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
1123         * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
1124         Don't use beginning-of-buffer.
1125         (filesets-cmd-show-result): Use with-no-warnings.
1127 2004-11-08  Juri Linkov  <juri@jurta.org>
1129         * progmodes/compile.el (compile): Don't overwrite last command in
1130         minibuffer history with default command if they are not equal.
1132 2004-11-08  Jay Belanger  <belanger@truman.edu>
1134         * calc/calcalg2.el (math-do-integral-methods):  Try linear then
1135         non-linear substitutions.
1137 2004-11-08  Jay Belanger  <belanger@truman.edu>
1139         * calc/calcalg2.el (math-linear-subst-tried): New variable.
1140         (math-do-integral):  Set `math-linear-subst-tried' to nil.
1141         (math-do-integral-methods):  Use `math-linear-subst-tried' to
1142         determine what type of substitution to try.
1143         (math-integ-try-linear-substituion):
1144         Set `math-linear-subst-tried' to t.
1146 2004-11-08  Kim F. Storm  <storm@cua.dk>
1148         * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
1150 2004-11-07  Juri Linkov  <juri@jurta.org>
1152         * info-look.el (info-lookup): Allow reusing in the current buffer
1153         not only *info* buffer, but all (even renamed) Info buffers
1154         by checking for major-mode instead of *info* buffer name.
1155         (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
1156         (octave-mode, maxima-mode) <doc-spec>:
1157         Allow long dashes generated by Texinfo 4.7 before definitions.
1158         (texinfo-mode) <doc-spec>: Add space to suffix to find command
1159         definitions with argument separated by space.
1161 2004-11-06  Richard M. Stallman  <rms@gnu.org>
1163         * simple.el (next-error group, face): Move before first use.
1164         (next-error-highlight, next-error-highlight-no-select): Likewise.
1166         * simple.el (line-move-invisible-p): Rename from line-move-invisible.
1167         (line-move): New args NOERROR and TO-END.
1168         Return t if if succeed in moving specified number of lines.
1169         (move-end-of-line): New function.
1171         * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
1172         (end-of-buffer-other-window): Likewise.
1174         * simple.el (line-move-ignore-invisible): Default to t.
1176         * subr.el (syntax-after): Return the syntax letter, not the raw code.
1178         * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
1180         * international/iso-cvt.el (iso-cvt-define-menu):
1181         Rename menu-bar-files-menu to menu-bar-file-menu.
1183         * net/browse-url.el (browse-url-gnome-moz-program)
1184         (browse-url-gnome-moz-arguments): Move up before first use.
1186         * net/tramp.el (tramp group): Add :version.
1188         * progmodes/ada-xref.el (ada-gdb-application):
1189         Use goto-char instead of beginning-of-buffer.
1191         * progmodes/cperl-mode.el (cperl-info-on-command):
1192         Use goto-char instead of beginning-of-buffer.
1194         * progmodes/idlw-shell.el (idlwave-shell-examine-map):
1195         Move up before first use.
1196         (idlwave-shell-temp-pro-file): Likewise.
1197         (idlwave-shell-temp-rinfo-save-file): Likewise.
1198         (idlwave-shell-temp-file): Minor doc fix.
1200         * textmodes/flyspell.el (flyspell-external-point-words):
1201         Use goto-char instead of beginning-of-buffer.
1203 2004-11-06  Kai Grossjohann  <kai.grossjohann@gmx.net>
1205         * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
1206         /dev/stdout" before trying "uudecode -o -".  Suggested by Han Boetes.
1207         (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
1209 2004-11-06  David Ponce  <david@dponce.com>
1211         * recentf.el (recentf-menu-path): Use menu item name.
1213 2004-11-06  Eli Zaretskii  <eliz@gnu.org>
1215         * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
1216         display doesn't support images.
1218 2004-11-06  Andreas Schwab  <schwab@suse.de>
1220         * tempo.el (tempo-match-finder): Doc fix.
1222         * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
1224 2004-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1226         * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
1227         (easy-menu-lookup-name): New fun to replace it.
1228         (easy-menu-get-map): Use it to obey menu item names (rather than just
1229         keys) when looking up `path'.
1230         (easy-menu-always-true-p): Rename from easy-menu-always-true.
1231         (easy-menu-convert-item-1): Adjust to new name.
1233 2004-11-06  Peter Heslin  <pj@heslin.eclipse.co.uk>  (tiny change)
1235         * outline.el (hide-body): Don't hide lines at the top of the file
1236         that precede the first header line.
1238 2004-11-06  Paul Pogonyshev  <pogonyshev@gmx.net>
1240         * align.el (align-areas): Delete whitespace before reindenting, so
1241         that tabs are never placed after spaces.
1243 2004-11-06  Alan Shutko  <ats@acm.org>
1245         * macros.el (insert-kbd-macro): Do completions based on macros,
1246         rather than all commands.
1248 2004-11-06  David Hansen  <david.hansen@gmx.net>  (tiny change)
1250         * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
1251         to solve a bug whereby tags with 'b' don't match.
1253 2004-11-05  Juri Linkov  <juri@jurta.org>
1255         * info.el (Info-search): Don't search in node header lines
1256         and file headers.
1258         * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
1259         symbol-constituent characters after dot, not only digits.
1261 2004-11-04  Daniel Pfeiffer  <occitan@esperanto.org>
1263         * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
1265 2004-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1267         * dired.el (dired-read-dir-and-switches): Call read-directory-name
1268         if a dialog will be used, read-file-name otherwise.
1270 2004-11-04  Richard M. Stallman  <rms@gnu.org>
1272         * textmodes/table.el (table group): Add :version.
1274         * textmodes/ispell.el (ispell-word):
1275         Don't alter args; set them only thru `interactive' spec.
1277         * textmodes/flyspell.el (flyspell-word):
1278         Don't alter FOLLOWING; set it only thru `interactive' spec.
1280         * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
1282         * net/browse-url.el (browse-url-maybe-new-window):
1283         Use called-interactively-p.
1285         * mail/supercite.el (sc-cite-region):
1286         Don't use interactive-p.  Add arg INTERACTIVE.
1287         (sc-version): Don't use interactive-p.  Rename arg to MESSAGE.
1289         * international/mule-cmds.el (set-input-method, toggle-input-method):
1290         Don't use interactive-p.  Add arg INTERACTIVE.
1292         * eshell/esh-mode.el (eshell-show-maximum-output):
1293         Don't use interactive-p.
1294         (eshell-truncate-buffer): Just message, no error, if buffer is short.
1296         * mouse.el (mouse-show-mark): Get positions to delete from mark
1297         and point, not from mouse-drag-overlay.
1299         * imenu.el (imenu-eager-completion-buffer): Add :version.
1301         * filesets.el (filesets group): Add :version.
1303 2004-11-03  Daniel Pfeiffer  <occitan@esperanto.org>
1305         * files.el (xml-based-modes): Delete var.
1306         (magic-mode-alist): New more general var.
1307         (set-auto-mode): Use it.
1309         * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
1310         when clicking from another window.
1312 2004-11-03  Thien-Thi Nguyen  <ttn@gnu.org>
1314         * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
1315         (vc-cvs-annotate-time): Incorporate value of deleted var.
1316         Remove special-case handling of beginning-of-buffer cruft.
1317         Cache ending position (point) and return value in text property
1318         `vc-cvs-annotate-time', and consult it on subsequent invocations.
1320         * vc-cvs.el (vc-cvs-annotate-command):
1321         Delete extraneous lines from beginning of buffer.
1322         * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
1324         * progmodes/grep.el (grep-default-command): Take empty string
1325         for tag if all other methods yield nil.  Shell-quote the tag.
1327         * vc.el (vc-annotate-display-autoscale): Add prefix-arg
1328         spec in `interactive' form, and mention it in the docstring.
1329         Also, make sure point is at bol after calling `annotate-time'.
1331 2004-11-02  Richard M. Stallman  <rms@gnu.org>
1333         * cus-edit.el (customize-group-other-window):
1334         Select the window that displays the custom buffer.
1335         (custom-buffer-create-other-window): Likewise.
1337         * comint.el (comint-insert-input): Fix previous change.
1339         * emacs-lisp/elp.el (elp-instrument-function):
1340         Use called-interactively-p.
1342         * emacs-lisp/easymenu.el (easy-menu-intern):
1343         Don't downcase; rather, case-flip the first letter of each word.
1345         * emacs-lisp/easy-mmode.el (define-minor-mode):
1346         Use called-interactively-p.
1348         * emacs-lisp/bytecomp.el (byte-compile-warning-types):
1349         Add interactive-only.
1350         (byte-compile-warnings): Add interactive-only as option.
1351         (byte-compile-interactive-only-functions): New variable.
1352         (byte-compile-form): Warn about calls to functions
1353         in byte-compile-interactive-only-functions.
1355         * emacs-lisp/autoload.el (update-file-autoloads):
1356         Don't use interactive-p; take new arg SAVE-AFTER.
1358         * emacs-lisp/advice.el (ad-make-advised-definition):
1359         Use called-interactively-p.
1361 2004-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1363         * files.el (find-file-existing): New function.
1365         * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
1366         find-file-existing.  Add "New File..." that calls find-file.
1368         * diropen.pbm diropen.xpm: New files.
1370         * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
1371         icon diropen.  New tool bar item find-file-existing uses icon open.
1373         * dired.el (dired-read-dir-and-switches): Call read-driectory-name
1374         instead of read-file-name.
1376 2004-11-02  Ulf Jasper  <ulf.jasper@web.de>
1378         * calendar/icalendar.el (icalendar-version): Increase to 0.08.
1379         (icalendar--split-value): Change name of work buffer.
1380         (icalendar--get-weekday-abbrev): Return nil on error.
1381         (icalendar--date-to-isodate): New function.
1382         (icalendar-convert-diary-to-ical)
1383         (icalendar-extract-ical-from-buffer): Use only two args for
1384         make-obsolete (XEmacs compatibility).
1385         (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
1386         (icalendar-export-region): Doc fix.
1387         If error, return non-nil and write errors to a buffer.
1388         Use correct weekday for weekly recurring events.
1389         Check whether date has been parsed for ordinary events.
1390         Make weekly events start in the year 2000.
1391         DTEND is non-inclusive, shift end date by one day if
1392         necessary (not for entries that have date and time).
1393         Rename local let variables: oops -> found-error, datestring ->
1394         startdatestring.
1396 2004-11-02  Kim F. Storm  <storm@cua.dk>
1398         * files.el (set-auto-mode-0): Don't rely on dynamic binding of
1399         keep-mode-if-same variable.  Add it as optional arg instead.
1400         (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
1402         * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
1403         substitute-command-keys will select lower-case bindings like those
1404         used in the static help texts.
1406         * descr-text.el (describe-text-properties): Don't err if called in
1407         the *Help* buffer; output to *Help-2* buffer instead.
1409         * kmacro.el (group kmacro): Add :version.
1410         (kmacro-keyboard-quit): New function to cleanup on C-g.
1411         (kmacro-start-macro): Set defining-kbd-macro to append when
1412         appending to last macro.
1414         * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
1416 2004-11-02  Nick Roberts  <nickrob@snap.net.nz>
1418         * progmodes/gdb-ui.el (gdb-enable-debug-log)
1419         (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
1420         (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
1421         Add :version keyword.
1423 2004-11-02  Pavel Kobiakov <pk_at_work@yahoo.com>
1425         * progmodes/flymake.el (flymake-err-line-patterns):
1426         Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
1427         `compilation-error-regexp-alist-alist' to internal Flymake format.
1429         * progmodes/flymake.el: Eliminate byte-compiler warnings.
1431 2004-11-01  Jay Belanger  <belanger@truman.edu>
1433         * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
1434         with `interactive "s"'.
1436 2004-11-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1438         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
1439         Revert change from 2004-10-16.  '*' checks the current buffer, but the
1440         mouse click may be in another buffer.
1442 2004-11-01  John Paul Wallington  <jpw@gnu.org>
1444         * files.el (large-file-warning-threshold): Add :version keyword.
1445         (kill-some-buffers): Doc fix.
1447         * thumbs.el (group thumbs): Add :version keyword.
1449         * textmodes/bibtex.el (bibtex-make-field): Fix typo.
1451 2004-11-01  Richard M. Stallman  <rms@gnu.org>
1453         * textmodes/ispell.el (ispell-word): Don't use interactive-p.
1455         * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
1457         * allout.el (allout group): Add :version.
1458         (allout-init): Don't use interactive-p.
1459         (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
1460         (allout-forward-current-level, allout-backward-current-level):
1461         Don't use interactive-p.
1463         * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
1464         (bibtex-find-text): Likewise.
1466         * progmodes/vhdl-mode.el (vhdl-fill-region)
1467         (vhdl-beginning-of-statement): Don't use interactive-p.
1469         * progmodes/idlwave.el (idlwave-update-routine-info):
1470         Don't use interactive-p.
1472         * progmodes/idlw-shell.el (idlwave-shell-send-char):
1473         Don't use interactive-p.
1475         * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
1476         Don't use interactive-p.
1478         * progmodes/ada-xref.el (ada-make-body-gnatstub):
1479         Don't use interactive-p.
1481         * play/fortune.el (fortune-to-signature): Don't use interactive-p.
1482         (fortune-in-buffer): Doc fix.
1484         * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
1486         * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
1487         don't select the temporary buffer.
1488         (eudc-get-email): New optional arg ERROR; don't use interactive-p.
1489         (eudc-get-phone): Likewise.
1491 2004-11-01  Kim F. Storm  <storm@cua.dk>
1493         * man.el (Man-xref-normal-file): Fix help-echo.
1495 2004-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1497         * reveal.el (reveal-last-tick): New var.
1498         (reveal-post-command): Use it to avoid closing overlays when we're
1499         appending text to them.
1501 2004-10-31  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1503         * textmodes/bibtex.el: Require button.
1504         (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
1505         (bibtex-reference-keys): Distinguish between header keys and
1506         crossref keys.
1507         (bibtex-beginning-of-field): New function.
1508         (bibtex-url-map): Remove.
1509         (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
1510         (bibtex-font-lock-url-regexp): Assume that field names begin at
1511         the beginning of a line.
1512         (bibtex-font-lock-url): Simplify.  Do not use bibtex-enclosing-field.
1513         Remove field delimiters.  Use bibtex-beginning-of-field.
1514         Bugfix, point can be inside a field with a url.
1515         (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
1516         New functions.
1517         (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
1518         (bibtex-key-in-head): Simplify.
1519         (bibtex-current-line): Use bolp.
1520         (bibtex-parse-keys): Remove unused arg `add'.
1521         Use bibtex-type-in-head and bibtex-key-in-head.
1522         (bibtex-parse-entry, bibtex-autofill-entry):
1523         Use bibtex-type-in-head and bibtex-key-in-head.
1524         (bibtex-autokey-get-field): Do not alter case of replacement text.
1525         (bibtex-autokey-get-names): Do all processing of name list.
1526         (bibtex-autokey-get-year): New function.
1527         (bibtex-autokey-get-title): Do all processing of title words.
1528         (bibtex-generate-autokey): Simplify.
1529         (bibtex-string-files-init): Use default-directory.
1530         Allow for absolute file names in bibtex-string-files.
1531         (bibtex-files, bibtex-file-path): New variables.
1532         (bibtex-files-expand): New function.
1533         (bibtex-find-entry-globally): New command.
1534         (bibtex-summary-function): New variable.
1535         (bibtex-summary): Default value of bibtex-summary-function.
1536         (bibtex-find-crossref): New optional args pnt and split.
1537         (bibtex-complete-key-cleanup): Call bibtex-summary-function.
1538         (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
1539         (bibtex-validate): Fix docstring.  Check only abbreviated month fields.
1540         Fix handling of required and alternative fields.
1541         Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
1542         Use cons and display-buffer.
1543         (bibtex-validate-globally): New command.
1544         (bibtex-clean-entry): Use bibtex-files-expand.  Do not call
1545         bibtex-parse-keys and bibtex-parse-strings for updating
1546         bibtex-reference-keys and bibtex-strings.
1547         (bibtex-realign): Remove blank lines past the last entry.
1548         (bibtex-reformat): Use bibtex-entry-format as default.
1549         (bibtex-choose-completion-string): Remove.
1550         (bibtex-complete): Do not use bibtex-choose-completion-string.
1551         (bibtex-url): Simplify.
1553 2004-10-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1555         * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
1556         (x-dnd-types-alist, x-dnd-open-file-other-window)
1557         (x-dnd-known-types): Add :version.
1559 2004-10-31  John Paul Wallington  <jpw@gnu.org>
1561         * ibuffer.el (group ibuffer): Add :version keyword.
1563 2004-10-31  Kim F. Storm  <storm@cua.dk>
1565         * ido.el (group ido): Add :version keyword.
1566         (ido-mode): Remove :version keyword.
1568         * emulation/cua-base.el (group cua): Add :version keyword.
1569         (cua-mode): Remove :version keyword.
1571 2004-10-30  Luc Teirlinck  <teirllm@auburn.edu>
1573         * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
1575         * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
1576         compiler warning.
1577         (help-at-pt-timer-delay): Add :initialize keyword.  Simplify :set
1578         function.
1579         (help-at-pt-display-when-idle): Remove autoload.
1581 2004-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1583         * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
1585 2004-10-30  Juri Linkov  <juri@jurta.org>
1587         * help.el (function-called-at-point):
1588         * help-fns.el (variable-at-point): Read -> intern.
1590 2004-10-30  Simon Josefsson  <jas@extundo.com>
1592         * progmodes/autoconf.el (autoconf-font-lock-keywords):
1593         Recognize AS_* too.
1595 2004-10-29  Simon Josefsson  <jas@extundo.com>
1597         * subr.el (read-passwd): Move back from password.el.
1599         * password.el: Remove, not ready yet.
1601 2004-10-29  Andreas Schwab  <schwab@suse.de>
1603         * speedbar.el (speedbar-frame-parameters): Improve customize type.
1605 2004-10-29  Sam Steingold  <sds@gnu.org>
1607         * mouse.el (mouse-show-mark): Replace the last occurrence of
1608         x-lost-selection-hooks with x-lost-selection-functions.
1610 2004-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1612         * mouse.el (mouse-show-mark): Adjust to new name and don't assume
1613         x-lost-selection-functions is bound.
1615         * mouse-sel.el (mouse-sel-mode):
1616         * emacs-lisp/lselect.el: Adjust to new names for
1617         x-(lost|sent)-selection-functions.
1619         * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
1620         New obsolete aliases of x-lost-selection-functions and
1621         x-sent-selection-functions.
1623 2004-10-28  Kim F. Storm  <storm@cua.dk>
1625         * imenu.el (imenu-scanning-message): Remove.
1626         (imenu-progress-message): Make it a no-op.
1628 2004-10-28  John Paul Wallington  <jpw@gnu.org>
1630         * files.el (set-auto-mode): Call `throw' correctly.
1632 2004-10-28  Juri Linkov  <juri@jurta.org>
1634         * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
1635         to search `Info-...' commands in `info' manual.
1636         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
1637         Add 'info-file "emacs" property.
1638         (Info-find-emacs-command-nodes): Fix index line number regexp.
1639         Set real line number (instead of fake 0) in first element of the
1640         returned list.
1641         (Info-goto-emacs-command-node): Use line number of first element
1642         to set point in the first found Info node.
1644         * progmodes/grep.el (grep-regexp-alist): Move match highlighting
1645         code to `grep-mode-font-lock-keywords'.
1646         (grep-mode-font-lock-keywords): Delete grep markers instead
1647         of making them invisible.
1649 2004-10-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1651         * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
1652         and x-server-version in bug report.
1654 2004-10-28  Daniel Pfeiffer  <occitan@esperanto.org>
1656         * files.el (set-auto-mode-0): New function.
1657         (set-auto-mode): Use it to handle aliased modes and to
1658         be consistent between C-x C-f and C-x C-w.
1660 2004-10-28  Kenichi Handa  <handa@m17n.org>
1662         * international/utf-8.el (utf-translate-cjk-charsets):
1663         Add katakana-jisx0201.
1665         * international/subst-jis.el: Add data for JISX0201.
1667 2004-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1669         * obsolete/hilit19.el (hilit-mode): New function.
1670         Move all the toplevel side-effecting stuff into it, so that loading
1671         hilit19 doesn't mess everything up any more.
1673 2004-10-27  Richard M. Stallman  <rms@gnu.org>
1675         * add-log.el (add-change-log-entry): Set up mailing address
1676         and full name later, and don't alter add-log-mailing-address
1677         or add-log-full-name.
1679         * elide-head.el (elide-head): Change error to message.
1680         (elide-head-show): Likewise.
1682         * apropos.el (apropos-macrop): Doc fix.
1684         * mouse.el (mouse-show-mark): Do most processing the same
1685         regardless of transient-mark-mode.
1687         * shadowfile.el (shadow-copy-files): Use interactive-p
1688         only to control whether to print a message.
1690         * tar-mode.el (tar-mode): Use write-contents-functions,
1691         not write-contents-hooks.
1693         * eshell/em-unix.el (eshell-du-sum-directory): Don't use
1694         directory-sep-char.
1696 2004-10-27  Richard M. Stallman  <rms@gnu.org>
1698         * strokes.el (strokes-unload-hook): Fix previous change.
1700         * type-break.el (type-break-run-at-time): Always use run-at-time;
1701         forget the alternatives.
1702         (type-break-cancel-function-timers): Always use cancel-function-timers;
1703         forget the alternatives.
1705         * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
1707 2004-10-27  Kenichi Handa  <handa@m17n.org>
1709         * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
1711         * international/subst-gb2312.el: Likewise.
1713         * international/subst-big5.el: Likewise.
1715         * international/subst-ksc.el: Likewise.
1717         * international/utf-8.el (utf-translate-cjk-unicode-range-string):
1718         New variable.
1719         (utf-translate-cjk-set-unicode-range): New function.
1720         (utf-translate-cjk-unicode-range): Make it customizable.
1721         (utf-8-post-read-conversion):
1722         Use utf-translate-cjk-unicode-range-string.
1723         (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
1724         Unicode ranges.
1726 2004-10-26  Daniel Pfeiffer  <occitan@esperanto.org>
1728         * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
1729         trivial variants to shorten the list.
1730         (xml-based-modes): New var.
1731         (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
1732         declaration higher priority than auto-mode-alist.
1734         * find-file.el (cc-other-file-alist): Bring it in line with
1735         cc-mode's auto-mode-alist entries and use \' instead of $.
1737         * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
1738         and add "Id" and "Name" submenus to it.
1740         * imenu.el (imenu--generic-function): Skip matches in comments.
1742 2004-10-26  Jay Belanger  <belanger@truman.edu>
1744         * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
1745         (full-calc-keypad, calc-trail-display):  Use an extra argument
1746         instead of `interactive-p'.
1748         * calc/calc-misc.el (calc-other-window): Use an extra argument
1749         instead of `interactive-p'.
1751         * calc/calc-rewr.el (calc-match): Use an extra argument instead of
1752         `interactive-p'.
1754 2004-10-26  Kim F. Storm  <storm@cua.dk>
1756         * help.el (describe-key): Describe both down-event and up-event
1757         for a mouse click.
1759 2004-10-26  Richard M. Stallman  <rms@gnu.org>
1761         * woman.el (woman): Don't call interactive-p.
1763         * pcomplete.el (pcomplete): Instead of interactive-p,
1764         use an arg set non-nil by the interactive spec.
1766         * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
1767         use an arg set non-nil by the interactive spec.
1769         * man.el (Man-cleanup-manpage): Instead of interactive-p,
1770         use an arg set non-nil by the interactive spec.
1772 2004-10-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
1774         * progmodes/flymake.el (flymake-split-string):
1775         Use `flymake-split-string-remove-empty-edges' in any case.
1777 2004-10-26  Masatake YAMATO  <jet@gyve.org>
1779         * progmodes/flymake.el (flymake-err-line-patterns):
1780         Use `compilation-error-regexp-alist-alist' instead of
1781         `compilation-error-regexp-alist'.
1783 2004-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1785         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
1786         verbatim face on the \ of \end{verbatim}.
1788 2004-10-25  Jay Belanger  <belanger@truman.edu>
1790         * calc/calc-incom.el (calc-digit-dots):  Inhibit read-only before
1791         erasing minibuffer.
1793 2004-10-25  Simon Josefsson  <jas@extundo.com>
1795         * subr.el (read-passwd): Move to net/password.el.
1797         * net/password.el (read-passwd): Add.  Autoload it.
1799 2004-10-25  Kai Grossjohann  <kai.grossjohann@gmx.net>
1801         * mouse-sel.el (mouse-sel-mode): Specify custom group.
1803         * simple.el (process-file): Fix logic.
1805 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
1807         * indent.el (set-left-margin, set-right-margin): Delete redundant code.
1808         (increase-right-margin): Remove erroneous call to `interactive-p'.
1810 2004-10-24  Kim F. Storm  <storm@cua.dk>
1812         * help.el (describe-mode): Fix 2004-10-13 change.
1813         Copy pure "Auto Fill" string so it can be propertized later
1814         without causing a read-only error.
1816 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
1818         * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
1819         style indexes.
1821 2004-10-24  Kai Grossjohann  <kai.grossjohann@gmx.net>
1823         * simple.el (process-file): Accept nil for INFILE.  Reported by
1824         Luc Teirlinck.
1826 2004-10-24  Masatake YAMATO  <jet@gyve.org>
1828         * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
1829         Handle periods and underscores in a function name.
1830         Remove the address fontification.
1832 2004-10-24 Masatake YAMATO <jet@gyve.org>
1834         * progmodes/asm-mode.el (asm-font-lock-keywords):
1835         Use font-lock-variable-name-face for registers.
1837 2004-10-24  Nick Roberts  <nickrob@snap.net.nz>
1839         * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
1840         kill-all-local-variables.
1841         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
1842         (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
1843         Use kill-all-local-variables and provide mode-hooks.
1844         (gdb-assembler-font-lock-keywords): New font lock keywords definition.
1845         (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
1846         Suggested by Masatake YAMATO <jet@gyve.org>.
1848 2004-10-23  Kai Grossjohann  <kai.grossjohann@gmx.net>
1850         * simple.el (process-file): New function, similar to call-process
1851         but supports file handlers.
1852         * vc.el (vc-do-command): Use it, instead of call-process.
1853         * net/tramp-vc.el (vc-do-command): Do not advise it if
1854         process-file is fboundp.
1855         * net/tramp.el (tramp-file-name-handler-alist): Add entry for
1856         process-file.
1857         (tramp-handle-process-file): New function.
1858         (tramp-file-name-for-operation): Support process-file.
1860 2004-10-23  Ulf Jasper  <ulf.jasper@web.de>
1862         * calendar/icalendar.el (icalendar--weekday-array): New constant.
1863         (icalendar-weekdayabbrev-table)
1864         (icalendar-monthnumber-table): Delete.
1865         (icalendar--get-month-number): Use calendar-month-name-array.
1866         (icalendar--get-weekday-number): New function.
1867         (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
1868         (icalendar-export-region): Handle multi-line entries.
1869         (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
1871 2004-10-23  John Paul Wallington  <jpw@gnu.org>
1873         * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
1874         `wildcards' set to t in interactive spec.
1876         * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
1877         interactive spec rather than use `interactive-p'.
1878         (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
1879         rather than use function `interactive-p'.
1881 2004-10-22  Kenichi Handa  <handa@m17n.org>
1883         * international/mule.el (translate-region): Implement it in Lisp
1884         as a front end of translate-region-internal.
1886 2004-10-21  Jay Belanger  <belanger@truman.edu>
1888         * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
1889         Declare these variables with defvar.
1891         * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
1892         is bound, only check to see if it is bound.
1894 2004-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1896         * textmodes/tex-mode.el (tex-compilation-parse-errors):
1897         Don't output messages.
1899         * calc/calc-help.el (calc-describe-bindings): Fix last change.
1901 2004-10-21  John Paul Wallington  <jpw@gnu.org>
1903         * calc/calc-graph.el (calc-graph-init):
1904         Use `set-process-query-on-exit-flag'.
1906 2004-10-21  Daniel Pfeiffer  <occitan@esperanto.org>
1908         * progmodes/compile.el (compilation-start): Rely on `cd' to get
1909         dir right and also allow argumentless cd.
1911 2004-10-19  Richard M. Stallman  <rms@gnu.org>
1913         * textmodes/flyspell.el (flyspell-mode): Doc fix.
1915         * eshell/em-unix.el (eshell-grep):
1916         Don't bind compilation-process-setup-function.
1918         * comint.el (comint-insert-input): Use @ in `interactive'.
1919         (comint-input-filter-functions): Doc fix.
1920         (comint-kill-whole-line, comint-get-source): Doc fix.
1922         * progmodes/compile.el (compilation-setup):
1923         Don't set buffer-read-only if MINOR is non-nil.
1925 2004-10-19  Jay Belanger  <belanger@truman.edu>
1927         * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
1928         (calc-emacs-type-gnu19): Remove.
1929         (calc-digit-map, calc-read-key-sequence, calc-read-key):
1930         Remove check for old emacs versions.
1932         * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
1933         (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
1934         for current Emacs.
1936         * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
1937         the end of the minibuffer.
1938         (calc-do-alg-entry): Remove Emacs version check.  Use `copy-keymap' to
1939         copy `esc-map'.
1941         * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
1943         * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
1944         call that would be given when the current emacs was used.
1946 2004-10-19  Ulf Jasper  <ulf.jasper@web.de>
1948         * calendar/icalendar.el: Set coding to utf-8.
1949         (icalendar-version): Increase to 0.07.
1950         (icalendar-monthnumber-table): Change March pattern.
1951         (icalendar-get-all-event-properties)
1952         (icalendar-set-event-property): Delete.
1953         (icalendar-all-events): No longer interactive.
1954         (icalendar-convert-diary-to-ical)
1955         (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
1956         their replacements.
1957         (icalendar-export-file, icalendar-export-region): New functions;
1958         essentially old `icalendar-convert-diary-to-ical' but appending to
1959         target rather than overwriting.
1960         (icalendar-import-file): Append to target file rather than
1961         overwriting.  Fourth arg deleted.
1962         (icalendar-import-buffer): New name for old
1963         `icalendar-extract-ical-from-buffer'.
1964         (icalendar--convert-string-for-import): New name for
1965         old `icalendar-convert-for-import'.
1966         (include-icalendar-files): Delete.
1967         Prefix for all internal functions changed from `icalendar-'
1968         to `icalendar--'.
1970 2004-10-19  Richard M. Stallman  <rms@gnu.org>
1972         * paths.el (news-path): Fix previous change.
1974 2004-10-18 Jay Belanger  <belanger@truman.edu>
1976         * calc/calc-help.el (calc-describe-bindings):
1977         Set `buffer-read-only' to nil while working in the keybindings buffer;
1978         remove some extra information from the keybindings buffer.
1980 2004-10-18  David Ponce  <david@dponce.com>
1982         * mouse.el (mouse-drag-move-window-top): New function.
1983         (mouse-drag-mode-line-1): Use it.
1985 2004-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
1987         * info.el (Info-fontify-node): For multiline refs,
1988         arrange to unfontify newline and surrounding whitespace.
1990 2004-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1992         * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
1993         directory is missing.
1995 2004-10-17  John Paul Wallington  <jpw@gnu.org>
1997         * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
1998         New customizable variable; whether to display buffers that match
1999         `ibuffer-maybe-show-predicates' by default.
2000         (ibuffer-maybe-show-predicates): Mention it in docstring.
2001         (ibuffer-display-maybe-show-predicates): New variable.
2002         (ibuffer-update): Prefix arg now toggles whether buffers that
2003         match `ibuffer-maybe-show-predicates' should be displayed.
2004         (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
2005         locally to heed `ibuffer-default-display-maybe-show-predicates'.
2006         (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
2008 2004-10-17  Michael Albinus  <michael.albinus@gmx.de>
2010         * net/tramp.el: Redo sync with Tramp 2.0.45.  Last commit did not
2011         work correctly.
2013 2004-10-17  Daniel Pfeiffer  <occitan@esperanto.org>
2015         * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
2016         (Buffer-menu-beginning): New helper function.
2017         (Buffer-menu-execute): Use it.
2018         (Buffer-menu-select): Use it.
2019         (Buffer-menu-sort): Use it and also keep markers.
2021 2004-10-17  Richard M. Stallman  <rms@gnu.org>
2023         * paths.el (news-directory): Rename from news-path.  Old name alias.
2024         (rmail-spool-directory): Use defvar.
2025         (sendmail-program): Use defcustom.
2026         (remote-shell-program): Use defcustom.
2027         (term-file-prefix): Use defvar.
2028         (abbrev-file-name): Use defvar.
2030         * term.el: Add maintainer.
2032         * subr.el (with-local-quit): Return nil if there's a quit.
2033         (read-passwd): Use with-local-quit.  Doc fix.
2035         * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
2036         (strokes-unload-hook): Set as a variable with add-hook.
2038         * startup.el (fancy-splash-tail, normal-splash-screen):
2039         Update copyright year.
2041         * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
2043         * server.el (server-unload-hook): Set as a variable with add-hook.
2045         * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
2047         * frame.el (special-display-popup-frame):
2048         Make the buffer current as its frame is created.
2050         * delsel.el (delsel-unload-hook): Set as a variable.
2052         * comint.el (comint-output-filter-functions):
2053         Add comint-watch-for-password-prompt.
2054         (comint-read-noecho): Function deleted.
2055         (send-invisible): Use read-passwd.
2057         * fringe.el (fringe-mode-initialize): New function.
2058         (fringe-mode): Use fringe-mode-initialize as :initialize.
2060 2004-10-17  Kim F. Storm  <storm@cua.dk>
2062         * language/indian.el (indian-script-language-alist): Swap value and doc.
2063         (indian-font-char-index-table): Doc fix.
2065 2004-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2067         * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
2069 2004-10-16  Juri Linkov  <juri@jurta.org>
2071         * progmodes/compile.el (compilation-start): Move let-binding of
2072         `process-environment' into `with-current-buffer' body.
2073         Reported by Matt Hodges <MPHodges@member.fsf.org>.
2075 2004-10-16  Richard M. Stallman  <rms@gnu.org>
2077         * pcvs-util.el (cvs-bury-buffer):
2078         Don't call get-buffer-window for effect.
2080         * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
2082         * newcomment.el (comment-auto-fill-only-comments): Add autoload.
2084         * msb.el (msb-unload-hook): Set the variable.
2086         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
2087         Use * to err if buffer is readonly.
2089         * subr.el (looking-back): Return only t or nil.
2091         * whitespace.el (whitespace-unload-hook): Set the variable.
2093         * view.el (view-mode-enable): Set view-page-size and
2094         view-half-page-size to nil.
2095         (view-set-half-page-size-default): view-half-page-size = nil
2096         means the default.
2097         (View-scroll-page-forward): Use view-page-size-default.
2098         (View-scroll-page-backward): Likewise.
2099         (view-page-size, view-half-page-size): Doc fixes.
2101         * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
2103         * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
2105         * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
2106         "cl" like other files.  Instead, call byte-compile-find-cl-functions.
2107         (byte-compile-log-1): Bind inhibit-read-only.
2108         (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
2109         (byte-compile-log-warning): Likewise.
2110         (byte-compile-file-form-require): Detect "cl" from the arg value.
2112         * progmodes/compile.el (compilation-start): Assume compilation-mode
2113         will make the buffer read-only.
2114         (compilation-mode): Take arg name-of-mode.
2115         (compilation-setup): Make buffer read-only.
2116         (compilation-handle-exit): Bind inhibit-read-only.
2118         * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
2119         (ispell-message): Likewise.
2120         (ispell-show-choices): Don't call get-buffer-window uselessly.
2121         (ispell-init-process): Use set-process-query-on-exit-flag.
2123 2004-10-16  Kim F. Storm  <storm@cua.dk>
2125         * fringe.el (fringe-bitmaps): Only initialize when defined.
2127         * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
2128         (cvs-mode-find-file): Add optional `view' arg to enter view mode.
2130         * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
2132 2004-10-15  Simon Josefsson  <jas@extundo.com>
2134         * net/password.el: Add.
2136 2004-10-14  Masatake YAMATO  <jet@gyve.org>
2138         * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
2139         (gdb-script-end-of-defun): New function.
2140         (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
2141         `gdb-script-end-of-defun' as *-of-defun-function.
2143 2004-10-13  Daniel Pfeiffer  <occitan@esperanto.org>
2145         * button.el (button-activate): Allow a marker to display as an action.
2147         * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
2149         * help.el (describe-mode): Use it to make minor mode list into
2150         hyperlinks.
2152 2004-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2154         * vc.el (vc-annotate-display-select): Fix typo.
2156         * subr.el (substitute-key-definition-key): New function.
2157         (substitute-key-definition): Use it with map-keymap.
2158         (event-modifiers): Use push.
2159         (mouse-movement-p, with-temp-buffer): Simplify.
2161 2004-10-12  Jay Belanger  <belanger@truman.edu>
2163         * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
2164         New variables.
2165         (calc-help-index-entries): New function.
2166         (calc-describe-function): Use `calc-help-function-list' instead of
2167         obarray for completion.
2168         (calc-describe-variable): Use `calc-help-variable-list' instead
2169         of obarray for completion.
2171 2004-10-12  Richard M. Stallman  <rms@gnu.org>
2173         * info-look.el (info-lookup-file): Add info-file property.
2174         (info-lookup-symbol): Likewise.
2176         * info.el (info-xref): Add underlining.
2177         (info): Add info-file property.
2178         (Info-find-emacs-command-nodes): Specify case-sensitive search.
2180 2004-10-12  Michael Albinus  <michael.albinus@gmx.de>
2182         Sync with Tramp 2.0.45.
2184         * net/tramp.el (top): Apply `def-edebug-spec' only if function is
2185         defined.  This is not the case for XEmacs without package "edebug".
2186         (tramp-set-auto-save-file-modes): Set permissions of autosaved
2187         remote files to the permissions of the original file.  This is not
2188         the case for Emacs < 21.3.50 and XEmacs < 21.5.  Add function to
2189         `auto-save-hook'.  Reported by Thomas Prokosch <thomas@nadev.net>.
2190         (tramp-perl-decode): Fix an error in Perl implementation.
2191         $pending must be cleared every loop.  Reported by Benjamin Place
2192         <benjaminplace@sprintmail.com>
2194         * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
2195         Don't activate advice during definition.  This is done later on,
2196         depending on test result of `substitute-in-file-name'.
2197         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2199 2004-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2201         * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
2203         * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
2205 2004-10-12  David Ponce  <david@dponce.com>
2207         * recentf.el (recentf-edit-list): Update the menu when the recentf
2208         list has been modified.
2210 2004-10-12  Simon Josefsson  <jas@extundo.com>
2212         * net/tls.el (tls-certtool-program): New variable.
2213         (tls-certificate-information): New function, based on
2214         ssl-certificate-information.
2216 2004-10-12  Kenichi Handa  <handa@m17n.org>
2218         * international/mule.el (coding-system-equal): Move from mule-util.el.
2220         * international/mule-util.el (coding-system-equal): Move to mule.el.
2222 2004-10-12  Kim F. Storm  <storm@cua.dk>
2224         * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
2225         reset kmacro-initial-counter-value if set.
2226         (kmacro-set-counter): Only set kmacro-counter if defining or executing
2227         macro.  Set kmacro-initial-counter-value otherwise. Never set both.
2228         (kmacro-display): Show macro counter if non-zero.
2230         * subr.el (substitute-key-definition): Mention command remapping
2231         in doc string.
2233 2004-10-11  Jay Belanger  <belanger@truman.edu>
2235         * calc/calc-misc.el (calc-info-goto-node): New function.
2236         (calc-tutorial, calc-info-summary): Go to appropriate Calc info
2237         node in one step.
2238         (calc-describe-copying, calc-describe-distribution)
2239         (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
2240         Go to appropriate info node in one step.
2242 2004-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2244         * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
2246         * font-lock.el (font-lock-apply-highlight): Fix last change.
2248 2004-10-11  Simon Josefsson  <jas@extundo.com>
2250         * mail/smtpmail.el (smtpmail-open-stream): Look for
2251         starttls-gnutls-program instead of starttls-program iff
2252         starttls-use-gnutls is non-nil.
2253         (smtpmail-open-stream): Don't overwrite user settings of
2254         starttls-extra-arguments and starttls-extra-args.
2256 2004-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2258         * comint.el (comint-mouse-insert-input): Remove.
2259         (comint-insert-input): Make it work for mouse bindings.
2260         (comint-mode-map): Move defs into the declaration.
2261         (comint-output-filter): Typo.
2263         * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
2265 2004-10-10  Kai Grossjohann  <kai.grossjohann@gmx.net>
2267         * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
2268         (ange-ftp-call-chmod): Reference remote-shell-program instead of
2269         ange-ftp-remote-shell.
2271 2004-10-10  Andreas Schwab  <schwab@suse.de>
2273         * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
2274         `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
2275         Reported by <sri@asu.edu>.
2277 2004-10-10  Benjamin Rutt  <brutt@bloomington.in.us>
2279         * vc.el (vc-annotate-mode): Remove variable.
2280         (vc-annotate-display-select): Only call vc-annotate-mode
2281         if we're not in that mode already.
2283 2004-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2285         * imenu.el (imenu--completion-buffer): Don't return t for rescan.
2286         (imenu-choose-buffer-index): Check here for rescan instead.
2288         * font-lock.el (font-lock-apply-highlight): Explicitly check the case
2289         where the face expression evals to nil.
2291         * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
2292         (tex-font-lock-keywords-2): Use it.
2293         (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
2295         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
2297 2004-10-09  Kim F. Storm  <storm@cua.dk>
2299         * subr.el (progress-reporter-update): Define before first usage.
2300         (make-progress-reporter): Doc fix.
2302 2004-10-09  Luc Teirlinck  <teirllm@auburn.edu>
2304         * textmodes/paragraphs.el (sentence-end-double-space)
2305         (sentence-end-without-period, sentence-end-without-space)
2306         (sentence-end): Doc fixes.
2308 2004-10-08  Peter Seibel  <peter@javamonkey.com>  (tiny change)
2310         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
2311         Change paragraph-start regexp so we don't fill code starting with #'(.
2313 2004-10-08  Sebastien Kirche  <seki@seki.fr>  (tiny change)
2315         * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
2316         New defcustom.
2317         (extract-address-components): Use it.
2319 2004-10-08  Paul Pogonyshev  <pogonyshev@gmx.net>
2321         * subr.el (make-progress-reporter, progress-reporter-update)
2322         (progress-reporter-force-update, progress-reporter-do-update)
2323         (progress-reporter-done): New functions.
2325         * tar-mode.el (tar-summarize-buffer): Use progress reporter.
2327         * progmodes/etags.el (etags-tags-completion-table): Use progress
2328         reporter.
2329         (etags-tags-apropos): Likewise.
2331 2004-10-08  Alan Mackenzie  <acm@muc.de>
2333         * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
2334         of current line.
2336 2004-10-08  Masatake YAMATO  <jet@gyve.org>
2338         * server.el (server-process-filter): Wrap `process-send-region'
2339         by `condition-case' to guard the case when the pipe to PROC is closed.
2341 2004-10-07  Mark A. Hershberger  <mah@everybody.org>
2343         * xml.el (xml-substitute-special): Limit handling of external entities.
2345 2004-10-06  Nick Roberts  <nickrob@snap.net.nz>
2347         * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialise gdb-input-queue.
2349 2004-10-06  John Paul Wallington  <jpw@gnu.org>
2351         * xml.el (xml-parse-dtd): Fix `error' call.
2353 2004-10-05  Mark A. Hershberger  <mah@everybody.org>
2355         * xml.el (xml-substitute-special): Return a single string instead
2356         of a list of strings if an entity substitution is made.
2358 2004-10-05  Ulf Jasper  <ulf.jasper@web.de>
2360         * calendar/icalendar.el: New file.
2362 2004-10-05  Juri Linkov  <juri@jurta.org>
2364         * isearch.el (isearch-done): Set mark after running hook.
2365         Reported by Drew Adams <drew.adams@oracle.com>.
2367         * info.el (Info-history, Info-toc): Fix Info headers.
2368         (Info-toc): Narrow buffer before Info-fontify-node.
2369         (Info-build-toc): Don't check for special Info file names.
2370         Set main-file to nil if Info-find-file returns a symbol.
2372 2004-10-05  Emilio C. Lopes  <eclig@gmx.net>:
2374         * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
2375         (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
2376         * calendar/cal-menu.el (calendar-mode-map): Ditto.
2378 2004-10-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
2380         * calendar/cal-iso.el (calendar-iso-read-args): New function,
2381         for old interactive spec from calendar-goto-iso-date.
2382         (calendar-goto-iso-date): Use it.
2383         (calendar-goto-iso-week): New function.  Suggested by Emilio
2384         C. Lopes <eclig@gmx.net>.
2386 2004-10-04  Luc Teirlinck  <teirllm@auburn.edu>
2388         * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
2389         `set-right-margin' bindings that follow the minor mode conventions.
2391 2004-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2393         * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
2394         (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
2395         (latex-block-args-alist): Add minipage and picture.
2396         (latex-block-body-alist): Use reftex-label if enabled.
2397         (latex-insert-block): Don't insert a \n if not necessary.
2398         (tex-compile-commands): Make sure dvips doesn't send to printer.
2399         (tex-compile-default): Handle the case where no executable is found.
2400         (latex-noindent-environments): New var.
2401         (latex-find-indent): Use it.  Take an empty line as an arg-breaker.
2402         If tex-indent-allhanging is non-nil, make sure we only align for macros
2403         at beginning of line.
2405 2004-10-03  Daniel Pfeiffer  <occitan@esperanto.org>
2407         * newcomment.el (comment-beginning): Doc fix and don't choke on
2408         unset `comment-end-skip' when at beginning of comment.
2410 2004-10-02  Dan Nicolaescu  <dann@ics.uci.edu>
2412         * term.el (term-adjust-current-row-cache): Don't allow the current
2413         row to become negative.
2414         (term-emulate-terminal): Fix insert mode. Handle tab insertion at
2415         the end of the line. Fix scroll down. Add comments.
2416         (term-handle-ansi-escape): Don't exceed terminal width when moving
2417         right.
2418         (term-scroll-region): Move the cursor after setting the scroll region.
2420 2004-10-01  Luc Teirlinck  <teirllm@auburn.edu>
2422         * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
2423         to `width' for consistency with docstring.  Doc fix.
2425 2004-10-01  Martin Stjernholm  <bug-cc-mode@gnu.org>
2427         * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
2428         This is necessary for derived modes.
2430 2004-09-30  Kim F. Storm  <storm@cua.dk>
2432         * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
2433         (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
2435         * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
2436         kmacro-extract-lambda functions.
2437         (edit-kbd-macro): Handle kmacro lambda forms.
2438         Include counter and counter format in edit buffer.
2439         (edmacro-finish-edit): Get counter and format from edit buffer and
2440         update kmacro bindings when found.
2442 2004-09-29  Luc Teirlinck  <teirllm@auburn.edu>
2444         * textmodes/paragraphs.el (forward-paragraph):
2445         Avoid args-out-of-range error when point winds up at the beginning of
2446         the buffer and hard newlines are enabled.
2448         * newcomment.el (comment-multi-line): Doc fix.
2450 2004-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2452         * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
2453         (diff-fixup-modifs): Catch unified-diff file-headers.
2455 2004-09-29  Kim F. Storm  <storm@cua.dk>
2457         * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
2458         (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
2459         (gdb-put-breakpoint-icon): Use breakpoint bitmap.
2461         * fringe.el (fringe-bitmap-p): New macro.
2462         (fringe-bitmaps): Add standard fringe bitmaps on load.
2464 2004-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2466         * dired.el (dired-view-command-alist): Use more efficient regexps.
2467         Remove dubious arguments.
2468         (dired-align-file): New function.
2469         (dired-insert-directory): Use it.
2470         (dired-move-to-end-of-filename): Make the " -> " search more specific.
2471         (dired-buffers-for-dir): Remove unused var `pattern'.
2473 2004-09-28  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)
2475         * calendar/diary-lib.el (list-diary-entries): Save diary buffer
2476         from diary display excursion.  Store diary buffer's point for
2477         `simple-diary-display'.
2478         (simple-diary-display): Set window point and start when
2479         displaying buffer, to preserve point.
2481 2004-09-27  Luc Teirlinck  <teirllm@auburn.edu>
2483         * textmodes/enriched.el (enriched-translations): Replace defconst
2484         with defvar.
2486 2004-09-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2488         * printing.el: Doc fix.
2489         (pr-version): New version number (6.8.1).
2490         (pr-ps-file-using-ghostscript): Use make-temp-file instead of
2491         make-temp-name.
2492         (pr-delete-file): Check if file exists before deleting it.
2493         Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
2495 2004-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2497         * term.el (term-display-table): New variable.
2498         (term-mode): Use it.
2499         (term-exec-1): Set the coding system to binary.
2500         (term-emulate-terminal): Decode the string before inserting it.
2502 2004-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
2504         * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
2505         (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
2506         (map): Bind S-prior, S-next and S-insert.
2507         (term-mode): Set `indent-tabs-mode' to nil.
2508         (term-paste): New function to be bound to S-insert.
2509         (term-send-del, term-send-backspace): Change the strings sent.
2510         (term-termcap-format): Synchronyze with etc/e/eterm.ti.
2511         (term-handle-colors-array): Fix handling of underline and reverse.
2512         (term-handle-ansi-escape): Do not handle smcup/rmcup.  Add comments.
2513         (term-erase-in-line): Fix comparison.
2514         (term-emulate-terminal): Fix line wrap handling.
2515         (term-start-output-log): Rename from `term-set-output-log'.
2516         (term-stop-output-log): Rename from `term-stop-photo'.
2517         (term-switch-to-alternate-sub-buffer): Comment out, unused.
2519 2004-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2521         * dired.el (dired-move-to-filename): Don't output a message if
2522         raise-error is non-nil.  Fix return position and value.
2524         * files.el (insert-directory): Obey --dired even with symlinks.
2526 2004-09-25  Lars Hansen  <larsh@math.ku.dk>
2528         * ls-lisp.el (ls-lisp-format): Mark file names with property
2529         dired-filename.
2531 2004-09-25  Kim F. Storm  <storm@cua.dk>
2533         * ido.el (ido-max-directory-size): New defcustom.
2534         (ido-decorations): Add "too big" element.
2535         (ido-directory-too-big): New dynamic var.
2536         (ido-may-cache-directory): Don't cache big directories.
2537         (ido-directory-too-big-p): New defun.
2538         (ido-set-current-directory): Update ido-directory-too-big.
2539         (ido-read-internal): Make empty ido-cur-item if too-big.
2540         (ido-buffer-internal): Use ido-read-internal directly instead of
2541         ido-read-buffer.
2542         (ido-file-internal): Init ido-directory-too-big.
2543         (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
2544         and redo completion with full list.
2545         (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
2546         it, and show completions.
2547         (ido-all-completions): Let bind ido-directory-too-big to nil.
2548         (ido-exhibit): Handle ido-directory-too-big.
2549         (ido-read-buffer): Handle fallback to read-buffer.
2550         Init ido-directory-too-big.
2551         (ido-read-file-name, ido-read-directory-name, ido-completing-read):
2552         Init ido-directory-too-big.
2554 2004-09-24  Luc Teirlinck  <teirllm@auburn.edu>
2556         * subr.el (delay-mode-hooks): Doc fix.
2558 2004-09-23  Luc Teirlinck  <teirllm@auburn.edu>
2560         * textmodes/enriched.el
2561         (enriched-default-text-properties-local-flag): New variable.
2562         (enriched-mode): Make sure that enabling and disabling the mode is
2563         a no-op.  Doc fix.
2565 2004-09-23  H\e,Ae\e(Bkon Malmedal  <hmalmedal@yahoo.no>  (tiny change)
2567         * calendar/holidays.el (holiday-advent): Report on a specified day
2568         offset from advent, not just advent.
2569         (holiday-easter-etc): Report on one specified day offset from
2570         easter, not all easter holidays. Various Easter holidays moved to
2571         `christian-holidays' variable in calendar.el.
2572         * calendar/calendar.el (christian-holidays): Adapt for new
2573         behaviour of `holiday-advent' and `holiday-easter-etc' functions.
2575 2004-09-23  Kim F. Storm  <storm@cua.dk>
2577         * image.el (insert-sliced-image): Add doc string.
2579         * ido.el (ido-choice-list): New dynamic var for `list' context.
2580         (ido-context-switch-command): New dynamic var.
2581         (ido-define-mode-map): Generalize switch between file/buffer contexts.
2582         (ido-read-internal): Handle new `list' context.
2583         Handle insert-buffer and insert-file ido-exit values.
2584         (ido-buffer-internal): New arg switch-cmd.  Use it to setup
2585         ido-context-switch-command. Handle insert-file ido-exit value.
2586         (ido-read-buffer): Set ido-context-switch-command to 'ignore
2587         unless it is already bound by caller.
2588         (ido-file-internal): New arg switch-cmd.  Use it to setup
2589         ido-context-switch-command.  Handle insert-buffer ido-exit value.
2590         (ido-enter-insert-buffer, ido-enter-insert-file): New commands
2591         used for context switching.
2592         (ido-all-completions): Handle new `list' context.
2593         (ido-make-choice-list): Return choices for `list' context.
2594         (ido-find-file-in-dir, ido-display-file, ido-write-file)
2595         (ido-display-buffer, ido-kill-buffer): Disable context switching.
2596         (ido-insert-buffer, ido-insert-file): Setup context switching.
2597         (ido-exhibit): Handle `list' context.
2598         (ido-read-file-name): Disable context switching.  Handle fallback.
2599         (ido-read-directory-name): Disable context switching.
2600         (ido-completing-read): New defun like completing-read.  Setup and
2601         use new `list' context.
2603 2004-09-20  Jesper Harder  <harder@ifa.au.dk>
2605         * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
2607 2004-09-21  Jay Belanger  <belanger@truman.edu>
2609         * calc/calc-graph.el (calc-graph-add-curve): Move the call to
2610         `calc-graph-set-styles' so the gnuplot buffer will appear in a
2611         separate window.
2613 2004-09-21  Luc Teirlinck  <teirllm@auburn.edu>
2615         * subr.el (after-change-major-mode-hook): Doc fix.
2617 2004-09-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2619         * printing.el: Doc fix.  Add a new tip about the use of gsprint instead
2620         of ghostscript for monochrome PostScript file in Windows.
2622 2004-09-21  Kenichi Handa  <handa@m17n.org>
2624         * descr-text.el (describe-char): Checking of quail activation
2625         fixed.
2627 2004-09-21  Jay Belanger  <belanger@truman.edu>
2629         * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
2631 2004-09-20  Luc Teirlinck  <teirllm@auburn.edu>
2633         * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
2634         after the mode hooks instead of before.  Doc fix.
2636 2004-09-20  Jason Rumney  <jasonr@gnu.org>
2638         * startup.el (command-line) [windows-nt]: Try .emacs first, then
2639         _emacs, but revert to .emacs if neither exists in home directory.
2641 2004-09-20  John Paul Wallington  <jpw@gnu.org>
2643         * bindings.el (completion-ignored-extensions): Add .dfsl.
2645 2004-09-20  Richard M. Stallman  <rms@gnu.org>
2647         * bindings.el (scroll-left): Make it disabled.
2649         * files.el (enable-local-eval): Doc fix.
2651         * indent.el (move-to-left-margin): Special case for minibuffer.
2653         * term.el (term-emulate-terminal): Turn off undo for output.
2654         Use with-current-buffer and save-selected-window.
2656         * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
2658         * progmodes/make-mode.el (makefile-fill-paragraph):
2659         Don't insist on spaces when looking for comments.  # is enough.
2661         * files.el (hack-local-variables): Copy the variables list
2662         to another buffer, strip prefixes and suffixes there, then read.
2663         (enable-local-eval): Doc fix.
2664         (ignored-local-variables): Initialize to nil.
2665         (risky-local-variable-p): Don't check ignored-local-variables here.
2666         (hack-one-local-variable): Ignore var if in ignored-local-variables.
2668 2004-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
2670         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
2671         of = to "." (punctuation).
2673 2004-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2675         * subr.el (event-basic-type): Fix mask (extend to 22bits).
2677 2004-09-18  Luc Teirlinck  <teirllm@auburn.edu>
2679         * textmodes/enriched.el (enriched-rerun-flag): New variable.
2680         (enriched-before-change-major-mode): New function.
2681         Add it to `change-major-mode-hook'.
2682         (enriched-after-change-major-mode): New function.
2683         Add it to `after-change-major-mode-hook'.
2684         (enriched-mode): Make it work correctly if called from
2685         `after-change-major-mode-hook'.
2686         No longer set `indent-line-function'.
2688         * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
2690         * subr.el (after-change-major-mode-hook): New variable.
2691         (run-mode-hooks): Implement it.
2693 2004-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2695         * battery.el (battery-linux-proc-apm): Use string-to-number.
2696         (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
2697         Use dolist (and less indentation).  Use erase-buffer.
2698         Pre-initialize `design-capacity', `warn', and `low'.
2699         (battery-format): Use replace-regexp-in-string.
2701 2004-09-18  Ralph Schleicher  <rs@nunatak.allgaeu.org>
2703         * battery.el: Delete superfluous empty lines.
2704         (battery-linux-proc-acpi): Attempt to gather information from all
2705         battery subdirectories regardless of their file name.
2706         (battery-linux-proc-apm): Replace all occurrences of
2707         battery-hex-to-int-2 with string-to-int (base 16).
2708         (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
2709         (battery-hex-map): Delete variable.
2711 2004-09-18  John Paul Wallington  <jpw@gnu.org>
2713         * calc/calc-units.el (calc-quick-units): Fix overzealous
2714         s/or/unless/.
2716 2004-09-17  Jay Belanger  <belanger@truman.edu>
2718         * calc/calc.el (calc-mode-var-list): Fix the value of
2719         `calc-matrix-brackets'.
2721 2004-09-17  Romain Francoise  <romain@orebokech.com>
2723         * ibuf-ext.el (define-ibuffer-filter filename):
2724         Expand dired-directory since buffer-file-name is absolute.
2726 2004-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
2728         * ediff-init.el (ediff-current-diff-face-A)
2729         (ediff-current-diff-face-B, ediff-current-diff-face-C)
2730         (ediff-current-diff-face-Ancestor)
2731         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
2732         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
2733         (ediff-even-diff-face-A, ediff-even-diff-face-B)
2734         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
2735         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
2736         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
2737         Use min-colors.
2739         * term.el (term-down): Perform vertical motion if DOWN is negative.
2740         (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
2741         (term-termcap-format): Synchronyze with the eterm terminfo entry
2742         in etc/e/eterm.ti.
2743         (term-handle-colors-array): If the current foreground or
2744         background are zero (i.e. unspecified), use the foreground and
2745         background of the default face for reverse video.
2746         (term-ansi-at-eval-string, term-ansi-default-fg)
2747         (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
2748         (term-mem): Delete ununsed function.
2749         (term-protocol-version): Increment.
2750         (term-current-face): Set to default.
2752 2004-09-15  Jay Belanger  <belanger@truman.edu>
2754         * calc/calc.el (calc-mode-var-list): Define this variable.
2755         (calc-always-load-extensions, calc-line-numbering)
2756         (calc-line-breaking, calc-display-just, calc-display-origin)
2757         (calc-number-radix, calc-leading-zeros, calc-group-digits)
2758         (calc-group-char, calc-point-char, calc-frac-format)
2759         (calc-prefer-frac, calc-hms-format, calc-date-format)
2760         (calc-float-format, calc-full-float-format, calc-complex-format)
2761         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
2762         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
2763         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
2764         (calc-matrix-brackets, calc-language, calc-language-option)
2765         (calc-left-label, calc-right-label, calc-word-size)
2766         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
2767         (calc-display-raw, calc-internal-prec, calc-angle-mode)
2768         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
2769         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
2770         (calc-window-height, calc-display-trail, calc-show-selections)
2771         (calc-use-selections, calc-assoc-selections)
2772         (calc-display-working-message, calc-auto-why, calc-timing)
2773         (calc-mode-save-mode, calc-standard-date-formats)
2774         (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
2775         (calc-user-parse-tables, calc-gnuplot-default-device)
2776         (calc-gnuplot-default-output, calc-gnuplot-print-device)
2777         (calc-gnuplot-print-output, calc-gnuplot-geometry)
2778         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
2779         (calc-invocation-macro, calc-show-banner): Give these values as
2780         part of `calc-mode-var-list's initialization after the variables
2781         are declared with defvar.
2782         (calc-bug-address):  Change email address to send bug reports to.
2783         Change the maintainer address at the top.
2784         (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
2785         than "\\.emacs" to determine if it is the user-init-file.
2787         * calc/calc-embed.el (calc-embedded-set-modes): Use
2788         `calc-mode-var-list' correctly.
2790 2004-09-15  Thien-Thi Nguyen  <ttn@gnu.org>
2792         * vc.el (annotate-time): Document point handling.
2793         (vc-annotate-display-autoscale): Doc fix.
2795 2004-09-15  Miles Bader  <miles@gnu.org>
2797         * generic.el (generic-make-keywords-list): Use symbol rather than
2798         word anchors in regexp.
2800 2004-09-14  Sean O'Rourke  <sorourke@cs.ucsd.edu>
2802         * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
2803         no file name consider `dired-directory'.
2805 2004-09-14  Kim F. Storm  <storm@cua.dk>
2807         * faces.el (cursor): Add face-no-inherit property.  Doc fix.
2809 2004-09-14  Simon Josefsson  <jas@extundo.com>
2811         * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
2813         * textmodes/dns-mode.el: Add.
2815 2004-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2817         * novice.el (disabled-command-hook): Use shorthand for obsolescence.
2818         (disabled-command-function): Make the ?\  char more obvious.
2820         * vc-arch.el (vc-arch-root, vc-arch-registered):
2821         * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
2823 2004-09-13  Hovav Shacham  <hovav@sha1.stanford.edu>
2825         * windmove.el (windmove-frame-edges): Report coordinates of
2826         outside edges of frame, not inside edges.
2827         (windmove-coordinates-of-position): Convert into wrapper to new
2828         function `windmove-coordinates-of-window-position';
2829         `compute-motion' always applies to selected window.
2830         (windmove-coordinates-of-position): Update documentation to refer
2831         to Emacs 21 Lisp Reference Manual.
2832         (windmove-find-other-window): Fix off-by-one errors for max x,y.
2834 2004-09-13  Kim F. Storm  <storm@cua.dk>
2836         * isearch.el (isearch-resume-in-command-history): Rename from
2837         isearch-resume-enabled and change default to nil.
2839 2004-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2841         * vc-hooks.el (vc-ignore-dir-regexp): New var.
2842         (vc-registered): Use it.
2843         (vc-find-root): New fun.
2845         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2846         Don't tell to use \\{...} when it's already done.
2848         * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
2849         Provide a sample complex default.
2850         (bibtex-url, bibtex-font-lock-url): Adapt to new format.
2851         (bibtex-entry): Use mapc.
2853 2004-09-12  Kim F. Storm  <storm@cua.dk>
2855         * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
2857         * emulation/cua-rect.el (cua--rectangle-operation): Let bind
2858         inhibit-field-text-motion to t so rectangles work in comint buffers.
2860         * simple.el (choose-completion-string): Set buffer before running
2861         choose-completion-string-functions hook so it can be buffer-local.
2863 2004-09-12  Daniel Pfeiffer  <occitan@esperanto.org>
2865         * progmodes/compile.el (compilation-start): Parse command to see
2866         if it starts with a cd, and if so perform it for the *compilation*
2867         buffer.  Change the header to reflect this.
2869 2004-09-11  Kim F. Storm  <storm@cua.dk>
2871         * ido.el (ido-enable-dot-prefix): Doc fix.
2872         (ido-enable-dot-prefix): New defcustom.
2873         (ido-set-matches1): Use it.
2875 2004-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2877         * textmodes/bibtex.el (bibtex-mark-active)
2878         (bibtex-run-with-idle-timer): Move the `if' inside the defun.
2880 2004-09-10  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2882         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
2883         used in a case insensitive environment.
2884         (bibtex-mode-map): Rearrange order of menus.
2885         (bibtex-quoted-string-re): Obsolete.
2886         (bibtex-complete-key-cleanup): Variable replaced by new function.
2887         (bibtex-font-lock-keywords): Use backquotes.
2888         (bibtex-font-lock-url-regexp): New internal variable.
2889         (bibtex-name-in-field): New optional arg remove-opt-alt to remove
2890         "OPT" and "ALT".
2891         (bibtex-insert-current-kill, bibtex-make-field)
2892         (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
2893         (bibtex-parse-field-text): Simplify.
2894         (bibtex-string=): New helper function.
2895         (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
2896         (bibtex-map-entries): Use bibtex-string=.
2897         (bibtex-search-entry): Use not.
2898         (bibtex-enclosing-field): Fix docstring.
2899         (bibtex-assoc-regexp): Obsolete.
2900         (bibtex-format-entry): Use assoc-string and bibtex-string=.
2901         (bibtex-autokey-get-names): Handle empty name field.
2902         (bibtex-parse-strings): Use assoc-string and unless.
2903         (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
2904         Use assoc-string.
2905         (bibtex-pop): Simplify.
2906         (bibtex-mode): Set font-lock-extra-managed-props.
2907         (bibtex-entry-update): Use assoc-string.
2908         (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
2909         (bibtex-autofill-entry): Use bibtex-string=.
2910         (bibtex-print-help-message): Simplify.
2911         (bibtex-find-entry): New optional arg START.
2912         (bibtex-validate): Use bibtex-string= and assoc-string.
2913         Do not call obsolete function compilation-parse-errors.
2914         (bibtex-remove-delimiters): Only remove delimiters if present.
2915         (bibtex-copy-entry-as-kill): Add docstring.
2916         (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
2917         Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
2918         (bibtex-complete): Use bibtex-predefined-month-strings,
2919         bibtex-string=, and new function bibtex-complete-key-cleanup.
2920         (bibtex-generate-url-list): New variable.
2921         (bibtex-url): New command bound to C-c C-l and mouse-2.
2922         (bibtex-url-map): New local keymap for bibtex-url-mouse.
2923         (bibtex-font-lock-url): New function.
2925 2004-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2927         * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
2929 2004-09-09  Kim F. Storm  <storm@cua.dk>
2931         * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
2932         counter and format with binding.
2933         (kmacro-name-last-macro): New defun.  Like name-last-kbd-macro, but
2934         the declared macro uses own macro counter and format.  Give symbol
2935         kmacro property.
2936         (kmacro-keymap): Bind kmacro-name-last-macro to n.
2937         (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
2938         (kmacro-end-and-call-macro): Doc fix.
2940 2004-09-09  Lars Hansen  <larsh@math.ku.dk>
2942         * desktop.el (desktop-clear-preserve-buffers):
2943         Remove make-obsolete-variable.
2945 2004-09-08  Richard M. Stallman  <rms@gnu.org>
2947         * buff-menu.el (list-buffers-noselect): Call format-mode-line
2948         with the buffer as argument.
2950 2004-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2952         * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
2954 2004-09-08  Juri Linkov  <juri@jurta.org>
2956         * replace.el (perform-replace): Use `query-replace-descr'.
2958         * cus-start.el (history-delete-duplicates): Specify customization.
2960         * diff-mode.el (diff-mode-map):
2961         * progmodes/compile.el (compilation-mode-map):
2962         * progmodes/grep.el (grep-mode-map):
2963         * replace.el (occur-mode-map): Rename `next-error-follow-mode'
2964         to `next-error-follow-minor-mode'.
2966 2004-09-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2968         * isearch.el (isearch-lazy-highlight-update): Take into account
2969         the case of zero-length match at the search bound.
2971 2004-09-08  Kim F. Storm  <storm@cua.dk>
2973         * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
2974         change.  Use zero width overlays when necessary.
2976 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
2978         * subr.el (split-string): Docfix.
2980 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
2982         * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
2983         (display-call-tree): Ensure newline after caller/calls blocks.
2985 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
2987         * startup.el (command-line-1): Make option
2988         --directory/-L modify `load-path' straight away.
2990 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
2992         * progmodes/grep.el (grep-mode): Use normal autoload cookie.
2994 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
2996         * emacs-lisp/autoload.el (make-autoload):
2997         Handle `define-compilation-mode'.
2999         * emacs-lisp/lisp-mode.el (define-compilation-mode):
3000         Specify `doc-string-elt' property.
3002 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
3004         * bs.el (bs-mode): Doc fix.
3006 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
3008         * info.el (Info-insert-dir): Fix temp buffer leak bug.
3010 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
3012         * play/blackbox.el (bb-trace-ray): Avoid double tracing.
3014 2004-09-08  Kenichi Handa  <handa@m17n.org>
3016         * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
3017         length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
3018         ps-mule-next-point -> 1+).
3020         * composite.el (encode-composition-rule): Add autoload cooky.
3022 2004-09-07  Luc Teirlinck  <teirllm@auburn.edu>
3024         * format.el (buffer-auto-save-file-format): Make it permanent local.
3026 2004-09-07  Kim F. Storm  <storm@cua.dk>
3028         * emacs-lisp/authors.el (authors-aliases): Add more aliases.
3029         (authors-fixed-entries): Fix typo.
3030         (authors-canonical-author-name): Compact multiple spaces.
3031         Ignore trivial names (e.g. only first name).
3033         * term.el (term-window-width): Only use full window width on
3034         window system if overflow-newline-into-fringe is enabled.
3035         (term-mode): Don't disable overflow-newline-into-fringe.
3037 2004-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3039         * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
3040         motion as seen on my Mac OS X xterms.
3042         * newcomment.el (uncomment-region-default, comment-region-default):
3043         New functions extracted from uncomment-region and comment-region.
3044         (comment-region, comment-region-function, uncomment-region)
3045         (uncomment-region-function): Use them.
3047         * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
3049         * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
3050         It's not crucial but can make sense at times.
3052         * vc-arch.el (vc-arch-workfile-version): Handle the special case before
3053         the first commit.
3055         * vc.el (vc-buffer-context, vc-restore-buffer-context):
3056         Disable obsolete code.
3058 2004-09-07  Juri Linkov  <juri@jurta.org>
3060         * progmodes/grep.el (grep-highlight-matches): Change default from
3061         `t' to `auto-detect', and type from `boolean' to `choice'.  Doc fix.
3062         (grep-compute-defaults): Set `grep-highlight-matches' to `t'
3063         if grep option `--color' is available, or to `nil' otherwise.
3064         (grep-process-setup): Call `grep-compute-defaults' if
3065         `grep-highlight-matches' is not computed.  Set env-vars only
3066         if `grep-highlight-matches' is `t'.
3067         (grep-use-null-device): Remove redundant type `boolean' (`choice'
3068         is already defined).
3070         * progmodes/compile.el (compilation-start): Use copy of
3071         `process-environment' created by `copy-sequence' to not
3072         modify env-vars in the global `process-environment'.
3074 2004-09-06  Eli Zaretskii  <eliz@gnu.org>
3076         * simple.el (next-error-follow-minor-mode): Fix last change.
3078 2004-09-05  Luc Teirlinck  <teirllm@auburn.edu>
3080         * textmodes/paragraphs.el (use-hard-newlines): Make it into a
3081         permanent local.
3083 2004-09-04  Richard M. Stallman  <rms@gnu.org>
3085         * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
3086         highlighting if the search string is empty.
3088 2004-09-04  Luc Teirlinck  <teirllm@auburn.edu>
3090         * facemenu.el (facemenu-active-faces): Change condition of inner
3091         `while' loop to also check the first two elements of `face-atts'
3092         and `mask-atts'.
3094 2004-09-04  John Paul Wallington  <jpw@gnu.org>
3096         * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
3097         (thumbs-view-image-mode): Make buffer read-only.
3099 2004-09-04  Christopher J. Madsen  <cjm@pobox.com>
3101         * textmodes/ispell.el (ispell-really-aspell): New defvar.
3102         (ispell-check-version): Set it.
3103         (ispell-send-replacement): New function.
3104         (ispell-process-line): Call ispell-send-replacement.
3106 2004-09-04  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
3108         * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
3109         Support choosing seconds with "s".
3111 2004-09-04  Jari Aalto  <jari.aalto@poboxes.com>
3113         * terminal.el (te-escape): Show `?' in prompt for help key.
3115 2004-09-04  Emilio C. Lopes <eclig@gmx.net>
3117         * emacs-lisp/lisp.el (kill-backward-up-list): New function.
3119 2004-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
3121         * simple.el (next-error-follow-minor-mode)
3122         (next-error-follow-mode-post-command-hook): New functions.
3123         (next-error-follow-last-line): New defvar.
3125         * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
3126         * progmodes/compile.el (compilation-mode-map): Likewise.
3127         * progmodes/grep.el (grep-mode-map): Likewise.
3128         * replace.el (occur-mode-map): Likewise.
3130         * newcomment.el (uncomment-region): Bind comment-use-global-state
3131         to nil.
3133 2004-09-03  Luc Teirlinck  <teirllm@auburn.edu>
3135         * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
3136         locally around the call to `revert-buffer'.
3138 2004-09-03  Juri Linkov  <juri@jurta.org>
3140         * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
3141         `isearch-adjusted' to `t'.
3142         (isearch-toggle-case-fold): Set `isearch-success' to `t'.
3143         (isearch-message-prefix): Add "pending" for isearch-adjusted.
3144         (isearch-other-meta-char): Restore isearch-point unconditionally.
3145         (isearch-query-replace): Add new arg `regexp-flag' and use it.
3146         Set point to start of match if region is not active in transient
3147         mark mode (to include the current match to region boundaries).
3148         Push the search string to `query-replace-from-history-variable'.
3149         Add prompt "Query replace regexp" for isearch-regexp.
3150         Add region beginning/end as last arguments of `perform-replace.'
3151         (isearch-query-replace-regexp): Replace code by the call to
3152         `isearch-query-replace' with arg `t'.
3154 2004-09-03  Richard M. Stallman  <rms@gnu.org>
3156         * startup.el (normal-top-level): Undo previous TERM change.
3158 2004-09-03  Kim F. Storm  <storm@cua.dk>
3160         * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
3161         highlight overlays; allow using RET when cursor is over a button.
3162         (cua--highlight-rectangle): Use it.
3163         (cua--rectangle-set-corners): Don't move backwards at eol.
3164         (cua--forward-line): Don't move into void after eob.
3166         * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
3167         point is set (and displayed) inside rectangle.
3168         (cua--rectangle-operation): Fix for highlight of empty lines.
3169         (cua--highlight-rectangle): Fix highlight for tabs.
3170         Position cursor at left/right edge of rectangle using new `cursor'
3171         property on overlay strings.
3172         (cua--indent-rectangle): Don't tabify.
3173         (cua-rotate-rectangle): Ignore that point has moved.
3175 2004-09-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3177         * term/mac-win.el: Add ASCII equivalents for some function keys.
3178         (mode-line-frame-identification): Sync with x-win.el.
3180 2004-09-02  Juri Linkov  <juri@jurta.org>
3182         * progmodes/compile.el (compilation-buffer-name): Compare major
3183         mode with second element of compilation-arguments instead of third
3184         to reflect latest changes in compilation-arguments structure.
3185         (recompile): Use global variable `compilation-directory' to get
3186         recent compilation directory only when `recompile' is invoked NOT
3187         in the compilation buffer.  Otherwise, use `default-directory' of
3188         the compilation buffer.
3189         (compilation-error-properties): Allow to funcall col and end-col.
3190         (compilation-mode-font-lock-keywords): Check col and end-col by
3191         `integerp'.
3192         (compilation-goto-locus): If end-mk is non-nil in transient mark
3193         mode don't activate the mark (and don't display message in
3194         push-mark), but highlight overlay between mk and end-mk.
3196         * progmodes/grep.el (grep-highlight-matches): New defcustom.
3197         (grep-regexp-alist): Add rule to highlight grep matches.
3198         (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
3200         * info.el (Info-fontify-node): Don't compute other-tag
3201         if Info-hide-note-references=hide.
3203         * help.el (function-called-at-point):
3204         * help-fns.el (variable-at-point):
3205         Try `find-tag-default' when other methods failed.
3207         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
3208         Do not push mark if inhibit-mark-movement is non-nil.
3210         * textmodes/ispell.el (ispell-html-skip-alists):
3211         Fix backslashes in docstring.
3213 2004-09-01  Juri Linkov  <juri@jurta.org>
3215         * isearch.el (isearch-wrap-function)
3216         (isearch-push-state-function): New defvars.
3217         (isearch-pop-fun-state): New defsubst.
3218         (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
3219         (isearch-push-state): Set the result of calling
3220         `isearch-push-state-function' to the `isearch-pop-fun-state' field.
3221         (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
3222         restore the mode-specific starting point of terminated search.
3223         (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
3224         (isearch-repeat): Call `isearch-wrap-function' if defined.
3225         (isearch-message-prefix): Don't add prefix "over" to the message
3226         for wrapped search if `isearch-wrap-function' is defined.
3227         (isearch-search): Call function saved in `isearch-pop-fun-state' to
3228         restore the mode-specific starting point of failed search.
3230         * info.el (Info-search-whitespace-regexp): Fix backslashes.
3231         (Info-search): Add new optional arguments for the sake of isearch.
3232         Replace whitespace in Info-search-whitespace-regexp literally.
3233         Add backward search.  Don't call `Info-select-node' if regexp is
3234         found in the same Info node.  Don't add node to Info-history for
3235         wrapped isearch.
3236         (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
3237         (Info-isearch-push-state, Info-isearch-pop-state): New funs.
3238         (Info-mode): Set local variables `isearch-search-fun-function',
3239         `isearch-wrap-function', `isearch-push-state-function',
3240         `search-whitespace-regexp'.
3242         * isearch.el: Remove ancient Change Log section.
3243         (isearch-string, isearch-message-string, isearch-point)
3244         (isearch-success, isearch-forward-flag, isearch-other-end)
3245         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
3246         (isearch-barrier, isearch-within-brackets)
3247         (isearch-case-fold-search): Add suffix `-state' to state-related
3248         defsubsts to avoid name clashes with other function names.
3250         * simple.el (next-error): New defgroup and defface.
3251         (next-error-highlight, next-error-highlight-no-select):
3252         New defcustoms.
3253         (next-error-no-select): Let-bind next-error-highlight to the value
3254         of next-error-highlight-no-select before calling `next-error'.
3256         * progmodes/compile.el (compilation-goto-locus):
3257         Use `next-error' face instead of `region'.  Set 4-th argument of
3258         `move-overlay' to `current-buffer' to move overlay to different
3259         source buffers.  Use new variable `next-error-highlight'.
3261         * simple.el (next-error-find-buffer): Move the rule
3262         "if current buffer is a next-error capable buffer" after the
3263         rule "if next-error-last-buffer is set to a live buffer".
3264         Simplify to test all rules in one `or'.
3265         (next-error): Doc fix.
3266         (next-error, previous-error, first-error)
3267         (next-error-no-select, previous-error-no-select):
3268         Make arguments optional.
3270 2004-08-31  Luc Teirlinck  <teirllm@auburn.edu>
3272         * macros.el (apply-macro-to-region-lines): Make it operate on all
3273         lines that begin in the region, rather than on all complete lines
3274         in the region.
3276 2004-08-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3278         * x-dnd.el (x-dnd-protocol-alist): Document update.
3279         (x-dnd-known-types): Defcustom it.
3280         (x-dnd-handle-motif): Print message-atom in error message.
3282 2004-08-30  John Paul Wallington  <jpw@gnu.org>
3284         * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
3285         strings rather than programatically constructing message.
3287 2004-08-30  Richard M. Stallman  <rms@gnu.org>
3289         * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
3290         Don't return a string that would read as the wrong character code.
3292 2004-08-29  Kim F. Storm  <storm@cua.dk>
3294         * emulation/cua-base.el (cua-auto-expand-rectangles):
3295         Remove automatic rectangle padding feature; replace by non-destructive
3296         virtual rectangle edges feature.
3297         (cua-virtual-rectangle-edges): New defcustom.
3298         (cua-auto-tabify-rectangles): New defcustom.
3299         (cua-paste): If paste into a marked rectangle, insert rectangle at
3300         current column, even if virtual; also paste exactly as many lines
3301         as has been marked (ignore additional lines or add empty lines),
3302         but paste whole source if only one line is marked.
3303         (cua--update-indications): No longer use overwrite-cursor to
3304         indicate rectangle padding
3306         * emulation/cua-rect.el (cua--rectangle-padding): Remove.
3307         (cua--rectangle-virtual-edges): New defun.
3308         (cua--rectangle-get-corners): Remove optional PAD arg.
3309         (cua--rectangle-set-corners): Never do padding.
3310         (cua--forward-line): Remove optional PAD arg.  Simplify.
3311         (cua-resize-rectangle-right, cua-resize-rectangle-left)
3312         (cua-resize-rectangle-down, cua-resize-rectangle-up):
3313         (cua-resize-rectangle-bot, cua-resize-rectangle-top)
3314         (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
3315         (cua--rectangle-move): Never do padding.  Simplify.
3316         (cua--tabify-start): New defun.
3317         (cua--rectangle-operation): Add tabify arg.  All callers changed.
3318         (cua--pad-rectangle): Remove.
3319         (cua--delete-rectangle): Handle delete with virtual edges.
3320         (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
3321         (cua--insert-rectangle): Handle insert at virtual column.
3322         Perform auto-tabify if necessary.
3323         (cua--activate-rectangle): Remove optional FORCE arg.
3324         Never do padding.  Simplify.
3325         (cua--highlight-rectangle): Enhance for virtual edges.
3326         (cua-toggle-rectangle-padding): Remove command.
3327         (cua-toggle-rectangle-virtual-edges): New command.
3328         (cua-sequence-rectangle): Add optional TABIFY arg.  Callers changed.
3329         (cua--rectangle-post-command): Don't force rectangle padding.
3330         (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
3332 2004-08-28  Luc Teirlinck  <teirllm@auburn.edu>
3334         * indent.el (edit-tab-stops-buffer): Doc fix.
3336 2004-08-28  Richard M. Stallman  <rms@gnu.org>
3338         * progmodes/grep.el (grep-default-command): Use find-tag-default.
3339         (grep-tag-default): Function deleted.
3341         * subr.el (find-tag-default): Move from etags.el.
3343         * progmodes/etags.el (find-tag-default): Move to subr.el.
3345         * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
3346         into the basic character if it has an uppercase form.
3348 2004-08-27  Kenichi Handa  <handa@m17n.org>
3350         * international/utf-8.el (utf-8-post-read-conversion): If the
3351         buffer is unibyte, temporarily make it multibyte.
3353 2004-08-27  Masatake YAMATO  <jet@gyve.org>
3355         * calendar/time-date.el (time-to-seconds): Add autoload cookies.
3357 2004-08-25  John Paul Wallington  <jpw@gnu.org>
3359         * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
3360         0, 1, and many mismatches in message.
3361         (tex-start-shell): Use `set-process-query-on-exit-flag'.
3363         * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
3364         (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
3366 2004-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3368         * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
3369         vc-diff-switches differently.
3371 2004-08-22  Luc Teirlinck  <teirllm@auburn.edu>
3373         * speedbar.el (speedbar-file-regexp): Give it a phony defvar
3374         before and a real defvar after
3375         `speedbar-supported-extension-expressions'.  This is to silence
3376         the compiler without breaking bootstrapping.
3378 2004-08-22  Richard M. Stallman  <rms@gnu.org>
3380         * textmodes/flyspell.el (flyspell-word):
3381         Use set-process-query-on-exit-flag.
3382         (flyspell-highlight-duplicate-region): Take POSS as arg.
3383         (flyspell-word): Pass POSS as arg.
3385         * progmodes/ada-xref.el: Many doc and style fixes.
3386         (ada-find-any-references): Use compilation-start.
3387         (ada-get-ali-file-name): Improve error msg.
3388         (ada-get-ada-file-name): Likewise.
3390         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
3391         (ange-ftp-start-process): Use set-process-query-on-exit-flag.
3393         * mail/mail-extr.el (mail-extr-all-top-level-domains):
3394         Add forward defvar.
3396         * whitespace.el (global-whitespace-mode): New alias
3397         for whitespace-global-mode.
3399         * speedbar.el (speedbar-file-regexp): Move definition up.
3400         (speedbar-mode, speedbar-set-mode-line-format):
3401         Use with-no-warnings.
3402         (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
3404         * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
3405         controls whether to display the error buffer.
3407         * ps-mule.el: Delete compatibility code for old Emacses.
3408         (ps-mule-find-wrappoint): Don't use chars-in-region.
3410         * frame.el (display-mouse-p, display-selections-p):
3411         Use with-no-warnings.
3413         * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
3415 2004-08-22  David Kastrup  <dak@gnu.org>
3417         * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
3418         information.
3420         * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
3422 2004-08-22  Andreas Schwab  <schwab@suse.de>
3424         * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
3426 2004-08-22  Masatake YAMATO  <jet@gyve.org>
3428         * cvs-status.el (cvs-status-checkout): New function.
3429         (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
3431 2004-08-21  David Kastrup  <dak@gnu.org>
3433         * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
3434         (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
3435         has been converted to use hashtables, the relation `nil=none' is
3436         no longer valid, as `nil' is not a hashtable.  This patch tries to
3437         reduce the number of resulting errors.
3439 2004-08-21  John Paul Wallington  <jpw@gnu.org>
3441         * subr.el (process-kill-without-query): Made obsolete in
3442         version 21.4, not 21.5.
3444         * log-edit.el (vc-comment-ring, vc-comment-ring-index)
3445         (vc-previous-comment, vc-next-comment)
3446         (vc-comment-search-reverse, vc-comment-search-forward)
3447         (vc-comment-to-change-log): Likewise.
3449         * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
3451 2004-08-21  Peter Seibel  <peter@javamonkey.com>  (tiny patch)
3453         * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
3454         Correct indentation of DEFMETHODS with non-standard method
3455         combinations (e.g., PROGN, MIN, MAX).
3457 2004-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3459         * startup.el (normal-top-level-add-subdirs-to-load-path):
3460         Avoid unnecessarily checking system-type.
3461         (normal-top-level): Set TERM to "dumb".  Simplify.
3463         * avoid.el (mouse-avoidance-ignore-p): New fun.
3464         Also ignore switch-frame, select-window, double, and triple clicks.
3465         (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
3466         (mouse-avoidance-fancy-hook): Use it.
3468 2004-08-20  Zoran Milojevic  <zoran@sipquest.com>  (tiny change)
3470         * avoid.el (mouse-avoidance-nudge-mouse)
3471         (mouse-avoidance-banish-destination): Stay within the current window
3472         to avoid problems with mouse-autoselect-window.
3474 2004-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3476         * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
3477         the newer format of some messages in cvs-1.12.1.
3479 2004-08-19  Masatake YAMATO  <jet@gyve.org>
3481         * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
3482         (elp-results-jump-to-definition-by-mouse)
3483         (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
3484         (elp-output-result): Use elp-output-insert-symname.
3486 2004-08-18  Kenichi Handa  <handa@m17n.org>
3488         * language/cyrillic.el: Register koi8-r in
3489         ctext-non-standard-encodings-alist.
3490         ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
3492 2004-08-17  Luc Teirlinck  <teirllm@auburn.edu>
3494         * emacs-lisp/copyright.el (copyright-update-year): Delete code
3495         that replaces 20xy with xy.
3497 2004-08-17  John Paul Wallington  <jpw@gnu.org>
3499         * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
3500         (reb-force-update): Doc fix.
3502 2004-08-16  Richard M. Stallman  <rms@gnu.org>
3504         * progmodes/which-func.el (which-func-update-1): Doc fix.
3506         * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
3507         (sh-mode-abbrev-table): New variable.
3509         * progmodes/compile.el (compilation-mode): Doc fix.
3511         * emacs-lisp/lisp-mode.el (eval-last-sexp):
3512         Don't cons a new symbol each time.
3513         (eval-last-sexp-fake-value): New variable.
3515         * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
3516         (copyright-update-year): Detect continuation of list of years.
3518         * term.el (term-default-fg-color, term-default-bg-color)
3519         (ansi-term-color-vector): Use `unspecified', not nil, as default.
3521         * imenu.el: Several doc fixes: don't say variables are buffer-local.
3523 2004-08-16  Davis Herring <herring@lanl.gov>
3525         * isearch.el (isearch-string, isearch-message-string, isearch-point)
3526         (isearch-success, isearch-forward-flag, isearch-other-end)
3527         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
3528         (isearch-barrier, isearch-within-brackets)
3529         (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
3531 2004-08-16  Kenichi Handa  <handa@m17n.org>
3533         * ps-mule.el (ps-mule-font-info-database): Fix docstring.
3535 2004-08-15  Kenichi Handa  <handa@m17n.org>
3537         * term/x-win.el (x-selection-value): If utf8 was successful but
3538         ctext was not, use utf8 string.
3540 2004-08-14  Davis Herring  <herring@lanl.gov>
3542         * isearch.el: Remove accidental changes of March 4.  Fix backing
3543         up when a regexp isearch is made more general.  Use symbolic
3544         accessor functions for isearch stack frames to make usage clearer.
3545         (search-whitespace-regexp): Made groups in documentation shy (as
3546         is the group in the default value).
3547         (isearch-fallback): New function, addresses problems with regexps
3548         liberalized by `\|', adds support for liberalization by `\}' (the
3549         general repetition construct), and incorporates behavior for
3550         `*'/`?'.
3551         (isearch-}-char): New command, calls `isearch-fallback' with
3552         arguments appropriate to a typed `}'.
3553         (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
3554         appropriately.
3555         (isearch-mode-map): Bind `}' to `isearch-}-char'.
3556         (isearch-string, isearch-message,string, isearch-point)
3557         (isearch-success, isearch-forward-flag, isearch-other-end)
3558         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
3559         (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
3560         New inline functions to read fields of a stack frame.
3562 2004-08-14  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>  (tiny change)
3564         * battery.el (battery-linux-proc-acpi): Look into battery
3565         directories matching the literal string "CMB", too (required for
3566         Linux kernel version 2.6.7).
3568 2004-08-14  John Paul Wallington  <jpw@gnu.org>
3570         * cus-start.el (read-file-name-completion-ignore-case): Add.
3571         (blink-cursor-alist): Change version to "21.4".
3573         * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
3575 2004-08-11  Daniel Pfeiffer  <occitan@esperanto.org>
3577         * speedbar.el (speedbar-scan-subdirs): New option.
3578         (speedbar-file-lists): Don't ignore file-name case on Unix and use
3579         dolist.
3580         (speedbar-insert-files-at-point): Take an extra argument and use
3581         it to optionally find out if a subdir is empty.  Also unreadable
3582         files don't get expand buttons.
3583         (speedbar-directory): New image (unused pixmap already existed).
3584         (speedbar-expand-image-button-alist): Use it.
3586 2004-08-11  Martin Stjernholm  <bug-cc-mode@gnu.org>
3588         CC Mode update to 5.30.9:
3590         * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
3591         Move from cc-vars to cc-defs for dependency reasons.  Fix the
3592         POSIX char class test to check that it works in
3593         `skip-chars-(forward|backward)' too.
3595         * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
3596         first argument starts with a special brace list.
3598         * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
3599         when `c-opt-type-concat-key' is used (i.e. in Pike).
3601         * progmodes/cc-engine.el (c-looking-at-special-brace-list):
3602         Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
3603         >)".
3605         * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
3606         whitespace safe.
3608         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
3609         position for `arglist-intro', `arglist-cont-nonempty' and
3610         `arglist-close' when there are two arglist open parens on the same
3611         line and there's nothing in front of the first.
3613         * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
3614         locking of qualified names in Java, which previously could fontify
3615         common indexing expressions in many cases.  The standard Java
3616         naming conventions are used to tell them apart.
3618         * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
3619         Fix inconsistency wrt opening parens on the first line inside a paren
3620         block.
3622         * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
3623         compile time for the sake of `c-major-mode-is'.
3625         (c-mode-is-new-awk-p): Made it a macro to delay expansion of
3626         `c-major-mode-is' in the event that this is used inside a
3627         `c-lang-defconst'.
3629         * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
3630         `c-lang-defconst' so that it works better with fallback languages.
3632         * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
3633         it to fail to record the base mode.
3635         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
3636         Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
3637         is used.  Reorder the syntax checks to get more efficient
3638         skipping in some situations.
3640         * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
3641         continuation which might precede the newly inserted '{'.
3643         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
3644         Fix cases where it could loop indefinitely.
3646         * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
3647         size specs correctly.  Only fontify identifiers in front of '('
3648         with as functions - don't accept any paren char.  Tighten up
3649         initializer skipping to stop before function and class blocks.
3651         * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
3652         the point could be left directly after an open paren when finding
3653         the beginning of the first decl in the block.
3655         * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
3656         table when filtering out legitimate open parens to be recorded.
3657         This could cause cache inconsistencies when e.g.
3658         `c++-template-syntax-table' was temporarily in use.
3660         * progmodes/cc-engine.el (c-on-identifier)
3661         (c-simple-skip-symbol-backward): Small fix for handling "-"
3662         correctly in `skip-chars-backward'.  Affected the operator lfun
3663         syntax in Pike.
3665         * progmodes/cc-engine.el (c-invalidate-sws-region-after):
3666         Fix bug that could cause an error from `after-change-functions' when
3667         the changed region is at bob.
3669 2004-08-11  Alan Mackenzie  <bug-cc-mode@gnu.org>
3671         CC Mode update to 5.30.9:
3673         * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
3674         to say that <TAB> doesn't insert WS into a CPP line.
3675         (c-indent-command, c-tab-always-indent): Amend doc strings.
3677         * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
3678         checks for user errors, thus eliminating cryptic and unhelpful
3679         Emacs error messages.  (1) Check the arg to `c-set-style' is a
3680         string.  (2) Check that settings to `c-offsets-alist' are not
3681         spuriously quoted.
3683         * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
3684         which precedes the newly inserted `{'.
3686 2004-08-10  Michael Albinus  <michael.albinus@gmx.de>
3688         Sync with Tramp 2.0.44.
3690         * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
3691         function "tramp_file_attributes".  Otherwise, file names
3692         containing spaces are misinterpreted.  Reported by Magnus Henoch
3693         <mange@freemail.hu>.
3694         (tramp-handle-file-truename): FILENAME must be expanded first.
3695         Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
3696         obscure results.  Reported by D. Goel <deego@gnufans.org>.
3697         (tramp-handle-verify-visited-file-modtime): If file does not
3698         exist, say it is not modified if and only if that agrees with the
3699         buffer's record.  Check whether a file is visiting the buffer, or
3700         the buffer has no recorded last modification time.  Return t in
3701         case the visiting file doesn't exist.  Suggested by Luc Teirlinck
3702         <teirllm@auburn.edu>.
3703         (tramp-handle-write-region): Pass modtime explicitely to
3704         `set-visited-file-modtime', because filename can be different
3705         from (buffer-file-name) if `file-precious-flag' is set.
3706         `set-visited-file-modtime' must be called always when `visit' is t
3707         or a string.  Suggested by Luc Teirlinck <teirllm@auburn.edu>.
3708         (tramp-handle-set-visited-file-modtime): If `time-list' is not
3709         nil, don't apply the whole body.  If the file doesn't exists, set
3710         modtime to '(-1 65535).  Suggested by Luc Teirlinck
3711         <teirllm@auburn.edu>.
3713 2004-08-09  Luc Teirlinck  <teirllm@auburn.edu>
3715         * help.el (describe-bindings): Doc fix.
3717         * subr.el (kbd): Doc fix.
3719 2004-08-08  John Paul Wallington  <jpw@gnu.org>
3721         * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
3722         instead of `string-to-int'.
3723         (define-ibuffer-column mode): Fix indentation.
3725 2004-08-08  Lars Hansen  <larsh@math.ku.dk>
3727         * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
3729 2004-08-08  Luc Teirlinck  <teirllm@auburn.edu>
3731         * subr.el (global-unset-key, local-unset-key): Doc fixes.
3733         * novice.el (disabled-command-function): New variable renamed from
3734         `disabled-command-hook'.
3735         (disabled-command-hook): Keep the _variable_ as alias for
3736         `disabled-command-function' and make obsolete.
3737         (disabled-command-function): Function renamed from
3738         `disabled-command-hook'.  Adapt code to name change of the variable.
3740 2004-08-07  Satyaki Das  <satyaki@theforce.stanford.edu>  (tiny change)
3742         * simple.el (completion-root-regexp): New defvar.
3743         (completion-setup-function): Use it instead of a literal string.
3745 2004-08-07  John Paul Wallington  <jpw@gnu.org>
3747         * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
3748         (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
3749         (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
3750         (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
3752 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
3754         * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
3755         (mail-extr-voodoo): Check mail-extr-disable-voodoo.
3757 2004-08-04  Kenichi Handa  <handa@m17n.org>
3759         * international/encoded-kb.el (encoded-kbd-setup-keymap):
3760         Fix previous change.
3762 2004-08-03  Kenichi Handa  <handa@m17n.org>
3764         * international/encoded-kb.el: The following changes are to
3765         utilize key-translation-map instead of minor mode map.
3766         (encoded-kbd-iso2022-non-ascii-map): Delete it.
3767         (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
3768         (encoded-kbd-last-key): New function.
3769         (encoded-kbd-iso2022-single-shift): New function.
3770         (encoded-kbd-iso2022-designation)
3771         (encoded-kbd-self-insert-iso2022-7bit)
3772         (encoded-kbd-self-insert-iso2022-8bit)
3773         (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
3774         (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
3775         key-translation-map.
3776         (encoded-kbd-setup-keymap): Setup key-translation-map.
3777         (saved-key-translation-map): New variable.
3778         (encoded-kbd-mode): Save/restore key-translation-map.
3779         Adjust for the change of encoded-kbd-setup-keymap.
3781 2004-08-02  Kim F. Storm  <storm@cua.dk>
3783         * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
3784         and call compute-motion with nil for topos and width to get proper
3785         usable width and height for both window and non-window systems.
3787         * windmove.el (windmove-coordinates-of-position): Let compute-motion
3788         calculate usable window width and height.
3790         * window.el (window-buffer-height): Call compute-motion with nil width.
3792 2004-08-01  David Kastrup  <dak@gnu.org>
3794         * replace.el (query-replace-read-from):
3795         Use `query-replace-compile-replacement'.
3796         (query-replace-compile-replacement): New function.
3797         (query-replace-read-to): Use `query-replace-compile-replacement'
3798         for repeating the last command.
3800 2004-08-01  John Paul Wallington  <jpw@gnu.org>
3802         * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
3803         (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
3804         (pr-switches): Remove period from end of error messages.
3806         * help-mode.el (help-go-back): Likewise.
3808         * abbrev.el (only-global-abbrevs): Doc fix.
3809         (edit-abbrevs-map): Define within defvar.
3810         (quietly-read-abbrev-file): Doc fix.
3812 2004-07-31  Luc Teirlinck  <teirllm@auburn.edu>
3814         * novice.el (enable-command, disable-command): Doc fixes.
3816         * subr.el (event-modifiers, event-basic-type): Doc fixes.
3818 2004-07-30  Richard M. Stallman  <rms@gnu.org>
3820         * subr.el (with-local-quit): Doc fix.
3822 2004-07-30  Luc Teirlinck  <teirllm@auburn.edu>
3824         * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
3826 2004-07-28  Luc Teirlinck  <teirllm@auburn.edu>
3828         * custom.el (defcustom): Doc fix.
3830 2004-07-28  Masatake YAMATO  <jet@gyve.org>
3832         * progmodes/etags.el (etags-tags-apropos): Show building progress.
3834 2004-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3836         * imenu.el (imenu-prev-index-position-function)
3837         (imenu-extract-index-name-function, imenu-name-lookup-function)
3838         (imenu--index-alist): Docstring redundancy fix.
3840 2004-07-25  Lars Hansen  <larsh@math.ku.dk>
3842         * wdired.el (wdired-finish-edit): Require dired-aux before locally
3843         binding dired-backup-overwrite.
3845 2004-07-25  John Paul Wallington  <jpw@gnu.org>
3847         * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
3849 2004-07-24  Luc Teirlinck  <teirllm@auburn.edu>
3851         * term/tty-colors.el (tty-color-approximate): Doc fix.
3853         * select.el (x-get-selection, x-set-selection): Doc fixes.
3855         * frame.el (make-frame): Doc fix.
3857 2004-07-24  Richard M. Stallman  <rms@gnu.org>
3859         * mail/rmail.el (rmail-mime-charset-pattern):
3860         Don't include semicolon in the charset value.
3862         * replace.el (occur-next-error): Call set-window-point.
3863         (occur-engine): Handle negative NLINES.
3865 2004-07-23  Luc Teirlinck  <teirllm@auburn.edu>
3867         * frame.el (modify-all-frames-parameters): Minor doc fix.
3868         (set-frame-configuration): Doc fix.
3870 2004-07-23  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
3872         * simple.el (completion-setup-function): Compute the common parts
3873         and the first difference place correctly when
3874         partial-completion-mode is on.
3876 2004-07-22  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3878         * ps-print.el: Doc fix.
3879         (ps-print-version): New version 6.6.5.
3880         (ps-printing-region): Doc fix.
3881         (ps-generate-string-list): Comment fix.
3882         (ps-message-log-max): Code fix.
3884 2004-07-22  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
3886         * ps-print.el (ps-begin-file): Improve the DSC compliance of the
3887         generated PostScript.
3889 2004-08-17  Reiner Steib  <Reiner.Steib@gmx.de>
3891         * net/tls.el (tls-process-connection-type): Fix docstring.  (Sync
3892         with Gnus v5_10 branch.)
3894 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
3896         * calendar/time-date.el (time-to-number-of-days): New function.
3897         Imported from from Gnus.
3899 2004-07-22  Kim F. Storm  <storm@cua.dk>
3901         * progmodes/make-mode.el: Fix comments.
3903 2004-07-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3905         * printing.el: Doc fix.
3907 2004-07-20  Luc Teirlinck  <teirllm@auburn.edu>
3909         * frame.el (modify-all-frames-parameters): Minor doc fix.
3911 2004-07-20  Richard M. Stallman  <rms@gnu.org>
3913         * textmodes/fill.el (fill-nobreak-p): If this break point is
3914         at the end of the line, don't consider the newline which follows
3915         as a reason to return t.
3917 2004-07-19  John Paul Wallington  <jpw@gnu.org>
3919         * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
3921 2004-07-18  Luc Teirlinck  <teirllm@auburn.edu>
3923         * dired-aux.el (dired-do-kill-lines): Expand docstring.
3924         Delete irrelevant code.
3926 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
3928         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
3929         New docstring.  From Luc Teirlinck.
3931 2004-07-17  Luc Teirlinck  <teirllm@auburn.edu>
3933         * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
3934         section.
3935         (auto-revert-handler): Do not check `auto-revert-tail-mode' for
3936         non-file buffers.  We know it is nil.
3938 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
3940         Sync with Tramp 2.0.43.
3942         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
3943         Remove outdated comment.
3944         (tramp-locked, tramp-locker): New variables for implementing a
3945         global lock.
3946         (tramp-sh-file-name-handler): Use them to implement the global lock.
3948 2004-07-13  Michael Albinus  <michael.albinus@gmx.de>
3950         * net/tramp.el (all): Code cleanup.  Change all `tramp-handle-xxx'
3951         calls to respective `xxx` calls.
3952         (tramp-process-alive-regexp): Precise doc string.
3953         (tramp-multi-action-process-alive): New defun.
3954         (tramp-multi-actions): Use it.
3955         (tramp-handle-find-backup-file-name): `copy-tree' is available
3956         since Emacs 21.4 only (XEmacs has it).  Implementation rewritten
3957         in order to avoid this function.
3958         (tramp-handle-write-region): Set current buffer.  If connection
3959         wasn't open, `file-modes' has changed it accidently.  Reported by
3960         David Kastrup <dak@gnu.org>.
3961         (tramp-enter-password, tramp-read-passwd): New arguments USER and
3962         HOST.
3963         (tramp-action-password, tramp-multi-action-password): Apply it.
3964         (tramp-open-connection-rsh): If a port is given, the Tramp buffer
3965         name must still contain the port number.  Otherwise, we have two
3966         Tramp buffers, with all the confusion.  Reported by Myron Selby
3967         <myron@xytech.com> and Rolf Dubitzky
3968         <Dubitzky@physi.uni-heidelberg.de>.
3970         * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
3971         HOST to `tramp-enter-passwd'.
3973         * net/tramp-vc.el (all): Code cleanup.  Change all
3974         `tramp-handle-xxx' calls to respective `xxx` calls.
3976 2004-07-17  Jonathan Yavner  <jyavner@member.fsf.org>
3978         * emacs-lisp/testcover.el: New category "potentially-1valued" for
3979         functions that are not erroneous if either 1-valued or
3980         multi-valued.  Detect functions in this class.
3981         (testcover-1value-functions, testcover-compose-functions)
3982         (testcover-progn-functions) Add some additional functions to lists.
3983         (testcover-mark): Bugfix when marking up the definition for an
3984         empty function.
3986 2004-07-17  Richard M. Stallman  <rms@gnu.org>
3988         * replace.el (occur-read-primary-args): Pass default to
3989         read-from-minibuffer.
3991         * mail/footnote.el (footnote-section-tag): Use defcustom.
3993         * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
3994         Compile font-lock-keywords, not KEYWORDS.
3995         (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
3996         Add warn, check-type.  Handle cerror like error.
3998 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
4000         * progmodes/which-func.el (which-func-keymap): New var.
4001         (which-func-face): New face.
4002         (which-func-format): Use them.
4004 2004-07-16  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
4006         * buff-menu.el (list-buffers-noselect): Append the buffer's
4007         process status to its mode name.
4009 2004-07-16  Kim F. Storm  <storm@cua.dk>
4011         * simple.el (inhibit-mark-movement): New defvar.
4012         (beginning-of-buffer, end-of-buffer): Do not push mark if
4013         inhibit-mark-movement is non-nil or C-u prefix is given.
4015         * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
4016         Init to beginning-of-buffer and end-of-buffer.
4017         (cua--undo-push-mark): New defvar.
4018         (cua--pre-command-handler): Set inhibit-mark-movement if mark is
4019         already active and command is in cua--preserve-mark-commands.
4020         Also fix check for shift modifier on non-window systems.
4021         (cua--post-command-handler): Clear inhibit-mark-movement if set.
4023 2004-07-14  Luc Teirlinck  <teirllm@auburn.edu>
4025         * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
4026         of two integers, instead of a cons.
4028         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
4029         `visited-file-modtime' now returns a list of two integers, instead
4030         of a cons.
4032         * dired.el (dired-directory-changed-p): Ditto.
4034         * progmodes/grep.el (grep): Doc fix.
4036 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
4038         * autorevert.el (auto-revert-tail-mode)
4039         (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
4040         (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
4041         in both at the same time.
4042         (auto-revert-tail-mode): New command.
4043         (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
4044         (auto-revert-handler): Revert only either tail or whole file.
4046         * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
4047         add auto-revert-tail-mode.
4049 2004-07-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4051         * printing.el: Doc fix.  Change name of some funs.
4052         (pr-dosify-file-name): New fun.  Replace ps-dosify-path.
4053         (pr-unixify-file-name): New fun.  Replace ps-unixify-path.
4054         (pr-standard-file-name): New fun.  Replace pr-standard-path.
4055         (pr-call-process): Code fix.
4057 2004-07-12  Luc Teirlinck  <teirllm@auburn.edu>
4059         * subr.el (with-selected-window): Doc fix.
4061 2004-07-11  Luc Teirlinck  <teirllm@auburn.edu>
4063         * subr.el (get-buffer-window-list): Doc fix.
4065 2004-07-10  Luc Teirlinck  <teirllm@auburn.edu>
4067         * files.el (switch-to-buffer-other-window): Doc fix.
4069         * window.el (save-selected-window, one-window-p)
4070         (split-window-keep-point, split-window-vertically)
4071         (split-window-horizontally): Doc fixes.
4073 2004-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4075         * printing.el: Doc fix.  Now it uses call-process instead of
4076         shell-command for low command execution.
4077         (pr-version): New version number (6.8).
4078         (pr-shell-file-name): Option removed.
4079         (pr-shell-command): Fun removed.
4080         (pr-call-process): New fun.  Replace pr-shell-command.
4081         (pr-standard-path, pr-remove-nil-from-list): New funs.
4082         (zmacs-region-stays, current-mouse-event, current-menubar): New var.
4083         (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
4084         (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
4085         (pr-ps-utility-process, pr-txt-print): Code fix.
4087 2004-07-10  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
4089         * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
4090         boolean.
4092 2004-07-09  Lars Hansen  <larsh@math.ku.dk>
4094         * wid-edit.el (widget-field-buffer): Doc fix.
4096 2004-07-09  John Paul Wallington  <jpw@gnu.org>
4098         * emacs-lisp/re-builder.el (reb-update-overlays):
4099         Distinguish between one and several matches in message.
4101 2004-07-09  Richard M. Stallman  <rms@gnu.org>
4103         * mouse.el (mouse-set-region-1): If transient-mark-mode
4104         is `identity', change it to `only'.
4106         * simple.el (current-word): Doc fix.
4108 2004-07-09  Mark A. Hershberger  <mah@everybody.org>
4110         * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
4111         so that it is more understanding of whitespace.
4113         * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
4114         form
4115         (("ns" . "element") (attr-list) children) instead of
4116         ((:ns . "element") (attr-list) children) in order to reduce the
4117         number of symbols used.
4118         (xml-skip-dtd): Change to use xml-parse-dtd but set
4119         xml-validating-parsing to nil.
4120         (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
4121         (xml-substitute-entity): Remove in favor of new entity substitution.
4122         (xml-substitute-special): Rewrite in to substitute complex
4123         entities from DOCTYPE declarations.
4124         (xml-parse-fragment): Parse fragments from entity deleclarations.
4125         (xml-parse-region, xml-parse-tag, xml-parse-attlist)
4126         (xml-parse-dtd, xml-substitute-special): Make validity checks
4127         conditioned on xml-validating-parser.  Add "Not Well Formed" to
4128         error messages about well-formedness.
4130 2004-07-08  Steven Tamm  <steventamm@mac.com>
4132         * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
4133         (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
4134         Do not treat double clicks and triple clicks specially in the
4135         scroll bar (preventing strange repositioning problems)
4137 2004-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4139         * replace.el (query-replace-regexp-eval): Fix last change.
4141 2004-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4143         * replace.el (query-replace-descr): New fun.
4144         (query-replace-read-from, query-replace-read-args): Default to the
4145         previous from&to.
4146         (query-replace-read-to): Quote the `from' string when displaying it.
4147         (query-replace-regexp-eval): Immediately check read-only status.
4148         Use query-replace-read-from to get the \n checking.
4149         Quote the `from' string when displaying it.
4150         (map-query-replace-regexp, occur-read-primary-args):
4151         Quote the `from' string when displaying it.
4153         * isearch.el (isearch-query-replace): Pass the regexp-ness and
4154         delimited-ness of the search to query-replace.
4156         * replace.el (query-replace-read-from, query-replace-read-to):
4157         New funs extracted from query-replace-read-args.
4158         (query-replace-read-args): Use them.
4160         * replace.el (query-replace-interactive, query-replace-read-args):
4161         Remove the `initial' special value.
4162         (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
4163         (occur-engine): Remove unused var `matchend'.
4165         * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
4166         Use the search string without prompting.
4168 2004-07-05  Kenichi Handa  <handa@m17n.org>
4170         * international/mule.el (decode-coding-inserted-region):
4171         Set last-coding-system-used only when coding is nil.
4173 2004-07-03  Eli Zaretskii  <eliz@gnu.org>
4175         * progmodes/grep.el (grep-compute-defaults, grep-command)
4176         (grep-program, find-program, grep-find-use-xargs, grep-history)
4177         (grep-find-history, grep-tag-default, grep-find-command)
4178         (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
4179         Add autoload cookies, for unbundled packages that load `compile'
4180         and expect all grep-related symbols to become defined.
4182 2004-07-03  KOSEKI Yoshinori  <kose@meadowy.org>
4184         * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
4185         (iimage-mode-image-search-path): New user option to search the
4186         image file.
4187         (iimage-locate-file): New funcion.  Emacs21.3 or earlier does not
4188         have locate-file.
4189         (iimage-mode-buffer): Use it.
4191 2004-07-03  Nick Roberts  <nickrob@gnu.org>
4193         * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
4194         carefully.
4195         (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
4197 2004-07-03  Juri Linkov  <juri@jurta.org>
4199         * replace.el (query-replace-read-args): Swallow space after 'foo,
4200         not after (quote foo).  Match space only immediately after symbol,
4201         not anywhere in the whole string.
4203 2004-07-02  Richard M. Stallman  <rms@gnu.org>
4205         * replace.el (query-replace-read-args): Swallow space after
4206         symbols, not after closeparens.  But avoid error if string ends there.
4208         * progmodes/python.el (python-beginning-of-statement):
4209         Exit the loop if backward-up-list gets error.
4211         * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
4213 2004-07-02  Andre Spiegel  <spiegel@gnu.org>
4215         * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
4216         only if vc-consult-headers is non-nil.
4218 2004-07-02  Juri Linkov  <juri@jurta.org>
4220         * pcvs.el (cvs-mode-diff-repository): New command.
4222         * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
4224 2004-07-01  Juri Linkov  <juri@jurta.org>
4226         * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
4227         C-M-y to isearch-yank-char.  Bind M-% to isearch-query-replace,
4228         C-M-% to isearch-query-replace-regexp.
4229         (minibuffer-local-isearch-map): Add arrow key bindings.
4230         Bind C-f to isearch-yank-char-in-minibuffer.
4231         (isearch-forward): Doc fix.
4232         (isearch-edit-string): Doc fix.
4233         (isearch-query-replace, isearch-query-replace-regexp): New funs.
4234         (isearch-del-char): Add optional arg.  Set isearch-yank-flag to t.
4235         (isearch-yank-char): Add optional arg.
4236         (isearch-yank-char-in-minibuffer): New fun.
4238         * replace.el (query-replace-interactive): Change type from boolean
4239         to choice.  Add value `initial'.
4240         (query-replace-read-args): Handle value `initial' of
4241         query-replace-interactive.
4243 2004-06-29  Kim F. Storm  <storm@cua.dk>
4245         * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
4246         (breakpoint-disabled-bitmap-face): Add :group 'gud.
4248         * progmodes/ada-xref.el (ada-tight-gvd-integration):
4249         Add :group 'ada.
4251         * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
4253 2004-06-29  Juri Linkov  <juri@jurta.org>
4255         * replace.el (query-replace-read-args): Swallow a space after
4256         everything except )]" which in most cases means after a symbol.
4258         * emacs-lisp/pp.el (pp-buffer): Add autoload.
4260 2004-06-28  Richard M. Stallman  <rms@gnu.org>
4262         * font-lock.el (font-lock-fontify-syntactic-keywords-region):
4263         More changes to go with previous change in font-lock.el.
4265 2004-06-26  David Kastrup  <dak@gnu.org>
4267         * replace.el (perform-replace): Highlight the match even in
4268         non-query mode if there is potential replace string editing.
4270 2004-06-26  Kai Grossjohann  <kai.grossjohann@gmx.net>
4272         * net/tramp.el (tramp-handle-file-remote-p): New implementation to
4273         agree with new return value of `file-remote-p'.
4274         This syncs with Tramp 2.0.42.
4276         * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
4277         according to new documentation of `file-remote-p'.
4279         * files.el (file-remote-p): Fix doc to say that return value is
4280         identification of remote system, if not nil.
4281         (file-relative-name): Use new return value of `file-remote-p'.
4283 2004-06-26  Nick Roberts  <nickrob@gnu.org>
4285         * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
4286         (gdb-goto-breakpoint): Fix breakage.
4288 2004-06-26  Eli Zaretskii  <eliz@gnu.org>
4290         * man.el (Man-getpage-in-background): Add windows-nt to the list
4291         of systems where shell-file-name should be used instead of
4292         literal "sh".
4294 2004-06-25  Sam Steingold  <sds@gnu.org>
4296         * add-log.el (change-log-font-lock-keywords): Support Common Lisp
4297         function names `(setf symbol)'.
4299 2004-06-24  Richard M. Stallman  <rms@gnu.org>
4301         * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
4303         * font-lock.el (font-lock-keywords): Change format of compiled values.
4304         Document it.
4305         (font-lock-add-keywords): If font-lock-keywords is compiled,
4306         extract the uncompiled version, modify, then recompile.
4307         (font-lock-remove-keywords): Likewise.
4308         (font-lock-fontify-keywords-region): Handle changed format.
4309         (font-lock-compile-keywords): Handle changed format.
4310         (font-lock-set-defaults): Compile the keywords explicitly here.
4312 2004-06-24  David Kastrup  <dak@gnu.org>
4314         * replace.el (query-replace-read-args): Implement `\,' and `\#'
4315         replacements here.
4316         (query-replace-regexp): Doc string explaining this and the new
4317         `\?' replacement.  Remove `\,' and `\#' implementation here, as it
4318         is better placed in `query-replace-read-args'.
4319         (replace-regexp): Explain `\,', `\#' and `\?'.
4320         (replace-match-data): New function for thorough reuse/destruction
4321         of old match-data.
4322         (replace-match-maybe-edit): Function for implementing `\?' editing.
4323         (perform-replace): Fix maintaining of the match stack including
4324         already matched regions, implement `\?', fix various problems
4325         with regions while editing and other stuff.
4326         (replace-highlight): Simplify.
4328 2004-06-24  Daniel Pfeiffer  <occitan@esperanto.org>
4330         * progmodes/grep.el (grep-error-screen-columns): New variable.
4331         (grep-regexp-alist): Give it the full functionality of gnu style
4332         compilation messages with line and column ranges.  Ask me for the
4333         perl script I'm working on, that uses these.
4335 2004-06-23  Nick Roberts  <nickrob@gnu.org>
4337         * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
4338         Remove.
4339         (comint-insert-input, comint-mouse-insert-input): New functions
4340         based on comint-insert-clicked-input for two bindings but just
4341         one functionality.
4343 2004-06-23  Luc Teirlinck  <teirllm@auburn.edu>
4345         * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
4347 2004-06-23  Lars Hansen  <larsh@math.ku.dk>
4349         * files.el (write-contents-functions): Doc fix.
4351 2004-06-21  Juanma Barranquero  <lektu@terra.es>
4353         * image.el (image-library-alist): Rewrite docstring in active voice.
4355 2004-06-20  Richard M. Stallman  <rms@gnu.org>
4357         * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
4359         * isearch.el (isearch-repeat): Avoid testing old match data.
4360         (isearch-message): Display trailing space in special font
4361         when search is failing.
4362         (isearch-search-fun-function): Doc fix.
4364         * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
4366 2004-06-19  Luc Teirlinck  <teirllm@auburn.edu>
4368         * frame.el (show-trailing-whitespace): Doc fix.
4370         * cus-edit.el (custom-variable-documentation): New function.
4371         (custom-variable): Use it.
4373 2004-06-19  Nick Roberts  <nickrob@gnu.org>
4375         * man.el (Man-getpage-in-background): Revert previous change but
4376         make cygwin a special case.
4378 2004-06-18  Luc Teirlinck  <teirllm@auburn.edu>
4380         * autorevert.el (global-auto-revert-non-file-buffers):
4381         Update docstring.
4383 2004-06-19  Daniel Pfeiffer  <occitan@esperanto.org>
4385         * progmodes/compile.el (compilation-error-properties): Store one
4386         more than end-col, if present, so that transient-mark-mode will
4387         highlight last char too.
4388         * progmodes/grep.el (grep-regexp-alist): Match columns and column
4389         ranges, if present.
4391 2004-06-18  Jason Rumney  <jasonr@gnu.org>
4393         * makefile.w32-in: Double percent signs in for loops.
4395 2004-06-17  David Kastrup  <dak@gnu.org>
4397         * replace.el (query-replace-read-args): Only warn about use of \n
4398         and \t when we are doing a regexp replacement and the actual
4399         escaped character is n or t.
4400         (query-replace-regexp): Add \, and \# interpretation to
4401         interactive call and document it.
4402         (query-replace-regexp-eval, replace-match-string-symbols): Add \#
4403         as shortkey for replace-count.
4404         (replace-quote): New function for doubling backslashes.
4406 2004-06-17  Juanma Barranquero  <lektu@terra.es>
4408         * files.el (parse-colon-path, cd): Mention in docstring that the
4409         path separator is colon in GNU-like systems.
4411         * newcomment.el (comment-region-internal): Fix docstring.
4413         * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
4414         (ewoc-invalidate, ewoc-collect): Doc fixes.
4415         (ewoc--create-node, ewoc--delete-node-internal):
4416         Fix typos in docstring.
4418 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
4420         * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
4421         manual to docstring.
4423 2004-06-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4425         * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
4427 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
4429         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4430         Add hyperlink to emacs-xtra manual to docstring.
4432         * autorevert.el (global-auto-revert-non-file-buffers):
4433         Add hyperlink to emacs-xtra manual to docstring, as well as an
4434         info-link.
4436 2004-06-14  Juanma Barranquero  <lektu@terra.es>
4438         * image.el (image-library-alist): New variable to map image types
4439         to external libraries.  Initialized to nil, unless system-specific
4440         configs change it.
4441         (image-type-available-p): Determine whether an image type is
4442         available by calling `init-image-library'.
4444         * term/w32-win.el (image-library-alist): Initialize to a known set
4445         of probable library names.
4447 2004-06-14  Kenichi Handa  <handa@m17n.org>
4449         * international/code-pages.el (windows-1256, cp1125): Fix tables
4450         for several characters.
4452         * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
4454 2004-06-13  Richard M. Stallman  <rms@gnu.org>
4456         * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
4458         * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
4459         not "`pc-selection-mode'".
4461         * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
4463         * simple.el (previous-matching-history-element): Specify a default.
4465         * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
4467         * cus-face.el (custom-declare-face): Simplify code.
4469         * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
4471 2004-06-13  Luc Teirlinck  <teirllm@auburn.edu>
4473         * files.el (before-save-hook): Add `time-stamp' to the options.
4475         * time-stamp.el (time-stamp): Recommend adding it to
4476         `before-save-hook', rather than `write-file-functions'.
4477         Make a similar change in `Commentary' section.
4479 2004-06-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
4481         * diff-mode.el (diff-current-defun): If at start of hunk, use
4482         position of first change.
4484 2004-06-13  Lars Hansen  <larsh@math.ku.dk>
4486         * dired-x.el (dired-mark-omitted): Bind to "*O".
4488 2004-06-12  Karl Fogel  <kfogel@red-bean.com>
4490         * bookmark.el (bookmark-bmenu-relocate): New function, as
4491         suggested by David J. Biesack <David.Biesack@sas.com>.
4492         (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
4493         (bookmark-bmenu-mode): Describe binding in doc string.
4494         (bookmark-set-filename): Save the bookmark list if it's time.
4496 2004-06-13  Kenichi Handa  <handa@m17n.org>
4498         * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
4499         (ccl-untranslated-to-ucs): Fix typo.
4501 2004-06-12  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
4503         * progmodes/python.el (python-open-block-statement-p):
4504         Fix indentation after a block opening that contains a comment.
4506 2004-06-12  J\e,Ai\e(Br\e,At\e(Bme Marant  <jerome@marant.org>  (tiny change)
4508         * bindings.el (completion-ignored-extensions): Add file extensions
4509         of Python byte-compiled files.
4511 2004-06-12  Juri Linkov  <juri@jurta.org>
4513         * info.el (Info-goto-node): Add autoload.
4514         (Info-toc): Add substring-no-properties on Info file name.
4515         (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
4516         (Info-mode-map): Bind L to Info-history, T to Info-toc.
4518 2004-06-12  Kenichi Handa  <handa@m17n.org>
4520         * international/mule-cmds.el (set-language-environment):
4521         Load subst tables if necessary.
4523         * international/mule.el (decode-char): Load subst tables if necessary.
4524         (encode-char): Likewise.
4526         * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
4527         pair correctly.  Call ccl-mule-utf-untrans for untranslable chars.
4528         (utf-16le-decode-loop): Set r5 to -1 before loop.
4529         (utf-16be-decode-loop): Likewise.
4530         (ccl-decode-mule-utf-16le): Add EOF processing block.
4531         (ccl-decode-mule-utf-16be): Likewise.
4532         (ccl-decode-mule-utf-16le-with-signature): Likewise.
4533         (ccl-decode-mule-utf-16be-with-signature): Likewise.
4534         (ccl-decode-mule-utf-16): Likewise.  Set r5 to -1 initially.
4535         (ccl-mule-utf-16-encode-untrans): New CCL.
4536         (utf-16-decode-to-ucs): Handle pre-read character.
4537         (utf-16le-encode-loop): Handle surrogate pair.
4538         (utf-16be-encode-loop): Likewise.
4539         (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
4540         of utf-16le-encode-loop.
4541         (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
4542         of utf-16be-encode-loop.
4543         (mule-utf-16-post-read-conversion):
4544         Call utf-8-post-read-conversion at first.
4545         (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
4546         Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
4547         Add post-read-conversion and pre-write-conversion.
4549         * international/utf-8.el (utf-translate-cjk-charsets): New variable.
4550         (utf-translate-cjk-unicode-range): New variable.
4551         (utf-translate-cjk-load-tables): New function.
4552         (utf-lookup-subst-table-for-decode): New function.
4553         (utf-lookup-subst-table-for-encode): New function.
4554         (utf-translate-cjk-mode): Init-value changed to t.  Don't load
4555         tables here.  Update safe-charsets of utf-* coding systems.
4556         (ccl-mule-utf-untrans): New CCL.
4557         (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans.  Use `repeat'
4558         at end of each branch.
4559         (ccl-mule-utf-8-encode-untrans): New CCL.
4560         (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
4561         (ccl-untranslated-to-ucs): Handle 2-byte encoding.  Set r1 to the
4562         length of encoding.  Don't return r0.
4563         (utf-8-compose): New arg hash-table.  Handle 2-byte encoding.
4564         (utf-8-post-read-conversion): Narrow to region properly.
4565         If utf-translate-cjk-mode is on, load tables if necessary.
4566         Call utf-8-compose with hash-table arg if necessary.
4567         Call XXX-compose-region instead of XXX-post-read-convesion.
4568         (utf-8-pre-write-conversion): New function.
4569         (mule-utf-8): Include CJK charsets in safe-charsets if
4570         utf-translate-cjk-mode is on.  Add pre-write-conversion.
4572         * international/characters.el: Temporarily set
4573         utf-translate-cjk-mode to nil.
4575         * language/devan-util.el (devanagari-compose-region):
4576         Add autoload cookie.
4578         * international/ccl.el (ccl-dump-call): Fix printing the
4579         subroutine name.
4581 2004-06-11  Luc Teirlinck  <teirllm@auburn.edu>
4583         * dired.el (dired-revert): If buffer is marked unmodified before
4584         reverting, keep it marked unmodified.
4585         Adapt to new conventions for commenting out code.
4586         (dired-make-relative): Adapt to new conventions for commenting out code.
4588 2004-06-10  Miles Bader  <miles@gnu.ai.mit.edu>
4590         * eshell/esh-module.el (eshell-load-defgroups):
4591         Bind `vc-handled-backends' to nil when opening files.
4593 2004-06-11  Juanma Barranquero  <lektu@terra.es>
4595         * files.el (parse-colon-path, cd): Doc fixes (refer to
4596         `path-separator', not colon).
4598 2004-06-10  Juanma Barranquero  <lektu@terra.es>
4600         * newcomment.el (comment-search-forward)
4601         (comment-search-backward): Fix typos in docstring.
4602         (comment-region): Doc fix.
4604 2004-06-10  Luc Teirlinck  <teirllm@auburn.edu>
4606         * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
4607         switch is no longer stored in `dired-switches-alist'.
4609         * dired-aux.el (dired-insert-subdir): Do not store R switch in
4610         `dired-switches-alist'.
4612 2004-06-10  Kim F. Storm  <storm@cua.dk>
4614         * pcvs.el (cvs-mode-diff-yesterday): New command.
4616         * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
4618 2004-06-10  Juri Linkov  <juri@jurta.org>
4620         * emacs-lisp/edebug.el (edebug-eval-defun):
4621         * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
4622         Fix docstring.
4624         * simple.el (eval-expression-print-format): Don't print additional
4625         information on the first call to `eval-print-last-sexp'.
4626         (next-error-find-buffer): Fix punctuation.
4627         (killing) <defgroup>: Fix punctuation.
4628         (yank-excluded-properties): Change group from editing to killing.
4630         * replace.el (perform-replace): Use `limit' to terminate the
4631         while-loop explicitly.
4633 2004-06-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4635         * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
4636         Use lc-*.xpm as prefix instead of *-locol.xpm.
4638         * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
4639         * toolbar/lc-help.xpm, toolbar/lc-home.xpm
4640         * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
4641         * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
4642         * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
4643         * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
4644         * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
4645         * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
4646         * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
4647         * toolbar/lc-up_arrow.xpm:
4648         Rename from *-locol.xpm.
4650 2004-06-09  Rajesh Vaidheeswarran  <rv@gnu.org>
4652         * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
4653         include forms like &<str>; as valid url patterns.
4655 2004-06-08  Luc Teirlinck  <teirllm@auburn.edu>
4657         * dired.el (dired-diff, dired-backup-diff)
4658         (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
4659         (dired-do-chown, dired-do-touch, dired-do-print)
4660         (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
4661         (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
4662         (dired-create-directory, dired-do-copy, dired-do-symlink)
4663         (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
4664         (dired-do-copy-regexp, dired-do-hardlink-regexp)
4665         (dired-do-symlink-regexp, dired-upcase, dired-downcase)
4666         (dired-maybe-insert-subdir, dired-next-subdir)
4667         (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
4668         (dired-kill-subdir, dired-tree-up, dired-tree-down)
4669         (dired-hide-subdir, dired-hide-all, dired-show-file-type)
4670         (dired-run-shell-command, dired-query): Remove redundant,
4671         or incorrect, autoloads.
4673         * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
4674         does not end in a slash.  Add optional argument KILL-ROOT.
4675         Update docstring.
4676         (dired-do-touch, dired-clean-directory, dired-run-shell-command)
4677         (dired-query): Add autoloads.
4679 2004-06-08  Daniel Pfeiffer  <occitan@esperanto.org>
4681         * progmodes/compile.el (compilation-set-window-height):
4682         Rearrange the save-* functions because a buffer can have several current
4683         point in different windows.
4684         (compilation-error-regexp-alist-alist): Recognize {standard input}
4685         GNU messages (for gcc --pipe) and more kinds of Oracle messages.
4687 2004-06-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4689         * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
4690         * toolbar/help-locol.xpm, toolbar/home-locol.xpm
4691         * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
4692         * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
4693         * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
4694         * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
4695         * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
4696         * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
4697         * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
4698         * toolbar/up_arrow-locol.xpm:
4699         New versions of icons that uses fewer colors.
4701         * toolbar/tool-bar.el (tool-bar-local-item)
4702         (tool-bar-local-item-from-menu): Try to use icons with fewer colors
4703         if display-color-cells is 256 or less.
4705 2004-06-08  Kim F. Storm  <storm@cua.dk>
4707         * wid-edit.el (widget-specify-button): Use hand pointer rather
4708         than mouse-face as visible mouse-over effect.
4710 2004-06-07  Karl Fogel  <kfogel@red-bean.com>
4712         * saveplace.el (save-place-alist-to-file): Bind `print-length'
4713         and `print-level' to nil when writing out `save-place-alist'.
4714         Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
4716 2004-06-07  Juanma Barranquero  <lektu@terra.es>
4718         * completion.el (completion-kill-region): Doc fix.
4720         * format.el (format-insert-annotations)
4721         (format-annotate-location): Doc fixes.
4722         (format-subtract-regions): Make arguments match their use in docstring.
4724         * simple.el (kill-region): Doc fix.
4726         * subr.el (insert-buffer-substring-no-properties)
4727         (insert-buffer-substring-as-yank): Doc fixes.
4729 2004-06-07  Luc Teirlinck  <teirllm@auburn.edu>
4731         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4732         Update docstring.
4733         (dired-reset-subdir-switches): New function.
4735         * dired.el (dired-undo): Call `dired-build-subdir-alist'.
4736         Limit scope of `buffer-read-only' binding.
4738 2004-06-06  Emilio C. Lopes  <eclig@gmx.net>
4740         * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
4741         eshell-explicit-command-char.
4743 2004-06-06  Juanma Barranquero  <lektu@terra.es>
4745         * help-fns.el (help-argument-name): Inherit from italic face only
4746         if the frame supports it.
4748 2004-06-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4750         * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
4751         * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
4752         * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
4753         * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
4754         * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
4755         * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
4756         * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
4757         New conversions from xpm files.
4759         * toolbar/README: New file.
4761 2004-06-06  Richard M. Stallman  <rms@gnu.org>
4763         * isearch.el (isearch-mode-map): Undo previous change.
4765 2004-06-05  Juri Linkov  <juri@jurta.org>
4767         * bindings.el (debug-ignored-errors): Add regexps for history
4768         related messages.  Remove $ from "No further undo information".
4769         Move Ediff's messages to ediff.el.
4771         * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
4773         * cus-edit.el (custom-display): Add `min-colors'.
4775         * custom.el (defface): Add `supports' to docstring.
4777         * help-fns.el (help-argument-name): Add :group 'help.
4779 2004-06-05  Luc Teirlinck  <teirllm@auburn.edu>
4781         * find-dired.el (find-ls-subdir-switches): New user option.
4782         (find-dired): No longer call `abbreviate-file-name' on DIR.
4783         Set `dired-subdir-switches' buffer-locally.
4785         * locate.el: Merge the two `Commentary' sections.
4786         (locate-ls-subdir-switches): New user option.
4787         (locate): Update for other changes.
4788         (locate-mode-map): Restore Dired binding for mouse-2.
4789         Bind `locate-mouse-view-file' to M-mouse-2.
4790         Bind `l' to `locate-do-redisplay'.
4791         (locate-main-listing-line-p, locate-do-redisplay): New functions.
4792         (locate-mouse-view-file, locate-tags, locate-find-directory):
4793         Print message if used outside main listing.
4794         (locate-mode): Update docstring.  Make `*Locate*' buffer read-only.
4795         Various changes to support inserted subdirectories.
4796         (locate-insert-header): Change header of *Locate* buffer.
4798         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4799         Change interactive default switches.
4800         (dired-rename-subdir-2): Update `dired-switches-alist'.
4801         (dired-insert-subdir, dired-kill-subdir):
4802         Handle `dired-switches-alist'.  Do not mark buffer modified.
4803         (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
4804         (dired-insert-subdir-doinsert): Omit messages.
4805         Handle `dired-subdir-switches'.
4806         (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
4808         * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
4809         (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
4810         subdirs if -R switch is used for a subdir.
4811         (dired-mode): Set `dired-switches-alist'.
4812         (dired-build-subdir-alist): Only print number of directories in
4813         echo area when invoked interactively.
4815 2004-06-05  Lars Hansen  <larsh@math.ku.dk>
4817         * dired-x.el (dired-omit-mode): Rename from
4818         dired-omit-files-p.  Use define-minor-mode to define it.
4819         (dired-omit-files-p): Add as alias for dired-omit-mode.
4820         (dired-omit-toggle): Delete.  Replaced by dired-omit-mode and
4821         dired-mark-omitted.
4822         (dired-mark-omitted): Add.  Bind to M-O.
4824 2004-06-05  Kenichi Handa  <handa@m17n.org>
4826         * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
4828 2004-06-05  Juanma Barranquero  <lektu@terra.es>
4830         * help-fns.el (help-argument-name): Reintroduce face.
4831         (help-default-arg-highlight): Use it, now that
4832         `face-differs-from-default-p' can be trusted.
4834 2004-06-05  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
4836         * textmodes/table.el: Sentence commands added to Point Motion
4837         group; kill and backward-kill commands added to Extraction group.
4839 2004-06-04  Mario Lang  <mlang@delysid.org>
4841         * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
4842         systems appear to use mW, make the code handle this.  Fix a
4843         division-by-zero bug while at it, and handle kernels with
4844         a slightly different layout in /proc/acpi.
4846 2004-06-04  Karl Fogel  <kfogel@red-bean.com>
4848         * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
4849         because the latter is a CL-ism.  This fixes the bug reported by
4850         Shawn Boyette <mdxi@collapsar.net> in
4851         http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
4853 2004-06-04  Miles Bader  <miles@gnu.org>
4855         * faces.el (display-supports-face-attributes-p): Function moved to
4856         C code.  Previously only the tty-related portion of this function
4857         was done in C; however the previous attempt to do a halfway-proper
4858         job for non-tty displays in lisp didn't work properly because of
4859         funny conditions during Emacs startup.
4860         (face-differs-from-default-p): Simplify, now that
4861         display-supports-face-attributes-p works properly on all display
4862         types.  Remove :stipple from comparison; it doesn't really work
4863         in emacs anyway.
4865 2004-06-04  Miles Bader  <miles@gnu.org>
4867         * faces.el (face-differs-from-default-p): Use a different
4868         implementation, so we can really check whether FACE displays
4869         differently or not.
4871 2004-06-04  Miles Bader  <miles@gnu.org>
4873         * faces.el (display-supports-face-attributes-p): Implement a
4874         `different from default' check for non-tty displays.
4876 2004-06-03  David Kastrup  <dak@gnu.org>
4878         * woman.el (woman-mapcan): More concise code.
4879         (woman-topic-all-completions, woman-topic-all-completions-1)
4880         (woman-topic-all-completions-merge): Replace by a simpler and
4881         much faster implementation based on O(n log n) sort/merge instead
4882         of the old O(n^2) behavior.
4884 2004-06-03  Miles Bader  <miles@gnu.org>
4886         * subr.el (read-number): Use canonical format for default in prompt.
4888         * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
4889         Add regexp for " [...]" style defaults.
4891 2004-06-02  Romain Francoise  <romain@orebokech.com>
4893         * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
4894         groups: if the user asks for a hidden buffer, open the
4895         corresponding filter group to expose it.
4897         * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
4898         `ibuffer-jump-to-buffer'.
4899         (ibuffer-jump-offer-only-visible-buffers): New user option.
4901 2004-06-02  Juanma Barranquero  <lektu@terra.es>
4903         * faces.el (frame-update-faces): Add empty docstring so the one
4904         for `ignore' doesn't show through.
4906         * subr.el (process-kill-without-query): Remove spurious "\n" on
4907         obsolescence string.
4908         (focus-frame, unfocus-frame): Add obsolescence declaration and
4909         empty docstring.
4911         * international/mule.el (register-char-codings): Make alias for
4912         `ignore'.  Move docstring to obsolescence info and remove redundancy.
4914 2004-06-02  Kim F. Storm  <storm@cua.dk>
4916         * frame.el (blink-cursor-start): Turn cursor off initially so blink
4917         starts after blink-cursor-delay rather than 2*blink-cursor-delay.
4919 2004-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4921         * comint.el (comint-replace-by-expanded-history-before-point):
4922         Obey `start' as the docstring says.
4923         (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
4924         (comint-update-fence): Prevent font-lock from running unnecessarily.
4925         (comint-dynamic-list-completions): Use with-current-buffer.
4927 2004-06-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4929         * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
4930         (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
4931         (bibtex-entry-update): Handle alternatives and optional fields.
4932         (bibtex-parse-entry): Bugfix, handle empty key.
4934 2004-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4936         * vc-arch.el (vc-arch-state): Don't assume the file exists.
4938 2004-05-31  Lars Hansen  <larsh@math.ku.dk>
4940         * desktop.el (desktop-save): Don't save minor modes without a
4941         known mode initialization function.
4943 2004-05-30  Luc Teirlinck  <teirllm@auburn.edu>
4945         * replace.el (query-replace-interactive): Convert defvar -> defcustom.
4947         * autorevert.el: Update `Commentary' section.
4949 2004-05-30  Juanma Barranquero  <lektu@terra.es>
4951         * dos-fns.el (convert-standard-filename):
4952         * files.el (convert-standard-filename):
4953         * w32-fns.el (convert-standard-filename):
4954         Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
4956 2004-05-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
4958         Sync with Tramp.
4960         * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
4961         (tramp-let-maybe): Move to an earlier spot in the file.
4962         Patch by Andreas Schwab.
4964 2004-05-30  Andreas Schwab  <schwab@suse.de>
4966         * dired.el (dired-get-filename): Don't use dired-re-dot.
4968 2004-05-30  Richard M. Stallman  <rms@gnu.org>
4970         * files.el (find-file): Doc fix.
4972         * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
4974 2004-05-30  Nick Roberts  <nickrob@gnu.org>
4976         * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
4977         (gdb-locals-mode, gdb-frame-handler): Display current frame in the
4978         modeline of the locals buffer.
4979         (gdb-goto-breakpoint): Handle gdbmi.
4980         (gdb-get-frame-number): Change for gdbmi.
4982 2004-05-30  Michael Albinus  <michael.albinus@gmx.de>
4984         * files.el (file-remote-p): Apply file name handler for operation
4985         `file-remote-p'.  It isn' a property any longer.
4986         (file-relative-name): `fh' and `fd' get the required value via
4987         `find-file-name-handler' already.
4989         * ange-ftp.el (ange-ftp-file-remote-p): New defun.
4990         (top): Remove setting of `file-remote-p' property for
4991         `ange-ftp-hook-function'.  Add `ange-ftp' property to `file-remote-p'.
4993 2004-05-29  Michael Albinus  <michael.albinus@gmx.de>
4995         Version 2.0.41 of Tramp released.
4997         * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
4998         Throw away if process has died.
4999         Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
5000         (tramp-out-of-band-prompt-regexp): Rename to
5001         `tramp-process-alive-regexp', because its usage is widen.
5002         (tramp-actions-copy-out-of-band): Apply it.
5003         (tramp-actions-before-shell, tramp-multi-actions):
5004         Add `tramp-action-process-alive' action.
5005         (tramp-action-process-alive): New defun.
5006         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
5007         Add entry for `file-remote-p'.
5008         (tramp-handle-file-remote-p): New defun.
5009         (top): Remove setting of `file-remote-p'.  Don't set
5010         `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
5012         * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
5013         `file-remote-p'.
5015         * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
5016         counted for (last) line.  [They should or they shouldn't?  --Stef]
5017         Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
5019 2004-05-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
5021         * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
5022         not really necessary but seems to keep the shell history smaller
5023         in some cases.  It is no substitute for setting HISTFILE and
5024         HISTSIZE from tramp-open-connection-setup-interactive-shell,
5025         though.  Suggested by Luc Teirlinck.
5026         (tramp-open-connection-setup-interactive-shell): Export variables
5027         HISTFILE and HISTSIZE, do not just set them.  From Luc Teirlinck.
5028         (tramp-set-process-query-on-exit-flag): New compat function.
5029         (tramp-open-connection-multi, tramp-open-connection-su)
5030         (tramp-open-connection-rsh, tramp-open-connection-telnet)
5031         (tramp-do-copy-or-rename-file-out-of-band): Use it.
5032         (tramp-let-maybe): New macro, let-binds a variable only if it
5033         isn't obsolete.
5034         (tramp-check-ls-commands, tramp-handle-expand-file-name)
5035         (tramp-handle-file-truename): Use it.
5036         (tramp-completion-file-name-regexp-unified): Avoid matching
5037         filenames starting with "/:" -- those are reserved for
5038         file-name-non-special.
5040         * tramp-smb.el (tramp-smb-open-connection):
5041         Use tramp-set-process-query-on-exit-flag compat function.
5043 2004-05-29  Richard M. Stallman  <rms@gnu.org>
5045         * net/browse-url.el (browse-url-interactive-arg): Doc fix.
5047         * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
5048         (eval-last-sexp-print-value): Print char equivalent regardless
5049         of standard-output value.
5051         * thumbs.el (thumbs-subst-char-in-string): Delete.
5052         (thumbs-thumbname): Use subst-char-in-string.
5053         (thumbs-resize-image): Use condition-case, not ignore-errors.
5054         (thumbs-kill-buffer): Likewise.
5056         * thumbs.el: Don't include cl.  Don't bother with old Emacs versions.
5057         (thumbs-mode): Make buffer read-only.
5058         (thumbs-make-thumb): Unconditionally accept an existing file.
5059         (thumbs-insert-thumb): Add thumb-image-file property to the image.
5060         (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
5061         (thumbs-show-thumbs-list): Error if images not supported.
5062         (thumbs-save-current-image): Improve prompt string.
5063         (thumbs-mode-map): Define u, R, x.
5064         (thumbs-unmark): New command.
5065         (thumbs-emboss-image): Minor cleanup.
5066         (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
5067         (thumbs-rename-images): New command.
5068         (thumbs-show-image-num): Rewrite.  Don't rename the buffer.
5070         * thumbs.el (thumbs-current-image): New function.
5071         (thumbs-file-list, thumbs-file-alist): New functions.
5072         (thumbs-find-image): Delete arg L.
5073         Don't set up thumbs-fileL as buffer-local global var.
5074         (thumbs-find-image-at-point): Use thumbs-current-image.
5075         (thumbs-set-image-at-point-to-root-window): Likewise.
5076         (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
5077         Record and warn about errors.  Update thumbs-markedL for deletions.
5078         (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
5079         (thumbs-redraw-buffer): Use thumbs-file-list.
5080         (thumbs-mark): Use thumbs-current-image.
5081         (thumbs-show-name): Use thumbs-current-image.
5083         * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
5084         and imenu--last-menubar-index-alist.
5086         * subr.el (with-selected-window): Undo previous change.
5088 2004-05-29  John Paul Wallington  <jpw@gnu.org>
5090         * thumbs.el (thumbs-show-name): Do nothing if no image at point.
5091         (thumbs-mouse-find-image): New command.
5092         (thumbs-mode-map): Bind it to mouse-2.
5093         (thumbs-mode): Make mode-class special.
5094         (thumbs-view-image-mode): Likewise.
5096 2004-05-29  Pavel Kobiakov  <pk_at_work@yahoo.com>
5098         * flymake.el: New file.
5100 2004-05-28  Luc Teirlinck  <teirllm@auburn.edu>
5102         * files.el (find-file-noselect-1): Do not bind
5103         `inhibit-read-only' to t during execution of
5104         `find-file-not-found-functions'.
5106 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5108         * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
5109         * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
5111 2004-05-28  Juri Linkov  <juri@jurta.org>
5113         * simple.el (eval-expression-print-format): New fun.
5115         * simple.el (eval-expression):
5116         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
5117         * emacs-lisp/edebug.el (edebug-compute-previous-result)
5118         (edebug-eval-expression): Print additionally the value returned by
5119         `eval-expression-print-format'.
5121         * emacs-lisp/lisp.el (insert-pair-alist): New var.
5122         (insert-pair): Make arguments optional.  Find character pair
5123         from `insert-pair-alist' according to the last input event.
5124         (insert-parentheses): Make arguments optional.
5125         (raise-sexp, delete-pair): New funs.
5127         * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
5128         (emacs-lisp-mode-map, lisp-interaction-mode-map):
5129         Bind C-M-q to `indent-pp-sexp'.
5131         * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
5132         `pp-to-string' modified to be able to format text with newlines.
5133         (pp-to-string): Move the buffer-formatting part of the code to
5134         `pp-buffer'.  Call `pp-buffer'.
5136         * info.el (Info-desktop-buffer-misc-data): Don't save information
5137         about virtual files.
5138         (Info-restore-desktop-buffer): Restore Info buffers in prepared
5139         buffers with names obtained from the desktop file instead of the
5140         default *info* buffer.
5142 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5144         * subr.el (with-selected-window): Only save/restore the selected window.
5146         * progmodes/compile.el (compilation-error-regexp-alist):
5147         Use expand-file-name and data-directory.
5149         * progmodes/grep.el (grep-tree): Rework previous fix.
5151         * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
5152         after the user marked text with the mouse.
5154         * startup.el (command-line): Keep the first regexp of
5155         auto-save-file-name-transforms intact.
5157 2004-05-28  Juanma Barranquero  <lektu@terra.es>
5159         * cus-edit.el (customize-face, customize-face-other-window)
5160         (custom-face-edit-delete): Make arguments match their use in
5161         docstring.
5162         (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
5163         docstring.
5165         * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
5166         not `cvs-butlast'.
5168         * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
5169         `nbutlast' are in subr.el).
5171         * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
5172         (set-w32-system-coding-system): Doc fixes.
5174         * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
5175         (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
5176         Make arguments match their use in docstring.
5177         (artist-draw-region-trim-line-endings)
5178         (artist-mouse-choose-operation): Fix typo in docstring.
5179         (artist-key-set-point-common): Doc fix.
5181 2004-05-28  Simon Josefsson  <jas@extundo.com>
5183         * mail/smtpmail.el (smtpmail-open-stream):
5184         Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
5186 2004-05-26  Simon Josefsson  <jas@extundo.com>
5188         * starttls.el: Merge with my GNUTLS based starttls.el.
5189         (starttls-gnutls-program, starttls-use-gnutls)
5190         (starttls-extra-arguments, starttls-process-connection-type)
5191         (starttls-connect, starttls-failure, starttls-success): New variables.
5192         (starttls-program, starttls-extra-args): Doc fix.
5193         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
5194         (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
5195         and pass on to corresponding *-gnutls function if it is set.
5197 2004-05-27  Luc Teirlinck  <teirllm@auburn.edu>
5199         * autorevert.el (auto-revert-handler): Disable auto-reverting of
5200         remote files.
5202 2004-05-27  Michael Albinus  <michael.albinus@gmx.de>
5204         * files.el (file-name-non-special): There are more operations
5205         which need handling: `find-backup-file-name',
5206         `insert-file-contents', `verify-visited-file-modtime',
5207         `write-region'.  Rename t value of method to `add'.  Add new
5208         methods `quote' and `unquote-then-quote' to file-arg-indices.
5210 2004-05-25  Juri Linkov  <juri@jurta.org>
5212         * info.el (Info-toc): Call Info-mode on intermediate buffer.
5213         (Info-index-nodes): Enclose code in condition-case to catch errors.
5214         (Info-index-node): Don't search all index nodes if request is only
5215         for the current node and file is not in the cache of index nodes.
5216         (Info-mode-map): Bind Info-copy-current-node-name to `w'
5217         for consistency with dired-copy-filename-as-kill.
5218         Bind `S' to Info-search-case-sensitively.
5219         (Info-copy-current-node-name): New arg.  With zero prefix arg put
5220         the name inside a function call to `info'.  Display copied text in
5221         the echo area.
5223 2004-05-25  Sam Steingold  <sds@gnu.org>
5225         * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
5226         strip the package prefix from the symbol name, if any.
5227         Make it the `find-tag-default-function' for `lisp-mode'.
5229 2004-05-25  John Paul Wallington  <jpw@gnu.org>
5231         * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
5232         instead of obsolete `process-kill-without-query'.
5234         * textmodes/texinfmt.el (texinfo-indexvar-alist):
5235         Declare as variable, not constant.
5237 2004-05-25  Luc Teirlinck  <teirllm@auburn.edu>
5239         * files.el (find-file-noselect-1): Fix bug introduced by
5240         Revision 1.694.  As a side effect, `inhibit-read-only'
5241         is again, by default, t during execution of
5242         `find-file-not-found-functions'.
5243         (insert-directory): Check that lines were really inserted by
5244         the --dired switch, before erasing them.
5246 2004-05-24  Nick Roberts  <nickrob@gnu.org>
5248         * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
5249         (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
5250         (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
5251         (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
5252         gud-minor-mode (gdbmi).
5254 2004-05-24  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
5256         * net/browse-url.el (browse-url-interactive-arg): Enable user to
5257         explicitly select the text to be taken as URL.
5259 2004-05-23  Juri Linkov  <juri@jurta.org>
5261         * info.el (Info-index-nodes): New var and fun.
5262         (Info-goto-index, Info-index, info-apropos)
5263         (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
5264         (Info-index): Fix docstring.  Store and restore Info-history-list.
5265         (Info-complete-nodes): New var.
5266         (Info-complete-menu-item): Use it.
5267         (Info-index-node): New fun.
5268         (Info-final-node, Info-forward-node, Info-backward-node)
5269         (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
5270         Use Info-index-node.
5271         (Info-extract-menu-item, Info-extract-menu-counting): Set second
5272         arg of `Info-extract-menu-node-name' to non-nil for index nodes.
5273         (Info-find-node-2): If a node with period in its name not found,
5274         try to find a node without the name part after period.
5275         (Info-select-node): Call Info-fontify-node only if
5276         Info-fontify-maximum-menu-size is not nil.
5277         (info-apropos): Set Info-fontify-maximum-menu-size to nil.
5278         (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
5279         Preserve Info-history-list.
5280         (Info-toc): Set Info-current-file.
5281         (Info-build-toc): Move point to the beginning of the buffer.
5282         Add main-file variable.
5283         (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
5284         Use backslashed representation of the control character ^_.
5286         * textmodes/texinfmt.el (texinfo-print-index): Print index line
5287         numbers in the new Texinfo 4.7 format.
5289         * add-log.el (change-log-font-lock-keywords): Remove `:' from
5290         regexps for function and variable names.
5292         * descr-text.el (describe-property-list): Add [show] button for
5293         `syntax-table' property with action to pp to a separate buffer.
5294         (describe-char): Replace search-forward by re-search-forward with
5295         whitespace regexp after "character:" to not fail in too narrow windows.
5297         * simple.el (next-error-find-buffer): Add a rule to return
5298         next-error capable buffer if one window on the selected frame
5299         displays such buffer.
5301 2004-05-23  Nick Roberts  <nickrob@gnu.org>
5303         * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
5304         (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
5305         (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
5306         (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
5307         (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
5308         Handle new value for gud-minor-mode (gdbmi).
5309         (gdb-buffer-type, gdb-input-queue, gdb-prompting)
5310         (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
5311         Change from local to global gdb variable set.
5312         (gdb-ann3): Initialise above gdb variable set.
5313         (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
5314         (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
5315         (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
5316         (gdb-stopped, gdb-post-prompt, gdb-concat-output)
5317         (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
5318         (gdb-info-locals-handler, gdb-invalidate-assembler)
5319         (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
5320         set as global variables.
5321         (gdb-get-create-buffer): Don't make gud-comint buffer-local.
5322         Handle gdbmi.
5323         (gdb-info-breakpoints-custom): Fix regexp.
5324         (def-gdb-var): Delete.
5326         * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
5327         (gud-speedbar-buttons, gud-sentinel, gud-display-line)
5328         (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
5329         a new mode.  The file (gdb-mi.el) for this mode will be included
5330         with the GDB distribution (6.2 onwards) and will use GDB/MI as its
5331         primary interface.
5333 2004-05-23  Jesper Harder  <harder@ifa.au.dk>
5335         * progmodes/grep.el (grep-tree): Ensure that DIR argument is
5336         interpreted as a directory.
5338 2004-05-22  Richard M. Stallman  <rms@gnu.org>
5340         * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
5341         as a close quote.
5343         * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
5345         * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
5346         Use assoc-string, not assoc-ignore-case.
5348         * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
5350         * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
5351         If moving back then fwd gets a defun that ends before point,
5352         try again moving fwd then back.
5354         * files.el (file-name-non-special): Allow t in file-arg-indices
5355         to mean requote the return value.  Use `identity' as an element
5356         rather than as the whole value.
5358         * gs.el (gs-options): Add -dSAFER.  Mark it risky.
5360 2004-05-22  Juanma Barranquero  <lektu@terra.es>
5362         * help-fns.el (help-add-fundoc-usage): Use %S only for output of
5363         `help-make-usage'.
5364         (help-highlight-arguments): Skip function name before searching
5365         for arguments.
5367 2004-05-21  Juanma Barranquero  <lektu@terra.es>
5369         * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
5370         Don't mention in the docstring these arguments meant for
5371         internal (recursive) use only.
5372         (allout-char-spec): Comment out (it's not implemented).
5373         (allout-old-expose-topic, allout-exposure): Fix docstring and add
5374         obsolescence declaration.
5375         (allout-flatten-exposed-to-buffer)
5376         (allout-indented-exposed-to-buffer): Fix typos in docstring.
5377         (my-mark-marker): Doc fix.
5378         (produce-allout-mode-map, allout-sibling-index)
5379         (allout-isearch-expose, allout-distinctive-bullet)
5380         (allout-open-topic, allout-reindent-body)
5381         (allout-rebullet-heading, allout-process-exposed)
5382         (allout-insert-listified, allout-latex-verb-quote)
5383         (allout-insert-latex-header, allout-insert-latex-trailer):
5384         Make arguments match their use in docstring.
5385         (allout-primary-bullet, allout-old-style-prefixes)
5386         (allout-inhibit-protection, allout-init, allout-mode)
5387         (allout-before-change-protect, allout-flag-region):
5388         Use "Emacs" instead of "emacs" in docstrings.
5390 2004-05-21  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
5392         * international/characters.el: Modify syntax of more characters.
5394 2004-05-21  Masatake YAMATO  <jet@gyve.org>
5396         * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
5397         (etags-tags-completion-table): Show parsing progress.
5399 2004-05-20  Luc Teirlinck  <teirllm@auburn.edu>
5401         * locate.el (locate-prompt-for-command): Shorten first line of
5402         docstring.
5403         (locate-mode): Expand docstring and include keymap summary.
5405         * files.el (find-file-noselect-1): Limit the scope of the
5406         `inhibit-read-only' binding.  Make sure that `inhibit-read-only'
5407         is, by default, nil during the execution of
5408         `find-file-not-found-functions' and `find-file-hook'.
5410 2004-05-20  Michael Mauger  <mmaug@yahoo.com>
5412         * facemenu.el (facemenu-color-name-equal): New function.
5413         (list-colors-display): Use it to compare colors instead of
5414         facemenu-color-equal.
5416 2004-05-20  Dan Nicolaescu  <dann@ics.uci.edu>
5418         * compare-w.el (compare-windows-face): Use min-colors instead of
5419         checking for tty or pc types.
5421 2004-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5423         * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
5424         (completion-setup-function): Use with-current-buffer.
5425         Properly save excursion.  Simplify.
5426         Don't assume there is necessarily a `mouse-face' property somewhere.
5428         * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
5430         * progmodes/gdb-ui.el (gdb-reset): Use unless.  Fix regexp.
5432         * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
5433         (byte-compile-log-1): Don't call (byte-goto-log-buffer).
5434         Use with-current-buffer.
5435         (byte-goto-log-buffer): Delete.
5436         (byte-compile-log-file): Call compilation-forget-errors.
5438 2004-05-19  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
5440         * net/ldap.el (ldap-search-internal): Avoid mixing standard error
5441         output messages into the search result.
5443 2004-05-19  Masatake YAMATO  <jet@gyve.org>
5445         * wid-edit.el (widget-radio-button-notify): Revert my last
5446         change.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5448 2004-05-19  Kenichi Handa  <handa@m17n.org>
5450         * international/characters.el: Fix syntax (open/close) of CJK chars.
5452 2004-05-18  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
5454         * help-mode.el (help-go-back): Don't depend on position of back button.
5456 2004-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5458         * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
5459         files files don't contain an accidental additional /.
5461         * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
5462         in source buffer.
5464 2004-05-18  Masatake YAMATO  <jet@gyve.org>
5466         * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
5467         to widget-apply.  :action method assumes 2 arguments, not 3.
5469 2004-05-17  Glenn Morris  <gmorris@ast.cam.ac.uk>
5471         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
5472         New constants.
5473         (hs-special-modes-alist): Add an f90-mode entry.
5475 2004-05-17  Sam Steingold  <sds@gnu.org>
5477         * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
5478         Indent "without-" forms just like "with-" and "do-".  Use regexp-opt.
5480 2004-05-16  Kim F. Storm  <storm@cua.dk>
5482         * emacs-lisp/timer.el (timer-event-handler): Fix last change.
5484 2004-05-15  John Wiegley  <johnw@newartisans.com>
5486         * eshell/esh-io.el (eshell-get-target): Whitespace changes.
5487         (eshell-output-object-to-target): Improve output speed 20% by not
5488         calling `eshell-stringify' if something is already known to be a string.
5490 2004-05-15  Alex Ott  <ott@jet.msk.su>
5492         * textmodes/ispell.el (ispell-local-dictionary-alist):
5493         Add windows-1251 to the choice of coding systems.
5494         (ispell-dictionary-alist-6): Add support for "russianw.aff",
5495         encoded in cp1251.
5497 2004-05-15  Dan Nicolaescu  <dann@ics.uci.edu>
5499         * progmodes/compile.el (compilation-warning-face)
5500         (compilation-info-face): Use min-colors.
5502 2004-05-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5504         * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
5505         * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
5506         * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
5507         * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
5508         * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
5509         * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
5510         * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
5511         * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
5512         * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
5513         * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
5514         * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
5515         * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
5516         * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
5517         * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
5519 2004-05-15  Kim F. Storm  <storm@cua.dk>
5521         * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
5522         Use it to set triggered-p element of timer.
5523         (timer-event-handler): Set triggered-p element non-nil while running
5524         the timer function.
5526 2004-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5528         * descr-text.el (describe-char-unicode-data)
5529         (describe-char-unicodedata-file): Re-enable the unicode code now that
5530         the licensing issues have been cleared in the unicode-4 license.
5531         (describe-text-properties-1): Remove unused `overlay' var.
5532         (describe-char): Remove unused var `buffer'.
5534 2004-05-14  David Ponce  <david@dponce.com>
5536         * tree-widget.el: New file.
5538 2004-05-13  Marcelo Toledo  <marcelo@marcelotoledo.org>
5540         * language/european.el ("Brazilian Portuguese"): Add support for
5541         Brazilian Portuguese.
5543 2004-05-13  John Wiegley  <johnw@newartisans.com>
5545         * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
5546         `recentf-mode' if this variable has been customized to t.
5548         * eshell/esh-test.el (eshell-test): Call the function
5549         `emacs-version' rather than trying to build a custom version string.
5551 2004-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5553         * net/telnet.el (telnet-mode): Use define-derived-mode.
5554         Don't modify the global value of comint-prompt-regexp.
5556 2004-05-13  John Paul Wallington  <jpw@gnu.org>
5558         * version.el (emacs-version): Check for `gtk' feature before
5559         `x-toolkit' feature.
5561 2004-05-13  Juanma Barranquero  <lektu@terra.es>
5563         * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
5564         arguments in the docstring, they're used only in recursive calls.
5566         * help-fns.el (help-arg-highlighting-function)
5567         (help-argument-name): Delete.
5568         (help-default-arg-highlight): New function.
5569         (help-do-arg-highlighting): Use it.
5571 2004-05-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
5573         * calendar/appt.el (appt-disp-window):
5574         Use `calendar-set-mode-line' for a centered mode-line.
5576 2004-05-13  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
5578         * calendar/appt.el (appt-disp-window): Do not split window
5579         excessively when `split-height-threshold' is low.
5581 2004-05-12  Nick Roberts  <nickrob@gnu.org>
5583         * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
5584         kill-buffer-hook here and make it local.
5585         (gud-kill-buffer-hook): Use kill-process for a sure kill.
5587 2004-05-12  Daniel Pfeiffer  <occitan@esperanto.org>
5589         * progmodes/compile.el (compilation-set-window-height):
5590         Use save-excursion to protect against misplaced marker.
5592 2004-05-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5594         * custom.el (defface): Document that type can have value gtk.
5596         * faces.el (face-spec-set-match-display): Handle type gtk in display.
5598 2004-05-12  Kenichi Handa  <handa@m17n.org>
5600         * descr-text.el: Require quail at comile time.
5601         (describe-char): If an input method is on and it supports the
5602         character, show how to input it.
5604         * international/quail.el (quail-install-decode-map): Accept a
5605         char-table whose subtype is `quail-decode-map'.
5606         (quail-store-decode-map-key, quail-gen-decode-map1)
5607         (quail-gen-decode-map, quail-find-key1, quail-find-key)
5608         (quail-show-key): New functions.
5610 2004-05-12  Juanma Barranquero  <lektu@terra.es>
5612         * generic.el (define-generic-mode): Remove redundant arglist info.
5614         * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
5615         Make arguments match their use in docstring.
5616         (help-arg-highlighting-function): New variable.
5617         (help-argument-name): Mention it in the docstring.
5618         (help-do-arg-highlight): Use it.  Expand regexp to accept also
5619         ARG-xxx and xxx-ARG references.
5621 2004-05-11  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
5623         * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
5624         parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
5625         and "mailto:addr1?to=addr2" equal.
5627 2004-05-11  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
5629         * man.el (Man-getpage-in-background): Use shell-file-name
5630         and shell-command-switch variables instead of hard-coded values.
5632 2004-05-11  Eli Zaretskii  <eliz@gnu.org>
5634         * iimage.el: New file.
5636 2004-05-11  Juanma Barranquero  <lektu@terra.es>
5638         * custom.el (custom-initialize-default, defcustom):
5639         Fix typo in docstring.
5641         * files.el (set-visited-file-name, file-expand-wildcards):
5642         Fix docstring.
5644 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5646         * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
5648         * subr.el (eventp): Be more discriminating with integers.
5650 2004-05-10  Daniel Pfeiffer  <occitan@esperanto.org>
5652         * progmodes/compile.el (compile): Add universal prefix arg.
5653         (compilation-error-regexp-alist-alist): Add edg patterns.
5655 2004-05-10  Sam Steingold  <sds@gnu.org>
5657         * textmodes/ispell.el (ispell-message):
5658         Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
5660 2004-05-10  Dave Love  <fx@gnu.org>
5662         * progmodes/python.el (help-buffer): Autoload when compiling.
5663         (python-after-info-look): Don't assume Info-goto-node returns non-nil.
5664         (run-python): Prepend to any existing PYTHONPATH.
5666 2004-05-10  Nick Roberts  <nick@nick.uklinux.net>
5668         * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
5669         for pending breakpoints.
5671 2004-05-10  Richard M. Stallman  <rms@gnu.org>
5673         * mail/unrmail.el (unrmail): Mostly rewritten.  Parses the file
5674         directly without calling any functions in Rmail.
5675         (unrmail-unprune): Function deleted.
5677 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5679         * progmodes/python.el (inferior-python-mode-map): Remove erroneous
5680         C-c C-z binding.
5682 2004-05-10  Kenichi Handa  <handa@m17n.org>
5684         * descr-text.el (describe-char): Fix previous change.  Don't make
5685         a unibyte character to multibyte in the *Help* buffer.
5687 2004-05-10  Miles Bader  <miles@gnu.org>
5689         * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
5690         buffer an error if the debugger process is actually running.
5692 2004-05-10  Juanma Barranquero  <lektu@terra.es>
5694         * help-fns.el (help-argument-name): Default to italic.
5695         (help-highlight-arguments): Return always (usage . doc), even when
5696         usage is nil.
5698         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
5699         (define-ibuffer-filter): Add usage info.
5700         (define-ibuffer-op): Add usage info (but CL-style defaults for
5701         keyword args are not shown).
5703         * subr.el (remove-overlays, read-passwd): Fix docstring.
5704         (start-process-shell-command): Fix docstring.  Put usage info in a
5705         format usable by `describe-function'.
5706         (open-network-stream, open-network-stream-nowait)
5707         (open-network-stream-server): Fix docstring.
5709 2004-05-09  Jason Rumney  <jasonr@gnu.org>
5711         * international/code-pages (cp932, cp936, cp949, c950): Remove.
5712         Only define cp125* if windows-125* is already defined.
5714         * language/korean.el (cp949): Add alias.
5716         * language/chinese.el (cp936, cp950): Add aliases.
5718         * language/japanese.el (cp932): Add alias.
5720         * term/w32-win.el: Require code-pages.
5722         * international/mule-cmds.el (set-locale-environment):
5723         On MS-Windows use ansi code-page for default coding-systems.
5724         Set up paper sizes for Windows 3 letter languages.
5726         * international/code-pages.el (cp932, cp936, cp949, cp950):
5727         Add aliases.  Also add cp125* if not already defined.
5729 2004-05-09  Juanma Barranquero  <lektu@terra.es>
5731         * help-fns.el (help-highlight-arguments): Don't try to highlight
5732         missing or autoloaded arglists.  Accept structured arguments, like
5733         the first ones of `do' and `flet'.
5735         * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
5736         (cvs-get-marked): Remove redundant arglist info.
5738         * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
5739         Don't use CL-style default args.
5741 2004-05-08  Andreas Schwab  <schwab@suse.de>
5743         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
5745         * international/subst-ksc.el: Fix references to utf-translate-cjk
5746         into utf-translate-cjk-mode.
5747         * international/subst-big5.el: Likewise.
5748         * international/subst-gb2312.el: Likewise.
5749         * international/subst-jis.el: Likewise.
5750         * international/utf-16.el: Likewise.
5751         * international/utf-8.el: Likewise.
5753 2004-05-08  John Wiegley  <johnw@newartisans.com>
5755         * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
5756         "virtual buffers" (off by default), which makes it possible to
5757         switch to the "virtual" buffers of recently visited files.  When a
5758         buffer name search fails, and this option is on, iswitchb will
5759         look at the list of recently visited files, and permit matching
5760         against those names.  When the user hits RET on a match, it will
5761         revisit that file.
5762         (iswitchb-read-buffer): Add two optional arguments, which makes
5763         isearchb.el possible.
5764         (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
5765         (iswitchb-next-match): Add support for virtual buffers.
5767         * isearchb.el: This module extends iswitchb to provide "as you
5768         type" buffer selection.
5770         * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
5771         Ignore the read-only property when flyspell highlighting is on.
5772         Not ignoring it leads to a series of confusing errors.
5773         (flyspell-highlight-duplicate-region): Ignore read-only, as above,
5774         but also make sure to call flyspell-incorrect-hook.
5775         (flyspell-maybe-correct-transposition): Perform transposition test
5776         by bit twiddling a string, rather than using a temp buffer.
5777         (flyspell-maybe-correct-doubling): Use a string rather than a temp
5778         buffer.  This is also the original version of the code, which
5779         could not be checked in before due to a previous lack of
5780         assignment papers.  This version has seen heavy usage on my system
5781         for several years now.
5783         * calendar/cal-bahai.el: New file, which adds support for the
5784         Baha'i calendar to Emacs.  This calendar is based on a solar year
5785         of 19 months of 19 days, with 4 intercalary days.  Each year
5786         begins on March 21, with the calendar starting in 1844.
5788         * calendar/cal-menu.el, calendar/calendar.el,
5789         calendar/diary-lib.el, calendar/holidays.el: Added support for
5790         using cal-bahai.el.
5792         * eshell/em-glob.el (eshell-glob-initialize): Move initialization
5793         of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
5794         function can be used outside of eshell buffers.
5795         (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
5797 2004-05-08  Juanma Barranquero  <lektu@terra.es>
5799         * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
5800         word constituent so FOO-ARG is not recognized as an arg.
5801         (help-highlight-arguments): Don't skip lists in mandatory arguments.
5803         * simple.el (next-error): Fix typo in docstring.
5804         (open-line): Make argument names match their use in docstring.
5805         (split-line): Fix docstring.
5807         * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
5808         usable by `describe-function'.
5809         (gensym, gentemp, typep, ignore-errors): Make argument names match
5810         their use in docstring.
5812         * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
5813         argument to `help-setup-xref'.
5815 2004-05-07  Kai Grossjohann  <kai@emptydomain.de>
5817         Version 2.0.40 of Tramp released.
5819         * net/tramp.el (tramp-completion-mode, tramp-md5-function):
5820         Use symbol-function to invoke functions only known on some Emacs
5821         flavors.  This avoids byte-compiler warnings.  Reported by Kevin
5822         Scaldeferri <kevin@scaldeferri.com>.
5823         (tramp-do-copy-or-rename-file-via-buffer): Rename from
5824         tramp-do-copy-or-rename-via-buffer (without `file'), to make it
5825         consistent with the other tramp-do-* functions.
5826         (tramp-do-copy-or-rename-file): Calls adjusted.
5827         (tramp-process-initial-commands): Avoid liveness check on shell --
5828         we know that it must be alive since we're opening a connection at
5829         this moment.
5830         (tramp-last-cmd): New internal variable.
5831         (tramp-process-echoes): New tunable.
5832         (tramp-send-command): Set tramp-last-cmd.
5833         (tramp-wait-for-output): Delete echo, if applicable.
5834         (tramp-read-passwd): Construct the key for the password cache in a
5835         way that works for multi methods, too.
5836         (tramp-bug): Add backup-directory-alist and
5837         bkup-backup-directory-info to bug reports, with Tramp counterparts.
5839 2004-05-07  Michael Albinus  <michael.albinus@gmx.de>
5841         * net/tramp*.el: Suppress byte-compiler warnings where possible.
5843         * net/tramp.el (tramp-out-of-band-prompt-regexp)
5844         (tramp-actions-copy-out-of-band): New defcustoms.
5845         (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
5846         used instead of a synchronous one.  Allows password entering.
5847         (tramp-action-out-of-band): New defun.
5848         (tramp-open-connection-rsh, tramp-method-out-of-band-p):
5849         Remove restriction with password from doc string.
5850         (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
5851         `tramp-out-of-band-prompt-regexp',
5852         `tramp-actions-copy-out-of-band', `password-cache' and
5853         `password-cache-expiry'.
5854         (toplevel): Remove todo item wrt ssh-agent.  Obsolete due to
5855         password caching.
5856         (tramp-touch): FILE can be a local file, too.
5857         (TODO): Remove items done.
5858         (tramp-handle-insert-directory): Properly quote file name also if
5859         not full-directory-p.  Handle wildcard case.  Reported by Andreas
5860         Schwab <schwab@suse.de>.
5861         (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
5862         new file.
5863         (tramp-handle-file-local-copy, tramp-handle-write-region):
5864         The permissions of the temporary file are set if filename exists.
5865         Reported by Ted Stern <stern@cray.com>.
5866         (tramp-backup-directory-alist)
5867         (tramp-bkup-backup-directory-info): New defcustoms.
5868         (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
5869         (tramp-handle-find-backup-file-name): New function.
5870         Implements Tramp's find-backup-file-name.
5872         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
5873         for `find-backup-file-name'.
5875         * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
5876         ("file" -> "filename").  Reported by Kim F. Storm <storm@cua.dk>.
5878 2004-05-07  Lars Hansen  <larsh@math.ku.dk>
5880         * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
5882 2004-05-07  Juanma Barranquero  <lektu@terra.es>
5884         * subr.el (lambda): Add arglist description to docstring.
5885         (declare): Fix typo in docstring.
5886         (open-network-stream): Fix docstring.
5887         (process-kill-without-query): Fix docstring and add obsolescence info.
5888         (last, butlast, nbutlast): Make arguments match their use in docstring.
5889         (insert-buffer-substring-no-properties): Likewise.
5890         (insert-buffer-substring-as-yank): Likewise.
5891         (split-string): Fix docstring.
5893         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5894         Make argument names match their use in docstring.
5896         * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
5898 2004-05-06  Nick Roberts  <nickrob@gnu.org>
5900         * progmodes/gdb-ui.el: Improve/extend documentation strings.
5901         Fit first sentence on one line for apropos-command.
5903 2004-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5905         Changes largely merged in from Dave Love's code.
5906         * progmodes/python.el: Doc fixes.
5907         (python-mode-map): Add python-complete-symbol.
5908         (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
5909         (python-comment-indent, python-complete-symbol)
5910         (python-symbol-completions, python-partial-symbol)
5911         (python-try-complete): New.
5912         (python-indent-line): Remove optional arg.  Use python-block-end-p.
5913         (python-check): Bind compilation-error-regexp-alist.
5914         (inferior-python-mode): Use rx.  Move keybindings to top level.
5915         Set comint-input-filter.
5916         (python-preoutput-filter): Use rx.
5917         (python-input-filter): Re-introduce.
5918         (python-proc): Start new process if necessary.
5919         Check python-buffer non-nil.
5920         (view-return-to-alist): Defvar.
5921         (python-send-receive): New.
5922         (python-eldoc-function): Use it.
5923         (python-mode-running): Don't defvar.
5924         (python-mode): Set comment-indent-function.
5925         Maybe update hippie-expand-try-functions-list.
5926         (python-indentation-levels): Initialize differently.
5927         (python-block-end-p): New.
5928         (python-indent-line): Use it.
5929         (python-compilation-regexp-alist): Augment.
5930         (run-python): Import `emacs' module to Python rather than loading
5931         code directly.  Set python-buffer differently.
5932         (python-send-region): Use emacs.eexecfile.  Fix orig-start calculation.
5933         Use python-proc.
5934         (python-send-command): Go to end of comint buffer.
5935         (python-load-file): Use python-proc, emacs.eimport.
5936         (python-describe-symbol): Simplify interactive form.
5937         Use emacs.help.  Do use temp-buffer-show-hook.
5938         Call print-help-return-message.
5939         (hippie-exp): Require when compiling.
5940         (python-preoutput-continuation): Use rx.
5942         * diff-mode.el (diff-make-unified): Fix regexp.
5944 2004-05-06  Romain Francoise  <romain@orebokech.com>  (tiny change)
5946         * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
5947         filter groups from the buffer when rebuilding the Ibuffer buffer
5948         and `ibuffer-show-empty-filter-groups' is nil.
5950 2004-05-06  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
5952         * ps-print.el (ps-print-quote): Call ps-value-string.
5953         (ps-setup): Call ps-comment-string.
5954         (ps-value-string, ps-comment-string): New funs.
5956 2004-05-06  Juanma Barranquero  <lektu@terra.es>
5958         * ehelp.el (electric-help-command-loop): Check whether the last
5959         character is visible, not (point-max).
5961         * help-fns.el (help-argument-name): Default to bold; don't inherit
5962         from font-lock-variable-name-face.
5963         (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
5965 2004-05-05  Kenichi Handa  <handa@m17n.org>
5967         * descr-text.el (describe-char): Copy the character with text
5968         properties and overlays into the first line, and call
5969         describe-text-properties on it.
5971 2004-05-05  Stephen Eglen  <stephen@anc.ed.ac.uk>
5973         * iswitchb.el (iswitchb-global-map): Fix typo.
5974         Remove unwanted ###autoloads from source file.
5976 2004-05-05  Lars Hansen  <larsh@math.ku.dk>
5978         * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
5979         in run-hooks.  Use substitute-command-keys in message.
5980         (wdired-abort-changes): Add message.
5982 2004-05-03  Michael Mauger  <mmaug@yahoo.com>
5984         * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
5985         (sql-emacs20-p): Remove.
5986         (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
5987         (sql-builtin-face, sql-doc-face): Remove.
5988         (sql-mode-ansi-font-lock-keywords)
5989         (sql-mode-oracle-font-lock-keywords)
5990         (sql-mode-postgres-font-lock-keywords)
5991         (sql-mode-linter-font-lock-keywords)
5992         (sql-mode-ms-font-lock-keywords)
5993         (sql-mode-mysql-font-lock-keywords): Use standard fonts.
5994         (sql-product-font-lock): Fix font-lock reset when font rules change.
5995         (sql-highlight-product): Remove incorrect font-lock reset logic.
5997 2004-05-04  Jonathan Yavner  <jyavner@member.fsf.org>
5999         * ses.el (ses-set-parameter): Fix typo.
6001 2004-05-04  Kim F. Storm  <storm@cua.dk>
6003         * ido.el (ido-read-internal): Fix call to read-file-name for edit.
6004         Must expand directory for completion to work; and don't mess with
6005         process-environment.
6006         (ido-read-file-name): If command has ido property, don't use ido
6007         if value is ignore, or read as directory if value is dir.
6008         Set ido ignore property for dired-do-rename command.
6010 2004-05-04  Juanma Barranquero  <lektu@terra.es>
6012         * ehelp.el (electric-help-command-loop, electric-help-undefined)
6013         (electric-help-help): Check against unmapped commands.
6015         * help-fns.el (help-argument-name): New face, inheriting from
6016         font-lock-variable-name-face, to highlight function arguments in
6017         `describe-function' and `describe-key'.
6018         (help-do-arg-highlight): Auxiliary function to highlight a given
6019         list of arguments in a string.
6020         (help-highlight-arguments): Highlight the function arguments and
6021         all uses of them in the docstring.
6022         (describe-function-1): Use it.  Do docstring output via `insert',
6023         not 'princ', so text attributes are preserved.
6025         * winner.el (winner-mode-map): Move `winner-undo' and
6026         `winner-redo' to C-c <left> and C-c <right>, respectively (the
6027         previous bindings conflict with `prev-buffer', `next-buffer').
6029 2004-05-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6031         * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
6032         (bibtex-entry-update): New command bound to C-c C-u.
6033         (bibtex-text-in-string): Fix regexp.
6034         (bibtex-assoc-of-regexp): Remove.
6035         (bibtex-progress-message): Fix docstring.
6036         (bibtex-inside-field): Use if.
6037         (bibtex-assoc-regexp): New function.
6038         (bibtex-format-entry): Make code more robust so that it formats
6039         also old entries.
6040         (bibtex-autokey-demangle-title): Merge with obsolete function
6041         bibtex-assoc-of-regexp.
6042         (bibtex-field-list): New function.
6043         (bibtex-entry): Use bibtex-field-list.
6044         (bibtex-parse-entry): Fix docstring.
6045         (bibtex-print-help-message): Use bibtex-field-list.
6046         (bibtex-make-field): Use bibtex-field-list.
6047         (bibtex-entry-index): Bugfix.  Return crossref key if required.
6048         (bibtex-lessp): Fix docstring.
6050 2004-05-03  Luc Teirlinck  <teirllm@auburn.edu>
6052         * select.el (xselect-convert-to-string): Move comment to intended line.
6054 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6056         * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
6057         cut/copy/paste in case menu-bar-enable-clipboard is in effect.
6059 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6061         * term/x-win.el (x-clipboard-yank): Don't exit on error from
6062         x-get-selection.
6064 2004-05-03  Jason Rumney  <jasonr@gnu.org>
6066         * makefile.nt: Remove.
6068 2004-05-03  Kim F. Storm  <storm@cua.dk>
6070         * emulation/cua-base.el (cua--update-indications): Fix last change.
6071         (cua-mode): Deactivate mark when cua-mode is enabled.
6073 2004-05-02  Luc Teirlinck  <teirllm@auburn.edu>
6075         * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
6077 2004-05-03  Nick Roberts  <nickrob@gnu.org>
6079         * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
6080         (gdb-display-source-buffer, gdb-put-breakpoint-icon)
6081         (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
6082         window over visible frames.
6083         (gdb-goto-breakpoint): Make buffer display file at breakpoint.
6085 2004-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6087         * progmodes/compile.el (compilation-gcpro): New var.
6088         (compilation-fake-loc): Use it.
6089         (compilation-forget-errors): Reset it.
6091 2004-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
6093         * diff-mode.el (diff-header-face, diff-file-header-face):
6094         Use min-colors.
6096 2004-05-02  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6098         * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
6099         (bibtex-clean-entry): Disentangle code.
6100         (bibtex-realign): New function.
6101         (bibtex-reformat): Use mapcar and bibtex-realign.  Do not use
6102         bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
6103         Remove undocumented optional arg called-by-convert-alien.
6104         (bibtex-convert-alien): Use bibtex-realign.  Use bibtex-reformat
6105         for sorting instead of bibtex-sort-buffer.
6107 2004-05-02  Eli Zaretskii  <eliz@gnu.org>
6109         * progmodes/compile.el (compilation-start): In the
6110         no-async-subprocesses branch, call sit-for to give redisplay a
6111         chance to show the updated process status in the mode line, and
6112         fontify the buffer explicitly after the process exits.
6114 2004-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6116         * progmodes/python.el (python-compilation-line-number): Remove.
6117         (python-compilation-regexp-alist): Don't use it any more.
6118         (python-orig-start, python-input-filter): Remove.
6119         (inferior-python-mode): Don't set up comint-input-filter-functions.
6120         (python-send-region): Use compilation-fake-loc.
6122         * progmodes/compile.el (compilation-messages-start): New var.
6123         (compilation-mode): Don't setup next-error-function here.
6124         (compilation-setup): Set it up here instead (for minor modes as well).
6125         Make compilation-messages-start buffer local.
6126         (compilation-next-error-function): Use it.
6127         (compilation-forget-errors): Set compilation-messages-start.
6129 2004-05-01  Luc Teirlinck  <teirllm@auburn.edu>
6131         * ielm.el (ielm-prompt-read-only): Update docstring.
6133         * comint.el (comint-prompt-read-only): Update docstring.
6134         (comint-update-fence, comint-kill-whole-line)
6135         (comint-kill-region): New functions.
6137         * simple.el (kill-whole-line): Use "p" instead of "P" in
6138         interactive form.
6140 2004-05-01  Juanma Barranquero  <lektu@terra.es>
6142         * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
6143         format arglist so default values in CL-style argument lists are
6144         correctly shown.
6146 2004-05-01  Jason Rumney  <jasonr@gnu.org>
6148         * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
6150 2004-05-01  Kenichi Handa  <handa@m17n.org>
6152         * international/titdic-cnv.el (miscdic-convert): Don't generate a
6153         quail file if it is up to date.
6155 2004-04-30  Juri Linkov  <juri@jurta.org>
6157         * cus-edit.el (custom-mode-map):
6158         Add key binding `C-x C-s' to `Custom-save'.
6160         * outline.el (outline-blank-line): New var.
6161         (outline-next-preface, outline-show-heading)
6162         (outline-end-of-subtree): Use it.
6164         * dired-aux.el (dired-touch-initial): New fun.
6165         (dired-do-chxxx): Call it for op-symbol `touch'.
6166         (dired-diff): Use `dired-dwim-target-directory'
6167         if current dired buffer has no buffer mark.
6169         * bindings.el (propertized-buffer-identification):
6170         Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
6171         Add C-M-arrow keys for consistency.
6173         * files.el (confirm-kill-emacs):
6174         Change group from top-level `emacs' to `convenience'.
6176         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
6177         Push mark on the first call of successive command calls.
6178         (insert-pair): New fun created from `insert-parentheses' with
6179         `open' and `close' arguments added.  Enclose active regions
6180         in paired characters.  Compare adjacent characters syntax with
6181         inserted characters syntax before inserting a space.
6182         (insert-parentheses): Call `insert-pair' with ?\( ?\).
6184         * delsel.el: Don't put `delete-selection' property
6185         on `insert-parentheses' symbol to take advantage of
6186         region handling in `insert-pair' function.
6187         Suggested by Stephan Stahl <stahl@eos.franken.de>.
6189 2004-04-30  Kim F. Storm  <storm@cua.dk>
6191         * emulation/cua-base.el: Add support for changing cursor types;
6192         based on patch from Michael Mauger.
6193         (cua-normal-cursor-color, cua-read-only-cursor-color)
6194         (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
6195         Customization cursor type and/or cursor color.
6196         (cua--update-indications): Handle cursor type changes.
6197         (cua-mode): Update cursor indications if enabled.
6199         * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
6201         * mouse.el (mouse-drag-copy-region): New defcustom.
6202         (mouse-set-region, mouse-drag-region-1): Use it.
6204         * simple.el (kill-ring-save): If region face background color is
6205         unspecified (if no highlighting), show extent of fully visible
6206         region even if transient-mark-mode is enabled.
6208         * emulation/cua-base.el (cua--standard-movement-commands):
6209         Add cua-scroll-up and cua-scroll-down.
6210         (cua-scroll-up, cua-scroll-down): New commands.
6211         (cua--init-keymaps): Remap scroll-up and scroll-down.
6213         * emulation/cua-rect.el (cua--convert-rectangle-as):
6214         New defmacro.
6215         (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
6216         (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
6217         New commands (suggested by Jordan Breeding).
6219 2004-04-30  Juanma Barranquero  <lektu@terra.es>
6221         * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
6223 2004-04-30  Mario Lang  <mlang@delysid.org>
6225         * diff.el (diff-switches): Fix typo in docstring.
6227 2004-04-30  Alex Schroeder  <alex@gnu.org>
6229         * xml.el (xml-debug-print-internal): Don't add newline and
6230         indentation to text nodes and write empty elements as empty tags
6231         instead of opening and closing tags.
6232         (xml-debug-print): Take optional indent-string argument.
6233         (xml-print): Alias for xml-debug-print.
6235 2004-04-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
6237         * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
6238         than duplicate call to `line-beginning-position'.
6240         * progmodes/f90.el (f90-get-present-comment-type):
6241         Return whitespace, as well as comment chars, for consistent filling
6242         of comment blocks.  Use `match-string-no-properties'.
6243         (f90-break-line): Trim trailing whitespace when filling comments.
6245 2004-04-30  Dave Love  <fx@gnu.org>
6247         * calendar/diary-lib.el (diary-outlook-formats): New variable.
6248         (diary-from-outlook-internal, diary-from-outlook)
6249         (diary-from-outlook-gnus, diary-from-outlook-rmail):
6250         New functions to import diary entries from Outlook-format
6251         appointments in mail messages.
6253 2004-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6255         * progmodes/python.el (python-send-command): New fun.
6256         (python-send-region, python-load-file): Use it.
6258         * progmodes/compile.el (compilation-last-buffer): Add var alias.
6260         * help-fns.el (help-C-file-name): Use new subr-name.
6261         Prepend `src/' to the file name.
6262         (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
6263         (describe-function-1, describe-variable): Only find a C source file
6264         name if DOC is already loaded.
6266         * help-mode.el (help-function-def, help-variable-def):
6267         Use the new find-function-search-for-symbol functionality.
6268         Allow FILE to be `C-source'.
6270         * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
6271         (find-function-C-source): New fun.
6272         (find-function-search-for-symbol): Use it.
6274 2004-03-29  Michael Mauger  <mmaug@yahoo.com>
6276         * progmodes/sql.el (sql-product-alist): Rename variable
6277         `sql-product-support'.  Add Postgres login parameters.
6278         (sql-set-product, sql-product-feature): Update with renamed variable.
6279         (sql-connect-postgres): Add username prompt.
6280         (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
6281         Make patterns less product specific.
6282         (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
6283         (sql-mode-abbrev-table): Modify initialization.
6284         (sql-builtin-face): Add variable.
6285         (sql-keywords-re): Add macro.
6286         (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
6287         (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
6288         (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
6289         (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
6290         (sql-mode-linter-font-lock-keywords)
6291         (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
6292         (sql-mode-sybase-font-lock-keywords)
6293         (sql-mode-informix-font-lock-keywords)
6294         (sql-mode-interbase-font-lock-keywords)
6295         (sql-mode-ingres-font-lock-keywords)
6296         (sql-mode-solid-font-lock-keywords)
6297         (sql-mode-sqlite-font-lock-keywords)
6298         (sql-mode-db2-font-lock-keywords): Default to nil.
6299         (sql-product-font-lock): Always highlight ANSI keywords.
6300         (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
6301         (sql-send-string): Add function.
6303 2004-04-29  Dave Love  <fx@gnu.org>
6305         * progmodes/cfengine.el (cfengine-beginning-of-defun)
6306         (cfengine-end-of-defun): Ensure progress through buffer.
6308         * info-look.el (cfengine-mode): Accept a terminal ().
6310 2004-04-29  Juri Linkov  <juri@jurta.org>
6312         * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
6313         instead of isearch-yank-word-or-char.  Add new key bindings for
6314         isearch-yank-char to \C-f, and isearch-del-char to \C-b.
6315         (isearch-del-char): New fun.
6316         (isearch-forward, isearch-edit-string): Update docstring.
6317         (isearch-yank-char): Doc fix.
6318         (isearch-other-meta-char): Restore point after scrolling.
6320         * progmodes/compile.el (compilation-context-lines): Add nil option
6321         to disable compilation output window scrolling.
6322         (compilation-set-window): Use it.
6324         * outline.el (outline-next-preface, outline-show-heading):
6325         Don't leave unhidden blank line before heading.
6326         (outline-end-of-subtree): Include last newline into subtree.
6327         (hide-entry): Leave point at beginning of heading instead of end.
6328         (outline-up-heading): Push mark for the first call of successive
6329         command calls.
6331 2004-04-28  Luc Teirlinck  <teirllm@auburn.edu>
6333         * comint.el (comint-prompt-read-only): New variable.
6334         (comint-output-filter): Implement it.
6336         * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
6337         (ielm-prompt-internal): New variable.
6338         (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
6339         (ielm-send-input): Delete unused variable `buf'.
6340         (ielm-eval-input): Use `ielm-prompt-internal'.
6341         (inferior-emacs-lisp-mode): Use new variables
6342         `comint-prompt-read-only' and `ielm-prompt-internal'.
6343         Get rid of obsolete variable `directory-sep-char'.
6344         (ielm): Use `zerop'.
6346 2004-04-29  John Paul Wallington  <jpw@gnu.org>
6348         * thumbs.el (toplevel): Require cl at compile time.
6349         Remove conditional definitions of `ignore-errors' and `caddar'
6350         because they occur at run time.
6352 2004-04-28  Nick Roberts  <nickrob@gnu.org>
6354         * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
6355         (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
6356         (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
6357         (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
6359         * progmodes/gud.el (gud-common-init): Throw an error if program is
6360         already running under gdb.
6362 2004-04-28  John Paul Wallington  <jpw@gnu.org>
6364         * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
6365         (thumbs-show-image-num): Move assignment of
6366         `thumbs-current-image-filename' within scope of `i'.
6367         (thumbs-emboss-image): Don't use `evenp'.
6369 2004-04-28  Richard M. Stallman  <rms@gnu.org>
6371         * progmodes/compile.el (compilation-context-lines): Default now 0.
6373 2004-04-28  Juanma Barranquero  <lektu@terra.es>
6375         Use `time-less-p' from calendar/time-date.el instead of defining
6376         custom versions of it.
6378         * pcomplete.el (pcomplete-time-less-p): Remove.
6380         * thumbs.el (time-less-p): Remove.
6382         * calendar/timeclock.el (timeclock-time-less-p): Remove.
6383         (timeclock-generate-report): Use `time-less-p'.
6385         * emacs-lisp/autoload.el (autoload-before-p): Remove.
6386         (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
6388 2004-04-28  Masatake YAMATO  <jet@gyve.org>
6390         * subr.el (remove-overlays): Make arguments optional.
6392         * wid-edit.el (widget-specify-button): Put evaporate to the
6393         overlay for sample.
6394         (widget-specify-sample): Put evaporate to the overlay for sample.
6395         (widget-specify-doc): Put evaporate to the overlay for documentation.
6397 2004-04-27  Jesper Harder  <harder@ifa.au.dk>
6399         * info.el (info-apropos): Make it an index node.  Align node names
6400         like makeinfo.
6402 2004-04-27  Eli Zaretskii  <eliz@gnu.org>
6404         * net/browse-url.el (browse-url-netscape-sentinel)
6405         (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
6406         (browse-url-epiphany-sentinel, browse-url-mosaic):
6407         Use browse-url-*-program instead of a literal program name.
6409 2004-04-27  Kevin Ryde  <user42@zip.com.au>
6411         * eshell/em-alias.el:
6412         * eshell/em-dirs.el:
6413         * eshell/em-hist.el:
6414         * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
6415         features when M-x customize-group loads modules before the main
6416         eshell.el.
6418 2004-04-27  Matthew Mundell  <matt@mundell.ukfsn.org>
6420         * subr.el (momentary-string-display): Support EXIT-CHAR that is
6421         either a character representation of an event or an event
6422         description list.
6424         * type-break.el: Capitalise Emacs and Lisp.
6425         (type-break-good-break-interval, type-break-demo-boring-stats)
6426         (type-break-terse-messages, type-break-file-name): New defcustoms.
6427         (type-break-post-command-hook)
6428         (type-break-warning-countdown-string): Quote variable names in doc.
6429         (type-break-interval-start, type-break-auto-save-file-name): New vars.
6430         (type-break-mode): Document type-break-good-break-interval and the
6431         "session" file.  Schedule break according to the session file.
6432         Kill session file buffer on exit.  Organise for save-some-buffers
6433         to always save the session file.
6434         (type-break-mode-line-message-mode, type-break-query-mode):
6435         Uppercase arguments.
6436         (type-break-file-time, type-break-file-keystroke-count, timep)
6437         (type-break-choose-file, type-break-get-previous-time)
6438         (type-break-get-previous-count): New defuns.
6439         (type-break): Avoid break querying after a completed break in the
6440         case where the query was initiated during user invocation of the
6441         break.  Optional terse messages.
6442         Use type-break-good-break-interval if type-break-good-rest-interval is
6443         nil.  File the break time.
6444         (type-break-schedule): New optional args for overriding the use of
6445         the current time.
6446         (type-break-cancel-time-warning-schedule): Avoid leftover warnings
6447         after a break.
6448         (type-break-check): File the keystroke count.
6449         (type-break-do-query): Prevent a second query when the break is
6450         interrupted.  Optional terse message.
6451         (type-break-keystroke-reset): Record the start of a typing interval.
6452         (type-break-demo-boring): Optional terse messages.  Display word
6453         per minute and keystroke counts according to
6454         type-break-demo-boring-stats.
6456 2004-04-27  Daniel M Coffman  <coffmand@us.ibm.com>  (tiny change)
6458         * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
6459         directories, make sure they exist under archive-tmpdir.
6461 2004-04-27  Juri Linkov  <juri@jurta.org>
6463         * help.el (view-emacs-news): With argument, display info for the
6464         selected version by finding it among different NEWS files, and
6465         narrowing the buffer to the selected version.
6467         * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
6468         same-window-buffer-names.
6469         (info): New arg `buffer'.  Use it.  Doc fix.  Read file name for
6470         non-numeric prefix argument, append the number to the buffer name
6471         for numeric prefix argument.
6472         (info-other-window): Bind same-window-regexps to nil.
6473         (Info-reference-name): Rename to Info-point-loc.
6474         (Info-find-node-2): Call forward-line for numeric Info-point-loc,
6475         and Info-find-index-name for stringy Info-point-loc.
6476         (Info-extract-menu-node-name): New arg `index-node'.  Use regexp
6477         without middle `.', but with final `.' and optional line number
6478         for it.  Set Info-point-loc for index nodes.
6479         (Info-index): Remove middle `.' from index entry regexp.
6480         Modify line number regexp.
6481         (Info-index-next): Decrement line number.
6482         (info-apropos): Remove middle `.' from index entry regexp.
6483         Add optional line number regexp at the end.  Add matched value
6484         for line number to the result list and insert it to the buffer.
6485         Replace match-string by match-string-no-properties.
6486         Reorder result list.
6487         (Info-fontify-node): Hide index line numbers.
6488         (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
6489         empty matches.
6490         (Info-follow-reference): Use `str' instead of
6491         Info-following-node-name-re.
6492         (Info-toc): Use full file names.  Set Info-current-node to "Top".
6493         (Info-fontify-node): Compare file names without directory name.
6494         (Info-try-follow-nearest-node): Don't set Info-reference-name.
6495         Set second arg of Info-extract-menu-node-name for index nodes.
6496         (info-xref-visited): Use magenta3 instead of magenta4.
6497         (Info-mode): Add info-apropos to docstring.
6499         * log-view.el (log-view-diff): Replace interactive code "r"
6500         by a list to allow to call it even if region is not active.
6502         * paren.el (show-paren-highlight-openparen): New var.
6503         (show-paren-function): Turn on openparen highlighting when
6504         matching forward if show-paren-highlight-openparen is non-nil.
6506         * simple.el (kill-ring-save): Use blink-matching-delay instead of
6507         the constant value 1.
6508         (completions-common-part): Expand docstring.
6510         * textmodes/picture.el (picture-mode-map): Add arrow keys.
6512 2004-04-27  Kim F. Storm  <storm@cua.dk>
6514         * image.el (insert-sliced-image): Use line-height instead of
6515         line-spacing property on newline.
6517 2004-04-26  Lars Hansen  <larsh@math.ku.dk>
6519         * desktop.el (desktop-buffer-misc-data-function): Rename to
6520         desktop-save-buffer and change docstring.
6521         (desktop-buffer-modes-to-save): Delete.
6522         (desktop-save-buffer-p): Use desktop-save-buffer instead of
6523         desktop-buffer-modes-to-save.
6524         (desktop-save): Rename desktop-buffer-misc-data-function to
6525         desktop-save-buffer and allow non-function value.
6526         (desktop-missing-file-warning): Correct docstring.
6528         * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
6529         to desktop-save-buffer.
6531         * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
6532         desktop-save-buffer.
6534         * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
6536         * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
6538 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
6540         * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
6542 2004-04-25  Luc Teirlinck  <teirllm@auburn.edu>
6544         * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
6545         (ielm): Only go to the end of the buffer when starting a new process.
6547 2004-04-25  Juanma Barranquero  <lektu@terra.es>
6549         * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
6550         mode line.  Bind `inhibit-read-only' to t before modifying
6551         properties of text in the buffer.
6552         (ielm): Force point to the end of buffer, even when running ielm
6553         from inside itself.
6555 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
6557         * info.el (info-apropos): Reset Info-complete-cache.
6559 2004-04-25  Daniel Pfeiffer  <occitan@esperanto.org>
6561         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6562         Also recognize severe Irix et al. messages.
6563         (compilation-normalize-filename, compile-abbreviate-directory):
6564         Delete functions.
6565         (compilation-get-file-structure): New function inherits
6566         functionality of the two preceding ones.
6567         (compilation-internal-error-properties, compilation-fake-loc):
6568         Use it so that different paths to the same file share the same
6569         markers.  Also optimize finding adjacent marker slightly.
6571 2004-04-25  Kim F. Storm  <storm@cua.dk>
6573         * image.el (insert-sliced-image): Add line-spacing t property
6574         to newlines separating image lines.
6576 2004-04-24  Luc Teirlinck  <teirllm@auburn.edu>
6578         * comint.el (comint-delete-output): Bind inhibit-read-only to t.
6580         * ielm.el (ielm-prompt-read-only): New user option.
6581         (ielm-prompt): Expand docstring to describe new behavior.
6582         (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
6583         mention it in the docstring.
6585 2004-04-24  Andreas Schwab  <schwab@suse.de>
6587         * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
6589         * diff.el (diff): Set default-directory in diff buffer.
6591 2004-04-24  Eli Zaretskii  <eliz@gnu.org>
6593         * mail/sendmail.el (mail-bury): Don't delete the frame where the
6594         mail was being composed if the terminal cannot display more than
6595         one frame; instead, switch to previous frame.
6597         * mail/rmail.el (rmail-mail-new-frame): Doc fix.
6598         (rmail-start-mail): Support rmail-mail-new-frame even on
6599         terminals that can display only one frame at a time.
6601 2004-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6603         * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
6604         (checkdoc-output-font-lock-keywords): Remove error regexp.
6605         (checkdoc-output-mode-map): Remove.
6606         (checkdoc-output-mode): Derive from compilation-mode.
6607         (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
6609         * dired.el (dired-mode-map): Add a menu entry for wdired.
6611         * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
6612         (rx-bracket, rx-check-any, rx-any): Clean up name space.
6614         * wdired.el: (wdired-mode-map): Move init into declaration.
6615         Fix `return' binding.
6616         (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
6617         Use force-mode-line-update.
6618         (wdired-get-filename): Use `unless'.
6619         (wdired-preprocess-files): Don't assume names have no \n and use / for
6620         dir separator.
6621         (wdired-normalize-filename): Use replace-regexp-in-string.
6622         (wdired-load-hooks): Remove.
6623         (wdired-mode-hooks): Rename to wdired-mode-hook.
6625         * info-look.el: Add support for cfengine-mode.
6626         (info-lookup-setup-mode): Use dolist.
6628 2004-04-23  Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba  <juan-leon.lahoz@tecsidel.es>
6630         * wdired.el: New file.
6632 2004-04-23  Juanma Barranquero  <lektu@terra.es>
6634         * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
6636         * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
6637         (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
6638         (pcomplete--help, pcomplete--here): Doc fixes.
6640 2004-04-23  Andre Spiegel  <spiegel@gnu.org>
6642         * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
6643         handles wrong-number-of-arguments in backend call.
6645         * vc.el (vc-print-log): Likewise.
6647 2004-04-20  Dave Love  <fx@gnu.org>
6649         * emacs-lisp/rx.el: Doc fixes.
6650         (rx-constituents): Add/extend many forms.
6651         (rx-check): Check form is a list.
6652         (bracket): Defvar.
6653         (rx-check-any, rx-any, rx-check-not): Modify.
6654         (rx-not): Simplify.
6655         (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
6656         (rx-kleene): Use rx-trans-forms.
6657         (rx-quote-for-set): Delete.
6658         (rx): Allow multiple args.
6660 2004-04-23  Kenichi Handa  <handa@m17n.org>
6662         * international/mule-util.el (char-displayable-p): Simplify by
6663         using internal-char-font.
6665 2004-04-23  Juanma Barranquero  <lektu@terra.es>
6667         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
6669 2004-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6671         * diff-mode.el (diff-next-error): New fun.
6672         (diff-mode): Use it.
6674         * simple.el (next-error): Change arg name.
6675         Add support for the documented C-u C-x ` usage.
6677         * frame.el (special-display-popup-frame, next-multiframe-window)
6678         (previous-multiframe-window): Only consider frames on same display.
6680 2004-04-22  Lars Hansen  <larsh@math.ku.dk>
6682         * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
6683         * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
6685 2004-04-22  Kim F. Storm  <storm@cua.dk>
6687         * net/telnet.el (telnet): Add optional port arg.
6689 2004-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6691         * progmodes/compile.el (compilation-mode-font-lock-keywords):
6692         Minor sanity check on the `hyperlink' slot.
6694         * Makefile.in (recompile): Compile new files.
6696         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
6697         Add byte-recompile-directory's optional `arg'.
6699         * cvs-status.el (cvs-tree-use-charset): New var.
6700         (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
6701         (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
6702         (cvs-status-cvstrees): Use it.
6704         * emacs-lisp/checkdoc.el (checkdoc-output-mode):
6705         Make it a normal major mode.
6706         (checkdoc-buffer-label): Make sure the file name is meaningful.
6707         (checkdoc-output-to-error-buffer): Remove.
6708         (checkdoc-error, checkdoc-start-section): Rewrite.
6710         * info.el (info-node, info-menu-5, info-xref, info-header-node)
6711         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
6712         (Info-title-4-face): Use new syntax.
6713         (info-xref-visited): Inherit from info-xref.
6715         * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
6717 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
6719         * simple.el (next-error-last-buffer, next-error-function):
6720         New variables for the next-error framework.
6721         (next-error-buffer-p): New function.
6722         (next-error-find-buffer): Generalize compilation-find-buffer.
6723         (next-error, previous-error, first-error, next-error-no-select)
6724         (previous-error-no-select): Move from compile.el.
6726         * replace.el (occur-next-error, occur-1): Hook into the next-error
6727         framework.
6729         * progmodes/compile.el (compilation-start):
6730         Set next-error-last-buffer so next-error knows where to jump.
6731         (compilation-setup): Set the buffer-local variable
6732         next-error-function to 'compilation-next-error-function.
6733         (compilation-buffer-p, compilation-buffer-internal-p): Use an
6734         alternate way to find if a buffer is a compilation buffer, for
6735         next-error convenience.
6736         (next-error-no-select, previous-error-no-select, next-error)
6737         (previous-error, first-error): Move to simple.el.
6738         (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
6739         (compilation-last-buffer): Remove.
6740         (compilation-start, compilation-next-error, compilation-setup)
6741         (compilation-next-error-function, compilation-find-buffer):
6742         Remove compilation-last-buffer use.
6744 2004-04-21  Juanma Barranquero  <lektu@terra.es>
6746         * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
6747         (font-lock-warning-face): Fix spacing.
6749         * makefile.w32-in (WINS): Add url/ directory.
6751 2004-04-21  Lars Hansen  <larsh@math.ku.dk>
6753         * desktop.el (desktop-buffer-mode-handlers): New variable.
6754         Alist of major mode specific functions to restore a desktop buffer.
6755         (desktop-buffer-handlers): Make variable obsolete.
6756         (desktop-create-buffer): Use desktop-buffer-mode-handlers.
6757         Catch errors signaled in handlers.  Update buffer count.
6758         Evaluate desktop-buffer-point.
6759         (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
6760         move to dired.el.
6761         (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
6762         move to info.el.
6763         (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
6764         move to mail/rmail.el.
6765         (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
6766         to mh-e/mh-e.el.
6767         (desktop-buffer-file): Rename to desktop-restore-file-buffer.
6768         On fail, print message (to message buffer) even if
6769         desktop-missing-file-warning is nil.
6770         (desktop-buffer-misc-data-function): New buffer local variable.
6771         Function returning major mode specific data.
6772         (desktop-buffer-misc-functions): Make variable obsolete.
6773         (desktop-save): Use desktop-buffer-misc-data-function.
6774         (desktop-buffer-dired-misc-data): Rename to
6775         dired-desktop-buffer-misc-data and move to dired.el.
6776         (desktop-buffer-info-misc-data): Rename to
6777         Info-desktop-buffer-misc-data and move to info.el.
6778         (desktop-read): Add message about number of buffers restored/failed.
6780         * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
6781         Add parameters.  Pause to display error only when
6782         desktop-missing-file-warning is non-nil.
6783         (dired-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
6784         (dired-mode): Bind desktop-buffer-misc-data-function.
6786         * info.el (Info-restore-desktop-buffer): Move from desktop.el.
6787         Add Parameters.
6788         (Info-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
6789         (Info-mode): Bind desktop-buffer-misc-data-function.
6791         * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
6792         Add Parameters.
6794         * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
6795         Add Parameters.
6797 2003-04-21  Paul Pogonyshev  <pogonyshev@gmx.net>
6799         * dabbrev.el (dabbrev--substitute-expansion): Don't lose
6800         the case of letters in case-insensitive expansions when the
6801         abbrev is preceded by characters with letter syntax.
6803 2004-04-21  Richard M. Stallman  <rms@gnu.org>
6805         * progmodes/cperl-mode.el (cperl-putback-char):
6806         Delete Emacs 18 definition.
6808         * international/mule.el (ctext-post-read-conversion):
6809         Use assoc-string, not assoc-ignore-case.
6811         * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
6813         * emacs-lisp/easymenu.el (easy-menu-add):
6814         Do call x-popup-menu, but only if it's defined.
6816         * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
6818         * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
6819         Handle multiple args: compile like progn.
6821         * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
6822         take all args as &rest arg.
6824         * autoinsert.el (auto-insert-alist): Insert the user's name in
6825         copyright notice, rather than Free Software Foundation.
6827 2004-04-21  Kenichi Handa  <handa@m17n.org>
6829         * descr-text.el (describe-char): Make it work on *Help* buffer.
6831 2004-04-21  Kim F. Storm  <storm@cua.dk>
6833         * image.el (insert-image): Add optional SLICE arg.
6834         (insert-sliced-image): New defun.
6836 2004-04-20  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
6838         * subr.el (read-number): Check whether `default' is nil.
6840 2004-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6842         * progmodes/compile.el (compilation-error-properties):
6843         Split into two.
6844         (compilation-internal-error-properties): New one.
6845         (compilation-compat-error-properties): Use it.  Fix the non-marker case.
6847 2004-04-20  Richard M. Stallman  <rms@gnu.org>
6849         * window.el (split-window-save-restore-data):
6850         Don't update the data if OLD-INFO is nil.
6852         * view.el (view-return-to-alist): Mark it permanent local.
6854         * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
6856         * recentf.el (recentf-save-list): Catch and warn about errors.
6858         * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
6859         so "Buffers" won't be pure.
6861         * help-mode.el (help-mode-finish): Set help-return-alist first
6862         thing, setting only the entry for the selected window.
6864         * help-fns.el (describe-function-1): If many non-control non-meta
6865         keys run the command, don't list all of them.
6867 2004-04-20  Juanma Barranquero  <lektu@terra.es>
6869         * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
6870         arg.  Copied from Andre Spiegel's patch of 2004-03-21.
6872         * calendar/time-date.el (time-to-day-in-year): Fix docstring.
6874 2004-04-20  Kenichi Handa  <handa@m17n.org>
6876         * international/quail.el (quail-lookup-key): New optional arg
6877         NOT-RESET-INDICES.
6878         (quail-get-translations): Call quail-lookup-key with
6879         NOT-RESET-INDICES t.
6880         (quail-completion): Likewise.
6881         (quail-lookup-map-and-concat): Likewise.
6883 2004-04-20  Kenichi Handa  <handa@m17n.org>
6885         * international/quail.el (quail-update-translation): Don't insert
6886         such an unsupported multibyte char in a unibyte buffer.
6888 2004-04-20  Nick Roberts  <nick@nick.uklinux.net>
6890         * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
6891         (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
6892         (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
6893         (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
6894         (gdb-frame-assembler-buffer): Improve behaviour with
6895         multiple frames.
6896         (gdb-display-buffer): Extend search to all visible frames.
6898 2004-04-19  Eli Zaretskii  <eliz@gnu.org>
6900         * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
6901         characters left after base64 decoding.
6902         (rmail-decode-region): Use -dos variety of `coding', to remove any
6903         ^M characters left after qp or base64 decoding.
6905 2004-04-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6907         * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
6908         messages.
6910 2004-04-19  Stephen Eglen  <stephen@gnu.org>
6912         * add-log.el (add-change-log-entry): Update doc string to mention
6913         add-log-full-name and add-log-mailing-address.
6915 2004-04-18  Juri Linkov  <juri@jurta.org>
6917         * info.el (Info-find-file, Info-find-node-2): Add history and toc.
6918         (Info-find-node-2): Simplify error message.
6919         (Info-insert-dir): Use Info-following-node-name.
6920         (Info-goto-node): Remove *info-history* and *info-toc*.
6921         (Info-history): Create a node of the virtual history file.
6922         (Info-toc): Create a node of the virtual toc file.
6923         (Info-insert-toc): New arg `curr-file' for reference file names.
6924         (info-apropos): Remove redundant var binding for temp-file.
6925         (Info-index, Info-index-next, Info-mode): Doc fix.
6926         (Info-goto-emacs-command-node): Don't jump to *info* from
6927         non-*info* Info buffers.
6928         (Info-fontify-node): Don't show the file name of external
6929         references if `Info-hide-note-references' is `hide'.  Don't hide
6930         newlines at the end of paragraphs.
6932         * international/mule-diag.el (list-input-methods):
6933         Fix args to help-xref-button.
6935         * help-fns.el (help-with-tutorial): Call `hack-local-variables'
6936         to put into effect local variables from TUTORIAL files.
6938         * textmodes/paragraphs.el (sentence-end) <function>: New fun
6939         with default value taken from the variable `sentence-end'.
6940         (sentence-end) <defcustom>: Set default to nil.  Doc fix.
6941         Add nil const to :type.
6942         (sentence-end-without-period, sentence-end-double-space)
6943         (sentence-end-without-space): Doc fix.
6945         * textmodes/paragraphs.el (forward-sentence):
6946         * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
6947         (fill-delete-newlines):
6948         * progmodes/cc-cmds.el (c-beginning-of-statement):
6949         Use function `sentence-end' instead of variable `sentence-end'.
6951 2004-04-18  Andreas Schwab  <schwab@suse.de>
6953         * progmodes/compile.el (compilation-start): Set window start to
6954         point-min if compilation-scroll-output is nil.
6956 2004-04-18  John Wiegley  <johnw@newartisans.com>
6958         * iswitchb.el (iswitchb-completions): Remove dependency on cl.
6960 2004-04-18  Nick Roberts  <nick@nick.uklinux.net>
6962         * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
6963         (gdb-info-breakpoints-custom): Revert previous change.
6964         (gdb-view-assembler): Update assembler if necessary.
6965         (gdb-frame-handler): Parse correctly for gdb-current-frame.
6966         (gdb-display-source-buffer): Update properly when both source and
6967         assembler are visible.
6969 2004-04-17  John Wiegley  <johnw@newartisans.com>
6971         * iswitchb.el (iswitchb-max-to-show): Add a new config variable
6972         which limits the number of names shown in the minibuffer.  Off by
6973         default.
6974         (iswitchb-completions): Use `iswitchb-max-to-show'.  This speeds
6975         up iswitchb for users with a multitude of open buffers by showing
6976         only the first and last N/2 buffers in the completion list (which
6977         is enough to aid C-s/C-r, and to know that more characters are
6978         needed to refine the completion list).
6980 2004-04-17  Richard M. Stallman  <rms@gnu.org>
6982         * files.el (locate-file-completion): Handle nil in path-and-suffixes.
6983         (file-truename): Expand all ~ constructs directly.
6984         (insert-directory): Delete any error msg output by the
6985         `insert-directory-program'.
6987         * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
6988         (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
6989         (allout-prior-bindings, allout-added-bindings): Defvars deleted.
6990         (allout-init): Use find-file-hook, not find-file-hooks.
6991         (allout-mode): Eliminate Emacs 18 support.
6992         Use write-contents-functions, not local-write-file-hooks.
6994 2004-04-17  Daniel Pfeiffer  <occitan@esperanto.org>
6996         * progmodes/compile.el (compilation-error-properties): Fix for
6997         adding messages when there are already markers for their file.
6998         (compilation-fake-loc): New function.
7000 2004-04-16  Dave Love  <fx@gnu.org>
7002         * progmodes/python.el (python-compilation-line-number): Fix braindamage.
7003         (python-load-file): Fix python-orig-start setting.
7005         * progmodes/compile.el: Doc fixes.
7006         (compilation-error-regexp-alist-alist)
7007         (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
7008         (compilation-assq): Wrap in eval-when-compile.
7009         (compilation-mode-font-lock-keywords): Don't use list*.
7010         (compilation-start): Avoid warning.
7011         (compilation-compat-error-properties)
7012         (compilation-directory-properties): Add keymap property.
7013         (compilation-parsing-end): Make it a marker for better compatibility.
7015         * progmodes/python.el (python-after-info-look): Use with-no-warnings.
7017 2004-04-16  Mark A. Hershberger  <mah@everybody.org>
7019         * xml.el: Doc fixes.
7020         (xml-get-children): Only looks at sub-tags and ignore strings.
7022         * xml.el (xml-parse-tag): Avoid overwriting node-name.
7024 2004-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7026         * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
7028 2004-04-16  Andre Spiegel  <spiegel@gnu.org>
7030         * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
7032         * vc.el (vc-print-log): Likewise.
7034 2004-04-16  Masatake YAMATO  <jet@gyve.org>
7036         * simple.el (completion-setup-function): Set an initial value
7037         to `element-common-end' before entering loop.  Set a value
7038         to `element-common-end' at the end of loop.
7039         The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
7040         (completions-common-part): Rename from completion-de-emphasis.
7041         (completions-first-difference): Rename from completion-emphasis.
7042         Suggested by RMS.
7044 2004-04-16  Juanma Barranquero  <lektu@terra.es>
7046         * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
7047         (bookmark-edit-annotation-mode): Add mode name.
7049 2004-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7051         * smerge-mode.el (smerge-match-conflict): Try to do something sensible
7052         for nested conflict markers.
7053         (smerge-find-conflict): Better handle errors in smerge-match-conflict.
7055 2004-04-15  Nick Roberts  <nick@nick.uklinux.net>
7057         * progmodes/gdb-ui.el (gdb-goto-info): New function.
7059         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
7061 2004-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7063         * emacs-lisp/bytecomp.el (batch-byte-compile-file):
7064         Give a backtrace if requested.
7066         * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
7068         * progmodes/python.el (python-mouse-2-command, python-RET-command):
7069         Remove unused functions.
7070         (python-orig-start-line, python-orig-file): Remove.
7071         (python-orig-start): New var.
7072         (python-input-filter, python-compilation-line-number)
7073         (python-send-region, python-load-file): Use it.
7075         * info.el (info): Always jump to *info*.
7077         * subr.el (posn-set-point): New function.
7079         * mouse.el (mouse-set-point): Use it.
7081         * progmodes/compile.el (compile-goto-error): Use it.
7082         (compilation-button-map): New keymap.
7083         (compilation-error-properties): Use it.
7084         (compilation-shell-minor-mode-map): Don't bind mouse-2.
7086         * smerge-mode.el (smerge-popup-context-menu): Use it.
7088         * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
7089         (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
7090         mouse and non-mouse case.
7092         * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
7093         (diff-mouse-goto-source): Make it an alias of diff-goto-source.
7095         * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
7096         Make it work for non-mouse events.
7098         * pcvs-info.el (cvs-status-map): Update binding name.
7100 2004-04-14  Mark A. Hershberger  <mah@everybody.org>
7102         * xml.el (xml-maybe-do-ns): New function to handle namespace
7103         parsing of both attribute and element names.
7104         (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
7105         (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
7106         (xml-parse-tag): Update assumed namespaces.  Clean up namespace parsing.
7107         (xml-parse-attlist): Make it do its own namespace parsing.
7109 2004-04-14  Dave Love  <fx@gnu.org>
7111         * progmodes/python.el (run-python): Fix use of \n.
7112         (python-load-file): Remove `try' from Python fragment.
7113         (python-describe-symbol): Fix message.
7115         * comint.el: Doc fixes.
7116         (comint-last-input-start, comint-last-input-end)
7117         (comint-last-output-start): Give them values.
7118         (comint-arguments): Avoid warning.
7119         (comint-skip-prompt): Use line-end-position.
7120         (comint-backward-matching-input): Rename arg to agree with doc.
7121         (comint-extract-string): Use syntax-ppss.
7122         (comint-dynamic-simple-complete): Delete useless list construction.
7123         (comint-redirect-subvert-readonly): New.
7124         (comint-redirect-preoutput-filter): Use it.
7126         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
7127         Correctly handle negative arguments when calling hook functions.
7129 2004-04-14  Jesper Harder  <harder@ifa.au.dk>
7131         * info.el (info-apropos): Don't clobber Info-history-list.
7133 2004-04-14  Daniel Pfeiffer  <occitan@esperanto.org>
7135         * progmodes/compile.el (compilation-setup):
7136         Localize overlay-arrow-position.
7137         (compilation-sentinel): Restructure code equivalently.
7138         (compilation-next-error): Find message on same line after point if
7139         not found before point.
7140         (compile-mouse-goto-error): Restore function so that compilation
7141         buffer need not be current and use compile-goto-error.
7142         (compile-goto-error): Restore function.
7143         (next-error): Set overlay-arrow-position.
7144         (compilation-forget-errors): Don't localize already local
7145         compilation-locs and remove FIXME about refontifying.
7147 2004-04-14  Kim F. Storm  <storm@cua.dk>
7149         * startup.el (emacs-quick-startup): New defvar (set by -Q).
7150         (command-line): New option -Q.  Like -q --no-site-file, but
7151         in addition it also disables menu-bar, tool-bar, scroll-bars,
7152         tool-tips, and the blinking cursor.
7153         (command-line-1): Skip startup screen if -Q.
7154         (fancy-splash-head): Use ":align-to center" prop to center splash image.
7156         * emulation/cua-base.el (cua-read-only-cursor-color)
7157         (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
7159 2004-04-13  Dave Love  <fx@gnu.org>
7161         * progmodes/python.el: Doc fixes.  Changes for compiler warnings.
7162         (syntax): Don't require.
7163         (python) <defgroup>: Add :version.
7164         (python-quote-syntax): Re-written.
7165         (inferior-python-mode): Move stuff here from run-python and add
7166         some more.
7167         (python-preoutput-continuation, python-preoutput-result)
7168         (python-dotty-syntax-table): New.
7169         (python-describe-symbol): Use them.
7170         (run-python): Move stuff to inferior-python-mode.  Modify code
7171         loaded into Python.
7172         (python-send-region): Use python-proc, python-send-string.
7173         (python-send-string): Send newlines too.  Callers changed.
7174         (python-load-file): Re-written.
7175         (python-eldoc-function): New.
7176         (info-look): Don't require.
7177         (python-after-info-look): New.  A modified version of former
7178         top-level code for use with eval-after-load.
7179         (python-maybe-jython, python-guess-indent): Use widened buffer.
7180         (python-fill-paragraph): Re-written.
7181         (python-mode): Fix outline-regexp.  Set outline-heading-end-regexp,
7182         eldoc-print-current-symbol-info-function.  Add to eldoc-mode-hook.
7184 2004-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7186         * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
7187         Set compilation-error-regexp-alist earlier.
7189         * progmodes/compile.el (compilation-minor-mode-map)
7190         (compilation-shell-minor-mode-map, compile-mouse-goto-error)
7191         (compile-goto-error): Re-merge the mouse and non-mouse commands.
7193 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7195         * progmodes/compile.el (compile-goto-error): Select the buffer/window
7196         corresponding to the event.
7198 2004-04-12  Joe Buehler  <jbuehler@hekiman.com>
7200         * loadup.el: Add cygwin to system-type list, for unexec() support.
7202 2004-04-12  John Paul Wallington  <jpw@gnu.org>
7204         * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
7205         (ibuffer-restore-window-config-on-quit): New variable to replace
7206         `ibuffer-delete-window-on-quit'.  Update all references.
7207         (ibuffer-prev-window-config): New variable.
7208         (ibuffer-quit): Restore previous window configuration instead of
7209         deleting window.
7210         (ibuffer): Save window configuration before showing Ibuffer buffer.
7212         * help.el (describe-mode): Doc fix.
7214 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7216         * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
7217         not to treat nil as a function.
7219         * vc-arch.el (vc-arch-root): Be a bit more careful.
7220         (vc-arch-register): Save the buffer if we modified it.
7221         (vc-arch-delete-rej-if-obsolete): Save excursion.
7222         (vc-arch-find-file-hook): Use the simpler after-save-hook.
7223         (vc-arch-responsible-p, vc-arch-init-version): New functions.
7225         * net/ldap.el (ldap-search): Use list*.
7227 2004-04-12  Juri Linkov  <juri@jurta.org>
7229         * info.el (Info-follow-reference): Allow multiline reference name.
7231 2004-04-11  Dave Love  <fx@gnu.org>
7233         * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
7235         * progmodes/python.el: New file.
7237 2004-04-11  Andre Spiegel  <spiegel@gnu.org>
7239         * vc-hooks.el (vc-arg-list): Function removed.
7240         (vc-default-workfile-unchanged-p): Use condition-case to check for
7241         backward compatibility.
7243         * vc.el (vc-print-log): Use condition-case to check for backward
7244         compatibility.
7246 2004-04-11  Juri Linkov  <juri@jurta.org>
7248         * dired.el (dired-faces): New defgroup.
7249         (dired-header, dired-mark, dired-marked, dired-flagged)
7250         (dired-warning, dired-directory, dired-symlink, dired-ignored):
7251         New faces.
7252         (dired-header-face, dired-mark-face, dired-marked-face)
7253         (dired-flagged-face, dired-warning-face, dired-directory-face)
7254         (dired-symlink-face, dired-ignored-face): New face variables.
7255         (dired-font-lock-keywords): Use them instead of font-lock faces.
7256         Split the rule for dired marks into 3 separate rules: for marks,
7257         marked file names and flagged file names.
7259         * help-mode.el (help-make-xrefs): Add a final newline to the
7260         *Help* buffer.
7262 2004-04-11  John Paul Wallington  <jpw@gnu.org>
7264         * replace.el (occur-engine): Distinguish between one and several
7265         matches in the matches per buffer heading.
7267 2004-04-11  Kim F. Storm  <storm@cua.dk>
7269         * ido.el (ido-confirm-unique-completion): New defcustom.
7270         (ido-complete): Use it.
7271         (ido-write-file): Set it to t unconditionally.
7273 2004-04-10  Miles Bader  <miles@gnu.org>
7275         RCS keyword removal (only non-comment changes are enumerated here):
7277         * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
7278         (byte-compile-insert-header): Don't use `byte-compile-version'.
7279         * forms.el (forms-version): Variable removed.
7280         (forms-mode): Don't use `forms-version'.
7281         * recentf.el (recentf-version): Variable removed.
7282         * progmodes/delphi.el (delphi-version): Variable removed.
7283         * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
7285 2004-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7287         * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
7289 2004-04-09  Jesper Harder  <harder@ifa.au.dk>
7291         * info.el (info-apropos): Improve menu item regexp.
7293 2004-04-09  Simon Josefsson  <jas@extundo.com>
7295         * mail/smtpmail.el: Add comment, based on report by
7296         kdc@rcn.com (Kevin D. Clark).
7298 2004-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7300         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7301         Redo one more thing that I didn't notice Daniel had undone.
7303 2004-04-08  Nick Roberts  <nick@nick.uklinux.net>
7305         * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
7306         (gdb-goto-breakpoint, gdb-display-buffer)
7307         (gdb-display-source-buffer, gdb-view-source-function)
7308         (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
7309         (gdb-source-info, gdb-frame-handler): Don't specify a window
7310         for display.
7311         (gdb-info-breakpoints-custom): Remove superfluous update of
7312         assembler buffer.
7313         (gdb-many-windows): Make settable outside gdb.
7315 2004-04-08  Glenn Morris  <gmorris@ast.cam.ac.uk>
7317         * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
7318         Derive from fundamental-mode rather than text-mode.
7320 2004-04-08  Juri Linkov  <juri@jurta.org>
7322         * info.el (Info-history): Doc fix.
7323         (Info-history-list): New var.
7324         (info-xref): Change magenta4 to blue, remove bold for dark and
7325         light backgrounds, change bold to underline for non-color classes.
7326         (info-xref-visited): New face.
7327         (Info-fontify-visited-nodes): New custom.
7328         (Info-hide-note-references): Add new value `hide'.  Doc fix.
7329         (Info-reference-name): New var.
7330         (Info-selection-hook): New custom.
7331         (Info-edit-mode-hook): New var.
7332         (Info-find-file): New fun.
7333         (Info-find-node): Move part of code to Info-find-file.
7334         (Info-find-node-2): Add anchors to Info-history-list.  Move point
7335         to the place with the reference name if name is defined.
7336         (Info-select-node): Add current node to Info-history-list.
7337         (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
7338         (Info-search-whitespace-regexp): New custom.
7339         (Info-search-case-fold): New var.
7340         (Info-search): Add "case-sensitively" to the prompt.
7341         Use Info-search-whitespace-regexp.  Set Info-search-case-fold.
7342         (Info-search-case-sensitively, Info-search-next): New fun.
7343         (Info-up): Move point to the menu item of the current node.
7344         (Info-history): New fun.  Add *info-history* to
7345         same-window-buffer-names.
7346         (Info-toc): New fun.  Add *info-toc* to same-window-buffer-names.
7347         (Info-insert-toc): New fun.
7348         (Info-build-toc): New fun.
7349         (Info-follow-reference): Add new arg `fork'.  Doc fix.
7350         Replace [ \n\t]* by [ \n\t]+ in the *Note regexp.  For references
7351         with the same name prefer the reference closest to point.
7352         (Info-next-reference): Replace * by + in the *Note regexp.
7353         Add regexp for http:// and ftp://.  Skip the *Note prefix.
7354         (Info-prev-reference): Replace * by + in the *Note regexp.
7355         Add regexp for http:// and ftp://.  Skip the *Note prefix.
7356         (Info-follow-nearest-node): Add new arg `fork'.
7357         (Info-try-follow-nearest-node): Add new arg `fork'.
7358         Call browse-url for http:// and ftp:// references.
7359         Set Info-reference-name for index entries.
7360         (Info-mode-menu): Add menu items for Info-search-case-sensitively,
7361         Info-search-next, Info-history, Info-toc, clone-buffer.
7362         (Info-menu-update): Replace * by + in the *Note regexp.
7363         (Info-mode): Add documentation for Info-history, Info-toc,
7364         Info-search-case-sensitively, Info-search-next, clone-buffer.
7365         (Info-fontify-menu-headers): Remove fun.  Move code to
7366         Info-fontify-node.
7367         (Info-fontify-node): Add docstring.  Add local vars
7368         fontify-visited-p and not-fontified-p.  If not-fontified-p is t
7369         then fontify header line, titles, menu headers, http and ftp
7370         references, refill paragraphs.  If not-fontified-p is t or
7371         fontify-visited-p is t then fontify cross references, menu items.
7372         Fontify menu headers.  Fontify http and ftp references.
7373         Change regexp for cross references to require whitespace after *Note,
7374         add matching groups for file and node names.  Remove hack for quote.
7375         Use display property for Info-hide-note-references=t.  Use fifth
7376         or fourth match for help-echo.  Display visited nodes in a
7377         different face.  Unhide file names of external references.
7378         Unhide newlines.  Display visited menu items in a different face.
7380 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7382         * progmodes/compile.el: Require CL.
7383         (compilation-mode-font-lock-keywords): Re-install the "line as
7384         function" patch.
7386         * help-fns.el (help-C-source-directory): New var.
7387         (help-subr-name, help-C-file-name, help-find-C-source): New funs.
7388         (describe-function-1, describe-variable): Use them.
7390         * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
7391         to C source files specially.
7393 2004-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
7395         * info.el (Info-hide-cookies-node): New function.
7396         (Info-select-node): Use it.
7397         (Info-display-images-node): Remove message with image file name.
7399 2004-04-07  Daniel Pfeiffer  <occitan@esperanto.org>
7401         * progmodes/compile.el (compilation-warning-face)
7402         (compilation-info-face, compilation-skip-threshold)
7403         (compilation-skip-visited, compilation-context-lines):
7404         Declare :version when added to Emacs.
7405         (compilation-error-regexp-alist-alist): Extend caml and irix.
7406         (compilation-setup): Fix if font-locked w/o font-lock-defaults.
7407         (compilation-mode-font-lock-keywords): Temporarily undo line as
7408         function patch, which wasn't ready.
7410 2004-04-07  Kenichi Handa  <handa@m17n.org>
7412         * international/latin1-disp.el (latin1-display-setup): Check each
7413         character is displayable or not instead of calling
7414         latin1-display-check-font.
7416 2004-04-06  Kenichi Handa  <handa@m17n.org>
7418         * language/ethio-util.el (ethio-sera-being-called-by-w3):
7419         New variable.
7420         (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
7421         instead of sera-being-called-by-w3.
7422         (ethio-fidel-to-sera-buffer): Likewise.
7423         (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
7424         instead of sera-being-called-by-w3.
7425         (ethio-write-file): Likewise.
7427 2004-04-05  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7429         * printing.el: Doc fix.
7431 2004-04-05  Nick Roberts  <nick@nick.uklinux.net>
7433         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
7434         (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
7435         (gdb-setup-windows): Only use separate IO buffer if required.
7437 2004-04-06  Kim F. Storm  <storm@cua.dk>
7439         * term.el (term-is-xemacs): Remove.
7440         (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
7441         (term-window-width): New function.
7442         (term-mode, term-check-size): Use it.
7443         (term-mode): Disable overflow-newline-into-fringe in term buffer.
7445 2004-04-05  Per Abrahamsen  <abraham@dina.kvl.dk>
7447         * cus-edit.el (custom-add-parent-links): Change unbound variable
7448         `symbol' to `name'.
7450 2004-04-05  Jesper Harder  <harder@ifa.au.dk>
7451         * info.el (info-apropos): New function.
7452         (Info-mode-menu): Add it.
7453         (Info-find-node, Info-find-node-2): Grok apropos virtual file.
7455         * help-mode.el (help-make-xrefs): Recognize aliased variable with
7456         inherited docstring.
7458         * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
7460 2004-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7462         * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
7464         * progmodes/compile.el (font-lock): Don't require any more.
7465         (compilation-error-properties, compilation-start, compilation-sentinel)
7466         (compilation-filter, next-error): Use with-current-buffer.
7467         (compilation-skip-to-next-location, compilation-skip-threshold)
7468         (compilation-skip-visited): Move to silence the byte-compiler.
7469         (compilation-setup): Simplify.
7470         (compilation-next-error): Use line-(beginning|end)-position.
7471         Make sure `pt' is non-nil before using compilation-loop.
7472         (compile-goto-error): Add optional event arg.  Use it.
7473         (compile-mouse-goto-error): Make it an alias of compile-goto-error.
7474         (compilation-minor-mode-map, compilation-shell-minor-mode-map):
7475         Update the binding for mouse-2.
7476         (first-error): Set compilation-current-error to nil rather than bob.
7477         (compilation-parsing-end, compilation-parse-errors-function)
7478         (compilation-error-list, compilation-old-error-list):
7479         "New" compatibility variables.
7480         (compile-buffer-substring, compilation-compat-error-properties)
7481         (compilation-compat-parse-errors, compilation-forget-errors):
7482         New compatibility functions.
7483         (compilation-mode-font-lock-keywords): Use them.
7485 2004-04-04  Luc Teirlinck  <teirllm@auburn.edu>
7487         * autorevert.el (auto-revert-handler): If point (or a window
7488         point) is at the end of the buffer, keep it there after
7489         reverting.  This allows to tail a file.
7490         Mention this in the `Commentary'.
7492         * format.el (format-write-file): Add optional argument CONFIRM
7493         and make it behave like the analogous argument to `write-file'.
7495 2004-04-04  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7497         * progmodes/ebnf2ps.el: Doc fix.
7498         (ebnf-version): New version number (4.2).
7499         (ebnf-syntax): Customization and docstring fix.
7500         (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
7501         Put autoloaded funs before first use.
7502         (ebnf-style-database): Add dtd entry.
7503         (ebnf-syntax-alist): Add dtd initialization.
7504         (ebnf-token-sequence): New fun.
7505         (ebnf-comment-table): Add new comment action character.
7506         (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
7508         * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
7509         Type Definition for XML).
7511         * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
7512         * progmodes/ebnf-bnf.el (ebnf-sequence):
7513         * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
7514         * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
7515         * progmodes/ebnf-yac.el (ebnf-yac-sequence):
7516         Code simplification: call ebnf-token-sequence.
7518 2004-04-04  Eli Zaretskii  <eliz@gnu.org>
7520         * calendar/timeclock.el (timeclock-relative)
7521         (timeclock-get-project-function, timeclock-get-workday-function)
7522         (timeclock-query-out, timeclock-when-to-leave)
7523         (timeclock-when-to-leave-string, timeclock-log-data)
7524         (timeclock-generate-report, timeclock-in): Doc fixes.
7526 2004-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7528         * url/: New dir.  Import the URL package from its repository.
7530 2004-04-03  Andreas Schwab  <schwab@suse.de>
7532         * diff-mode.el (diff-mode): Fix missing quote.
7534 2004-04-03  Juri Linkov  <juri@jurta.org>
7536         * descr-text.el (describe-property-list): Add `font-lock-face'.
7538         * dired.el (dired-font-lock-keywords): Fix permission regexps.
7540 2004-04-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7542         * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
7543         Use utf-16le on little endian machines and utf-16be otherwise.
7545 2004-04-02  David Kastrup  <dak@gnu.org>
7547         * net/browse-url.el (browse-url-generic): Use call-process
7548         instead of start-process to allow browsers that fork and detach.
7550 2004-04-01  Daniel Pfeiffer  <occitan@esperanto.org>
7552         * compile.el (compilation-current-error): New var.
7553         (compilation-setup, compile-mouse-goto-error)
7554         (compile-goto-error, next-error): Use it.
7555         (compilation-skip-to-next-location): Default to t, which gives
7556         contiguous skipping like old compile (where this was redundant).
7557         (compilation-next-error): Prevent previous-* commands from moving
7558         back to message at or just before point.
7560 2004-04-01  Nick Roberts  <nick@nick.uklinux.net>
7562         * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
7563         (gdb-source-info): Don't display source at startup, if required.
7564         (gdb-show-main): New option.
7565         (gdba): Update documentation.
7566         (gdb-source): Cover case of auto-display output.
7568 2004-03-31  Luc Teirlinck  <teirllm@auburn.edu>
7570         * autorevert.el: Delete obsolete autoload's and defvar's.
7571         (auto-revert-check-vc-info): New user option.
7572         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
7573         (auto-revert-handler-vc): Delete.
7574         (auto-revert-handler): Treat return value `fast' of
7575         buffer-stale-function specially.  Check `auto-revert-check-vc-info'.
7577         * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
7578         return `fast'.
7580         * files.el (buffer-stale-function): Doc change.
7582 2004-03-31  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7584         * printing.el: New tip on Tips section.
7585         (pr-version): New version number (6.7.4).
7586         (pr-shell-file-name): Initialization fix.
7588 2004-03-31  Juri Linkov  <juri@jurta.org>
7590         * dired.el: Add autoload for `dired-do-touch'.
7591         (dired-touch-program): New var.
7592         (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
7593         (dired-no-confirm): Add `touch' to docstring.
7595         * dired-aux.el (dired-do-touch): New fun.
7596         (dired-do-chxxx): Add argument -t for touch operation.
7598         * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
7599         `dired-move-to-filename-regexp'.
7601 2004-03-31  H\e,Ae\e(Bkan Granath  <hakan.granath@kau.se>  (tiny change)
7603         * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
7605 2004-03-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7607         * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
7608         and only if the buffer was modified.
7610 2004-03-30  Kenichi Handa  <handa@m17n.org>
7612         * international/characters.el: Delete pairs for U+2308..U+230B.
7614 2004-03-29  Nick Roberts  <nick@nick.uklinux.net>
7616         * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
7617         to detect the beginning of a level 2 or 3 annotation.
7619 2004-03-29  Kenichi Handa  <handa@m17n.org>
7621         * international/ucs-tables.el (ucs-insert): Fix the error message.
7623 2004-03-29  Kenichi Handa  <handa@m17n.org>
7625         * international/mule-util.el (char-displayable-p): Fix generation
7626         of XLFD file name.
7628         * Makefile.in (setwins, setwins_almost): Change directory to $wd
7629         before finding directories by `find'.
7631 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7633         * subr.el (interactive-form): Delete.  Now implemented in C.
7635         * pcvs.el (cvs-parse-process): Workaround for Darwin.
7637         * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
7638         (vc-diff-label): New fun.
7639         (vc-diff-internal): Use it.
7641         * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
7643 2004-03-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7645         * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
7647         * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
7648         specify XML (EBNFX).
7650         * progmodes/ebnf2ps.el: Doc fix.
7651         (ebnf-version): New version number (4.1).
7652         (ebnf-syntax): Adjust customization.
7653         (ebnf-style-database): Add ebnfx entry.
7654         (ebnf-syntax-alist): Add ebnfx initialization.
7655         (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
7657         * printing.el: Doc fix.
7658         (pr-version): New version number (6.7.3).
7659         (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
7660         returns nil for mouse position.  Reported by Drew Adams
7661         <drew.adams@oracle.com>.
7662         (pr-update-menus): Modify interactive declaration.  Reported by Drew
7663         Adams <drew.adams@oracle.com>.
7665 2004-03-28  Nick Roberts  <nick@nick.uklinux.net>
7667         * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
7668         (gud-gdba-marker-filter): Log the process input and output, if
7669         required.  From Stefan Monnier.
7670         (gdb-debug-log, gdb-enable-debug-log): New variables.
7671         (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
7673 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7675         * vc-hooks.el (vc-file-not-found-hook): Fix typo.
7676         From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
7678 2004-03-27  Luc Teirlinck  <teirllm@auburn.edu>
7680         * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
7681         Call vc-find-file-hook here instead of in auto-revert-buffers.
7682         (auto-revert-buffers): Delete call to vc-find-file-hook.
7683         (auto-revert-verbose, global-auto-revert-non-file-buffers)
7684         (global-auto-revert-mode, auto-revert-set-timer)
7685         (auto-revert-handler, auto-revert-buffers): Doc fixes.
7687 2004-03-27  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
7689         * woman.el (woman-change-fonts): Rename local variable
7690         woman-font-alist to font-alist to avoid a compiler warning.
7692 2004-03-27  Dave Love  <fx@gnu.org>
7694         * emacs-lisp/rx.el (rx): Doc fix.
7695         Fix copyright years.
7697         * strokes.el (strokes-global-set-stroke-string): New function.
7698         (strokes-list-strokes): Cope with strings, not just commands.
7699         Set foreground colour of image.
7700         (strokes-global-set-stroke): Doc fix.
7702 2004-03-26  Luc Teirlinck  <teirllm@auburn.edu>
7704         * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
7705         Auto Revert mode.
7706         (Buffer-menu-files-only): New variable.
7707         (Buffer-menu-toggle-files-only): New function.
7708         (Buffer-menu-mode-map): Bind it to `T'.
7709         (Buffer-menu-mode): Mention `T' in docstring.
7710         Set buffer-stale-function.
7711         (list-buffers-noselect): Mark buffer non-modified and set
7712         Buffer-menu-files-only.
7714         * dired.el (buffer-stale-function): Remove no longer needed defvar.
7716         * autorevert.el (auto-revert-handler): Print revert message
7717         before, rather than after, reverting.
7718         (buffer-stale-function): Move to files.el.
7720         * files.el (buffer-stale-function): Move here from autorevert.el.
7722 2004-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7724         * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
7726         * calc/calc.el (calc-mode-map): Use mapc.
7728         * apropos.el (apropos-mode): Don't autoload.
7729         (apropos-symbols-internal): New fun.  Extracted from `apropos'.
7730         (apropos): Use it.
7731         (apropos-print): Add optional `text' argument.
7732         (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
7733         Don't assume point-min == 1.
7735         * bs.el (bs-buffer-list): Use buffer-local-value.
7736         (bs--set-toggle-to-show): Use with-current-buffer.
7738         * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
7739         New funs.
7740         (list-buffers-noselect): Use them.  Adjust :align-to to new style.
7742         * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
7744         * dabbrev.el (dabbrev-expand): Fix regexp construction.
7745         (dabbrev--find-expansion): Use pop.
7746         (dabbrev--search): Use match-string-no-properties.
7748         * dired.el (dired-mode): Use run-mode-hooks.
7749         (dired-move-to-end-of-filename): Use match-string.
7751         * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
7752         is bound before using it.
7753         (ediff-verbose-p): Make it into a var since it's not constant.
7755         * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
7757         * faces.el (read-face-font): Don't cons up unnecessarily.
7758         (header-line, tool-bar): Share common parts.
7760         * files.el (file-relative-name): Use compare-strings.
7762         * finder.el (finder-mode): Follow coding convention.
7764         * subr.el (read-number): New function.
7766         * ses.el (ses-read-number): Move to subr.el.
7767         (ses-set-header-row): Use read-number.
7769 2004-03-26  Andre Spiegel  <spiegel@gnu.org>
7771         * vc-hooks.el (vc-arg-list): New function, which handles both
7772         compiled and uncompiled code.
7773         (vc-default-workfile-unchanged-p): Use it.
7775         * vc.el (vc-print-log): Undo prev change, use new function
7776         vc-arg-list from vc-hooks.el.
7778 2004-03-26  Masatake YAMATO  <jet@gyve.org>
7780         * simple.el (completion-setup-function): Emphasize the
7781         first uncommon characters in the completions; and de-emphasize
7782         the common prefix substrings.
7783         (completion-emphasis): New face.
7784         (completion-de-emphasis): New face.
7786 2004-03-25  Juanma Barranquero  <lektu@terra.es>
7788         * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
7789         Comment out (it's unused and unfinished code).
7791 2004-03-25  Sam Steingold  <sds@gnu.org>
7793         * vc.el (vc-print-log): Fix a bug in the last patch:
7794         backend-function may be a byte-compiled object, not a lambda.
7796 2004-03-25  Juri Linkov  <juri@jurta.org>
7798         * descr-text.el (describe-property-list): Add a button
7799         for `face' property that calls `describe-face'.
7800         Suggested by luis fernandes <elf@ee.ryerson.ca>
7802         * international/mule.el (keyboard-coding-system):
7803         * kmacro.el (kmacro-call-macro): Fix docstring.
7805         * dired.el: Fix comments.
7807         * textmodes/fill.el (fill): Fix Info link.
7809         * font-lock.el (fast-lock, lazy-lock):
7810         * jit-lock.el (jit-lock): Remove links to removed Support Modes
7811         Info node.
7813         * eshell/eshell.el (eshell): Fix broken info-link.
7815         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
7816         * eshell/em-banner.el (eshell-banner):
7817         * eshell/em-smart.el (eshell-smart):
7818         * eshell/esh-cmd.el (eshell-cmd):
7819         Comment out broken info-links to incomplete Info manual.
7821         * info-xref.el: Fix commentary.
7823 2004-03-25  Kevin Ryde  <user42@zip.com.au>
7825         * info-xref.el (info-xref-check-buffer): Report empty filename parts.
7826         Remove spurious node duplicate suppression, doesn't work, not wanted.
7827         (info-xref-output): Take format style args, add "sit-for 0" to let
7828         user see the results as they progress.
7829         (info-xref-check-all-custom): New function.
7831 2004-03-25  Nick Roberts  <nick@nick.uklinux.net>
7833         * gdb-ui.el: Moved to progmodes.
7835 2004-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7837         * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
7839 2004-03-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
7841         * calendar/appt.el (appt-check): Remove superfluous progn.
7842         When finished with diary buffer: if it was not being displayed
7843         before, kill it; otherwise restore its original state.
7844         Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
7846         * calendar/calendar.el (calendar-set-mode-line): Use total
7847         available mode-line width, rather than frame-width.
7849         * calendar/diary-lib.el (fancy-diary-display): Set mode-line
7850         after mode change so effect not lost.
7852 2004-03-23  Dave Love  <fx@gnu.org>
7854         * dired.el (dired) <defgroup>: Add link to manual.
7855         (dired-font-lock-keywords): Add highlighting on unusual permissions.
7856         (dired-revert): Use dolist.
7857         (dired-mode-map): Add U binding.
7858         (dired-mode): Add font-lock-beginning-of-syntax-function.
7859         (dired-garbage-files-regexp): Make it a defcustom.
7861 2004-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7863         * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
7864         is equivalent to nil.
7865         (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
7866         (vc-arch-mode-line-string): Accept `added' state.
7867         (vc-arch-state): Use inode-sigs if available.
7868         (vc-arch-add-tagline): Rename from vc-arch-add-tag.
7869         Copy&delete existing id file if any.  Fallback if uuidgen is absent.
7870         (vc-arch-tagline-re): New var.
7871         (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
7872         New functions.
7873         (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
7874         (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
7876         * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
7877         (vc-file-not-found-hook): Use it.
7879         * diff-mode.el (diff-default-read-only): Change default.
7880         (diff-mode-hook): Make it a defcustom.  Add some options.
7881         (diff-mode-map): Bind diff-refine-hook.
7882         (diff-yank-handler): New var.
7883         (diff-yank-function): New fun.
7884         (diff-font-lock-keywords): Use them.
7885         (diff-end-of-file): Handle case where file-header looks like diff text.
7886         (diff-hunk-kill): Adjust to "new" hunk-next behavior.
7887         (diff-file-kill): Delete a subsequent empty line, if applicable.
7888         (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
7889         (diff-find-file-name): Use it.
7890         (diff-tell-file-name): New command.
7891         (diff-mode): Be careful with view-mode.
7892         (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
7893         New functions, for use in diff-mode-hook.
7894         (diff-find-source-location): Catch "regex too large" errors.
7895         (diff-apply-hunk, diff-test-hunk): Go to old or new file.
7896         (diff-refine-hunk): New command.
7898         * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
7899         (smerge-context-menu-map): Remove unused var.
7900         (smerge-keep-all): Preserve markers.
7901         (smerge-keep-n): New fun.
7902         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
7903         (smerge-keep-current, smerge-ediff): Use it.
7904         (smerge-kill-current): Use it.  Make it work on some 3-part conflicts.
7905         (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
7906         (smerge-resolve): Resolve trivial 3-part conflicts.
7908 2004-03-23  Juri Linkov  <juri@jurta.org>
7910         * man.el (Man-width): New var.
7911         (Man-getpage-in-background): Use it.
7912         (Man-support-local-filenames): New var and fun.
7913         (Man-build-man-command): Don't add a second %s.
7914         (Man-fontify-manpage): Clean up message.
7915         (Man-mode): Set outline-regexp, outline-level,
7916         imenu-generic-expression.
7918         * woman.el (woman-fill-frame): Doc fix.
7919         (woman-decode-region): Use window-width instead of frame-width.
7921         * abbrevlist.el (list-one-abbrev-table):
7922         * descr-text.el (describe-char):
7923         * international/mule-diag.el (describe-current-coding-system):
7924         * international/quail.el (quail-insert-decode-map):
7925         Use window-width instead of frame-width.
7927         * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
7928         (jka-compr-mode-alist-additions): Add tbz.
7929         (jka-compr-write-region, jka-compr-insert-file-contents):
7930         Add message for undefined compress-program.
7931         (jka-compr-write-region): Remove redundant var bindings.
7933         * dired-x.el (dired-guess-shell-alist-default): Add choices for
7934         extracting files into subdirectory.  Add tbz and dz.  Fix regexps.
7935         Add extensions .[0-9] for man and nroff, and .pod for perldoc.
7936         (dired-man): Use dired-guess-shell-command.
7937         (dired-guess-shell-case-fold-search): Change defvar to defcustom.
7938         Change default nil to t.
7940         * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
7941         (dired-compare-directories): Add default value for empty input.
7943         * help-at-pt.el: Move suggestions for key bindings to Commentary.
7945         * time.el (display-time-string-forms): Fix help-echo date format.
7947 2004-03-22  Luc Teirlinck  <teirllm@auburn.edu>
7949         * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
7950         (buffer-stale-function): New variable.
7951         (auto-revert-list-diff, auto-revert-dired-file-list)
7952         (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
7953         (auto-revert-handler): Take over some functionality of deleted
7954         functions.
7955         (auto-revert-buffers): Delete call to auto-revert-buffer-p.
7957         * dired.el (dired-directory-changed-p): New fun, extracted from
7958         dired-internal-noselect.
7959         (dired-buffer-stale-p): New fun.
7960         (dired-internal-noselect): Use dired-directory-changed-p.
7961         Eliminate revert messages.
7962         (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
7964 2004-03-23  Kenichi Handa  <handa@m17n.org>
7966         * international/characters.el: Setup syntaxes for more parentheses
7967         Unicode characters.
7969         * international/mule-cmds.el (select-safe-coding-system):
7970         Merge coding-system and auto-cs before comparing them.
7972 2004-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7974         * emacs-lisp/pp.el (pp-eval-expression): Simplify.
7976         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
7977         normal-auto-fill-function and comment-indent-function.
7978         The default values now work just as well.
7979         Don't set font-lock-beginning-of-syntax-function since we already set
7980         syntax-begin-function.
7981         (lisp-outline-level): Put ;;;###autoload at same level as (.
7982         (prin1-char): Quote special chars.
7984         * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
7985         than with-no-warnings.
7987         * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
7988         if the source location can't be found.
7989         (edebug-compute-previous-result): Use prin1-char.
7991         * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
7992         (debug-ignored-errors): Add an entry.
7994         * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
7995         (byte-compile-file): Output warning when deleting a file.
7997         * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
7998         (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
8000         * emacs-lisp/byte-opt.el (byte-compile-log-lap)
8001         (byte-compile-inline-expand): Use backquote.
8002         (byte-optimize-pure-func): Rename from byte-optimize-concat.
8003         (symbol-name, regexp-opt, regexp-quote): Mark as pure.
8005         * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
8007         * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
8009 2004-03-22  Juri Linkov  <juri@jurta.org>
8011         * finder.el (finder-known-keywords): Fix data, tex, unix.
8013         * play/landmark.el: Fix keywords.
8015         * language/ethio-util.el (ethio-find-file): Doc fix.
8017         * emacs-lisp/warnings.el: Doc fix.
8019         * textmodes/ispell.el (ispell-help): Doc fix.
8021 2004-03-21  Luc Teirlinck  <teirllm@auburn.edu>
8023         * format.el (format-insert-file): Always return a list of two
8024         elements, like insert-file-contents does.
8026 2004-03-21  Andre Spiegel  <spiegel@gnu.org>
8028         * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
8029         and vc-BACKEND-diff.
8030         (vc-print-log): If the print-log implementation supports it, use
8031         the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
8032         (vc-version-diff, vc-diff-internal): Doc fixes.
8034         * vc-hooks.el (vc-default-workfile-unchanged-p): If the
8035         implementation supports it, let diff output go to *vc*,
8036         not *vc-diff*, since this is an internal call.
8038         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
8040         * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
8042         * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
8044 2004-03-21  Dave Love  <fx@gnu.org>
8046         * progmodes/cfengine.el (cfengine-mode):
8047         Set parse-sexp-ignore-comments.
8049         * emacs-lisp/rx.el (rx): Work at compile time, not run time.
8051 2004-03-21  Juanma Barranquero  <lektu@terra.es>
8053         * allout.el (allout-mode): Fix docstring.
8055 2004-03-20  Luc Teirlinck  <teirllm@auburn.edu>
8057         * files.el (insert-directory): Fix bug if SWITCHES is a list.
8059         * autorevert.el (auto-revert-interval): Make new value take
8060         effect immediately when set through Custom.
8061         (auto-revert-set-timer): Add interactive declaration.
8063 2004-03-19  David Ponce  <david@dponce.com>
8065         * ruler-mode.el (ruler-mode-header-line-format-old):
8066         Don't `make-variable-buffer-local'.
8067         (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
8068         (ruler-mode-header-line-format): Simply funcall the above.
8069         (ruler-mode): Use `make-local-variable' and `kill-local-variable'
8070         to save/restore a previous header line format.
8071         (ruler-mode-space): Don't depend on a numeric WIDTH value.
8072         (ruler-mode-ruler): Use symbolic display elements for scrollbar,
8073         fringes and margins width.
8074         (ruler-mode-ruler-function): Default to ruler-mode-ruler.
8076 2004-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8078         * log-edit.el (log-edit-font-lock-keywords): Typo.
8080         * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
8081         (tex-send-tex-command): Rather than here.
8082         (tex-compilation-parse-errors): Simplify.
8084         * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
8086         * time.el (display-time-string-forms): Add help-echo with date on time.
8088         * composite.el (compose-region): Use restore-buffer-modified-p.
8090         * disp-table.el (standard-display-8bit): Simplify.
8092         * server.el (server-process-filter): Delete temp frame.
8094         * add-log.el (add-change-log-entry): Simplify.
8096 2004-03-19  Kim F. Storm  <storm@cua.dk>
8098         * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
8099         (hexl-follow-line): Don't require 'fringe.
8101         * progmodes/compile.el (compilation-start): Always set
8102         compilation-last-buffer and return it.
8104 2004-03-17  Luc Teirlinck  <teirllm@auburn.edu>
8106         * simple.el (clone-buffer): Doc fix.
8108 2004-03-18  Juanma Barranquero  <lektu@terra.es>
8110         * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
8112 2004-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8114         * log-edit.el (log-edit-font-lock-keywords): New var.
8115         (log-edit-mode): Use it.
8117 2004-03-17  Nick Roberts  <nick@nick.uklinux.net>
8119         * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
8120         properly for watching in speedbar.
8122 2004-03-17  Masatake YAMATO  <jet@gyve.org>
8124         * smerge-mode.el (smerge-popup-context-menu):
8125         Put `unwind-protect' around `overlay-put' and `popup-menu'.
8127 2004-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8129         * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
8130         (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
8131         Take sealed revisions into account.
8132         (vc-arch-checkin): Extract a summary line from the message.
8134 2004-03-16  Masatake YAMATO  <jet@gyve.org>
8136         * register.el (register): Provide `register' feature.
8138 2004-03-15  Masatake YAMATO  <jet@gyve.org>
8140         Added context menu support in smerge mode.
8141         Most of the part is written by Stefan Monnier.
8143         * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
8144         New keymap and menu.
8145         (smerge-text-properties): New function.
8146         (smerge-remove-props): New function.
8147         (smerge-popup-context-menu): New function.
8148         (smerge-resolve): Call `smerge-remove-props'.
8149         (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
8150         (smerge-keep-current): Ditto.
8151         (smerge-kill-current): New function.
8152         (smerge-match-conflict): Put text properties.
8153         Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
8155 2004-03-15  David Ponce  <david@dponce.com>
8157         * ruler-mode.el: (ruler-mode-left-fringe-cols)
8158         (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
8159         (ruler-mode-right-scroll-bar-cols): Remove.
8160         (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
8161         (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
8162         Use fringe-columns and scroll-bar-columns.
8164 2004-03-15  Masatake YAMATO  <jet@gyve.org>
8166         * hl-line.el (hl-line-range-function): New variable.
8167         (hl-line-move): New function.
8168         (global-hl-line-highlight): Use `hl-line-move'.
8169         (hl-line-highlight): Ditto.
8171         * scroll-bar.el (scroll-bar-columns):
8172         * fringe.el (fringe-columns): New function derived from ruler-mode.el.
8174         * ruler-mode.el (top-level): Require scroll-bar and fringe.
8175         (ruler-mode-left-fringe-cols)
8176         (ruler-mode-right-fringe-cols): Use `fringe-columns'.
8177         (ruler-mode-right-scroll-bar-cols)
8178         (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
8179         (ruler-mode-ruler-function): New variable.
8180         (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
8181         if the value for `ruler-mode-ruler-function'is given.
8183         * hexl.el (hexl-mode-hook): Make the hook customizable.
8184         (hexl-address-area, hexl-ascii-area): New customize variables.
8185         (hexlify-buffer): Put font-lock-faces on the address area and
8186         the ascii area.
8187         (hexl-activate-ruler): New function.
8188         (hexl-follow-line): New function.
8189         (hexl-highlight-line-range): New function.
8190         (hexl-mode-ruler): New function.
8192 2004-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8194         * vc-hooks.el (vc-handled-backends): Add Arch.  Move MCVS down.
8195         (vc-default-find-file-hook): New fun.
8196         (vc-find-file-hook): Call new find-file-hook operation.
8198         * vc-arch.el: New file.
8200 2004-03-12  Jesper Harder  <harder@ifa.au.dk>
8202         * info-look.el (info-lookup): Reuse an existing Info window.
8204 2004-03-12  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
8206         * woman.el (woman-preserve-ascii): Default value changed to t and
8207         doc string revised.
8209 2004-03-12  Richard M. Stallman  <rms@gnu.org>
8211         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
8212         Fix minor bug.
8214         * replace.el (occur-engine): Change message for count of matches.
8216         * emacs-lisp/bytecomp.el (byte-compile-get-constant):
8217         For strings, do compare text properties.
8219 2004-03-11  Daniel Pfeiffer  <occitan@esperanto.org>
8221         * progmodes/compile.el (compile-auto-highlight)
8222         (compilation-error-list, compilation-old-error-list)
8223         (compilation-parse-errors-function, compilation-parsing-end)
8224         (compilation-error-message, compilation-directory-stack)
8225         (compilation-enter-directory-regexp-alist)
8226         (compilation-leave-directory-regexp-alist)
8227         (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
8228         (compilation-current-file, compilation-regexps): Remove vars.
8230         (compile-error-at-point, compilation-error-filedata)
8231         (compilation-error-filedata-file-name, compile-reinitialize-errors)
8232         (compilation-next-error-locus, compilation-forget-errors)
8233         (count-regexp-groupings, compilation-parse-errors)
8234         (compile-collect-regexps, compile-buffer-substring): Remove funs.
8236         (compile-internal): Make obsolete.
8238         (compilation-first-column, compilation-error)
8239         (compilation-directory-matcher, compilation-page-delimiter)
8240         (compilation-mode-font-lock-keywords, compilation-debug)
8241         (compilation-error-face, compilation-warning-face)
8242         (compilation-info-face, compilation-line-face)
8243         (compilation-column-face, compilation-enter-directory-face)
8244         (compilation-leave-directory-face, compilation-skip-threshold)
8245         (compilation-skip-visited, compilation-context-lines): New vars.
8247         (compilation-warning-face, compilation-info-face)
8248         (compilation-message-face): New faces.
8250         (compilation-error-regexp-alist-alist): New constant.
8252         (compilation-face, compilation-directory-properties)
8253         (compilation-assq, compilation-error-properties, compilation-start)
8254         (define-compilation-mode, compilation-loop)
8255         (compilation-set-window): New functions.
8257         (compile): Additional argument for interactive compiles like TeX.
8259         * progmodes/grep.el (kill-grep): Move here from compile.el
8260         (grep-error, grep-hit-face, grep-error-face)
8261         (grep-mode-font-lock-keywords): New variables.
8262         (grep-regexp-alist): Simplify regexp and add `binary' case.
8263         (grep-mode): New mode.
8264         (grep-process-setup): Simplify.
8266 2004-03-11  Jason Rumney  <jasonr@gnu.org>
8268         * net/ldap.el (ldap-search-internal): Handle file URLs with drive
8269         letters on DOS/Windows.
8271 2004-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8273         * server.el (server-name): New var.
8274         (server-socket-dir): New var to replace server-socket-name.
8275         (server-start): Use them.
8277 2004-03-11  Simon Josefsson  <jas@extundo.com>
8279         * mail/smtpmail.el (smtpmail-read-response): Abort if process has
8280         died to avoid infloop.  Reported by Jonathan Glauner
8281         <jglauner@sbum.org>.
8283 2004-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8285         * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
8286         (smerge-mode-menu): Use it to deactivate menu entries.
8287         (smerge-keep-current): New fun.
8288         (smerge-keep-current): Use it.
8290 2004-03-10  John Paul Wallington  <jpw@gnu.org>
8292         * foldout.el (foldout-fold-list, foldout-modeline-string):
8293         Declare them as variables, not constants.
8295 2004-03-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8297         * ps-print.el: Modification to print *Messages* buffer.
8298         (ps-print-version): New version 6.6.4.
8299         (ps-message-log-max): New fun.
8300         (ps-spool-without-faces, ps-spool-with-faces)
8301         (ps-count-lines-preprint): Code fix.
8303         * printing.el: New tips in Tips section.
8305 2004-03-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8307         * delim-col.el: Doc fix.
8309         * printing.el: Doc fix.  New doc section (Tips).
8311 2004-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8313         * type-break.el (type-break-emacs-variant): Remove.
8314         (type-break-run-at-time, type-break-cancel-function-timers):
8315         Use fboundp rather than version name and number.
8317 2004-03-09  Masatake YAMATO  <jet@gyve.org>
8319         * hexl.el (hexl-mode): Use `make-local-variable' instead of
8320         `make-variable-buffer-local'.
8322 2004-03-08  Michael Albinus  <Michael.Albinus@alcatel.de>
8324         * find-dired.el (find-dired): Call `shell-command' instead of
8325         `start-process-shell-command'.  By this, Tramp takes over
8326         handling of remote directories.
8328 2004-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8330         * newcomment.el (comment-use-global-state): New var.
8331         (comment-search-forward): Use it.
8333         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
8335         * cus-edit.el (fill) <defgroup>: Move to fill.el.
8337         * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
8338         (enable-kinsoku): Make it a defcustom.
8339         (fill-comment-paragraph): Don't rely on fill-prefix to bound the
8340         paragraph to same-comment-start-marker.
8342 2004-03-07  Dave Love  <fx@gnu.org>
8344         * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
8345         (browse-url-mail): Use it.
8347         * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
8348         (rfc2368-unhexify-string): Use replace-regexp-in-string.
8350 2004-03-07  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
8352         * woman.el (woman-man.conf-path): Doc fix.
8353         (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
8355 2004-03-07  Eli Zaretskii  <eliz@gnu.org>
8357         * sort.el (sort-columns): Remove ms-dos from the list of systems
8358         where the external `sort' command is not used.
8360 2004-03-07  Kim F. Storm  <storm@cua.dk>
8362         * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
8363         (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
8364         from overlay-arrow-variable-list.
8365         (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
8367 2004-03-06  Nick Roberts  <nick@nick.uklinux.net>
8369         * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
8370         overlay arrow string properly for the assembler buffer.
8372 2004-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8374         * mail/sendmail.el (mail-mode): Fix last change.
8376 2004-03-05  Nick Roberts  <nick@nick.uklinux.net>
8378         * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
8379         for the assembler buffer.
8380         (gdb-assembler-custom): Position the overlay arrow.
8381         (gdb-put-arrow, gdb-remove-arrow): Delete functions.
8383 2004-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8385         * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
8387         * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
8388         regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
8390         * mail/sendmail.el (mail-mode): Set comment-start-skip.
8392         * newcomment.el (uncomment-region): Allow non-terminated comment.
8393         (comment-normalize-vars): Check the user-specified comstart marker.
8395 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
8397         * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
8398         Otherwise, do use it if the region only contains font-lock text
8399         properties.
8401 2004-03-04  Masatake YAMATO  <jet@gyve.org>
8403         * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
8404         as the callback function for eldoc.
8405         (hexl-print-current-point-info): New function.
8406         (hexl-current-address): Print the address in both decimal
8407         and hexadecimal format.
8409 2004-03-04  Richard M. Stallman  <rms@gnu.org>
8411         * mail/rmail.el (rmail-convert-to-babyl-format):
8412         Specify t for UNIBYTE when calling mail-unquote-printable-region.
8414         * mail/mail-utils.el (mail-unquote-printable-region):
8415         New arg UNIBYTE.
8417         * startup.el (command-switch-alist): Doc fix.
8419         * simple.el (undo): Temporarily set this-command to `undo-start',
8420         then set it to `undo' once undo-start returns without error.
8422         * simple.el (minibuffer-history-sexp-flag): Doc fix.
8424         * simple.el (kill-line): Don't disregard trailing whitespace
8425         in eol condition, if show-trailing-whitespace is set.
8427         * mouse-sel.el (mouse-sel-has-been-enabled): New var.
8428         (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
8429         When disabling, restore old values only if mouse-sel-has-been-enabled.
8431         * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
8432         (isearch-{-char): New function.
8433         (isearch-mode-map): Bind { to isearch-{-char.
8435         * font-lock.el (lisp-font-lock-keywords-2):
8436         Turn off the CL with-... and do-... general patterns.
8437         Instead, recognize several specific with... and do... constructs.
8439         * files.el (switch-to-buffer-other-window):
8440         Bind same-window-buffer-names and same-window-regexps to nil.
8441         (switch-to-buffer-other-frame): Likewise.
8443 2004-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8445         * textmodes/fill.el (fill-comment-paragraph): Be more careful when
8446         recognizing leading comment on code line.
8448 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8450         * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
8451         hidden files/directories.
8453 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8455         * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
8456         only comment-start (in case the mode hasn't set it).
8458         * Makefile.in (AUTOGENEL): New var.
8459         (bootstrap-prepare): Rename from bootstrap-clean.
8460         Don't remove elc files.
8461         (maintainer-clean): New target.
8463         * xml.el (xml-get-attribute-or-nil): Simplify.
8465 2004-03-02  Juri Linkov  <juri@jurta.org>
8467         * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
8468         (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
8469         URL to prevent their substitution with the environment variable
8470         values by browsers.
8472 2004-03-03  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8474         * ps-print.el: Doc fix.
8475         (ps-print-version): New version number (6.6.3).
8476         (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
8477         Docstring fix.
8478         (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
8479         before printing.
8480         (ps-time-stamp-yyyy-mm-dd): New fun.
8481         (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
8483 2004-03-02  Kim F. Storm  <storm@cua.dk>
8485         * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
8487 2004-03-01  Juanma Barranquero  <lektu@terra.es>
8489         * allout.el (allout-rebullet-heading): Fix typo in docstring.
8491         * desktop.el (desktop-file-version)
8492         (desktop-after-read-hook): Fix typos.
8493         (desktop-clear-preserve-buffers): Remove redundant info in
8494         docstring already shown by the obsolescence message.
8495         (desktop-truncate, desktop-internal-v2s)
8496         (desktop-value-to-string): Change argument name to match docstring.
8498         * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
8500         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
8501         docstring.
8503 2004-02-29  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8505         * printing.el: Replace "As Is..." in PostScript file print/preview by
8506         "No Preprocessing...".  Suggested by Colin Marquardt
8507         <_marquardt_@zmd.de>.
8508         (pr-insert-section-4): Adjust buffer interface.
8510 2004-02-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
8512         Version 2.0.39 of Tramp released.
8514         * net/tramp.el (tramp-handle-file-local-copy)
8515         (tramp-handle-write-region, tramp-open-connection-rsh):
8516         Variable name typo.  Small change.  From Patrick Tullmann
8517         <tullmann@flux.utah.edu>.
8518         (tramp-process-connection-type): New variable.
8519         (tramp-maybe-open-connection): Use it.
8520         (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
8521         (tramp-touch): Set last-modified time of a remote file.
8522         (tramp-handle-write-region): Say which function is used when encoding.
8524 2004-02-29  Michael Albinus  <Michael.Albinus@alcatel.de>
8526         * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
8527         case of non-existing filename, too.  Reported by Christoph Bauer
8528         <c_bauer@informatik.uni-kl.de>.
8529         (tramp-smb-get-file-entries): The directory in question should
8530         have permissions "drwxrwxrwx".  Just virtual, because we don't
8531         know the real permissions.  Don't we know?
8532         (tramp-smb-prompt): Add virtual prompt from listing shares, too.
8533         (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
8534         (tramp-smb-wait-for-output): Optimize algorithm getting pending
8535         output.  If it was received chunkwise, there have been problems.
8536         Remove the "prompt not found" error message; it is obvious.
8537         Simplify algorithm.
8538         (tramp-smb-process-running): Remove.  Since we acknowledge the
8539         virtual prompt for shares, there's no need for distinction of
8540         reading shares (process ends afterwards) and interactive mode of
8541         smblient.
8542         (tramp-smb-open-connection): Setting process sentinel removed.
8543         (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
8544         "NT_STATUS_NETWORK_ACCESS_DENIED".
8545         (tramp-smb-maybe-open-connection): Set `process-connection-type'
8546         to 'pty.  Suggested by Piet van Oostrum <piet@cs.uu.nl>.
8547         (top-level): Setting default value in `tramp-default-method-alist'
8548         corrected.  Order of USER and HOST have been wrong.
8549         Nobody complained for months ...
8550         (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
8551         (tramp-smb-open-connection): Clear password cache if login has failed.
8553         * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
8554         `tramp-unified-filenames'.
8555         (tramp-completion-mode): Make test for XEmacs explicitely.
8556         `event-to-character' can exists in Emacs packages too.
8557         Reported by Matt Swift <swift@alum.mit.edu>.
8558         (tramp-buffer-name): Buffer name must contain the user if exists.
8559         Reported by Adrian Phillips <a.phillips@met.no>.
8560         (tramp-do-copy-or-rename-file): Handle out-of-band methods.
8561         Call `tramp-do-copy-or-rename-file-out-of-band' this case.
8562         (tramp-do-copy-or-rename-file-out-of-band): Rename from
8563         `tramp-do-copy-or-rename-file-one-local', because it handles also
8564         the case both files use the same out-of-band method.
8565         Implementation added.
8566         (tramp-handle-file-local-copy, tramp-handle-write-region):
8567         Out-of-band handling removed.  `copy-file' called instead, which
8568         calls `tramp-do-copy-or-rename-file-out-of-band'.
8569         (tramp-action-password): Check for out-of-band method removed.
8570         This function is used for 'login-program.
8571         (tramp-post-connection): Use `tramp-method-out-of-band-p' when
8572         appropriate.
8573         (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
8574         and `tramp-parse-sknownhosts'.
8575         (tramp-completion-function-alist): It's a defvar now, because we
8576         want to apply the optimized `tramp-set-completion-function'
8577         instead of a static list.
8578         (tramp-set-completion-function): Implementation tuned.
8579         Avoid double entries, and entries where the function or the
8580         file/directory doesn't exist.
8581         (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
8582         for SSH2.
8583         (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
8584         (tramp-handle-dired-compress-file): New function.
8585         (tramp-async-proc): New variable.
8586         (tramp-handle-shell-command): Adding asynchronous processes.
8587         They are far from being perfect, but it works at least for
8588         `find-grep-dired' and `find-name-dired' in Emacs 21.4.
8589         (top-level): Require password.el if visible.  Should be mandatory
8590         once No Gnus has found its way into (X)Emacs.
8591         (tramp-read-passwd): Invoke `password-read' if available,
8592         `read-passwd' otherwise.  `ange-ftp-read-passwd' isn't used as
8593         fallback any longer.
8594         (tramp-clear-passwd): New function.
8595         (tramp-process-actions, tramp-process-multi-actions):
8596         Clear password cache if login has failed.
8598         * net/tramp-ftp.el (Commentary): Remove pointer to EFS.  It has
8599         its own module.
8600         (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
8601         `ange-ftp-ftp-name-res'.  There could be incorrect values from
8602         previous calls in case the "ftp" method is used in the Tramp file
8603         name.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
8605 2004-02-28  Richard M. Stallman  <rms@gnu.org>
8607         * term.el (term-mouse-paste): Call mouse-set-point.
8609         * thumbs.el: New file.
8611 2004-02-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8613         * progmodes/ebnf-abn.el: Doc fix.
8615         * progmodes/ebnf-bnf.el: Doc fix.
8616         (ebnf-repeat): Code fix.
8618         * progmodes/ebnf2ps.el: Doc fix.
8619         (ebnf-syntax-directory, ebnf-syntax-file): New funs.
8621 2004-02-28  Juri Linkov  <juri@jurta.org>
8623         * ffap.el (dired-at-point): Additional writability test for
8624         relative directory names.
8625         (dired-at-point-prompter): Treat directories as a directory, get
8626         the directory component from files.
8627         (ffap-string-at-point): Return string from region if region is active.
8628         (ffap-file-at-point): Remove redundant code.
8630 2004-02-28  Kim F. Storm  <storm@cua.dk>
8632         * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
8633         Initialize margin area images to nil.
8634         (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
8635         (breakpoint-enabled-bitmap-face)
8636         (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
8637         (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
8638         (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
8639         (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
8640         (gdb-reset): Use gdb-remove-breakpoint-icons.
8641         (gdb-put-string): Add dprop arg to specify alternative display
8642         property (for setting fringe bitmap).
8643         (gdb-remove-strings): Doc fix.
8644         (gdb-put-breakpoint-icon): New defun which displays a breakpoint
8645         icon in fringe (if available), or else as icon or text in display
8646         margin.  Creates necessary icons in breakpoint-bitmap,
8647         breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
8648         Also make left window margin if required.
8649         (gdb-remove-breakpoint-icons): New defun to remove breakpoint
8650         icons inserted by gdb-put-breakpoint-icon.  Remove left margin if
8651         no longer needed.
8652         (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
8653         gdb-put-breakpoint-icon.
8654         (gdb-assembler-mode): Don't set left-margin-width here.
8656 2004-02-27  Kevin Ryde  <user42@zip.com.au>
8658         * info-look.el: In scheme-mode symbol regexp, disallow backquote and
8659         comma, so that it DTRT in macros.
8661 2004-02-27  Markus Rost  <rost@mathematik.uni-bielefeld.de>
8663         * progmodes/sh-script.el (sh-shell-arg)
8664         (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
8665         (sh-leading-keywords, sh-other-keywords): Fix custom type.
8667 2004-02-27  Dan Nicolaescu  <dann@ics.uci.edu>
8669         * faces.el (face-spec-set-match-display): Add a new attribute,
8670         `min-colors'.
8671         (region, highlight, secondary-selection): Use `min-colors'.
8673         * custom.el (defface): Add documentation for `min-colors'.
8675         * font-lock.el (font-lock-comment-face, font-lock-string-face)
8676         (font-lock-keyword-face, font-lock-function-name-face)
8677         (font-lock-variable-name-face, font-lock-constant-face):
8678         Use `min-colors'.
8680         * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
8682 2004-02-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8684         * progmodes/ebnf2ps.el: Doc fix.  For compatibility with Emacs 20,
8685         define assq-delete-all if it's not defined.
8686         (ebnf-generate-region): Code fix.
8688         * printing.el: Doc fix.
8689         (pr-version): New version number (6.7.2).
8690         (pr-command): Return empty string if command is an empty string.
8692 2004-02-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8694         * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
8696         * progmodes/ebnf2ps.el: Doc fix.  Accept ABNF (Augmented BNF).  New
8697         arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
8698         semi-down-full.  Fix a bug on productions like test = {"test"}* | (
8699         "tt" ["test"] ).  Reported by Markus Dreyer
8700         <mdreyer@ix.urz.uni-heidelberg.de>.
8701         (ebnf-version): New version number (4.0).
8702         (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
8703         (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
8704         (ebnf-delete-style): New commands.
8705         (ebnf-directory, ebnf-file): New funs.
8706         (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
8707         (ebnf-production-name-p, ebnf-stop-on-error): New options.
8708         (ebnf-syntax-alist): New var.
8709         (ebnf-element-width): New fun replacing ebnf-list-width.
8710         (ebnf-arrow-shape, ebnf-syntax): Custom fix.
8711         (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
8712         (ebnf-prologue): Adjust vars.
8713         (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
8714         (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
8715         (ebnf-check-style-values, ebnf-generate-production)
8716         (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
8717         (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
8718         (ebnf-token-repeat): Code fix.
8720         * progmodes/ebnf-yac.el: Doc fix.  Handle Bison pragmas %nonassoc,
8721         %right, %left and %prec.  Suggested by Matthew K. Junker
8722         <junker@alum.mit.edu>.
8723         (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
8725         * progmodes/ebnf-iso.el: Doc fix.
8726         (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
8727         (ebnf-iso-lex): Code fix.
8729         * progmodes/ebnf-bnf.el: Doc fix.
8730         (ebnf-bnf-lex): Code fix.
8732         * progmodes/ebnf-otz.el: Doc fix.
8734 2004-02-23  Luc Teirlinck  <teirllm@auburn.edu>
8736         * abbrev.el (write-abbrev-file): Make argument optional.  Doc fix.
8737         (abbrev-prefix-mark): Doc fix.
8739 2004-02-23  Nick Roberts  <nick@nick.uklinux.net>
8741         * gdb-ui.el (gud-watch): Load tooltip, if necessary.
8742         (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
8743         (gdb-var-delete): Make interactive (really).
8744         (gdb-edit-value): Make non-interactive.
8746         * progmodes/gud.el (gud-speedbar-menu-items):
8747         Add gdb-var-delete and, indirectly, gdb-edit-value.
8748         (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
8749         (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
8750         (gud-gdb-marker-filter): Add comment for annotations.
8752 2004-02-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
8754         * calendar/calendar.el (generate-calendar)
8755         (calendar-read-date): Prevent display of BC calendars once more -
8756         reverts 2003-10-01 change.
8757         (generate-calendar-month): Doc fix.
8759 2004-02-03  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)
8761         * calendar/diary-lib.el (fancy-diary-display): Don't rely on
8762         return value of increment-calendar-month.
8764 2004-02-21  Stephen Compall  <s11@member.fsf.org>
8766         * saveplace.el (save-place-forget-unreadable-files)
8767         (save-place-save-skipped, save-place-skip-check-regexp): New vars.
8768         (save-place-forget-unreadable-files): New function.
8769         (save-place-alist-to-file): Use it to filter out files that are
8770         no longer readable.
8772         * textmodes/texinfo.el (texinfo-insert-@item): Look for the
8773         current Texinfo environment, using the same method as in
8774         `texinfo-insert-@end', and insert a space rather than a newline if
8775         point in a @table environment.
8777 2004-02-21  Juri Linkov  <juri@jurta.org>
8779         * ffap.el (ffap-file-at-point): Try parent directories.
8781 2004-02-21  Klaus Zeitler  <kzeitler@lucent.com>
8783         * vcursor.el (vcursor-modifiers): New defcustom.
8784         (vcursor-cs-binding): Use vcursor-modifiers instead of a
8785         hard-coded list.
8787 2004-02-21  Masatake YAMATO  <jet@gyve.org>
8789         * play/animate.el (animate-birthday-present): Accept names other
8790         than `Sarah', too.
8792 2004-02-21  Juri Linkov  <juri@jurta.org>
8794         * startup.el: Remove table of command line arguments from the
8795         Commentary section.
8797 2004-02-20  John Wiegley  <johnw@newartisans.com>
8799         * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
8800         again" modifier from 'e' to 'E', since 'e' is also used by the
8801         "file extension" modifier.
8803 2004-02-19  Luc Teirlinck  <teirllm@auburn.edu>
8805         * help-fns.el (describe-categories): Doc fix.
8807 2003-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
8809         * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
8810         temporary file for buffer already visiting one.  This change makes
8811         output likely to be directly usable by patch program.
8812         Suggested by Adrian Aichner  <adrian@xemacs.org>
8814 2004-02-20  Nick Roberts  <nick@nick.uklinux.net>
8816         * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
8817         case of variables defined in compound statements.
8818         (gdb-setup-windows, gdb-source-info, gdb-source-info):
8819         Simplify constructions using switch-to-buffer.
8821 2004-02-19  Simon Josefsson  <jas@extundo.com>
8823         * play/morse.el: Fix typo.
8824         (morse-code): Add @.
8826 2004-02-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
8828         * calendar/appt.el (appt-display-format): Change default to
8829         'ignore, for backwards compatibility.
8830         (appt-display-message): If appt-display-format is 'ignore,
8831         respect old vars appt-msg-window and appt-visible.
8832         (appt-activate): Don't depend on return value of cancel-timer.
8834         * calendar/calendar.el (calendar-holidays): Doc fix.
8836         * calendar/cal-coptic.el (coptic-prompt-for-date):
8837         Use assoc-string instead of assoc-ignore-case.
8838         * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8839         * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8840         (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8841         * calendar/cal-islam.el (calendar-goto-islamic-date)
8842         (mark-islamic-diary-entries): Ditto.
8843         * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8844         * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8845         (calendar-read-mayan-tzolkin-date): Ditto.
8846         * calendar/calendar.el (calendar-read-date): Ditto.
8847         * calendar/diary-lib.el (mark-diary-entries): Ditto.
8849 2004-02-18  Markus Rost  <rost@mathematik.uni-bielefeld.de>
8851         * progmodes/executable.el (executable-command-find-posix-p):
8852         Fix choice of the directory.
8854 2004-02-17  Luc Teirlinck  <teirllm@auburn.edu>
8856         * simple.el (interprogram-cut-function)
8857         (interprogram-paste-function, kill-new, kill-append):
8858         Doc fixes.
8859         (kill-region): Make it return nil.  Doc fix.
8860         (yank-pop): Make its argument optional.
8861         (yank): Make ARG `-' equivalent to `-1'.
8863 2004-02-17  Eli Zaretskii  <eliz@gnu.org>
8865         * mail/rmail.el (rmail-get-new-mail): Don't reference
8866         rmail-use-spam-filter if rmail-spam-filter is not loaded.
8868 2004-02-16  Luc Teirlinck  <teirllm@auburn.edu>
8870         * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
8871         if one of global-auto-revert-non-file-buffers or autorevert-mode
8872         is non-nil.
8874 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
8876         * subr.el (delete-dups): A better implementation from Karl Heuer
8877         <kwzh@gnu.org>.
8879 2004-02-16  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
8881         * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
8882         correct place.
8883         * progmodes/icon.el (icon-indent-command): Ditto.
8884         * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
8886 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
8888         * progmodes/grep.el (grep-compute-defaults): Undo change from
8889         2004-01-29: don't use executable-command-find-posix-p.
8891 2004-02-16  Richard Sharman  <rsharman@pobox.com>
8893         * hilit-chg.el: Use require instead of eval-and-compile.
8894         (highlight-compare-buffers): New function.
8896 2004-02-16  John Basrai  <jbasrai@comcast.net>  (tiny change)
8898         * man.el (Man-fontify-manpage): Render section headings in
8899         `Man-overstrike-face' even when overstrike was not used by man
8900         formatter for section headings.
8902 2004-02-16  Eli Tziperman  <eli@deas.harvard.edu>
8904         * rmail-spam-filter.el: (vm-use-spam-filter)
8905         (rsf-min-region-length-added-to-spam-list): New variables.
8906         (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
8907         rmail-bbdb-auto-delete-spam-entries.  Add cc: to recipients for
8908         spam testing.  Don't delete spam message if automatic deletion
8909         after output via variable rmail-delete-after-output is turned on.
8910         (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
8911         rsf-bbdb-dont-create-entries-for-spam.
8912         (check-field): New function, extracted from code in
8913         rmail-spam-filter to ease addition of header fields like content-type.
8914         (message-content-type): New variable to check the content-type:
8915         field added, also in defcustom of rsf-definitions-alist.
8916         (rmail-spam-filter): Replace repeated test code for header fields
8917         by calls to check-field; change the call to
8918         rmail-output-to-rmail-file such that rmail-current-message stays
8919         the same to avoid wrong deletion of unseen flags.
8920         (rsf-add-contents-type): New function to convert old format
8921         of rmail-spam-definitions-alist into new one.
8922         Change prefixes of all variables and functions from
8923         rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
8925 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
8927         * loadhist.el (unload-hook-features-list): New defvar.
8929 2004-02-16  Dave Love  <fx@gnu.org>
8931         * loadhist.el (unload-feature): Doc fix.  Rename flist to
8932         unload-hook-features-list.
8934 2004-02-16  Jay Belanger  <belanger@truman.edu>  (tiny change)
8936         * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
8937         cookie.  Don't check if we are looking-at open-formula.
8939 2004-02-16  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
8941         * subr.el (match-string-no-properties): Use substring-no-properties.
8943 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
8945         * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
8946         (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
8947         Use lower-case "rx" in all error message.
8949 2004-02-16  Dave Love  <fx@gnu.org>
8951         * emacs-lisp/rx.el (rx-or): Put group around result.
8952         (rx-constituents): Add backref.
8953         (rx-syntax): Add string-delimiter, comment-delimiter.
8954         (rx-categories): Add combining-diacritic.
8955         (rx-check-not, rx-greedy, rx): Doc fix.
8956         (rx-backref, rx-check-backref): New.
8958 2004-02-16  Jesper Harder  <harder@ifa.au.dk>
8960         * newcomment.el (uncomment-region): Allow eob as comment end.
8962 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
8964         * filecache.el: All message and error commands now use prefix
8965         "Filecache:" to make it easy to read *Messages* buffer.
8967 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
8969         * autorevert.el: Add support to detect changed dired and VC buffers.
8970         (auto-revert-active-p, auto-revert-list-diff)
8971         (auto-revert-dired-file-list, auto-revert-dired-changed-p)
8972         (auto-revert-handler, auto-revert-active-p): New functions.
8973         (auto-revert-buffers): Move revert logic to `auto-revert-handler'
8974         and `auto-revert-active-p'.
8975         (eval-when-compile): Defvar dired-directory and vc-mode.
8976         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
8977         (auto-revert-handler-vc): New functions.
8979 2004-02-16  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
8981         * progmodes/compile.el (compilation-directory): New defvar.
8982         (compile): Save current directory in compilation-directory.
8983         (recompile): Bind default-directory to compilation-directory if
8984         that is non-nil.
8986 2004-02-16  Dave Love  <fx@gnu.org>
8988         * newcomment.el (comment-insert-comment-function)
8989         (comment-region-function, uncomment-region-function): New.
8990         (comment-indent): Use comment-insert-comment-function.
8991         (uncomment-region): Use uncomment-region-function.
8992         (comment-region): Use comment-region-function.
8994         * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
8996 2004-02-16  Richard Stallman  <rms@gnu.org>
8998         * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
8999         loaddefs* and ldefs-boot*.
9001 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
9003         * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
9004         and email address at the beginning and end of the address.
9006         * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
9007         anchored at the beginning of the email address.
9009 2004-02-16  TAKAI Kousuke  <tak@kmc.gr.jp>  (tiny change)
9011         * international/ccl.el (ccl-compile-write): Pass `left' to
9012         ccl-embed-code to generate correct code of write-expr-register.
9014 2004-02-15  Dan Nicolaescu  <dann@ics.uci.edu>  (tiny change)
9016         * progmodes/grep.el (grep-compute-defaults): Fix typos.
9018 2004-02-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9020         * x-dnd.el: Mention support for Motif in commentary.
9021         (x-dnd-handle-drag-n-drop-event): Ditto.
9023 2004-02-14  Jonathan Yavner  <jyavner@member.fsf.org>
9025         * ses.el: Use "ses--" prefixes for buffer-local variables.
9026         Use (point-min) instead of 1, even when we know the buffer
9027         is unnarrowed.
9028         (ses-build-load-map): Delete.  Distribute its content to defconst's for
9029         the three maps.
9030         (ses-menu, ses-header-line-menu): New menus.
9031         (ses-mode-map): Use them.
9032         (ses-read-number) New fun.  Duplicates code from interactive "N" spec.
9034 2004-02-14  Martin Stjernholm  <bug-cc-mode@gnu.org>
9036         * Makefile.in: Fix the CC Mode recompile kludge so it works
9037         when building in a different directory.
9039 2004-02-13  Luc Teirlinck  <teirllm@auburn.edu>
9041         * simple.el (kill-new): Put yank-handler property on the entire string.
9043 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9045         * diff.el: Don't use compile any more, use diff-mode instead.
9046         (diff-regexp-alist, diff-old-file, diff-new-file)
9047         (diff-parse-differences, diff-process-setup): Remove.
9048         (diff-sentinel): New fun.
9049         (diff): Use it.  Run the process ourselves.
9050         Use diff-mode for the rest of the processing.
9052         * diff.el (diff): Simplify code handling `switch'.
9054 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9056         * pcvs-defs.el (cvs-menu): Add `tag'.
9058 2004-02-11  Luc Teirlinck  <teirllm@auburn.edu>
9060         * simple.el (kill-append): Doc fix.
9062         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9063         Adapt outline-regexp to the new conventions for commenting out code.
9065 2004-02-11  John Paul Wallington  <jpw@gnu.org>
9067         * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
9069 2004-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9071         * diff.el (diff-switches): New fun.
9072         (diff, diff-backup): Use it.
9073         (diff): Clean up the args construction.  Use backquote.
9074         Use listp instead of consp to avoid putting a nil arg.
9075         (diff): Add a revert-buffer function.
9077 2004-02-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9079         * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT,  FILE_NAME
9080         handled by x-dnd-handle-file-name.
9081         (x-dnd-known-types): Add COMPOUND_TEXT.
9082         (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
9083         (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
9084         x-dnd-empty-state.
9085         (x-dnd-forget-drop): Ditto.
9086         (x-dnd-save-state): Add optional parameter extra-data (for Motif).
9087         (x-dnd-handle-one-url): Return private when inserting text.
9088         (x-dnd-insert-ctext): New function.
9089         (x-dnd-handle-file-name): New function for FILE_NAME.
9090         (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
9091         (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
9092         (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
9094 2004-02-10  Kenichi Handa  <handa@m17n.org>
9096         * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
9097         instead of while loop.
9099 2004-02-10  Miles Bader  <miles@gnu.org>
9101         * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
9103 2004-02-09  Kenichi Handa  <handa@m17n.org>
9105         * tar-mode.el (tar-extract): Fix for the case that a file doesn't
9106         have end-of-line.
9108 2004-02-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
9110         * Makefile.in: Added extra dependencies in the recompile target
9111         needed to cope with the compile time macro expansions in CC Mode.
9113 2004-02-09  Kim F. Storm  <storm@cua.dk>
9115         * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
9116         (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
9117         (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
9118         (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
9119         (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
9120         (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
9121         (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
9122         (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
9123         (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
9124         (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
9125         (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
9127 2004-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9129         * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
9130         Don't allow shrink if there's a window on our right.
9132         * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
9133         (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
9134         Bring together declaration and initialization.
9135         (prolog-mode-variables): Don't set the syntax table.
9136         Don't set paragraph-start and comment-indent-function.
9137         Add /*..*/ to the comment regexps.
9138         (prolog-mode-commands): Remove.  Do it during init of prolog-mode-map.
9139         (prolog-mode-map): Don't bind TAB.
9140         (prolog-mode): Set the syntax table.
9141         (prolog-comment-indent): Remove.
9142         (inferior-prolog-mode-map): Initialize in the declaration.
9143         (inferior-prolog-mode-syntax-table)
9144         (inferior-prolog-mode-abbrev-table): New vars.
9145         (inferior-prolog-mode): Derive from comint-mode.
9146         (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
9147         minibuffer windows.
9149         * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
9150         in file names, as long as it is unabmiguous.
9152 2004-02-08  Andreas Schwab  <schwab@suse.de>
9154         * textmodes/reftex-toc.el
9155         (reftex-toc-load-all-files-for-promotion): Remove useless use of
9156         format.  Doc fix.
9158         * textmodes/refer.el (refer-find-entry-internal): Remove extra
9159         format string arguments.
9161         * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
9162         string argument.
9164         * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
9166         * play/zone.el (zone-call): Fix format string.
9168         * net/webjump.el (webjump-builtin): Add missing format string argument.
9170         * midnight.el (midnight-delay-set): Remove extra format string argument.
9172         * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
9174         * hexl.el (hexl-insert-char): Add missing format string argument.
9176         * format.el (format-decode): Fix format string.
9178         * emulation/vi.el (vi-mode): Remove extra format string argument.
9179         (vi-repeat-last-search): Likewise.
9180         (vi-reverse-last-search): Likewise.
9181         (vi-goto-mark): Likewise.
9182         (vi-reverse-last-find-char): Likewise.
9183         (vi-repeat-last-find-char): Likewise.
9184         (vi-locate-def): Likewise.
9186         * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
9188         * ediff-util.el (ediff-toggle-read-only): Remove extra format
9189         string argument.
9190         (ediff-toggle-regexp-match): Likewise.
9192         * dired-aux.el (dired-do-query-replace-regexp): Add missing
9193         format string argument.
9195         * calc/calc-map.el (calc-get-operator): Remove extra format
9196         string argument.
9198         * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
9200         * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
9201         string argument.
9203         * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
9205         * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
9207         * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
9209         * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
9210         (cl-struct-setf-expander): Likewise.
9212         * vc.el (with-vc-file): Fix unsafe uses of error.
9213         (vc-cancel-version): Likewise.
9215 2004-02-08  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>  (tiny change)
9217         * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
9218         thousands separator; fixes <class>:<line-number> regexp for
9219         non-english locales.
9221 2004-02-08  Andreas Schwab  <schwab@suse.de>
9223         * view.el (view-mode-enable): Revert previous change.
9225 2004-02-07  Kim F. Storm  <storm@cua.dk>
9227         * simple.el (line-number-at-pos): Rename from line-at-pos.
9228         Uses changed (what-line and vc-annotate-warp-version).
9230 2004-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9232         * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
9233         (diff-mode): Remove aborted attempt at support for compile.el.
9234         (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
9236 2004-02-06  Andreas Schwab  <schwab@suse.de>
9238         * view.el (view-mode-enable): Add view-mode-map to
9239         minor-mode-overriding-map-alist.
9241 2004-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9243         * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
9245 2004-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9247         * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
9248         with point inside rather than after the paragraph.
9250 2004-02-04  Sam Steingold  <sds@gnu.org>
9252         * mail/smtpmail.el (smtpmail-try-auth-methods):
9253         Do not try authentication when no mechanism is available.
9254         Pass port-name as defaultport to `netrc-machine'.
9256 2004-02-04  Stephen Eglen  <stephen@gnu.org>
9258         * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
9259         to show how minibuffer height can be constrained.
9261 2004-02-04  John Paul Wallington  <jpw@gnu.org>
9263         * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
9265 2004-02-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9267         * x-dnd.el: New file for drag and drop.
9269         * term/x-win.el: require x-dnd, set after-make-frame-functions
9270         to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
9271         drag-n-drop event.
9273         * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
9274         (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
9275         (dired-dnd-handle-file): New functions for drag and drop support.
9276         (dired-mode): Initialize drag and drop if x-dnd present.
9278 2004-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9280         * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
9281         (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
9282         (cperl-mode): Set fill-paragraph-function.
9283         (cperl-fill-paragraph): Make it non-interactive.
9285 2004-02-02  Benjamin Rutt  <brutt@bloomington.in.us>
9287         * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
9289 2004-02-02  David Kastrup  <dak@gnu.org>
9291         * replace.el (perform-replace): Allow 'literal argument in
9292         regexp-flag to indicate literal replacement.
9293         (query-replace-regexp-eval): Use it.
9295 2004-02-01  Andreas Schwab  <schwab@suse.de>
9297         * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
9299 2004-02-01  Stephen Eglen  <stephen@gnu.org>
9301         * info-look.el: Add support for maxima-mode.  Update commentary
9302         because info-lookup-symbol is now bound to C-h S.
9304 2004-01-31  Luc Teirlinck  <teirllm@auburn.edu>
9306         * simple.el (edit-and-eval-command): Bind print-level and
9307         minibuffer-history-sexp-flag around call to read-from-minibuffer.
9308         Correct initial position in command-history.
9310 2004-01-30  Luc Teirlinck  <teirllm@auburn.edu>
9312         * files.el (read-directory-name): Adapt the docstring to recent
9313         change in Fread_file_name.
9315 2004-01-30  Jonathan Yavner  <jyavner@member.fsf.org>
9317         * ses.el (ses-print-cell): If print format too wide for column
9318         width, truncate decimal places if that helps to avoid "#####" fill.
9319         * ses.el (ses-initial-column-width): Revert previous change.
9321 2004-01-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9323         * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
9324         (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
9325         Add edebug info.
9326         (jit-lock-mode): Setup/cancel the new timer.
9327         (jit-lock-context-fontify): New fun.  Extracted from
9328         context fontification code of jit-lock-stealth-fontify.
9329         (jit-lock-stealth-fontify): Don't do context fontification any more.
9331         * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
9332         (jit-lock-fontify-now): Handle the `quit' case.
9333         (jit-lock-contextually): Rename from jit-lock-defer-contextually.
9335 2004-01-29  Jari Aalto  <jari.aalto@poboxes.com>
9337         * progmodes/executable.el (executable-command-find-posix-p):
9338         New.  Check if find handles arguments Posix-style.
9340         * progmodes/grep.el (grep-compute-defaults):
9341         Use executable-command-find-posix-p.
9342         (grep-find): Check `grep-find-command'.
9344         * filecache.el (file-cache-find-posix-p): Delete.
9345         (file-cache-add-directory-using-find):
9346         Use `executable-command-find-posix-p'.
9348 2004-01-29  Dave Love  <fx@gnu.org>
9350         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
9351         Iterate the hook function if arg is given.
9352         (mark-defun, narrow-to-defun): Change order of finding the limits.
9354         * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
9355         (byte-compile-format-warn): New.
9356         (byte-compile-callargs-warn): Use it.
9357         (Format, message, error): Add byte-compile-format-like property.
9358         (byte-compile-maybe-guarded): New.
9359         (byte-compile-if, byte-compile-cond): Use it.
9360         (byte-compile-lambda): Compile interactive forms,
9361         just to make warnings about them.
9363 2004-01-29  Jonathan Yavner  <jyavner@member.fsf.org>
9365         * ses.el (ses-initial-column-width): Increase to 14, so it will
9366         work well with the default printer of "%.7g" for extreme values
9367         like "-1.234567e+07".
9369 2004-01-29  Kenichi Handa  <handa@m17n.org>
9371         * term/x-win.el (x-selection-value): Optimize for ASCII only case.
9373 2004-01-28  Peter 'Luna' Runestig  <peter@runestig.com>
9375         * dos-w32.el: Added support for the `default-printer-name' function.
9377 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9379         * server.el (server-socket-name): Don't use the hostname in the
9380         socket name since /tmp is local to the host anyway.
9382         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
9383         robust check of widening and fix var-naming.
9385 2004-01-27  Eli Tziperman  <eli@deas.harvard.edu>
9387         * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
9388         or rmail-spam- to rsf- in all function and variable names.
9389         (rsf-min-region-to-spam-list): New variable.
9390         (rsf-bbdb-auto-delete-spam-entries): Rename from
9391         rmail-bbdb-auto-delete-spam-bbdb-entries.  The cc: field is
9392         scanned together with the recipients field for spam testing; Don't
9393         delete spam message if rmail-delete-after-output is non-nil;
9394         (rsf-check-field): New function, extracted from code in
9395         rmail-spam-filter to ease addition of header fields like
9396         content-type:;
9397         (message-content-type): New variable.  The content-type: field was
9398         added also in defcustom of rsf-definitions-alist;
9399         (rmail-spam-filter): Replace repeated test code for header fields
9400         by calls to check-field; change the call to
9401         rmail-output-to-rmail-file such that rmail-current-message stays
9402         the same to avoid wrong deletion of unseen flags.
9403         (rmail-use-spam-filter): Add autoload cookie.
9405 2004-01-27  Jari Aalto  <jari.aalto@poboxes.com>
9407         * filecache.el (file-cache-find-posix-p): New function.  Detect Cygwin.
9408         (file-cache-add-directory-using-find): Add Cygwin support.
9409         (file-cache-find-command-posix-flag): New user variable.
9411         * filecache.el (file-cache-add-directory): Check for
9412         directories an remove them from dir-files.
9414 2004-01-27  Richard M. Stallman  <rms@gnu.org>
9416         * man.el (Man-fontify-manpage): Clean up message.
9418 2004-01-27  Kenichi Handa  <handa@m17n.org>
9420         * textmodes/paragraphs.el (sentence-end-without-space): New variable.
9421         (sentence-end): Define using sentence-end-without-space.
9423         * textmodes/fill.el (fill-delete-newlines): Don't add a space if
9424         a sentence ends with one of a character in sentence-end-without-space.
9426 2004-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9428         * font-lock.el (font-lock): Add jit-lock as explicit group member.
9429         (jit-lock): Group declaration moved to jit-lock.el.
9430         (toplevel): Don't explicitly require jit-lock, since it's autoloaded
9431         when necessary.
9433         * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
9434         (jit-lock-context-unfontify-pos): Rename from
9435         jit-lock-first-unfontify-pos.
9436         (jit-lock-defer-buffers): Rename from jit-lock-buffers.
9438 2004-01-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
9440         * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
9441         (fortran-break-delimiters-re, fortran-no-break-re): New consts.
9442         (fortran-fill): When filling a string, adjust re-search-backward
9443         argument for special case of string just on fill-column.
9444         When filling non-string, allow one extra char if
9445         fortran-break-before-delimiters is non-nil.
9446         Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
9447         Use fortran-break-delimiters-re and fortran-no-break-re to
9448         correctly handle cases such as "**".
9450         * progmodes/f90.el (f90-break-delimiters): Doc fix.
9451         (f90-no-break-re): Add some extra tokens.  Doc fix.
9453 2004-01-24  Thien-Thi Nguyen  <ttn@gnu.org>
9455         * mail/rmail-spam-filter.el:
9456         Use two semicolons as Commentary line prefix.
9457         Add ";;; Code:" stylized comment.
9458         Delete end-of-line whitespace.
9459         Wrap (require 'cl) with `eval-when-compile'.
9461 2004-01-23  Benjamin Rutt  <brutt@bloomington.in.us>
9463         * vc.el (vc-annotate): Fix improper use of `make-local-variable'
9464         at the top level of vc.el.
9466 2004-01-23  Andre Spiegel  <spiegel@gnu.org>
9468         * vc.el (vc-current-line): Function removed.  This is now done by
9469         the new function line-at-pos in simple.el.
9470         (vc-annotate-warp-version): Use line-at-pos instead of
9471         vc-current-line.
9473 2004-01-22  Kim F. Storm  <storm@cua.dk>
9475         * simple.el (line-at-pos): New defun.
9476         (what-line): Use it.  Optimize by only counting lines in narrowed
9477         region once.
9479 2004-01-22  Kenichi Handa  <handa@m17n.org>
9481         * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
9482         point (register r1) only for charset mule-unicode-0100-24ff.
9484 2004-01-21  Markus Rost  <rost@mathematik.uni-bielefeld.de>
9486         * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
9487         trailing white space and ensure a final newline.
9489         * mail/rmail-spam-filter.el (rmail-use-spam-filter):
9490         Add autoload cookie.
9492 2004-01-21  Benjamin Rutt  <brutt@bloomington.in.us>
9494         * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
9495         activate view-mode explicitly.
9497 2004-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9499         * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
9500         use clipboard first.
9502 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9504         * vc-mcvs.el (vc-mcvs-mode-line-string): Remove.  Does not work.
9505         (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
9506         (vc-mcvs-cvs): Remove.
9507         (vc-mcvs-command): Remove use of assert.
9509         * outline.el (outline-insert-heading): Tighten up match.
9510         (outline-demote, outline-move-subtree-down): Don't assume anything
9511         about outline-regexp.
9513         * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
9514         (texinfo-show-structure): Explicitly add ^, and simplify.
9516 2004-01-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
9518         * calendar/appt.el (appt-check): Restore usage of
9519         appt-issue-message deleted in previous change.
9520         (top-level): Activate package when loaded (needed for backwards
9521         compatibility).
9523 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
9525         * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
9526         following previous change to smtpmail-send-data.
9528 2004-01-20  Benjamin Rutt  <brutt@bloomington.in.us>
9530         * vc.el (vc-default-previous-version): Doc enhancement.
9531         (vc-default-next-version): New function.
9532         (vc-print-log): New arg FOCUS-REV.
9533         (vc-annotate-mode): Derive from view-mode.
9534         (vc-annotate): New args REVISION, DISPLAY-MODE.
9535         (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
9536         (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
9537         (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
9538         (vc-annotate-show-diff-revision-at-line, vc-current-line)
9539         (vc-annotate-prev-version, vc-annotate-next-version): New functions.
9541         * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
9543 2004-01-19  Karl Berry  <karl@gnu.org>
9545         * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
9546         or "TexInfo".
9548 2004-01-19  Luc Teirlinck  <teirllm@auburn.edu>
9550         * subr.el (delete-dups): New function.
9552 2004-01-19  Karl Berry  <karl@gnu.org>
9554         * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
9555         with ^, since that's what texinfo-show-structure
9556         documentation says (plus it works much better in texinfo.txi).
9558 2004-01-18  Jesper Harder  <harder@ifa.au.dk>
9560         * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
9562 2004-01-18   David Ponce  <david@dponce.com>  (tiny change)
9564         * progmodes/which-func.el (which-function-mode): Don't cancel
9565         which-func-update-timer if not set.
9567 2004-01-17  Thien-Thi Nguyen  <ttn@gnu.org>
9569         * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
9570         Remove spurious left square bracket in XX:XXam regexp.
9572 2004-01-16  Luc Teirlinck  <teirllm@auburn.edu>
9574         * progmodes/cc-defs.el: Do not require cl at run time.
9576 2004-01-16  Richard M. Stallman  <rms@gnu.org>
9578         * emacs-lisp/cl.el (cl-cannot-unload): New function.
9579         (cl-unload-hook): Defvar this to run cl-cannot-unload.
9581         * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
9582         Call rmail-spam-filter.  Delete and expunge spam.
9583         Print number of spam messages deleted.
9584         Save and restore the deletion status of old messages when reading
9585         new mail with spam filter, so that expunging spam does not expunge
9586         msgs deleted by the user.
9587         (rmail-only-expunge): Add an optional argument dont-show to
9588         prevent showing message after expunge.
9590 2004-01-15  Luc Teirlinck  <teirllm@auburn.edu>
9592         * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
9593         * subr.el (declare): New macro.
9595 2004-01-15  Thien-Thi Nguyen  <ttn@gnu.org>
9597         * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
9599 2004-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9601         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9602         Test window-system rather than system-type (for X11/Mac).
9604 2004-01-12  Luc Teirlinck  <teirllm@auburn.edu>
9606         * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
9608 2004-01-12  Richard M. Stallman  <rms@gnu.org>
9610         * mail/rmail.el (rmail-convert-to-babyl-format):
9611         Use mail-unquote-printable-region.
9612         (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
9613         (rmail-hex-char-to-integer): Functions deleted.
9615         * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
9616         (mail-unquote-printable-region): New arg NOERROR.
9617         For invalid encoding, either signal an error to just return nil.
9619 2004-01-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
9621         * calendar/appt.el: Update copyright and commentary.
9622         (appt-issue-message): Make obsolete.
9623         (appt-visible, appt-msg-window): Make obsolete, in favour of
9624         appt-display-format.
9625         (appt-display-mode-line, appt-display-duration)
9626         (appt-display-diary, appt-time-msg-list, appt-mode-string)
9627         (appt-prev-comp-time, appt-display-count, appt-timer)
9628         (appt-convert-time): Doc change.
9629         (appt-disp-window-function, appt-delete-window-function):
9630         Use defcustom rather than defvar.
9631         (appt-display-format): New variable.
9632         (appt-display-message): New function with display code from appt-check.
9633         (appt-check): Add optional FORCE argument.  Doc change.
9634         Add appt-make-list to diary-hook if displaying diary.
9635         Remove checking of view-diary-entries-initially.
9636         Message display section removed to new function appt-display-message.
9637         (appt-display-window): Doc change.  Remove unused internal var
9638         this-buffer.  Do not beep, since appt-display-message does that.
9639         (appt-make-list): Doc change.  Use caar.
9640         (appt-sort-list): Simplify by using builtin sort function.
9641         (appt-update-list): New function for updating appts when diary is
9642         saved.
9643         (appt-activate): New autoloaded function to toggle package
9644         functionality.
9646         * calendar/cal-x.el: (calendar-one-frame-setup)
9647         (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
9649         * calendar/calendar.el: Update copyright.
9650         (view-diary-entries-initially, european-calendar-style): Doc change.
9651         (calendar-setup): Make defcustom rather than defvar.
9652         (mark-visible-calendar-date): Initialize temp-face and faceinfo
9653         in let binding so local to function.
9655         * calendar/diary-lib.el: Update copyright.
9656         (diary, diary-entry-time): Doc change.
9657         (list-diary-entries): Doc change.  Trivial logic change.
9658         (fancy-diary-display): Restore make-face command mistakenly
9659         deleted 2003-05-08.
9660         (show-all-diary-entries): Allow to pop-up frame if needed.
9662 2004-01-09  John Paul Wallington  <jpw@gnu.org>
9664         * bindings.el (mode-line-change-eol): Add EVENT parameter.
9665         Temporarily select EVENT's window for changing eol type.
9667 2004-01-09  Deepak Goel  <deego@gnufans.org>
9669         * calendar/diary-lib.el (diary-entry-time):
9670         Also accept time in the form XX[.XX][am/pm/AM/PM].
9671         (fancy-diary-font-lock-keywords): Likewise.
9672         (diary-font-lock-keywords): Likewise.
9673         * calendar/appt.el (appt-add): Likewise.
9674         (appt-make-list): Likewise.
9675         (appt-convert-time): Likewise.
9677 2004-01-08  Nick Roberts  <nick@nick.uklinux.net>
9679         * gdb-ui.el (gdb-ann3): Revert previous change.
9680         (gdb-source-info): Allow for case of where compilation directory
9681         is not recorded.
9683 2004-01-08  John Paul Wallington  <jpw@gnu.org>
9685         * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
9687 2004-01-07  Nick Roberts  <nick@nick.uklinux.net>
9689         * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
9691         * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
9692         (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
9693         problems.
9694         (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
9696 2004-01-07  Luc Teirlinck  <teirllm@auburn.edu>
9698         * files.el (write-file-functions, write-contents-functions):
9699         Clarify docstrings.
9701 2004-01-07  Kenichi Handa  <handa@m17n.org>
9703         * international/mule.el (set-auto-coding): Fix for the case that
9704         end-of-line is only CR.
9706 2004-01-07  Kim F. Storm  <storm@cua.dk>
9708         * subr.el (event-start, event-end): Doc fix.
9709         (posn-string, posn-image): New defuns.
9710         (posn-object): Return either image or string object.
9711         (posn-object-x-y): Return 8th element of position.
9712         (posn-object-width-height): New defun.
9714 2004-01-06  Andreas Schwab  <schwab@suse.de>
9716         * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
9717         output.
9719 2004-01-05  Karl Berry  <karl@gnu.org>
9721         * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
9722         / and *, too.
9724 2003-12-31  Simon Josefsson  <jas@extundo.com>
9726         * files.el (before-save-hook): Add.
9727         (basic-save-buffer): Use before-save-hook.
9729         * emacs-lisp/copyright.el: Fix comment to recommend
9730         before-save-hook instead of write-file-functions.
9732 2004-01-05  Richard M. Stallman  <rms@gnu.org>
9734         * finder.el (finder-commentary): Call delete-other-windows.
9736         * net/ange-ftp.el (ange-ftp-file-attributes):
9737         Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
9739 2004-01-04  Karl Berry  <karl@gnu.org>
9741         * emacs-lisp/copyright.el (copyright-regexp): Allow the common
9742         comment characters % and # in the copyright year notice,
9743         as well as ;.
9745 2004-01-04  Per Abrahamsen  <abraham@dina.kvl.dk>
9747         * wid-edit.el (default): Define dummy :value-delete.
9748         Reported by Jesper Harder <harder@ifa.au.dk>.
9750 2004-01-03  Richard M. Stallman  <rms@gnu.org>
9752         * progmodes/compile.el (compile-internal): Use point, not point-min,
9753         for set-window-point.
9755         * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
9757         * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
9759         * progmodes/grep.el (grep-mode-map):
9760         Don't remap next-line, previous-line.
9762 2004-01-03  Eric M. Ludlam  <eric@siege-engine.com>
9764         * speedbar.el (speedbar-edit-line): Change regexp to position
9765         the cursor on the first character of this line's button.
9767 2004-01-03  Luc Teirlinck  <teirllm@auburn.edu>
9769         * subr.el (functionp): Doc fix.
9771 2004-01-03  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
9773         * progmodes/idlwave.el (idlwave-make-tags):
9774         * textmodes/flyspell.el (flyspell-large-region):.
9775         * progmodes/make-mode.el (makefile-query-by-make-minus-q):
9776         * emulation/viper-util.el (viper-glob-unix-files):
9777         * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
9778         * man.el (Man-init-defvars):
9779         * jka-compr.el (jka-compr-call-process):
9780         * files.el (get-free-disk-space,insert-directory):
9781         * ediff-ptch.el (ediff-test-patch-utility):
9782         * ediff-diff.el (ediff-test-utility):
9783         * dired-aux.el (dired-check-process):
9784         * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
9785         test the return value of call-process, because it can be a string.
9787 2003-12-31  John Paul Wallington  <jpw@gnu.org>
9789         * bindings.el (completion-ignored-extensions): Add .pfsl.
9791 2003-12-31  Kim F. Storm  <storm@cua.dk>
9793         * ido.el (ido-nonreadable-directory-p): New defun to check for
9794         nonreadable directory without activating tramp (to avoid problems
9795         with checking incomplete tramp paths).
9796         (ido-set-current-directory, ido-file-internal)
9797         (ido-file-name-all-completions1): Use it.
9799 2003-12-30  Luc Teirlinck  <teirllm@auburn.edu>
9801         * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
9802         documentation if the anchor (or node) name is preceded by `info
9803         anchor' or `Info anchor' in addition to earlier `info node' and
9804         `Info node'.
9805         (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
9807 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
9809         * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
9810         error in arguments to base64-decode-region.  Remove ^M characters
9811         after decoding base64.
9813 2003-12-30  Simon Josefsson  <jas@extundo.com>
9815         * textmodes/texinfo.el: Change maintainer to FSF.  Suggested by
9816         karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
9817         have only been distributed with Emacs for some years.
9818         (texinfo-mode-hook): Customize.
9820 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
9822         * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
9823         cleaner (suggested by Richard Stallman).
9825         * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
9826         for gud-next, gud-nexti, gud-step and gud-stepi to prevent
9827         file-name clashes on 8+3 DOS filesystems.
9829         * toolbar/gud-next.pbm, toolbar/gud-next.xpm
9830         * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
9831         * toolbar/gud-step.pbm, toolbar/gud-step.xpm
9832         * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
9833         gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
9834         file-name clashes on 8+3 filesystems.
9836         * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
9837         Renamed from testcover-unsafep.el and testcover-ses.el to avoid
9838         file-name clashes on 8+3 DOS filesystems.
9840 2003-12-29  Richard M. Stallman  <rms@gnu.org>
9842         * mail/mail-utils.el (mail-unquote-printable-hexdigit):
9843         Upcase the character.
9845         * textmodes/flyspell.el (mail-mode-flyspell-verify):
9846         Search for header separator alone on a line, literally,
9847         and search for it backward, not forward.
9848         (flyspell-abbrev-table): Always use global-abbrev-table
9849         if there is no local one.
9851         * progmodes/sh-script.el (sh-get-indent-info):
9852         Don't move point back if at bob.
9854         * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
9856         * play/handwrite.el (handwrite): Make the handwrite credit message
9857         a comment rather than an output command.
9859         * obsolete/sc.el: Display message that this file is obsolete.
9861         * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
9863         * mail/rfc822.el (rfc822-address-start): Declare variable.
9864         Renamed from address-start.  All uses changed.
9866         * term.el (term-exec): Set up sentinel.
9867         (term-sentinel): New function.
9868         (term-handle-exit): New function.
9870         * subr.el (assoc-ignore-case, assoc-ignore-representation):
9871         Use assoc-string, and mark them obsolete.
9872         (delay-mode-hooks): Mark as permanent local.
9874         * simple.el (sendmail-user-agent-compose): Use assoc-string.
9876         * register.el (copy-rectangle-to-register): Doc fix.
9878         * info.el (Info-insert-dir): Use assoc-string.
9880         * info-look.el (info-lookup): Use assoc-string.
9882         * frame.el (pop-up-frame-function): Use quote, not `function'.
9883         (frame-notice-user-settings): Calculate ADJUSTED-TOP
9884         copying with lists as coordinate values.
9886         * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
9888         * find-dired.el (kill-find): New command.
9889         (find-dired): Make buffer read-only.
9890         Set up a keymap with C-c C-k running kill-find.
9891         (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
9893         * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
9895         * filecache.el (file-cache-ignore-case): New variable.
9896         (file-cache-assoc-function): Var deleted.  Use assoc-string instead.
9898         * comint.el (comint-arguments): Set COUNT after ARGS is complete.
9899         (comint-dynamic-complete-as-filename): Rename local vars.
9900         (comint-dynamic-list-filename-completions): Likewise.
9902         * comint.el (comint-dynamic-list-completions-config): New var.
9903         (comint-dynamic-list-completions): Handle both SPC and TAB right.
9905         * comint.el (comint-file-name-chars): Add [].
9906         (comint-word): Use skip-chars-backward, not search.
9908         * shell.el (shell-file-name-chars): Add [].
9910         * shell.el (shell-dynamic-complete-as-command): Rename local vars.
9912         * bookmark.el (bookmark-get-bookmark): Use assoc-string.
9914         * generic.el (define-generic-mode): Doc fix.
9916 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
9918         * files.el (kill-some-buffers): Doc fix.
9920 2003-12-29  David Herring  <sdh6@ra.msstate.edu>  (tiny change)
9922         * comint.el (comint-watch-for-password-prompt): Pass `string' as
9923         arg to send-invisible
9924         (send-invisible): Doc fix.  The argument is now a prompt, not the
9925         string to send.
9926         (comint-read-noecho): Doc fix.
9928 2003-12-29  Michael R. Wolf  <MichaelRWolf@att.net>  (tiny change)
9930         * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
9931         "@", as required by some ISP hosting service.  Fix defcustom
9932         argument syntax errors that prevented use of customization.
9934 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
9936         * xml.el (xml-get-attribute-or-nil): Doc fix.
9938 2003-12-29  Peter 'Luna' Runestig  <peter@runestig.com>
9940         * net/zone-mode.el (zone-mode): Use write-file-functions, not
9941         write-file-hooks.
9943 2003-12-29  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
9945         * autorevert.el (auto-revert-interval): Doc fix.
9947 2003-12-29  Mark A. Hershberger  <mah@everybody.org>
9949         * xml.el (xml-get-attribute-or-nil): New function, like
9950         xml-get-attribute, but returns nil if the attribute was not found.
9951         (xml-get-attribute): Convert to defsubst, uses
9952         xml-get-attribute-or-nil.
9954 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
9956         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
9958 2003-12-29  Alex Schroeder  <alex@emacswiki.org>  (tiny change)
9960         * custom.el (custom-declare-theme): Use `value' when putting
9961         properties on `theme'.
9963 2003-12-29  Takaaki Ota  <Takaaki.Ota@am.sony.com>
9965         * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
9966         for each yank-handler segment.
9967         (insert-for-yank-1): New function, with the body of the previous
9968         insert-for-yank.
9970         * textmodes/table.el (table-yank-handler): New defcustom.
9971         (table--put-cell-indicator-property): Put yank-handler property
9972         that indicates the yank handler for the table cell.
9974 2003-12-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
9976         * generic-x.el (etc-modules-conf-generic-mode): A more complete
9977         set of keywords.
9979 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
9981         * international/mule-cmds.el (reset-language-environment)
9982         (set-language-environment): Don't invoke fontset-related functions
9983         if fontset-list is not fboundp.
9985 2003-12-29  Kenichi Handa  <handa@m17n.org>
9987         * international/mule-cmds.el (reset-language-environment):
9988         Call set-overriding-fontspec-internal with nil.
9989         (set-language-environment): Call set-overriding-fontspec-internal
9990         if the language environment specify `overriding-fontspec'.
9991         (language-info-alist): Doc added.
9993         * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
9994         characters of mule-unicode-0100-24ff.
9995         (ccl-encode-windows-1251-font): New CCL program.
9996         ("Bulgarian"): Specify overriding-fontspec.
9997         ("Belarusian"): Likewise.
9999 2003-12-28  Sam Steingold  <sds@gnu.org>
10001         * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
10002         parameter ID-FORMAT to conform with the 2003-11-30 patch.
10004 2003-12-28  Nick Roberts  <nick@nick.uklinux.net>
10006         * progmodes/gud.el (gud-gdb-command-name): Set default to
10007         "gdb --annotate=3".
10008         (gud-gdb-marker-filter): Look out for annotations.
10009         (gdb-first-pre-prompt): New variable.
10010         Remove trailing white space.
10012         * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
10013         if necessary.
10014         (gdb-ann3): New function.  Initialise M-x gdb as for M-x gdba if
10015         annotations are detected.
10016         (gud-gdba-marker-filter): Use global variable gud-marker-acc
10017         instead of a local one to allow transition from
10018         gud-gdb-marker-filter.
10019         Remove trailing white space.
10021 2003-12-27  Kim F. Storm  <storm@cua.dk>
10023         * ido.el: Handle non-readable directories.
10024         (ido-decorations): Add 9th element for non-readable directory.
10025         (ido-directory-nonreadable): New dynamic var.
10026         (ido-set-current-directory): Set it.
10027         (ido-read-buffer, ido-file-internal):
10028         (ido-read-file-name, ido-read-directory-name): Let-bind it.
10029         (ido-file-name-all-completions1): Return empty list for
10030         non-readable directory.
10031         (ido-exhibit): Print [Not readable] if directory is not readable.
10032         (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
10033         (ido-read-file-name, ido-file-internal, ido-read-directory-name):
10034         Use it.
10036 2003-12-27  Lars Hansen  <larsh@math.ku.dk>
10038         * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
10039         calls to directory-files-and-attributes and file-attributes.
10040         (ls-lisp-format): Remove system dependent handling of user and
10041         group id's.
10043 2003-12-25  Luc Teirlinck  <teirllm@auburn.edu>
10045         * ffap.el (ffap-read-file-or-url): Revert previous change.
10047 2003-12-25  Robert J. Chassell  <bob@rattlesnake.com>
10049         * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
10050         new list of included files called `files-with-node-lines', that
10051         only have node lines.  This way @include commands can include any
10052         file, such as version and update files without node lines, not
10053         just files that are chapters.
10055 2003-12-25  Andreas Schwab  <schwab@suse.de>
10057         * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
10058         file not found.
10060 2003-12-08  Miles Bader  <miles@gnu.org>
10062         * dired.el (dired-between-files): Always use dired-move-to-filename,
10063         which is more robust in non-english locales.
10065 2003-12-25  Markus Rost  <rost@mathematik.uni-bielefeld.de>
10067         * vc.el (vc-dired-purge): Avoid error from `kill-line'.
10069 2003-12-24  Andreas Schwab  <schwab@suse.de>
10071         * shell.el (shell-file-name-quote-list): Add backslash.
10073         * comint.el (comint-quote-filename): Correctly handle backslash
10074         in comint-file-name-quote-list.
10076 2003-12-24  Kenichi Handa  <handa@m17n.org>
10078         * international/mule-cmds.el (set-default-coding-systems):
10079         Call ucs-set-table-for-input for all buffers that don't have local
10080         value of buffer-file-coding-system.
10082         * international/ucs-tables.el (ucs-set-table-for-input):
10083         If translation-table-for-encode is a symbol, get its
10084         translation-table property.
10086 2003-12-23  Luc Teirlinck  <teirllm@auburn.edu>
10088         * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
10089         to `completing-read' on a recently fixed bug.
10091         * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
10092         instead of SPACE, to get the list of possible fringe modes.
10093         SPACE only works if both `partial-completion-mode' and
10094         `completion-auto-help' are nil.
10096         * complete.el (PC-is-complete-p): Delete.
10097         (PC-do-completion): Replace all calls to `PC-is-complete-p' with
10098         calls to `test-completion'.
10100 2003-12-23  Nick Roberts  <nick@nick.uklinux.net>
10102         * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
10103         to edit values when there are no children.
10105         * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
10106         a mode called "Assembler" already exists.
10107         (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
10108         (gud-watch): Use format option.  Remove font properties from string.
10109         (gdb-var-create-handler, gdb-var-list-children-handler):
10110         Don't bother about properties as there are none.
10111         (gdb-var-create-handler, gdb-var-list-children-handler)
10112         (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
10113         with two arguments.
10114         (gdb-var-evaluate-expression-handler, gdb-post-prompt):
10115         Let speedbar show value changes with a different font.
10116         (gdb-edit-value): New defun.
10117         (gdb-clear-partial-output, gdb-clear-inferior-io)
10118         (def-gdb-auto-update-handler): Use erase-buffer.
10119         (gdb-frame-handler): Display watch expressions in
10120         FUNCTION::VARIABLE format if required.
10122 2003-12-23  John Paul Wallington  <jpw@gnu.org>
10124         * info.el (Info-unescape-quotes, Info-split-parameter-string)
10125         (Info-goto-emacs-command-node): Doc fixes.
10127 2003-12-12  Jesper Harder  <harder@ifa.au.dk>
10129         * cus-edit.el (custom-add-parent-links): Define "many".
10131 2003-12-08  Per Abrahamsen  <abraham@dina.kvl.dk>
10133         * wid-edit.el (widget-child-value-get, widget-child-value-inline)
10134         (widget-child-validate, widget-type-value-create)
10135         (widget-type-default-get, widget-type-match): New functions.
10136         (lazy): New widget.
10137         (menu-choice, checklist, radio-button-choice, editable-list)
10138         (group, documentation-string): Remove redundant (per 2003-10-25
10139         change) calls to `widget-children-value-delete'.
10140         (widget-choice-value-get, widget-choice-value-inline): Remove.
10141         (menu-choice): Update widget.
10143 2003-12-03  Kenichi Handa  <handa@m17n.org>
10145         * language/cyrillic.el: Register "microsoft-cp1251" in
10146         ctext-non-standard-encodings-alist.
10147         ("Bulgarian"): Add ctext-non-standard-encodings.
10148         ("Belarusian"): Likewise.
10150         * international/mule-conf.el (compound-text-with-extensions):
10151         Change the type to 2 (iso-2022 base).
10153         * international/mule.el (ctext-non-standard-encodings-alist):
10154         Change the format.
10155         (ctext-non-standard-encodings): New variable.
10156         (ctext-post-read-conversion): Fully re-written.
10157         (ctext-non-standard-designations-alist): Delete it.
10158         (ctext-non-standard-encodings-table): New function.
10159         (ctext-pre-write-conversion): Fully re-written.
10161 2003-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
10163         * cus-edit.el (custom-add-parent-links): Add documentation links
10164         for parent, if the item has none of its own.
10166 2003-11-30  Richard M. Stallman  <rms@gnu.org>
10168         * dired-aux.el (dired-do-query-replace-regexp):
10169         Report files visited read-only.
10171 2003-11-30  Juri Linkov  <juri@jurta.org>
10173         * dired-aux.el (dired-compare-directories): New command.
10174         (dired-file-set-difference, dired-files-attributes): New functions.
10176 2003-11-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
10177         Version 2.0.38 of Tramp released.
10179         * net/tramp.el (tramp-chunksize): Extend docstring.  Suggested by
10180         Charles Curley <charlescurley@charlescurley.com>.
10181         (tramp-multi-connection-function-alist): Add ssht entry which adds
10182         "-e none -t -t" to the list of ssh args.  Suggested by Adrian
10183         Aichner.
10184         (tramp-get-method-parameter): New function to retrieve a method
10185         parameter.  This allows for omission of method parameters.
10186         Callers adjusted.
10188 2003-11-30  Michael Albinus  <Michael.Albinus@alcatel.de>
10190         * net/tramp.el: Add new optional parameter ID-FORMAT to
10191         `file-attributes'.  Calls of `file-attributes' won't use this
10192         parameter for backward compatibility reasons.
10193         (tramp-perl-file-attributes): Add a new parameter to Perl script
10194         in order to handle uid/gid as strings, if desired.
10195         (tramp-handle-file-truename, tramp-handle-file-symlink-p):
10196         Apply `file-attributes' instead of `tramp-handle-file-attributes' in
10197         order to make the function more general.
10198         (tramp-handle-file-attributes): Replace proprietary optional
10199         parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
10200         (tramp-handle-file-attributes-with-perl): Handle parameter
10201         NONNUMERIC if set.  This wasn't done in the past.
10202         (tramp-post-connection): Apply second parameter "$2" if
10203         `tramp-remote-perl' is called.
10205         * net/tramp-smb.el (tramp-smb-handle-delete-file):
10206         Correct cut'n'waste error (`filename' instead of `directory').
10207         (tramp-smb-handle-directory-files-and-attributes)
10208         (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
10209         introduced parameter ID-FORMAT.
10210         (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
10211         error (`directory' instead of `ldir').
10213         * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
10214         `file-attributes' has a second parameter.  If yes, apply it with
10215         value "'integer".  Otherwise, don't use that parameter (default is
10216         integer format).
10218 2003-11-30  Luc Teirlinck  <teirllm@auburn.edu>
10220         * help.el (help-map): Bind `display-local-help' to `C-h .'.
10221         (help-for-help): Add `C-h .' to the listed Help options.
10222         Remove trailing whitespace.
10224         * help-at-pt.el: New file.
10226 2003-11-30  Jonathan Yavner  <jyavner@member.fsf.org>
10228         * subr.el (noreturn, 1value): New macros for test coverage.
10229         See `testcover.el'.
10231         * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
10233         * emacs-lisp/testcover.el (testcover-reinstrument): Special case
10234         for macro `1value'.
10235         (testcover-1value): New function.  Checks that a 1value form
10236         actually returns only one value.  Requested by RMS.
10238 2003-11-29  Nick Roberts  <nick@nick.uklinux.net>
10240         * gdb-ui.el (gud-watch, gdb-var-create-handler)
10241         (gdb-var-list-children, gdb-var-list-children-handler)
10242         (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
10243         gdb commands that use mi to keep them out of the command history.
10245 2003-11-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10247         * cus-start.el (all): Add use-file-dialog.
10249 2003-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10251         * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
10253 2003-11-27  Kim F. Storm  <storm@cua.dk>
10255         * subr.el (posn-object-x-y): New defun.
10257 2003-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10259         * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
10260         Don't use `space' for \\\n.
10261         Be more selective as to which # are comment-starters.
10263 2003-11-26  Luc Teirlinck  <teirllm@auburn.edu>
10265         * subr.el (number-sequence): Improve handling of floating point
10266         arguments (suggested by Kim Storm).  Allow negative arguments.
10268 2003-11-26  Kenichi Handa  <handa@m17n.org>
10270         * international/mule-cmds.el (standard-display-european-internal):
10271         Cancel the standard-display-table setting for ` and '.
10273 2003-11-26  Kim F. Storm  <storm@cua.dk>
10275         * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
10276         New defcustoms to add ffap-like functionality to ido.
10277         (ido-saved-vc-hb): Rename from ido-saved-vc-mt.  Uses changed.
10278         (ido-no-final-slash): New defun.
10279         (ido-make-prompt, ido-file-internal, ido-toggle-vc)
10280         (ido-read-file-name): ): Toggle VC checking via
10281         vc-handled-backends instead of vc-master-templates.
10282         (ido-file-internal): Handle ido-use-url-at-point and
10283         ido-use-filename-at-point via code borrowed from ffap-guesser.
10284         Handle new ido-exit code ffap.
10285         (ido-sort-list): Ignore final slash when sorting file names.
10287 2003-11-25  Kim F. Storm  <storm@cua.dk>
10289         * emulation/cua-base.el (cua--standard-movement-commands):
10290         Add forward-sentence and backward-sentence.
10292 2003-11-25  Stephen Eglen  <stephen@gnu.org>
10294         * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
10295         iswitchb-exit is set to 'usefirst when user selects buffer at head
10296         of list using RET.  (Selecting buffers at the head of the list was
10297         broken if the substring was also a complete buffername.)
10299 2003-11-23  Kim F. Storm  <storm@cua.dk>
10301         * progmodes/compile.el (grep-command, grep-use-null-device)
10302         (grep-find-command, grep-tree-command, grep-tree-files-aliases)
10303         (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
10304         (grep-regexp-alist, grep-program, find-program)
10305         (grep-find-use-xargs, grep-history, grep-find-history)
10306         (grep-process-setup, grep-compute-defaults)
10307         (grep-default-command, grep, grep-tag-default, grep-find)
10308         (grep-expand-command-macros, grep-tree-last-regexp)
10309         (grep-tree-last-files, grep-tree): Move grep variables, functions
10310         and commands to new file grep.el.
10311         (compilation-mode-map): Remove grep commands from Compile sub-menu.
10312         (compilation-process-setup-function): Doc fix.
10313         (compilation-highlight-regexp, compilation-highlight-overlay): New
10314         defvars used for highlighting current compile error in source buffer.
10315         (compile-internal): New optional args HIGHLIGHT-REGEXP and
10316         LOCAL-MAP which overrides compilation-highlight-regexp and
10317         compilation-mode-map for this compilation.
10318         Delay calling compilation-set-window-height until after running
10319         compilation-process-setup-function so it can buffer-local override
10320         compilation-window-height.
10321         Check buffer-local value of compilation-scroll-output.
10322         (compilation-set-window-height): Use buffer-local value of
10323         compilation-window-height.
10324         (compilation-revert-buffer): Don't pass (undefined)
10325         preserve-modes arg to revert-buffer.
10326         (next-error-no-select, previous-error-no-select): New commands.
10327         (compilation-goto-locus): Temporarily highlight current match in
10328         source buffer using compilation-highlight-regexp.
10330         * progmodes/grep.el: New file with grep code from compile.el.
10331         (grep): New defcustom group.
10332         (grep-window-height): New defcustom, like compilation-window-height.
10333         (grep-auto-highlight): New defcustom, like compile-auto-highlight.
10334         (grep-scroll-output): New defcustom, like compilation-scroll-output.
10335         (grep-command, grep-use-null-device, grep-find-command)
10336         (grep-tree-files-aliases, grep-tree-ignore-case)
10337         (grep-tree-ignore-CVS-directories): Move to grep custom group.
10338         (grep-setup-hook): New hook variable.
10339         (grep-mode-map): New keymap for grep commands.  Add Grep menu.
10340         (grep-last-buffer): New defvar, override compilation-last-buffer.
10341         (grep): Add optional arg HIGHLIGHT-REGEXP.  Doc fix.
10342         Call compile-internal with args highlight-regexp and grep-mode-map.
10344 2003-11-23  Kim F. Storm  <storm@cua.dk>
10346         * subr.el (event-start, event-end): Doc fix.
10347         (posn-window, posn-x-y, posn-timestamp): Simplify doc.
10348         (posn-area, posn-actual-col-row, posn-object): New defuns.
10349         (posn-col-row): Simplify doc.  Rewrite to use cond.
10350         (posn-point): Also return buffer position for events outside text
10351         area (that info is now present in the event position).
10353         * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
10354         mouse-set-point so that hscroll still works now that clicks on
10355         fringes generate specific mouse events.
10356         (mouse-set-point): Note that it now works in fringes and margins
10357         too due to new semantics of posn-point in fringes and margins.
10359         * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
10360         (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
10362 2003-11-20  Kim F. Storm  <storm@cua.dk>
10364         * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
10365         (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
10366         (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
10367         to 100 for icons to avoid increasing line height when shown.
10369 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
10371         * newcomment.el (comment-normalize-vars): Initialize properly if
10372         comment-start was nil.
10374 2003-11-19  Andreas Schwab  <schwab@suse.de>
10376         * simple.el (set-variable): Fix indentation.
10378 2003-11-17  Kenichi Handa  <handa@m17n.org>
10380         * international/latin1-disp.el (latin1-display-ucs-per-lynx):
10381         Fix docstring.
10383 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
10385         * international/latin1-disp.el (latin1-display): Fix docstring.
10387 2003-11-16  John Wiegley  <johnw@newartisans.com>
10389         * eshell/em-ls.el (eshell-ls-file): There are times with
10390         size-width is nil and uncomputed (when directories are created in
10391         dired, for example); in this case, 4 is reasonable default value,
10392         although it may caused skewed new entries (which could be avoided
10393         by returning the original value of 8 in all cases, but 99% of the
10394         time this is a waste of whitespace).
10396 2003-11-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
10398         * cc-engine.el (c-guess-continued-construct)
10399         (c-guess-basic-syntax): Check a little more carefully if it's a
10400         function declaration when an unknown construct followed by a block
10401         is found inside a statement context.  This avoids macros followed
10402         by blocks to be taken as function declarations.
10404         (c-guess-continued-construct): Change the analysis of a statement
10405         continuation with a brace open to `substatement-block', for
10406         consistency with recognized statements.
10408         (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
10409         start is in a position so that `c-beginning-of-statement-1' jumped
10410         to the beginning of the same statement.
10412         * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
10413         Don't accept binary operators in the arglist if we're in a function
10414         call context, i.e. if `c-restricted-<>-arglists' is set.  That avoids
10415         template recognition in cases like "if (a < b || c > d)".
10417         (c-restricted-<>-arglists): New more appropriate name for
10418         `c-disallow-comma-in-<>-arglists'.
10420         Accessing functions updated for the variable name change.
10422         * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
10423         match data could get clobbered if NOT-INSIDE-TOKEN is used.
10425         * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
10426         labels.
10428         (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
10429         instead of duplicating parts of it.  This fixes bogus label
10430         recognition.
10432         * cc-align.el (c-gnu-impose-minimum): Revert to the old method
10433         of checking the context in which to apply the minimum indentation,
10434         so that it isn't enforced in e.g. namespace blocks.
10436         * cc-vars.el (c-inside-block-syms): New constant used by
10437         `c-gnu-impose-minimum'.  It's defined close to `c-offsets-alist'
10438         to somewhat reduce the risk of becoming stale.
10440         * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
10441         cc-cmds to cc-engine to allow use from cc-align.
10443         * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
10444         qualified identifiers containing "::".
10446         * cc-defs.el (c-make-keywords-re): Add kludge for bug in
10447         `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
10449         * cc-vars.el (c-emacs-features): Use a space in front of the name
10450         of the temporary buffer.  That also avoids dumping problems in
10451         XEmacs due to undo info being left around after the buffer is killed.
10453         * cc-engine.el (c-in-knr-argdecl): Look closer at the function
10454         arglist to see if it's a K&R style declaration.
10456         (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
10457         before returning `knr-argdecl-intro'.
10459 2003-11-16  John Wiegley  <johnw@newartisans.com>
10461         * eshell/em-ls.el (eshell-ls-file): Instead of making the size
10462         field in a long-listing always 8 characters, use `size-width',
10463         which has already been computed.
10465 2003-11-15  Thien-Thi Nguyen  <ttn@gnu.org>
10467         * subr.el (minor-mode-list): Add `hs-minor-mode'.
10469 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
10471         * diff-mode.el (diff-hunk-prev, diff-hunk-next):
10472         Support operation while narrowed, with `diff-restrict-view'.
10474 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
10476         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10477         Take additional optional arg NARROWFUN.  For the generated functions:
10478         Add local var `was-narrowed-p'.  Also, if NARROWFUN is specified,
10479         include frags that arrange to check for and save narrowing state before
10480         the move and then conditionally call NARROWFUN after the move.
10482 2003-11-14  John Wiegley  <johnw@newartisans.com>
10484         * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
10485         that was optional, but obviously missing based on surrounding code.
10487         * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
10488         string arguments to numbers unless the whole argument was seen as
10489         a number.
10491 2003-11-14  Kenichi Handa  <handa@m17n.org>
10493         * international/mule.el (ctext-non-standard-encodings-alist):
10494         Fix coding systems.
10496 2003-11-10  Kenichi Handa  <handa@m17n.org>
10498         * language/kannada.el ("Kannada"): Add sample-text.
10500         * language/knd-util.el (kannada-compose-region)
10501         (kannada-compose-string, kannada-post-read-conversion):
10502         Add autoload cookie.
10504         * international/quail.el (quail-completion): Change the message
10505         "corresponding translations" to "corresponding characters".
10507 2003-11-09  Markus Rost  <rost@mathematik.uni-bielefeld.de>
10509         * descr-text.el (describe-char): Fix typo.
10511 2003-11-08  Kailash C. Chowksey  <klchxbec@m-net.arbornet.org>
10513         These changes are to support Kannada language/script.
10515         * Makefile.in (DONTCOMPILE): Add kannada.el.
10517         * makefile.w32-in (DONTCOMPILE): Add kannada.el.
10519         * loadup.el: Preload kannada.el.
10521         * language/ind-util.el (ucs-kannada-to-is13194-alist)
10522         (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
10523         New variables.
10525         * language/kannada.el: New file.
10527         * language/knd-util.el: New file.
10529 2003-11-07  Andreas Schwab  <schwab@suse.de>
10531         * progmodes/autoconf.el (autoconf-font-lock-keywords):
10532         Also highlight AH_*.
10534         * xml.el (xml-parse-dtd): Fix misplaced paren.
10536 2003-11-07  Kenichi Handa  <handa@m17n.org>
10538         * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
10540 2003-11-05  Juri Linkov  <juri@jurta.org>
10542         * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
10543         (desktop-buffer-file): Use saved buffer-file-coding-system
10544         for file reading.  Set auto-insert to nil to prevent automatic
10545         insertion into restored empty files.
10547 2003-11-04  Luc Teirlinck  <teirllm@auburn.edu>
10549         * files.el (risky-local-variable-p): Make second argument optional.
10551 2003-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10553         * subr.el (add-hook): Fix last change.
10555 2003-11-03  Eli Zaretskii  <eliz@gnu.org>
10557         * mail/rmail.el (rmail-convert-to-babyl-format):
10558         If base64-decode-region signals an error, catch it and silently
10559         ignore it.
10561 2003-11-01  Mark A. Hershberger  <mah@everybody.org>
10563         * xml.el (xml-parse-region): Allow comments to appear after the
10564         topmost element has closed.
10565         (xml-ns-parse-ns-attrs, xml-ns-expand-el)
10566         (xml-ns-expand-attr): New functions to do namespace handling.
10567         (xml-intern-attrlist): Back-compatible handling of attribute names.
10568         (xml-parse-tag): Move namespace handling to separate functions.
10569         Now produces elements in the form ((:ns . "element") (attr-list)
10570         children) instead of ('ns:element (attr-list) children).
10571         (xml-parse-attlist): Fix attribute parsing.
10572         (xml-parse-dtd): Change parsing so that it produces strings
10573         instead of interned symbols.
10575 2003-11-01  era@iki.fi  <era@iki.fi>  (tiny change)
10577         * dired.el (dired-ls-sorting-switches): Doc fix.
10579 2003-11-01  Oliver Scholz  <epameinondas@gmx.de>
10581         * emacs-lisp/rx.el (rx-or): Fix the case of
10582         "(rx (and ?a (or ?b ?c) ?d))".
10584 2003-11-01  Christoph Wedler  <wedler@users.sourceforge.net>  (tiny change)
10586         * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
10587         (texinfo-format-region): Use it.
10588         (texinfo-format-buffer-1): Ditto.
10590 2003-11-01  Alan Mackenzie  <acm@muc.de>
10592         Changes to allow scrolling whilst in isearch mode:
10593         * isearch.el (isearch-unread-key-sequence): New function,
10594         extracted from isearch-other-meta-char.
10595         (top level): (put 'foo 'isearch-scroll) on all Emacs's
10596         "scrollable" standard functions.
10597         (isearch-allow-scroll): New customizable variable.
10598         (isearch-string-out-of-window, isearch-back-into-window)
10599         (isearch-reread-key-sequence-naturally)
10600         (isearch-lookup-scroll-key): New functions.
10601         (isearch-other-meta-char): Doc string and functionality enhanced.
10602         Now accepts a prefix argument.
10603         (isearch-lazy-highlight-window-end): New variable.
10604         (isearch-lazy-highlight-new-loop): Pay attention to the window's
10605         end (thru isearch-lazy-highlight-window-end), not only its start.
10607         * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
10608         (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
10609         (universal-argument, universal-argument-more, negative-argument)
10610         (digit-argument, universal-argument-other-key): Minor changes.
10612 2003-11-01  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
10614         * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
10615         recursively if the last message is deleted, thus avoiding an
10616         infinite loop.
10618 2003-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10620         * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
10621         (tex-main-file): Don't add .tex if the extension is already present.
10622         (tex-uptodate-p): Don't recurse indefinitely with symlinks.
10624 2003-10-29  Lute Kamstra  <lute@gnu.org>
10626         * progmodes/octave-inf.el (inferior-octave-prompt):
10627         Recognize version number in prompt.
10629 2003-10-28  Dave Love  <fx@gnu.org>
10631         * international/characters.el: Fix some Unicode ranges.
10633 2003-10-28  Kenichi Handa  <handa@m17n.org>
10635         * disp-table.el (standard-display-8bit)
10636         (standard-display-default, standard-display-ascii)
10637         (standard-display-g1, standard-display-graphic)
10638         (standard-display-underline): Assure that standard-display-table
10639         is a display table.
10641 2003-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10643         * simple.el (reindent-then-newline-and-indent): Delete space *after*
10644         reindenting the first line.
10646 2003-10-25  Per Abrahamsen  <abraham@dina.kvl.dk>
10648         * wid-edit.el (widget-default-delete): Always delete child widgets.
10650 2003-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10652         * newcomment.el (comment-indent): Don't call indent-according-to-mode
10653         if the line has code.
10654         Don't try to line up with something that's too far left.
10656         * progmodes/octave-mod.el (octave-comment-start): Simplify.
10657         (octave-mode-syntax-table): Add % as a comment starter.
10658         (octave-point): Remove.
10659         (octave-in-comment-p, octave-in-string-p)
10660         (octave-not-in-string-or-comment-p, calculate-octave-indent)
10661         (octave-blink-matching-block-open, octave-auto-fill):
10662         Use line-(beginning|end)-position instead.
10664 2003-10-23  Francesco Potort\e,Al\e(B  <pot@gnu.org>
10666         * emacs-lisp/authors.el (authors-aliases): Add correct realname
10667         for Francesco Potort\e,Al\e(B.
10669 2003-10-23  Dave Love  <fx@gnu.org>
10671         * international/mule-cmds.el (locale-charset-to-coding-system):
10672         Don't rely on nil being a coding system.
10674         * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
10675         (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
10676         (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
10678 2003-10-21  Nick Roberts  <nick@nick.uklinux.net>
10680         * gdb-ui.el (gdb-current-language): New variable.
10681         (gdb-update-flag): Remove variable.
10682         (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
10683         (gdb-take-last-elt): Remove function.
10684         (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
10685         (gdb-post-prompt): Check for variable object changes here.
10687         * progmodes/gud.el (gud-speedbar-buttons): Check for variable
10688         object changes in gdb-ui.el.
10690 2003-10-21  Richard M. Stallman  <rms@gnu.org>
10692         * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
10694         * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
10695         Don't check for foo*/ wildcard form here.
10696         (insert-directory): Recognize foo*/ as a wildcard.
10697         Separate wildcard-regexp variable from the arg, wildcard.
10699         * subr.el (add-hook): Correctly detect when make-local-hook was used.
10700         (remove-hook): Correctly handle strange cases about local hooks.
10702 2003-10-21  David Ponce  <david@dponce.com>
10704         * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
10705         argument REAL, to return a real number instead of a rounded
10706         integer value.  Define as inline function.
10707         (ruler-mode-right-fringe-cols): Likewise.
10708         (ruler-mode-scroll-bar-cols): New function.
10709         (ruler-mode-left-scroll-bar-cols): Use it.  Define as macro.
10710         (ruler-mode-right-scroll-bar-cols): Likewise.
10711         (ruler-mode-space): New function.
10712         (ruler-mode-ruler): Use it.  Handle variations of fringe style,
10713         scroll bar mode and margins in a more robust way.
10715 2003-10-21  Christoph Wedler  <Christoph.Wedler@sap.com>
10717         * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
10718         (antlr-c-init-language-vars): New function.
10719         (antlr-mode): Use it with cc-mode before v5.29.
10720         (antlr-c-common-init): Don't set some local vars here.
10721         (antlr-mode): Set them here.
10722         (antlr-c-forward-sws): New function alias.
10723         (antlr-mode): Redefine with cc-mode before v5.30.
10724         (antlr-skip-sexps): Use it.
10725         (antlr-skip-exception-part): Ditto.
10726         (antlr-skip-file-prelude): Ditto.
10727         (antlr-outside-rule-p): Ditto.
10728         (antlr-end-of-body): Ditto.
10729         (antlr-option-kind): Ditto.
10730         (antlr-insert-option-area): Ditto.
10731         (antlr-file-dependencies): Ditto.
10733 2003-10-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10735         * textmodes/bibtex.el (bibtex-move-outside-of-entry):
10736         Move backward only if point was not inside an entry.
10738 2003-10-21  Richard M. Stallman  <rms@gnu.org>
10740         * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
10742 2003-10-21  Juri Linkov  <juri@jurta.org>
10744         * compare-w.el: Automatically skip non-matching text to resync.
10745         (compare-windows-whitespace): Doc fix.
10746         (compare-windows-sync, compare-windows-sync-string-size)
10747         (compare-windows-recenter, compare-ignore-whitespace)
10748         (compare-windows-highlight, compare-windows-face): New variables.
10749         (compare-windows): Use compare-windows-sync.
10750         (compare-windows-highlight, compare-windows-dehighlight)
10751         (compare-windows-sync-regexp)
10752         (compare-windows-sync-default-function): New functions.
10754 2003-10-21  Juri Linkov  <juri@jurta.org>
10756         * diff.el (diff-parse-differences): Don't visit the files now;
10757         instead, just record the error locus.
10759 2003-10-21  Dave Love  <fx@gnu.org>
10761         * progmodes/cfengine.el: New file.
10763 2003-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10765         * complete.el (PC-do-completion): Do not forget to use `pred' as the
10766         default-directory when completing file names.
10768 2003-10-20  Luc Teirlinck  <teirllm@auburn.edu>
10770         * help-mode.el (help-make-xrefs): Make sure that if a symbol is
10771         followed by the word `face', it gets treated as a face, even if
10772         it is also defined as a variable or a function.
10774 2003-10-20  Dave Love  <fx@gnu.org>
10776         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10777         Avoid incf in macro expansion.
10779 2003-10-20  John Paul Wallington  <jpw@gnu.org>
10781         * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
10782         `evenp' so we don't implicitly require cl library at runtime.
10784 2003-10-18  Luc Teirlinck  <teirllm@auburn.edu>
10786         * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
10787         (help-make-xrefs): Only make cross-references for faces if
10788         preceded or followed by the word `face'.  Do not make a
10789         cross-reference for variables without variable documentation,
10790         unless preceded by the word `variable' or `option'.  Update doc
10791         string accordingly.
10793 2003-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
10795         * progmodes/hideshow.el: Rewrite one-armed `if'
10796         constructs using either `when' or `unless'.
10797         (hs-grok-mode-type): Elide superfluous `progn'; nfc.
10799 2003-10-16  Nick Roberts  <nick@nick.uklinux.net>
10801         * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
10802         (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
10803         instead of 12x12.
10805 2003-10-16  Eli Zaretskii  <eliz@gnu.org>
10807         * mail/rmail.el (rmail-convert-to-babyl-format): Display a
10808         message while converting to Babyl.
10810 2003-10-16  Vadim Nasardinov  <vadimn@redhat.com>  (tiny change)
10812         * allout.el (allout-mode): Doc fix.
10814 2003-10-16  Lute Kamstra  <lute@gnu.org>
10816         * subr.el (force-mode-line-update): Fix docstring.
10818 2003-10-14  Dave Love  <fx@gnu.org>
10820         * international/mule-cmds.el (find-multibyte-characters): Doc fix.
10821         (default-input-method): Add :link, improve :type.
10822         (locale-charset-language-names): Fix utf-8 pattern.
10823         (locale-charset-match-p, locale-charset-alist)
10824         (locale-charset-to-coding-system): New.
10825         (set-locale-environment): Deal with codeset part of locale specs.
10827 2003-10-14  Lute Kamstra  <lute@gnu.org>
10829         * fringe.el (fringe-mode): Use active voice in docstring.
10830         (set-fringe-style): Ditto.
10832 2003-10-13  Lute Kamstra  <lute@gnu.org>
10834         * fringe.el (fringe-mode): Fix docstring.
10835         (set-fringe-style): Ditto.
10837 2003-10-12  Michael Kifer  <kifer@cs.stonybrook.edu>
10839         * ediff-mult.el (ediff-filegroup-action):
10840         Use ediff-default-filtering-regexp.
10842         * ediff-util.el (ediff-recenter): Don't call
10843         ediff-restore-highlighting twice.
10844         (ediff-select-difference): Set current difference.
10845         (ediff-unselect-and-select-difference): Add comment.
10847         * ediff.el (ediff-directories,ediff-directory-revisions)
10848         (ediff-directories3,ediff-merge-directories)
10849         (ediff-merge-directories-with-ancestor)
10850         (ediff-merge-directory-revisions)
10851         (ediff-merge-directory-revisions-with-ancestor):
10852         Use ediff-default-filtering-regexp.
10854 2003-10-12  Andreas Schwab  <schwab@suse.de>
10856         * international/mule-cmds.el (locale-charset-language-names):
10857         Simplify regex by removing unused grouping.
10859 2003-10-10  Dave Love  <fx@gnu.org>
10861         * bindings.el: Don't bind stop.
10863 2003-10-08  Miles Bader  <miles@gnu.org>
10865         * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
10866         face instead of attempting to emulate it.
10868 2003-10-07  Kenichi Handa  <handa@m17n.org>
10870         * international/mule-diag.el (list-coding-systems-1): List coding
10871         systems that are loaded automatically.
10873         * international/code-pages.el (iso-8859-11): Add autoload cookie.
10875         * international/mule.el (autoload-coding-system): New function.
10877 2003-10-07  Andreas Schwab  <schwab@suse.de>
10879         * log-edit.el (log-edit-changelog-entries): Prefer local value of
10880         change-log-default-name in the buffer visiting the file.
10882 2003-10-06  Dave Love  <fx@gnu.org>
10884         * files.el (find-file-hook): Customize.
10885         (auto-mode-alist): Add .stk, .ss, .sch, .orig.
10887         * bindings.el (completion-ignored-extensions): Remove .log.
10888         (global-map): Add again, open, stop keys.
10890 2003-10-05  Richard M. Stallman  <rms@gnu.org>
10892         * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
10893         (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
10894         Use sh-modify directly.
10895         (sh-select): Use sh-append, not eval.
10897         * mail/emacsbug.el (report-emacs-bug): Fix previous change.
10899         * info.el (Info-following-node-name): New function.
10901         * loadhist.el (unload-feature-special-hooks):
10902         Rename from loadhist-hook-functions.
10903         (loadhist-hook-functions): Now an alias.
10905 2003-10-04  Eli Zaretskii  <eliz@gnu.org>
10907         * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
10908         file-name clashes on 8+3 filesystems.
10910         * Makefile.in (DONTCOMPILE, bootstrap-clean):
10911         Rename loaddefs-boot.el to ldefs-boot.el
10913         * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
10914         (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
10916 2003-10-03  Lute Kamstra  <lute@gnu.org>
10918         * info.el (Info-mode): Revert previous change.
10919         (Info-escape-percent): New function.
10920         (Info-fontify-node): Use it.
10922 2003-10-02  Andreas Schwab  <schwab@suse.de>
10924         * loaddefs-boot.el: Regenerated.
10926 2003-10-01  Rajesh Vaidheeswarran  <rv@gnu.org>
10928         * ffap.el: Remove defadvice related code from CVS since `complete'
10929         provides a `PC-completion-as-file-name-predicate' variable that
10930         ffap can override.
10932 2003-10-02  Kenichi Handa  <handa@m17n.org>
10934         * international/utf-8.el (ccl-decode-mule-utf-8):
10935         Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
10937         * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
10938         * international/subst-big5.el: Likewise.
10939         * international/subst-gb2312.el: Likewise.
10940         * international/subst-ksc.el: Likewise.
10942 2003-10-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
10944         * calendar/calendar.el (increment-calendar-month)
10945         (calendar-leap-year-p, calendar-absolute-from-gregorian)
10946         (generate-calendar, calendar-read-date, calendar-interval)
10947         (calendar-day-of-week): Handle years BC.
10948         (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
10950 2003-10-01  Dave Love  <fx@gnu.org>
10952         * language/cyrillic.el (cp1251): Alias for windows-1251.
10954         * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
10955         bootstrap.
10957 2003-10-01  Lute Kamstra  <lute@gnu.org>
10959         * files.el: Fix typo.
10960         * imenu.el (imenu--generic-function): Docstring fix.
10962 2003-09-30  Richard M. Stallman  <rms@gnu.org>
10964         * dired.el (dired-mode): Handle dired-directory as a list.
10966 2003-09-30  Nick Roberts  <nick@nick.uklinux.net>
10968         * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
10970         * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
10972         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
10973         Replace gud-display with gud-watch.
10974         (gud-speedbar-buttons): Add stuff for watching expressions
10975         in the speedbar when using M-x gdba.  Use dolist on old part
10976         of this function.
10978         * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
10979         (gdb-update-flag): New variables.
10980         (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
10981         (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
10982         (gud-watch, gdb-var-create-handler) : New functions.
10983         (gdb-var-list-children, gdb-var-list-children-handler)
10984         (gdb-var-create-regexp, gdb-var-update-regexp)
10985         (gdb-var-list-children-regexp): New constants.
10986         (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
10987         (gdb-annotation-rules): Reduce annotation set (level 3).
10988         (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
10989         (gdb-post-prompt): Don't update GDB buffers every time speedbar
10990         updates.
10991         (gdb-window-height, gdb-window-width, gdb-display-in-progress)
10992         (gdb-expression-buffer-name, gdb-display-number, gdb-point)
10993         (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
10994         (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
10995         (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
10996         (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
10997         (gdb-expressions-mode-menu, gdb-dive): Remove variables.
10998         (gud-display, gud-display1)
10999         (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
11000         (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
11001         (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
11002         (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
11003         (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
11004         (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
11005         (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
11006         (gdb-display-display-buffer, gdb-toggle-display)
11007         (gdb-delete-display, gdb-expressions-popup-menu)
11008         (gdb-expressions-mode, gdb-array-visualise): Remove functions.
11009         (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
11010         to display buffer.
11012 2003-09-30  Richard M. Stallman  <rms@gnu.org>
11014         * progmodes/ada-mode.el (ada-mode): Don't use advice.
11015         Instead, set which-func-functions.
11017         * progmodes/which-func.el (which-func-modes): Add ada-mode.
11018         (which-func-functions): New variable.
11019         (which-function): Use that.
11021         * info.el (Info-mode): Double each `%' in header line.
11023         * emacs-lisp/lisp-mnt.el (lm-with-file):
11024         When FILE is nil, run BODY in current buffer.
11026         * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
11028         * help.el (describe-mode): Start with a brief list of minor modes.
11029         Find them thru minor-mode-list so as to find them all.
11030         Show them in alphabetical order.
11032         * mail/sendmail.el (mail-aliases): Doc fix.
11034         * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
11036 2003-09-30  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
11038         * mail/rmailsum.el (rmail-make-summary-line-1):
11039         Change comma after last label to a space.
11040         (rmail-summary-font-lock-keywords): Adapt to that change.
11042 2003-09-30  Thien-Thi Nguyen  <ttn@gnu.org>
11044         * progmodes/scheme.el (scheme-mode-variables): When setting
11045         `font-lock-defaults', also specify that "#" should
11046         be interpreted with `word' syntax.
11047         (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
11049 2003-09-30  Lars Hansen  <larsh@math.ku.dk>
11051         * desktop.el: A lot of comments updated.
11052         (desktop-save-mode): Minor mode introduced.
11053         (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
11054         (desktop-load-default): Function made obsolete.
11055         (desktop-locals-to-save): Variable made customizable.
11056         (desktop-read): Optional parameter `dirname' added.
11057         (desktop-change-dir, desktop-revert): Parameter `dirname' in
11058         `desktop-read' used.
11059         (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
11061 2003-09-29  Rajesh Vaidheeswarran  <rv@gnu.org>
11063         * whitespace.el (whitespace-clean-msg): Add user customizable message
11064         for displaying ``clean'' output.
11065         (whitespace-buffer): Use `whitespace-clean-msg'.
11066         (whitespace-global-mode): Fix typo.
11068 2003-09-29  Thien-Thi Nguyen  <ttn@gnu.org>
11070         * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
11072 2003-09-29  Lute Kamstra  <lute@gnu.org>
11074         * bindings.el (mode-line-modes): Remove superfluous :propertize
11075         construct in initialization.
11076         (mode-line-position): Change cons cell into proper list in
11077         initialization.
11079 2003-09-29  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
11081         * international/mule.el (decode-coding-inserted-region): Use car
11082         of the return value of find-operation-coding-system.
11084 2003-09-29  Kenichi Handa  <handa@m17n.org>
11086         * descr-text.el (describe-char): Fix previous change.
11088 2003-09-28  Kenichi Handa  <handa@m17n.org>
11090         * descr-text.el (describe-char-display): New function.
11091         (describe-char): Pay attention to display table on describing how
11092         a character is displayed.
11094         * international/mule-cmds.el (encoded-string-description):
11095         Prepend "0x" to each encoded byte.
11097 2003-09-28  Andreas Schwab  <schwab@suse.de>
11099         * find-file.el (ff-special-constructs): Add autoload cookie.
11101 2003-09-28  Kevin Ryde  <user42@zip.com.au>
11103         * info.el (Info-find-index-name): Remove any "<n>" suffixes which
11104         makeinfo appends to duplicate index entries.
11106 2003-09-28  Eli Zaretskii  <eliz@gnu.org>
11108         * dired-x.el (dired-clean-tex): Doc fix.
11110         * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
11111         using a Chinese tutorial.
11113 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
11115         * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
11116         between "MAIL FROM:" and "RCPT TO:" and the following address.
11118 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
11120         * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
11122 2003-09-28  David Ponce  <david@dponce.com>
11124         * recentf.el (recentf-initialize-file-name-history): New defcustom.
11125         (recentf-load-list): When `recentf-initialize-file-name-history'
11126         is non-nil, initialize an empty `file-name-history' with the
11127         recent list.
11129 2003-09-28  Evgeni Dobrev  <evgeni_dobrev@developer.bg>  (tiny change)
11131         * man.el (Man-default-man-entry): Remove the leading `*' from the
11132         word at point.
11134 2003-09-26  Lute Kamstra  <lute@gnu.org>
11136         * bindings.el (mode-line-position): Mention size indication in
11137         docstring.
11139 2003-09-26  Andre Spiegel  <spiegel@gnu.org>
11141         * calendar/parse-time.el (parse-time-string): Add autoload cookie.
11143         * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
11144         because it's autoloaded now.
11146 2003-09-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
11148         * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
11149         (sh-font-lock-keywords, sh-feature): Fix previous change of
11150         sh-feature to avoid infloop with sh-font-lock-keywords.
11152 2003-09-25  Kim F. Storm  <storm@cua.dk>
11154         * frame.el (frame-current-scroll-bars): New defun.
11156         * window.el (window-current-scroll-bars): New defun.
11158 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11160         * progmodes/cc-engine.el (c-parse-state): Fix bug that could
11161         cause errors when the state cache contains info on parts that have
11162         been narrowed out.
11164 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11166         * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
11167         `c-setup-paragraph-variables' has to be used when this variable is
11168         changed; it doesn't work to reinitialize the mode since that
11169         typically clobbers the variable.
11171         * progmodes/cc-styles.el (c-setup-paragraph-variables):
11172         Make it interactive.
11174 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11176         * progmodes/cc-fonts.el (c-font-lock-declarations):
11177         Fix recognition of constructors and destructors for classes whose
11178         names are matched by `*-font-lock-extra-types'.
11180         * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
11181         followed by an identifier in C++ then it's a type.
11183 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11185         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
11186         problem that primarily affected XEmacs.  Don't use faces to find
11187         unterminated strings since Emacs and XEmacs fontify strings
11188         differently - this function should now work better in XEmacs.
11190 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11192         * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
11193         `expand-abbrev' workaround which caused braces to misbehave inside
11194         macros.
11196         * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
11197         handling.  This bug could cause interactive font locking to bail out.
11199 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11201         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
11202         Handle paren-style types in Pike.  Also fixed some cases of
11203         insufficient handling of unbalanced parens.
11205 2003-09-24  Rajesh Vaidheeswarran  <rv@gnu.org>
11207         * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
11208         common shell prompts that are not common filename or URL characters.
11209         (ffap-file-at-point): Use the new regexp to strip the prompts from
11210         the file names.  This is an issue mostly for user prompts that
11211         don't have a trailing space and find-file-at-point is invoked from
11212         within a shell inside Emacs.
11214 2003-09-24  Andre Spiegel  <spiegel@gnu.org>
11216         * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
11217         stamps numerically, rather than textually.
11219 2003-09-24  Kenichi Handa  <handa@m17n.org>
11221         * language/devan-util.el (devanagari-post-read-conversion):
11222         * language/mlm-util.el (malayalam-post-read-conversion):
11223         * language/tml-util.el (tamil-post-read-conversion):
11224         Add autoload cookie.
11226         * international/utf-8.el (utf-8-post-read-conversion):
11227         Call post-read-conversion functions for Devanagari, Malayalam,
11228         and Tamil.
11230 2003-09-23  Dave Love  <fx@gnu.org>
11232         * Makefile.in (bootstrap-clean): Fix misplaced `!'.
11234 2003-09-22  Nick Roberts  <nick@nick.uklinux.net>
11236         * progmodes/gud.el (perldb): Add gud-until to list of commands.
11237         Update gud-remove.
11239 2003-09-22  Richard M. Stallman  <rms@gnu.org>
11241         * progmodes/sh-script.el (sh-mode-default-syntax-table):
11242         Rename from sh-mode-syntax-table.  Call sh-mode-syntax-table directly.
11243         (sh-mode-syntax-table-input): New variable.
11244         (sh-require-final-newline): Don't use eval.
11245         (sh-builtins, sh-leading-keywords, sh-other-keywords)
11246         (sh-variables, sh-font-lock-keywords): Don't use eval.
11247         (sh-set-shell): When setting require-final-newline,
11248         treat value = `require-final-newline' as don't change it.
11249         Set sh-mode-syntax-table locally based on
11250         sh-mode-syntax-table-input and sh-mode-default-syntax-table.
11252         * progmodes/compile.el (compile-internal):
11253         Call compilation-set-window-height before setting window start.
11255 2003-09-22  Greg Hill  <ghill@synergymicro.com>  (tiny change)
11257         * emacs-lisp/bytecomp.el (byte-compile-log-file):
11258         Clear out byte-compile-last-warned-form.
11260 2003-09-22  Richard M. Stallman  <rms@gnu.org>
11262         * woman.el (woman-file-name, woman-follow-word):
11263         If current-word returns nil, use "".
11265         * simple.el (eval-expression): Bind standard-output in to-buffer case.
11267 2003-09-22  Richard M. Stallman  <rms@gnu.org>
11269         * emacs-lisp/lisp-mnt.el (lm-with-file):
11270         Don't visit the file, just use insert-file-contents in temp buffer.
11272 2003-09-22  Jari Aalto  <jari.aalto@poboxes.com>
11274         * emacs-lisp/lisp-mnt.el (lm-get-header-re):
11275         Add surrounding \\( and \\) around the header, as in
11276         for lm-history-header 'Change Log\\|History'.
11278 2003-09-22  John Paul Wallington  <jpw@gnu.org>
11280         * progmodes/ld-script.el: Add Commentary section,
11281         minor cleanup of file header.
11282         (ld-script-font-lock-keywords): Doc fix.
11283         (toplevel): Provide `ld-script' feature.
11285 2003-09-21  Kim F. Storm  <storm@cua.dk>
11287         * scroll-bar.el (set-scroll-bar-mode): Initialize to
11288         new built-in variable default-frame-scroll-bars.
11289         (scroll-bar-mode): Use default-frame-scroll-bars when enabling
11290         scroll-bar-mode; notably, use it instead of t when we toggle
11291         scroll-bars on.
11292         (toggle-scroll-bar): Use default-frame-scroll-bars.
11294 2003-09-19  Masatake YAMATO  <jet@gyve.org>
11296         * pcvs.el (cvs-do-removal): Change the prompt depending on
11297         `filter' value.
11299 2003-09-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
11301         * startup.el (command-line-1): Stop startup-echo-area-message
11302         being hidden by "Loading image..." message.
11303         (use-fancy-splash-screens-p, display-splash-screen):
11304         Move display-graphic-p test from latter to former.
11306         * progmodes/sh-script.el (sh-font-lock-keywords):
11307         Highlight escaped EOLs differently from other backslash constructs.
11309 2003-09-19  Richard M. Stallman  <rms@gnu.org>
11311         * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
11312         New functions.
11313         (edebug-enter, edebug-outside-excursion): Use them.
11315         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
11316         Fix the condition for whether to print "In WHERE".
11318 2003-09-19  Jari Aalto  <jari.aalto@poboxes.com>
11320         * finder.el (finder-mode-hook): New variable.
11321         (finder-mode): Run hook finder-mode-hook
11323 2003-09-18  Masatake YAMATO  <jet@gyve.org>
11325         * progmodes/ebrowse.el: Fix broken magic autoload comments.
11327 2003-09-17  Mario Lang  <mlang@delysid.org>
11329         * progmodes/gud.el (perldb): Change gud-print from just "%e" to
11330         "p %e" to actually print the value in the GUD buffer.
11332 2003-09-16  Miles Bader  <miles@gnu.ai.mit.edu>
11334         From David Ponce <david.ponce@wanadoo.fr>:
11335         * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
11336         (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
11337         from loaddefs-boot.el if necessary.
11339 2003-09-15  Zoltan Kemenczy  <kemenczy@rogers.com>
11341         * progmodes/gud.el (gud-find-class): Make jdb work again since
11342         cc-mode changed the syntactic information.
11344 2003-09-15  David Ponce  <david@dponce.com>
11346         * recentf.el: (recentf-exclude): Accept predicates too.
11347         (recentf-file-readable-p): New function.
11348         (recentf-include-p): Handle predicates in recentf-exclude.
11349         (recentf-add-file): Doc fix.  Use recentf-file-readable-p.
11350         (recentf-cleanup): Likewise.
11351         (recentf-save-list): Use write-file to handle backup of
11352         recentf-save-file.
11354 2003-09-15  Miles Bader  <miles@gnu.ai.mit.edu>
11356         * loaddefs-boot.el: Renamed from `loaddefs.el'
11357         * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
11358         (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
11359         necessary.
11361 2003-09-13  Thien-Thi Nguyen  <ttn@gnu.org>
11363         * electric.el (Electric-pop-up-window): For the `one-window' case,
11364         no longer disconcertingly move point in the original buffer.
11366 2003-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11368         * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
11370 2003-09-12  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
11372         * dired.el (dired-mode-map): Fix typo.
11374 2003-09-11  Richard M. Stallman  <rms@gnu.org>
11376         * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
11378 2003-09-11  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
11380         * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
11381         the function is less noisy.  Now only `kill-buffer' can ask questions.
11383 2003-09-10  Mario Lang  <mlang@delysid.org>
11385         * battery.el: Update Commentary and Copyright.
11386         (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
11387         appear due to wrong ordering of the expressions in `or'.
11389 2003-09-09  Lute Kamstra  <lute@gnu.org>
11391         * misc.el (upcase-char): Fix docstring.
11392         (zap-up-to-char): New command.
11394 2003-09-08  David Ponce  <david@dponce.com>
11396         Ensure that recentf correctly updates the menu bar.
11397         * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
11398         (recentf-menu-bar): New function.
11399         (recentf-clear-data): Use it
11400         (recentf-update-menu): Likewise.  Use easy-menu-add-item instead
11401         of easy-menu-change.
11403 2003-09-08  Lute Kamstra  <lute@gnu.org>
11405         * simple.el (size-indication-mode): New.
11406         * bindings.el (mode-line-position): Add buffer size indicator.
11408 2003-09-04  Mario Lang  <mlang@delysid.org>
11410         * battery.el (battery-linux-proc-acpi): New function.
11411         (battery-status-function): Modify default value calculation to also
11412         check for availability of ACPI.
11413         (battery-echo-area-format): Ditto.
11414         (battery-mode-line-format): Ditto.
11416 2003-09-06  Dave Love  <fx@gnu.org>
11418         * ielm.el (ielm-mode-hook): Add :options.
11420         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
11421         (eldoc-print-current-symbol-info): Use it.
11423 2003-09-04  Nick Roberts  <nick@nick.uklinux.net>
11425         * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
11426         being displayed in GUD buffer.
11427         (gdb-idle-input-queue): Remove var.  Use just one queue.
11428         (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
11429         Remove functions.  Use just one queue.
11430         (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
11431         (gdb-invalidate-assembler, gdb-get-current-frame):
11432         Modify functions.  Use just one queue.
11434 2003-09-04  Dave Love  <fx@gnu.org>
11436         * cus-start.el: Add blink-cursor-alist.
11438         * ruler-mode.el (ruler-mode-fill-column-char)
11439         (ruler-mode-current-column-char): Use char-displayable-p,
11440         not window-system.
11442         * international/codepage.el ("mule-diag"): Add eval-after-load clause.
11444         * language/european.el (windows-1252): Move from code-pages.
11446         * language/cyrillic.el ("Windows-1251"): Delete.
11447         ("Bulgarian", "Belarusian"): Remove `features'.
11448         (windows-1251): Move from code-pages.
11450         * international/mule-diag.el (non-iso-charset-alist):
11451         Remove `codepage' stuff.
11452         (print-designation, list-coding-systems-1): Output fixes.
11454         * international/code-pages.el (cp-make-translation-table)
11455         (cp-valid-codes): Made defsubsts.
11456         (cp-fix-safe-chars): Delete.
11457         (mule-diag): Don't require.
11458         (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
11459         (top-level): Check for defined coding system when defining
11460         cp... aliases.  Change w32-add-charset-info test to avoid warning.
11461         (non-iso-charset-alist): Defvar when compiling.
11462         (cp-make-coding-system): Doc fix.
11464 2003-09-02  Jason Rumney  <jasonr@gnu.org>
11466         * international/titdic-cnv.el (tsang-quick-converter): Fix broken
11467         line-ends from CVS before doing conversion.
11469 2003-09-02  Glenn Morris  <gmorris@ast.cam.ac.uk>
11471         * calendar/diary-lib.el (diary-header-line-flag)
11472         (diary-header-line-format): New variables.
11473         (list-diary-entries): Use them to set header line in simple diary.
11475         * progmodes/sh-script.el (sh-font-lock-keywords): Use something
11476         other than font-lock-string-face to highlight backslashes.
11478 2003-09-01  Jason Rumney  <jasonr@gnu.org>
11480         * international/titdic-cnv.el (tit-read-key-value): Include \r in
11481         regexp.
11483 2003-09-01  Dave Love  <fx@gnu.org>
11485         * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
11487         * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
11488         and :help; also line and column numbers labels.
11490         * international/mule-util.el (char-displayable-p): Move from
11491         latin1-disp, rename and autoload.
11493         * international/latin1-disp.el (latin1-char-displayable-p):
11494         Now obsolete alias.  Replace uses with char-displayable-p.
11495         (latin1-display-ucs-per-lynx): Fix last change.
11497         * international/mule-cmds.el (standard-display-european-internal):
11498         Don't use char code for Latin-1 NBSP.
11499         <XFree86 4>: Unfrob NBSP display table.  Set display table to use
11500         U+2018, U+2019 for `'.
11501         (select-safe-coding-system): Message fix.
11503 2003-09-01  Kenichi Handa  <handa@m17n.org>
11505         * international/fontset.el (setup-default-fontset): For Thai
11506         font, specify "*" family.
11508 2003-09-01  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
11510         * progmodes/compile.el (previous-error): Accept a prefix
11511         argument, similarly to next-error.
11513 2003-08-31  Masatake YAMATO  <jet@gyve.org>
11515         * pcvs.el (cvs-do-removal): Use = instead of eq to check
11516         the number of files.  Bind the number of files to a local
11517         variable.  Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
11519 2003-08-30  Eli Zaretskii  <eliz@gnu.org>
11521         * vc-hooks.el (vc-make-version-backup): Fix the change made on
11522         2003-07-26: msdos-long-file-names is a function, not a variable.
11524 2003-08-29  Richard M. Stallman  <rms@gnu.org>
11526         * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
11527         Do nothing with mail-personal-alias-file if it is nil.
11529         * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
11530         Do nothing if mail-personal-alias-file is nil.
11532         * term.el (term-exec-1): Bind coding-system-for-read.
11534         * dired.el (dired-mouse-find-file-other-window):
11535         Use dired-view-command-alist here, as in dired-view-file.
11536         (dired-view-command-alist): Use %s to substitute file name.
11537         Handle .ps_pages, .eps, .jpg, .gif, .png.
11539 2003-08-29  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
11541         * info.el (Info-mode-map): Bind S-tab and <backtab> to
11542         `Info-prev-reference', instead of M-tab.
11544 2003-08-29  Martin Stjernholm  <mast@lysator.liu.se>
11546         * simple.el (blink-matching-open): Work correctly on chars that
11547         are designated as parens through the syntax-table text property.
11549 2003-08-29  Thierry Emery  <thierry.emery@club-internet.fr>  (tiny change)
11551         * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
11552         line break position in the middle of a non-kinsoku (e.g. latin)
11553         word, making it skip until either a space or a character with
11554         category "|".
11555         (kinsoku-longer): Test for end of buffer.
11557 2003-08-28  Eli Zaretskii  <eliz@gnu.org>
11559         * mail/rmail.el (rmail-convert-to-babyl-format):
11560         Detect quoted-printable- and base64-encoded messages and decode them
11561         automatically.  Set the message's encoding from the charset=
11562         header, if any.  Decode base64-encoded messages in Mail format as well.
11564 2003-08-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
11566         * mail/smtpmail.el: Fix previous change.
11567         (smtpmail-send-queued-mail): Set smtpmail-mail-address before
11568         calling smtpmail-via-smtp.
11569         (smtpmail-via-smtp): Add fall-back values for envelope-from.
11571 2003-08-26  John Paul Wallington  <jpw@gnu.org>
11573         * image.el (image-jpeg-p): Don't search beyond length of data.
11575 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
11577         * progmodes/cc-cmds.el (c-electric-brace): Work around for a
11578         misfeature in `expand-abbrev' which caused electric keywords like
11579         "else" to disappear if an open brace was typed directly afterwards.
11581 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
11583         * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
11584         mandatory in `define-widget'.
11586         * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
11587         Don't align the operators "!=", "<=" and ">=" as assignment operators.
11589         (c-assignment-operators): New language constant that only contains
11590         the assignment operators.
11592         (c-assignment-op-regexp): New language var used by `c-lineup-math'.
11594 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
11596         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
11597         Safeguard against unbalanced sexps.
11599 2003-08-26  Terje Rosten  <terjeros@phys.ntnu.no>
11601         * version.el (emacs-version): Check for gtk.  Include gtk version info.
11603 2003-08-25  John Paul Wallington  <jpw@gnu.org>
11605         * man.el (Man-default-man-entry): Don't whizz past the section
11606         number before looking for it.
11608 2003-08-24  Nick Roberts  <nick@nick.uklinux.net>
11610         * progmodes/gud.el (gud-display-line): Don't set window-point if
11611         source buffer is not visible.  (Only happens with M-x gdba.)
11613         * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
11614         documentation.
11615         (gdb-source, gdb-source-info): Update to assembler unnecessary
11616         as its done after each GDB command anyway.
11617         (gdb-pre-prompt): Use with-current-buffer.
11618         (gdb-insert-field): Add help-echo text.
11619         (gdb-invalidate-assembler): Re-display of assembler now done in
11620         gdb-info-breakpoints-custom.
11621         (gdb-info-breakpoints-custom): Force re-display of assembler to
11622         happen *after* update of breakpoints buffer.
11623         (gdb-display-source-buffer): Don't choke if gdb-source-window
11624         isn't visible.
11625         (gdb-put-string, gdb-put-arrow): Remove free variables.
11627 2003-08-24  John Paul Wallington  <jpw@gnu.org>
11629         * ibuffer.el (ibuffer-formats): Make name and size columns wider.
11631         * man.el (Man-default-man-entry): Strip text properties when
11632         snarfing parts of entry because `format' preserves properties.
11634 2003-08-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
11636         * files.el (file-newest-backup): Use `expand-file-name'.
11638         * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
11639         Allow the diary to pop up a new frame, if needed.
11641         * mail/sendmail.el (mail-specify-envelope-from): Doc change.
11642         * mail/smtpmail.el (smtpmail-mail-address): Doc change.
11643         (smtpmail-send-it): Make treatment of envelope-from consistent with
11644         sendmail.el.
11646         * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
11647         (sh-leading-keywords): Add the bash `time' reserved word.
11648         (sh-variables): Add some bash variables.
11649         (sh-add-completer): Fix nil branch of case statement.
11651 2003-08-24  Masatake YAMATO  <jet@gyve.org>
11653         * progmodes/ld-script.el: New file.
11655 2003-08-23  Markus Rost  <rost@math.ohio-state.edu>
11657         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
11659 2003-08-23  Andre Spiegel  <spiegel@gnu.org>
11661         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
11662         Better explain obsolescence, and what to use instead.
11664 2003-08-23  Masatake YAMATO  <jet@gyve.org>
11666         * pcvs.el (cvs-do-removal): Show the deleted file name
11667         on the prompt.
11669 2003-08-20  Dave Love  <fx@gnu.org>
11671         * international/mule.el (make-coding-system)
11672         (set-buffer-file-coding-system): Doc fix.
11674         * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
11676         * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
11678         * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
11680         * international/utf-16.el: Add mime-text-unsuitable coding system
11681         properties.
11683         * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
11685         * cus-edit.el: Add some :links.
11686         (bib): Remove.
11688         * textmodes/bib-mode.el (bib): Add :group external.
11690 2003-08-18  Luc Teirlinck  <teirllm@mail.auburn.edu>
11692         * wid-edit.el (widget-echo-help): Make it handle expressions that
11693         evaluate to strings.
11695 2003-08-18  Michael Mauger  <mmaug@yahoo.com>
11697         Version 1.8.0 of sql-mode.  (Patch submitted 2003-06-21)
11699         Simplify selection of SQL products to define highlighting and
11700         interactive mode.  Includes detailed instructions on adding
11701         support for new products.
11703         * progmodes/sql.el (sql-product): New variable.  Identifies SQL
11704         product for use in highlighting and interactive mode.
11705         (sql-interactive-product): New variable.  SQL product for
11706         sql-interactive-mode.
11707         (sql-product-support): New variable.  Specifies product-specific
11708         parameters to drive highlighting and interactive mode.
11709         (sql-imenu-generic-expression): Add more object types.
11710         (sql-sqlite-options): Correct comment.
11711         (sql-ms-program): Use "osql" rather than "isql".
11712         (sql-prompt-regexp, sql-prompt-length): Update comment.
11713         (sql-mode-menu): Add "Start SQLi session" entry.
11714         Replace Highlighting submenu with Product menu.  Fix Send Region entry.
11715         (sql-mode-abbrev-table): Add abbreviations.  Support of
11716         SYSTEM-FLAG on define-abbrev.  Support was removed with last
11717         check-in; it now handles older Emacsen without the SYSTEM-FLAG.
11718         (sql-mode-font-lock-object-name): Add font-lock pattern for object
11719         names.
11720         (sql-mode-ansi-font-lock-keywords): Set as default value.
11721         (sql-mode-oracle-font-lock-keywords): Set as default value.
11722         Support Oracle 9i keywords.
11723         (sql-mode-postgres-font-lock-keywords): Set as default value.
11724         (sql-mode-linter-font-lock-keywords): Set as default value.
11725         (sql-mode-ms-font-lock-keywords): New variable.  Support Microsoft
11726         SQLServer 2000.
11727         (sql-mode-sybase-font-lock-keywords)
11728         (sql-mode-interbase-font-lock-keywords)
11729         (sql-mode-sqlite-font-lock-keywords)
11730         (sql-mode-strong-font-lock-keywords)
11731         (sql-mode-mysql-font-lock-keywords)
11732         (sql-mode-db2-font-lock-keywords): New variables.  Default to ANSI
11733         keywords.
11734         (sql-mode-font-lock-defaults): Update comment.
11735         (sql-product-feature): New function.  Returns feature associated
11736         with a product from `sql-product-support' alist.
11737         (sql-product-font-lock): New function.  Set font-lock support
11738         based on `sql-product'.
11739         (sql-add-product-keywords): New function.  Add font-lock rules to
11740         product-specific keyword variables.
11741         (sql-set-product): New function.  Set `sql-product' and apply
11742         appropriate font-lock highlighting.
11743         (sql-highlight-product): New function.  Set font-lock support
11744         based on a product.  Also set mode name to include product name.
11745         (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
11746         (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
11747         Use `sql-set-product'.
11748         (sql-highlight-ms-keywords)
11749         (sql-highlight-sybase-keywords)
11750         (sql-highlight-interbase-keywords)
11751         (sql-highlight-strong-keywords)
11752         (sql-highlight-mysql-keywords)
11753         (sql-highlight-sqlite-keywords)
11754         (sql-highlight-db2-keywords): New functions.  Use `sql-set-product'.
11755         (sql-get-login): Prompt in the same order as the tokens.
11756         (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
11757         (sql-product-interactive): New function.  Common portions of
11758         product-specific interactive mode wrappers.
11759         (sql-interactive-mode): Rewritten to use product features.
11760         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11761         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11762         (sql-db2, sql-linter): Use `sql-product-interactive'.
11763         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11764         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11765         (sql-connect-ingres, sql-connect-postgres)
11766         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11767         New functions.  Format command line parameters and invoke comint on
11768         the appropriate interpreter.  Code was in the corresponding
11769         `sql-xyz' function before.
11770         (sql-connect-ms): New function.  Support -E argument to use
11771         operating system credentials for authentication.
11773 2003-08-18  Kenichi Handa  <handa@m17n.org>
11775         * international/mule.el (encode-char): Fix for the ASCII case.
11777 2003-08-15  Kenichi Handa  <handa@m17n.org>
11779         * international/fontset.el (setup-default-fontset): Change "*" to
11780         nil in the specifications of font family.
11782 2003-08-18  Kim F. Storm  <storm@cua.dk>
11784         * kmacro.el (kmacro-keymap): Group related bindings in
11785         initialization for clarity.  Bind C-s to start macro.
11786         Remove C-r binding.
11787         (kmacro-initial-counter-value): New defvar to hold initial counter
11788         value in case we set the value before defining a macro.
11789         (kmacro-insert-counter): Clear kmacro-initial-counter-value..
11790         (kmacro-set-counter): Set kmacro-initial-counter-value if we are
11791         not defining or executing macro.  Doc fix.
11792         (kmacro-add-counter): Clear kmacro-initial-counter-value.
11793         (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
11794         temporarily view older elements on the macro ring without cycling
11795         the ring.
11796         (kmacro-display): Doc fix.
11797         (kmacro-exec-ring-item): New helper function.
11798         (kmacro-call-ring-2nd): Use it.
11799         (kmacro-call-ring-2nd-repeat): Doc fix.
11800         (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
11801         (kmacro-end-or-call-macro): Execute last viewed macro (using
11802         kmacro-exec-ring-item) from ring if this follows
11803         kmacro-view-macro.  This allows us to find a macro on the ring
11804         with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
11805         the ring to bring it to the head of the ring.
11806         (kmacro-bind-to-key): Doc fix (describe reserved bindings).
11807         Allow binding to reserved keys without specifying C-x C-k prefix.
11808         Ask for confirmation if entered key sequence is already bound to
11809         a non-macro command.
11810         (kmacro-view-macro): Repeating command will show older elements
11811         on the macro ring; C-k will execute the last viewed macro.
11812         (kmacro-view-macro-repeat): Doc fix.  Change its kmacro-repeat
11813         property from 'ring to 'head.
11815 2003-08-17  Alan Shutko  <ats@acm.org>
11817         * calendar/calendar.el (calendar-make-alist): Correct off-by-one
11818         keeping December out of the alist.
11820 2003-08-17  Edward M. Reingold  <reingold@emr.cs.iit.edu>
11822         * calendar/cal-move.el (calendar-goto-day-of-year): New function.
11823         * calendar/calendar.el (calendar-mode-map): Bind it to key.
11824         * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
11825         (calendar-flatten): New function.
11826         (calendar-mouse-view-other-diary-entries)
11827         (calendar-mouse-view-diary-entries): Rewritten to put any holidays
11828         in the menu title and to show multi-line diary entries correctly
11829         in the menu.
11831 2003-08-17  Luc Teirlinck  <teirllm@mail.auburn.edu>
11833         * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
11834         defcustom, because the default was recently changed.
11836 2003-08-16  Richard M. Stallman  <rms@gnu.org>
11838         * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
11840         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
11841         New subroutine, broken out of eval-last-sexp-1.
11842         (eval-last-sexp-1): Use eval-last-sexp-print-value.
11844         * custom.el (custom-load-symbol): Load cus-load and cus-start first.
11846         * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
11848         * simple.el (eval-expression): Use eval-last-sexp-print-value.
11850 2003-08-14  Jari Aalto  <jari.aalto@poboxes.com>
11852         * progmodes/compile.el (compilation-error-regexp-alist):
11853         Add Java ANt error detection as described in document
11854         http://ant.apache.org/faq.html
11856 2003-08-12  Juri Linkov  <juri@jurta.org>  (tiny change)
11858         * simple.el (backward-word, forward-to-indentation)
11859         (backward-to-indentation): Argument changed to optional.
11860         (next-line, previous-line): Use `or' instead of `unless'.
11862 2003-08-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11864         * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
11865         instead of a constant.
11867 2003-08-12  Markus Rost  <rost@math.ohio-state.edu>
11869         * shell.el (shell): With prefix-arg, suggest a new buffer name.
11871 2003-08-12  Andre Spiegel  <spiegel@gnu.org>
11873         * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
11874         (vc-sccs-workfile-version): Search the entire delta table, rather
11875         than just the first entry, because that might be a deleted version.
11877 2003-08-11  Karl Fogel  <kfogel@red-bean.com>
11879         * menu-bar.el (menu-bar-options-menu): Supply a body for the
11880         [save-place] binding in the Options menu.  Have it require
11881         'saveplace' and then toggle the variable manually, to avoid an an
11882         unbound variable error.  Thanks to <Sebastien.Kirche@sage.com>
11883         for the bug report.
11885 2003-08-11  Nick Roberts  <nick@nick.uklinux.net>
11887         * gdb-ui.el (gdb-insert-field, gdb-array-format1)
11888         (gdb-info-breakpoints-custom, gdb-info-frames-custom)
11889         (gdb-info-threads-custom): Add help-echo text.
11890         (gdb-display-back): Don't use purecopy.
11891         (gdb-info-breakpoints-custom, gdb-reset)
11892         (gdb-assembler-custom): Use display-images-p to test if breakpoint
11893         icons can be displayed.
11895 2003-08-11  Markus Rost  <rost@math.ohio-state.edu>
11897         * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
11899 2003-08-11  Stefan Monnier  <monnier@cs.yale.edu>
11901         * bookmark.el (bookmark-completing-read):
11902         Return a string, instead of a list of one string.
11903         Use a popup menu if activated from the mouse.
11904         (bookmark-edit-annotation): Remove unused vars.
11905         (bookmark-jump, bookmark-relocate, bookmark-insert-location)
11906         (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
11907         to bookmark-completing-read.
11908         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11909         (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
11910         (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
11911         and erase-buffer.
11912         (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
11913         (bookmark-menu-jump, bookmark-menu-insert)
11914         (bookmark-popup-menu-and-apply-function)
11915         (bookmark-menu-popup-paned-bookmark-menu): Remove.
11916         (bookmark-menu-build-paned-menu): Remove by folding it into
11917         bookmark-menu-popup-paned-menu.
11918         (menu-bar-bookmark-map): Move the define-key statements here.
11919         Use the "non-menu" commands since they now pop up a menu if needed.
11920         (bookmark-exit-hook-internal): Simplify.
11922 2003-08-11  Carsten Dominik  <dominik@sand.science.uva.nl>
11924         * reftex-toc.el (reftex-toc-rename-label): New function.
11925         (reftex-toc-check-docstruct): New function.
11927         * reftex.el (reftex-region-active-p): New function.
11929         * reftex-parse.el (reftex-locate-bibliography-files): Improved the
11930         regexp to find the \bibliography macro.
11932         * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
11933         which does not exist in LaTeX.
11934         (reftex-cite-format-builtin): Added amsrefs support.
11935         (reftex-toc-confirm-promotion): New option
11937         * reftex-toc.el
11938         (reftex-toc): Use `reftex-toc-split-windows-fraction'.
11939         (reftex-toc-demote, reftex-toc-promote)
11940         (reftex-toc-do-promote, reftex-toc-promote-prepare)
11941         (reftex-toc-promote-action, reftex-toc-extract-section-number)
11942         (reftex-toc-newhead-from-alist)
11943         (reftex-toc-load-all-files-for-promotion): New functions.
11944         (reftex-toc-help): Added description of new keys.
11945         (reftex-toc-split-windows-fraction): New option.
11946         (reftex-recenter-toc-when-idle): Search *toc* window on all
11947         visible frames.
11948         (reftex-toc): Additional parameter REUSE
11949         (reftex-toc-recenter): Remember current frame.  Call `reftex-toc'
11950         with REUSE argument.
11951         (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
11952         the call of `reftex-toc'.
11953         (reftex-make-separate-toc-frame): New function .
11954         (reftex-toc-recenter): When called with triple prefix arg, call
11955         `reftex-make-separate-toc-frame' first.
11956         (reftex-toc-toggle-dedicated-frame): New command.
11957         (reftex-toc-quit): Adapted to delete frame when called in
11958         dedicated frame.
11960         * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
11961         all enclosing macros.
11964 2003-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11966         * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
11967         first use.
11969 2003-08-07  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11971         * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
11973 2003-08-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
11975         * calendar/calendar.el (list-diary-entries-hook)
11976         (diary-display-hook, nongregorian-diary-listing-hook)
11977         (mark-diary-entries-hook, nongregorian-diary-marking-hook):
11978         Add some customize options for these hooks.
11979         (calendar-abbrev-construct): Don't try to take a substring longer
11980         than the original string.
11982 2003-08-05  Richard M. Stallman  <rms@gnu.org>
11984         * emacs-lisp/testcover.el (noreturn): Report error if does return.
11985         (testcover-reinstrument-clauses): Doc fix.
11987         * emacs-lisp/warnings.el: Doc fixes, args renamed.
11988         (warning-type-format): Rename from warning-group-format.
11990         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
11991         (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
11992         (byte-compile-defvar): Bind byte-compile-not-obsolete-var
11993         to prevent warnings about defvar for an obsolete variable.
11995         * emacs-lisp/bytecomp.el (byte-compile-log-warning):
11996         warning-group-format renamed to warning-type-format.
11998         * subr.el (read-passwd): Use clear-string instead of fillarray.
12000         * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
12001         Use vconcat instead of concat.
12002         (edmacro-sanitize-for-string): New function.
12004 2003-08-05  Dave Love  <fx@gnu.org>
12006         * cus-start.el: Add open-paren-in-column-0-is-defun-start,
12007         line-number-display-limit-width.
12009         * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
12011 2003-08-05  Kenichi Handa  <handa@m17n.org>
12013         * international/code-pages.el: Don't require mule-diag.
12015         * international/mule-diag.el (non-iso-charset-alist):
12016         Add autoload cookie.
12018         * language/devan-util.el (dev-glyph-order): Add an entry for the
12019         glyph code #xC4.
12021 2003-08-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
12023         * calendar/calendar.el (diary-file, diary-file-name-prefix)
12024         (european-calendar-style, diary-date-forms)
12025         (calendar-day-name-array, calendar-month-name-array): Doc change.
12026         (generate-calendar-month): Adapt for new behaviour of
12027         `calendar-day-name' function.
12028         (calendar-abbrev-length, calendar-day-abbrev-array)
12029         (calendar-month-abbrev-array): New variables.
12030         (calendar-abbrev-construct): New function.
12031         (calendar-day-name, calendar-month-name): Use new abbrev arrays,
12032         rather than fixing abbrevs at some width.  Calling syntax change.
12033         (calendar-make-alist): Use abbrev arrays.  Calling syntax change.
12034         (calendar-date-string): Adapt for new behaviours of
12035         `calendar-day-name' and `calendar-month-name' functions.
12037         * calendar/diary-lib.el (list-diary-entries): Adapt for new
12038         behaviour of `calendar-day-name' and `calendar-month-name' functions.
12039         (diary-name-pattern): Use abbrev arrays, rather than fixing
12040         abbrevs at three chars.  Calling syntax change.
12041         (mark-diary-entries): Adapt for new behaviours of
12042         `diary-name-pattern' and `calendar-make-alist' functions.
12043         (fancy-diary-font-lock-keywords): Adapt for new behaviour of
12044         `diary-name-pattern' function.
12045         (font-lock-diary-date-forms): Use abbrev arrays, rather than
12046         fixing abbrevs at three chars.  Calling syntax change.
12047         (cal-hebrew, cal-islam): Require when compiling.
12048         (diary-font-lock-keywords): Adapt for new behaviour of
12049         `font-lock-diary-date-forms' function.
12051         * calendar/cal-hebrew.el: Reposition some code so defined before used.
12052         (calendar-hebrew-month-name-array-common-year)
12053         (calendar-hebrew-month-name-array-leap-year): Add doc strings.
12054         (list-hebrew-diary-entries): Adapt for new behaviours of
12055         `calendar-day-name' and `add-to-diary-list' functions.
12056         (mark-hebrew-diary-entries): Adapt for new behaviours of
12057         `diary-name-pattern' and `calendar-make-alist' functions.
12059         * calendar/cal-islam.el (calendar-islamic-month-name-array):
12060         Add doc string.
12061         (list-islamic-diary-entries): Adapt for new behaviours of
12062         `calendar-day-name' and `add-to-diary-list' functions.
12063         (mark-islamic-diary-entries): Adapt for new behaviours of
12064         `diary-name-pattern' and `calendar-make-alist' functions.
12066         * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
12067         `calendar-month-name' function.
12069         * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
12071         * calendar/solar.el (solar-seasons-data): Move definition before use.
12073         * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
12074         (cal-tex-LaTeX-hourbox): Move definition before use.
12076         * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
12077         cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
12078         lunar.el, solar.el
12079         (displayed-month, displayed-year): Define for compiler.
12081 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
12083         * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
12084         MODE.  Renamed from c-init-c-language-vars'.
12085         (c-initialize-cc-mode): Change accordingly.
12086         (c-common-init): Ditto.
12087         (c-mode): Ditto.
12088         (c++-mode): Use `c-init-language-vars-for'.
12089         (objc-mode): Ditto.
12090         (java-mode): Ditto.
12091         (idl-mode): Ditto.
12092         (pike-mode): Ditto.
12093         (awk-mode): Ditto.
12095 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
12097         * progmodes/cc-engine.el (c-end-of-current-token): Return whether
12098         or not the point moved.
12100         (c-search-decl-header-end): Don't trip up on operator identifiers
12101         in C++ and operators like == in all languages.
12103         * progmodes/cc-engine.el (c-backward-to-decl-anchor):
12104         Detect leading labels correctly.
12106 2003-08-02  Andreas Schwab  <schwab@suse.de>
12108         * textmodes/ispell.el: Don't redo key bindings on loading, put
12109         them only in loaddefs.el.
12110         * bookmark.el: Likewise.
12111         * dabbrev.el: Likewise.
12112         * emerge.el: Likewise.
12114         * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
12115         has more than one member.
12117         * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
12119 2003-08-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12121         * lpr.el (printify-region): It was ending conversion before the
12122         expected position.  Reported by Keiichi Suzuki <keiichi@nanap.org>.
12124 2003-07-31  John Paul Wallington  <jpw@gnu.org>
12126         * net/browse-url.el (browse-url-epiphany): Doc fix.
12128 2003-07-30  Kenichi Handa  <handa@m17n.org>
12130         * international/fontset.el (setup-default-fontset):
12131         Change registry names of Akurti fonts.
12133 2003-07-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
12135         * comint.el (comint-read-noecho): Use `clear-string' instead of
12136         `fillarray'.
12138 2003-07-29  Thomas W Murphy  <twm@andrew.cmu.edu>  (tiny change)
12140         * outline.el (outline-mode-hook): Add defvar.
12142 2003-07-28  Nick Roberts  <nick@nick.uklinux.net>
12144         * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
12145         Restore assembler in source window if that is what has been selected.
12146         (menu): Add gdb-restore-windows to menu.  Make gdba
12147         specific menus only visible from gdba.
12149 2003-07-28  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
12151         * progmodes/compile.el (compilation-environment): New user variable.
12152         (compile-internal): Respect it.
12154 2003-07-23  Masatake YAMATO  <jet@gyve.org>
12156         * progmodes/gud.el (gdb-script-font-lock-keywords):
12157         Put `font-lock-function-name-face' on a symbol which includes
12158         `-' like `hook-run'.  Put font-lock-variable-name-face
12159         on a symbol starting with $.
12161 2003-07-27  Markus Rost  <rost@math.ohio-state.edu>
12163         * files.el (set-visited-file-name): Use truename for buffer-file-name.
12165 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
12167         * vc-hooks.el (vc-file-not-found-hook): Doc fix.
12169 2003-07-26  Andre Spiegel  <spiegel@gnu.org>
12171         * vc-hooks.el (vc-default-registered, vc-make-version-backup):
12172         Use with-no-warnings.
12173         (vc-file-not-found-hook): Add this to find-file-not-found-functions,
12174         rather than to find-file-not-found-hook, which doesn't exist.
12176 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
12178         * international/quail.el (quail-translate-key): Fix previous change.
12180 2003-07-25  John Paul Wallington  <jpw@gnu.org>
12182         * server.el (server-start): Check `server-process' is non-nil
12183         before killing it to avoid killing current buffer's process.
12185         * simple.el (choose-completion-string): Use `minibufferp';
12186         test `completion-reference-buffer' if `buffer' arg is nil.
12187         (push-mark): Use `when' and `unless'.
12188         (pop-mark): Use `when'.
12190         * mouse-sel.el (mouse-sel-get-selection-function):
12191         Check `x-last-selected-text-primary'.  Don't barf if it or
12192         `x-last-selected-text' aren't bound.
12194 2003-07-25  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
12196         * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
12198 2003-07-23  Stefan Monnier  <monnier@cs.yale.edu>
12200         * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
12202 2003-07-23  John Paul Wallington  <jpw@gnu.org>
12204         * tooltip.el (defface tooltip): Inherit from variable-pitch.
12206 2003-07-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
12208         * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
12209         string.  Defvar the derived hook.
12211         * macros.el (insert-kbd-macro): Escape double quote character.
12212         From Thomas W Murphy <twm@andrew.cmu.edu>.
12214 2003-07-22  Stefan Monnier  <monnier@cs.yale.edu>
12216         * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
12217         to match the specific mark rather than reusing comment-start-skip.
12219 2003-07-22  Thien-Thi Nguyen  <ttn@gnu.org>
12221         * progmodes/hideshow.el (hs-special-modes-alist):
12222         Clarify MDATA-SELECTOR doc; nfc.  Thanks to Michael Ernst.
12224 2003-07-21  Markus Rost  <rost@math.ohio-state.edu>
12226         * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
12227         value using ?\s.
12229 2003-07-21  John Paul Wallington  <jpw@gnu.org>
12231         * subr.el (with-selected-window): Add closing paren.
12233 2003-07-21  Richard M. Stallman  <rms@gnu.org>
12235         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
12236         (lisp-mode): Likewise.
12238         * subr.el (with-selected-window): Copy code form save-selected-window
12239         so as to call select-window with norecord arg.
12240         (dynamic-completion-table): Doc fix.
12241         (lazy-completion-table): Doc fix.
12243         * international/mule-cmds.el (set-locale-environment):
12244         langinfo renamed to locale-info.
12246         * international/mule.el (auto-coding-functions): Doc fix.
12248 2003-07-21  Kenichi Handa  <handa@m17n.org>
12250         * international/quail.el (quail-translate-key):
12251         Update quail-current-str correctly.
12253 2003-07-21  Andreas Schwab  <schwab@suse.de>
12255         * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
12256         ?, to "_".
12258 2003-07-20  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
12259         Version 2.0.36 of Tramp released.
12261         * net/tramp.el (tramp-default-password-end-of-line): Rename from
12262         tramp-password-end-of-line.
12263         (tramp-password-end-of-line): New method parameter.
12264         (tramp-get-password-end-of-line): Function to access method
12265         parameter `tramp-password-end-of-line', or variable
12266         `tramp-default-password-end-of-line' (default value).
12267         (tramp-methods): Add entries for new parameter
12268         tramp-password-end-of-line.
12269         (tramp-enter-password): Use new function
12270         `tramp-get-password-end-of-line'.
12271         (tramp-handle-insert-file-contents): Do not
12272         unconditionally inhibit the file operation file-local-copy, only
12273         do that when the inhibit-file-name-operation is currently
12274         insert-file-contents.  This fixes finding remote CVS-controlled
12275         files.  (It would barf on inserting the CVS/Entries file
12276         literally, because the file-local-copy handler wasn't called.)
12277         (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
12278         (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
12279         (tramp-initial-commands): New variable.
12280         (tramp-process-initial-commands): New function, using the variable.
12281         (tramp-open-connection-setup-interactive-shell): Call the new function.
12282         (tramp-buffer-name, tramp-debug-buffer-name): Always put the
12283         method into the buffer name, never use nil.  Reported by Hanak
12284         David <dhanak@inf.bme.hu>.
12285         (tramp-open-connection-setup-interactive-shell): Erase buffer
12286         before sending "stty -onlcr".
12288         * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
12290 2003-07-19  Markus Rost  <rost@math.ohio-state.edu>
12292         * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
12294 2003-07-19  John Paul Wallington  <jpw@gnu.org>
12296         * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
12297         (artist-draw-rect, artist-draw-square): Doc fixes.
12299         * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
12301         * textmodes/two-column.el (2C-mode-line-format): Doc fix.
12303 2003-07-19  Kenichi Handa  <handa@m17n.org>
12305         * international/kkc.el (kkc-show-conversion-list-update):
12306         Highlight the correct candidate in the message.
12308 2003-07-18  John Paul Wallington  <jpw@gnu.org>
12310         * simple.el (current-word): Don't include punctuation char when
12311         `really-word' arg is non-nil.
12313 2003-07-17  Martin Stjernholm  <bug-cc-mode@gnu.org>
12315         * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
12316         moved to the directory obsolete.
12318 2003-07-16  Stefan Monnier  <monnier@cs.yale.edu>
12320         * info.el (Info-menu-entry-name-re): Allow newlines in
12321         menu entry names.
12323         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
12324         syntax-ppss-after-change-function.
12325         (syntax-ppss-after-change-function): New alias.  Update uses.
12326         (syntax-ppss): Catch the case where the buffer is narrowed.
12328 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
12330         * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
12331         (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
12333 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
12335         * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
12336         since it might be modified.
12338         * progmodes/cc-langs.el (c++-make-template-syntax-table)
12339         (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
12340         names to these language constants.
12342 2003-07-15  Kim F. Storm  <storm@cua.dk>
12344         * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
12345         All uses changed.
12347 2003-07-14  Mark A. Hershberger  <mah@everybody.org>
12349         * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
12350         Namespace support.
12352 2003-07-13  Juanma Barranquero  <lektu@terra.es>
12354         * frame.el (modify-all-frames-parameters): Reinstall (copyright
12355         papers received).
12357 2003-07-13  Karl Eichwalder  <ke@suse.de>
12359         * textmodes/po.el (po-find-charset): White space at the start of the
12360         Content-Type field body is non-mandatory.
12362 2003-07-13  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
12364         * textmodes/texinfo.el (texinfo-section-list):
12365         Append appendixsection; a synonym for appendixsec.
12367 2003-07-13  Jari Aalto  <jari.aalto@poboxes.com>
12369         * man.el (Man-translate-cleanup): New.
12370         (Man-translate-references): Call `Man-translate-cleanup' to clean
12371         leading, trailing and middle spaces.
12373 2003-07-13  Lars Hansen  <larsh@math.ku.dk>
12375         * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
12376         Handle `dired-directory' being a list.
12378 2003-07-13  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
12380         * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
12381         it doesn't exist.
12383 2003-07-12  Richard M. Stallman  <rms@gnu.org>
12385         * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
12387         * progmodes/cc-defs.el (c-make-keywords-re):
12388         Don't use delete-duplicates.
12389         (c-lang-const): Don't use mapcan.
12391         * apropos.el (apropos-show-scores): Make it customizable.
12392         Document new meaning.
12393         (apropos): Compute scores from symbols.
12394         (apropos-print): Don't sort by scores if apropos-show-scores is nil.
12396 2003-07-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12398         * ps-bdf.el: Fix copyright line.
12399         (bdf-directory-list): Fix initialization code.
12401 2003-07-11  John Paul Wallington  <jpw@gnu.org>
12403         * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
12404         (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
12405         (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
12407 2003-07-11  NAKAJIMA Mikio  <minakaji@namazu.org>  (tiny change)
12409         * emacs-lisp/ring.el (ring-elements): Doc fix.
12411 2003-07-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
12413         * calendar/timeclock.el (timeclock-relative)
12414         (timeclock-ask-before-exiting, timeclock-use-display-time):
12415         Doc changes.
12416         (timeclock-modeline-display): Give a message if
12417         `timeclock-use-display-time' is non-nil but `display-time-mode'
12418         is not active.
12420 2003-07-11  Kenichi Handa  <handa@m17n.org>
12422         * international/mule-cmds.el (set-language-environment):
12423         Set current-language-environment to the correct string.
12425 2003-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12427         * ps-print.el: Print line number correctly in a region.  Reported by
12428         Tim Allen <timallen@ls83.fsnet.co.uk>.
12429         (ps-print-version): New version number (6.6.2).
12430         (ps-printing-region): Code fix.
12432 2003-07-10  John Paul Wallington  <jpw@gnu.org>
12434         * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
12435         this function can be called from `add-completions-from-tags-table'.
12437 2003-07-10  Glenn Morris  <gmorris@ast.cam.ac.uk>
12439         * calendar/timeclock.el (timeclock-use-display-time)
12440         (timeclock-day-over-hook, timeclock-workday-remaining)
12441         (timeclock-status-string, timeclock-when-to-leave)
12442         (timeclock-when-to-leave-string, timeclock-log-data)
12443         (timeclock-find-discrep, timeclock-day-base)
12444         (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
12445         (timeclock-modeline-display): Set the variable
12446         `timeclock-modeline-display'.
12447         (timeclock-update-modeline): Doc fix.  Respect value of
12448         `timeclock-relative'.
12450 2003-07-09  Richard M. Stallman  <rms@gnu.org>
12452         * textmodes/reftex-parse.el (reftex-all-document-files):
12453         Add autoload cookie.
12455         * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
12456         (reftex-scanning-info-available-p): Add autoload cookie.
12458         * international/mule-cmds.el
12459         (set-display-table-and-terminal-coding-system): Delete duplicate
12460         aset on standard-display-table.
12462         * view.el (view-file): If existing buffer's major mode is special,
12463         don't go into view mode.
12465         * dired.el (dired-move-to-filename-regexp): Allow quote in months.
12467 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
12469         * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
12470         buffer changes; there's third party code that calls this function
12471         directly.
12473 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
12475         * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
12476         (autodoc-font-lock-keywords): Don't byte compile on font lock
12477         initialization when running from byte compiled files.
12479 2003-07-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
12481         * progmodes/cc-engine.el: Fix AWK mode indentation when previous
12482         statement ends with auto-increment "++".
12484 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
12486         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
12487         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
12488         these are changed, so declare them as variables and not constants.
12490 2003-07-08  Markus Rost  <rost@math.ohio-state.edu>
12492         * subr.el (dolist, dotimes): Doc fix.
12494 2003-07-08  Kim F. Storm  <storm@cua.dk>
12496         * international/mule-cmds.el
12497         (set-display-table-and-terminal-coding-system): Don't break
12498         bootstrap if standard-display-table isn't setup yet.
12500 2003-07-07  Richard M. Stallman  <rms@gnu.org>
12502         * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
12503         Give it a doc string, and autoload it.
12505         * desktop.el (desktop-buffer-info, desktop-buffer-mh):
12506         Use with-no-warnings.
12508         * info.el (Info-search): If find invisible text, search again.
12510         * isearch.el (search-whitespace-regexp): Add a shy group around it.
12512         * man.el (Man-name-regexp): Match + as part of name.
12514         * simple.el (visible-mode): Rename from vis-mode.
12515         (vis-mode-saved-buffer-invisibility-spec): Doc fix.
12517         * simple.el (current-word): New arg REALLY-WORD specifies
12518         don't include punctuation chars.
12520         * emacs-lisp/debug.el (debug, debugger-env-macro):
12521         Use with-no-warnings while accessing and binding unread-command-char.
12523         * international/mule-cmds.el
12524         (set-display-table-and-terminal-coding-system): Use explicit loop
12525         instead of calling standard-display-default.
12527         * net/ange-ftp.el (ange-ftp-file-symlink-p):
12528         Use condition-case to catch error in ange-ftp-get-files.
12530         * net/browse-url.el (browse-url-browser-function):
12531         Add alternative for Epiphany.
12532         (browse-url-epiphany-program, browse-url-epiphany-arguments)
12533         (browse-url-epiphany-startup-arguments)
12534         (browse-url-epiphany-new-window-is-tab): New variables.
12535         (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
12537         * progmodes/compile.el (compile-auto-highlight): Default now t.
12538         (compile): Doc fix.
12539         (compilation-next-error): Fix previous change.
12541         * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
12543         * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
12545 2003-07-07  Nick Roberts  <nick@nick.uklinux.net>
12547         * gdb-ui.el (gdb-source-info): Display current frame when
12548         attaching to an existing process.
12549         (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
12550         while laying out windows when attaching to an existing process.
12552 2003-07-07  Stefan Monnier  <monnier@cs.yale.edu>
12554         * info.el (Info-menu): Use Info-menu-entry-name-re.
12556 2003-07-06  Stefan Monnier  <monnier@cs.yale.edu>
12558         * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
12559         * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
12561         * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
12562         to match the same text.
12564 2003-07-06  John Paul Wallington  <jpw@gnu.org>
12566         * vc.el (vc-annotate-offset): Move defvar up.
12568 2003-07-06  Kim F. Storm  <storm@cua.dk>
12570         * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
12571         This should fix the infinite loop when extracting menu names.
12573 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
12575         * files.el (auto-mode-alist, interpreter-mode-alist):
12576         Remove entries to CC Mode modes to avoid duplicates; they are now added
12577         with autoload directives in cc-mode.el.
12579 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
12581         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
12582         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
12583         these are changed, so declare them as variables and not constants.
12585         * progmodes/cc-mode.el: Fix some autoload problems: Try to
12586         ensure that the entry for ".c" extension comes before the one for
12587         ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
12588         Fix incorrect entries that were added to `interpreter-mode-alist'.
12589         Move the autoload directives for AWK to the top level since they
12590         aren't recognized anywhere else.  Do not use the new AWK mode doc
12591         in the autoload form for the old AWK mode.
12593 2003-06-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
12595         * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
12596         (bibtex-sort-ignore-string-entries): Default value t.
12597         (bibtex-entry-kill-ring-max): Reintroduce as it was removed
12598         erroneously in previous version.
12599         (bibtex-string-files): Docstring reflects new parsing scheme.
12600         (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
12601         docstring, add # as one of the chars to crush
12602         (bibtex-autokey-prefix-string, bibtex-autokey-names)
12603         (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
12604         (bibtex-autokey-name-change-strings)
12605         (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
12606         (bibtex-autokey-name-separator, bibtex-autokey-year-length)
12607         (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
12608         (bibtex-autokey-title-terminators)
12609         (bibtex-autokey-titlewords-stretch)
12610         (bibtex-autokey-titleword-ignore)
12611         (bibtex-autokey-titleword-case-convert)
12612         (bibtex-autokey-titleword-abbrevs)
12613         (bibtex-autokey-titleword-abbrevs)
12614         (bibtex-autokey-titleword-change-strings)
12615         (bibtex-autokey-titleword-length)
12616         (bibtex-autokey-titleword-separator)
12617         (bibtex-autokey-name-year-separator)
12618         (bibtex-autokey-year-title-separator)
12619         (bibtex-autokey-before-presentation-function)
12620         (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
12621         Fix docstring.
12622         (bibtex-strings, bibtex-reference-keys):
12623         Use lazy-completion-table and make-variable-buffer-local.
12624         (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
12625         (bibtex-braced-string-syntax-table)
12626         (bibtex-quoted-string-syntax-table): New variables.
12627         (bibtex-parse-nested-braces): Remove.
12628         (bibtex-parse-field-string): Use syntax table and forward-sexp.
12629         (bibtex-parse-association): Simplify.
12630         (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
12631         (bibtex-parse-field-text): Simplify.
12632         (bibtex-search-forward-field, bibtex-search-backward-field):
12633         argument BOUND can take value t.
12634         (bibtex-start-of-field, bibtex-start-of-name-in-field)
12635         (bibtex-end-of-name-in-field, bibtex-end-of-field)
12636         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
12637         (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
12638         (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
12639         (bibtex-skip-to-valid-entry): Return buffer position of beginning
12640         and ending of entry.  Update for changes of bibtex-search-entry.
12641         Simplify.
12642         (bibtex-map-entries): FUN is called with three arguments.
12643         (bibtex-search-entry): Return a cons pair with buffer positions of
12644         beginning and end of entry.
12645         (bibtex-enclosing-field): Simplify.
12646         (bibtex-format-entry): Use booktitle to set a missing title.
12647         (bibtex-autokey-get-names): Fiddle with regexps.
12648         (bibtex-generate-autokey): Use identity.
12649         (bibtex-parse-keys): Use simplified parsing algorithm if
12650         bibtex-parse-keys-fast is non-nil.  Simplify.  Change order of
12651         arguments.  Return alist of keys.
12652         (bibtex-parse-strings): Simplify.  Return alist of strings.
12653         (bibtex-complete-string-cleanup): Fix docstring.
12654         (bibtex-read-key): New function.
12655         (bibtex-mode): Fix docstring.  Do not parse for keys and
12656         strings when the mode is entered.  Set fill-paragraph-function to
12657         bibtex-fill-field.  Setup font-lock-mark-block-function the way
12658         font-lock intended.
12659         (bibtex-entry): Use bibtex-read-key.  Obey bibtex-autofill-types.
12660         (bibtex-parse-entry, bibtex-autofill-entry): New functions.
12661         (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
12662         (bibtex-Preamble): Avoid hard coded constants.
12663         (bibtex-make-field): Fix docstring.  Simplify.
12664         (bibtex-beginning-of-entry): Always return new position of point.
12665         (bibtex-end-of-entry): Rearrange cond clauses.
12666         (bibtex-count-entries, bibtex-validate, bibtex-reformat):
12667         Update for changes of bibtex-map-entries.
12668         (bibtex-ispell-abstract): Do not move point.
12669         (bibtex-entry-index): Use downcase.  Simplify.
12670         (bibtex-lessp): Handle catch-all.
12671         (bibtex-find-crossref): Turn into a command.
12672         (bibtex-find-entry): Simplify.  Use bibtex-read-key.  Fix regexp.
12673         (bibtex-clean-entry): Use bibtex-read-key.  Handle string and
12674         preamble entries.
12675         (bibtex-fill-field-bounds): New function.
12676         (bibtex-fill-field): New command.  Bound to fill-paragraph-function.
12677         (bibtex-fill-entry): Use bibtex-fill-field-bounds
12678         (bibtex-String): Use bibtex-strings.  Always obey
12679         bibtex-sort-ignore-string-entries.
12681 2003-07-05  John Paul Wallington  <jpw@gnu.org>
12683         * cus-theme.el (customize-create-theme):
12684         Call `customize-create-theme' in Reset widget's notify function.
12686         * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
12687         (ibuffer-mark-interactive): Use `or' instead of `unless'.
12688         (define-ibuffer-column name): Add summarizer.
12689         (define-ibuffer-column size): Likewise.
12690         (define-ibuffer-column filename): Likewise.
12691         (define-ibuffer-column process): Likewise.  Change BODY's output too.
12692         (define-ibuffer-column filename-and-process): Likewise, likewise.
12693         (ibuffer): Remove local vars `already-in' and `need-update'.
12695         * ibuf-ext.el: Don't require `derived' at compile-time.
12697 2003-07-05  Kim F. Storm  <storm@cua.dk>
12699         * info.el: Disable paragraph refilling.
12700         (Info-refill-paragraphs): New defcustom.
12701         (Info-fontify-node): Use it.
12703 2003-07-04  Stefan Monnier  <monnier@cs.yale.edu>
12705         * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
12706         thingies from constructors created by defstruct.
12708         * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
12709         the default value of the variable.
12710         (byte-code-meter): Move declaration to top level.
12712         * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
12714         * info.el (Info-following-node-name-re): New fun.
12715         (Info-following-node-name): Remove.
12716         (Info-insert-dir): Use the new fun.
12717         (Info-extract-pointer): Don't save restriction; use new fun.
12718         (Info-menu-entry-name-re): New const.
12719         (Info-menu-entry-name-re): Use it along with new fun.
12720         (Info-node-spec-re): Use new fun.
12721         (Info-complete-menu-item, Info-fontify-node): Use new const.
12722         (Info-goto-node, Info-follow-reference, Info-menu-update):
12723         Use match-string.
12724         (Info-follow-reference): Use assoc-string.
12725         Use a list of strings for the completion table.
12726         (Info-fontify-node): Use match-string, line-end-position.
12727         Limit the search for `node:' to the first line.
12729         * newcomment.el (uncomment-region): Remove padding coming from
12730         comment-start rather than just from comment-padding.
12732         * vc-cvs.el (vc-cvs-repository-hostname): New operation.
12733         (vc-cvs-stay-local-p): Use vc-stay-local-p.
12734         (vc-cvs-rename-file): Remove (use the default).
12735         (vc-cvs-register): Register parent dir if needed.
12736         (vc-cvs-could-register): Return non-nil if parent can be registered.
12737         (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
12738         (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
12740         * vc-svn.el (vc-svn-use-edit): Make it into a const.
12741         (vc-svn-update): Fix the arguments to `svn'.
12742         (vc-svn-diff-tree): Just use `vc-svn-diff'.
12743         (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
12744         Simple implementations, assuming `name' is a URL.
12746         * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
12747         set of chars allowed unquoted in a case pattern.
12749         * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
12751         * font-lock.el (font-lock-extra-types-widget)
12752         (c-font-lock-extra-types, c++-font-lock-extra-types)
12753         (objc-font-lock-extra-types, java-font-lock-extra-types)
12754         (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
12755         (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
12756         (font-lock-match-c++-style-declaration-item-and-skip-to-next)
12757         (font-lock-match-c++-structor-declaration)
12758         (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
12759         (c++-font-lock-keywords-3, c++-font-lock-keywords)
12760         (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
12761         (objc-font-lock-keywords-3, objc-font-lock-keywords)
12762         (java-font-lock-keywords-1, java-font-lock-keywords-2)
12763         (java-font-lock-keywords-3, java-font-lock-keywords)
12764         (java-font-lock-syntactic-face-function): Remove obsolete code
12765         and constants.  It's all in cc-fonts.el now.
12767 2003-07-04  Glenn Morris  <gmorris@ast.cam.ac.uk>
12769         * mail/sendmail.el (mail-specify-envelope-from)
12770         (mail-envelope-from): Doc fix.
12772 2003-07-04  Martin Stjernholm  <mast@lysator.liu.se>
12774         * generic-x.el: Do away with the dependency on `c-emacs-features'
12775         when populating `rul-generic-mode-syntax-table'; we already know
12776         this isn't XEmacs.
12778 See ChangeLog.10 for earlier changes.
12780 ;; Local Variables:
12781 ;; coding: iso-2022-7bit
12782 ;; End:
12784     Copyright (C) 2001, 02, 04  Free Software Foundation, Inc.
12785   Copying and distribution of this file, with or without modification,
12786   are permitted provided the copyright notice and this notice are preserved.
12788 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1