]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Remove RCS keywords
[gnu-emacs] / lisp / ChangeLog
1 2004-11-17 Miles Bader <miles@gnu.org>
2
3 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
4 * progmodes/idlwave.el: Remove RCS keywords.
5
6 2004-11-16 Richard M. Stallman <rms@gnu.org>
7
8 * international/iso-cvt.el (iso-tex2iso-trans-tab):
9 Discard spaces after \i according to TeX rules.
10
11 * international/mule.el (set-buffer-file-coding-system):
12 New arg NOMODIFY.
13 (after-insert-file-set-coding): Pass that new arg.
14 Prevent set-buffer-multibyte from trying to lock the file.
15
16 * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
17
18 * saveplace.el (save-place): Doc fix.
19
20 * dabbrev.el (dabbrev-expand): When handling SPC M-/,
21 temporarily widen before finding the following word to copy.
22
23 * emacs-lisp/lucid.el (map-keymap): Definition deleted.
24 (cl-map-keymap): Definition deleted.
25
26 * subr.el (map-keymap-internal): New function.
27
28 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change)
29
30 * international/iso-cvt.el (iso-tex2iso-trans-tab):
31 Discard whitespace after macro \i when converting it.
32
33 2004-11-16 Juri Linkov <juri@jurta.org>
34
35 * emacs-lisp/find-func.el (find-function-regexp):
36 Optimize `define-minor-mode'. Add `defun-cvs-mode'.
37 Add `deffoo'. Add `f' to [^cgv] to exclude `defface'.
38 Remove invalid `\W' from [^cgv\W]. Doc fix.
39 (find-function-search-for-symbol): Replace "\\>" with "\\_>".
40
41 2004-11-15 Luc Teirlinck <teirllm@auburn.edu>
42
43 * play/life.el: Maintainer is now FSF.
44 (life-patterns, life-neighbor-deltas, life-window-start)
45 (life-current-generation, life-generation-string): Use defvar
46 instead of defconst.
47
48 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
49
50 * progmodes/compile.el (compilation-move-to-column): New fun.
51 (compilation-internal-error-properties)
52 (compilation-next-error-function): Use it to make sure we don't go past
53 the end of line.
54
55 2004-11-15 John Paul Wallington <jpw@gnu.org>
56
57 * autoinsert.el (auto-insert-alist): Insert the user's name in
58 copyright notice, rather than Free Software Foundation, for the
59 Emacs Lisp header case too.
60
61 2004-11-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
62
63 * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
64 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
65 (pr-switches-string): If SWITCHES is nil, return nil. Otherwise,
66 return the list of string in a string.
67 (pr-call-process): Message if calling process returns an error, that
68 is, the exit status is different of zero.
69
70 2004-11-15 Jay Belanger <belanger@truman.edu>
71
72 * calc/calcalg2.el (math-integrate-by-parts): Remove unused
73 variable var-thing.
74
75 (math-integ-depth, math-integ-level, math-integral-limit)
76 (math-enable-subst, math-any-substs, math-integ-msg)
77 (math-prev-parts-v, math-good-parts, math-max-integral-limit)
78 (math-int-threshold, math-int-factors, math-double-roots)
79 (math-solve-simplifying, var-IntegLimit, math-solve-sign)
80 (var-GenCount): Declare these variables.
81 (calcFunc-integ): Don't check if var-IntegLimit is bound.
82
83 (math-integral-cache, math-integral-cache-state):
84 Move declarations to earlier in the file.
85
86 (math-deriv-var, math-deriv-total, math-deriv-symb)
87 (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
88 (math-so-far, math-integ-expr, math-expr-parts, calc-low)
89 (calc-high, math-solve-var, math-solve-full, math-solve-vars)
90 (math-try-solve-sign, math-solve-b, math-solve-system-vv)
91 (math-solve-res): New variables
92 (math-derivative, calcFunc-deriv, calcFunc-tderiv)
93 (math-integral, math-replace-integral-parts)
94 (math-integrate-by-parts, calc-dump-integral-cache)
95 (math-try-integral, math-do-integral, math-do-integral)
96 (math-do-integral-methods, math-try-solve-for)
97 (math-try-solve-prod, math-solve-poly-funny-powers)
98 (math-solve-crunch-poly, math-decompose-poly)
99 (math-solve-find-root-term, math-find-root-in-prod)
100 (math-integ-try-linear-substitutions)
101 (math-integ-try-substitutions, math-expr-rational-in)
102 (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
103 (math-solve-prod, math-solve-quartic, math-poly-all-roots)
104 (math-solve-for, math-solve-system, math-solve-system-rec)
105 (math-solve-get-sign, math-solve-get-int)
106 (math-solve-system-subst): Replace undeclared variables with newly
107 declared variables.
108
109 2004-11-14 Luc Teirlinck <teirllm@auburn.edu>
110
111 * files.el (convert-standard-filename): Doc fix.
112
113 2004-11-14 Daniel Pfeiffer <occitan@esperanto.org>
114
115 * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
116 passwd, group, shadow, default/* and pam.d/*.
117
118 2004-11-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
119
120 * printing.el (pr-menu-spec): Adjust menu specification.
121
122 2004-11-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
123
124 * printing.el: Doc fix. Insert :version tag into all defcustom.
125 Handle interactive-p as is recommended in Emacs Lisp Reference.
126 Set the file permission bits for newly created files.
127 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
128 The printing menu specification (in `pr-menu-spec') was merged.
129 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
130 (pr-version): New version number (6.8.3).
131 (pr-file-modes): New option.
132 (pr-interactive-p): New var.
133 (pr-save-interactive, pr-save-file-modes): New macros.
134 (pr-setup): Code fix.
135 (pr-menu-spec): Menu specification merged.
136 (pr-call-process, pr-text2ps): Set file permission bits.
137 (pr-despool-print): Set file permission bits. Handle interactive-p as
138 is recommended.
139 (pr-interface, pr-ps-directory-preview)
140 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
141 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
142 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
143 (pr-ps-buffer-ps-print, pr-ps-region-preview)
144 (pr-ps-region-using-ghostscript, pr-ps-region-print)
145 (pr-ps-region-ps-print, pr-ps-mode-preview)
146 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
147 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
148 (pr-despool-using-ghostscript, pr-despool-ps-print)
149 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
150 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
151 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
152 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
153 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
154 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
155 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
156 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
157 (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
158 (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
159 Handle interactive-p as is recommended.
160
161 2004-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
162
163 * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
164 (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
165
166 * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
167 so it doesn't forget to highlight the beginning of the region either.
168
169 2004-11-13 Daniel Pfeiffer <occitan@esperanto.org>
170
171 * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
172 (c-font-lock-init): Eliminate obsolete make-local-hook.
173 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
174 (awk-mode): Use run-mode-hooks.
175
176 * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
177
178 2004-11-13 Kim F. Storm <storm@cua.dk>
179
180 * mouse.el (mouse-drag-copy-region): Add :version.
181 (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
182 while dragging mode line, so mode line can be dragged downwards.
183 (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
184 while pressing mouse button so window doesn't scroll until we
185 release the mouse if clicking on partially visible line.
186
187 2004-11-12 Jay Belanger <belanger@truman.edu>
188
189 * calc/calc-graph.el (calc-dumb-map): Declare it.
190 (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather
191 than unbound.
192 (calc-graph-name): Made `end' a local variable.
193 (calc-graph-lookup): Made `varname' a local variable.
194 (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
195 Declare them.
196 (calc-graph-format-data): Don't check if var-PlotRejects is bound.
197 (calc-graph-plot, calc-graph-compute-3d): Remove references to
198 the unused variable y3vec.
199 (calc-graph-show-dumb): Remove reference to unused variable found-pt.
200 (calc-graph-kill-hook, calc-graph-plot): Remove reference to
201 calc-graph-prev-kill-hook.
202 (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
203 (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
204 (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
205 (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
206 (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
207 (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
208 (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
209 (calc-graph-y3value, calc-graph-y3name)
210 (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
211 (calc-graph-stepcount, calc-graph-is-splot)
212 (calc-graph-surprise-splot, calc-graph-blank)
213 (calc-graph-non-blank, calc-graph-curve-num): New variables.
214 (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
215 (calc-graph-recompute-2d, calc-graph-compute-3d)
216 (calc-graph-format-data): Replace undeclared variables with the
217 above newly declared variables.
218
219 2004-11-12 Diane Murray <dsm@muenster.de> (tiny change)
220
221 * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
222 `rsf-beep' and `rsf-sleep-after-message'.
223
224 * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
225 list if `message-sender' is non-nil.
226
227 2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
228
229 * desktop.el (desktop-create-buffer, desktop-save): Avoid some
230 consing by using mapc instead of mapcar.
231
232 2004-11-12 Nick Roberts <nickrob@snap.net.nz>
233
234 * tooltip.el (require): Explain why CL is needed.
235
236 2004-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
237
238 * printing.el: Insert :version into defgroup (printing). All reference
239 to Files option in menubar were changed to File.
240 (pr-version): New version number (6.8.2).
241 (pr-get-symbol): Call easy-menu-intern.
242 (pr-region-active-p): Now is a fun (it was defsubst). To avoid
243 compilation gripes.
244
245 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
246
247 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
248 new byte-compile-function-environment binding to t.
249
250 * font-lock.el (font-lock-fontify-syntactically-region):
251 Don't forget to highlight the last char when we hit `end'.
252
253 * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
254 (mwheel-scroll): Adjust accordingly.
255
256 * cvs-status.el: Reduce spurious warnings.
257 (cvs-status-checkout): Remove.
258 (cvs-status-mode-map): Use cvs-mode-checkout instead.
259
260 * pcvs.el (cvs-mode-checkout): New command.
261
262 * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
263
264 * tooltip.el: Require CL.
265
266 * emacs-lisp/bytecomp.el: Use push.
267 (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
268 (defalias): Remove the `byte-compile' property and add
269 a `byte-hunk-handler'.
270
271 2004-11-11 Juri Linkov <juri@jurta.org>
272
273 * info.el (Info-search): Save match data for isearch.
274 Skip Tag Table node.
275
276 * descr-text.el (describe-char): Replace syntax-after with code
277 from its previous version.
278
279 * files.el (magic-mode-alist): Use optimization for SGML mode too.
280 (set-auto-mode): Doc fix. Remove unused variable `xml'.
281
282 * international/mule.el (sgml-html-meta-auto-coding-function):
283 Remove > after <html to allow HTML attributes.
284
285 2004-11-11 Jay Belanger <belanger@truman.edu>
286
287 * calc/calc-comb.el (math-prime-factors-finished): Declare it as
288 a variable.
289 (calcFunc-dfac): Replace unbound max by n.
290 (math-stirling-local-cache): New variable.
291 (math-stirling-number, math-stirling-1, math-stirling-2):
292 Replace the variable `cache' by the declared variable
293 math-stirling-local-cache.
294 (var-RandSeed): Declare it as a variable.
295 (math-init-random-base, math-random-digit): Don't check to see if
296 var-RandSeed is bound.
297 (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
298 Declare them instead of just setting them.
299 (math-init-random-base): Made i a local variable.
300 (math-random-digit): Made math-random-last a local variable.
301 (math-prime-test-cache): Move declaration to before it is used.
302 (math-prime-test-cache-k, math-prime-test-cache-q)
303 (math-prime-test-cache-nm1, math-prime-factors-finished):
304 Declare them as variables.
305
306 2004-11-11 Jay Belanger <belanger@truman.edu>
307
308 * calc/calc-ext.el (math-defcache): Use defvar for the new
309 variables it creates.
310
311 2004-11-11 Lars Hansen <larsh@math.ku.dk>
312
313 * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
314 (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
315 (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
316 (desktop-save): Add :version.
317
318 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
319
320 * printing.el (pr-get-symbol): Don't downcase.
321
322 2004-11-10 Jay Belanger <belanger@truman.edu>
323
324 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
325 string to kill-ring.
326
327 * calc/calc-aent.el (calc-alg-exp, math-toks)
328 (math-exp-pos,math-exp-old-pos, math-exp-token)
329 (math-exp-keep-spaces, math-exp-str): New variables.
330 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
331 (calcAlg-enter): Use declared variable calc-alg-exp.
332 (math-build-parse-table, math-find-user-token): Use declared
333 variable math-toks.
334 (math-read-exprs, math-read-token, calc-check-user-syntax)
335 (calc-match-user-syntax, match-factor-after, math-read-factor):
336 Use declared variables math-exp-pos math-exp-old-pos.
337 (math-read-exprs, math-read-token, math-read-expr-level)
338 (calc-check-user-syntax, calc-match-user-syntax)
339 (match-factor-after, math-read-factor): Use declared variable
340 math-exp-token.
341 (math-read-exprs, math-read-expr-list, math-read-token)
342 (math-read-factor): Use declared variable math-exp-keep-spaces.
343 (math-read-exprs, math-read-token): Use declared variable
344 math-exp-str.
345 (calc-match-user-syntax): Make m a local variable.
346
347 * calc/calc-ext.el (math-read-expr): Use declared variables
348 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
349 math-exp-keep-spaces.
350
351 * calc/calc-forms.el (math-read-angle-bracket): Use declared
352 variables math-exp-pos, math-exp-str.
353
354 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
355 math-exp-old-pos.
356 (math-parse-fortran-vector, math-parse-fortran-vector-end)
357 (math-parse-eqn-prime): Use declared variable math-exp-token.
358
359 * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
360 Use declared variable math-exp-pos.
361 (math-check-for-commas): Use declared variable math-exp-str.
362 (math-read-brackets): Use declared variables math-exp-old-pos,
363 math-exp-keep-spaces.
364 (math-read-brackets, math-read-vector, math-read-matrix):
365 Use declared variable math-exp-token.
366
367 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
368
369 * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
370 where the keymap is a symbol.
371 (easy-menu-add-item): Use keymap-prompt. Simplify.
372
373 * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
374
375 * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
376 (sgml-parse-tag-backward): Use it to skip spurious < or >.
377
378 2004-11-10 Thien-Thi Nguyen <ttn@gnu.org>
379
380 * ebuff-menu.el: Doc fixes throughout.
381 (electric-buffer-menu-mode-hook): New defvar.
382
383 2004-11-10 Nick Roberts <nickrob@snap.net.nz>
384
385 * tooltip.el: Don't require cl, comint, gud, gdb-ui for
386 compilation. The resulting compiler warnings appear to be harmless.
387
388 2004-11-10 Daniel Pfeiffer <occitan@esperanto.org>
389
390 * textmodes/conf-mode.el: New file.
391
392 * files.el (auto-mode-alist, magic-mode-alist): Use it.
393
394 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
395
396 * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
397
398 2004-11-09 Jay Belanger <belanger@truman.edu>
399
400 * calc/calc-ext.el (calc-init-extensions): Remove old code.
401
402 * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
403 (calc-z-prefix-buf, calc-z-prefix-msgs): New variables.
404 (calc-z-prefix-help, calc-user-function-list): Use declared
405 variables calc-z-prefix-buf, calc-z-prefix-msgs.
406 (math-map-tree, math-map-tree-rec): Use declared variables
407 math-mt-many, math-mt-func.
408 (math-read-expression, math-read-string): Use declared variable
409 math-expr-data.
410
411 * calc/calc-ext.el (math-normalize-nonstandard): Use declared
412 variable math-normalize-a.
413
414 * calc/calc.el (math-normalize-a): New variable.
415 (math-normalize): Use declared variable math-normalize-a.
416
417 * calc/calc-poly.el (math-expand-form): Use declared variable
418 math-mt-many.
419
420 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
421 Use declared variable math-mt-many.
422 (math-rewrite): Use declared variable math-mt-func.
423
424 * calc/calc-vec.el (math-read-brackets, math-read-vector)
425 (math-read-matrix): Use declared variable math-expr-data.
426
427 * calc/calc-lang.el (math-parse-fortran-vector)
428 (math-parse-fortran-vector-end, math-parse-tex-sum)
429 (math-parse-eqn-matrix, math-parse-eqn-prime)
430 (math-read-math-subscr): Use declared variable math-expr-data.
431
432 * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
433 (math-read-expr-level, math-read-token, calc-check-user-syntax)
434 (calc-match-user-syntax, math-read-if, math-factor-after)
435 (math-read-factor): Use declared variable math-expr-data.
436
437 2004-11-09 Glenn Morris <gmorris@ast.cam.ac.uk>
438
439 * calendar/diary-lib.el (diary-from-outlook)
440 (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
441 interactive-p; but rather new optional argument NOCONFIRM.
442
443 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
444
445 * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
446 (easy-menu-name-match): Revert correspondingly.
447
448 2004-11-09 Richard M. Stallman <rms@gnu.org>
449
450 * emacs-lisp/bytecomp.el (byte-compile-defalias):
451 Turn off warnings for the new function even if definition not constant.
452 If the definition isn't a quoted symbol, record (FUNCTION . t).
453 (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
454 (byte-compile-callargs-warn): Handle (FUNCTION . t).
455 (display-call-tree, byte-compile-arglist-warn):
456 Handle t returned by byte-compile-fdefinition.
457
458 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
459
460 * Makefile.in (maintainer-clean): Depend on distclean.
461
462 * help-fns.el (help-C-file-name): File name must be in build-files
463 to be returned.
464
465 2004-11-09 Jay Belanger <belanger@truman.edu>
466
467 * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
468 (calc-start-hook, calc-end-hook, calc-load-hook): New variables.
469
470 * calc/calc.el (calc, calc-trail-display, calc-mode):
471 Remove obsolete sections.
472
473 * calc/calc.el (calc-x-paste-text): Remove.
474
475 * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to
476 mouse-2.
477
478 2004-11-09 Nick Roberts <nickrob@snap.net.nz>
479
480 * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
481 (gdb-info-frames-custom, gdb-frame-handler): Use it to find
482 current frame (in case of recursive calls).
483 (gdb-show-changed-values): Add :version keyword.
484
485 2004-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
486
487 * international/mule-cmds.el: Change coding-system to utf-8.
488 (select-safe-coding-system-interactively):
489 New function extracted from select-safe-coding-system.
490 (select-safe-coding-system): Use it.
491
492 2004-11-08 Richard M. Stallman <rms@gnu.org>
493
494 * subr.el (syntax-after): Doc fix.
495
496 * paren.el (show-paren-function): Change calls to syntax-after
497 for new way of returning the value.
498
499 * menu-bar.el (menu-bar-file-menu): Make this the real name
500 and menu-bar-files-menu the alias. Use the former.
501 (global-map): Use `file', not `files', as the symbol.
502
503 * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
504
505 * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
506 Don't use beginning-of-buffer.
507 (filesets-cmd-show-result): Use with-no-warnings.
508
509 2004-11-08 Juri Linkov <juri@jurta.org>
510
511 * progmodes/compile.el (compile): Don't overwrite last command in
512 minibuffer history with default command if they are not equal.
513
514 2004-11-08 Jay Belanger <belanger@truman.edu>
515
516 * calc/calcalg2.el (math-do-integral-methods): Try linear then
517 non-linear substitutions.
518
519 2004-11-08 Jay Belanger <belanger@truman.edu>
520
521 * calc/calcalg2.el (math-linear-subst-tried): New variable.
522 (math-do-integral): Set `math-linear-subst-tried' to nil.
523 (math-do-integral-methods): Use `math-linear-subst-tried' to
524 determine what type of substitution to try.
525 (math-integ-try-linear-substituion):
526 Set `math-linear-subst-tried' to t.
527
528 2004-11-08 Kim F. Storm <storm@cua.dk>
529
530 * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
531
532 2004-11-07 Juri Linkov <juri@jurta.org>
533
534 * info-look.el (info-lookup): Allow reusing in the current buffer
535 not only *info* buffer, but all (even renamed) Info buffers
536 by checking for major-mode instead of *info* buffer name.
537 (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
538 (octave-mode, maxima-mode) <doc-spec>:
539 Allow long dashes generated by Texinfo 4.7 before definitions.
540 (texinfo-mode) <doc-spec>: Add space to suffix to find command
541 definitions with argument separated by space.
542
543 2004-11-06 Richard M. Stallman <rms@gnu.org>
544
545 * simple.el (next-error group, face): Move before first use.
546 (next-error-highlight, next-error-highlight-no-select): Likewise.
547
548 * simple.el (line-move-invisible-p): Rename from line-move-invisible.
549 (line-move): New args NOERROR and TO-END.
550 Return t if if succeed in moving specified number of lines.
551 (move-end-of-line): New function.
552
553 * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
554 (end-of-buffer-other-window): Likewise.
555
556 * simple.el (line-move-ignore-invisible): Default to t.
557
558 * subr.el (syntax-after): Return the syntax letter, not the raw code.
559
560 * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
561
562 * international/iso-cvt.el (iso-cvt-define-menu):
563 Rename menu-bar-files-menu to menu-bar-file-menu.
564
565 * net/browse-url.el (browse-url-gnome-moz-program)
566 (browse-url-gnome-moz-arguments): Move up before first use.
567
568 * net/tramp.el (tramp group): Add :version.
569
570 * progmodes/ada-xref.el (ada-gdb-application):
571 Use goto-char instead of beginning-of-buffer.
572
573 * progmodes/cperl-mode.el (cperl-info-on-command):
574 Use goto-char instead of beginning-of-buffer.
575
576 * progmodes/idlw-shell.el (idlwave-shell-examine-map):
577 Move up before first use.
578 (idlwave-shell-temp-pro-file): Likewise.
579 (idlwave-shell-temp-rinfo-save-file): Likewise.
580 (idlwave-shell-temp-file): Minor doc fix.
581
582 * textmodes/flyspell.el (flyspell-external-point-words):
583 Use goto-char instead of beginning-of-buffer.
584
585 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net>
586
587 * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
588 /dev/stdout" before trying "uudecode -o -". Suggested by Han Boetes.
589 (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
590
591 2004-11-06 David Ponce <david@dponce.com>
592
593 * recentf.el (recentf-menu-path): Use menu item name.
594
595 2004-11-06 Eli Zaretskii <eliz@gnu.org>
596
597 * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
598 display doesn't support images.
599
600 2004-11-06 Andreas Schwab <schwab@suse.de>
601
602 * tempo.el (tempo-match-finder): Doc fix.
603
604 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
605
606 2004-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
609 (easy-menu-lookup-name): New fun to replace it.
610 (easy-menu-get-map): Use it to obey menu item names (rather than just
611 keys) when looking up `path'.
612 (easy-menu-always-true-p): Rename from easy-menu-always-true.
613 (easy-menu-convert-item-1): Adjust to new name.
614
615 2004-11-06 Peter Heslin <pj@heslin.eclipse.co.uk> (tiny change)
616
617 * outline.el (hide-body): Don't hide lines at the top of the file
618 that precede the first header line.
619
620 2004-11-06 Paul Pogonyshev <pogonyshev@gmx.net>
621
622 * align.el (align-areas): Delete whitespace before reindenting, so
623 that tabs are never placed after spaces.
624
625 2004-11-06 Alan Shutko <ats@acm.org>
626
627 * macros.el (insert-kbd-macro): Do completions based on macros,
628 rather than all commands.
629
630 2004-11-06 David Hansen <david.hansen@gmx.net> (tiny change)
631
632 * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
633 to solve a bug whereby tags with 'b' don't match.
634
635 2004-11-05 Juri Linkov <juri@jurta.org>
636
637 * info.el (Info-search): Don't search in node header lines
638 and file headers.
639
640 * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
641 symbol-constituent characters after dot, not only digits.
642
643 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org>
644
645 * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
646
647 2004-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
648
649 * dired.el (dired-read-dir-and-switches): Call read-directory-name
650 if a dialog will be used, read-file-name otherwise.
651
652 2004-11-04 Richard M. Stallman <rms@gnu.org>
653
654 * textmodes/table.el (table group): Add :version.
655
656 * textmodes/ispell.el (ispell-word):
657 Don't alter args; set them only thru `interactive' spec.
658
659 * textmodes/flyspell.el (flyspell-word):
660 Don't alter FOLLOWING; set it only thru `interactive' spec.
661
662 * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
663
664 * net/browse-url.el (browse-url-maybe-new-window):
665 Use called-interactively-p.
666
667 * mail/supercite.el (sc-cite-region):
668 Don't use interactive-p. Add arg INTERACTIVE.
669 (sc-version): Don't use interactive-p. Rename arg to MESSAGE.
670
671 * international/mule-cmds.el (set-input-method, toggle-input-method):
672 Don't use interactive-p. Add arg INTERACTIVE.
673
674 * eshell/esh-mode.el (eshell-show-maximum-output):
675 Don't use interactive-p.
676 (eshell-truncate-buffer): Just message, no error, if buffer is short.
677
678 * mouse.el (mouse-show-mark): Get positions to delete from mark
679 and point, not from mouse-drag-overlay.
680
681 * imenu.el (imenu-eager-completion-buffer): Add :version.
682
683 * filesets.el (filesets group): Add :version.
684
685 2004-11-03 Daniel Pfeiffer <occitan@esperanto.org>
686
687 * files.el (xml-based-modes): Delete var.
688 (magic-mode-alist): New more general var.
689 (set-auto-mode): Use it.
690
691 * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
692 when clicking from another window.
693
694 2004-11-03 Thien-Thi Nguyen <ttn@gnu.org>
695
696 * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
697 (vc-cvs-annotate-time): Incorporate value of deleted var.
698 Remove special-case handling of beginning-of-buffer cruft.
699 Cache ending position (point) and return value in text property
700 `vc-cvs-annotate-time', and consult it on subsequent invocations.
701
702 * vc-cvs.el (vc-cvs-annotate-command):
703 Delete extraneous lines from beginning of buffer.
704 * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
705
706 * progmodes/grep.el (grep-default-command): Take empty string
707 for tag if all other methods yield nil. Shell-quote the tag.
708
709 * vc.el (vc-annotate-display-autoscale): Add prefix-arg
710 spec in `interactive' form, and mention it in the docstring.
711 Also, make sure point is at bol after calling `annotate-time'.
712
713 2004-11-02 Richard M. Stallman <rms@gnu.org>
714
715 * cus-edit.el (customize-group-other-window):
716 Select the window that displays the custom buffer.
717 (custom-buffer-create-other-window): Likewise.
718
719 * comint.el (comint-insert-input): Fix previous change.
720
721 * emacs-lisp/elp.el (elp-instrument-function):
722 Use called-interactively-p.
723
724 * emacs-lisp/easymenu.el (easy-menu-intern):
725 Don't downcase; rather, case-flip the first letter of each word.
726
727 * emacs-lisp/easy-mmode.el (define-minor-mode):
728 Use called-interactively-p.
729
730 * emacs-lisp/bytecomp.el (byte-compile-warning-types):
731 Add interactive-only.
732 (byte-compile-warnings): Add interactive-only as option.
733 (byte-compile-interactive-only-functions): New variable.
734 (byte-compile-form): Warn about calls to functions
735 in byte-compile-interactive-only-functions.
736
737 * emacs-lisp/autoload.el (update-file-autoloads):
738 Don't use interactive-p; take new arg SAVE-AFTER.
739
740 * emacs-lisp/advice.el (ad-make-advised-definition):
741 Use called-interactively-p.
742
743 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
744
745 * files.el (find-file-existing): New function.
746
747 * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
748 find-file-existing. Add "New File..." that calls find-file.
749
750 * diropen.pbm diropen.xpm: New files.
751
752 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
753 icon diropen. New tool bar item find-file-existing uses icon open.
754
755 * dired.el (dired-read-dir-and-switches): Call read-driectory-name
756 instead of read-file-name.
757
758 2004-11-02 Ulf Jasper <ulf.jasper@web.de>
759
760 * calendar/icalendar.el (icalendar-version): Increase to 0.08.
761 (icalendar--split-value): Change name of work buffer.
762 (icalendar--get-weekday-abbrev): Return nil on error.
763 (icalendar--date-to-isodate): New function.
764 (icalendar-convert-diary-to-ical)
765 (icalendar-extract-ical-from-buffer): Use only two args for
766 make-obsolete (XEmacs compatibility).
767 (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
768 (icalendar-export-region): Doc fix.
769 If error, return non-nil and write errors to a buffer.
770 Use correct weekday for weekly recurring events.
771 Check whether date has been parsed for ordinary events.
772 Make weekly events start in the year 2000.
773 DTEND is non-inclusive, shift end date by one day if
774 necessary (not for entries that have date and time).
775 Rename local let variables: oops -> found-error, datestring ->
776 startdatestring.
777
778 2004-11-02 Kim F. Storm <storm@cua.dk>
779
780 * files.el (set-auto-mode-0): Don't rely on dynamic binding of
781 keep-mode-if-same variable. Add it as optional arg instead.
782 (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
783
784 * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
785 substitute-command-keys will select lower-case bindings like those
786 used in the static help texts.
787
788 * descr-text.el (describe-text-properties): Don't err if called in
789 the *Help* buffer; output to *Help-2* buffer instead.
790
791 * kmacro.el (group kmacro): Add :version.
792 (kmacro-keyboard-quit): New function to cleanup on C-g.
793 (kmacro-start-macro): Set defining-kbd-macro to append when
794 appending to last macro.
795
796 * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
797
798 2004-11-02 Nick Roberts <nickrob@snap.net.nz>
799
800 * progmodes/gdb-ui.el (gdb-enable-debug-log)
801 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
802 (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
803 Add :version keyword.
804
805 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com>
806
807 * progmodes/flymake.el (flymake-err-line-patterns):
808 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
809 `compilation-error-regexp-alist-alist' to internal Flymake format.
810
811 * progmodes/flymake.el: eliminated byte-compiler warnings.
812
813 2004-11-01 Jay Belanger <belanger@truman.edu>
814
815 * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
816 with `interactive "s"'.
817
818 2004-11-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
819
820 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
821 Revert change from 2004-10-16. '*' checks the current buffer, but the
822 mouse click may be in another buffer.
823
824 2004-11-01 John Paul Wallington <jpw@gnu.org>
825
826 * files.el (large-file-warning-threshold): Add :version keyword.
827 (kill-some-buffers): Doc fix.
828
829 * thumbs.el (group thumbs): Add :version keyword.
830
831 * textmodes/bibtex.el (bibtex-make-field): Fix typo.
832
833 2004-11-01 Richard M. Stallman <rms@gnu.org>
834
835 * textmodes/ispell.el (ispell-word): Don't use interactive-p.
836
837 * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
838
839 * allout.el (allout group): Add :version.
840 (allout-init): Don't use interactive-p.
841 (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
842 (allout-forward-current-level, allout-backward-current-level):
843 Don't use interactive-p.
844
845 * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
846 (bibtex-find-text): Likewise.
847
848 * progmodes/vhdl-mode.el (vhdl-fill-region)
849 (vhdl-beginning-of-statement): Don't use interactive-p.
850
851 * progmodes/idlwave.el (idlwave-update-routine-info):
852 Don't use interactive-p.
853
854 * progmodes/idlw-shell.el (idlwave-shell-send-char):
855 Don't use interactive-p.
856
857 * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
858 Don't use interactive-p.
859
860 * progmodes/ada-xref.el (ada-make-body-gnatstub):
861 Don't use interactive-p.
862
863 * play/fortune.el (fortune-to-signature): Don't use interactive-p.
864 (fortune-in-buffer): Doc fix.
865
866 * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
867
868 * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
869 don't select the temporary buffer.
870 (eudc-get-email): New optional arg ERROR; don't use interactive-p.
871 (eudc-get-phone): Likewise.
872
873 2004-11-01 Kim F. Storm <storm@cua.dk>
874
875 * man.el (Man-xref-normal-file): Fix help-echo.
876
877 2004-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
878
879 * reveal.el (reveal-last-tick): New var.
880 (reveal-post-command): Use it to avoid closing overlays when we're
881 appending text to them.
882
883 2004-10-31 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
884
885 * textmodes/bibtex.el: Require button.
886 (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
887 (bibtex-reference-keys): Distinguish between header keys and
888 crossref keys.
889 (bibtex-beginning-of-field): New function.
890 (bibtex-url-map): Remove.
891 (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
892 (bibtex-font-lock-url-regexp): Assume that field names begin at
893 the beginning of a line.
894 (bibtex-font-lock-url): Simplify. Do not use bibtex-enclosing-field.
895 Remove field delimiters. Use bibtex-beginning-of-field.
896 Bugfix, point can be inside a field with a url.
897 (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
898 New functions.
899 (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
900 (bibtex-key-in-head): Simplify.
901 (bibtex-current-line): Use bolp.
902 (bibtex-parse-keys): Remove unused arg `add'.
903 Use bibtex-type-in-head and bibtex-key-in-head.
904 (bibtex-parse-entry, bibtex-autofill-entry):
905 Use bibtex-type-in-head and bibtex-key-in-head.
906 (bibtex-autokey-get-field): Do not alter case of replacement text.
907 (bibtex-autokey-get-names): Do all processing of name list.
908 (bibtex-autokey-get-year): New function.
909 (bibtex-autokey-get-title): Do all processing of title words.
910 (bibtex-generate-autokey): Simplify.
911 (bibtex-string-files-init): Use default-directory.
912 Allow for absolute file names in bibtex-string-files.
913 (bibtex-files, bibtex-file-path): New variables.
914 (bibtex-files-expand): New function.
915 (bibtex-find-entry-globally): New command.
916 (bibtex-summary-function): New variable.
917 (bibtex-summary): Default value of bibtex-summary-function.
918 (bibtex-find-crossref): New optional args pnt and split.
919 (bibtex-complete-key-cleanup): Call bibtex-summary-function.
920 (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
921 (bibtex-validate): Fix docstring. Check only abbreviated month fields.
922 Fix handling of required and alternative fields.
923 Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
924 Use cons and display-buffer.
925 (bibtex-validate-globally): New command.
926 (bibtex-clean-entry): Use bibtex-files-expand. Do not call
927 bibtex-parse-keys and bibtex-parse-strings for updating
928 bibtex-reference-keys and bibtex-strings.
929 (bibtex-realign): Remove blank lines past the last entry.
930 (bibtex-reformat): Use bibtex-entry-format as default.
931 (bibtex-choose-completion-string): Remove.
932 (bibtex-complete): Do not use bibtex-choose-completion-string.
933 (bibtex-url): Simplify.
934
935 2004-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
936
937 * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
938 (x-dnd-types-alist, x-dnd-open-file-other-window)
939 (x-dnd-known-types): Add :version.
940
941 2004-10-31 John Paul Wallington <jpw@gnu.org>
942
943 * ibuffer.el (group ibuffer): Add :version keyword.
944
945 2004-10-31 Kim F. Storm <storm@cua.dk>
946
947 * ido.el (group ido): Add :version keyword.
948 (ido-mode): Remove :version keyword.
949
950 * emulation/cua-base.el (group cua): Add :version keyword.
951 (cua-mode): Remove :version keyword.
952
953 2004-10-30 Luc Teirlinck <teirllm@auburn.edu>
954
955 * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
956
957 * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
958 compiler warning.
959 (help-at-pt-timer-delay): Add :initialize keyword. Simplify :set
960 function.
961 (help-at-pt-display-when-idle): Remove autoload.
962
963 2004-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
964
965 * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
966
967 2004-10-30 Juri Linkov <juri@jurta.org>
968
969 * help.el (function-called-at-point):
970 * help-fns.el (variable-at-point): Read -> intern.
971
972 2004-10-30 Simon Josefsson <jas@extundo.com>
973
974 * progmodes/autoconf.el (autoconf-font-lock-keywords):
975 Recognize AS_* too.
976
977 2004-10-29 Simon Josefsson <jas@extundo.com>
978
979 * subr.el (read-passwd): Move back from password.el.
980
981 * password.el: Remove, not ready yet.
982
983 2004-10-29 Andreas Schwab <schwab@suse.de>
984
985 * speedbar.el (speedbar-frame-parameters): Improve customize type.
986
987 2004-10-29 Sam Steingold <sds@gnu.org>
988
989 * mouse.el (mouse-show-mark): Replace the last occurrence of
990 x-lost-selection-hooks with x-lost-selection-functions.
991
992 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
993
994 * mouse.el (mouse-show-mark): Adjust to new name and don't assume
995 x-lost-selection-functions is bound.
996
997 * mouse-sel.el (mouse-sel-mode):
998 * emacs-lisp/lselect.el: Adjust to new names for
999 x-(lost|sent)-selection-functions.
1000
1001 * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
1002 New obsolete aliases of x-lost-selection-functions and
1003 x-sent-selection-functions.
1004
1005 2004-10-28 Kim F. Storm <storm@cua.dk>
1006
1007 * imenu.el (imenu-scanning-message): Remove.
1008 (imenu-progress-message): Make it a no-op.
1009
1010 2004-10-28 John Paul Wallington <jpw@gnu.org>
1011
1012 * files.el (set-auto-mode): Call `throw' correctly.
1013
1014 2004-10-28 Juri Linkov <juri@jurta.org>
1015
1016 * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
1017 to search `Info-...' commands in `info' manual.
1018 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
1019 Add 'info-file "emacs" property.
1020 (Info-find-emacs-command-nodes): Fix index line number regexp.
1021 Set real line number (instead of fake 0) in first element of the
1022 returned list.
1023 (Info-goto-emacs-command-node): Use line number of first element
1024 to set point in the first found Info node.
1025
1026 * progmodes/grep.el (grep-regexp-alist): Move match highlighting
1027 code to `grep-mode-font-lock-keywords'.
1028 (grep-mode-font-lock-keywords): Delete grep markers instead
1029 of making them invisible.
1030
1031 2004-10-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1032
1033 * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
1034 and x-server-version in bug report.
1035
1036 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org>
1037
1038 * files.el (set-auto-mode-0): New function.
1039 (set-auto-mode): Use it to handle aliased modes and to
1040 be consistent between C-x C-f and C-x C-w.
1041
1042 2004-10-28 Kenichi Handa <handa@m17n.org>
1043
1044 * international/utf-8.el (utf-translate-cjk-charsets):
1045 Add katakana-jisx0201.
1046
1047 * international/subst-jis.el: Add data for JISX0201.
1048
1049 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
1050
1051 * obsolete/hilit19.el (hilit-mode): New function.
1052 Move all the toplevel side-effecting stuff into it, so that loading
1053 hilit19 doesn't mess everything up any more.
1054
1055 2004-10-27 Richard M. Stallman <rms@gnu.org>
1056
1057 * add-log.el (add-change-log-entry): Set up mailing address
1058 and full name later, and don't alter add-log-mailing-address
1059 or add-log-full-name.
1060
1061 * elide-head.el (elide-head): Change error to message.
1062 (elide-head-show): Likewise.
1063
1064 * apropos.el (apropos-macrop): Doc fix.
1065
1066 * mouse.el (mouse-show-mark): Do most processing the same
1067 regardless of transient-mark-mode.
1068
1069 * shadowfile.el (shadow-copy-files): Use interactive-p
1070 only to control whether to print a message.
1071
1072 * tar-mode.el (tar-mode): Use write-contents-functions,
1073 not write-contents-hooks.
1074
1075 * eshell/em-unix.el (eshell-du-sum-directory): Don't use
1076 directory-sep-char.
1077
1078 2004-10-27 Richard M. Stallman <rms@gnu.org>
1079
1080 * strokes.el (strokes-unload-hook): Fix previous change.
1081
1082 * type-break.el (type-break-run-at-time): Always use run-at-time;
1083 forget the alternatives.
1084 (type-break-cancel-function-timers): Always use cancel-function-timers;
1085 forget the alternatives.
1086
1087 * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
1088
1089 2004-10-27 Kenichi Handa <handa@m17n.org>
1090
1091 * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
1092
1093 * international/subst-gb2312.el: Likewise.
1094
1095 * international/subst-big5.el: Likewise.
1096
1097 * international/subst-ksc.el: Likewise.
1098
1099 * international/utf-8.el (utf-translate-cjk-unicode-range-string):
1100 New variable.
1101 (utf-translate-cjk-set-unicode-range): New function.
1102 (utf-translate-cjk-unicode-range): Make it customizable.
1103 (utf-8-post-read-conversion):
1104 Use utf-translate-cjk-unicode-range-string.
1105 (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
1106 Unicode ranges.
1107
1108 2004-10-26 Daniel Pfeiffer <occitan@esperanto.org>
1109
1110 * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
1111 trivial variants to shorten the list.
1112 (xml-based-modes): New var.
1113 (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
1114 declaration higher priority than auto-mode-alist.
1115
1116 * find-file.el (cc-other-file-alist): Bring it in line with
1117 cc-mode's auto-mode-alist entries and use \' instead of $.
1118
1119 * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
1120 and add "Id" and "Name" submenus to it.
1121
1122 * imenu.el (imenu--generic-function): Skip matches in comments.
1123
1124 2004-10-26 Jay Belanger <belanger@truman.edu>
1125
1126 * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
1127 (full-calc-keypad, calc-trail-display): Use an extra argument
1128 instead of `interactive-p'.
1129
1130 * calc/calc-misc.el (calc-other-window): Use an extra argument
1131 instead of `interactive-p'.
1132
1133 * calc/calc-rewr.el (calc-match): Use an extra argument instead of
1134 `interactive-p'.
1135
1136 2004-10-26 Kim F. Storm <storm@cua.dk>
1137
1138 * help.el (describe-key): Describe both down-event and up-event
1139 for a mouse click.
1140
1141 2004-10-26 Richard M. Stallman <rms@gnu.org>
1142
1143 * woman.el (woman): Don't call interactive-p.
1144
1145 * pcomplete.el (pcomplete): Instead of interactive-p,
1146 use an arg set non-nil by the interactive spec.
1147
1148 * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
1149 use an arg set non-nil by the interactive spec.
1150
1151 * man.el (Man-cleanup-manpage): Instead of interactive-p,
1152 use an arg set non-nil by the interactive spec.
1153
1154 2004-10-26 Pavel Kobiakov <pk_at_work@yahoo.com>
1155
1156 * progmodes/flymake.el (flymake-split-string):
1157 Use `flymake-split-string-remove-empty-edges' in any case.
1158
1159 2004-10-26 Masatake YAMATO <jet@gyve.org>
1160
1161 * progmodes/flymake.el (flymake-err-line-patterns):
1162 Use `compilation-error-regexp-alist-alist' instead of
1163 `compilation-error-regexp-alist'.
1164
1165 2004-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1166
1167 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
1168 verbatim face on the \ of \end{verbatim}.
1169
1170 2004-10-25 Jay Belanger <belanger@truman.edu>
1171
1172 * calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
1173 erasing minibuffer.
1174
1175 2004-10-25 Simon Josefsson <jas@extundo.com>
1176
1177 * subr.el (read-passwd): Move to net/password.el.
1178
1179 * net/password.el (read-passwd): Add. Autoload it.
1180
1181 2004-10-25 Kai Grossjohann <kai.grossjohann@gmx.net>
1182
1183 * mouse-sel.el (mouse-sel-mode): Specify custom group.
1184
1185 * simple.el (process-file): Fix logic.
1186
1187 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
1188
1189 * indent.el (set-left-margin, set-right-margin): Delete redundant code.
1190 (increase-right-margin): Remove erroneous call to `interactive-p'.
1191
1192 2004-10-24 Kim F. Storm <storm@cua.dk>
1193
1194 * help.el (describe-mode): Fix 2004-10-13 change.
1195 Copy pure "Auto Fill" string so it can be propertized later
1196 without causing a read-only error.
1197
1198 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
1199
1200 * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
1201 style indexes.
1202
1203 2004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
1204
1205 * simple.el (process-file): Accept nil for INFILE. Reported by
1206 Luc Teirlinck.
1207
1208 2004-10-24 Masatake YAMATO <jet@gyve.org>
1209
1210 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
1211 Handle periods and underscores in a function name.
1212 Remove the address fontification.
1213
1214 2004-10-24 Masatake YAMATO <jet@gyve.org>
1215
1216 * progmodes/asm-mode.el (asm-font-lock-keywords):
1217 Use font-lock-variable-name-face for registers.
1218
1219 2004-10-24 Nick Roberts <nickrob@snap.net.nz>
1220
1221 * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
1222 kill-all-local-variables.
1223 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
1224 (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
1225 Use kill-all-local-variables and provide mode-hooks.
1226 (gdb-assembler-font-lock-keywords): New font lock keywords definition.
1227 (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
1228 Suggested by Masatake YAMATO <jet@gyve.org>.
1229
1230 2004-10-23 Kai Grossjohann <kai.grossjohann@gmx.net>
1231
1232 * simple.el (process-file): New function, similar to call-process
1233 but supports file handlers.
1234 * vc.el (vc-do-command): Use it, instead of call-process.
1235 * net/tramp-vc.el (vc-do-command): Do not advise it if
1236 process-file is fboundp.
1237 * net/tramp.el (tramp-file-name-handler-alist): Add entry for
1238 process-file.
1239 (tramp-handle-process-file): New function.
1240 (tramp-file-name-for-operation): Support process-file.
1241
1242 2004-10-23 Ulf Jasper <ulf.jasper@web.de>
1243
1244 * calendar/icalendar.el (icalendar--weekday-array): New constant.
1245 (icalendar-weekdayabbrev-table)
1246 (icalendar-monthnumber-table): Delete.
1247 (icalendar--get-month-number): Use calendar-month-name-array.
1248 (icalendar--get-weekday-number): New function.
1249 (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
1250 (icalendar-export-region): Handle multi-line entries.
1251 (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
1252
1253 2004-10-23 John Paul Wallington <jpw@gnu.org>
1254
1255 * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
1256 `wildcards' set to t in interactive spec.
1257
1258 * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
1259 interactive spec rather than use `interactive-p'.
1260 (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
1261 rather than use function `interactive-p'.
1262
1263 2004-10-22 Kenichi Handa <handa@m17n.org>
1264
1265 * international/mule.el (translate-region): Implement it in Lisp
1266 as a front end of translate-region-internal.
1267
1268 2004-10-21 Jay Belanger <belanger@truman.edu>
1269
1270 * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
1271 Declare these variables with defvar.
1272
1273 * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
1274 is bound, only check to see if it is bound.
1275
1276 2004-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
1277
1278 * textmodes/tex-mode.el (tex-compilation-parse-errors):
1279 Don't output messages.
1280
1281 * calc/calc-help.el (calc-describe-bindings): Fix last change.
1282
1283 2004-10-21 John Paul Wallington <jpw@gnu.org>
1284
1285 * calc/calc-graph.el (calc-graph-init):
1286 Use `set-process-query-on-exit-flag'.
1287
1288 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org>
1289
1290 * progmodes/compile.el (compilation-start): Rely on `cd' to get
1291 dir right and also allow argumentless cd.
1292
1293 2004-10-19 Richard M. Stallman <rms@gnu.org>
1294
1295 * textmodes/flyspell.el (flyspell-mode): Doc fix.
1296
1297 * eshell/em-unix.el (eshell-grep):
1298 Don't bind compilation-process-setup-function.
1299
1300 * comint.el (comint-insert-input): Use @ in `interactive'.
1301 (comint-input-filter-functions): Doc fix.
1302 (comint-kill-whole-line, comint-get-source): Doc fix.
1303
1304 * progmodes/compile.el (compilation-setup):
1305 Don't set buffer-read-only if MINOR is non-nil.
1306
1307 2004-10-19 Jay Belanger <belanger@truman.edu>
1308
1309 * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
1310 (calc-emacs-type-gnu19): Remove.
1311 (calc-digit-map, calc-read-key-sequence, calc-read-key):
1312 Remove check for old emacs versions.
1313
1314 * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
1315 (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
1316 for current Emacs.
1317
1318 * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
1319 the end of the minibuffer.
1320 (calc-do-alg-entry): Remove Emacs version check. Use `copy-keymap' to
1321 copy `esc-map'.
1322
1323 * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
1324
1325 * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
1326 call that would be given when the current emacs was used.
1327
1328 2004-10-19 Ulf Jasper <ulf.jasper@web.de>
1329
1330 * calendar/icalendar.el: Set coding to utf-8.
1331 (icalendar-version): Increase to 0.07.
1332 (icalendar-monthnumber-table): Change March pattern.
1333 (icalendar-get-all-event-properties)
1334 (icalendar-set-event-property): Delete.
1335 (icalendar-all-events): No longer interactive.
1336 (icalendar-convert-diary-to-ical)
1337 (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
1338 their replacements.
1339 (icalendar-export-file, icalendar-export-region): New functions;
1340 essentially old `icalendar-convert-diary-to-ical' but appending to
1341 target rather than overwriting.
1342 (icalendar-import-file): Append to target file rather than
1343 overwriting. Fourth arg deleted.
1344 (icalendar-import-buffer): New name for old
1345 `icalendar-extract-ical-from-buffer'.
1346 (icalendar--convert-string-for-import): New name for
1347 old `icalendar-convert-for-import'.
1348 (include-icalendar-files): Delete.
1349 Prefix for all internal functions changed from `icalendar-'
1350 to `icalendar--'.
1351
1352 2004-10-19 Richard M. Stallman <rms@gnu.org>
1353
1354 * paths.el (news-path): Fix previous change.
1355
1356 2004-10-18 Jay Belanger <belanger@truman.edu>
1357
1358 * calc/calc-help.el (calc-describe-bindings):
1359 Set `buffer-read-only' to nil while working in the keybindings buffer;
1360 remove some extra information from the keybindings buffer.
1361
1362 2004-10-18 David Ponce <david@dponce.com>
1363
1364 * mouse.el (mouse-drag-move-window-top): New function.
1365 (mouse-drag-mode-line-1): Use it.
1366
1367 2004-10-18 Thien-Thi Nguyen <ttn@gnu.org>
1368
1369 * info.el (Info-fontify-node): For multiline refs,
1370 arrange to unfontify newline and surrounding whitespace.
1371
1372 2004-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
1373
1374 * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
1375 directory is missing.
1376
1377 2004-10-17 John Paul Wallington <jpw@gnu.org>
1378
1379 * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
1380 New customizable variable; whether to display buffers that match
1381 `ibuffer-maybe-show-predicates' by default.
1382 (ibuffer-maybe-show-predicates): Mention it in docstring.
1383 (ibuffer-display-maybe-show-predicates): New variable.
1384 (ibuffer-update): Prefix arg now toggles whether buffers that
1385 match `ibuffer-maybe-show-predicates' should be displayed.
1386 (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
1387 locally to heed `ibuffer-default-display-maybe-show-predicates'.
1388 (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
1389
1390 2004-10-17 Michael Albinus <michael.albinus@gmx.de>
1391
1392 * net/tramp.el: Redo sync with Tramp 2.0.45. Last commit did not
1393 work correctly.
1394
1395 2004-10-17 Daniel Pfeiffer <occitan@esperanto.org>
1396
1397 * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
1398 (Buffer-menu-beginning): New helper function.
1399 (Buffer-menu-execute): Use it.
1400 (Buffer-menu-select): Use it.
1401 (Buffer-menu-sort): Use it and also keep markers.
1402
1403 2004-10-17 Richard M. Stallman <rms@gnu.org>
1404
1405 * paths.el (news-directory): Rename from news-path. Old name alias.
1406 (rmail-spool-directory): Use defvar.
1407 (sendmail-program): Use defcustom.
1408 (remote-shell-program): Use defcustom.
1409 (term-file-prefix): Use defvar.
1410 (abbrev-file-name): Use defvar.
1411
1412 * term.el: Add maintainer.
1413
1414 * subr.el (with-local-quit): Return nil if there's a quit.
1415 (read-passwd): Use with-local-quit. Doc fix.
1416
1417 * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
1418 (strokes-unload-hook): Set as a variable with add-hook.
1419
1420 * startup.el (fancy-splash-tail, normal-splash-screen):
1421 Update copyright year.
1422
1423 * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
1424
1425 * server.el (server-unload-hook): Set as a variable with add-hook.
1426
1427 * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
1428
1429 * frame.el (special-display-popup-frame):
1430 Make the buffer current as its frame is created.
1431
1432 * delsel.el (delsel-unload-hook): Set as a variable.
1433
1434 * comint.el (comint-output-filter-functions):
1435 Add comint-watch-for-password-prompt.
1436 (comint-read-noecho): Function deleted.
1437 (send-invisible): Use read-passwd.
1438
1439 * fringe.el (fringe-mode-initialize): New function.
1440 (fringe-mode): Use fringe-mode-initialize as :initialize.
1441
1442 2004-10-17 Kim F. Storm <storm@cua.dk>
1443
1444 * language/indian.el (indian-script-language-alist): Swap value and doc.
1445 (indian-font-char-index-table): Doc fix.
1446
1447 2004-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
1448
1449 * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
1450
1451 2004-10-16 Juri Linkov <juri@jurta.org>
1452
1453 * progmodes/compile.el (compilation-start): Move let-binding of
1454 `process-environment' into `with-current-buffer' body.
1455 Reported by Matt Hodges <MPHodges@member.fsf.org>.
1456
1457 2004-10-16 Richard M. Stallman <rms@gnu.org>
1458
1459 * pcvs-util.el (cvs-bury-buffer):
1460 Don't call get-buffer-window for effect.
1461
1462 * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
1463
1464 * newcomment.el (comment-auto-fill-only-comments): Add autoload.
1465
1466 * msb.el (msb-unload-hook): Set the variable.
1467
1468 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
1469 Use * to err if buffer is readonly.
1470
1471 * subr.el (looking-back): Return only t or nil.
1472
1473 * whitespace.el (whitespace-unload-hook): Set the variable.
1474
1475 * view.el (view-mode-enable): Set view-page-size and
1476 view-half-page-size to nil.
1477 (view-set-half-page-size-default): view-half-page-size = nil
1478 means the default.
1479 (View-scroll-page-forward): Use view-page-size-default.
1480 (View-scroll-page-backward): Likewise.
1481 (view-page-size, view-half-page-size): Doc fixes.
1482
1483 * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
1484
1485 * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
1486
1487 * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
1488 "cl" like other files. Instead, call byte-compile-find-cl-functions.
1489 (byte-compile-log-1): Bind inhibit-read-only.
1490 (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
1491 (byte-compile-log-warning): Likewise.
1492 (byte-compile-file-form-require): Detect "cl" from the arg value.
1493
1494 * progmodes/compile.el (compilation-start): Assume compilation-mode
1495 will make the buffer read-only.
1496 (compilation-mode): Take arg name-of-mode.
1497 (compilation-setup): Make buffer read-only.
1498 (compilation-handle-exit): Bind inhibit-read-only.
1499
1500 * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
1501 (ispell-message): Likewise.
1502 (ispell-show-choices): Don't call get-buffer-window uselessly.
1503 (ispell-init-process): Use set-process-query-on-exit-flag.
1504
1505 2004-10-16 Kim F. Storm <storm@cua.dk>
1506
1507 * fringe.el (fringe-bitmaps): Only initialize when defined.
1508
1509 * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
1510 (cvs-mode-find-file): Add optional `view' arg to enter view mode.
1511
1512 * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
1513
1514 2004-10-15 Simon Josefsson <jas@extundo.com>
1515
1516 * net/password.el: Add.
1517
1518 2004-10-14 Masatake YAMATO <jet@gyve.org>
1519
1520 * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
1521 (gdb-script-end-of-defun): New function.
1522 (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
1523 `gdb-script-end-of-defun' as *-of-defun-function.
1524
1525 2004-10-13 Daniel Pfeiffer <occitan@esperanto.org>
1526
1527 * button.el (button-activate): Allow a marker to display as an action.
1528
1529 * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
1530
1531 * help.el (describe-mode): Use it to make minor mode list into
1532 hyperlinks.
1533
1534 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
1535
1536 * vc.el (vc-annotate-display-select): Fix typo.
1537
1538 * subr.el (substitute-key-definition-key): New function.
1539 (substitute-key-definition): Use it with map-keymap.
1540 (event-modifiers): Use push.
1541 (mouse-movement-p, with-temp-buffer): Simplify.
1542
1543 2004-10-12 Jay Belanger <belanger@truman.edu>
1544
1545 * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
1546 New variables.
1547 (calc-help-index-entries): New function.
1548 (calc-describe-function): Use `calc-help-function-list' instead of
1549 obarray for completion.
1550 (calc-describe-variable): Use `calc-help-variable-list' instead
1551 of obarray for completion.
1552
1553 2004-10-12 Richard M. Stallman <rms@gnu.org>
1554
1555 * info-look.el (info-lookup-file): Add info-file property.
1556 (info-lookup-symbol): Likewise.
1557
1558 * info.el (info-xref): Add underlining.
1559 (info): Add info-file property.
1560 (Info-find-emacs-command-nodes): Specify case-sensitive search.
1561
1562 2004-10-12 Michael Albinus <michael.albinus@gmx.de>
1563
1564 Sync with Tramp 2.0.45.
1565
1566 * net/tramp.el (top): Apply `def-edebug-spec' only if function is
1567 defined. This is not the case for XEmacs without package "edebug".
1568 (tramp-set-auto-save-file-modes): Set permissions of autosaved
1569 remote files to the permissions of the original file. This is not
1570 the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to
1571 `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>.
1572 (tramp-perl-decode): Fix an error in Perl implementation.
1573 $pending must be cleared every loop. Reported by Benjamin Place
1574 <benjaminplace@sprintmail.com>
1575
1576 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
1577 Don't activate advice during definition. This is done later on,
1578 depending on test result of `substitute-in-file-name'.
1579 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
1580
1581 2004-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1582
1583 * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
1584
1585 * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
1586
1587 2004-10-12 David Ponce <david@dponce.com>
1588
1589 * recentf.el (recentf-edit-list): Update the menu when the recentf
1590 list has been modified.
1591
1592 2004-10-12 Simon Josefsson <jas@extundo.com>
1593
1594 * net/tls.el (tls-certtool-program): New variable.
1595 (tls-certificate-information): New function, based on
1596 ssl-certificate-information.
1597
1598 2004-10-12 Kenichi Handa <handa@m17n.org>
1599
1600 * international/mule.el (coding-system-equal): Move from mule-util.el.
1601
1602 * international/mule-util.el (coding-system-equal): Move to mule.el.
1603
1604 2004-10-12 Kim F. Storm <storm@cua.dk>
1605
1606 * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
1607 reset kmacro-initial-counter-value if set.
1608 (kmacro-set-counter): Only set kmacro-counter if defining or executing
1609 macro. Set kmacro-initial-counter-value otherwise. Never set both.
1610 (kmacro-display): Show macro counter if non-zero.
1611
1612 * subr.el (substitute-key-definition): Mention command remapping
1613 in doc string.
1614
1615 2004-10-11 Jay Belanger <belanger@truman.edu>
1616
1617 * calc/calc-misc.el (calc-info-goto-node): New function.
1618 (calc-tutorial, calc-info-summary): Go to appropriate Calc info
1619 node in one step.
1620 (calc-describe-copying, calc-describe-distribution)
1621 (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
1622 Go to appropriate info node in one step.
1623
1624 2004-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1625
1626 * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
1627
1628 * font-lock.el (font-lock-apply-highlight): Fix last change.
1629
1630 2004-10-11 Simon Josefsson <jas@extundo.com>
1631
1632 * mail/smtpmail.el (smtpmail-open-stream): Look for
1633 starttls-gnutls-program instead of starttls-program iff
1634 starttls-use-gnutls is non-nil.
1635 (smtpmail-open-stream): Don't overwrite user settings of
1636 starttls-extra-arguments and starttls-extra-args.
1637
1638 2004-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1639
1640 * comint.el (comint-mouse-insert-input): Remove.
1641 (comint-insert-input): Make it work for mouse bindings.
1642 (comint-mode-map): Move defs into the declaration.
1643 (comint-output-filter): Typo.
1644
1645 * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
1646
1647 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net>
1648
1649 * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
1650 (ange-ftp-call-chmod): Reference remote-shell-program instead of
1651 ange-ftp-remote-shell.
1652
1653 2004-10-10 Andreas Schwab <schwab@suse.de>
1654
1655 * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
1656 `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
1657 Reported by <sri@asu.edu>.
1658
1659 2004-10-10 Benjamin Rutt <brutt@bloomington.in.us>
1660
1661 * vc.el (vc-annotate-mode): Remove variable.
1662 (vc-annotate-display-select): Only call vc-annotate-mode
1663 if we're not in that mode already.
1664
1665 2004-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1666
1667 * imenu.el (imenu--completion-buffer): Don't return t for rescan.
1668 (imenu-choose-buffer-index): Check here for rescan instead.
1669
1670 * font-lock.el (font-lock-apply-highlight): Explicitly check the case
1671 where the face expression evals to nil.
1672
1673 * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
1674 (tex-font-lock-keywords-2): Use it.
1675 (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
1676
1677 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
1678
1679 2004-10-09 Kim F. Storm <storm@cua.dk>
1680
1681 * subr.el (progress-reporter-update): Define before first usage.
1682 (make-progress-reporter): Doc fix.
1683
1684 2004-10-09 Luc Teirlinck <teirllm@auburn.edu>
1685
1686 * textmodes/paragraphs.el (sentence-end-double-space)
1687 (sentence-end-without-period, sentence-end-without-space)
1688 (sentence-end): Doc fixes.
1689
1690 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change)
1691
1692 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
1693 Change paragraph-start regexp so we don't fill code starting with #'(.
1694
1695 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change)
1696
1697 * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
1698 New defcustom.
1699 (extract-address-components): Use it.
1700
1701 2004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
1702
1703 * subr.el (make-progress-reporter, progress-reporter-update)
1704 (progress-reporter-force-update, progress-reporter-do-update)
1705 (progress-reporter-done): New functions.
1706
1707 * tar-mode.el (tar-summarize-buffer): Use progress reporter.
1708
1709 * progmodes/etags.el (etags-tags-completion-table): Use progress
1710 reporter.
1711 (etags-tags-apropos): Likewise.
1712
1713 2004-10-08 Alan Mackenzie <acm@muc.de>
1714
1715 * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
1716 of current line.
1717
1718 2004-10-08 Masatake YAMATO <jet@gyve.org>
1719
1720 * server.el (server-process-filter): Wrap `process-send-region'
1721 by `condition-case' to guard the case when the pipe to PROC is closed.
1722
1723 2004-10-07 Mark A. Hershberger <mah@everybody.org>
1724
1725 * xml.el (xml-substitute-special): Limit handling of external entities.
1726
1727 2004-10-06 Nick Roberts <nickrob@snap.net.nz>
1728
1729 * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialise gdb-input-queue.
1730
1731 2004-10-06 John Paul Wallington <jpw@gnu.org>
1732
1733 * xml.el (xml-parse-dtd): Fix `error' call.
1734
1735 2004-10-05 Mark A. Hershberger <mah@everybody.org>
1736
1737 * xml.el (xml-substitute-special): Return a single string instead
1738 of a list of strings if an entity substitution is made.
1739
1740 2004-10-05 Ulf Jasper <ulf.jasper@web.de>
1741
1742 * calendar/icalendar.el: New file.
1743
1744 2004-10-05 Juri Linkov <juri@jurta.org>
1745
1746 * isearch.el (isearch-done): Set mark after running hook.
1747 Reported by Drew Adams <drew.adams@oracle.com>.
1748
1749 * info.el (Info-history, Info-toc): Fix Info headers.
1750 (Info-toc): Narrow buffer before Info-fontify-node.
1751 (Info-build-toc): Don't check for special Info file names.
1752 Set main-file to nil if Info-find-file returns a symbol.
1753
1754 2004-10-05 Emilio C. Lopes <eclig@gmx.net>:
1755
1756 * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
1757 (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
1758 * calendar/cal-menu.el (calendar-mode-map): Ditto.
1759
1760 2004-10-05 Glenn Morris <gmorris@ast.cam.ac.uk>
1761
1762 * calendar/cal-iso.el (calendar-iso-read-args): New function,
1763 for old interactive spec from calendar-goto-iso-date.
1764 (calendar-goto-iso-date): Use it.
1765 (calendar-goto-iso-week): New function. Suggested by Emilio
1766 C. Lopes <eclig@gmx.net>.
1767
1768 2004-10-04 Luc Teirlinck <teirllm@auburn.edu>
1769
1770 * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
1771 `set-right-margin' bindings that follow the minor mode conventions.
1772
1773 2004-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
1776 (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
1777 (latex-block-args-alist): Add minipage and picture.
1778 (latex-block-body-alist): Use reftex-label if enabled.
1779 (latex-insert-block): Don't insert a \n if not necessary.
1780 (tex-compile-commands): Make sure dvips doesn't send to printer.
1781 (tex-compile-default): Handle the case where no executable is found.
1782 (latex-noindent-environments): New var.
1783 (latex-find-indent): Use it. Take an empty line as an arg-breaker.
1784 If tex-indent-allhanging is non-nil, make sure we only align for macros
1785 at beginning of line.
1786
1787 2004-10-03 Daniel Pfeiffer <occitan@esperanto.org>
1788
1789 * newcomment.el (comment-beginning): Doc fix and don't choke on
1790 unset `comment-end-skip' when at beginning of comment.
1791
1792 2004-10-02 Dan Nicolaescu <dann@ics.uci.edu>
1793
1794 * term.el (term-adjust-current-row-cache): Don't allow the current
1795 row to become negative.
1796 (term-emulate-terminal): Fix insert mode. Handle tab insertion at
1797 the end of the line. Fix scroll down. Add comments.
1798 (term-handle-ansi-escape): Don't exceed terminal width when moving
1799 right.
1800 (term-scroll-region): Move the cursor after setting the scroll region.
1801
1802 2004-10-01 Luc Teirlinck <teirllm@auburn.edu>
1803
1804 * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
1805 to `width' for consistency with docstring. Doc fix.
1806
1807 2004-10-01 Martin Stjernholm <bug-cc-mode@gnu.org>
1808
1809 * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
1810 This is necessary for derived modes.
1811
1812 2004-09-30 Kim F. Storm <storm@cua.dk>
1813
1814 * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
1815 (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
1816
1817 * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
1818 kmacro-extract-lambda functions.
1819 (edit-kbd-macro): Handle kmacro lambda forms.
1820 Include counter and counter format in edit buffer.
1821 (edmacro-finish-edit): Get counter and format from edit buffer and
1822 update kmacro bindings when found.
1823
1824 2004-09-29 Luc Teirlinck <teirllm@auburn.edu>
1825
1826 * textmodes/paragraphs.el (forward-paragraph):
1827 Avoid args-out-of-range error when point winds up at the beginning of
1828 the buffer and hard newlines are enabled.
1829
1830 * newcomment.el (comment-multi-line): Doc fix.
1831
1832 2004-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
1833
1834 * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
1835 (diff-fixup-modifs): Catch unified-diff file-headers.
1836
1837 2004-09-29 Kim F. Storm <storm@cua.dk>
1838
1839 * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
1840 (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
1841 (gdb-put-breakpoint-icon): Use breakpoint bitmap.
1842
1843 * fringe.el (fringe-bitmap-p): New macro.
1844 (fringe-bitmaps): Add standard fringe bitmaps on load.
1845
1846 2004-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1847
1848 * dired.el (dired-view-command-alist): Use more efficient regexps.
1849 Remove dubious arguments.
1850 (dired-align-file): New function.
1851 (dired-insert-directory): Use it.
1852 (dired-move-to-end-of-filename): Make the " -> " search more specific.
1853 (dired-buffers-for-dir): Remove unused var `pattern'.
1854
1855 2004-09-28 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
1856
1857 * calendar/diary-lib.el (list-diary-entries): Save diary buffer
1858 from diary display excursion. Store diary buffer's point for
1859 `simple-diary-display'.
1860 (simple-diary-display): Set window point and start when
1861 displaying buffer, to preserve point.
1862
1863 2004-09-27 Luc Teirlinck <teirllm@auburn.edu>
1864
1865 * textmodes/enriched.el (enriched-translations): Replace defconst
1866 with defvar.
1867
1868 2004-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1869
1870 * printing.el: Doc fix.
1871 (pr-version): New version number (6.8.1).
1872 (pr-ps-file-using-ghostscript): Use make-temp-file instead of
1873 make-temp-name.
1874 (pr-delete-file): Check if file exists before deleting it.
1875 Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
1876
1877 2004-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
1878
1879 * term.el (term-display-table): New variable.
1880 (term-mode): Use it.
1881 (term-exec-1): Set the coding system to binary.
1882 (term-emulate-terminal): Decode the string before inserting it.
1883
1884 2004-09-26 Dan Nicolaescu <dann@ics.uci.edu>
1885
1886 * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
1887 (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
1888 (map): Bind S-prior, S-next and S-insert.
1889 (term-mode): Set `indent-tabs-mode' to nil.
1890 (term-paste): New function to be bound to S-insert.
1891 (term-send-del, term-send-backspace): Change the strings sent.
1892 (term-termcap-format): Synchronyze with etc/e/eterm.ti.
1893 (term-handle-colors-array): Fix handling of underline and reverse.
1894 (term-handle-ansi-escape): Do not handle smcup/rmcup. Add comments.
1895 (term-erase-in-line): Fix comparison.
1896 (term-emulate-terminal): Fix line wrap handling.
1897 (term-start-output-log): Rename from `term-set-output-log'.
1898 (term-stop-output-log): Rename from `term-stop-photo'.
1899 (term-switch-to-alternate-sub-buffer): Comment out, unused.
1900
1901 2004-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
1902
1903 * dired.el (dired-move-to-filename): Don't output a message if
1904 raise-error is non-nil. Fix return position and value.
1905
1906 * files.el (insert-directory): Obey --dired even with symlinks.
1907
1908 2004-09-25 Lars Hansen <larsh@math.ku.dk>
1909
1910 * ls-lisp.el (ls-lisp-format): Mark file names with property
1911 dired-filename.
1912
1913 2004-09-25 Kim F. Storm <storm@cua.dk>
1914
1915 * ido.el (ido-max-directory-size): New defcustom.
1916 (ido-decorations): Add "too big" element.
1917 (ido-directory-too-big): New dynamic var.
1918 (ido-may-cache-directory): Don't cache big directories.
1919 (ido-directory-too-big-p): New defun.
1920 (ido-set-current-directory): Update ido-directory-too-big.
1921 (ido-read-internal): Make empty ido-cur-item if too-big.
1922 (ido-buffer-internal): Use ido-read-internal directly instead of
1923 ido-read-buffer.
1924 (ido-file-internal): Init ido-directory-too-big.
1925 (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
1926 and redo completion with full list.
1927 (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
1928 it, and show completions.
1929 (ido-all-completions): Let bind ido-directory-too-big to nil.
1930 (ido-exhibit): Handle ido-directory-too-big.
1931 (ido-read-buffer): Handle fallback to read-buffer.
1932 Init ido-directory-too-big.
1933 (ido-read-file-name, ido-read-directory-name, ido-completing-read):
1934 Init ido-directory-too-big.
1935
1936 2004-09-24 Luc Teirlinck <teirllm@auburn.edu>
1937
1938 * subr.el (delay-mode-hooks): Doc fix.
1939
1940 2004-09-23 Luc Teirlinck <teirllm@auburn.edu>
1941
1942 * textmodes/enriched.el
1943 (enriched-default-text-properties-local-flag): New variable.
1944 (enriched-mode): Make sure that enabling and disabling the mode is
1945 a no-op. Doc fix.
1946
1947 2004-09-23 H\e,Ae\e(Bkon Malmedal <hmalmedal@yahoo.no> (tiny change)
1948
1949 * calendar/holidays.el (holiday-advent): Report on a specified day
1950 offset from advent, not just advent.
1951 (holiday-easter-etc): Report on one specified day offset from
1952 easter, not all easter holidays. Various Easter holidays moved to
1953 `christian-holidays' variable in calendar.el.
1954 * calendar/calendar.el (christian-holidays): Adapt for new
1955 behaviour of `holiday-advent' and `holiday-easter-etc' functions.
1956
1957 2004-09-23 Kim F. Storm <storm@cua.dk>
1958
1959 * image.el (insert-sliced-image): Add doc string.
1960
1961 * ido.el (ido-choice-list): New dynamic var for `list' context.
1962 (ido-context-switch-command): New dynamic var.
1963 (ido-define-mode-map): Generalize switch between file/buffer contexts.
1964 (ido-read-internal): Handle new `list' context.
1965 Handle insert-buffer and insert-file ido-exit values.
1966 (ido-buffer-internal): New arg switch-cmd. Use it to setup
1967 ido-context-switch-command. Handle insert-file ido-exit value.
1968 (ido-read-buffer): Set ido-context-switch-command to 'ignore
1969 unless it is already bound by caller.
1970 (ido-file-internal): New arg switch-cmd. Use it to setup
1971 ido-context-switch-command. Handle insert-buffer ido-exit value.
1972 (ido-enter-insert-buffer, ido-enter-insert-file): New commands
1973 used for context switching.
1974 (ido-all-completions): Handle new `list' context.
1975 (ido-make-choice-list): Return choices for `list' context.
1976 (ido-find-file-in-dir, ido-display-file, ido-write-file)
1977 (ido-display-buffer, ido-kill-buffer): Disable context switching.
1978 (ido-insert-buffer, ido-insert-file): Setup context switching.
1979 (ido-exhibit): Handle `list' context.
1980 (ido-read-file-name): Disable context switching. Handle fallback.
1981 (ido-read-directory-name): Disable context switching.
1982 (ido-completing-read): New defun like completing-read. Setup and
1983 use new `list' context.
1984
1985 2004-09-20 Jesper Harder <harder@ifa.au.dk>
1986
1987 * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
1988
1989 2004-09-21 Jay Belanger <belanger@truman.edu>
1990
1991 * calc/calc-graph.el (calc-graph-add-curve): Moved the call to
1992 `calc-graph-set-styles' so the gnuplot buffer will appear in a
1993 separate window.
1994
1995 2004-09-21 Luc Teirlinck <teirllm@auburn.edu>
1996
1997 * subr.el (after-change-major-mode-hook): Doc fix.
1998
1999 2004-09-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2000
2001 * printing.el: Doc fix. Add a new tip about the use of gsprint instead
2002 of ghostscript for monochrome PostScript file in Windows.
2003
2004 2004-09-21 Kenichi Handa <handa@m17n.org>
2005
2006 * descr-text.el (describe-char): Checking of quail activation
2007 fixed.
2008
2009 2004-09-21 Jay Belanger <belanger@truman.edu>
2010
2011 * calc/calc.el (calc-mode-var-list): Removed unnecessary quotes.
2012
2013 2004-09-20 Luc Teirlinck <teirllm@auburn.edu>
2014
2015 * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
2016 after the mode hooks instead of before. Doc fix.
2017
2018 2004-09-20 Jason Rumney <jasonr@gnu.org>
2019
2020 * startup.el (command-line) [windows-nt]: Try .emacs first, then
2021 _emacs, but revert to .emacs if neither exists in home directory.
2022
2023 2004-09-20 John Paul Wallington <jpw@gnu.org>
2024
2025 * bindings.el (completion-ignored-extensions): Add .dfsl.
2026
2027 2004-09-20 Richard M. Stallman <rms@gnu.org>
2028
2029 * bindings.el (scroll-left): Make it disabled.
2030
2031 * files.el (enable-local-eval): Doc fix.
2032
2033 * indent.el (move-to-left-margin): Special case for minibuffer.
2034
2035 * term.el (term-emulate-terminal): Turn off undo for output.
2036 Use with-current-buffer and save-selected-window.
2037
2038 * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
2039
2040 * progmodes/make-mode.el (makefile-fill-paragraph):
2041 Don't insist on spaces when looking for comments. # is enough.
2042
2043 * files.el (hack-local-variables): Copy the variables list
2044 to another buffer, strip prefixes and suffixes there, then read.
2045 (enable-local-eval): Doc fix.
2046 (ignored-local-variables): Initialize to nil.
2047 (risky-local-variable-p): Don't check ignored-local-variables here.
2048 (hack-one-local-variable): Ignore var if in ignored-local-variables.
2049
2050 2004-09-20 Dan Nicolaescu <dann@ics.uci.edu>
2051
2052 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
2053 of = to "." (punctuation).
2054
2055 2004-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2056
2057 * subr.el (event-basic-type): Fix mask (extend to 22bits).
2058
2059 2004-09-18 Luc Teirlinck <teirllm@auburn.edu>
2060
2061 * textmodes/enriched.el (enriched-rerun-flag): New variable.
2062 (enriched-before-change-major-mode): New function.
2063 Add it to `change-major-mode-hook'.
2064 (enriched-after-change-major-mode): New function.
2065 Add it to `after-change-major-mode-hook'.
2066 (enriched-mode): Make it work correctly if called from
2067 `after-change-major-mode-hook'.
2068 No longer set `indent-line-function'.
2069
2070 * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
2071
2072 * subr.el (after-change-major-mode-hook): New variable.
2073 (run-mode-hooks): Implement it.
2074
2075 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
2076
2077 * battery.el (battery-linux-proc-apm): Use string-to-number.
2078 (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
2079 Use dolist (and less indentation). Use erase-buffer.
2080 Pre-initialize `design-capacity', `warn', and `low'.
2081 (battery-format): Use replace-regexp-in-string.
2082
2083 2004-09-18 Ralph Schleicher <rs@nunatak.allgaeu.org>
2084
2085 * battery.el: Delete superfluous empty lines.
2086 (battery-linux-proc-acpi): Attempt to gather information from all
2087 battery subdirectories regardless of their file name.
2088 (battery-linux-proc-apm): Replace all occurrences of
2089 battery-hex-to-int-2 with string-to-int (base 16).
2090 (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
2091 (battery-hex-map): Delete variable.
2092
2093 2004-09-18 John Paul Wallington <jpw@gnu.org>
2094
2095 * calc/calc-units.el (calc-quick-units): Fix overzealous
2096 s/or/unless/.
2097
2098 2004-09-17 Jay Belanger <belanger@truman.edu>
2099
2100 * calc/calc.el (calc-mode-var-list): Fix the value of
2101 `calc-matrix-brackets'.
2102
2103 2004-09-17 Romain Francoise <romain@orebokech.com>
2104
2105 * ibuf-ext.el (define-ibuffer-filter filename):
2106 Expand dired-directory since buffer-file-name is absolute.
2107
2108 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu>
2109
2110 * ediff-init.el (ediff-current-diff-face-A)
2111 (ediff-current-diff-face-B, ediff-current-diff-face-C)
2112 (ediff-current-diff-face-Ancestor)
2113 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
2114 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
2115 (ediff-even-diff-face-A, ediff-even-diff-face-B)
2116 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
2117 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
2118 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
2119 Use min-colors.
2120
2121 * term.el (term-down): Perform vertical motion if DOWN is negative.
2122 (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
2123 (term-termcap-format): Synchronyze with the eterm terminfo entry
2124 in etc/e/eterm.ti.
2125 (term-handle-colors-array): If the current foreground or
2126 background are zero (i.e. unspecified), use the foreground and
2127 background of the default face for reverse video.
2128 (term-ansi-at-eval-string, term-ansi-default-fg)
2129 (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
2130 (term-mem): Delete ununsed function.
2131 (term-protocol-version): Increment.
2132 (term-current-face): Set to default.
2133
2134 2004-09-15 Jay Belanger <belanger@truman.edu>
2135
2136 * calc/calc.el (calc-mode-var-list): Define this variable.
2137 (calc-always-load-extensions, calc-line-numbering)
2138 (calc-line-breaking, calc-display-just, calc-display-origin)
2139 (calc-number-radix, calc-leading-zeros, calc-group-digits)
2140 (calc-group-char, calc-point-char, calc-frac-format)
2141 (calc-prefer-frac, calc-hms-format, calc-date-format)
2142 (calc-float-format, calc-full-float-format, calc-complex-format)
2143 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
2144 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
2145 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
2146 (calc-matrix-brackets, calc-language, calc-language-option)
2147 (calc-left-label, calc-right-label, calc-word-size)
2148 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
2149 (calc-display-raw, calc-internal-prec, calc-angle-mode)
2150 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
2151 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
2152 (calc-window-height, calc-display-trail, calc-show-selections)
2153 (calc-use-selections, calc-assoc-selections)
2154 (calc-display-working-message, calc-auto-why, calc-timing)
2155 (calc-mode-save-mode, calc-standard-date-formats)
2156 (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
2157 (calc-user-parse-tables, calc-gnuplot-default-device)
2158 (calc-gnuplot-default-output, calc-gnuplot-print-device)
2159 (calc-gnuplot-print-output, calc-gnuplot-geometry)
2160 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
2161 (calc-invocation-macro, calc-show-banner): Give these values as
2162 part of `calc-mode-var-list's initialization after the variables
2163 are declared with defvar.
2164 (calc-bug-address): Changed email address to send bug
2165 reports to. Also changed the maintainer address at the top.
2166 (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
2167 than "\\.emacs" to determine if it is the user-init-file.
2168
2169 * calc/calc-embed.el (calc-embedded-set-modes): Use
2170 `calc-mode-var-list' correctly.
2171
2172 2004-09-15 Thien-Thi Nguyen <ttn@gnu.org>
2173
2174 * vc.el (annotate-time): Document point handling.
2175 (vc-annotate-display-autoscale): Doc fix.
2176
2177 2004-09-15 Miles Bader <miles@gnu.org>
2178
2179 * generic.el (generic-make-keywords-list): Use symbol rather than
2180 word anchors in regexp.
2181
2182 2004-09-14 Sean O'Rourke <sorourke@cs.ucsd.edu>
2183
2184 * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
2185 no file name consider `dired-directory'.
2186
2187 2004-09-14 Kim F. Storm <storm@cua.dk>
2188
2189 * faces.el (cursor): Add face-no-inherit property. Doc fix.
2190
2191 2004-09-14 Simon Josefsson <jas@extundo.com>
2192
2193 * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
2194
2195 * textmodes/dns-mode.el: Add.
2196
2197 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2198
2199 * novice.el (disabled-command-hook): Use shorthand for obsolescence.
2200 (disabled-command-function): Make the ?\ char more obvious.
2201
2202 * vc-arch.el (vc-arch-root, vc-arch-registered):
2203 * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
2204
2205 2004-09-13 Hovav Shacham <hovav@sha1.stanford.edu>
2206
2207 * windmove.el (windmove-frame-edges): Report coordinates of
2208 outside edges of frame, not inside edges.
2209 (windmove-coordinates-of-position): Convert into wrapper to new
2210 function `windmove-coordinates-of-window-position';
2211 `compute-motion' always applies to selected window.
2212 (windmove-coordinates-of-position): Update documentation to refer
2213 to Emacs 21 Lisp Reference Manual.
2214 (windmove-find-other-window): Fix off-by-one errors for max x,y.
2215
2216 2004-09-13 Kim F. Storm <storm@cua.dk>
2217
2218 * isearch.el (isearch-resume-in-command-history): Rename from
2219 isearch-resume-enabled and change default to nil.
2220
2221 2004-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * vc-hooks.el (vc-ignore-dir-regexp): New var.
2224 (vc-registered): Use it.
2225 (vc-find-root): New fun.
2226
2227 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2228 Don't tell to use \\{...} when it's already done.
2229
2230 * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
2231 Provide a sample complex default.
2232 (bibtex-url, bibtex-font-lock-url): Adapt to new format.
2233 (bibtex-entry): Use mapc.
2234
2235 2004-09-12 Kim F. Storm <storm@cua.dk>
2236
2237 * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
2238
2239 * emulation/cua-rect.el (cua--rectangle-operation): Let bind
2240 inhibit-field-text-motion to t so rectangles work in comint buffers.
2241
2242 * simple.el (choose-completion-string): Set buffer before running
2243 choose-completion-string-functions hook so it can be buffer-local.
2244
2245 2004-09-12 Daniel Pfeiffer <occitan@esperanto.org>
2246
2247 * progmodes/compile.el (compilation-start): Parse command to see
2248 if it starts with a cd, and if so perform it for the *compilation*
2249 buffer. Change the header to reflect this.
2250
2251 2004-09-11 Kim F. Storm <storm@cua.dk>
2252
2253 * ido.el (ido-enable-dot-prefix): Doc fix.
2254 (ido-enable-dot-prefix): New defcustom.
2255 (ido-set-matches1): Use it.
2256
2257 2004-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2258
2259 * textmodes/bibtex.el (bibtex-mark-active)
2260 (bibtex-run-with-idle-timer): Move the `if' inside the defun.
2261
2262 2004-09-10 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2263
2264 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
2265 used in a case insensitive environment.
2266 (bibtex-mode-map): Rearrange order of menus.
2267 (bibtex-quoted-string-re): Obsolete.
2268 (bibtex-complete-key-cleanup): Variable replaced by new function.
2269 (bibtex-font-lock-keywords): Use backquotes.
2270 (bibtex-font-lock-url-regexp): New internal variable.
2271 (bibtex-name-in-field): New optional arg remove-opt-alt to remove
2272 "OPT" and "ALT".
2273 (bibtex-insert-current-kill, bibtex-make-field)
2274 (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
2275 (bibtex-parse-field-text): Simplify.
2276 (bibtex-string=): New helper function.
2277 (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
2278 (bibtex-map-entries): Use bibtex-string=.
2279 (bibtex-search-entry): Use not.
2280 (bibtex-enclosing-field): Fix docstring.
2281 (bibtex-assoc-regexp): Obsolete.
2282 (bibtex-format-entry): Use assoc-string and bibtex-string=.
2283 (bibtex-autokey-get-names): Handle empty name field.
2284 (bibtex-parse-strings): Use assoc-string and unless.
2285 (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
2286 Use assoc-string.
2287 (bibtex-pop): Simplify.
2288 (bibtex-mode): Set font-lock-extra-managed-props.
2289 (bibtex-entry-update): Use assoc-string.
2290 (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
2291 (bibtex-autofill-entry): Use bibtex-string=.
2292 (bibtex-print-help-message): Simplify.
2293 (bibtex-find-entry): New optional arg START.
2294 (bibtex-validate): Use bibtex-string= and assoc-string.
2295 Do not call obsolete function compilation-parse-errors.
2296 (bibtex-remove-delimiters): Only remove delimiters if present.
2297 (bibtex-copy-entry-as-kill): Add docstring.
2298 (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
2299 Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
2300 (bibtex-complete): Use bibtex-predefined-month-strings,
2301 bibtex-string=, and new function bibtex-complete-key-cleanup.
2302 (bibtex-generate-url-list): New variable.
2303 (bibtex-url): New command bound to C-c C-l and mouse-2.
2304 (bibtex-url-map): New local keymap for bibtex-url-mouse.
2305 (bibtex-font-lock-url): New function.
2306
2307 2004-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2308
2309 * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
2310
2311 2004-09-09 Kim F. Storm <storm@cua.dk>
2312
2313 * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
2314 counter and format with binding.
2315 (kmacro-name-last-macro): New defun. Like name-last-kbd-macro, but
2316 the declared macro uses own macro counter and format. Give symbol
2317 kmacro property.
2318 (kmacro-keymap): Bind kmacro-name-last-macro to n.
2319 (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
2320 (kmacro-end-and-call-macro): Doc fix.
2321
2322 2004-09-09 Lars Hansen <larsh@math.ku.dk>
2323
2324 * desktop.el (desktop-clear-preserve-buffers):
2325 Remove make-obsolete-variable.
2326
2327 2004-09-08 Richard M. Stallman <rms@gnu.org>
2328
2329 * buff-menu.el (list-buffers-noselect): Call format-mode-line
2330 with the buffer as argument.
2331
2332 2004-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2333
2334 * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
2335
2336 2004-09-08 Juri Linkov <juri@jurta.org>
2337
2338 * replace.el (perform-replace): Use `query-replace-descr'.
2339
2340 * cus-start.el (history-delete-duplicates): Specify customization.
2341
2342 * diff-mode.el (diff-mode-map):
2343 * progmodes/compile.el (compilation-mode-map):
2344 * progmodes/grep.el (grep-mode-map):
2345 * replace.el (occur-mode-map): Rename `next-error-follow-mode'
2346 to `next-error-follow-minor-mode'.
2347
2348 2004-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2349
2350 * isearch.el (isearch-lazy-highlight-update): Take into account
2351 the case of zero-length match at the search bound.
2352
2353 2004-09-08 Kim F. Storm <storm@cua.dk>
2354
2355 * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
2356 change. Use zero width overlays when necessary.
2357
2358 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2359
2360 * subr.el (split-string): Docfix.
2361
2362 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2363
2364 * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
2365 (display-call-tree): Ensure newline after caller/calls blocks.
2366
2367 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2368
2369 * startup.el (command-line-1): Make option
2370 --directory/-L modify `load-path' straight away.
2371
2372 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2373
2374 * progmodes/grep.el (grep-mode): Use normal autoload cookie.
2375
2376 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2377
2378 * emacs-lisp/autoload.el (make-autoload):
2379 Handle `define-compilation-mode'.
2380
2381 * emacs-lisp/lisp-mode.el (define-compilation-mode):
2382 Specify `doc-string-elt' property.
2383
2384 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2385
2386 * bs.el (bs-mode): Doc fix.
2387
2388 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2389
2390 * info.el (Info-insert-dir): Fix temp buffer leak bug.
2391
2392 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
2393
2394 * play/blackbox.el (bb-trace-ray): Avoid double tracing.
2395
2396 2004-09-08 Kenichi Handa <handa@m17n.org>
2397
2398 * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
2399 length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
2400 ps-mule-next-point -> 1+).
2401
2402 * composite.el (encode-composition-rule): Add autoload cooky.
2403
2404 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
2405
2406 * format.el (buffer-auto-save-file-format): Make it permanent local.
2407
2408 2004-09-07 Kim F. Storm <storm@cua.dk>
2409
2410 * emacs-lisp/authors.el (authors-aliases): Add more aliases.
2411 (authors-fixed-entries): Fix typo.
2412 (authors-canonical-author-name): Compact multiple spaces.
2413 Ignore trivial names (e.g. only first name).
2414
2415 * term.el (term-window-width): Only use full window width on
2416 window system if overflow-newline-into-fringe is enabled.
2417 (term-mode): Don't disable overflow-newline-into-fringe.
2418
2419 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2420
2421 * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
2422 motion as seen on my Mac OS X xterms.
2423
2424 * newcomment.el (uncomment-region-default, comment-region-default):
2425 New functions extracted from uncomment-region and comment-region.
2426 (comment-region, comment-region-function, uncomment-region)
2427 (uncomment-region-function): Use them.
2428
2429 * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
2430
2431 * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
2432 It's not crucial but can make sense at times.
2433
2434 * vc-arch.el (vc-arch-workfile-version): Handle the special case before
2435 the first commit.
2436
2437 * vc.el (vc-buffer-context, vc-restore-buffer-context):
2438 Disable obsolete code.
2439
2440 2004-09-07 Juri Linkov <juri@jurta.org>
2441
2442 * progmodes/grep.el (grep-highlight-matches): Change default from
2443 `t' to `auto-detect', and type from `boolean' to `choice'. Doc fix.
2444 (grep-compute-defaults): Set `grep-highlight-matches' to `t'
2445 if grep option `--color' is available, or to `nil' otherwise.
2446 (grep-process-setup): Call `grep-compute-defaults' if
2447 `grep-highlight-matches' is not computed. Set env-vars only
2448 if `grep-highlight-matches' is `t'.
2449 (grep-use-null-device): Remove redundant type `boolean' (`choice'
2450 is already defined).
2451
2452 * progmodes/compile.el (compilation-start): Use copy of
2453 `process-environment' created by `copy-sequence' to not
2454 modify env-vars in the global `process-environment'.
2455
2456 2004-09-06 Eli Zaretskii <eliz@gnu.org>
2457
2458 * simple.el (next-error-follow-minor-mode): Fix last change.
2459
2460 2004-09-05 Luc Teirlinck <teirllm@auburn.edu>
2461
2462 * textmodes/paragraphs.el (use-hard-newlines): Make it into a
2463 permanent local.
2464
2465 2004-09-04 Richard M. Stallman <rms@gnu.org>
2466
2467 * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
2468 highlighting if the search string is empty.
2469
2470 2004-09-04 Luc Teirlinck <teirllm@auburn.edu>
2471
2472 * facemenu.el (facemenu-active-faces): Change condition of inner
2473 `while' loop to also check the first two elements of `face-atts'
2474 and `mask-atts'.
2475
2476 2004-09-04 John Paul Wallington <jpw@gnu.org>
2477
2478 * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
2479 (thumbs-view-image-mode): Make buffer read-only.
2480
2481 2004-09-04 Christopher J. Madsen <cjm@pobox.com>
2482
2483 * textmodes/ispell.el (ispell-really-aspell): New defvar.
2484 (ispell-check-version): Set it.
2485 (ispell-send-replacement): New function.
2486 (ispell-process-line): Call ispell-send-replacement.
2487
2488 2004-09-04 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
2489
2490 * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
2491 Support choosing seconds with "s".
2492
2493 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
2494
2495 * terminal.el (te-escape): Show `?' in prompt for help key.
2496
2497 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
2498
2499 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
2500
2501 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
2502
2503 * simple.el (next-error-follow-minor-mode)
2504 (next-error-follow-mode-post-command-hook): New functions.
2505 (next-error-follow-last-line): New defvar.
2506
2507 * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
2508 * progmodes/compile.el (compilation-mode-map): Likewise.
2509 * progmodes/grep.el (grep-mode-map): Likewise.
2510 * replace.el (occur-mode-map): Likewise.
2511
2512 * newcomment.el (uncomment-region): Bind comment-use-global-state
2513 to nil.
2514
2515 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
2516
2517 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
2518 locally around the call to `revert-buffer'.
2519
2520 2004-09-03 Juri Linkov <juri@jurta.org>
2521
2522 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
2523 `isearch-adjusted' to `t'.
2524 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
2525 (isearch-message-prefix): Add "pending" for isearch-adjusted.
2526 (isearch-other-meta-char): Restore isearch-point unconditionally.
2527 (isearch-query-replace): Add new arg `regexp-flag' and use it.
2528 Set point to start of match if region is not active in transient
2529 mark mode (to include the current match to region boundaries).
2530 Push the search string to `query-replace-from-history-variable'.
2531 Add prompt "Query replace regexp" for isearch-regexp.
2532 Add region beginning/end as last arguments of `perform-replace.'
2533 (isearch-query-replace-regexp): Replace code by the call to
2534 `isearch-query-replace' with arg `t'.
2535
2536 2004-09-03 Richard M. Stallman <rms@gnu.org>
2537
2538 * startup.el (normal-top-level): Undo previous TERM change.
2539
2540 2004-09-03 Kim F. Storm <storm@cua.dk>
2541
2542 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
2543 highlight overlays; allow using RET when cursor is over a button.
2544 (cua--highlight-rectangle): Use it.
2545 (cua--rectangle-set-corners): Don't move backwards at eol.
2546 (cua--forward-line): Don't move into void after eob.
2547
2548 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
2549 point is set (and displayed) inside rectangle.
2550 (cua--rectangle-operation): Fix for highlight of empty lines.
2551 (cua--highlight-rectangle): Fix highlight for tabs.
2552 Position cursor at left/right edge of rectangle using new `cursor'
2553 property on overlay strings.
2554 (cua--indent-rectangle): Don't tabify.
2555 (cua-rotate-rectangle): Ignore that point has moved.
2556
2557 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2558
2559 * term/mac-win.el: Add ASCII equivalents for some function keys.
2560 (mode-line-frame-identification): Sync with x-win.el.
2561
2562 2004-09-02 Juri Linkov <juri@jurta.org>
2563
2564 * progmodes/compile.el (compilation-buffer-name): Compare major
2565 mode with second element of compilation-arguments instead of third
2566 to reflect latest changes in compilation-arguments structure.
2567 (recompile): Use global variable `compilation-directory' to get
2568 recent compilation directory only when `recompile' is invoked NOT
2569 in the compilation buffer. Otherwise, use `default-directory' of
2570 the compilation buffer.
2571 (compilation-error-properties): Allow to funcall col and end-col.
2572 (compilation-mode-font-lock-keywords): Check col and end-col by
2573 `integerp'.
2574 (compilation-goto-locus): If end-mk is non-nil in transient mark
2575 mode don't activate the mark (and don't display message in
2576 push-mark), but highlight overlay between mk and end-mk.
2577
2578 * progmodes/grep.el (grep-highlight-matches): New defcustom.
2579 (grep-regexp-alist): Add rule to highlight grep matches.
2580 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
2581
2582 * info.el (Info-fontify-node): Don't compute other-tag
2583 if Info-hide-note-references=hide.
2584
2585 * help.el (function-called-at-point):
2586 * help-fns.el (variable-at-point):
2587 Try `find-tag-default' when other methods failed.
2588
2589 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2590 Do not push mark if inhibit-mark-movement is non-nil.
2591
2592 * textmodes/ispell.el (ispell-html-skip-alists):
2593 Fix backslashes in docstring.
2594
2595 2004-09-01 Juri Linkov <juri@jurta.org>
2596
2597 * isearch.el (isearch-wrap-function)
2598 (isearch-push-state-function): New defvars.
2599 (isearch-pop-fun-state): New defsubst.
2600 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
2601 (isearch-push-state): Set the result of calling
2602 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
2603 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
2604 restore the mode-specific starting point of terminated search.
2605 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
2606 (isearch-repeat): Call `isearch-wrap-function' if defined.
2607 (isearch-message-prefix): Don't add prefix "over" to the message
2608 for wrapped search if `isearch-wrap-function' is defined.
2609 (isearch-search): Call function saved in `isearch-pop-fun-state' to
2610 restore the mode-specific starting point of failed search.
2611
2612 * info.el (Info-search-whitespace-regexp): Fix backslashes.
2613 (Info-search): Add new optional arguments for the sake of isearch.
2614 Replace whitespace in Info-search-whitespace-regexp literally.
2615 Add backward search. Don't call `Info-select-node' if regexp is
2616 found in the same Info node. Don't add node to Info-history for
2617 wrapped isearch.
2618 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
2619 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
2620 (Info-mode): Set local variables `isearch-search-fun-function',
2621 `isearch-wrap-function', `isearch-push-state-function',
2622 `search-whitespace-regexp'.
2623
2624 * isearch.el: Remove ancient Change Log section.
2625 (isearch-string, isearch-message-string, isearch-point)
2626 (isearch-success, isearch-forward-flag, isearch-other-end)
2627 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
2628 (isearch-barrier, isearch-within-brackets)
2629 (isearch-case-fold-search): Add suffix `-state' to state-related
2630 defsubsts to avoid name clashes with other function names.
2631
2632 * simple.el (next-error): New defgroup and defface.
2633 (next-error-highlight, next-error-highlight-no-select):
2634 New defcustoms.
2635 (next-error-no-select): Let-bind next-error-highlight to the value
2636 of next-error-highlight-no-select before calling `next-error'.
2637
2638 * progmodes/compile.el (compilation-goto-locus):
2639 Use `next-error' face instead of `region'. Set 4-th argument of
2640 `move-overlay' to `current-buffer' to move overlay to different
2641 source buffers. Use new variable `next-error-highlight'.
2642
2643 * simple.el (next-error-find-buffer): Move the rule
2644 "if current buffer is a next-error capable buffer" after the
2645 rule "if next-error-last-buffer is set to a live buffer".
2646 Simplify to test all rules in one `or'.
2647 (next-error): Doc fix.
2648 (next-error, previous-error, first-error)
2649 (next-error-no-select, previous-error-no-select):
2650 Make arguments optional.
2651
2652 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
2653
2654 * macros.el (apply-macro-to-region-lines): Make it operate on all
2655 lines that begin in the region, rather than on all complete lines
2656 in the region.
2657
2658 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2659
2660 * x-dnd.el (x-dnd-protocol-alist): Document update.
2661 (x-dnd-known-types): Defcustom it.
2662 (x-dnd-handle-motif): Print message-atom in error message.
2663
2664 2004-08-30 John Paul Wallington <jpw@gnu.org>
2665
2666 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
2667 strings rather than programatically constructing message.
2668
2669 2004-08-30 Richard M. Stallman <rms@gnu.org>
2670
2671 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
2672 Don't return a string that would read as the wrong character code.
2673
2674 2004-08-29 Kim F. Storm <storm@cua.dk>
2675
2676 * emulation/cua-base.el (cua-auto-expand-rectangles):
2677 Remove automatic rectangle padding feature; replace by non-destructive
2678 virtual rectangle edges feature.
2679 (cua-virtual-rectangle-edges): New defcustom.
2680 (cua-auto-tabify-rectangles): New defcustom.
2681 (cua-paste): If paste into a marked rectangle, insert rectangle at
2682 current column, even if virtual; also paste exactly as many lines
2683 as has been marked (ignore additional lines or add empty lines),
2684 but paste whole source if only one line is marked.
2685 (cua--update-indications): No longer use overwrite-cursor to
2686 indicate rectangle padding
2687
2688 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
2689 (cua--rectangle-virtual-edges): New defun.
2690 (cua--rectangle-get-corners): Remove optional PAD arg.
2691 (cua--rectangle-set-corners): Never do padding.
2692 (cua--forward-line): Remove optional PAD arg. Simplify.
2693 (cua-resize-rectangle-right, cua-resize-rectangle-left)
2694 (cua-resize-rectangle-down, cua-resize-rectangle-up):
2695 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
2696 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
2697 (cua--rectangle-move): Never do padding. Simplify.
2698 (cua--tabify-start): New defun.
2699 (cua--rectangle-operation): Add tabify arg. All callers changed.
2700 (cua--pad-rectangle): Remove.
2701 (cua--delete-rectangle): Handle delete with virtual edges.
2702 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
2703 (cua--insert-rectangle): Handle insert at virtual column.
2704 Perform auto-tabify if necessary.
2705 (cua--activate-rectangle): Remove optional FORCE arg.
2706 Never do padding. Simplify.
2707 (cua--highlight-rectangle): Enhance for virtual edges.
2708 (cua-toggle-rectangle-padding): Remove command.
2709 (cua-toggle-rectangle-virtual-edges): New command.
2710 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
2711 (cua--rectangle-post-command): Don't force rectangle padding.
2712 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
2713
2714 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
2715
2716 * indent.el (edit-tab-stops-buffer): Doc fix.
2717
2718 2004-08-28 Richard M. Stallman <rms@gnu.org>
2719
2720 * progmodes/grep.el (grep-default-command): Use find-tag-default.
2721 (grep-tag-default): Function deleted.
2722
2723 * subr.el (find-tag-default): Moved from etags.el.
2724
2725 * progmodes/etags.el (find-tag-default): Moved to subr.el.
2726
2727 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
2728 into the basic character if it has an uppercase form.
2729
2730 2004-08-27 Kenichi Handa <handa@m17n.org>
2731
2732 * international/utf-8.el (utf-8-post-read-conversion): If the
2733 buffer is unibyte, temporarily make it multibyte.
2734
2735 2004-08-27 Masatake YAMATO <jet@gyve.org>
2736
2737 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
2738
2739 2004-08-25 John Paul Wallington <jpw@gnu.org>
2740
2741 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
2742 0, 1, and many mismatches in message.
2743 (tex-start-shell): Use `set-process-query-on-exit-flag'.
2744
2745 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
2746 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
2747
2748 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2749
2750 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
2751 vc-diff-switches differently.
2752
2753 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
2754
2755 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
2756 before and a real defvar after
2757 `speedbar-supported-extension-expressions'. This is to silence
2758 the compiler without breaking bootstrapping.
2759
2760 2004-08-22 Richard M. Stallman <rms@gnu.org>
2761
2762 * textmodes/flyspell.el (flyspell-word):
2763 Use set-process-query-on-exit-flag.
2764 (flyspell-highlight-duplicate-region): Take POSS as arg.
2765 (flyspell-word): Pass POSS as arg.
2766
2767 * progmodes/ada-xref.el: Many doc and style fixes.
2768 (ada-find-any-references): Use compilation-start.
2769 (ada-get-ali-file-name): Improve error msg.
2770 (ada-get-ada-file-name): Likewise.
2771
2772 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
2773 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
2774
2775 * mail/mail-extr.el (mail-extr-all-top-level-domains):
2776 Add forward defvar.
2777
2778 * whitespace.el (global-whitespace-mode): New alias
2779 for whitespace-global-mode.
2780
2781 * speedbar.el (speedbar-file-regexp): Definition moved up.
2782 (speedbar-mode, speedbar-set-mode-line-format):
2783 Use with-no-warnings.
2784 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
2785
2786 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
2787 controls whether to display the error buffer.
2788
2789 * ps-mule.el: Delete compatibility code for old Emacses.
2790 (ps-mule-find-wrappoint): Don't use chars-in-region.
2791
2792 * frame.el (display-mouse-p, display-selections-p):
2793 Use with-no-warnings.
2794
2795 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
2796
2797 2004-08-22 David Kastrup <dak@gnu.org>
2798
2799 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
2800 information.
2801
2802 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
2803
2804 2004-08-22 Andreas Schwab <schwab@suse.de>
2805
2806 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
2807
2808 2004-08-22 Masatake YAMATO <jet@gyve.org>
2809
2810 * cvs-status.el (cvs-status-checkout): New function.
2811 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
2812
2813 2004-08-21 David Kastrup <dak@gnu.org>
2814
2815 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
2816 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
2817 has been converted to use hashtables, the relation `nil=none' is
2818 no longer valid, as `nil' is not a hashtable. This patch tries to
2819 reduce the number of resulting errors.
2820
2821 2004-08-21 John Paul Wallington <jpw@gnu.org>
2822
2823 * subr.el (process-kill-without-query): Made obsolete in
2824 version 21.4, not 21.5.
2825
2826 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
2827 (vc-previous-comment, vc-next-comment)
2828 (vc-comment-search-reverse, vc-comment-search-forward)
2829 (vc-comment-to-change-log): Likewise.
2830
2831 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
2832
2833 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
2834
2835 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
2836 Correct indentation of DEFMETHODS with non-standard method
2837 combinations (e.g., PROGN, MIN, MAX).
2838
2839 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2840
2841 * startup.el (normal-top-level-add-subdirs-to-load-path):
2842 Avoid unnecessarily checking system-type.
2843 (normal-top-level): Set TERM to "dumb". Simplify.
2844
2845 * avoid.el (mouse-avoidance-ignore-p): New fun.
2846 Also ignore switch-frame, select-window, double, and triple clicks.
2847 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
2848 (mouse-avoidance-fancy-hook): Use it.
2849
2850 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
2851
2852 * avoid.el (mouse-avoidance-nudge-mouse)
2853 (mouse-avoidance-banish-destination): Stay within the current window
2854 to avoid problems with mouse-autoselect-window.
2855
2856 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
2857
2858 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
2859 the newer format of some messages in cvs-1.12.1.
2860
2861 2004-08-19 Masatake YAMATO <jet@gyve.org>
2862
2863 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
2864 (elp-results-jump-to-definition-by-mouse)
2865 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
2866 (elp-output-result): Use elp-output-insert-symname.
2867
2868 2004-08-18 Kenichi Handa <handa@m17n.org>
2869
2870 * language/cyrillic.el: Register koi8-r in
2871 ctext-non-standard-encodings-alist.
2872 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
2873
2874 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
2875
2876 * emacs-lisp/copyright.el (copyright-update-year): Delete code
2877 that replaces 20xy with xy.
2878
2879 2004-08-17 John Paul Wallington <jpw@gnu.org>
2880
2881 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
2882 (reb-force-update): Doc fix.
2883
2884 2004-08-16 Richard M. Stallman <rms@gnu.org>
2885
2886 * progmodes/which-func.el (which-func-update-1): Doc fix.
2887
2888 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
2889 (sh-mode-abbrev-table): New variable.
2890
2891 * progmodes/compile.el (compilation-mode): Doc fix.
2892
2893 * emacs-lisp/lisp-mode.el (eval-last-sexp):
2894 Don't cons a new symbol each time.
2895 (eval-last-sexp-fake-value): New variable.
2896
2897 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
2898 (copyright-update-year): Detect continuation of list of years.
2899
2900 * term.el (term-default-fg-color, term-default-bg-color)
2901 (ansi-term-color-vector): Use `unspecified', not nil, as default.
2902
2903 * imenu.el: Several doc fixes: don't say variables are buffer-local.
2904
2905 2004-08-16 Davis Herring <herring@lanl.gov>
2906
2907 * isearch.el (isearch-string, isearch-message-string, isearch-point)
2908 (isearch-success, isearch-forward-flag, isearch-other-end)
2909 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
2910 (isearch-barrier, isearch-within-brackets)
2911 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
2912
2913 2004-08-16 Kenichi Handa <handa@m17n.org>
2914
2915 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
2916
2917 2004-08-15 Kenichi Handa <handa@m17n.org>
2918
2919 * term/x-win.el (x-selection-value): If utf8 was successful but
2920 ctext was not, use utf8 string.
2921
2922 2004-08-14 Davis Herring <herring@lanl.gov>
2923
2924 * isearch.el: Remove accidental changes of March 4. Fix backing
2925 up when a regexp isearch is made more general. Use symbolic
2926 accessor functions for isearch stack frames to make usage clearer.
2927 (search-whitespace-regexp): Made groups in documentation shy (as
2928 is the group in the default value).
2929 (isearch-fallback): New function, addresses problems with regexps
2930 liberalized by `\|', adds support for liberalization by `\}' (the
2931 general repetition construct), and incorporates behavior for
2932 `*'/`?'.
2933 (isearch-}-char): New command, calls `isearch-fallback' with
2934 arguments appropriate to a typed `}'.
2935 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
2936 appropriately.
2937 (isearch-mode-map): Bind `}' to `isearch-}-char'.
2938 (isearch-string, isearch-message,string, isearch-point)
2939 (isearch-success, isearch-forward-flag, isearch-other-end)
2940 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
2941 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
2942 New inline functions to read fields of a stack frame.
2943
2944 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
2945
2946 * battery.el (battery-linux-proc-acpi): Look into battery
2947 directories matching the literal string "CMB", too (required for
2948 Linux kernel version 2.6.7).
2949
2950 2004-08-14 John Paul Wallington <jpw@gnu.org>
2951
2952 * cus-start.el (read-file-name-completion-ignore-case): Add.
2953 (blink-cursor-alist): Change version to "21.4".
2954
2955 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
2956
2957 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
2958
2959 * speedbar.el (speedbar-scan-subdirs): New option.
2960 (speedbar-file-lists): Don't ignore file-name case on Unix and use
2961 dolist.
2962 (speedbar-insert-files-at-point): Take an extra argument and use
2963 it to optionally find out if a subdir is empty. Also unreadable
2964 files don't get expand buttons.
2965 (speedbar-directory): New image (unused pixmap already existed).
2966 (speedbar-expand-image-button-alist): Use it.
2967
2968 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
2969
2970 CC Mode update to 5.30.9:
2971
2972 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
2973 Move from cc-vars to cc-defs for dependency reasons. Fix the
2974 POSIX char class test to check that it works in
2975 `skip-chars-(forward|backward)' too.
2976
2977 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
2978 first argument starts with a special brace list.
2979
2980 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
2981 when `c-opt-type-concat-key' is used (i.e. in Pike).
2982
2983 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
2984 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
2985 >)".
2986
2987 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
2988 whitespace safe.
2989
2990 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
2991 position for `arglist-intro', `arglist-cont-nonempty' and
2992 `arglist-close' when there are two arglist open parens on the same
2993 line and there's nothing in front of the first.
2994
2995 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
2996 locking of qualified names in Java, which previously could fontify
2997 common indexing expressions in many cases. The standard Java
2998 naming conventions are used to tell them apart.
2999
3000 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
3001 Fix inconsistency wrt opening parens on the first line inside a paren
3002 block.
3003
3004 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
3005 compile time for the sake of `c-major-mode-is'.
3006
3007 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
3008 `c-major-mode-is' in the event that this is used inside a
3009 `c-lang-defconst'.
3010
3011 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
3012 `c-lang-defconst' so that it works better with fallback languages.
3013
3014 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
3015 it to fail to record the base mode.
3016
3017 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
3018 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
3019 is used. Reordered the syntax checks to get more efficient
3020 skipping in some situations.
3021
3022 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
3023 continuation which might precede the newly inserted '{'.
3024
3025 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
3026 Fix cases where it could loop indefinitely.
3027
3028 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
3029 size specs correctly. Only fontify identifiers in front of '('
3030 with as functions - don't accept any paren char. Tightened up
3031 initializer skipping to stop before function and class blocks.
3032
3033 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
3034 the point could be left directly after an open paren when finding
3035 the beginning of the first decl in the block.
3036
3037 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
3038 table when filtering out legitimate open parens to be recorded.
3039 This could cause cache inconsistencies when e.g.
3040 `c++-template-syntax-table' was temporarily in use.
3041
3042 * progmodes/cc-engine.el (c-on-identifier)
3043 (c-simple-skip-symbol-backward): Small fix for handling "-"
3044 correctly in `skip-chars-backward'. Affected the operator lfun
3045 syntax in Pike.
3046
3047 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
3048 Fix bug that could cause an error from `after-change-functions' when
3049 the changed region is at bob.
3050
3051 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
3052
3053 CC Mode update to 5.30.9:
3054
3055 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
3056 to say that <TAB> doesn't insert WS into a CPP line.
3057 (c-indent-command, c-tab-always-indent): Amend doc strings.
3058
3059 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
3060 checks for user errors, thus eliminating cryptic and unhelpful
3061 Emacs error messages. (1) Check the arg to `c-set-style' is a
3062 string. (2) Check that settings to `c-offsets-alist' are not
3063 spuriously quoted.
3064
3065 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
3066 which precedes the newly inserted `{'.
3067
3068 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
3069
3070 Sync with Tramp 2.0.44.
3071
3072 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
3073 function "tramp_file_attributes". Otherwise, file names
3074 containing spaces are misinterpreted. Reported by Magnus Henoch
3075 <mange@freemail.hu>.
3076 (tramp-handle-file-truename): FILENAME must be expanded first.
3077 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
3078 obscure results. Reported by D. Goel <deego@gnufans.org>.
3079 (tramp-handle-verify-visited-file-modtime): If file does not
3080 exist, say it is not modified if and only if that agrees with the
3081 buffer's record. Check whether a file is visiting the buffer, or
3082 the buffer has no recorded last modification time. Return t in
3083 case the visiting file doesn't exist. Suggested by Luc Teirlinck
3084 <teirllm@auburn.edu>.
3085 (tramp-handle-write-region): Pass modtime explicitely to
3086 `set-visited-file-modtime', because filename can be different
3087 from (buffer-file-name) if `file-precious-flag' is set.
3088 `set-visited-file-modtime' must be called always when `visit' is t
3089 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
3090 (tramp-handle-set-visited-file-modtime): If `time-list' is not
3091 nil, don't apply the whole body. If the file doesn't exists, set
3092 modtime to '(-1 65535). Suggested by Luc Teirlinck
3093 <teirllm@auburn.edu>.
3094
3095 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
3096
3097 * help.el (describe-bindings): Doc fix.
3098
3099 * subr.el (kbd): Doc fix.
3100
3101 2004-08-08 John Paul Wallington <jpw@gnu.org>
3102
3103 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
3104 instead of `string-to-int'.
3105 (define-ibuffer-column mode): Fix indentation.
3106
3107 2004-08-08 Lars Hansen <larsh@math.ku.dk>
3108
3109 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
3110
3111 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
3112
3113 * subr.el (global-unset-key, local-unset-key): Doc fixes.
3114
3115 * novice.el (disabled-command-function): New variable renamed from
3116 `disabled-command-hook'.
3117 (disabled-command-hook): Keep the _variable_ as alias for
3118 `disabled-command-function' and make obsolete.
3119 (disabled-command-function): Function renamed from
3120 `disabled-command-hook'. Adapt code to name change of the variable.
3121
3122 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
3123
3124 * simple.el (completion-root-regexp): New defvar.
3125 (completion-setup-function): Use it instead of a literal string.
3126
3127 2004-08-07 John Paul Wallington <jpw@gnu.org>
3128
3129 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
3130 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
3131 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
3132 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
3133
3134 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
3135
3136 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
3137 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
3138
3139 2004-08-04 Kenichi Handa <handa@m17n.org>
3140
3141 * international/encoded-kb.el (encoded-kbd-setup-keymap):
3142 Fix previous change.
3143
3144 2004-08-03 Kenichi Handa <handa@m17n.org>
3145
3146 * international/encoded-kb.el: The following changes are to
3147 utilize key-translation-map instead of minor mode map.
3148 (encoded-kbd-iso2022-non-ascii-map): Delete it.
3149 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
3150 (encoded-kbd-last-key): New function.
3151 (encoded-kbd-iso2022-single-shift): New function.
3152 (encoded-kbd-iso2022-designation)
3153 (encoded-kbd-self-insert-iso2022-7bit)
3154 (encoded-kbd-self-insert-iso2022-8bit)
3155 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
3156 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
3157 key-translation-map.
3158 (encoded-kbd-setup-keymap): Setup key-translation-map.
3159 (saved-key-translation-map): New variable.
3160 (encoded-kbd-mode): Save/restore key-translation-map.
3161 Adjust for the change of encoded-kbd-setup-keymap.
3162
3163 2004-08-02 Kim F. Storm <storm@cua.dk>
3164
3165 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
3166 and call compute-motion with nil for topos and width to get proper
3167 usable width and height for both window and non-window systems.
3168
3169 * windmove.el (windmove-coordinates-of-position): Let compute-motion
3170 calculate usable window width and height.
3171
3172 * window.el (window-buffer-height): Call compute-motion with nil width.
3173
3174 2004-08-01 David Kastrup <dak@gnu.org>
3175
3176 * replace.el (query-replace-read-from):
3177 Use `query-replace-compile-replacement'.
3178 (query-replace-compile-replacement): New function.
3179 (query-replace-read-to): Use `query-replace-compile-replacement'
3180 for repeating the last command.
3181
3182 2004-08-01 John Paul Wallington <jpw@gnu.org>
3183
3184 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
3185 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
3186 (pr-switches): Remove period from end of error messages.
3187
3188 * help-mode.el (help-go-back): Likewise.
3189
3190 * abbrev.el (only-global-abbrevs): Doc fix.
3191 (edit-abbrevs-map): Define within defvar.
3192 (quietly-read-abbrev-file): Doc fix.
3193
3194 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
3195
3196 * novice.el (enable-command, disable-command): Doc fixes.
3197
3198 * subr.el (event-modifiers, event-basic-type): Doc fixes.
3199
3200 2004-07-30 Richard M. Stallman <rms@gnu.org>
3201
3202 * subr.el (with-local-quit): Doc fix.
3203
3204 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
3205
3206 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
3207
3208 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
3209
3210 * custom.el (defcustom): Doc fix.
3211
3212 2004-07-28 Masatake YAMATO <jet@gyve.org>
3213
3214 * progmodes/etags.el (etags-tags-apropos): Show building progress.
3215
3216 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3217
3218 * imenu.el (imenu-prev-index-position-function)
3219 (imenu-extract-index-name-function, imenu-name-lookup-function)
3220 (imenu--index-alist): Docstring redundancy fix.
3221
3222 2004-07-25 Lars Hansen <larsh@math.ku.dk>
3223
3224 * wdired.el (wdired-finish-edit): Require dired-aux before locally
3225 binding dired-backup-overwrite.
3226
3227 2004-07-25 John Paul Wallington <jpw@gnu.org>
3228
3229 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
3230
3231 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
3232
3233 * term/tty-colors.el (tty-color-approximate): Doc fix.
3234
3235 * select.el (x-get-selection, x-set-selection): Doc fixes.
3236
3237 * frame.el (make-frame): Doc fix.
3238
3239 2004-07-24 Richard M. Stallman <rms@gnu.org>
3240
3241 * mail/rmail.el (rmail-mime-charset-pattern):
3242 Don't include semicolon in the charset value.
3243
3244 * replace.el (occur-next-error): Call set-window-point.
3245 (occur-engine): Handle negative NLINES.
3246
3247 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
3248
3249 * frame.el (modify-all-frames-parameters): Minor doc fix.
3250 (set-frame-configuration): Doc fix.
3251
3252 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
3253
3254 * simple.el (completion-setup-function): Compute the common parts
3255 and the first difference place correctly when
3256 partial-completion-mode is on.
3257
3258 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3259
3260 * ps-print.el: Doc fix.
3261 (ps-print-version): New version 6.6.5.
3262 (ps-printing-region): Doc fix.
3263 (ps-generate-string-list): Comment fix.
3264 (ps-message-log-max): Code fix.
3265
3266 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
3267
3268 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
3269 generated PostScript.
3270
3271 2004-08-17 Reiner Steib <Reiner.Steib@gmx.de>
3272
3273 * net/tls.el (tls-process-connection-type): Fix docstring. (Sync
3274 with Gnus v5_10 branch.)
3275
3276 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
3277
3278 * calendar/time-date.el (time-to-number-of-days): New function.
3279 Imported from from Gnus.
3280
3281 2004-07-22 Kim F. Storm <storm@cua.dk>
3282
3283 * progmodes/make-mode.el: Fix comments.
3284
3285 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3286
3287 * printing.el: Doc fix.
3288
3289 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
3290
3291 * frame.el (modify-all-frames-parameters): Minor doc fix.
3292
3293 2004-07-20 Richard M. Stallman <rms@gnu.org>
3294
3295 * textmodes/fill.el (fill-nobreak-p): If this break point is
3296 at the end of the line, don't consider the newline which follows
3297 as a reason to return t.
3298
3299 2004-07-19 John Paul Wallington <jpw@gnu.org>
3300
3301 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
3302
3303 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
3304
3305 * dired-aux.el (dired-do-kill-lines): Expand docstring.
3306 Delete irrelevant code.
3307
3308 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
3309
3310 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
3311 New docstring. From Luc Teirlinck.
3312
3313 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
3314
3315 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
3316 section.
3317 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
3318 non-file buffers. We know it is nil.
3319
3320 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
3321
3322 Sync with Tramp 2.0.43.
3323
3324 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
3325 Remove outdated comment.
3326 (tramp-locked, tramp-locker): New variables for implementing a
3327 global lock.
3328 (tramp-sh-file-name-handler): Use them to implement the global lock.
3329
3330 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
3331
3332 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
3333 calls to respective `xxx` calls.
3334 (tramp-process-alive-regexp): Precise doc string.
3335 (tramp-multi-action-process-alive): New defun.
3336 (tramp-multi-actions): Use it.
3337 (tramp-handle-find-backup-file-name): `copy-tree' is available
3338 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
3339 in order to avoid this function.
3340 (tramp-handle-write-region): Set current buffer. If connection
3341 wasn't open, `file-modes' has changed it accidently. Reported by
3342 David Kastrup <dak@gnu.org>.
3343 (tramp-enter-password, tramp-read-passwd): New arguments USER and
3344 HOST.
3345 (tramp-action-password, tramp-multi-action-password): Apply it.
3346 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
3347 name must still contain the port number. Otherwise, we have two
3348 Tramp buffers, with all the confusion. Reported by Myron Selby
3349 <myron@xytech.com> and Rolf Dubitzky
3350 <Dubitzky@physi.uni-heidelberg.de>.
3351
3352 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
3353 HOST to `tramp-enter-passwd'.
3354
3355 * net/tramp-vc.el (all): Code cleanup. Change all
3356 `tramp-handle-xxx' calls to respective `xxx` calls.
3357
3358 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
3359
3360 * emacs-lisp/testcover.el: New category "potentially-1valued" for
3361 functions that are not erroneous if either 1-valued or
3362 multi-valued. Detect functions in this class.
3363 (testcover-1value-functions, testcover-compose-functions)
3364 (testcover-progn-functions) Added some additional functions to lists.
3365 (testcover-mark): Bugfix when marking up the definition for an
3366 empty function.
3367
3368 2004-07-17 Richard M. Stallman <rms@gnu.org>
3369
3370 * replace.el (occur-read-primary-args): Pass default to
3371 read-from-minibuffer.
3372
3373 * mail/footnote.el (footnote-section-tag): Use defcustom.
3374
3375 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
3376 Compile font-lock-keywords, not KEYWORDS.
3377 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
3378 Add warn, check-type. Handle cerror like error.
3379
3380 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
3381
3382 * progmodes/which-func.el (which-func-keymap): New var.
3383 (which-func-face): New face.
3384 (which-func-format): Use them.
3385
3386 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
3387
3388 * buff-menu.el (list-buffers-noselect): Append the buffer's
3389 process status to its mode name.
3390
3391 2004-07-16 Kim F. Storm <storm@cua.dk>
3392
3393 * simple.el (inhibit-mark-movement): New defvar.
3394 (beginning-of-buffer, end-of-buffer): Do not push mark if
3395 inhibit-mark-movement is non-nil or C-u prefix is given.
3396
3397 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
3398 Init to beginning-of-buffer and end-of-buffer.
3399 (cua--undo-push-mark): New defvar.
3400 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
3401 already active and command is in cua--preserve-mark-commands.
3402 Also fix check for shift modifier on non-window systems.
3403 (cua--post-command-handler): Clear inhibit-mark-movement if set.
3404
3405 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
3406
3407 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
3408 of two integers, instead of a cons.
3409
3410 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
3411 `visited-file-modtime' now returns a list of two integers, instead
3412 of a cons.
3413
3414 * dired.el (dired-directory-changed-p): Ditto.
3415
3416 * progmodes/grep.el (grep): Doc fix.
3417
3418 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
3419
3420 * autorevert.el (auto-revert-tail-mode)
3421 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
3422 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
3423 in both at the same time.
3424 (auto-revert-tail-mode): New command.
3425 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
3426 (auto-revert-handler): Revert only either tail or whole file.
3427
3428 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
3429 add auto-revert-tail-mode.
3430
3431 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3432
3433 * printing.el: Doc fix. Change name of some funs.
3434 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
3435 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
3436 (pr-standard-file-name): New fun. Replace pr-standard-path.
3437 (pr-call-process): Code fix.
3438
3439 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
3440
3441 * subr.el (with-selected-window): Doc fix.
3442
3443 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
3444
3445 * subr.el (get-buffer-window-list): Doc fix.
3446
3447 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
3448
3449 * files.el (switch-to-buffer-other-window): Doc fix.
3450
3451 * window.el (save-selected-window, one-window-p)
3452 (split-window-keep-point, split-window-vertically)
3453 (split-window-horizontally): Doc fixes.
3454
3455 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3456
3457 * printing.el: Doc fix. Now it uses call-process instead of
3458 shell-command for low command execution.
3459 (pr-version): New version number (6.8).
3460 (pr-shell-file-name): Option removed.
3461 (pr-shell-command): Fun removed.
3462 (pr-call-process): New fun. Replace pr-shell-command.
3463 (pr-standard-path, pr-remove-nil-from-list): New funs.
3464 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
3465 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
3466 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
3467 (pr-ps-utility-process, pr-txt-print): Code fix.
3468
3469 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
3470
3471 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
3472 boolean.
3473
3474 2004-07-09 Lars Hansen <larsh@math.ku.dk>
3475
3476 * wid-edit.el (widget-field-buffer): Doc fix.
3477
3478 2004-07-09 John Paul Wallington <jpw@gnu.org>
3479
3480 * emacs-lisp/re-builder.el (reb-update-overlays):
3481 Distinguish between one and several matches in message.
3482
3483 2004-07-09 Richard M. Stallman <rms@gnu.org>
3484
3485 * mouse.el (mouse-set-region-1): If transient-mark-mode
3486 is `identity', change it to `only'.
3487
3488 * simple.el (current-word): Doc fix.
3489
3490 2004-07-09 Mark A. Hershberger <mah@everybody.org>
3491
3492 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
3493 so that it is more understanding of whitespace.
3494
3495 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
3496 form
3497 (("ns" . "element") (attr-list) children) instead of
3498 ((:ns . "element") (attr-list) children) in order to reduce the
3499 number of symbols used.
3500 (xml-skip-dtd): Change to use xml-parse-dtd but set
3501 xml-validating-parsing to nil.
3502 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
3503 (xml-substitute-entity): Remove in favor of new entity substitution.
3504 (xml-substitute-special): Rewrite in to substitute complex
3505 entities from DOCTYPE declarations.
3506 (xml-parse-fragment): Parse fragments from entity deleclarations.
3507 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
3508 (xml-parse-dtd, xml-substitute-special): Make validity checks
3509 conditioned on xml-validating-parser. Add "Not Well Formed" to
3510 error messages about well-formedness.
3511
3512 2004-07-08 Steven Tamm <steventamm@mac.com>
3513
3514 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
3515 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
3516 Do not treat double clicks and triple clicks specially in the
3517 scroll bar (preventing strange repositioning problems)
3518
3519 2004-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
3520
3521 * replace.el (query-replace-regexp-eval): Fix last change.
3522
3523 2004-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
3524
3525 * replace.el (query-replace-descr): New fun.
3526 (query-replace-read-from, query-replace-read-args): Default to the
3527 previous from&to.
3528 (query-replace-read-to): Quote the `from' string when displaying it.
3529 (query-replace-regexp-eval): Immediately check read-only status.
3530 Use query-replace-read-from to get the \n checking.
3531 Quote the `from' string when displaying it.
3532 (map-query-replace-regexp, occur-read-primary-args):
3533 Quote the `from' string when displaying it.
3534
3535 * isearch.el (isearch-query-replace): Pass the regexp-ness and
3536 delimited-ness of the search to query-replace.
3537
3538 * replace.el (query-replace-read-from, query-replace-read-to):
3539 New funs extracted from query-replace-read-args.
3540 (query-replace-read-args): Use them.
3541
3542 * replace.el (query-replace-interactive, query-replace-read-args):
3543 Remove the `initial' special value.
3544 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
3545 (occur-engine): Remove unused var `matchend'.
3546
3547 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
3548 Use the search string without prompting.
3549
3550 2004-07-05 Kenichi Handa <handa@m17n.org>
3551
3552 * international/mule.el (decode-coding-inserted-region):
3553 Set last-coding-system-used only when coding is nil.
3554
3555 2004-07-03 Eli Zaretskii <eliz@gnu.org>
3556
3557 * progmodes/grep.el (grep-compute-defaults, grep-command)
3558 (grep-program, find-program, grep-find-use-xargs, grep-history)
3559 (grep-find-history, grep-tag-default, grep-find-command)
3560 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
3561 Add autoload cookies, for unbundled packages that load `compile'
3562 and expect all grep-related symbols to become defined.
3563
3564 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
3565
3566 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
3567 (iimage-mode-image-search-path): New user option to search the
3568 image file.
3569 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
3570 have locate-file.
3571 (iimage-mode-buffer): Use it.
3572
3573 2004-07-03 Nick Roberts <nickrob@gnu.org>
3574
3575 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
3576 carefully.
3577 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
3578
3579 2004-07-03 Juri Linkov <juri@jurta.org>
3580
3581 * replace.el (query-replace-read-args): Swallow space after 'foo,
3582 not after (quote foo). Match space only immediately after symbol,
3583 not anywhere in the whole string.
3584
3585 2004-07-02 Richard M. Stallman <rms@gnu.org>
3586
3587 * replace.el (query-replace-read-args): Swallow space after
3588 symbols, not after closeparens. But avoid error if string ends there.
3589
3590 * progmodes/python.el (python-beginning-of-statement):
3591 Exit the loop if backward-up-list gets error.
3592
3593 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
3594
3595 2004-07-02 Andre Spiegel <spiegel@gnu.org>
3596
3597 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
3598 only if vc-consult-headers is non-nil.
3599
3600 2004-07-02 Juri Linkov <juri@jurta.org>
3601
3602 * pcvs.el (cvs-mode-diff-repository): New command.
3603
3604 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
3605
3606 2004-07-01 Juri Linkov <juri@jurta.org>
3607
3608 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
3609 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
3610 C-M-% to isearch-query-replace-regexp.
3611 (minibuffer-local-isearch-map): Add arrow key bindings.
3612 Bind C-f to isearch-yank-char-in-minibuffer.
3613 (isearch-forward): Doc fix.
3614 (isearch-edit-string): Doc fix.
3615 (isearch-query-replace, isearch-query-replace-regexp): New funs.
3616 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
3617 (isearch-yank-char): Add optional arg.
3618 (isearch-yank-char-in-minibuffer): New fun.
3619
3620 * replace.el (query-replace-interactive): Change type from boolean
3621 to choice. Add value `initial'.
3622 (query-replace-read-args): Handle value `initial' of
3623 query-replace-interactive.
3624
3625 2004-06-29 Kim F. Storm <storm@cua.dk>
3626
3627 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
3628 (breakpoint-disabled-bitmap-face): Add :group 'gud.
3629
3630 * progmodes/ada-xref.el (ada-tight-gvd-integration):
3631 Add :group 'ada.
3632
3633 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
3634
3635 2004-06-29 Juri Linkov <juri@jurta.org>
3636
3637 * replace.el (query-replace-read-args): Swallow a space after
3638 everything except )]" which in most cases means after a symbol.
3639
3640 * emacs-lisp/pp.el (pp-buffer): Add autoload.
3641
3642 2004-06-28 Richard M. Stallman <rms@gnu.org>
3643
3644 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
3645 More changes to go with previous change in font-lock.el.
3646
3647 2004-06-26 David Kastrup <dak@gnu.org>
3648
3649 * replace.el (perform-replace): Highlight the match even in
3650 non-query mode if there is potential replace string editing.
3651
3652 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
3653
3654 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
3655 agree with new return value of `file-remote-p'.
3656 This syncs with Tramp 2.0.42.
3657
3658 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
3659 according to new documentation of `file-remote-p'.
3660
3661 * files.el (file-remote-p): Fix doc to say that return value is
3662 identification of remote system, if not nil.
3663 (file-relative-name): Use new return value of `file-remote-p'.
3664
3665 2004-06-26 Nick Roberts <nickrob@gnu.org>
3666
3667 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
3668 (gdb-goto-breakpoint): Fix breakage.
3669
3670 2004-06-26 Eli Zaretskii <eliz@gnu.org>
3671
3672 * man.el (Man-getpage-in-background): Add windows-nt to the list
3673 of systems where shell-file-name should be used instead of
3674 literal "sh".
3675
3676 2004-06-25 Sam Steingold <sds@gnu.org>
3677
3678 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
3679 function names `(setf symbol)'.
3680
3681 2004-06-24 Richard M. Stallman <rms@gnu.org>
3682
3683 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
3684
3685 * font-lock.el (font-lock-keywords): Change format of compiled values.
3686 Document it.
3687 (font-lock-add-keywords): If font-lock-keywords is compiled,
3688 extract the uncompiled version, modify, then recompile.
3689 (font-lock-remove-keywords): Likewise.
3690 (font-lock-fontify-keywords-region): Handle changed format.
3691 (font-lock-compile-keywords): Handle changed format.
3692 (font-lock-set-defaults): Compile the keywords explicitly here.
3693
3694 2004-06-24 David Kastrup <dak@gnu.org>
3695
3696 * replace.el (query-replace-read-args): Implement `\,' and `\#'
3697 replacements here.
3698 (query-replace-regexp): Doc string explaining this and the new
3699 `\?' replacement. Remove `\,' and `\#' implementation here, as it
3700 is better placed in `query-replace-read-args'.
3701 (replace-regexp): Explain `\,', `\#' and `\?'.
3702 (replace-match-data): New function for thorough reuse/destruction
3703 of old match-data.
3704 (replace-match-maybe-edit): Function for implementing `\?' editing.
3705 (perform-replace): Fix maintaining of the match stack including
3706 already matched regions, implement `\?', fix various problems
3707 with regions while editing and other stuff.
3708 (replace-highlight): Simplify.
3709
3710 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
3711
3712 * progmodes/grep.el (grep-error-screen-columns): New variable.
3713 (grep-regexp-alist): Give it the full functionality of gnu style
3714 compilation messages with line and column ranges. Ask me for the
3715 perl script I'm working on, that uses these.
3716
3717 2004-06-23 Nick Roberts <nickrob@gnu.org>
3718
3719 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
3720 Remove.
3721 (comint-insert-input, comint-mouse-insert-input): New functions
3722 based on comint-insert-clicked-input for two bindings but just
3723 one functionality.
3724
3725 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
3726
3727 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
3728
3729 2004-06-23 Lars Hansen <larsh@math.ku.dk>
3730
3731 * files.el (write-contents-functions): Doc fix.
3732
3733 2004-06-21 Juanma Barranquero <lektu@terra.es>
3734
3735 * image.el (image-library-alist): Rewrite docstring in active voice.
3736
3737 2004-06-20 Richard M. Stallman <rms@gnu.org>
3738
3739 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
3740
3741 * isearch.el (isearch-repeat): Avoid testing old match data.
3742 (isearch-message): Display trailing space in special font
3743 when search is failing.
3744 (isearch-search-fun-function): Doc fix.
3745
3746 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
3747
3748 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
3749
3750 * frame.el (show-trailing-whitespace): Doc fix.
3751
3752 * cus-edit.el (custom-variable-documentation): New function.
3753 (custom-variable): Use it.
3754
3755 2004-06-19 Nick Roberts <nickrob@gnu.org>
3756
3757 * man.el (Man-getpage-in-background): Revert previous change but
3758 make cygwin a special case.
3759
3760 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
3761
3762 * autorevert.el (global-auto-revert-non-file-buffers):
3763 Update docstring.
3764
3765 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
3766
3767 * progmodes/compile.el (compilation-error-properties): Store one
3768 more than end-col, if present, so that transient-mark-mode will
3769 highlight last char too.
3770 * progmodes/grep.el (grep-regexp-alist): Match columns and column
3771 ranges, if present.
3772
3773 2004-06-18 Jason Rumney <jasonr@gnu.org>
3774
3775 * makefile.w32-in: Double percent signs in for loops.
3776
3777 2004-06-17 David Kastrup <dak@gnu.org>
3778
3779 * replace.el (query-replace-read-args): Only warn about use of \n
3780 and \t when we are doing a regexp replacement and the actual
3781 escaped character is n or t.
3782 (query-replace-regexp): Add \, and \# interpretation to
3783 interactive call and document it.
3784 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
3785 as shortkey for replace-count.
3786 (replace-quote): New function for doubling backslashes.
3787
3788 2004-06-17 Juanma Barranquero <lektu@terra.es>
3789
3790 * files.el (parse-colon-path, cd): Mention in docstring that the
3791 path separator is colon in GNU-like systems.
3792
3793 * newcomment.el (comment-region-internal): Fix docstring.
3794
3795 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
3796 (ewoc-invalidate, ewoc-collect): Doc fixes.
3797 (ewoc--create-node, ewoc--delete-node-internal):
3798 Fix typos in docstring.
3799
3800 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
3801
3802 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
3803 manual to docstring.
3804
3805 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3806
3807 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
3808
3809 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
3810
3811 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
3812 Add hyperlink to emacs-xtra manual to docstring.
3813
3814 * autorevert.el (global-auto-revert-non-file-buffers):
3815 Add hyperlink to emacs-xtra manual to docstring, as well as an
3816 info-link.
3817
3818 2004-06-14 Juanma Barranquero <lektu@terra.es>
3819
3820 * image.el (image-library-alist): New variable to map image types
3821 to external libraries. Initialized to nil, unless system-specific
3822 configs change it.
3823 (image-type-available-p): Determine whether an image type is
3824 available by calling `init-image-library'.
3825
3826 * term/w32-win.el (image-library-alist): Initialize to a known set
3827 of probable library names.
3828
3829 2004-06-14 Kenichi Handa <handa@m17n.org>
3830
3831 * international/code-pages.el (windows-1256, cp1125): Fix tables
3832 for several characters.
3833
3834 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
3835
3836 2004-06-13 Richard M. Stallman <rms@gnu.org>
3837
3838 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
3839
3840 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
3841 not "`pc-selection-mode'".
3842
3843 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
3844
3845 * simple.el (previous-matching-history-element): Specify a default.
3846
3847 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
3848
3849 * cus-face.el (custom-declare-face): Simplify code.
3850
3851 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
3852
3853 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
3854
3855 * files.el (before-save-hook): Add `time-stamp' to the options.
3856
3857 * time-stamp.el (time-stamp): Recommend adding it to
3858 `before-save-hook', rather than `write-file-functions'.
3859 Make a similar change in `Commentary' section.
3860
3861 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
3862
3863 * diff-mode.el (diff-current-defun): If at start of hunk, use
3864 position of first change.
3865
3866 2004-06-13 Lars Hansen <larsh@math.ku.dk>
3867
3868 * dired-x.el (dired-mark-omitted): Bind to "*O".
3869
3870 2004-06-12 Karl Fogel <kfogel@red-bean.com>
3871
3872 * bookmark.el (bookmark-bmenu-relocate): New function, as
3873 suggested by David J. Biesack <David.Biesack@sas.com>.
3874 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
3875 (bookmark-bmenu-mode): Describe binding in doc string.
3876 (bookmark-set-filename): Save the bookmark list if it's time.
3877
3878 2004-06-13 Kenichi Handa <handa@m17n.org>
3879
3880 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
3881 (ccl-untranslated-to-ucs): Fix typo.
3882
3883 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
3884
3885 * progmodes/python.el (python-open-block-statement-p):
3886 Fix indentation after a block opening that contains a comment.
3887
3888 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
3889
3890 * bindings.el (completion-ignored-extensions): Add file extensions
3891 of Python byte-compiled files.
3892
3893 2004-06-12 Juri Linkov <juri@jurta.org>
3894
3895 * info.el (Info-goto-node): Add autoload.
3896 (Info-toc): Add substring-no-properties on Info file name.
3897 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
3898 (Info-mode-map): Bind L to Info-history, T to Info-toc.
3899
3900 2004-06-12 Kenichi Handa <handa@m17n.org>
3901
3902 * international/mule-cmds.el (set-language-environment):
3903 Load subst tables if necessary.
3904
3905 * international/mule.el (decode-char): Load subst tables if necessary.
3906 (encode-char): Likewise.
3907
3908 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
3909 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
3910 (utf-16le-decode-loop): Set r5 to -1 before loop.
3911 (utf-16be-decode-loop): Likewise.
3912 (ccl-decode-mule-utf-16le): Add EOF processing block.
3913 (ccl-decode-mule-utf-16be): Likewise.
3914 (ccl-decode-mule-utf-16le-with-signature): Likewise.
3915 (ccl-decode-mule-utf-16be-with-signature): Likewise.
3916 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
3917 (ccl-mule-utf-16-encode-untrans): New CCL.
3918 (utf-16-decode-to-ucs): Handle pre-read character.
3919 (utf-16le-encode-loop): Handle surrogate pair.
3920 (utf-16be-encode-loop): Likewise.
3921 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
3922 of utf-16le-encode-loop.
3923 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
3924 of utf-16be-encode-loop.
3925 (mule-utf-16-post-read-conversion):
3926 Call utf-8-post-read-conversion at first.
3927 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
3928 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
3929 Add post-read-conversion and pre-write-conversion.
3930
3931 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
3932 (utf-translate-cjk-unicode-range): New variable.
3933 (utf-translate-cjk-load-tables): New function.
3934 (utf-lookup-subst-table-for-decode): New function.
3935 (utf-lookup-subst-table-for-encode): New function.
3936 (utf-translate-cjk-mode): Init-value changed to t. Don't load
3937 tables here. Update safe-charsets of utf-* coding systems.
3938 (ccl-mule-utf-untrans): New CCL.
3939 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
3940 at end of each branch.
3941 (ccl-mule-utf-8-encode-untrans): New CCL.
3942 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
3943 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
3944 length of encoding. Don't return r0.
3945 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
3946 (utf-8-post-read-conversion): Narrow to region properly.
3947 If utf-translate-cjk-mode is on, load tables if necessary.
3948 Call utf-8-compose with hash-table arg if necessary.
3949 Call XXX-compose-region instead of XXX-post-read-convesion.
3950 (utf-8-pre-write-conversion): New function.
3951 (mule-utf-8): Include CJK charsets in safe-charsets if
3952 utf-translate-cjk-mode is on. Add pre-write-conversion.
3953
3954 * international/characters.el: Temporarily set
3955 utf-translate-cjk-mode to nil.
3956
3957 * language/devan-util.el (devanagari-compose-region):
3958 Add autoload cookie.
3959
3960 * international/ccl.el (ccl-dump-call): Fix printing the
3961 subroutine name.
3962
3963 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
3964
3965 * dired.el (dired-revert): If buffer is marked unmodified before
3966 reverting, keep it marked unmodified.
3967 Adapt to new conventions for commenting out code.
3968 (dired-make-relative): Adapt to new conventions for commenting out code.
3969
3970 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
3971
3972 * eshell/esh-module.el (eshell-load-defgroups):
3973 Bind `vc-handled-backends' to nil when opening files.
3974
3975 2004-06-11 Juanma Barranquero <lektu@terra.es>
3976
3977 * files.el (parse-colon-path, cd): Doc fixes (refer to
3978 `path-separator', not colon).
3979
3980 2004-06-10 Juanma Barranquero <lektu@terra.es>
3981
3982 * newcomment.el (comment-search-forward)
3983 (comment-search-backward): Fix typos in docstring.
3984 (comment-region): Doc fix.
3985
3986 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
3987
3988 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
3989 switch is no longer stored in `dired-switches-alist'.
3990
3991 * dired-aux.el (dired-insert-subdir): Do not store R switch in
3992 `dired-switches-alist'.
3993
3994 2004-06-10 Kim F. Storm <storm@cua.dk>
3995
3996 * pcvs.el (cvs-mode-diff-yesterday): New command.
3997
3998 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
3999
4000 2004-06-10 Juri Linkov <juri@jurta.org>
4001
4002 * emacs-lisp/edebug.el (edebug-eval-defun):
4003 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
4004 Fix docstring.
4005
4006 * simple.el (eval-expression-print-format): Don't print additional
4007 information on the first call to `eval-print-last-sexp'.
4008 (next-error-find-buffer): Fix punctuation.
4009 (killing) <defgroup>: Fix punctuation.
4010 (yank-excluded-properties): Change group from editing to killing.
4011
4012 * replace.el (perform-replace): Use `limit' to terminate the
4013 while-loop explicitly.
4014
4015 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4016
4017 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
4018 Use lc-*.xpm as prefix instead of *-locol.xpm.
4019
4020 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
4021 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
4022 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
4023 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
4024 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
4025 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
4026 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
4027 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
4028 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
4029 * toolbar/lc-up_arrow.xpm:
4030 Renamed from *-locol.xpm.
4031
4032 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
4033
4034 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
4035 include forms like &<str>; as valid url patterns.
4036
4037 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
4038
4039 * dired.el (dired-diff, dired-backup-diff)
4040 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
4041 (dired-do-chown, dired-do-touch, dired-do-print)
4042 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
4043 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
4044 (dired-create-directory, dired-do-copy, dired-do-symlink)
4045 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
4046 (dired-do-copy-regexp, dired-do-hardlink-regexp)
4047 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
4048 (dired-maybe-insert-subdir, dired-next-subdir)
4049 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
4050 (dired-kill-subdir, dired-tree-up, dired-tree-down)
4051 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
4052 (dired-run-shell-command, dired-query): Remove redundant,
4053 or incorrect, autoloads.
4054
4055 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
4056 does not end in a slash. Add optional argument KILL-ROOT.
4057 Update docstring.
4058 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
4059 (dired-query): Add autoloads.
4060
4061 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
4062
4063 * progmodes/compile.el (compilation-set-window-height):
4064 Rearrange the save-* functions because a buffer can have several current
4065 point in different windows.
4066 (compilation-error-regexp-alist-alist): Recognize {standard input}
4067 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
4068
4069 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4070
4071 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
4072 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
4073 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
4074 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
4075 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
4076 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
4077 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
4078 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
4079 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
4080 * toolbar/up_arrow-locol.xpm:
4081 New versions of icons that uses fewer colors.
4082
4083 * toolbar/tool-bar.el (tool-bar-local-item)
4084 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
4085 if display-color-cells is 256 or less.
4086
4087 2004-06-08 Kim F. Storm <storm@cua.dk>
4088
4089 * wid-edit.el (widget-specify-button): Use hand pointer rather
4090 than mouse-face as visible mouse-over effect.
4091
4092 2004-06-07 Karl Fogel <kfogel@red-bean.com>
4093
4094 * saveplace.el (save-place-alist-to-file): Bind `print-length'
4095 and `print-level' to nil when writing out `save-place-alist'.
4096 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
4097
4098 2004-06-07 Juanma Barranquero <lektu@terra.es>
4099
4100 * completion.el (completion-kill-region): Doc fix.
4101
4102 * format.el (format-insert-annotations)
4103 (format-annotate-location): Doc fixes.
4104 (format-subtract-regions): Make arguments match their use in docstring.
4105
4106 * simple.el (kill-region): Doc fix.
4107
4108 * subr.el (insert-buffer-substring-no-properties)
4109 (insert-buffer-substring-as-yank): Doc fixes.
4110
4111 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
4112
4113 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4114 Update docstring.
4115 (dired-reset-subdir-switches): New function.
4116
4117 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
4118 Limit scope of `buffer-read-only' binding.
4119
4120 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
4121
4122 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
4123 eshell-explicit-command-char.
4124
4125 2004-06-06 Juanma Barranquero <lektu@terra.es>
4126
4127 * help-fns.el (help-argument-name): Inherit from italic face only
4128 if the frame supports it.
4129
4130 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4131
4132 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
4133 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
4134 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
4135 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
4136 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
4137 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
4138 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
4139 New conversions from xpm files.
4140
4141 * toolbar/README: New file.
4142
4143 2004-06-06 Richard M. Stallman <rms@gnu.org>
4144
4145 * isearch.el (isearch-mode-map): Undo previous change.
4146
4147 2004-06-05 Juri Linkov <juri@jurta.org>
4148
4149 * bindings.el (debug-ignored-errors): Add regexps for history
4150 related messages. Remove $ from "No further undo information".
4151 Move Ediff's messages to ediff.el.
4152
4153 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
4154
4155 * cus-edit.el (custom-display): Add `min-colors'.
4156
4157 * custom.el (defface): Add `supports' to docstring.
4158
4159 * help-fns.el (help-argument-name): Add :group 'help.
4160
4161 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
4162
4163 * find-dired.el (find-ls-subdir-switches): New user option.
4164 (find-dired): No longer call `abbreviate-file-name' on DIR.
4165 Set `dired-subdir-switches' buffer-locally.
4166
4167 * locate.el: Merge the two `Commentary' sections.
4168 (locate-ls-subdir-switches): New user option.
4169 (locate): Update for other changes.
4170 (locate-mode-map): Restore Dired binding for mouse-2.
4171 Bind `locate-mouse-view-file' to M-mouse-2.
4172 Bind `l' to `locate-do-redisplay'.
4173 (locate-main-listing-line-p, locate-do-redisplay): New functions.
4174 (locate-mouse-view-file, locate-tags, locate-find-directory):
4175 Print message if used outside main listing.
4176 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
4177 Various changes to support inserted subdirectories.
4178 (locate-insert-header): Change header of *Locate* buffer.
4179
4180 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4181 Change interactive default switches.
4182 (dired-rename-subdir-2): Update `dired-switches-alist'.
4183 (dired-insert-subdir, dired-kill-subdir):
4184 Handle `dired-switches-alist'. Do not mark buffer modified.
4185 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
4186 (dired-insert-subdir-doinsert): Omit messages.
4187 Handle `dired-subdir-switches'.
4188 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
4189
4190 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
4191 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
4192 subdirs if -R switch is used for a subdir.
4193 (dired-mode): Set `dired-switches-alist'.
4194 (dired-build-subdir-alist): Only print number of directories in
4195 echo area when invoked interactively.
4196
4197 2004-06-05 Lars Hansen <larsh@math.ku.dk>
4198
4199 * dired-x.el (dired-omit-mode): Rename from
4200 dired-omit-files-p. Use define-minor-mode to define it.
4201 (dired-omit-files-p): Add as alias for dired-omit-mode.
4202 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
4203 dired-mark-omitted.
4204 (dired-mark-omitted): Add. Bind to M-O.
4205
4206 2004-06-05 Kenichi Handa <handa@m17n.org>
4207
4208 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
4209
4210 2004-06-05 Juanma Barranquero <lektu@terra.es>
4211
4212 * help-fns.el (help-argument-name): Reintroduce face.
4213 (help-default-arg-highlight): Use it, now that
4214 `face-differs-from-default-p' can be trusted.
4215
4216 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
4217
4218 * textmodes/table.el: Sentence commands added to Point Motion
4219 group; kill and backward-kill commands added to Extraction group.
4220
4221 2004-06-04 Mario Lang <mlang@delysid.org>
4222
4223 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
4224 systems appear to use mW, make the code handle this. Fix a
4225 division-by-zero bug while at it, and handle kernels with
4226 a slightly different layout in /proc/acpi.
4227
4228 2004-06-04 Karl Fogel <kfogel@red-bean.com>
4229
4230 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
4231 because the latter is a CL-ism. This fixes the bug reported by
4232 Shawn Boyette <mdxi@collapsar.net> in
4233 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
4234
4235 2004-06-04 Miles Bader <miles@gnu.org>
4236
4237 * faces.el (display-supports-face-attributes-p): Function moved to
4238 C code. Previously only the tty-related portion of this function
4239 was done in C; however the previous attempt to do a halfway-proper
4240 job for non-tty displays in lisp didn't work properly because of
4241 funny conditions during Emacs startup.
4242 (face-differs-from-default-p): Simplify, now that
4243 display-supports-face-attributes-p works properly on all display
4244 types. Remove :stipple from comparison; it doesn't really work
4245 in emacs anyway.
4246
4247 2004-06-04 Miles Bader <miles@gnu.org>
4248
4249 * faces.el (face-differs-from-default-p): Use a different
4250 implementation, so we can really check whether FACE displays
4251 differently or not.
4252
4253 2004-06-04 Miles Bader <miles@gnu.org>
4254
4255 * faces.el (display-supports-face-attributes-p): Implement a
4256 `different from default' check for non-tty displays.
4257
4258 2004-06-03 David Kastrup <dak@gnu.org>
4259
4260 * woman.el (woman-mapcan): More concise code.
4261 (woman-topic-all-completions, woman-topic-all-completions-1)
4262 (woman-topic-all-completions-merge): Replace by a simpler and
4263 much faster implementation based on O(n log n) sort/merge instead
4264 of the old O(n^2) behavior.
4265
4266 2004-06-03 Miles Bader <miles@gnu.org>
4267
4268 * subr.el (read-number): Use canonical format for default in prompt.
4269
4270 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
4271 Add regexp for " [...]" style defaults.
4272
4273 2004-06-02 Romain Francoise <romain@orebokech.com>
4274
4275 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
4276 groups: if the user asks for a hidden buffer, open the
4277 corresponding filter group to expose it.
4278
4279 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
4280 `ibuffer-jump-to-buffer'.
4281 (ibuffer-jump-offer-only-visible-buffers): New user option.
4282
4283 2004-06-02 Juanma Barranquero <lektu@terra.es>
4284
4285 * faces.el (frame-update-faces): Add empty docstring so the one
4286 for `ignore' doesn't show through.
4287
4288 * subr.el (process-kill-without-query): Remove spurious "\n" on
4289 obsolescence string.
4290 (focus-frame, unfocus-frame): Add obsolescence declaration and
4291 empty docstring.
4292
4293 * international/mule.el (register-char-codings): Make alias for
4294 `ignore'. Move docstring to obsolescence info and remove redundancy.
4295
4296 2004-06-02 Kim F. Storm <storm@cua.dk>
4297
4298 * frame.el (blink-cursor-start): Turn cursor off initially so blink
4299 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
4300
4301 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
4302
4303 * comint.el (comint-replace-by-expanded-history-before-point):
4304 Obey `start' as the docstring says.
4305 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
4306 (comint-update-fence): Prevent font-lock from running unnecessarily.
4307 (comint-dynamic-list-completions): Use with-current-buffer.
4308
4309 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4310
4311 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
4312 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
4313 (bibtex-entry-update): Handle alternatives and optional fields.
4314 (bibtex-parse-entry): Bugfix, handle empty key.
4315
4316 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
4317
4318 * vc-arch.el (vc-arch-state): Don't assume the file exists.
4319
4320 2004-05-31 Lars Hansen <larsh@math.ku.dk>
4321
4322 * desktop.el (desktop-save): Don't save minor modes without a
4323 known mode initialization function.
4324
4325 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
4326
4327 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
4328
4329 * autorevert.el: Update `Commentary' section.
4330
4331 2004-05-30 Juanma Barranquero <lektu@terra.es>
4332
4333 * dos-fns.el (convert-standard-filename):
4334 * files.el (convert-standard-filename):
4335 * w32-fns.el (convert-standard-filename):
4336 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
4337
4338 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
4339
4340 Sync with Tramp.
4341
4342 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
4343 (tramp-let-maybe): Move to an earlier spot in the file.
4344 Patch by Andreas Schwab.
4345
4346 2004-05-30 Andreas Schwab <schwab@suse.de>
4347
4348 * dired.el (dired-get-filename): Don't use dired-re-dot.
4349
4350 2004-05-30 Richard M. Stallman <rms@gnu.org>
4351
4352 * files.el (find-file): Doc fix.
4353
4354 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
4355
4356 2004-05-30 Nick Roberts <nickrob@gnu.org>
4357
4358 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
4359 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
4360 modeline of the locals buffer.
4361 (gdb-goto-breakpoint): Handle gdbmi.
4362 (gdb-get-frame-number): Change for gdbmi.
4363
4364 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
4365
4366 * files.el (file-remote-p): Apply file name handler for operation
4367 `file-remote-p'. It isn' a property any longer.
4368 (file-relative-name): `fh' and `fd' get the required value via
4369 `find-file-name-handler' already.
4370
4371 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
4372 (top): Remove setting of `file-remote-p' property for
4373 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
4374
4375 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
4376
4377 Version 2.0.41 of Tramp released.
4378
4379 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
4380 Throw away if process has died.
4381 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
4382 (tramp-out-of-band-prompt-regexp): Rename to
4383 `tramp-process-alive-regexp', because its usage is widen.
4384 (tramp-actions-copy-out-of-band): Apply it.
4385 (tramp-actions-before-shell, tramp-multi-actions):
4386 Add `tramp-action-process-alive' action.
4387 (tramp-action-process-alive): New defun.
4388 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
4389 Add entry for `file-remote-p'.
4390 (tramp-handle-file-remote-p): New defun.
4391 (top): Remove setting of `file-remote-p'. Don't set
4392 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
4393
4394 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
4395 `file-remote-p'.
4396
4397 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
4398 counted for (last) line. [They should or they shouldn't? --Stef]
4399 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
4400
4401 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
4402
4403 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
4404 not really necessary but seems to keep the shell history smaller
4405 in some cases. It is no substitute for setting HISTFILE and
4406 HISTSIZE from tramp-open-connection-setup-interactive-shell,
4407 though. Suggested by Luc Teirlinck.
4408 (tramp-open-connection-setup-interactive-shell): Export variables
4409 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
4410 (tramp-set-process-query-on-exit-flag): New compat function.
4411 (tramp-open-connection-multi, tramp-open-connection-su)
4412 (tramp-open-connection-rsh, tramp-open-connection-telnet)
4413 (tramp-do-copy-or-rename-file-out-of-band): Use it.
4414 (tramp-let-maybe): New macro, let-binds a variable only if it
4415 isn't obsolete.
4416 (tramp-check-ls-commands, tramp-handle-expand-file-name)
4417 (tramp-handle-file-truename): Use it.
4418 (tramp-completion-file-name-regexp-unified): Avoid matching
4419 filenames starting with "/:" -- those are reserved for
4420 file-name-non-special.
4421
4422 * tramp-smb.el (tramp-smb-open-connection):
4423 Use tramp-set-process-query-on-exit-flag compat function.
4424
4425 2004-05-29 Richard M. Stallman <rms@gnu.org>
4426
4427 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
4428
4429 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
4430 (eval-last-sexp-print-value): Print char equivalent regardless
4431 of standard-output value.
4432
4433 * thumbs.el (thumbs-subst-char-in-string): Delete.
4434 (thumbs-thumbname): Use subst-char-in-string.
4435 (thumbs-resize-image): Use condition-case, not ignore-errors.
4436 (thumbs-kill-buffer): Likewise.
4437
4438 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
4439 (thumbs-mode): Make buffer read-only.
4440 (thumbs-make-thumb): Unconditionally accept an existing file.
4441 (thumbs-insert-thumb): Add thumb-image-file property to the image.
4442 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
4443 (thumbs-show-thumbs-list): Error if images not supported.
4444 (thumbs-save-current-image): Improve prompt string.
4445 (thumbs-mode-map): Define u, R, x.
4446 (thumbs-unmark): New command.
4447 (thumbs-emboss-image): Minor cleanup.
4448 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
4449 (thumbs-rename-images): New command.
4450 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
4451
4452 * thumbs.el (thumbs-current-image): New function.
4453 (thumbs-file-list, thumbs-file-alist): New functions.
4454 (thumbs-find-image): Delete arg L.
4455 Don't set up thumbs-fileL as buffer-local global var.
4456 (thumbs-find-image-at-point): Use thumbs-current-image.
4457 (thumbs-set-image-at-point-to-root-window): Likewise.
4458 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
4459 Record and warn about errors. Update thumbs-markedL for deletions.
4460 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
4461 (thumbs-redraw-buffer): Use thumbs-file-list.
4462 (thumbs-mark): Use thumbs-current-image.
4463 (thumbs-show-name): Use thumbs-current-image.
4464
4465 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
4466 and imenu--last-menubar-index-alist.
4467
4468 * subr.el (with-selected-window): Undo previous change.
4469
4470 2004-05-29 John Paul Wallington <jpw@gnu.org>
4471
4472 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
4473 (thumbs-mouse-find-image): New command.
4474 (thumbs-mode-map): Bind it to mouse-2.
4475 (thumbs-mode): Make mode-class special.
4476 (thumbs-view-image-mode): Likewise.
4477
4478 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
4479
4480 * flymake.el: New file.
4481
4482 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
4483
4484 * files.el (find-file-noselect-1): Do not bind
4485 `inhibit-read-only' to t during execution of
4486 `find-file-not-found-functions'.
4487
4488 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4489
4490 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
4491 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
4492
4493 2004-05-28 Juri Linkov <juri@jurta.org>
4494
4495 * simple.el (eval-expression-print-format): New fun.
4496
4497 * simple.el (eval-expression):
4498 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
4499 * emacs-lisp/edebug.el (edebug-compute-previous-result)
4500 (edebug-eval-expression): Print additionally the value returned by
4501 `eval-expression-print-format'.
4502
4503 * emacs-lisp/lisp.el (insert-pair-alist): New var.
4504 (insert-pair): Make arguments optional. Find character pair
4505 from `insert-pair-alist' according to the last input event.
4506 (insert-parentheses): Make arguments optional.
4507 (raise-sexp, delete-pair): New funs.
4508
4509 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
4510 (emacs-lisp-mode-map, lisp-interaction-mode-map):
4511 Bind C-M-q to `indent-pp-sexp'.
4512
4513 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
4514 `pp-to-string' modified to be able to format text with newlines.
4515 (pp-to-string): Move the buffer-formatting part of the code to
4516 `pp-buffer'. Call `pp-buffer'.
4517
4518 * info.el (Info-desktop-buffer-misc-data): Don't save information
4519 about virtual files.
4520 (Info-restore-desktop-buffer): Restore Info buffers in prepared
4521 buffers with names obtained from the desktop file instead of the
4522 default *info* buffer.
4523
4524 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4525
4526 * subr.el (with-selected-window): Only save/restore the selected window.
4527
4528 * progmodes/compile.el (compilation-error-regexp-alist):
4529 Use expand-file-name and data-directory.
4530
4531 * progmodes/grep.el (grep-tree): Rework previous fix.
4532
4533 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
4534 after the user marked text with the mouse.
4535
4536 * startup.el (command-line): Keep the first regexp of
4537 auto-save-file-name-transforms intact.
4538
4539 2004-05-28 Juanma Barranquero <lektu@terra.es>
4540
4541 * cus-edit.el (customize-face, customize-face-other-window)
4542 (custom-face-edit-delete): Make arguments match their use in
4543 docstring.
4544 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
4545 docstring.
4546
4547 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
4548 not `cvs-butlast'.
4549
4550 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
4551 `nbutlast' are in subr.el).
4552
4553 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
4554 (set-w32-system-coding-system): Doc fixes.
4555
4556 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
4557 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
4558 Make arguments match their use in docstring.
4559 (artist-draw-region-trim-line-endings)
4560 (artist-mouse-choose-operation): Fix typo in docstring.
4561 (artist-key-set-point-common): Doc fix.
4562
4563 2004-05-28 Simon Josefsson <jas@extundo.com>
4564
4565 * mail/smtpmail.el (smtpmail-open-stream):
4566 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
4567
4568 2004-05-26 Simon Josefsson <jas@extundo.com>
4569
4570 * starttls.el: Merge with my GNUTLS based starttls.el.
4571 (starttls-gnutls-program, starttls-use-gnutls)
4572 (starttls-extra-arguments, starttls-process-connection-type)
4573 (starttls-connect, starttls-failure, starttls-success): New variables.
4574 (starttls-program, starttls-extra-args): Doc fix.
4575 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
4576 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
4577 and pass on to corresponding *-gnutls function if it is set.
4578
4579 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
4580
4581 * autorevert.el (auto-revert-handler): Disable auto-reverting of
4582 remote files.
4583
4584 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
4585
4586 * files.el (file-name-non-special): There are more operations
4587 which need handling: `find-backup-file-name',
4588 `insert-file-contents', `verify-visited-file-modtime',
4589 `write-region'. Rename t value of method to `add'. Add new
4590 methods `quote' and `unquote-then-quote' to file-arg-indices.
4591
4592 2004-05-25 Juri Linkov <juri@jurta.org>
4593
4594 * info.el (Info-toc): Call Info-mode on intermediate buffer.
4595 (Info-index-nodes): Enclose code in condition-case to catch errors.
4596 (Info-index-node): Don't search all index nodes if request is only
4597 for the current node and file is not in the cache of index nodes.
4598 (Info-mode-map): Bind Info-copy-current-node-name to `w'
4599 for consistency with dired-copy-filename-as-kill.
4600 Bind `S' to Info-search-case-sensitively.
4601 (Info-copy-current-node-name): New arg. With zero prefix arg put
4602 the name inside a function call to `info'. Display copied text in
4603 the echo area.
4604
4605 2004-05-25 Sam Steingold <sds@gnu.org>
4606
4607 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
4608 strip the package prefix from the symbol name, if any.
4609 Make it the `find-tag-default-function' for `lisp-mode'.
4610
4611 2004-05-25 John Paul Wallington <jpw@gnu.org>
4612
4613 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
4614 instead of obsolete `process-kill-without-query'.
4615
4616 * textmodes/texinfmt.el (texinfo-indexvar-alist):
4617 Declare as variable, not constant.
4618
4619 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
4620
4621 * files.el (find-file-noselect-1): Fix bug introduced by
4622 Revision 1.694. As a side effect, `inhibit-read-only'
4623 is again, by default, t during execution of
4624 `find-file-not-found-functions'.
4625 (insert-directory): Check that lines were really inserted by
4626 the --dired switch, before erasing them.
4627
4628 2004-05-24 Nick Roberts <nickrob@gnu.org>
4629
4630 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
4631 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
4632 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
4633 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
4634 gud-minor-mode (gdbmi).
4635
4636 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
4637
4638 * net/browse-url.el (browse-url-interactive-arg): Enable user to
4639 explicitly select the text to be taken as URL.
4640
4641 2004-05-23 Juri Linkov <juri@jurta.org>
4642
4643 * info.el (Info-index-nodes): New var and fun.
4644 (Info-goto-index, Info-index, info-apropos)
4645 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
4646 (Info-index): Fix docstring. Store and restore Info-history-list.
4647 (Info-complete-nodes): New var.
4648 (Info-complete-menu-item): Use it.
4649 (Info-index-node): New fun.
4650 (Info-final-node, Info-forward-node, Info-backward-node)
4651 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
4652 Use Info-index-node.
4653 (Info-extract-menu-item, Info-extract-menu-counting): Set second
4654 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
4655 (Info-find-node-2): If a node with period in its name not found,
4656 try to find a node without the name part after period.
4657 (Info-select-node): Call Info-fontify-node only if
4658 Info-fontify-maximum-menu-size is not nil.
4659 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
4660 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
4661 Preserve Info-history-list.
4662 (Info-toc): Set Info-current-file.
4663 (Info-build-toc): Move point to the beginning of the buffer.
4664 Add main-file variable.
4665 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
4666 Use backslashed representation of the control character ^_.
4667
4668 * textmodes/texinfmt.el (texinfo-print-index): Print index line
4669 numbers in the new Texinfo 4.7 format.
4670
4671 * add-log.el (change-log-font-lock-keywords): Remove `:' from
4672 regexps for function and variable names.
4673
4674 * descr-text.el (describe-property-list): Add [show] button for
4675 `syntax-table' property with action to pp to a separate buffer.
4676 (describe-char): Replace search-forward by re-search-forward with
4677 whitespace regexp after "character:" to not fail in too narrow windows.
4678
4679 * simple.el (next-error-find-buffer): Add a rule to return
4680 next-error capable buffer if one window on the selected frame
4681 displays such buffer.
4682
4683 2004-05-23 Nick Roberts <nickrob@gnu.org>
4684
4685 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
4686 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
4687 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
4688 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
4689 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
4690 Handle new value for gud-minor-mode (gdbmi).
4691 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
4692 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
4693 Change from local to global gdb variable set.
4694 (gdb-ann3): Initialise above gdb variable set.
4695 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
4696 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
4697 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
4698 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
4699 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
4700 (gdb-info-locals-handler, gdb-invalidate-assembler)
4701 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
4702 set as global variables.
4703 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
4704 Handle gdbmi.
4705 (gdb-info-breakpoints-custom): Fix regexp.
4706 (def-gdb-var): Delete.
4707
4708 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
4709 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
4710 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
4711 a new mode. The file (gdb-mi.el) for this mode will be included
4712 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
4713 primary interface.
4714
4715 2004-05-23 Jesper Harder <harder@ifa.au.dk>
4716
4717 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
4718 interpreted as a directory.
4719
4720 2004-05-22 Richard M. Stallman <rms@gnu.org>
4721
4722 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
4723 as a close quote.
4724
4725 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
4726
4727 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
4728 Use assoc-string, not assoc-ignore-case.
4729
4730 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
4731
4732 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
4733 If moving back then fwd gets a defun that ends before point,
4734 try again moving fwd then back.
4735
4736 * files.el (file-name-non-special): Allow t in file-arg-indices
4737 to mean requote the return value. Use `identity' as an element
4738 rather than as the whole value.
4739
4740 * gs.el (gs-options): Add -dSAFER. Mark it risky.
4741
4742 2004-05-22 Juanma Barranquero <lektu@terra.es>
4743
4744 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
4745 `help-make-usage'.
4746 (help-highlight-arguments): Skip function name before searching
4747 for arguments.
4748
4749 2004-05-21 Juanma Barranquero <lektu@terra.es>
4750
4751 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
4752 Don't mention in the docstring these arguments meant for
4753 internal (recursive) use only.
4754 (allout-char-spec): Comment out (it's not implemented).
4755 (allout-old-expose-topic, allout-exposure): Fix docstring and add
4756 obsolescence declaration.
4757 (allout-flatten-exposed-to-buffer)
4758 (allout-indented-exposed-to-buffer): Fix typos in docstring.
4759 (my-mark-marker): Doc fix.
4760 (produce-allout-mode-map, allout-sibling-index)
4761 (allout-isearch-expose, allout-distinctive-bullet)
4762 (allout-open-topic, allout-reindent-body)
4763 (allout-rebullet-heading, allout-process-exposed)
4764 (allout-insert-listified, allout-latex-verb-quote)
4765 (allout-insert-latex-header, allout-insert-latex-trailer):
4766 Make arguments match their use in docstring.
4767 (allout-primary-bullet, allout-old-style-prefixes)
4768 (allout-inhibit-protection, allout-init, allout-mode)
4769 (allout-before-change-protect, allout-flag-region):
4770 Use "Emacs" instead of "emacs" in docstrings.
4771
4772 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
4773
4774 * international/characters.el: Modify syntax of more characters.
4775
4776 2004-05-21 Masatake YAMATO <jet@gyve.org>
4777
4778 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
4779 (etags-tags-completion-table): Show parsing progress.
4780
4781 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
4782
4783 * locate.el (locate-prompt-for-command): Shorten first line of
4784 docstring.
4785 (locate-mode): Expand docstring and include keymap summary.
4786
4787 * files.el (find-file-noselect-1): Limit the scope of the
4788 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
4789 is, by default, nil during the execution of
4790 `find-file-not-found-functions' and `find-file-hook'.
4791
4792 2004-05-20 Michael Mauger <mmaug@yahoo.com>
4793
4794 * facemenu.el (facemenu-color-name-equal): New function.
4795 (list-colors-display): Use it to compare colors instead of
4796 facemenu-color-equal.
4797
4798 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
4799
4800 * compare-w.el (compare-windows-face): Use min-colors instead of
4801 checking for tty or pc types.
4802
4803 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4804
4805 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
4806 (completion-setup-function): Use with-current-buffer.
4807 Properly save excursion. Simplify.
4808 Don't assume there is necessarily a `mouse-face' property somewhere.
4809
4810 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
4811
4812 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
4813
4814 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
4815 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
4816 Use with-current-buffer.
4817 (byte-goto-log-buffer): Delete.
4818 (byte-compile-log-file): Call compilation-forget-errors.
4819
4820 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
4821
4822 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
4823 output messages into the search result.
4824
4825 2004-05-19 Masatake YAMATO <jet@gyve.org>
4826
4827 * wid-edit.el (widget-radio-button-notify): Revert my last
4828 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
4829
4830 2004-05-19 Kenichi Handa <handa@m17n.org>
4831
4832 * international/characters.el: Fix syntax (open/close) of CJK chars.
4833
4834 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
4835
4836 * help-mode.el (help-go-back): Don't depend on position of back button.
4837
4838 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4839
4840 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
4841 files files don't contain an accidental additional /.
4842
4843 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
4844 in source buffer.
4845
4846 2004-05-18 Masatake YAMATO <jet@gyve.org>
4847
4848 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
4849 to widget-apply. :action method assumes 2 arguments, not 3.
4850
4851 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
4852
4853 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
4854 New constants.
4855 (hs-special-modes-alist): Add an f90-mode entry.
4856
4857 2004-05-17 Sam Steingold <sds@gnu.org>
4858
4859 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
4860 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
4861
4862 2004-05-16 Kim F. Storm <storm@cua.dk>
4863
4864 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
4865
4866 2004-05-15 John Wiegley <johnw@newartisans.com>
4867
4868 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
4869 (eshell-output-object-to-target): Improve output speed 20% by not
4870 calling `eshell-stringify' if something is already known to be a string.
4871
4872 2004-05-15 Alex Ott <ott@jet.msk.su>
4873
4874 * textmodes/ispell.el (ispell-local-dictionary-alist):
4875 Add windows-1251 to the choice of coding systems.
4876 (ispell-dictionary-alist-6): Add support for "russianw.aff",
4877 encoded in cp1251.
4878
4879 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
4880
4881 * progmodes/compile.el (compilation-warning-face)
4882 (compilation-info-face): Use min-colors.
4883
4884 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4885
4886 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
4887 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
4888 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
4889 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
4890 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
4891 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
4892 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
4893 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
4894 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
4895 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
4896 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
4897 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
4898 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
4899 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
4900
4901 2004-05-15 Kim F. Storm <storm@cua.dk>
4902
4903 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
4904 Use it to set triggered-p element of timer.
4905 (timer-event-handler): Set triggered-p element non-nil while running
4906 the timer function.
4907
4908 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4909
4910 * descr-text.el (describe-char-unicode-data)
4911 (describe-char-unicodedata-file): Re-enable the unicode code now that
4912 the licensing issues have been cleared in the unicode-4 license.
4913 (describe-text-properties-1): Remove unused `overlay' var.
4914 (describe-char): Remove unused var `buffer'.
4915
4916 2004-05-14 David Ponce <david@dponce.com>
4917
4918 * tree-widget.el: New file.
4919
4920 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
4921
4922 * language/european.el ("Brazilian Portuguese"): Add support for
4923 Brazilian Portuguese.
4924
4925 2004-05-13 John Wiegley <johnw@newartisans.com>
4926
4927 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
4928 `recentf-mode' if this variable has been customized to t.
4929
4930 * eshell/esh-test.el (eshell-test): Call the function
4931 `emacs-version' rather than trying to build a custom version string.
4932
4933 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4934
4935 * net/telnet.el (telnet-mode): Use define-derived-mode.
4936 Don't modify the global value of comint-prompt-regexp.
4937
4938 2004-05-13 John Paul Wallington <jpw@gnu.org>
4939
4940 * version.el (emacs-version): Check for `gtk' feature before
4941 `x-toolkit' feature.
4942
4943 2004-05-13 Juanma Barranquero <lektu@terra.es>
4944
4945 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
4946 arguments in the docstring, they're used only in recursive calls.
4947
4948 * help-fns.el (help-arg-highlighting-function)
4949 (help-argument-name): Delete.
4950 (help-default-arg-highlight): New function.
4951 (help-do-arg-highlighting): Use it.
4952
4953 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
4954
4955 * calendar/appt.el (appt-disp-window):
4956 Use `calendar-set-mode-line' for a centered mode-line.
4957
4958 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
4959
4960 * calendar/appt.el (appt-disp-window): Do not split window
4961 excessively when `split-height-threshold' is low.
4962
4963 2004-05-12 Nick Roberts <nickrob@gnu.org>
4964
4965 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
4966 kill-buffer-hook here and make it local.
4967 (gud-kill-buffer-hook): Use kill-process for a sure kill.
4968
4969 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
4970
4971 * progmodes/compile.el (compilation-set-window-height):
4972 Use save-excursion to protect against misplaced marker.
4973
4974 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4975
4976 * custom.el (defface): Document that type can have value gtk.
4977
4978 * faces.el (face-spec-set-match-display): Handle type gtk in display.
4979
4980 2004-05-12 Kenichi Handa <handa@m17n.org>
4981
4982 * descr-text.el: Require quail at comile time.
4983 (describe-char): If an input method is on and it supports the
4984 character, show how to input it.
4985
4986 * international/quail.el (quail-install-decode-map): Accept a
4987 char-table whose subtype is `quail-decode-map'.
4988 (quail-store-decode-map-key, quail-gen-decode-map1)
4989 (quail-gen-decode-map, quail-find-key1, quail-find-key)
4990 (quail-show-key): New functions.
4991
4992 2004-05-12 Juanma Barranquero <lektu@terra.es>
4993
4994 * generic.el (define-generic-mode): Remove redundant arglist info.
4995
4996 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
4997 Make arguments match their use in docstring.
4998 (help-arg-highlighting-function): New variable.
4999 (help-argument-name): Mention it in the docstring.
5000 (help-do-arg-highlight): Use it. Expand regexp to accept also
5001 ARG-xxx and xxx-ARG references.
5002
5003 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
5004
5005 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
5006 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
5007 and "mailto:addr1?to=addr2" equal.
5008
5009 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
5010
5011 * man.el (Man-getpage-in-background): Use shell-file-name
5012 and shell-command-switch variables instead of hard-coded values.
5013
5014 2004-05-11 Eli Zaretskii <eliz@gnu.org>
5015
5016 * iimage.el: New file.
5017
5018 2004-05-11 Juanma Barranquero <lektu@terra.es>
5019
5020 * custom.el (custom-initialize-default, defcustom):
5021 Fix typo in docstring.
5022
5023 * files.el (set-visited-file-name, file-expand-wildcards):
5024 Fix docstring.
5025
5026 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
5027
5028 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
5029
5030 * subr.el (eventp): Be more discriminating with integers.
5031
5032 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
5033
5034 * progmodes/compile.el (compile): Add universal prefix arg.
5035 (compilation-error-regexp-alist-alist): Add edg patterns.
5036
5037 2004-05-10 Sam Steingold <sds@gnu.org>
5038
5039 * textmodes/ispell.el (ispell-message):
5040 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
5041
5042 2004-05-10 Dave Love <fx@gnu.org>
5043
5044 * progmodes/python.el (help-buffer): Autoload when compiling.
5045 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
5046 (run-python): Prepend to any existing PYTHONPATH.
5047
5048 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
5049
5050 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
5051 for pending breakpoints.
5052
5053 2004-05-10 Richard M. Stallman <rms@gnu.org>
5054
5055 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
5056 directly without calling any functions in Rmail.
5057 (unrmail-unprune): Function deleted.
5058
5059 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
5060
5061 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
5062 C-c C-z binding.
5063
5064 2004-05-10 Kenichi Handa <handa@m17n.org>
5065
5066 * descr-text.el (describe-char): Fix previous change. Don't make
5067 a unibyte character to multibyte in the *Help* buffer.
5068
5069 2004-05-10 Miles Bader <miles@gnu.org>
5070
5071 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
5072 buffer an error if the debugger process is actually running.
5073
5074 2004-05-10 Juanma Barranquero <lektu@terra.es>
5075
5076 * help-fns.el (help-argument-name): Default to italic.
5077 (help-highlight-arguments): Return always (usage . doc), even when
5078 usage is nil.
5079
5080 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
5081 (define-ibuffer-filter): Add usage info.
5082 (define-ibuffer-op): Add usage info (but CL-style defaults for
5083 keyword args are not shown).
5084
5085 * subr.el (remove-overlays, read-passwd): Fix docstring.
5086 (start-process-shell-command): Fix docstring. Put usage info in a
5087 format usable by `describe-function'.
5088 (open-network-stream, open-network-stream-nowait)
5089 (open-network-stream-server): Fix docstring.
5090
5091 2004-05-09 Jason Rumney <jasonr@gnu.org>
5092
5093 * international/code-pages (cp932, cp936, cp949, c950): Remove.
5094 Only define cp125* if windows-125* is already defined.
5095
5096 * language/korean.el (cp949): Add alias.
5097
5098 * language/chinese.el (cp936, cp950): Add aliases.
5099
5100 * language/japanese.el (cp932): Add alias.
5101
5102 * term/w32-win.el: Require code-pages.
5103
5104 * international/mule-cmds.el (set-locale-environment):
5105 On MS-Windows use ansi code-page for default coding-systems.
5106 Set up paper sizes for Windows 3 letter languages.
5107
5108 * international/code-pages.el (cp932, cp936, cp949, cp950):
5109 Add aliases. Also add cp125* if not already defined.
5110
5111 2004-05-09 Juanma Barranquero <lektu@terra.es>
5112
5113 * help-fns.el (help-highlight-arguments): Don't try to highlight
5114 missing or autoloaded arglists. Accept structured arguments, like
5115 the first ones of `do' and `flet'.
5116
5117 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
5118 (cvs-get-marked): Remove redundant arglist info.
5119
5120 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
5121 Don't use CL-style default args.
5122
5123 2004-05-08 Andreas Schwab <schwab@suse.de>
5124
5125 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
5126
5127 * international/subst-ksc.el: Fix references to utf-translate-cjk
5128 into utf-translate-cjk-mode.
5129 * international/subst-big5.el: Likewise.
5130 * international/subst-gb2312.el: Likewise.
5131 * international/subst-jis.el: Likewise.
5132 * international/utf-16.el: Likewise.
5133 * international/utf-8.el: Likewise.
5134
5135 2004-05-08 John Wiegley <johnw@newartisans.com>
5136
5137 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
5138 "virtual buffers" (off by default), which makes it possible to
5139 switch to the "virtual" buffers of recently visited files. When a
5140 buffer name search fails, and this option is on, iswitchb will
5141 look at the list of recently visited files, and permit matching
5142 against those names. When the user hits RET on a match, it will
5143 revisit that file.
5144 (iswitchb-read-buffer): Add two optional arguments, which makes
5145 isearchb.el possible.
5146 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
5147 (iswitchb-next-match): Add support for virtual buffers.
5148
5149 * isearchb.el: This module extends iswitchb to provide "as you
5150 type" buffer selection.
5151
5152 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
5153 Ignore the read-only property when flyspell highlighting is on.
5154 Not ignoring it leads to a series of confusing errors.
5155 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
5156 but also make sure to call flyspell-incorrect-hook.
5157 (flyspell-maybe-correct-transposition): Perform transposition test
5158 by bit twiddling a string, rather than using a temp buffer.
5159 (flyspell-maybe-correct-doubling): Use a string rather than a temp
5160 buffer. This is also the original version of the code, which
5161 could not be checked in before due to a previous lack of
5162 assignment papers. This version has seen heavy usage on my system
5163 for several years now.
5164
5165 * calendar/cal-bahai.el: New file, which adds support for the
5166 Baha'i calendar to Emacs. This calendar is based on a solar year
5167 of 19 months of 19 days, with 4 intercalary days. Each year
5168 begins on March 21, with the calendar starting in 1844.
5169
5170 * calendar/cal-menu.el, calendar/calendar.el,
5171 calendar/diary-lib.el, calendar/holidays.el: Added support for
5172 using cal-bahai.el.
5173
5174 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
5175 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
5176 function can be used outside of eshell buffers.
5177 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
5178
5179 2004-05-08 Juanma Barranquero <lektu@terra.es>
5180
5181 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
5182 word constituent so FOO-ARG is not recognized as an arg.
5183 (help-highlight-arguments): Don't skip lists in mandatory arguments.
5184
5185 * simple.el (next-error): Fix typo in docstring.
5186 (open-line): Make argument names match their use in docstring.
5187 (split-line): Fix docstring.
5188
5189 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
5190 usable by `describe-function'.
5191 (gensym, gentemp, typep, ignore-errors): Make argument names match
5192 their use in docstring.
5193
5194 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
5195 argument to `help-setup-xref'.
5196
5197 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
5198
5199 Version 2.0.40 of Tramp released.
5200
5201 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
5202 Use symbol-function to invoke functions only known on some Emacs
5203 flavors. This avoids byte-compiler warnings. Reported by Kevin
5204 Scaldeferri <kevin@scaldeferri.com>.
5205 (tramp-do-copy-or-rename-file-via-buffer): Rename from
5206 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
5207 consistent with the other tramp-do-* functions.
5208 (tramp-do-copy-or-rename-file): Calls adjusted.
5209 (tramp-process-initial-commands): Avoid liveness check on shell --
5210 we know that it must be alive since we're opening a connection at
5211 this moment.
5212 (tramp-last-cmd): New internal variable.
5213 (tramp-process-echoes): New tunable.
5214 (tramp-send-command): Set tramp-last-cmd.
5215 (tramp-wait-for-output): Delete echo, if applicable.
5216 (tramp-read-passwd): Construct the key for the password cache in a
5217 way that works for multi methods, too.
5218 (tramp-bug): Add backup-directory-alist and
5219 bkup-backup-directory-info to bug reports, with Tramp counterparts.
5220
5221 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
5222
5223 * net/tramp*.el: Suppress byte-compiler warnings where possible.
5224
5225 * net/tramp.el (tramp-out-of-band-prompt-regexp)
5226 (tramp-actions-copy-out-of-band): New defcustoms.
5227 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
5228 used instead of a synchronous one. Allows password entering.
5229 (tramp-action-out-of-band): New defun.
5230 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
5231 Remove restriction with password from doc string.
5232 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
5233 `tramp-out-of-band-prompt-regexp',
5234 `tramp-actions-copy-out-of-band', `password-cache' and
5235 `password-cache-expiry'.
5236 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
5237 password caching.
5238 (tramp-touch): FILE can be a local file, too.
5239 (TODO): Remove items done.
5240 (tramp-handle-insert-directory): Properly quote file name also if
5241 not full-directory-p. Handle wildcard case. Reported by Andreas
5242 Schwab <schwab@suse.de>.
5243 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
5244 new file.
5245 (tramp-handle-file-local-copy, tramp-handle-write-region):
5246 The permissions of the temporary file are set if filename exists.
5247 Reported by Ted Stern <stern@cray.com>.
5248 (tramp-backup-directory-alist)
5249 (tramp-bkup-backup-directory-info): New defcustoms.
5250 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
5251 (tramp-handle-find-backup-file-name): New function.
5252 Implements Tramp's find-backup-file-name.
5253
5254 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
5255 for `find-backup-file-name'.
5256
5257 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
5258 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
5259
5260 2004-05-07 Lars Hansen <larsh@math.ku.dk>
5261
5262 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
5263
5264 2004-05-07 Juanma Barranquero <lektu@terra.es>
5265
5266 * subr.el (lambda): Add arglist description to docstring.
5267 (declare): Fix typo in docstring.
5268 (open-network-stream): Fix docstring.
5269 (process-kill-without-query): Fix docstring and add obsolescence info.
5270 (last, butlast, nbutlast): Make arguments match their use in docstring.
5271 (insert-buffer-substring-no-properties): Likewise.
5272 (insert-buffer-substring-as-yank): Likewise.
5273 (split-string): Fix docstring.
5274
5275 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5276 Make argument names match their use in docstring.
5277
5278 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
5279
5280 2004-05-06 Nick Roberts <nickrob@gnu.org>
5281
5282 * progmodes/gdb-ui.el: Improve/extend documentation strings.
5283 Fit first sentence on one line for apropos-command.
5284
5285 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5286
5287 Changes largely merged in from Dave Love's code.
5288 * progmodes/python.el: Doc fixes.
5289 (python-mode-map): Add python-complete-symbol.
5290 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
5291 (python-comment-indent, python-complete-symbol)
5292 (python-symbol-completions, python-partial-symbol)
5293 (python-try-complete): New.
5294 (python-indent-line): Remove optional arg. Use python-block-end-p.
5295 (python-check): Bind compilation-error-regexp-alist.
5296 (inferior-python-mode): Use rx. Move keybindings to top level.
5297 Set comint-input-filter.
5298 (python-preoutput-filter): Use rx.
5299 (python-input-filter): Re-introduce.
5300 (python-proc): Start new process if necessary.
5301 Check python-buffer non-nil.
5302 (view-return-to-alist): Defvar.
5303 (python-send-receive): New.
5304 (python-eldoc-function): Use it.
5305 (python-mode-running): Don't defvar.
5306 (python-mode): Set comment-indent-function.
5307 Maybe update hippie-expand-try-functions-list.
5308 (python-indentation-levels): Initialize differently.
5309 (python-block-end-p): New.
5310 (python-indent-line): Use it.
5311 (python-compilation-regexp-alist): Augment.
5312 (run-python): Import `emacs' module to Python rather than loading
5313 code directly. Set python-buffer differently.
5314 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
5315 Use python-proc.
5316 (python-send-command): Go to end of comint buffer.
5317 (python-load-file): Use python-proc, emacs.eimport.
5318 (python-describe-symbol): Simplify interactive form.
5319 Use emacs.help. Do use temp-buffer-show-hook.
5320 Call print-help-return-message.
5321 (hippie-exp): Require when compiling.
5322 (python-preoutput-continuation): Use rx.
5323
5324 * diff-mode.el (diff-make-unified): Fix regexp.
5325
5326 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
5327
5328 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
5329 filter groups from the buffer when rebuilding the Ibuffer buffer
5330 and `ibuffer-show-empty-filter-groups' is nil.
5331
5332 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5333
5334 * ps-print.el (ps-print-quote): Call ps-value-string.
5335 (ps-setup): Call ps-comment-string.
5336 (ps-value-string, ps-comment-string): New funs.
5337
5338 2004-05-06 Juanma Barranquero <lektu@terra.es>
5339
5340 * ehelp.el (electric-help-command-loop): Check whether the last
5341 character is visible, not (point-max).
5342
5343 * help-fns.el (help-argument-name): Default to bold; don't inherit
5344 from font-lock-variable-name-face.
5345 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
5346
5347 2004-05-05 Kenichi Handa <handa@m17n.org>
5348
5349 * descr-text.el (describe-char): Copy the character with text
5350 properties and overlays into the first line, and call
5351 describe-text-properties on it.
5352
5353 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
5354
5355 * iswitchb.el (iswitchb-global-map): Fix typo.
5356 Remove unwanted ###autoloads from source file.
5357
5358 2004-05-05 Lars Hansen <larsh@math.ku.dk>
5359
5360 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
5361 in run-hooks. Use substitute-command-keys in message.
5362 (wdired-abort-changes): Add message.
5363
5364 2004-05-03 Michael Mauger <mmaug@yahoo.com>
5365
5366 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
5367 (sql-emacs20-p): Remove.
5368 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
5369 (sql-builtin-face, sql-doc-face): Remove.
5370 (sql-mode-ansi-font-lock-keywords)
5371 (sql-mode-oracle-font-lock-keywords)
5372 (sql-mode-postgres-font-lock-keywords)
5373 (sql-mode-linter-font-lock-keywords)
5374 (sql-mode-ms-font-lock-keywords)
5375 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
5376 (sql-product-font-lock): Fix font-lock reset when font rules change.
5377 (sql-highlight-product): Remove incorrect font-lock reset logic.
5378
5379 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
5380
5381 * ses.el (ses-set-parameter): Fix typo.
5382
5383 2004-05-04 Kim F. Storm <storm@cua.dk>
5384
5385 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
5386 Must expand directory for completion to work; and don't mess with
5387 process-environment.
5388 (ido-read-file-name): If command has ido property, don't use ido
5389 if value is ignore, or read as directory if value is dir.
5390 Set ido ignore property for dired-do-rename command.
5391
5392 2004-05-04 Juanma Barranquero <lektu@terra.es>
5393
5394 * ehelp.el (electric-help-command-loop, electric-help-undefined)
5395 (electric-help-help): Check against unmapped commands.
5396
5397 * help-fns.el (help-argument-name): New face, inheriting from
5398 font-lock-variable-name-face, to highlight function arguments in
5399 `describe-function' and `describe-key'.
5400 (help-do-arg-highlight): Auxiliary function to highlight a given
5401 list of arguments in a string.
5402 (help-highlight-arguments): Highlight the function arguments and
5403 all uses of them in the docstring.
5404 (describe-function-1): Use it. Do docstring output via `insert',
5405 not 'princ', so text attributes are preserved.
5406
5407 * winner.el (winner-mode-map): Move `winner-undo' and
5408 `winner-redo' to C-c <left> and C-c <right>, respectively (the
5409 previous bindings conflict with `prev-buffer', `next-buffer').
5410
5411 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5412
5413 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
5414 (bibtex-entry-update): New command bound to C-c C-u.
5415 (bibtex-text-in-string): Fix regexp.
5416 (bibtex-assoc-of-regexp): Remove.
5417 (bibtex-progress-message): Fix docstring.
5418 (bibtex-inside-field): Use if.
5419 (bibtex-assoc-regexp): New function.
5420 (bibtex-format-entry): Make code more robust so that it formats
5421 also old entries.
5422 (bibtex-autokey-demangle-title): Merge with obsolete function
5423 bibtex-assoc-of-regexp.
5424 (bibtex-field-list): New function.
5425 (bibtex-entry): Use bibtex-field-list.
5426 (bibtex-parse-entry): Fix docstring.
5427 (bibtex-print-help-message): Use bibtex-field-list.
5428 (bibtex-make-field): Use bibtex-field-list.
5429 (bibtex-entry-index): Bugfix. Return crossref key if required.
5430 (bibtex-lessp): Fix docstring.
5431
5432 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
5433
5434 * select.el (xselect-convert-to-string): Move comment to intended line.
5435
5436 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5437
5438 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
5439 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
5440
5441 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5442
5443 * term/x-win.el (x-clipboard-yank): Don't exit on error from
5444 x-get-selection.
5445
5446 2004-05-03 Jason Rumney <jasonr@gnu.org>
5447
5448 * makefile.nt: Remove.
5449
5450 2004-05-03 Kim F. Storm <storm@cua.dk>
5451
5452 * emulation/cua-base.el (cua--update-indications): Fix last change.
5453 (cua-mode): Deactivate mark when cua-mode is enabled.
5454
5455 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
5456
5457 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
5458
5459 2004-05-03 Nick Roberts <nickrob@gnu.org>
5460
5461 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
5462 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
5463 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
5464 window over visible frames.
5465 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
5466
5467 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
5468
5469 * progmodes/compile.el (compilation-gcpro): New var.
5470 (compilation-fake-loc): Use it.
5471 (compilation-forget-errors): Reset it.
5472
5473 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
5474
5475 * diff-mode.el (diff-header-face, diff-file-header-face):
5476 Use min-colors.
5477
5478 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5479
5480 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
5481 (bibtex-clean-entry): Disentangle code.
5482 (bibtex-realign): New function.
5483 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
5484 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
5485 Remove undocumented optional arg called-by-convert-alien.
5486 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
5487 for sorting instead of bibtex-sort-buffer.
5488
5489 2004-05-02 Eli Zaretskii <eliz@gnu.org>
5490
5491 * progmodes/compile.el (compilation-start): In the
5492 no-async-subprocesses branch, call sit-for to give redisplay a
5493 chance to show the updated process status in the mode line, and
5494 fontify the buffer explicitly after the process exits.
5495
5496 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
5497
5498 * progmodes/python.el (python-compilation-line-number): Remove.
5499 (python-compilation-regexp-alist): Don't use it any more.
5500 (python-orig-start, python-input-filter): Remove.
5501 (inferior-python-mode): Don't set up comint-input-filter-functions.
5502 (python-send-region): Use compilation-fake-loc.
5503
5504 * progmodes/compile.el (compilation-messages-start): New var.
5505 (compilation-mode): Don't setup next-error-function here.
5506 (compilation-setup): Set it up here instead (for minor modes as well).
5507 Make compilation-messages-start buffer local.
5508 (compilation-next-error-function): Use it.
5509 (compilation-forget-errors): Set compilation-messages-start.
5510
5511 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
5512
5513 * ielm.el (ielm-prompt-read-only): Update docstring.
5514
5515 * comint.el (comint-prompt-read-only): Update docstring.
5516 (comint-update-fence, comint-kill-whole-line)
5517 (comint-kill-region): New functions.
5518
5519 * simple.el (kill-whole-line): Use "p" instead of "P" in
5520 interactive form.
5521
5522 2004-05-01 Juanma Barranquero <lektu@terra.es>
5523
5524 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
5525 format arglist so default values in CL-style argument lists are
5526 correctly shown.
5527
5528 2004-05-01 Jason Rumney <jasonr@gnu.org>
5529
5530 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
5531
5532 2004-05-01 Kenichi Handa <handa@m17n.org>
5533
5534 * international/titdic-cnv.el (miscdic-convert): Don't generate a
5535 quail file if it is up to date.
5536
5537 2004-04-30 Juri Linkov <juri@jurta.org>
5538
5539 * cus-edit.el (custom-mode-map):
5540 Add key binding `C-x C-s' to `Custom-save'.
5541
5542 * outline.el (outline-blank-line): New var.
5543 (outline-next-preface, outline-show-heading)
5544 (outline-end-of-subtree): Use it.
5545
5546 * dired-aux.el (dired-touch-initial): New fun.
5547 (dired-do-chxxx): Call it for op-symbol `touch'.
5548 (dired-diff): Use `dired-dwim-target-directory'
5549 if current dired buffer has no buffer mark.
5550
5551 * bindings.el (propertized-buffer-identification):
5552 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
5553 Add C-M-arrow keys for consistency.
5554
5555 * files.el (confirm-kill-emacs):
5556 Change group from top-level `emacs' to `convenience'.
5557
5558 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
5559 Push mark on the first call of successive command calls.
5560 (insert-pair): New fun created from `insert-parentheses' with
5561 `open' and `close' arguments added. Enclose active regions
5562 in paired characters. Compare adjacent characters syntax with
5563 inserted characters syntax before inserting a space.
5564 (insert-parentheses): Call `insert-pair' with ?\( ?\).
5565
5566 * delsel.el: Don't put `delete-selection' property
5567 on `insert-parentheses' symbol to take advantage of
5568 region handling in `insert-pair' function.
5569 Suggested by Stephan Stahl <stahl@eos.franken.de>.
5570
5571 2004-04-30 Kim F. Storm <storm@cua.dk>
5572
5573 * emulation/cua-base.el: Add support for changing cursor types;
5574 based on patch from Michael Mauger.
5575 (cua-normal-cursor-color, cua-read-only-cursor-color)
5576 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
5577 Customization cursor type and/or cursor color.
5578 (cua--update-indications): Handle cursor type changes.
5579 (cua-mode): Update cursor indications if enabled.
5580
5581 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
5582
5583 * mouse.el (mouse-drag-copy-region): New defcustom.
5584 (mouse-set-region, mouse-drag-region-1): Use it.
5585
5586 * simple.el (kill-ring-save): If region face background color is
5587 unspecified (if no highlighting), show extent of fully visible
5588 region even if transient-mark-mode is enabled.
5589
5590 * emulation/cua-base.el (cua--standard-movement-commands):
5591 Add cua-scroll-up and cua-scroll-down.
5592 (cua-scroll-up, cua-scroll-down): New commands.
5593 (cua--init-keymaps): Remap scroll-up and scroll-down.
5594
5595 * emulation/cua-rect.el (cua--convert-rectangle-as):
5596 New defmacro.
5597 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
5598 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
5599 New commands (suggested by Jordan Breeding).
5600
5601 2004-04-30 Juanma Barranquero <lektu@terra.es>
5602
5603 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
5604
5605 2004-04-30 Mario Lang <mlang@delysid.org>
5606
5607 * diff.el (diff-switches): Fix typo in docstring.
5608
5609 2004-04-30 Alex Schroeder <alex@gnu.org>
5610
5611 * xml.el (xml-debug-print-internal): Don't add newline and
5612 indentation to text nodes and write empty elements as empty tags
5613 instead of opening and closing tags.
5614 (xml-debug-print): Take optional indent-string argument.
5615 (xml-print): Alias for xml-debug-print.
5616
5617 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
5618
5619 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
5620 than duplicate call to `line-beginning-position'.
5621
5622 * progmodes/f90.el (f90-get-present-comment-type):
5623 Return whitespace, as well as comment chars, for consistent filling
5624 of comment blocks. Use `match-string-no-properties'.
5625 (f90-break-line): Trim trailing whitespace when filling comments.
5626
5627 2004-04-30 Dave Love <fx@gnu.org>
5628
5629 * calendar/diary-lib.el (diary-outlook-formats): New variable.
5630 (diary-from-outlook-internal, diary-from-outlook)
5631 (diary-from-outlook-gnus, diary-from-outlook-rmail):
5632 New functions to import diary entries from Outlook-format
5633 appointments in mail messages.
5634
5635 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5636
5637 * progmodes/python.el (python-send-command): New fun.
5638 (python-send-region, python-load-file): Use it.
5639
5640 * progmodes/compile.el (compilation-last-buffer): Add var alias.
5641
5642 * help-fns.el (help-C-file-name): Use new subr-name.
5643 Prepend `src/' to the file name.
5644 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
5645 (describe-function-1, describe-variable): Only find a C source file
5646 name if DOC is already loaded.
5647
5648 * help-mode.el (help-function-def, help-variable-def):
5649 Use the new find-function-search-for-symbol functionality.
5650 Allow FILE to be `C-source'.
5651
5652 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
5653 (find-function-C-source): New fun.
5654 (find-function-search-for-symbol): Use it.
5655
5656 2004-03-29 Michael Mauger <mmaug@yahoo.com>
5657
5658 * progmodes/sql.el (sql-product-alist): Rename variable
5659 `sql-product-support'. Add Postgres login parameters.
5660 (sql-set-product, sql-product-feature): Update with renamed variable.
5661 (sql-connect-postgres): Add username prompt.
5662 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
5663 Make patterns less product specific.
5664 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
5665 (sql-mode-abbrev-table): Modify initialization.
5666 (sql-builtin-face): Add variable.
5667 (sql-keywords-re): Add macro.
5668 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
5669 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
5670 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
5671 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
5672 (sql-mode-linter-font-lock-keywords)
5673 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
5674 (sql-mode-sybase-font-lock-keywords)
5675 (sql-mode-informix-font-lock-keywords)
5676 (sql-mode-interbase-font-lock-keywords)
5677 (sql-mode-ingres-font-lock-keywords)
5678 (sql-mode-solid-font-lock-keywords)
5679 (sql-mode-sqlite-font-lock-keywords)
5680 (sql-mode-db2-font-lock-keywords): Default to nil.
5681 (sql-product-font-lock): Always highlight ANSI keywords.
5682 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
5683 (sql-send-string): Add function.
5684
5685 2004-04-29 Dave Love <fx@gnu.org>
5686
5687 * progmodes/cfengine.el (cfengine-beginning-of-defun)
5688 (cfengine-end-of-defun): Ensure progress through buffer.
5689
5690 * info-look.el (cfengine-mode): Accept a terminal ().
5691
5692 2004-04-29 Juri Linkov <juri@jurta.org>
5693
5694 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
5695 instead of isearch-yank-word-or-char. Add new key bindings for
5696 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
5697 (isearch-del-char): New fun.
5698 (isearch-forward, isearch-edit-string): Update docstring.
5699 (isearch-yank-char): Doc fix.
5700 (isearch-other-meta-char): Restore point after scrolling.
5701
5702 * progmodes/compile.el (compilation-context-lines): Add nil option
5703 to disable compilation output window scrolling.
5704 (compilation-set-window): Use it.
5705
5706 * outline.el (outline-next-preface, outline-show-heading):
5707 Don't leave unhidden blank line before heading.
5708 (outline-end-of-subtree): Include last newline into subtree.
5709 (hide-entry): Leave point at beginning of heading instead of end.
5710 (outline-up-heading): Push mark for the first call of successive
5711 command calls.
5712
5713 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
5714
5715 * comint.el (comint-prompt-read-only): New variable.
5716 (comint-output-filter): Implement it.
5717
5718 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
5719 (ielm-prompt-internal): New variable.
5720 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
5721 (ielm-send-input): Delete unused variable `buf'.
5722 (ielm-eval-input): Use `ielm-prompt-internal'.
5723 (inferior-emacs-lisp-mode): Use new variables
5724 `comint-prompt-read-only' and `ielm-prompt-internal'.
5725 Get rid of obsolete variable `directory-sep-char'.
5726 (ielm): Use `zerop'.
5727
5728 2004-04-29 John Paul Wallington <jpw@gnu.org>
5729
5730 * thumbs.el (toplevel): Require cl at compile time.
5731 Remove conditional definitions of `ignore-errors' and `caddar'
5732 because they occur at run time.
5733
5734 2004-04-28 Nick Roberts <nickrob@gnu.org>
5735
5736 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
5737 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
5738 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
5739 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
5740
5741 * progmodes/gud.el (gud-common-init): Throw an error if program is
5742 already running under gdb.
5743
5744 2004-04-28 John Paul Wallington <jpw@gnu.org>
5745
5746 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
5747 (thumbs-show-image-num): Move assignment of
5748 `thumbs-current-image-filename' within scope of `i'.
5749 (thumbs-emboss-image): Don't use `evenp'.
5750
5751 2004-04-28 Richard M. Stallman <rms@gnu.org>
5752
5753 * progmodes/compile.el (compilation-context-lines): Default now 0.
5754
5755 2004-04-28 Juanma Barranquero <lektu@terra.es>
5756
5757 Use `time-less-p' from calendar/time-date.el instead of defining
5758 custom versions of it.
5759
5760 * pcomplete.el (pcomplete-time-less-p): Remove.
5761
5762 * thumbs.el (time-less-p): Remove.
5763
5764 * calendar/timeclock.el (timeclock-time-less-p): Remove.
5765 (timeclock-generate-report): Use `time-less-p'.
5766
5767 * emacs-lisp/autoload.el (autoload-before-p): Remove.
5768 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
5769
5770 2004-04-28 Masatake YAMATO <jet@gyve.org>
5771
5772 * subr.el (remove-overlays): Make arguments optional.
5773
5774 * wid-edit.el (widget-specify-button): Put evaporate to the
5775 overlay for sample.
5776 (widget-specify-sample): Put evaporate to the overlay for sample.
5777 (widget-specify-doc): Put evaporate to the overlay for documentation.
5778
5779 2004-04-27 Jesper Harder <harder@ifa.au.dk>
5780
5781 * info.el (info-apropos): Make it an index node. Align node names
5782 like makeinfo.
5783
5784 2004-04-27 Eli Zaretskii <eliz@gnu.org>
5785
5786 * net/browse-url.el (browse-url-netscape-sentinel)
5787 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
5788 (browse-url-epiphany-sentinel, browse-url-mosaic):
5789 Use browse-url-*-program instead of a literal program name.
5790
5791 2004-04-27 Kevin Ryde <user42@zip.com.au>
5792
5793 * eshell/em-alias.el:
5794 * eshell/em-dirs.el:
5795 * eshell/em-hist.el:
5796 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
5797 features when M-x customize-group loads modules before the main
5798 eshell.el.
5799
5800 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
5801
5802 * subr.el (momentary-string-display): Support EXIT-CHAR that is
5803 either a character representation of an event or an event
5804 description list.
5805
5806 * type-break.el: Capitalise Emacs and Lisp.
5807 (type-break-good-break-interval, type-break-demo-boring-stats)
5808 (type-break-terse-messages, type-break-file-name): New defcustoms.
5809 (type-break-post-command-hook)
5810 (type-break-warning-countdown-string): Quote variable names in doc.
5811 (type-break-interval-start, type-break-auto-save-file-name): New vars.
5812 (type-break-mode): Document type-break-good-break-interval and the
5813 "session" file. Schedule break according to the session file.
5814 Kill session file buffer on exit. Organise for save-some-buffers
5815 to always save the session file.
5816 (type-break-mode-line-message-mode, type-break-query-mode):
5817 Uppercase arguments.
5818 (type-break-file-time, type-break-file-keystroke-count, timep)
5819 (type-break-choose-file, type-break-get-previous-time)
5820 (type-break-get-previous-count): New defuns.
5821 (type-break): Avoid break querying after a completed break in the
5822 case where the query was initiated during user invocation of the
5823 break. Optional terse messages.
5824 Use type-break-good-break-interval if type-break-good-rest-interval is
5825 nil. File the break time.
5826 (type-break-schedule): New optional args for overriding the use of
5827 the current time.
5828 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
5829 after a break.
5830 (type-break-check): File the keystroke count.
5831 (type-break-do-query): Prevent a second query when the break is
5832 interrupted. Optional terse message.
5833 (type-break-keystroke-reset): Record the start of a typing interval.
5834 (type-break-demo-boring): Optional terse messages. Display word
5835 per minute and keystroke counts according to
5836 type-break-demo-boring-stats.
5837
5838 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
5839
5840 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
5841 directories, make sure they exist under archive-tmpdir.
5842
5843 2004-04-27 Juri Linkov <juri@jurta.org>
5844
5845 * help.el (view-emacs-news): With argument, display info for the
5846 selected version by finding it among different NEWS files, and
5847 narrowing the buffer to the selected version.
5848
5849 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
5850 same-window-buffer-names.
5851 (info): New arg `buffer'. Use it. Doc fix. Read file name for
5852 non-numeric prefix argument, append the number to the buffer name
5853 for numeric prefix argument.
5854 (info-other-window): Bind same-window-regexps to nil.
5855 (Info-reference-name): Rename to Info-point-loc.
5856 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
5857 and Info-find-index-name for stringy Info-point-loc.
5858 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
5859 without middle `.', but with final `.' and optional line number
5860 for it. Set Info-point-loc for index nodes.
5861 (Info-index): Remove middle `.' from index entry regexp.
5862 Modify line number regexp.
5863 (Info-index-next): Decrement line number.
5864 (info-apropos): Remove middle `.' from index entry regexp.
5865 Add optional line number regexp at the end. Add matched value
5866 for line number to the result list and insert it to the buffer.
5867 Replace match-string by match-string-no-properties.
5868 Reorder result list.
5869 (Info-fontify-node): Hide index line numbers.
5870 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
5871 empty matches.
5872 (Info-follow-reference): Use `str' instead of
5873 Info-following-node-name-re.
5874 (Info-toc): Use full file names. Set Info-current-node to "Top".
5875 (Info-fontify-node): Compare file names without directory name.
5876 (Info-try-follow-nearest-node): Don't set Info-reference-name.
5877 Set second arg of Info-extract-menu-node-name for index nodes.
5878 (info-xref-visited): Use magenta3 instead of magenta4.
5879 (Info-mode): Add info-apropos to docstring.
5880
5881 * log-view.el (log-view-diff): Replace interactive code "r"
5882 by a list to allow to call it even if region is not active.
5883
5884 * paren.el (show-paren-highlight-openparen): New var.
5885 (show-paren-function): Turn on openparen highlighting when
5886 matching forward if show-paren-highlight-openparen is non-nil.
5887
5888 * simple.el (kill-ring-save): Use blink-matching-delay instead of
5889 the constant value 1.
5890 (completions-common-part): Expand docstring.
5891
5892 * textmodes/picture.el (picture-mode-map): Add arrow keys.
5893
5894 2004-04-27 Kim F. Storm <storm@cua.dk>
5895
5896 * image.el (insert-sliced-image): Use line-height instead of
5897 line-spacing property on newline.
5898
5899 2004-04-26 Lars Hansen <larsh@math.ku.dk>
5900
5901 * desktop.el (desktop-buffer-misc-data-function): Rename to
5902 desktop-save-buffer and change docstring.
5903 (desktop-buffer-modes-to-save): Delete.
5904 (desktop-save-buffer-p): Use desktop-save-buffer instead of
5905 desktop-buffer-modes-to-save.
5906 (desktop-save): Rename desktop-buffer-misc-data-function to
5907 desktop-save-buffer and allow non-function value.
5908 (desktop-missing-file-warning): Correct docstring.
5909
5910 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
5911 to desktop-save-buffer.
5912
5913 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
5914 desktop-save-buffer.
5915
5916 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
5917
5918 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
5919
5920 2004-04-26 Eli Zaretskii <eliz@gnu.org>
5921
5922 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
5923
5924 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
5925
5926 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
5927 (ielm): Only go to the end of the buffer when starting a new process.
5928
5929 2004-04-25 Juanma Barranquero <lektu@terra.es>
5930
5931 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
5932 mode line. Bind `inhibit-read-only' to t before modifying
5933 properties of text in the buffer.
5934 (ielm): Force point to the end of buffer, even when running ielm
5935 from inside itself.
5936
5937 2004-04-25 Jesper Harder <harder@ifa.au.dk>
5938
5939 * info.el (info-apropos): Reset Info-complete-cache.
5940
5941 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
5942
5943 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5944 Also recognize severe Irix et al. messages.
5945 (compilation-normalize-filename, compile-abbreviate-directory):
5946 Delete functions.
5947 (compilation-get-file-structure): New function inherits
5948 functionality of the two preceding ones.
5949 (compilation-internal-error-properties, compilation-fake-loc):
5950 Use it so that different paths to the same file share the same
5951 markers. Also optimize finding adjacent marker slightly.
5952
5953 2004-04-25 Kim F. Storm <storm@cua.dk>
5954
5955 * image.el (insert-sliced-image): Add line-spacing t property
5956 to newlines separating image lines.
5957
5958 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
5959
5960 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
5961
5962 * ielm.el (ielm-prompt-read-only): New user option.
5963 (ielm-prompt): Expand docstring to describe new behavior.
5964 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
5965 mention it in the docstring.
5966
5967 2004-04-24 Andreas Schwab <schwab@suse.de>
5968
5969 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
5970
5971 * diff.el (diff): Set default-directory in diff buffer.
5972
5973 2004-04-24 Eli Zaretskii <eliz@gnu.org>
5974
5975 * mail/sendmail.el (mail-bury): Don't delete the frame where the
5976 mail was being composed if the terminal cannot display more than
5977 one frame; instead, switch to previous frame.
5978
5979 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
5980 (rmail-start-mail): Support rmail-mail-new-frame even on
5981 terminals that can display only one frame at a time.
5982
5983 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5984
5985 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
5986 (checkdoc-output-font-lock-keywords): Remove error regexp.
5987 (checkdoc-output-mode-map): Remove.
5988 (checkdoc-output-mode): Derive from compilation-mode.
5989 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
5990
5991 * dired.el (dired-mode-map): Add a menu entry for wdired.
5992
5993 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
5994 (rx-bracket, rx-check-any, rx-any): Clean up name space.
5995
5996 * wdired.el: (wdired-mode-map): Move init into declaration.
5997 Fix `return' binding.
5998 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
5999 Use force-mode-line-update.
6000 (wdired-get-filename): Use `unless'.
6001 (wdired-preprocess-files): Don't assume names have no \n and use / for
6002 dir separator.
6003 (wdired-normalize-filename): Use replace-regexp-in-string.
6004 (wdired-load-hooks): Remove.
6005 (wdired-mode-hooks): Rename to wdired-mode-hook.
6006
6007 * info-look.el: Add support for cfengine-mode.
6008 (info-lookup-setup-mode): Use dolist.
6009
6010 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
6011
6012 * wdired.el: New file.
6013
6014 2004-04-23 Juanma Barranquero <lektu@terra.es>
6015
6016 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
6017
6018 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
6019 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
6020 (pcomplete--help, pcomplete--here): Doc fixes.
6021
6022 2004-04-23 Andre Spiegel <spiegel@gnu.org>
6023
6024 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
6025 handles wrong-number-of-arguments in backend call.
6026
6027 * vc.el (vc-print-log): Likewise.
6028
6029 2004-04-20 Dave Love <fx@gnu.org>
6030
6031 * emacs-lisp/rx.el: Doc fixes.
6032 (rx-constituents): Add/extend many forms.
6033 (rx-check): Check form is a list.
6034 (bracket): Defvar.
6035 (rx-check-any, rx-any, rx-check-not): Modify.
6036 (rx-not): Simplify.
6037 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
6038 (rx-kleene): Use rx-trans-forms.
6039 (rx-quote-for-set): Delete.
6040 (rx): Allow multiple args.
6041
6042 2004-04-23 Kenichi Handa <handa@m17n.org>
6043
6044 * international/mule-util.el (char-displayable-p): Simplify by
6045 using internal-char-font.
6046
6047 2004-04-23 Juanma Barranquero <lektu@terra.es>
6048
6049 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
6050
6051 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
6052
6053 * diff-mode.el (diff-next-error): New fun.
6054 (diff-mode): Use it.
6055
6056 * simple.el (next-error): Change arg name.
6057 Add support for the documented C-u C-x ` usage.
6058
6059 * frame.el (special-display-popup-frame, next-multiframe-window)
6060 (previous-multiframe-window): Only consider frames on same display.
6061
6062 2004-04-22 Lars Hansen <larsh@math.ku.dk>
6063
6064 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
6065 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
6066
6067 2004-04-22 Kim F. Storm <storm@cua.dk>
6068
6069 * net/telnet.el (telnet): Add optional port arg.
6070
6071 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6072
6073 * progmodes/compile.el (compilation-mode-font-lock-keywords):
6074 Minor sanity check on the `hyperlink' slot.
6075
6076 * Makefile.in (recompile): Compile new files.
6077
6078 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
6079 Add byte-recompile-directory's optional `arg'.
6080
6081 * cvs-status.el (cvs-tree-use-charset): New var.
6082 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
6083 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
6084 (cvs-status-cvstrees): Use it.
6085
6086 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
6087 Make it a normal major mode.
6088 (checkdoc-buffer-label): Make sure the file name is meaningful.
6089 (checkdoc-output-to-error-buffer): Remove.
6090 (checkdoc-error, checkdoc-start-section): Rewrite.
6091
6092 * info.el (info-node, info-menu-5, info-xref, info-header-node)
6093 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
6094 (Info-title-4-face): Use new syntax.
6095 (info-xref-visited): Inherit from info-xref.
6096
6097 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
6098
6099 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
6100
6101 * simple.el (next-error-last-buffer, next-error-function):
6102 New variables for the next-error framework.
6103 (next-error-buffer-p): New function.
6104 (next-error-find-buffer): Generalize compilation-find-buffer.
6105 (next-error, previous-error, first-error, next-error-no-select)
6106 (previous-error-no-select): Move from compile.el.
6107
6108 * replace.el (occur-next-error, occur-1): Hook into the next-error
6109 framework.
6110
6111 * progmodes/compile.el (compilation-start):
6112 Set next-error-last-buffer so next-error knows where to jump.
6113 (compilation-setup): Set the buffer-local variable
6114 next-error-function to 'compilation-next-error-function.
6115 (compilation-buffer-p, compilation-buffer-internal-p): Use an
6116 alternate way to find if a buffer is a compilation buffer, for
6117 next-error convenience.
6118 (next-error-no-select, previous-error-no-select, next-error)
6119 (previous-error, first-error): Move to simple.el.
6120 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
6121 (compilation-last-buffer): Remove.
6122 (compilation-start, compilation-next-error, compilation-setup)
6123 (compilation-next-error-function, compilation-find-buffer):
6124 Remove compilation-last-buffer use.
6125
6126 2004-04-21 Juanma Barranquero <lektu@terra.es>
6127
6128 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
6129 (font-lock-warning-face): Fix spacing.
6130
6131 * makefile.w32-in (WINS): Add url/ directory.
6132
6133 2004-04-21 Lars Hansen <larsh@math.ku.dk>
6134
6135 * desktop.el (desktop-buffer-mode-handlers): New variable.
6136 Alist of major mode specific functions to restore a desktop buffer.
6137 (desktop-buffer-handlers): Make variable obsolete.
6138 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
6139 Catch errors signaled in handlers. Update buffer count.
6140 Evaluate desktop-buffer-point.
6141 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
6142 move to dired.el.
6143 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
6144 move to info.el.
6145 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
6146 move to mail/rmail.el.
6147 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
6148 to mh-e/mh-e.el.
6149 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
6150 On fail, print message (to message buffer) even if
6151 desktop-missing-file-warning is nil.
6152 (desktop-buffer-misc-data-function): New buffer local variable.
6153 Function returning major mode specific data.
6154 (desktop-buffer-misc-functions): Make variable obsolete.
6155 (desktop-save): Use desktop-buffer-misc-data-function.
6156 (desktop-buffer-dired-misc-data): Rename to
6157 dired-desktop-buffer-misc-data and move to dired.el.
6158 (desktop-buffer-info-misc-data): Rename to
6159 Info-desktop-buffer-misc-data and move to info.el.
6160 (desktop-read): Add message about number of buffers restored/failed.
6161
6162 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
6163 Add parameters. Pause to display error only when
6164 desktop-missing-file-warning is non-nil.
6165 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
6166 (dired-mode): Bind desktop-buffer-misc-data-function.
6167
6168 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
6169 Add Parameters.
6170 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
6171 (Info-mode): Bind desktop-buffer-misc-data-function.
6172
6173 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
6174 Add Parameters.
6175
6176 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
6177 Add Parameters.
6178
6179 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
6180
6181 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
6182 the case of letters in case-insensitive expansions when the
6183 abbrev is preceded by characters with letter syntax.
6184
6185 2004-04-21 Richard M. Stallman <rms@gnu.org>
6186
6187 * progmodes/cperl-mode.el (cperl-putback-char):
6188 Delete Emacs 18 definition.
6189
6190 * international/mule.el (ctext-post-read-conversion):
6191 Use assoc-string, not assoc-ignore-case.
6192
6193 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
6194
6195 * emacs-lisp/easymenu.el (easy-menu-add):
6196 Do call x-popup-menu, but only if it's defined.
6197
6198 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
6199
6200 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
6201 Handle multiple args: compile like progn.
6202
6203 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
6204 take all args as &rest arg.
6205
6206 * autoinsert.el (auto-insert-alist): Insert the user's name in
6207 copyright notice, rather than Free Software Foundation.
6208
6209 2004-04-21 Kenichi Handa <handa@m17n.org>
6210
6211 * descr-text.el (describe-char): Make it work on *Help* buffer.
6212
6213 2004-04-21 Kim F. Storm <storm@cua.dk>
6214
6215 * image.el (insert-image): Add optional SLICE arg.
6216 (insert-sliced-image): New defun.
6217
6218 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
6219
6220 * subr.el (read-number): Check whether `default' is nil.
6221
6222 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6223
6224 * progmodes/compile.el (compilation-error-properties):
6225 Split into two.
6226 (compilation-internal-error-properties): New one.
6227 (compilation-compat-error-properties): Use it. Fix the non-marker case.
6228
6229 2004-04-20 Richard M. Stallman <rms@gnu.org>
6230
6231 * window.el (split-window-save-restore-data):
6232 Don't update the data if OLD-INFO is nil.
6233
6234 * view.el (view-return-to-alist): Mark it permanent local.
6235
6236 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
6237
6238 * recentf.el (recentf-save-list): Catch and warn about errors.
6239
6240 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
6241 so "Buffers" won't be pure.
6242
6243 * help-mode.el (help-mode-finish): Set help-return-alist first
6244 thing, setting only the entry for the selected window.
6245
6246 * help-fns.el (describe-function-1): If many non-control non-meta
6247 keys run the command, don't list all of them.
6248
6249 2004-04-20 Juanma Barranquero <lektu@terra.es>
6250
6251 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
6252 arg. Copied from Andre Spiegel's patch of 2004-03-21.
6253
6254 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
6255
6256 2004-04-20 Kenichi Handa <handa@m17n.org>
6257
6258 * international/quail.el (quail-lookup-key): New optional arg
6259 NOT-RESET-INDICES.
6260 (quail-get-translations): Call quail-lookup-key with
6261 NOT-RESET-INDICES t.
6262 (quail-completion): Likewise.
6263 (quail-lookup-map-and-concat): Likewise.
6264
6265 2004-04-20 Kenichi Handa <handa@m17n.org>
6266
6267 * international/quail.el (quail-update-translation): Don't insert
6268 such an unsupported multibyte char in a unibyte buffer.
6269
6270 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
6271
6272 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
6273 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
6274 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
6275 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
6276 (gdb-frame-assembler-buffer): Improve behaviour with
6277 multiple frames.
6278 (gdb-display-buffer): Extend search to all visible frames.
6279
6280 2004-04-19 Eli Zaretskii <eliz@gnu.org>
6281
6282 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
6283 characters left after base64 decoding.
6284 (rmail-decode-region): Use -dos variety of `coding', to remove any
6285 ^M characters left after qp or base64 decoding.
6286
6287 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6288
6289 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
6290 messages.
6291
6292 2004-04-19 Stephen Eglen <stephen@gnu.org>
6293
6294 * add-log.el (add-change-log-entry): Update doc string to mention
6295 add-log-full-name and add-log-mailing-address.
6296
6297 2004-04-18 Juri Linkov <juri@jurta.org>
6298
6299 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
6300 (Info-find-node-2): Simplify error message.
6301 (Info-insert-dir): Use Info-following-node-name.
6302 (Info-goto-node): Remove *info-history* and *info-toc*.
6303 (Info-history): Create a node of the virtual history file.
6304 (Info-toc): Create a node of the virtual toc file.
6305 (Info-insert-toc): New arg `curr-file' for reference file names.
6306 (info-apropos): Remove redundant var binding for temp-file.
6307 (Info-index, Info-index-next, Info-mode): Doc fix.
6308 (Info-goto-emacs-command-node): Don't jump to *info* from
6309 non-*info* Info buffers.
6310 (Info-fontify-node): Don't show the file name of external
6311 references if `Info-hide-note-references' is `hide'. Don't hide
6312 newlines at the end of paragraphs.
6313
6314 * international/mule-diag.el (list-input-methods):
6315 Fix args to help-xref-button.
6316
6317 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
6318 to put into effect local variables from TUTORIAL files.
6319
6320 * textmodes/paragraphs.el (sentence-end) <function>: New fun
6321 with default value taken from the variable `sentence-end'.
6322 (sentence-end) <defcustom>: Set default to nil. Doc fix.
6323 Add nil const to :type.
6324 (sentence-end-without-period, sentence-end-double-space)
6325 (sentence-end-without-space): Doc fix.
6326
6327 * textmodes/paragraphs.el (forward-sentence):
6328 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
6329 (fill-delete-newlines):
6330 * progmodes/cc-cmds.el (c-beginning-of-statement):
6331 Use function `sentence-end' instead of variable `sentence-end'.
6332
6333 2004-04-18 Andreas Schwab <schwab@suse.de>
6334
6335 * progmodes/compile.el (compilation-start): Set window start to
6336 point-min if compilation-scroll-output is nil.
6337
6338 2004-04-18 John Wiegley <johnw@newartisans.com>
6339
6340 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
6341
6342 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
6343
6344 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
6345 (gdb-info-breakpoints-custom): Revert previous change.
6346 (gdb-view-assembler): Update assembler if necessary.
6347 (gdb-frame-handler): Parse correctly for gdb-current-frame.
6348 (gdb-display-source-buffer): Update properly when both source and
6349 assembler are visible.
6350
6351 2004-04-17 John Wiegley <johnw@newartisans.com>
6352
6353 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
6354 which limits the number of names shown in the minibuffer. Off by
6355 default.
6356 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
6357 up iswitchb for users with a multitude of open buffers by showing
6358 only the first and last N/2 buffers in the completion list (which
6359 is enough to aid C-s/C-r, and to know that more characters are
6360 needed to refine the completion list).
6361
6362 2004-04-17 Richard M. Stallman <rms@gnu.org>
6363
6364 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
6365 (file-truename): Expand all ~ constructs directly.
6366 (insert-directory): Delete any error msg output by the
6367 `insert-directory-program'.
6368
6369 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
6370 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
6371 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
6372 (allout-init): Use find-file-hook, not find-file-hooks.
6373 (allout-mode): Eliminate Emacs 18 support.
6374 Use write-contents-functions, not local-write-file-hooks.
6375
6376 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
6377
6378 * progmodes/compile.el (compilation-error-properties): Fix for
6379 adding messages when there are already markers for their file.
6380 (compilation-fake-loc): New function.
6381
6382 2004-04-16 Dave Love <fx@gnu.org>
6383
6384 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
6385 (python-load-file): Fix python-orig-start setting.
6386
6387 * progmodes/compile.el: Doc fixes.
6388 (compilation-error-regexp-alist-alist)
6389 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
6390 (compilation-assq): Wrap in eval-when-compile.
6391 (compilation-mode-font-lock-keywords): Don't use list*.
6392 (compilation-start): Avoid warning.
6393 (compilation-compat-error-properties)
6394 (compilation-directory-properties): Add keymap property.
6395 (compilation-parsing-end): Make it a marker for better compatibility.
6396
6397 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
6398
6399 2004-04-16 Mark A. Hershberger <mah@everybody.org>
6400
6401 * xml.el: Doc fixes.
6402 (xml-get-children): Only looks at sub-tags and ignore strings.
6403
6404 * xml.el (xml-parse-tag): Avoid overwriting node-name.
6405
6406 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6407
6408 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
6409
6410 2004-04-16 Andre Spiegel <spiegel@gnu.org>
6411
6412 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
6413
6414 * vc.el (vc-print-log): Likewise.
6415
6416 2004-04-16 Masatake YAMATO <jet@gyve.org>
6417
6418 * simple.el (completion-setup-function): Set an initial value
6419 to `element-common-end' before entering loop. Set a value
6420 to `element-common-end' at the end of loop.
6421 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
6422 (completions-common-part): Rename from completion-de-emphasis.
6423 (completions-first-difference): Rename from completion-emphasis.
6424 Suggested by RMS.
6425
6426 2004-04-16 Juanma Barranquero <lektu@terra.es>
6427
6428 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
6429 (bookmark-edit-annotation-mode): Add mode name.
6430
6431 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
6432
6433 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
6434 for nested conflict markers.
6435 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
6436
6437 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
6438
6439 * progmodes/gdb-ui.el (gdb-goto-info): New function.
6440
6441 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
6442
6443 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6444
6445 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
6446 Give a backtrace if requested.
6447
6448 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
6449
6450 * progmodes/python.el (python-mouse-2-command, python-RET-command):
6451 Remove unused functions.
6452 (python-orig-start-line, python-orig-file): Remove.
6453 (python-orig-start): New var.
6454 (python-input-filter, python-compilation-line-number)
6455 (python-send-region, python-load-file): Use it.
6456
6457 * info.el (info): Always jump to *info*.
6458
6459 * subr.el (posn-set-point): New function.
6460
6461 * mouse.el (mouse-set-point): Use it.
6462
6463 * progmodes/compile.el (compile-goto-error): Use it.
6464 (compilation-button-map): New keymap.
6465 (compilation-error-properties): Use it.
6466 (compilation-shell-minor-mode-map): Don't bind mouse-2.
6467
6468 * smerge-mode.el (smerge-popup-context-menu): Use it.
6469
6470 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
6471 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
6472 mouse and non-mouse case.
6473
6474 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
6475 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
6476
6477 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
6478 Make it work for non-mouse events.
6479
6480 * pcvs-info.el (cvs-status-map): Update binding name.
6481
6482 2004-04-14 Mark A. Hershberger <mah@everybody.org>
6483
6484 * xml.el (xml-maybe-do-ns): New function to handle namespace
6485 parsing of both attribute and element names.
6486 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
6487 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
6488 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
6489 (xml-parse-attlist): Make it do its own namespace parsing.
6490
6491 2004-04-14 Dave Love <fx@gnu.org>
6492
6493 * progmodes/python.el (run-python): Fix use of \n.
6494 (python-load-file): Remove `try' from Python fragment.
6495 (python-describe-symbol): Fix message.
6496
6497 * comint.el: Doc fixes.
6498 (comint-last-input-start, comint-last-input-end)
6499 (comint-last-output-start): Give them values.
6500 (comint-arguments): Avoid warning.
6501 (comint-skip-prompt): Use line-end-position.
6502 (comint-backward-matching-input): Rename arg to agree with doc.
6503 (comint-extract-string): Use syntax-ppss.
6504 (comint-dynamic-simple-complete): Delete useless list construction.
6505 (comint-redirect-subvert-readonly): New.
6506 (comint-redirect-preoutput-filter): Use it.
6507
6508 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
6509 Correctly handle negative arguments when calling hook functions.
6510
6511 2004-04-14 Jesper Harder <harder@ifa.au.dk>
6512
6513 * info.el (info-apropos): Don't clobber Info-history-list.
6514
6515 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
6516
6517 * progmodes/compile.el (compilation-setup):
6518 Localize overlay-arrow-position.
6519 (compilation-sentinel): Restructure code equivalently.
6520 (compilation-next-error): Find message on same line after point if
6521 not found before point.
6522 (compile-mouse-goto-error): Restore function so that compilation
6523 buffer need not be current and use compile-goto-error.
6524 (compile-goto-error): Restore function.
6525 (next-error): Set overlay-arrow-position.
6526 (compilation-forget-errors): Don't localize already local
6527 compilation-locs and remove FIXME about refontifying.
6528
6529 2004-04-14 Kim F. Storm <storm@cua.dk>
6530
6531 * startup.el (emacs-quick-startup): New defvar (set by -Q).
6532 (command-line): New option -Q. Like -q --no-site-file, but
6533 in addition it also disables menu-bar, tool-bar, scroll-bars,
6534 tool-tips, and the blinking cursor.
6535 (command-line-1): Skip startup screen if -Q.
6536 (fancy-splash-head): Use ":align-to center" prop to center splash image.
6537
6538 * emulation/cua-base.el (cua-read-only-cursor-color)
6539 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
6540
6541 2004-04-13 Dave Love <fx@gnu.org>
6542
6543 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
6544 (syntax): Don't require.
6545 (python) <defgroup>: Add :version.
6546 (python-quote-syntax): Re-written.
6547 (inferior-python-mode): Move stuff here from run-python and add
6548 some more.
6549 (python-preoutput-continuation, python-preoutput-result)
6550 (python-dotty-syntax-table): New.
6551 (python-describe-symbol): Use them.
6552 (run-python): Move stuff to inferior-python-mode. Modify code
6553 loaded into Python.
6554 (python-send-region): Use python-proc, python-send-string.
6555 (python-send-string): Send newlines too. Callers changed.
6556 (python-load-file): Re-written.
6557 (python-eldoc-function): New.
6558 (info-look): Don't require.
6559 (python-after-info-look): New. A modified version of former
6560 top-level code for use with eval-after-load.
6561 (python-maybe-jython, python-guess-indent): Use widened buffer.
6562 (python-fill-paragraph): Re-written.
6563 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
6564 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
6565
6566 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6567
6568 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
6569 Set compilation-error-regexp-alist earlier.
6570
6571 * progmodes/compile.el (compilation-minor-mode-map)
6572 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
6573 (compile-goto-error): Re-merge the mouse and non-mouse commands.
6574
6575 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6576
6577 * progmodes/compile.el (compile-goto-error): Select the buffer/window
6578 corresponding to the event.
6579
6580 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
6581
6582 * loadup.el: Add cygwin to system-type list, for unexec() support.
6583
6584 2004-04-12 John Paul Wallington <jpw@gnu.org>
6585
6586 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
6587 (ibuffer-restore-window-config-on-quit): New variable to replace
6588 `ibuffer-delete-window-on-quit'. Update all references.
6589 (ibuffer-prev-window-config): New variable.
6590 (ibuffer-quit): Restore previous window configuration instead of
6591 deleting window.
6592 (ibuffer): Save window configuration before showing Ibuffer buffer.
6593
6594 * help.el (describe-mode): Doc fix.
6595
6596 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6597
6598 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
6599 not to treat nil as a function.
6600
6601 * vc-arch.el (vc-arch-root): Be a bit more careful.
6602 (vc-arch-register): Save the buffer if we modified it.
6603 (vc-arch-delete-rej-if-obsolete): Save excursion.
6604 (vc-arch-find-file-hook): Use the simpler after-save-hook.
6605 (vc-arch-responsible-p, vc-arch-init-version): New functions.
6606
6607 * net/ldap.el (ldap-search): Use list*.
6608
6609 2004-04-12 Juri Linkov <juri@jurta.org>
6610
6611 * info.el (Info-follow-reference): Allow multiline reference name.
6612
6613 2004-04-11 Dave Love <fx@gnu.org>
6614
6615 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
6616
6617 * progmodes/python.el: New file.
6618
6619 2004-04-11 Andre Spiegel <spiegel@gnu.org>
6620
6621 * vc-hooks.el (vc-arg-list): Function removed.
6622 (vc-default-workfile-unchanged-p): Use condition-case to check for
6623 backward compatibility.
6624
6625 * vc.el (vc-print-log): Use condition-case to check for backward
6626 compatibility.
6627
6628 2004-04-11 Juri Linkov <juri@jurta.org>
6629
6630 * dired.el (dired-faces): New defgroup.
6631 (dired-header, dired-mark, dired-marked, dired-flagged)
6632 (dired-warning, dired-directory, dired-symlink, dired-ignored):
6633 New faces.
6634 (dired-header-face, dired-mark-face, dired-marked-face)
6635 (dired-flagged-face, dired-warning-face, dired-directory-face)
6636 (dired-symlink-face, dired-ignored-face): New face variables.
6637 (dired-font-lock-keywords): Use them instead of font-lock faces.
6638 Split the rule for dired marks into 3 separate rules: for marks,
6639 marked file names and flagged file names.
6640
6641 * help-mode.el (help-make-xrefs): Add a final newline to the
6642 *Help* buffer.
6643
6644 2004-04-11 John Paul Wallington <jpw@gnu.org>
6645
6646 * replace.el (occur-engine): Distinguish between one and several
6647 matches in the matches per buffer heading.
6648
6649 2004-04-11 Kim F. Storm <storm@cua.dk>
6650
6651 * ido.el (ido-confirm-unique-completion): New defcustom.
6652 (ido-complete): Use it.
6653 (ido-write-file): Set it to t unconditionally.
6654
6655 2004-04-10 Miles Bader <miles@gnu.org>
6656
6657 RCS keyword removal (only non-comment changes are enumerated here):
6658
6659 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
6660 (byte-compile-insert-header): Don't use `byte-compile-version'.
6661 * forms.el (forms-version): Variable removed.
6662 (forms-mode): Don't use `forms-version'.
6663 * recentf.el (recentf-version): Variable removed.
6664 * progmodes/delphi.el (delphi-version): Variable removed.
6665 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
6666
6667 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
6668
6669 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
6670
6671 2004-04-09 Jesper Harder <harder@ifa.au.dk>
6672
6673 * info.el (info-apropos): Improve menu item regexp.
6674
6675 2004-04-09 Simon Josefsson <jas@extundo.com>
6676
6677 * mail/smtpmail.el: Add comment, based on report by
6678 kdc@rcn.com (Kevin D. Clark).
6679
6680 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
6681
6682 * progmodes/compile.el (compilation-mode-font-lock-keywords):
6683 Redo one more thing that I didn't notice Daniel had undone.
6684
6685 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
6686
6687 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
6688 (gdb-goto-breakpoint, gdb-display-buffer)
6689 (gdb-display-source-buffer, gdb-view-source-function)
6690 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
6691 (gdb-source-info, gdb-frame-handler): Don't specify a window
6692 for display.
6693 (gdb-info-breakpoints-custom): Remove superfluous update of
6694 assembler buffer.
6695 (gdb-many-windows): Make settable outside gdb.
6696
6697 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
6698
6699 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
6700 Derive from fundamental-mode rather than text-mode.
6701
6702 2004-04-08 Juri Linkov <juri@jurta.org>
6703
6704 * info.el (Info-history): Doc fix.
6705 (Info-history-list): New var.
6706 (info-xref): Change magenta4 to blue, remove bold for dark and
6707 light backgrounds, change bold to underline for non-color classes.
6708 (info-xref-visited): New face.
6709 (Info-fontify-visited-nodes): New custom.
6710 (Info-hide-note-references): Add new value `hide'. Doc fix.
6711 (Info-reference-name): New var.
6712 (Info-selection-hook): New custom.
6713 (Info-edit-mode-hook): New var.
6714 (Info-find-file): New fun.
6715 (Info-find-node): Move part of code to Info-find-file.
6716 (Info-find-node-2): Add anchors to Info-history-list. Move point
6717 to the place with the reference name if name is defined.
6718 (Info-select-node): Add current node to Info-history-list.
6719 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
6720 (Info-search-whitespace-regexp): New custom.
6721 (Info-search-case-fold): New var.
6722 (Info-search): Add "case-sensitively" to the prompt.
6723 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
6724 (Info-search-case-sensitively, Info-search-next): New fun.
6725 (Info-up): Move point to the menu item of the current node.
6726 (Info-history): New fun. Add *info-history* to
6727 same-window-buffer-names.
6728 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
6729 (Info-insert-toc): New fun.
6730 (Info-build-toc): New fun.
6731 (Info-follow-reference): Add new arg `fork'. Doc fix.
6732 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
6733 with the same name prefer the reference closest to point.
6734 (Info-next-reference): Replace * by + in the *Note regexp.
6735 Add regexp for http:// and ftp://. Skip the *Note prefix.
6736 (Info-prev-reference): Replace * by + in the *Note regexp.
6737 Add regexp for http:// and ftp://. Skip the *Note prefix.
6738 (Info-follow-nearest-node): Add new arg `fork'.
6739 (Info-try-follow-nearest-node): Add new arg `fork'.
6740 Call browse-url for http:// and ftp:// references.
6741 Set Info-reference-name for index entries.
6742 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
6743 Info-search-next, Info-history, Info-toc, clone-buffer.
6744 (Info-menu-update): Replace * by + in the *Note regexp.
6745 (Info-mode): Add documentation for Info-history, Info-toc,
6746 Info-search-case-sensitively, Info-search-next, clone-buffer.
6747 (Info-fontify-menu-headers): Remove fun. Move code to
6748 Info-fontify-node.
6749 (Info-fontify-node): Add docstring. Add local vars
6750 fontify-visited-p and not-fontified-p. If not-fontified-p is t
6751 then fontify header line, titles, menu headers, http and ftp
6752 references, refill paragraphs. If not-fontified-p is t or
6753 fontify-visited-p is t then fontify cross references, menu items.
6754 Fontify menu headers. Fontify http and ftp references.
6755 Change regexp for cross references to require whitespace after *Note,
6756 add matching groups for file and node names. Remove hack for quote.
6757 Use display property for Info-hide-note-references=t. Use fifth
6758 or fourth match for help-echo. Display visited nodes in a
6759 different face. Unhide file names of external references.
6760 Unhide newlines. Display visited menu items in a different face.
6761
6762 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
6763
6764 * progmodes/compile.el: Require CL.
6765 (compilation-mode-font-lock-keywords): Re-install the "line as
6766 function" patch.
6767
6768 * help-fns.el (help-C-source-directory): New var.
6769 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
6770 (describe-function-1, describe-variable): Use them.
6771
6772 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
6773 to C source files specially.
6774
6775 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
6776
6777 * info.el (Info-hide-cookies-node): New function.
6778 (Info-select-node): Use it.
6779 (Info-display-images-node): Remove message with image file name.
6780
6781 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
6782
6783 * progmodes/compile.el (compilation-warning-face)
6784 (compilation-info-face, compilation-skip-threshold)
6785 (compilation-skip-visited, compilation-context-lines):
6786 Declare :version when added to Emacs.
6787 (compilation-error-regexp-alist-alist): Extend caml and irix.
6788 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
6789 (compilation-mode-font-lock-keywords): Temporarily undo line as
6790 function patch, which wasn't ready.
6791
6792 2004-04-07 Kenichi Handa <handa@m17n.org>
6793
6794 * international/latin1-disp.el (latin1-display-setup): Check each
6795 character is displayable or not instead of calling
6796 latin1-display-check-font.
6797
6798 2004-04-06 Kenichi Handa <handa@m17n.org>
6799
6800 * language/ethio-util.el (ethio-sera-being-called-by-w3):
6801 New variable.
6802 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
6803 instead of sera-being-called-by-w3.
6804 (ethio-fidel-to-sera-buffer): Likewise.
6805 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
6806 instead of sera-being-called-by-w3.
6807 (ethio-write-file): Likewise.
6808
6809 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6810
6811 * printing.el: Doc fix.
6812
6813 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
6814
6815 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
6816 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
6817 (gdb-setup-windows): Only use separate IO buffer if required.
6818
6819 2004-04-06 Kim F. Storm <storm@cua.dk>
6820
6821 * term.el (term-is-xemacs): Remove.
6822 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
6823 (term-window-width): New function.
6824 (term-mode, term-check-size): Use it.
6825 (term-mode): Disable overflow-newline-into-fringe in term buffer.
6826
6827 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
6828
6829 * cus-edit.el (custom-add-parent-links): Change unbound variable
6830 `symbol' to `name'.
6831
6832 2004-04-05 Jesper Harder <harder@ifa.au.dk>
6833 * info.el (info-apropos): New function.
6834 (Info-mode-menu): Add it.
6835 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
6836
6837 * help-mode.el (help-make-xrefs): Recognize aliased variable with
6838 inherited docstring.
6839
6840 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
6841
6842 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6843
6844 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
6845
6846 * progmodes/compile.el (font-lock): Don't require any more.
6847 (compilation-error-properties, compilation-start, compilation-sentinel)
6848 (compilation-filter, next-error): Use with-current-buffer.
6849 (compilation-skip-to-next-location, compilation-skip-threshold)
6850 (compilation-skip-visited): Move to silence the byte-compiler.
6851 (compilation-setup): Simplify.
6852 (compilation-next-error): Use line-(beginning|end)-position.
6853 Make sure `pt' is non-nil before using compilation-loop.
6854 (compile-goto-error): Add optional event arg. Use it.
6855 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
6856 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
6857 Update the binding for mouse-2.
6858 (first-error): Set compilation-current-error to nil rather than bob.
6859 (compilation-parsing-end, compilation-parse-errors-function)
6860 (compilation-error-list, compilation-old-error-list):
6861 "New" compatibility variables.
6862 (compile-buffer-substring, compilation-compat-error-properties)
6863 (compilation-compat-parse-errors, compilation-forget-errors):
6864 New compatibility functions.
6865 (compilation-mode-font-lock-keywords): Use them.
6866
6867 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
6868
6869 * autorevert.el (auto-revert-handler): If point (or a window
6870 point) is at the end of the buffer, keep it there after
6871 reverting. This allows to tail a file.
6872 Mention this in the `Commentary'.
6873
6874 * format.el (format-write-file): Add optional argument CONFIRM
6875 and make it behave like the analogous argument to `write-file'.
6876
6877 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6878
6879 * progmodes/ebnf2ps.el: Doc fix.
6880 (ebnf-version): New version number (4.2).
6881 (ebnf-syntax): Customization and docstring fix.
6882 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
6883 Put autoloaded funs before first use.
6884 (ebnf-style-database): Add dtd entry.
6885 (ebnf-syntax-alist): Add dtd initialization.
6886 (ebnf-token-sequence): New fun.
6887 (ebnf-comment-table): Add new comment action character.
6888 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
6889
6890 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
6891 Type Definition for XML).
6892
6893 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
6894 * progmodes/ebnf-bnf.el (ebnf-sequence):
6895 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
6896 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
6897 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
6898 Code simplification: call ebnf-token-sequence.
6899
6900 2004-04-04 Eli Zaretskii <eliz@gnu.org>
6901
6902 * calendar/timeclock.el (timeclock-relative)
6903 (timeclock-get-project-function, timeclock-get-workday-function)
6904 (timeclock-query-out, timeclock-when-to-leave)
6905 (timeclock-when-to-leave-string, timeclock-log-data)
6906 (timeclock-generate-report, timeclock-in): Doc fixes.
6907
6908 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
6909
6910 * url/: New dir. Import the URL package from its repository.
6911
6912 2004-04-03 Andreas Schwab <schwab@suse.de>
6913
6914 * diff-mode.el (diff-mode): Fix missing quote.
6915
6916 2004-04-03 Juri Linkov <juri@jurta.org>
6917
6918 * descr-text.el (describe-property-list): Add `font-lock-face'.
6919
6920 * dired.el (dired-font-lock-keywords): Fix permission regexps.
6921
6922 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6923
6924 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
6925 Use utf-16le on little endian machines and utf-16be otherwise.
6926
6927 2004-04-02 David Kastrup <dak@gnu.org>
6928
6929 * net/browse-url.el (browse-url-generic): Use call-process
6930 instead of start-process to allow browsers that fork and detach.
6931
6932 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
6933
6934 * compile.el (compilation-current-error): New var.
6935 (compilation-setup, compile-mouse-goto-error)
6936 (compile-goto-error, next-error): Use it.
6937 (compilation-skip-to-next-location): Default to t, which gives
6938 contiguous skipping like old compile (where this was redundant).
6939 (compilation-next-error): Prevent previous-* commands from moving
6940 back to message at or just before point.
6941
6942 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
6943
6944 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
6945 (gdb-source-info): Don't display source at startup, if required.
6946 (gdb-show-main): New option.
6947 (gdba): Update documentation.
6948 (gdb-source): Cover case of auto-display output.
6949
6950 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
6951
6952 * autorevert.el: Delete obsolete autoload's and defvar's.
6953 (auto-revert-check-vc-info): New user option.
6954 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
6955 (auto-revert-handler-vc): Delete.
6956 (auto-revert-handler): Treat return value `fast' of
6957 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
6958
6959 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
6960 return `fast'.
6961
6962 * files.el (buffer-stale-function): Doc change.
6963
6964 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6965
6966 * printing.el: New tip on Tips section.
6967 (pr-version): New version number (6.7.4).
6968 (pr-shell-file-name): Initialization fix.
6969
6970 2004-03-31 Juri Linkov <juri@jurta.org>
6971
6972 * dired.el: Add autoload for `dired-do-touch'.
6973 (dired-touch-program): New var.
6974 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
6975 (dired-no-confirm): Add `touch' to docstring.
6976
6977 * dired-aux.el (dired-do-touch): New fun.
6978 (dired-do-chxxx): Add argument -t for touch operation.
6979
6980 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
6981 `dired-move-to-filename-regexp'.
6982
6983 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
6984
6985 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
6986
6987 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6988
6989 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
6990 and only if the buffer was modified.
6991
6992 2004-03-30 Kenichi Handa <handa@m17n.org>
6993
6994 * international/characters.el: Delete pairs for U+2308..U+230B.
6995
6996 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
6997
6998 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
6999 to detect the beginning of a level 2 or 3 annotation.
7000
7001 2004-03-29 Kenichi Handa <handa@m17n.org>
7002
7003 * international/ucs-tables.el (ucs-insert): Fix the error message.
7004
7005 2004-03-29 Kenichi Handa <handa@m17n.org>
7006
7007 * international/mule-util.el (char-displayable-p): Fix generation
7008 of XLFD file name.
7009
7010 * Makefile.in (setwins, setwins_almost): Change directory to $wd
7011 before finding directories by `find'.
7012
7013 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7014
7015 * subr.el (interactive-form): Delete. Now implemented in C.
7016
7017 * pcvs.el (cvs-parse-process): Workaround for Darwin.
7018
7019 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
7020 (vc-diff-label): New fun.
7021 (vc-diff-internal): Use it.
7022
7023 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
7024
7025 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7026
7027 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
7028
7029 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
7030 specify XML (EBNFX).
7031
7032 * progmodes/ebnf2ps.el: Doc fix.
7033 (ebnf-version): New version number (4.1).
7034 (ebnf-syntax): Adjust customization.
7035 (ebnf-style-database): Add ebnfx entry.
7036 (ebnf-syntax-alist): Add ebnfx initialization.
7037 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
7038
7039 * printing.el: Doc fix.
7040 (pr-version): New version number (6.7.3).
7041 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
7042 returns nil for mouse position. Reported by Drew Adams
7043 <drew.adams@oracle.com>.
7044 (pr-update-menus): Modify interactive declaration. Reported by Drew
7045 Adams <drew.adams@oracle.com>.
7046
7047 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
7048
7049 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
7050 (gud-gdba-marker-filter): Log the process input and output, if
7051 required. From Stefan Monnier.
7052 (gdb-debug-log, gdb-enable-debug-log): New variables.
7053 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
7054
7055 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7056
7057 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
7058 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
7059
7060 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
7061
7062 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
7063 Call vc-find-file-hook here instead of in auto-revert-buffers.
7064 (auto-revert-buffers): Delete call to vc-find-file-hook.
7065 (auto-revert-verbose, global-auto-revert-non-file-buffers)
7066 (global-auto-revert-mode, auto-revert-set-timer)
7067 (auto-revert-handler, auto-revert-buffers): Doc fixes.
7068
7069 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
7070
7071 * woman.el (woman-change-fonts): Rename local variable
7072 woman-font-alist to font-alist to avoid a compiler warning.
7073
7074 2004-03-27 Dave Love <fx@gnu.org>
7075
7076 * emacs-lisp/rx.el (rx): Doc fix.
7077 Fix copyright years.
7078
7079 * strokes.el (strokes-global-set-stroke-string): New function.
7080 (strokes-list-strokes): Cope with strings, not just commands.
7081 Set foreground colour of image.
7082 (strokes-global-set-stroke): Doc fix.
7083
7084 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
7085
7086 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
7087 Auto Revert mode.
7088 (Buffer-menu-files-only): New variable.
7089 (Buffer-menu-toggle-files-only): New function.
7090 (Buffer-menu-mode-map): Bind it to `T'.
7091 (Buffer-menu-mode): Mention `T' in docstring.
7092 Set buffer-stale-function.
7093 (list-buffers-noselect): Mark buffer non-modified and set
7094 Buffer-menu-files-only.
7095
7096 * dired.el (buffer-stale-function): Remove no longer needed defvar.
7097
7098 * autorevert.el (auto-revert-handler): Print revert message
7099 before, rather than after, reverting.
7100 (buffer-stale-function): Move to files.el.
7101
7102 * files.el (buffer-stale-function): Move here from autorevert.el.
7103
7104 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7105
7106 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
7107
7108 * calc/calc.el (calc-mode-map): Use mapc.
7109
7110 * apropos.el (apropos-mode): Don't autoload.
7111 (apropos-symbols-internal): New fun. Extracted from `apropos'.
7112 (apropos): Use it.
7113 (apropos-print): Add optional `text' argument.
7114 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
7115 Don't assume point-min == 1.
7116
7117 * bs.el (bs-buffer-list): Use buffer-local-value.
7118 (bs--set-toggle-to-show): Use with-current-buffer.
7119
7120 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
7121 New funs.
7122 (list-buffers-noselect): Use them. Adjust :align-to to new style.
7123
7124 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
7125
7126 * dabbrev.el (dabbrev-expand): Fix regexp construction.
7127 (dabbrev--find-expansion): Use pop.
7128 (dabbrev--search): Use match-string-no-properties.
7129
7130 * dired.el (dired-mode): Use run-mode-hooks.
7131 (dired-move-to-end-of-filename): Use match-string.
7132
7133 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
7134 is bound before using it.
7135 (ediff-verbose-p): Make it into a var since it's not constant.
7136
7137 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
7138
7139 * faces.el (read-face-font): Don't cons up unnecessarily.
7140 (header-line, tool-bar): Share common parts.
7141
7142 * files.el (file-relative-name): Use compare-strings.
7143
7144 * finder.el (finder-mode): Follow coding convention.
7145
7146 * subr.el (read-number): New function.
7147
7148 * ses.el (ses-read-number): Move to subr.el.
7149 (ses-set-header-row): Use read-number.
7150
7151 2004-03-26 Andre Spiegel <spiegel@gnu.org>
7152
7153 * vc-hooks.el (vc-arg-list): New function, which handles both
7154 compiled and uncompiled code.
7155 (vc-default-workfile-unchanged-p): Use it.
7156
7157 * vc.el (vc-print-log): Undo prev change, use new function
7158 vc-arg-list from vc-hooks.el.
7159
7160 2004-03-26 Masatake YAMATO <jet@gyve.org>
7161
7162 * simple.el (completion-setup-function): Emphasize the
7163 first uncommon characters in the completions; and de-emphasize
7164 the common prefix substrings.
7165 (completion-emphasis): New face.
7166 (completion-de-emphasis): New face.
7167
7168 2004-03-25 Juanma Barranquero <lektu@terra.es>
7169
7170 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
7171 Comment out (it's unused and unfinished code).
7172
7173 2004-03-25 Sam Steingold <sds@gnu.org>
7174
7175 * vc.el (vc-print-log): Fix a bug in the last patch:
7176 backend-function may be a byte-compiled object, not a lambda.
7177
7178 2004-03-25 Juri Linkov <juri@jurta.org>
7179
7180 * descr-text.el (describe-property-list): Add a button
7181 for `face' property that calls `describe-face'.
7182 Suggested by luis fernandes <elf@ee.ryerson.ca>
7183
7184 * international/mule.el (keyboard-coding-system):
7185 * kmacro.el (kmacro-call-macro): Fix docstring.
7186
7187 * dired.el: Fix comments.
7188
7189 * textmodes/fill.el (fill): Fix Info link.
7190
7191 * font-lock.el (fast-lock, lazy-lock):
7192 * jit-lock.el (jit-lock): Remove links to removed Support Modes
7193 Info node.
7194
7195 * eshell/eshell.el (eshell): Fix broken info-link.
7196
7197 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
7198 * eshell/em-banner.el (eshell-banner):
7199 * eshell/em-smart.el (eshell-smart):
7200 * eshell/esh-cmd.el (eshell-cmd):
7201 Comment out broken info-links to incomplete Info manual.
7202
7203 * info-xref.el: Fix commentary.
7204
7205 2004-03-25 Kevin Ryde <user42@zip.com.au>
7206
7207 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
7208 Remove spurious node duplicate suppression, doesn't work, not wanted.
7209 (info-xref-output): Take format style args, add "sit-for 0" to let
7210 user see the results as they progress.
7211 (info-xref-check-all-custom): New function.
7212
7213 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
7214
7215 * gdb-ui.el: Moved to progmodes.
7216
7217 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
7218
7219 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
7220
7221 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
7222
7223 * calendar/appt.el (appt-check): Remove superfluous progn.
7224 When finished with diary buffer: if it was not being displayed
7225 before, kill it; otherwise restore its original state.
7226 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
7227
7228 * calendar/calendar.el (calendar-set-mode-line): Use total
7229 available mode-line width, rather than frame-width.
7230
7231 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
7232 after mode change so effect not lost.
7233
7234 2004-03-23 Dave Love <fx@gnu.org>
7235
7236 * dired.el (dired) <defgroup>: Add link to manual.
7237 (dired-font-lock-keywords): Add highlighting on unusual permissions.
7238 (dired-revert): Use dolist.
7239 (dired-mode-map): Add U binding.
7240 (dired-mode): Add font-lock-beginning-of-syntax-function.
7241 (dired-garbage-files-regexp): Make it a defcustom.
7242
7243 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
7244
7245 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
7246 is equivalent to nil.
7247 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
7248 (vc-arch-mode-line-string): Accept `added' state.
7249 (vc-arch-state): Use inode-sigs if available.
7250 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
7251 Copy&delete existing id file if any. Fallback if uuidgen is absent.
7252 (vc-arch-tagline-re): New var.
7253 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
7254 New functions.
7255 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
7256 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
7257
7258 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
7259 (vc-file-not-found-hook): Use it.
7260
7261 * diff-mode.el (diff-default-read-only): Change default.
7262 (diff-mode-hook): Make it a defcustom. Add some options.
7263 (diff-mode-map): Bind diff-refine-hook.
7264 (diff-yank-handler): New var.
7265 (diff-yank-function): New fun.
7266 (diff-font-lock-keywords): Use them.
7267 (diff-end-of-file): Handle case where file-header looks like diff text.
7268 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
7269 (diff-file-kill): Delete a subsequent empty line, if applicable.
7270 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
7271 (diff-find-file-name): Use it.
7272 (diff-tell-file-name): New command.
7273 (diff-mode): Be careful with view-mode.
7274 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
7275 New functions, for use in diff-mode-hook.
7276 (diff-find-source-location): Catch "regex too large" errors.
7277 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
7278 (diff-refine-hunk): New command.
7279
7280 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
7281 (smerge-context-menu-map): Remove unused var.
7282 (smerge-keep-all): Preserve markers.
7283 (smerge-keep-n): New fun.
7284 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
7285 (smerge-keep-current, smerge-ediff): Use it.
7286 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
7287 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
7288 (smerge-resolve): Resolve trivial 3-part conflicts.
7289
7290 2004-03-23 Juri Linkov <juri@jurta.org>
7291
7292 * man.el (Man-width): New var.
7293 (Man-getpage-in-background): Use it.
7294 (Man-support-local-filenames): New var and fun.
7295 (Man-build-man-command): Don't add a second %s.
7296 (Man-fontify-manpage): Clean up message.
7297 (Man-mode): Set outline-regexp, outline-level,
7298 imenu-generic-expression.
7299
7300 * woman.el (woman-fill-frame): Doc fix.
7301 (woman-decode-region): Use window-width instead of frame-width.
7302
7303 * abbrevlist.el (list-one-abbrev-table):
7304 * descr-text.el (describe-char):
7305 * international/mule-diag.el (describe-current-coding-system):
7306 * international/quail.el (quail-insert-decode-map):
7307 Use window-width instead of frame-width.
7308
7309 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
7310 (jka-compr-mode-alist-additions): Add tbz.
7311 (jka-compr-write-region, jka-compr-insert-file-contents):
7312 Add message for undefined compress-program.
7313 (jka-compr-write-region): Remove redundant var bindings.
7314
7315 * dired-x.el (dired-guess-shell-alist-default): Add choices for
7316 extracting files into subdirectory. Add tbz and dz. Fix regexps.
7317 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
7318 (dired-man): Use dired-guess-shell-command.
7319 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
7320 Change default nil to t.
7321
7322 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
7323 (dired-compare-directories): Add default value for empty input.
7324
7325 * help-at-pt.el: Move suggestions for key bindings to Commentary.
7326
7327 * time.el (display-time-string-forms): Fix help-echo date format.
7328
7329 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
7330
7331 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
7332 (buffer-stale-function): New variable.
7333 (auto-revert-list-diff, auto-revert-dired-file-list)
7334 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
7335 (auto-revert-handler): Take over some functionality of deleted
7336 functions.
7337 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
7338
7339 * dired.el (dired-directory-changed-p): New fun, extracted from
7340 dired-internal-noselect.
7341 (dired-buffer-stale-p): New fun.
7342 (dired-internal-noselect): Use dired-directory-changed-p.
7343 Eliminate revert messages.
7344 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
7345
7346 2004-03-23 Kenichi Handa <handa@m17n.org>
7347
7348 * international/characters.el: Setup syntaxes for more parentheses
7349 Unicode characters.
7350
7351 * international/mule-cmds.el (select-safe-coding-system):
7352 Merge coding-system and auto-cs before comparing them.
7353
7354 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7355
7356 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
7357
7358 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
7359 normal-auto-fill-function and comment-indent-function.
7360 The default values now work just as well.
7361 Don't set font-lock-beginning-of-syntax-function since we already set
7362 syntax-begin-function.
7363 (lisp-outline-level): Put ;;;###autoload at same level as (.
7364 (prin1-char): Quote special chars.
7365
7366 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
7367 than with-no-warnings.
7368
7369 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
7370 if the source location can't be found.
7371 (edebug-compute-previous-result): Use prin1-char.
7372
7373 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
7374 (debug-ignored-errors): Add an entry.
7375
7376 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
7377 (byte-compile-file): Output warning when deleting a file.
7378
7379 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
7380 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
7381
7382 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
7383 (byte-compile-inline-expand): Use backquote.
7384 (byte-optimize-pure-func): Rename from byte-optimize-concat.
7385 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
7386
7387 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
7388
7389 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
7390
7391 2004-03-22 Juri Linkov <juri@jurta.org>
7392
7393 * finder.el (finder-known-keywords): Fix data, tex, unix.
7394
7395 * play/landmark.el: Fix keywords.
7396
7397 * language/ethio-util.el (ethio-find-file): Doc fix.
7398
7399 * emacs-lisp/warnings.el: Doc fix.
7400
7401 * textmodes/ispell.el (ispell-help): Doc fix.
7402
7403 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
7404
7405 * format.el (format-insert-file): Always return a list of two
7406 elements, like insert-file-contents does.
7407
7408 2004-03-21 Andre Spiegel <spiegel@gnu.org>
7409
7410 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
7411 and vc-BACKEND-diff.
7412 (vc-print-log): If the print-log implementation supports it, use
7413 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
7414 (vc-version-diff, vc-diff-internal): Doc fixes.
7415
7416 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
7417 implementation supports it, let diff output go to *vc*,
7418 not *vc-diff*, since this is an internal call.
7419
7420 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
7421
7422 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
7423
7424 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
7425
7426 2004-03-21 Dave Love <fx@gnu.org>
7427
7428 * progmodes/cfengine.el (cfengine-mode):
7429 Set parse-sexp-ignore-comments.
7430
7431 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
7432
7433 2004-03-21 Juanma Barranquero <lektu@terra.es>
7434
7435 * allout.el (allout-mode): Fix docstring.
7436
7437 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
7438
7439 * files.el (insert-directory): Fix bug if SWITCHES is a list.
7440
7441 * autorevert.el (auto-revert-interval): Make new value take
7442 effect immediately when set through Custom.
7443 (auto-revert-set-timer): Add interactive declaration.
7444
7445 2004-03-19 David Ponce <david@dponce.com>
7446
7447 * ruler-mode.el (ruler-mode-header-line-format-old):
7448 Don't `make-variable-buffer-local'.
7449 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
7450 (ruler-mode-header-line-format): Simply funcall the above.
7451 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
7452 to save/restore a previous header line format.
7453 (ruler-mode-space): Don't depend on a numeric WIDTH value.
7454 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
7455 fringes and margins width.
7456 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
7457
7458 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
7459
7460 * log-edit.el (log-edit-font-lock-keywords): Typo.
7461
7462 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
7463 (tex-send-tex-command): Rather than here.
7464 (tex-compilation-parse-errors): Simplify.
7465
7466 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
7467
7468 * time.el (display-time-string-forms): Add help-echo with date on time.
7469
7470 * composite.el (compose-region): Use restore-buffer-modified-p.
7471
7472 * disp-table.el (standard-display-8bit): Simplify.
7473
7474 * server.el (server-process-filter): Delete temp frame.
7475
7476 * add-log.el (add-change-log-entry): Simplify.
7477
7478 2004-03-19 Kim F. Storm <storm@cua.dk>
7479
7480 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
7481 (hexl-follow-line): Don't require 'fringe.
7482
7483 * progmodes/compile.el (compilation-start): Always set
7484 compilation-last-buffer and return it.
7485
7486 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
7487
7488 * simple.el (clone-buffer): Doc fix.
7489
7490 2004-03-18 Juanma Barranquero <lektu@terra.es>
7491
7492 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
7493
7494 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
7495
7496 * log-edit.el (log-edit-font-lock-keywords): New var.
7497 (log-edit-mode): Use it.
7498
7499 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
7500
7501 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
7502 properly for watching in speedbar.
7503
7504 2004-03-17 Masatake YAMATO <jet@gyve.org>
7505
7506 * smerge-mode.el (smerge-popup-context-menu):
7507 Put `unwind-protect' around `overlay-put' and `popup-menu'.
7508
7509 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
7510
7511 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
7512 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
7513 Take sealed revisions into account.
7514 (vc-arch-checkin): Extract a summary line from the message.
7515
7516 2004-03-16 Masatake YAMATO <jet@gyve.org>
7517
7518 * register.el (register): Provide `register' feature.
7519
7520 2004-03-15 Masatake YAMATO <jet@gyve.org>
7521
7522 Added context menu support in smerge mode.
7523 Most of the part is written by Stefan Monnier.
7524
7525 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
7526 New keymap and menu.
7527 (smerge-text-properties): New function.
7528 (smerge-remove-props): New function.
7529 (smerge-popup-context-menu): New function.
7530 (smerge-resolve): Call `smerge-remove-props'.
7531 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
7532 (smerge-keep-current): Ditto.
7533 (smerge-kill-current): New function.
7534 (smerge-match-conflict): Put text properties.
7535 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
7536
7537 2004-03-15 David Ponce <david@dponce.com>
7538
7539 * ruler-mode.el: (ruler-mode-left-fringe-cols)
7540 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
7541 (ruler-mode-right-scroll-bar-cols): Remove.
7542 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
7543 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
7544 Use fringe-columns and scroll-bar-columns.
7545
7546 2004-03-15 Masatake YAMATO <jet@gyve.org>
7547
7548 * hl-line.el (hl-line-range-function): New variable.
7549 (hl-line-move): New function.
7550 (global-hl-line-highlight): Use `hl-line-move'.
7551 (hl-line-highlight): Ditto.
7552
7553 * scroll-bar.el (scroll-bar-columns):
7554 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
7555
7556 * ruler-mode.el (top-level): Require scroll-bar and fringe.
7557 (ruler-mode-left-fringe-cols)
7558 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
7559 (ruler-mode-right-scroll-bar-cols)
7560 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
7561 (ruler-mode-ruler-function): New variable.
7562 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
7563 if the value for `ruler-mode-ruler-function'is given.
7564
7565 * hexl.el (hexl-mode-hook): Make the hook customizable.
7566 (hexl-address-area, hexl-ascii-area): New customize variables.
7567 (hexlify-buffer): Put font-lock-faces on the address area and
7568 the ascii area.
7569 (hexl-activate-ruler): New function.
7570 (hexl-follow-line): New function.
7571 (hexl-highlight-line-range): New function.
7572 (hexl-mode-ruler): New function.
7573
7574 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
7575
7576 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
7577 (vc-default-find-file-hook): New fun.
7578 (vc-find-file-hook): Call new find-file-hook operation.
7579
7580 * vc-arch.el: New file.
7581
7582 2004-03-12 Jesper Harder <harder@ifa.au.dk>
7583
7584 * info-look.el (info-lookup): Reuse an existing Info window.
7585
7586 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
7587
7588 * woman.el (woman-preserve-ascii): Default value changed to t and
7589 doc string revised.
7590
7591 2004-03-12 Richard M. Stallman <rms@gnu.org>
7592
7593 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
7594 Fix minor bug.
7595
7596 * replace.el (occur-engine): Change message for count of matches.
7597
7598 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
7599 For strings, do compare text properties.
7600
7601 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
7602
7603 * progmodes/compile.el (compile-auto-highlight)
7604 (compilation-error-list, compilation-old-error-list)
7605 (compilation-parse-errors-function, compilation-parsing-end)
7606 (compilation-error-message, compilation-directory-stack)
7607 (compilation-enter-directory-regexp-alist)
7608 (compilation-leave-directory-regexp-alist)
7609 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
7610 (compilation-current-file, compilation-regexps): Remove vars.
7611
7612 (compile-error-at-point, compilation-error-filedata)
7613 (compilation-error-filedata-file-name, compile-reinitialize-errors)
7614 (compilation-next-error-locus, compilation-forget-errors)
7615 (count-regexp-groupings, compilation-parse-errors)
7616 (compile-collect-regexps, compile-buffer-substring): Remove funs.
7617
7618 (compile-internal): Make obsolete.
7619
7620 (compilation-first-column, compilation-error)
7621 (compilation-directory-matcher, compilation-page-delimiter)
7622 (compilation-mode-font-lock-keywords, compilation-debug)
7623 (compilation-error-face, compilation-warning-face)
7624 (compilation-info-face, compilation-line-face)
7625 (compilation-column-face, compilation-enter-directory-face)
7626 (compilation-leave-directory-face, compilation-skip-threshold)
7627 (compilation-skip-visited, compilation-context-lines): New vars.
7628
7629 (compilation-warning-face, compilation-info-face)
7630 (compilation-message-face): New faces.
7631
7632 (compilation-error-regexp-alist-alist): New constant.
7633
7634 (compilation-face, compilation-directory-properties)
7635 (compilation-assq, compilation-error-properties, compilation-start)
7636 (define-compilation-mode, compilation-loop)
7637 (compilation-set-window): New functions.
7638
7639 (compile): Additional argument for interactive compiles like TeX.
7640
7641 * progmodes/grep.el (kill-grep): Move here from compile.el
7642 (grep-error, grep-hit-face, grep-error-face)
7643 (grep-mode-font-lock-keywords): New variables.
7644 (grep-regexp-alist): Simplify regexp and add `binary' case.
7645 (grep-mode): New mode.
7646 (grep-process-setup): Simplify.
7647
7648 2004-03-11 Jason Rumney <jasonr@gnu.org>
7649
7650 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
7651 letters on DOS/Windows.
7652
7653 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
7654
7655 * server.el (server-name): New var.
7656 (server-socket-dir): New var to replace server-socket-name.
7657 (server-start): Use them.
7658
7659 2004-03-11 Simon Josefsson <jas@extundo.com>
7660
7661 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
7662 died to avoid infloop. Reported by Jonathan Glauner
7663 <jglauner@sbum.org>.
7664
7665 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7666
7667 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
7668 (smerge-mode-menu): Use it to deactivate menu entries.
7669 (smerge-keep-current): New fun.
7670 (smerge-keep-current): Use it.
7671
7672 2004-03-10 John Paul Wallington <jpw@gnu.org>
7673
7674 * foldout.el (foldout-fold-list, foldout-modeline-string):
7675 Declare them as variables, not constants.
7676
7677 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7678
7679 * ps-print.el: Modification to print *Messages* buffer.
7680 (ps-print-version): New version 6.6.4.
7681 (ps-message-log-max): New fun.
7682 (ps-spool-without-faces, ps-spool-with-faces)
7683 (ps-count-lines-preprint): Code fix.
7684
7685 * printing.el: New tips in Tips section.
7686
7687 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7688
7689 * delim-col.el: Doc fix.
7690
7691 * printing.el: Doc fix. New doc section (Tips).
7692
7693 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
7694
7695 * type-break.el (type-break-emacs-variant): Remove.
7696 (type-break-run-at-time, type-break-cancel-function-timers):
7697 Use fboundp rather than version name and number.
7698
7699 2004-03-09 Masatake YAMATO <jet@gyve.org>
7700
7701 * hexl.el (hexl-mode): Use `make-local-variable' instead of
7702 `make-variable-buffer-local'.
7703
7704 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
7705
7706 * find-dired.el (find-dired): Call `shell-command' instead of
7707 `start-process-shell-command'. By this, Tramp takes over
7708 handling of remote directories.
7709
7710 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
7711
7712 * newcomment.el (comment-use-global-state): New var.
7713 (comment-search-forward): Use it.
7714
7715 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
7716
7717 * cus-edit.el (fill) <defgroup>: Move to fill.el.
7718
7719 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
7720 (enable-kinsoku): Make it a defcustom.
7721 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
7722 paragraph to same-comment-start-marker.
7723
7724 2004-03-07 Dave Love <fx@gnu.org>
7725
7726 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
7727 (browse-url-mail): Use it.
7728
7729 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
7730 (rfc2368-unhexify-string): Use replace-regexp-in-string.
7731
7732 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
7733
7734 * woman.el (woman-man.conf-path): Doc fix.
7735 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
7736
7737 2004-03-07 Eli Zaretskii <eliz@gnu.org>
7738
7739 * sort.el (sort-columns): Remove ms-dos from the list of systems
7740 where the external `sort' command is not used.
7741
7742 2004-03-07 Kim F. Storm <storm@cua.dk>
7743
7744 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
7745 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
7746 from overlay-arrow-variable-list.
7747 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
7748
7749 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
7750
7751 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
7752 overlay arrow string properly for the assembler buffer.
7753
7754 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
7755
7756 * mail/sendmail.el (mail-mode): Fix last change.
7757
7758 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
7759
7760 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
7761 for the assembler buffer.
7762 (gdb-assembler-custom): Position the overlay arrow.
7763 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
7764
7765 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
7766
7767 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
7768
7769 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
7770 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
7771
7772 * mail/sendmail.el (mail-mode): Set comment-start-skip.
7773
7774 * newcomment.el (uncomment-region): Allow non-terminated comment.
7775 (comment-normalize-vars): Check the user-specified comstart marker.
7776
7777 2004-03-04 Jesper Harder <harder@ifa.au.dk>
7778
7779 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
7780 Otherwise, do use it if the region only contains font-lock text
7781 properties.
7782
7783 2004-03-04 Masatake YAMATO <jet@gyve.org>
7784
7785 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
7786 as the callback function for eldoc.
7787 (hexl-print-current-point-info): New function.
7788 (hexl-current-address): Print the address in both decimal
7789 and hexadecimal format.
7790
7791 2004-03-04 Richard M. Stallman <rms@gnu.org>
7792
7793 * mail/rmail.el (rmail-convert-to-babyl-format):
7794 Specify t for UNIBYTE when calling mail-unquote-printable-region.
7795
7796 * mail/mail-utils.el (mail-unquote-printable-region):
7797 New arg UNIBYTE.
7798
7799 * startup.el (command-switch-alist): Doc fix.
7800
7801 * simple.el (undo): Temporarily set this-command to `undo-start',
7802 then set it to `undo' once undo-start returns without error.
7803
7804 * simple.el (minibuffer-history-sexp-flag): Doc fix.
7805
7806 * simple.el (kill-line): Don't disregard trailing whitespace
7807 in eol condition, if show-trailing-whitespace is set.
7808
7809 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
7810 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
7811 When disabling, restore old values only if mouse-sel-has-been-enabled.
7812
7813 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
7814 (isearch-{-char): New function.
7815 (isearch-mode-map): Bind { to isearch-{-char.
7816
7817 * font-lock.el (lisp-font-lock-keywords-2):
7818 Turn off the CL with-... and do-... general patterns.
7819 Instead, recognize several specific with... and do... constructs.
7820
7821 * files.el (switch-to-buffer-other-window):
7822 Bind same-window-buffer-names and same-window-regexps to nil.
7823 (switch-to-buffer-other-frame): Likewise.
7824
7825 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
7826
7827 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
7828 recognizing leading comment on code line.
7829
7830 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
7831
7832 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
7833 hidden files/directories.
7834
7835 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
7836
7837 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
7838 only comment-start (in case the mode hasn't set it).
7839
7840 * Makefile.in (AUTOGENEL): New var.
7841 (bootstrap-prepare): Rename from bootstrap-clean.
7842 Don't remove elc files.
7843 (maintainer-clean): New target.
7844
7845 * xml.el (xml-get-attribute-or-nil): Simplify.
7846
7847 2004-03-02 Juri Linkov <juri@jurta.org>
7848
7849 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
7850 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
7851 URL to prevent their substitution with the environment variable
7852 values by browsers.
7853
7854 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7855
7856 * ps-print.el: Doc fix.
7857 (ps-print-version): New version number (6.6.3).
7858 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
7859 Docstring fix.
7860 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
7861 before printing.
7862 (ps-time-stamp-yyyy-mm-dd): New fun.
7863 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
7864
7865 2004-03-02 Kim F. Storm <storm@cua.dk>
7866
7867 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
7868
7869 2004-03-01 Juanma Barranquero <lektu@terra.es>
7870
7871 * allout.el (allout-rebullet-heading): Fix typo in docstring.
7872
7873 * desktop.el (desktop-file-version)
7874 (desktop-after-read-hook): Fix typos.
7875 (desktop-clear-preserve-buffers): Remove redundant info in
7876 docstring already shown by the obsolescence message.
7877 (desktop-truncate, desktop-internal-v2s)
7878 (desktop-value-to-string): Change argument name to match docstring.
7879
7880 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
7881
7882 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
7883 docstring.
7884
7885 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7886
7887 * printing.el: Replace "As Is..." in PostScript file print/preview by
7888 "No Preprocessing...". Suggested by Colin Marquardt
7889 <_marquardt_@zmd.de>.
7890 (pr-insert-section-4): Adjust buffer interface.
7891
7892 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
7893
7894 Version 2.0.39 of Tramp released.
7895
7896 * net/tramp.el (tramp-handle-file-local-copy)
7897 (tramp-handle-write-region, tramp-open-connection-rsh):
7898 Variable name typo. Small change. From Patrick Tullmann
7899 <tullmann@flux.utah.edu>.
7900 (tramp-process-connection-type): New variable.
7901 (tramp-maybe-open-connection): Use it.
7902 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
7903 (tramp-touch): Set last-modified time of a remote file.
7904 (tramp-handle-write-region): Say which function is used when encoding.
7905
7906 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
7907
7908 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
7909 case of non-existing filename, too. Reported by Christoph Bauer
7910 <c_bauer@informatik.uni-kl.de>.
7911 (tramp-smb-get-file-entries): The directory in question should
7912 have permissions "drwxrwxrwx". Just virtual, because we don't
7913 know the real permissions. Don't we know?
7914 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
7915 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
7916 (tramp-smb-wait-for-output): Optimize algorithm getting pending
7917 output. If it was received chunkwise, there have been problems.
7918 Remove the "prompt not found" error message; it is obvious.
7919 Simplify algorithm.
7920 (tramp-smb-process-running): Remove. Since we acknowledge the
7921 virtual prompt for shares, there's no need for distinction of
7922 reading shares (process ends afterwards) and interactive mode of
7923 smblient.
7924 (tramp-smb-open-connection): Setting process sentinel removed.
7925 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
7926 "NT_STATUS_NETWORK_ACCESS_DENIED".
7927 (tramp-smb-maybe-open-connection): Set `process-connection-type'
7928 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
7929 (top-level): Setting default value in `tramp-default-method-alist'
7930 corrected. Order of USER and HOST have been wrong.
7931 Nobody complained for months ...
7932 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
7933 (tramp-smb-open-connection): Clear password cache if login has failed.
7934
7935 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
7936 `tramp-unified-filenames'.
7937 (tramp-completion-mode): Make test for XEmacs explicitely.
7938 `event-to-character' can exists in Emacs packages too.
7939 Reported by Matt Swift <swift@alum.mit.edu>.
7940 (tramp-buffer-name): Buffer name must contain the user if exists.
7941 Reported by Adrian Phillips <a.phillips@met.no>.
7942 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
7943 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
7944 (tramp-do-copy-or-rename-file-out-of-band): Rename from
7945 `tramp-do-copy-or-rename-file-one-local', because it handles also
7946 the case both files use the same out-of-band method.
7947 Implementation added.
7948 (tramp-handle-file-local-copy, tramp-handle-write-region):
7949 Out-of-band handling removed. `copy-file' called instead, which
7950 calls `tramp-do-copy-or-rename-file-out-of-band'.
7951 (tramp-action-password): Check for out-of-band method removed.
7952 This function is used for 'login-program.
7953 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
7954 appropriate.
7955 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
7956 and `tramp-parse-sknownhosts'.
7957 (tramp-completion-function-alist): It's a defvar now, because we
7958 want to apply the optimized `tramp-set-completion-function'
7959 instead of a static list.
7960 (tramp-set-completion-function): Implementation tuned.
7961 Avoid double entries, and entries where the function or the
7962 file/directory doesn't exist.
7963 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
7964 for SSH2.
7965 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
7966 (tramp-handle-dired-compress-file): New function.
7967 (tramp-async-proc): New variable.
7968 (tramp-handle-shell-command): Adding asynchronous processes.
7969 They are far from being perfect, but it works at least for
7970 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
7971 (top-level): Require password.el if visible. Should be mandatory
7972 once No Gnus has found its way into (X)Emacs.
7973 (tramp-read-passwd): Invoke `password-read' if available,
7974 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
7975 fallback any longer.
7976 (tramp-clear-passwd): New function.
7977 (tramp-process-actions, tramp-process-multi-actions):
7978 Clear password cache if login has failed.
7979
7980 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
7981 its own module.
7982 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
7983 `ange-ftp-ftp-name-res'. There could be incorrect values from
7984 previous calls in case the "ftp" method is used in the Tramp file
7985 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
7986
7987 2004-02-28 Richard M. Stallman <rms@gnu.org>
7988
7989 * term.el (term-mouse-paste): Call mouse-set-point.
7990
7991 * thumbs.el: New file.
7992
7993 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7994
7995 * progmodes/ebnf-abn.el: Doc fix.
7996
7997 * progmodes/ebnf-bnf.el: Doc fix.
7998 (ebnf-repeat): Code fix.
7999
8000 * progmodes/ebnf2ps.el: Doc fix.
8001 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
8002
8003 2004-02-28 Juri Linkov <juri@jurta.org>
8004
8005 * ffap.el (dired-at-point): Additional writability test for
8006 relative directory names.
8007 (dired-at-point-prompter): Treat directories as a directory, get
8008 the directory component from files.
8009 (ffap-string-at-point): Return string from region if region is active.
8010 (ffap-file-at-point): Remove redundant code.
8011
8012 2004-02-28 Kim F. Storm <storm@cua.dk>
8013
8014 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
8015 Initialize margin area images to nil.
8016 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
8017 (breakpoint-enabled-bitmap-face)
8018 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
8019 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
8020 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
8021 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
8022 (gdb-reset): Use gdb-remove-breakpoint-icons.
8023 (gdb-put-string): Add dprop arg to specify alternative display
8024 property (for setting fringe bitmap).
8025 (gdb-remove-strings): Doc fix.
8026 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
8027 icon in fringe (if available), or else as icon or text in display
8028 margin. Creates necessary icons in breakpoint-bitmap,
8029 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
8030 Also make left window margin if required.
8031 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
8032 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
8033 no longer needed.
8034 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
8035 gdb-put-breakpoint-icon.
8036 (gdb-assembler-mode): Don't set left-margin-width here.
8037
8038 2004-02-27 Kevin Ryde <user42@zip.com.au>
8039
8040 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
8041 comma, so that it DTRT in macros.
8042
8043 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
8044
8045 * progmodes/sh-script.el (sh-shell-arg)
8046 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
8047 (sh-leading-keywords, sh-other-keywords): Fix custom type.
8048
8049 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
8050
8051 * faces.el (face-spec-set-match-display): Add a new attribute,
8052 `min-colors'.
8053 (region, highlight, secondary-selection): Use `min-colors'.
8054
8055 * custom.el (defface): Add documentation for `min-colors'.
8056
8057 * font-lock.el (font-lock-comment-face, font-lock-string-face)
8058 (font-lock-keyword-face, font-lock-function-name-face)
8059 (font-lock-variable-name-face, font-lock-constant-face):
8060 Use `min-colors'.
8061
8062 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
8063
8064 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8065
8066 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
8067 define assq-delete-all if it's not defined.
8068 (ebnf-generate-region): Code fix.
8069
8070 * printing.el: Doc fix.
8071 (pr-version): New version number (6.7.2).
8072 (pr-command): Return empty string if command is an empty string.
8073
8074 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8075
8076 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
8077
8078 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
8079 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
8080 semi-down-full. Fix a bug on productions like test = {"test"}* | (
8081 "tt" ["test"] ). Reported by Markus Dreyer
8082 <mdreyer@ix.urz.uni-heidelberg.de>.
8083 (ebnf-version): New version number (4.0).
8084 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
8085 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
8086 (ebnf-delete-style): New commands.
8087 (ebnf-directory, ebnf-file): New funs.
8088 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
8089 (ebnf-production-name-p, ebnf-stop-on-error): New options.
8090 (ebnf-syntax-alist): New var.
8091 (ebnf-element-width): New fun replacing ebnf-list-width.
8092 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
8093 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
8094 (ebnf-prologue): Adjust vars.
8095 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
8096 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
8097 (ebnf-check-style-values, ebnf-generate-production)
8098 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
8099 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
8100 (ebnf-token-repeat): Code fix.
8101
8102 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
8103 %right, %left and %prec. Suggested by Matthew K. Junker
8104 <junker@alum.mit.edu>.
8105 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
8106
8107 * progmodes/ebnf-iso.el: Doc fix.
8108 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
8109 (ebnf-iso-lex): Code fix.
8110
8111 * progmodes/ebnf-bnf.el: Doc fix.
8112 (ebnf-bnf-lex): Code fix.
8113
8114 * progmodes/ebnf-otz.el: Doc fix.
8115
8116 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
8117
8118 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
8119 (abbrev-prefix-mark): Doc fix.
8120
8121 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
8122
8123 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
8124 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
8125 (gdb-var-delete): Make interactive (really).
8126 (gdb-edit-value): Make non-interactive.
8127
8128 * progmodes/gud.el (gud-speedbar-menu-items):
8129 Add gdb-var-delete and, indirectly, gdb-edit-value.
8130 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
8131 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
8132 (gud-gdb-marker-filter): Add comment for annotations.
8133
8134 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
8135
8136 * calendar/calendar.el (generate-calendar)
8137 (calendar-read-date): Prevent display of BC calendars once more -
8138 reverts 2003-10-01 change.
8139 (generate-calendar-month): Doc fix.
8140
8141 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
8142
8143 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
8144 return value of increment-calendar-month.
8145
8146 2004-02-21 Stephen Compall <s11@member.fsf.org>
8147
8148 * saveplace.el (save-place-forget-unreadable-files)
8149 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
8150 (save-place-forget-unreadable-files): New function.
8151 (save-place-alist-to-file): Use it to filter out files that are
8152 no longer readable.
8153
8154 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
8155 current Texinfo environment, using the same method as in
8156 `texinfo-insert-@end', and insert a space rather than a newline if
8157 point in a @table environment.
8158
8159 2004-02-21 Juri Linkov <juri@jurta.org>
8160
8161 * ffap.el (ffap-file-at-point): Try parent directories.
8162
8163 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
8164
8165 * vcursor.el (vcursor-modifiers): New defcustom.
8166 (vcursor-cs-binding): Use vcursor-modifiers instead of a
8167 hard-coded list.
8168
8169 2004-02-21 Masatake YAMATO <jet@gyve.org>
8170
8171 * play/animate.el (animate-birthday-present): Accept names other
8172 than `Sarah', too.
8173
8174 2004-02-21 Juri Linkov <juri@jurta.org>
8175
8176 * startup.el: Remove table of command line arguments from the
8177 Commentary section.
8178
8179 2004-02-20 John Wiegley <johnw@newartisans.com>
8180
8181 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
8182 again" modifier from 'e' to 'E', since 'e' is also used by the
8183 "file extension" modifier.
8184
8185 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
8186
8187 * help-fns.el (describe-categories): Doc fix.
8188
8189 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
8190
8191 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
8192 temporary file for buffer already visiting one. This change makes
8193 output likely to be directly usable by patch program.
8194 Suggested by Adrian Aichner <adrian@xemacs.org>
8195
8196 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
8197
8198 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
8199 case of variables defined in compound statements.
8200 (gdb-setup-windows, gdb-source-info, gdb-source-info):
8201 Simplify constructions using switch-to-buffer.
8202
8203 2004-02-19 Simon Josefsson <jas@extundo.com>
8204
8205 * play/morse.el: Fix typo.
8206 (morse-code): Add @.
8207
8208 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8209
8210 * calendar/appt.el (appt-display-format): Change default to
8211 'ignore, for backwards compatibility.
8212 (appt-display-message): If appt-display-format is 'ignore,
8213 respect old vars appt-msg-window and appt-visible.
8214 (appt-activate): Don't depend on return value of cancel-timer.
8215
8216 * calendar/calendar.el (calendar-holidays): Doc fix.
8217
8218 * calendar/cal-coptic.el (coptic-prompt-for-date):
8219 Use assoc-string instead of assoc-ignore-case.
8220 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8221 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8222 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8223 * calendar/cal-islam.el (calendar-goto-islamic-date)
8224 (mark-islamic-diary-entries): Ditto.
8225 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8226 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8227 (calendar-read-mayan-tzolkin-date): Ditto.
8228 * calendar/calendar.el (calendar-read-date): Ditto.
8229 * calendar/diary-lib.el (mark-diary-entries): Ditto.
8230
8231 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
8232
8233 * progmodes/executable.el (executable-command-find-posix-p):
8234 Fix choice of the directory.
8235
8236 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
8237
8238 * simple.el (interprogram-cut-function)
8239 (interprogram-paste-function, kill-new, kill-append):
8240 Doc fixes.
8241 (kill-region): Make it return nil. Doc fix.
8242 (yank-pop): Make its argument optional.
8243 (yank): Make ARG `-' equivalent to `-1'.
8244
8245 2004-02-17 Eli Zaretskii <eliz@gnu.org>
8246
8247 * mail/rmail.el (rmail-get-new-mail): Don't reference
8248 rmail-use-spam-filter if rmail-spam-filter is not loaded.
8249
8250 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
8251
8252 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
8253 if one of global-auto-revert-non-file-buffers or autorevert-mode
8254 is non-nil.
8255
8256 2004-02-16 Eli Zaretskii <eliz@gnu.org>
8257
8258 * subr.el (delete-dups): A better implementation from Karl Heuer
8259 <kwzh@gnu.org>.
8260
8261 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
8262
8263 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
8264 correct place.
8265 * progmodes/icon.el (icon-indent-command): Ditto.
8266 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
8267
8268 2004-02-16 Eli Zaretskii <eliz@gnu.org>
8269
8270 * progmodes/grep.el (grep-compute-defaults): Undo change from
8271 2004-01-29: don't use executable-command-find-posix-p.
8272
8273 2004-02-16 Richard Sharman <rsharman@pobox.com>
8274
8275 * hilit-chg.el: Use require instead of eval-and-compile.
8276 (highlight-compare-buffers): New function.
8277
8278 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
8279
8280 * man.el (Man-fontify-manpage): Render section headings in
8281 `Man-overstrike-face' even when overstrike was not used by man
8282 formatter for section headings.
8283
8284 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
8285
8286 * rmail-spam-filter.el: (vm-use-spam-filter)
8287 (rsf-min-region-length-added-to-spam-list): New variables.
8288 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
8289 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
8290 spam testing. Don't delete spam message if automatic deletion
8291 after output via variable rmail-delete-after-output is turned on.
8292 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
8293 rsf-bbdb-dont-create-entries-for-spam.
8294 (check-field): New function, extracted from code in
8295 rmail-spam-filter to ease addition of header fields like content-type.
8296 (message-content-type): New variable to check the content-type:
8297 field added, also in defcustom of rsf-definitions-alist.
8298 (rmail-spam-filter): Replace repeated test code for header fields
8299 by calls to check-field; change the call to
8300 rmail-output-to-rmail-file such that rmail-current-message stays
8301 the same to avoid wrong deletion of unseen flags.
8302 (rsf-add-contents-type): New function to convert old format
8303 of rmail-spam-definitions-alist into new one.
8304 Change prefixes of all variables and functions from
8305 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
8306
8307 2004-02-16 Eli Zaretskii <eliz@gnu.org>
8308
8309 * loadhist.el (unload-hook-features-list): New defvar.
8310
8311 2004-02-16 Dave Love <fx@gnu.org>
8312
8313 * loadhist.el (unload-feature): Doc fix. Rename flist to
8314 unload-hook-features-list.
8315
8316 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
8317
8318 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
8319 cookie. Don't check if we are looking-at open-formula.
8320
8321 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
8322
8323 * subr.el (match-string-no-properties): Use substring-no-properties.
8324
8325 2004-02-16 Eli Zaretskii <eliz@gnu.org>
8326
8327 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
8328 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
8329 Use lower-case "rx" in all error message.
8330
8331 2004-02-16 Dave Love <fx@gnu.org>
8332
8333 * emacs-lisp/rx.el (rx-or): Put group around result.
8334 (rx-constituents): Add backref.
8335 (rx-syntax): Add string-delimiter, comment-delimiter.
8336 (rx-categories): Add combining-diacritic.
8337 (rx-check-not, rx-greedy, rx): Doc fix.
8338 (rx-backref, rx-check-backref): New.
8339
8340 2004-02-16 Jesper Harder <harder@ifa.au.dk>
8341
8342 * newcomment.el (uncomment-region): Allow eob as comment end.
8343
8344 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
8345
8346 * filecache.el: All message and error commands now use prefix
8347 "Filecache:" to make it easy to read *Messages* buffer.
8348
8349 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
8350
8351 * autorevert.el: Add support to detect changed dired and VC buffers.
8352 (auto-revert-active-p, auto-revert-list-diff)
8353 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
8354 (auto-revert-handler, auto-revert-active-p): New functions.
8355 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
8356 and `auto-revert-active-p'.
8357 (eval-when-compile): Defvar dired-directory and vc-mode.
8358 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
8359 (auto-revert-handler-vc): New functions.
8360
8361 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
8362
8363 * progmodes/compile.el (compilation-directory): New defvar.
8364 (compile): Save current directory in compilation-directory.
8365 (recompile): Bind default-directory to compilation-directory if
8366 that is non-nil.
8367
8368 2004-02-16 Dave Love <fx@gnu.org>
8369
8370 * newcomment.el (comment-insert-comment-function)
8371 (comment-region-function, uncomment-region-function): New.
8372 (comment-indent): Use comment-insert-comment-function.
8373 (uncomment-region): Use uncomment-region-function.
8374 (comment-region): Use comment-region-function.
8375
8376 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
8377
8378 2004-02-16 Richard Stallman <rms@gnu.org>
8379
8380 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
8381 loaddefs* and ldefs-boot*.
8382
8383 2004-02-16 Eli Zaretskii <eliz@gnu.org>
8384
8385 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
8386 and email address at the beginning and end of the address.
8387
8388 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
8389 anchored at the beginning of the email address.
8390
8391 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
8392
8393 * international/ccl.el (ccl-compile-write): Pass `left' to
8394 ccl-embed-code to generate correct code of write-expr-register.
8395
8396 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
8397
8398 * progmodes/grep.el (grep-compute-defaults): Fix typos.
8399
8400 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8401
8402 * x-dnd.el: Mention support for Motif in commentary.
8403 (x-dnd-handle-drag-n-drop-event): Ditto.
8404
8405 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
8406
8407 * ses.el: Use "ses--" prefixes for buffer-local variables.
8408 Use (point-min) instead of 1, even when we know the buffer
8409 is unnarrowed.
8410 (ses-build-load-map): Delete. Distribute its content to defconst's for
8411 the three maps.
8412 (ses-menu, ses-header-line-menu): New menus.
8413 (ses-mode-map): Use them.
8414 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
8415
8416 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
8417
8418 * Makefile.in: Fix the CC Mode recompile kludge so it works
8419 when building in a different directory.
8420
8421 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
8422
8423 * simple.el (kill-new): Put yank-handler property on the entire string.
8424
8425 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8426
8427 * diff.el: Don't use compile any more, use diff-mode instead.
8428 (diff-regexp-alist, diff-old-file, diff-new-file)
8429 (diff-parse-differences, diff-process-setup): Remove.
8430 (diff-sentinel): New fun.
8431 (diff): Use it. Run the process ourselves.
8432 Use diff-mode for the rest of the processing.
8433
8434 * diff.el (diff): Simplify code handling `switch'.
8435
8436 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8437
8438 * pcvs-defs.el (cvs-menu): Add `tag'.
8439
8440 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
8441
8442 * simple.el (kill-append): Doc fix.
8443
8444 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8445 Adapt outline-regexp to the new conventions for commenting out code.
8446
8447 2004-02-11 John Paul Wallington <jpw@gnu.org>
8448
8449 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
8450
8451 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
8452
8453 * diff.el (diff-switches): New fun.
8454 (diff, diff-backup): Use it.
8455 (diff): Clean up the args construction. Use backquote.
8456 Use listp instead of consp to avoid putting a nil arg.
8457 (diff): Add a revert-buffer function.
8458
8459 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8460
8461 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
8462 handled by x-dnd-handle-file-name.
8463 (x-dnd-known-types): Add COMPOUND_TEXT.
8464 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
8465 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
8466 x-dnd-empty-state.
8467 (x-dnd-forget-drop): Ditto.
8468 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
8469 (x-dnd-handle-one-url): Return private when inserting text.
8470 (x-dnd-insert-ctext): New function.
8471 (x-dnd-handle-file-name): New function for FILE_NAME.
8472 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
8473 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
8474 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
8475
8476 2004-02-10 Kenichi Handa <handa@m17n.org>
8477
8478 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
8479 instead of while loop.
8480
8481 2004-02-10 Miles Bader <miles@gnu.org>
8482
8483 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
8484
8485 2004-02-09 Kenichi Handa <handa@m17n.org>
8486
8487 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
8488 have end-of-line.
8489
8490 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
8491
8492 * Makefile.in: Added extra dependencies in the recompile target
8493 needed to cope with the compile time macro expansions in CC Mode.
8494
8495 2004-02-09 Kim F. Storm <storm@cua.dk>
8496
8497 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
8498 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
8499 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
8500 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
8501 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
8502 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
8503 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
8504 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
8505 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
8506 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
8507 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
8508
8509 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
8512 Don't allow shrink if there's a window on our right.
8513
8514 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
8515 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
8516 Bring together declaration and initialization.
8517 (prolog-mode-variables): Don't set the syntax table.
8518 Don't set paragraph-start and comment-indent-function.
8519 Add /*..*/ to the comment regexps.
8520 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
8521 (prolog-mode-map): Don't bind TAB.
8522 (prolog-mode): Set the syntax table.
8523 (prolog-comment-indent): Remove.
8524 (inferior-prolog-mode-map): Initialize in the declaration.
8525 (inferior-prolog-mode-syntax-table)
8526 (inferior-prolog-mode-abbrev-table): New vars.
8527 (inferior-prolog-mode): Derive from comint-mode.
8528 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
8529 minibuffer windows.
8530
8531 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
8532 in file names, as long as it is unabmiguous.
8533
8534 2004-02-08 Andreas Schwab <schwab@suse.de>
8535
8536 * textmodes/reftex-toc.el
8537 (reftex-toc-load-all-files-for-promotion): Remove useless use of
8538 format. Doc fix.
8539
8540 * textmodes/refer.el (refer-find-entry-internal): Remove extra
8541 format string arguments.
8542
8543 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
8544 string argument.
8545
8546 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
8547
8548 * play/zone.el (zone-call): Fix format string.
8549
8550 * net/webjump.el (webjump-builtin): Add missing format string argument.
8551
8552 * midnight.el (midnight-delay-set): Remove extra format string argument.
8553
8554 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
8555
8556 * hexl.el (hexl-insert-char): Add missing format string argument.
8557
8558 * format.el (format-decode): Fix format string.
8559
8560 * emulation/vi.el (vi-mode): Remove extra format string argument.
8561 (vi-repeat-last-search): Likewise.
8562 (vi-reverse-last-search): Likewise.
8563 (vi-goto-mark): Likewise.
8564 (vi-reverse-last-find-char): Likewise.
8565 (vi-repeat-last-find-char): Likewise.
8566 (vi-locate-def): Likewise.
8567
8568 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
8569
8570 * ediff-util.el (ediff-toggle-read-only): Remove extra format
8571 string argument.
8572 (ediff-toggle-regexp-match): Likewise.
8573
8574 * dired-aux.el (dired-do-query-replace-regexp): Add missing
8575 format string argument.
8576
8577 * calc/calc-map.el (calc-get-operator): Remove extra format
8578 string argument.
8579
8580 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
8581
8582 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
8583 string argument.
8584
8585 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
8586
8587 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
8588
8589 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
8590
8591 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
8592 (cl-struct-setf-expander): Likewise.
8593
8594 * vc.el (with-vc-file): Fix unsafe uses of error.
8595 (vc-cancel-version): Likewise.
8596
8597 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
8598
8599 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
8600 thousands separator; fixes <class>:<line-number> regexp for
8601 non-english locales.
8602
8603 2004-02-08 Andreas Schwab <schwab@suse.de>
8604
8605 * view.el (view-mode-enable): Revert previous change.
8606
8607 2004-02-07 Kim F. Storm <storm@cua.dk>
8608
8609 * simple.el (line-number-at-pos): Rename from line-at-pos.
8610 Uses changed (what-line and vc-annotate-warp-version).
8611
8612 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
8613
8614 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
8615 (diff-mode): Remove aborted attempt at support for compile.el.
8616 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
8617
8618 2004-02-06 Andreas Schwab <schwab@suse.de>
8619
8620 * view.el (view-mode-enable): Add view-mode-map to
8621 minor-mode-overriding-map-alist.
8622
8623 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8624
8625 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
8626
8627 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
8628
8629 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
8630 with point inside rather than after the paragraph.
8631
8632 2004-02-04 Sam Steingold <sds@gnu.org>
8633
8634 * mail/smtpmail.el (smtpmail-try-auth-methods):
8635 Do not try authentication when no mechanism is available.
8636 Pass port-name as defaultport to `netrc-machine'.
8637
8638 2004-02-04 Stephen Eglen <stephen@gnu.org>
8639
8640 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
8641 to show how minibuffer height can be constrained.
8642
8643 2004-02-04 John Paul Wallington <jpw@gnu.org>
8644
8645 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
8646
8647 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8648
8649 * x-dnd.el: New file for drag and drop.
8650
8651 * term/x-win.el: require x-dnd, set after-make-frame-functions
8652 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
8653 drag-n-drop event.
8654
8655 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
8656 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
8657 (dired-dnd-handle-file): New functions for drag and drop support.
8658 (dired-mode): Initialize drag and drop if x-dnd present.
8659
8660 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
8661
8662 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
8663 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
8664 (cperl-mode): Set fill-paragraph-function.
8665 (cperl-fill-paragraph): Make it non-interactive.
8666
8667 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
8668
8669 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
8670
8671 2004-02-02 David Kastrup <dak@gnu.org>
8672
8673 * replace.el (perform-replace): Allow 'literal argument in
8674 regexp-flag to indicate literal replacement.
8675 (query-replace-regexp-eval): Use it.
8676
8677 2004-02-01 Andreas Schwab <schwab@suse.de>
8678
8679 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
8680
8681 2004-02-01 Stephen Eglen <stephen@gnu.org>
8682
8683 * info-look.el: Add support for maxima-mode. Update commentary
8684 because info-lookup-symbol is now bound to C-h S.
8685
8686 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
8687
8688 * simple.el (edit-and-eval-command): Bind print-level and
8689 minibuffer-history-sexp-flag around call to read-from-minibuffer.
8690 Correct initial position in command-history.
8691
8692 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
8693
8694 * files.el (read-directory-name): Adapt the docstring to recent
8695 change in Fread_file_name.
8696
8697 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
8698
8699 * ses.el (ses-print-cell): If print format too wide for column
8700 width, truncate decimal places if that helps to avoid "#####" fill.
8701 * ses.el (ses-initial-column-width): Revert previous change.
8702
8703 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
8704
8705 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
8706 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
8707 Add edebug info.
8708 (jit-lock-mode): Setup/cancel the new timer.
8709 (jit-lock-context-fontify): New fun. Extracted from
8710 context fontification code of jit-lock-stealth-fontify.
8711 (jit-lock-stealth-fontify): Don't do context fontification any more.
8712
8713 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
8714 (jit-lock-fontify-now): Handle the `quit' case.
8715 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
8716
8717 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
8718
8719 * progmodes/executable.el (executable-command-find-posix-p):
8720 New. Check if find handles arguments Posix-style.
8721
8722 * progmodes/grep.el (grep-compute-defaults):
8723 Use executable-command-find-posix-p.
8724 (grep-find): Check `grep-find-command'.
8725
8726 * filecache.el (file-cache-find-posix-p): Delete.
8727 (file-cache-add-directory-using-find):
8728 Use `executable-command-find-posix-p'.
8729
8730 2004-01-29 Dave Love <fx@gnu.org>
8731
8732 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
8733 Iterate the hook function if arg is given.
8734 (mark-defun, narrow-to-defun): Change order of finding the limits.
8735
8736 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
8737 (byte-compile-format-warn): New.
8738 (byte-compile-callargs-warn): Use it.
8739 (Format, message, error): Add byte-compile-format-like property.
8740 (byte-compile-maybe-guarded): New.
8741 (byte-compile-if, byte-compile-cond): Use it.
8742 (byte-compile-lambda): Compile interactive forms,
8743 just to make warnings about them.
8744
8745 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
8746
8747 * ses.el (ses-initial-column-width): Increase to 14, so it will
8748 work well with the default printer of "%.7g" for extreme values
8749 like "-1.234567e+07".
8750
8751 2004-01-29 Kenichi Handa <handa@m17n.org>
8752
8753 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
8754
8755 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
8756
8757 * dos-w32.el: Added support for the `default-printer-name' function.
8758
8759 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
8760
8761 * server.el (server-socket-name): Don't use the hostname in the
8762 socket name since /tmp is local to the host anyway.
8763
8764 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
8765 robust check of widening and fix var-naming.
8766
8767 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
8768
8769 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
8770 or rmail-spam- to rsf- in all function and variable names.
8771 (rsf-min-region-to-spam-list): New variable.
8772 (rsf-bbdb-auto-delete-spam-entries): Rename from
8773 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
8774 scanned together with the recipients field for spam testing; Don't
8775 delete spam message if rmail-delete-after-output is non-nil;
8776 (rsf-check-field): New function, extracted from code in
8777 rmail-spam-filter to ease addition of header fields like
8778 content-type:;
8779 (message-content-type): New variable. The content-type: field was
8780 added also in defcustom of rsf-definitions-alist;
8781 (rmail-spam-filter): Replace repeated test code for header fields
8782 by calls to check-field; change the call to
8783 rmail-output-to-rmail-file such that rmail-current-message stays
8784 the same to avoid wrong deletion of unseen flags.
8785 (rmail-use-spam-filter): Add autoload cookie.
8786
8787 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
8788
8789 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
8790 (file-cache-add-directory-using-find): Add Cygwin support.
8791 (file-cache-find-command-posix-flag): New user variable.
8792
8793 * filecache.el (file-cache-add-directory): Check for
8794 directories an remove them from dir-files.
8795
8796 2004-01-27 Richard M. Stallman <rms@gnu.org>
8797
8798 * man.el (Man-fontify-manpage): Clean up message.
8799
8800 2004-01-27 Kenichi Handa <handa@m17n.org>
8801
8802 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
8803 (sentence-end): Define using sentence-end-without-space.
8804
8805 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
8806 a sentence ends with one of a character in sentence-end-without-space.
8807
8808 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
8809
8810 * font-lock.el (font-lock): Add jit-lock as explicit group member.
8811 (jit-lock): Group declaration moved to jit-lock.el.
8812 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
8813 when necessary.
8814
8815 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
8816 (jit-lock-context-unfontify-pos): Rename from
8817 jit-lock-first-unfontify-pos.
8818 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
8819
8820 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
8821
8822 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
8823 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
8824 (fortran-fill): When filling a string, adjust re-search-backward
8825 argument for special case of string just on fill-column.
8826 When filling non-string, allow one extra char if
8827 fortran-break-before-delimiters is non-nil.
8828 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
8829 Use fortran-break-delimiters-re and fortran-no-break-re to
8830 correctly handle cases such as "**".
8831
8832 * progmodes/f90.el (f90-break-delimiters): Doc fix.
8833 (f90-no-break-re): Add some extra tokens. Doc fix.
8834
8835 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
8836
8837 * mail/rmail-spam-filter.el:
8838 Use two semicolons as Commentary line prefix.
8839 Add ";;; Code:" stylized comment.
8840 Delete end-of-line whitespace.
8841 Wrap (require 'cl) with `eval-when-compile'.
8842
8843 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
8844
8845 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
8846 at the top level of vc.el.
8847
8848 2004-01-23 Andre Spiegel <spiegel@gnu.org>
8849
8850 * vc.el (vc-current-line): Function removed. This is now done by
8851 the new function line-at-pos in simple.el.
8852 (vc-annotate-warp-version): Use line-at-pos instead of
8853 vc-current-line.
8854
8855 2004-01-22 Kim F. Storm <storm@cua.dk>
8856
8857 * simple.el (line-at-pos): New defun.
8858 (what-line): Use it. Optimize by only counting lines in narrowed
8859 region once.
8860
8861 2004-01-22 Kenichi Handa <handa@m17n.org>
8862
8863 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
8864 point (register r1) only for charset mule-unicode-0100-24ff.
8865
8866 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
8867
8868 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
8869 trailing white space and ensure a final newline.
8870
8871 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
8872 Add autoload cookie.
8873
8874 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
8875
8876 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
8877 activate view-mode explicitly.
8878
8879 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8880
8881 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
8882 use clipboard first.
8883
8884 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
8885
8886 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
8887 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
8888 (vc-mcvs-cvs): Remove.
8889 (vc-mcvs-command): Remove use of assert.
8890
8891 * outline.el (outline-insert-heading): Tighten up match.
8892 (outline-demote, outline-move-subtree-down): Don't assume anything
8893 about outline-regexp.
8894
8895 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
8896 (texinfo-show-structure): Explicitly add ^, and simplify.
8897
8898 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
8899
8900 * calendar/appt.el (appt-check): Restore usage of
8901 appt-issue-message deleted in previous change.
8902 (top-level): Activate package when loaded (needed for backwards
8903 compatibility).
8904
8905 2004-01-20 Jesper Harder <harder@ifa.au.dk>
8906
8907 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
8908 following previous change to smtpmail-send-data.
8909
8910 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
8911
8912 * vc.el (vc-default-previous-version): Doc enhancement.
8913 (vc-default-next-version): New function.
8914 (vc-print-log): New arg FOCUS-REV.
8915 (vc-annotate-mode): Derive from view-mode.
8916 (vc-annotate): New args REVISION, DISPLAY-MODE.
8917 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
8918 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
8919 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
8920 (vc-annotate-show-diff-revision-at-line, vc-current-line)
8921 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
8922
8923 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
8924
8925 2004-01-19 Karl Berry <karl@gnu.org>
8926
8927 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
8928 or "TexInfo".
8929
8930 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
8931
8932 * subr.el (delete-dups): New function.
8933
8934 2004-01-19 Karl Berry <karl@gnu.org>
8935
8936 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
8937 with ^, since that's what texinfo-show-structure
8938 documentation says (plus it works much better in texinfo.txi).
8939
8940 2004-01-18 Jesper Harder <harder@ifa.au.dk>
8941
8942 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
8943
8944 2004-01-18 David Ponce <david@dponce.com> (tiny change)
8945
8946 * progmodes/which-func.el (which-function-mode): Don't cancel
8947 which-func-update-timer if not set.
8948
8949 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
8950
8951 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
8952 Remove spurious left square bracket in XX:XXam regexp.
8953
8954 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
8955
8956 * progmodes/cc-defs.el: Do not require cl at run time.
8957
8958 2004-01-16 Richard M. Stallman <rms@gnu.org>
8959
8960 * emacs-lisp/cl.el (cl-cannot-unload): New function.
8961 (cl-unload-hook): Defvar this to run cl-cannot-unload.
8962
8963 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
8964 Call rmail-spam-filter. Delete and expunge spam.
8965 Print number of spam messages deleted.
8966 Save and restore the deletion status of old messages when reading
8967 new mail with spam filter, so that expunging spam does not expunge
8968 msgs deleted by the user.
8969 (rmail-only-expunge): Add an optional argument dont-show to
8970 prevent showing message after expunge.
8971
8972 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
8973
8974 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
8975 * subr.el (declare): New macro.
8976
8977 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
8978
8979 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
8980
8981 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
8982
8983 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
8984 Test window-system rather than system-type (for X11/Mac).
8985
8986 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
8987
8988 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
8989
8990 2004-01-12 Richard M. Stallman <rms@gnu.org>
8991
8992 * mail/rmail.el (rmail-convert-to-babyl-format):
8993 Use mail-unquote-printable-region.
8994 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
8995 (rmail-hex-char-to-integer): Functions deleted.
8996
8997 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
8998 (mail-unquote-printable-region): New arg NOERROR.
8999 For invalid encoding, either signal an error to just return nil.
9000
9001 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9002
9003 * calendar/appt.el: Update copyright and commentary.
9004 (appt-issue-message): Make obsolete.
9005 (appt-visible, appt-msg-window): Make obsolete, in favour of
9006 appt-display-format.
9007 (appt-display-mode-line, appt-display-duration)
9008 (appt-display-diary, appt-time-msg-list, appt-mode-string)
9009 (appt-prev-comp-time, appt-display-count, appt-timer)
9010 (appt-convert-time): Doc change.
9011 (appt-disp-window-function, appt-delete-window-function):
9012 Use defcustom rather than defvar.
9013 (appt-display-format): New variable.
9014 (appt-display-message): New function with display code from appt-check.
9015 (appt-check): Add optional FORCE argument. Doc change.
9016 Add appt-make-list to diary-hook if displaying diary.
9017 Remove checking of view-diary-entries-initially.
9018 Message display section removed to new function appt-display-message.
9019 (appt-display-window): Doc change. Remove unused internal var
9020 this-buffer. Do not beep, since appt-display-message does that.
9021 (appt-make-list): Doc change. Use caar.
9022 (appt-sort-list): Simplify by using builtin sort function.
9023 (appt-update-list): New function for updating appts when diary is
9024 saved.
9025 (appt-activate): New autoloaded function to toggle package
9026 functionality.
9027
9028 * calendar/cal-x.el: (calendar-one-frame-setup)
9029 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
9030
9031 * calendar/calendar.el: Update copyright.
9032 (view-diary-entries-initially, european-calendar-style): Doc change.
9033 (calendar-setup): Make defcustom rather than defvar.
9034 (mark-visible-calendar-date): Initialize temp-face and faceinfo
9035 in let binding so local to function.
9036
9037 * calendar/diary-lib.el: Update copyright.
9038 (diary, diary-entry-time): Doc change.
9039 (list-diary-entries): Doc change. Trivial logic change.
9040 (fancy-diary-display): Restore make-face command mistakenly
9041 deleted 2003-05-08.
9042 (show-all-diary-entries): Allow to pop-up frame if needed.
9043
9044 2004-01-09 John Paul Wallington <jpw@gnu.org>
9045
9046 * bindings.el (mode-line-change-eol): Add EVENT parameter.
9047 Temporarily select EVENT's window for changing eol type.
9048
9049 2004-01-09 Deepak Goel <deego@gnufans.org>
9050
9051 * calendar/diary-lib.el (diary-entry-time):
9052 Also accept time in the form XX[.XX][am/pm/AM/PM].
9053 (fancy-diary-font-lock-keywords): Likewise.
9054 (diary-font-lock-keywords): Likewise.
9055 * calendar/appt.el (appt-add): Likewise.
9056 (appt-make-list): Likewise.
9057 (appt-convert-time): Likewise.
9058
9059 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
9060
9061 * gdb-ui.el (gdb-ann3): Revert previous change.
9062 (gdb-source-info): Allow for case of where compilation directory
9063 is not recorded.
9064
9065 2004-01-08 John Paul Wallington <jpw@gnu.org>
9066
9067 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
9068
9069 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
9070
9071 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
9072
9073 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
9074 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
9075 problems.
9076 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
9077
9078 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
9079
9080 * files.el (write-file-functions, write-contents-functions):
9081 Clarify docstrings.
9082
9083 2004-01-07 Kenichi Handa <handa@m17n.org>
9084
9085 * international/mule.el (set-auto-coding): Fix for the case that
9086 end-of-line is only CR.
9087
9088 2004-01-07 Kim F. Storm <storm@cua.dk>
9089
9090 * subr.el (event-start, event-end): Doc fix.
9091 (posn-string, posn-image): New defuns.
9092 (posn-object): Return either image or string object.
9093 (posn-object-x-y): Return 8th element of position.
9094 (posn-object-width-height): New defun.
9095
9096 2004-01-06 Andreas Schwab <schwab@suse.de>
9097
9098 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
9099 output.
9100
9101 2004-01-05 Karl Berry <karl@gnu.org>
9102
9103 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
9104 / and *, too.
9105
9106 2003-12-31 Simon Josefsson <jas@extundo.com>
9107
9108 * files.el (before-save-hook): Add.
9109 (basic-save-buffer): Use before-save-hook.
9110
9111 * emacs-lisp/copyright.el: Fix comment to recommend
9112 before-save-hook instead of write-file-functions.
9113
9114 2004-01-05 Richard M. Stallman <rms@gnu.org>
9115
9116 * finder.el (finder-commentary): Call delete-other-windows.
9117
9118 * net/ange-ftp.el (ange-ftp-file-attributes):
9119 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
9120
9121 2004-01-04 Karl Berry <karl@gnu.org>
9122
9123 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
9124 comment characters % and # in the copyright year notice,
9125 as well as ;.
9126
9127 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
9128
9129 * wid-edit.el (default): Define dummy :value-delete.
9130 Reported by Jesper Harder <harder@ifa.au.dk>.
9131
9132 2004-01-03 Richard M. Stallman <rms@gnu.org>
9133
9134 * progmodes/compile.el (compile-internal): Use point, not point-min,
9135 for set-window-point.
9136
9137 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
9138
9139 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
9140
9141 * progmodes/grep.el (grep-mode-map):
9142 Don't remap next-line, previous-line.
9143
9144 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
9145
9146 * speedbar.el (speedbar-edit-line): Change regexp to position
9147 the cursor on the first character of this line's button.
9148
9149 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
9150
9151 * subr.el (functionp): Doc fix.
9152
9153 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
9154
9155 * progmodes/idlwave.el (idlwave-make-tags):
9156 * textmodes/flyspell.el (flyspell-large-region):.
9157 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
9158 * emulation/viper-util.el (viper-glob-unix-files):
9159 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
9160 * man.el (Man-init-defvars):
9161 * jka-compr.el (jka-compr-call-process):
9162 * files.el (get-free-disk-space,insert-directory):
9163 * ediff-ptch.el (ediff-test-patch-utility):
9164 * ediff-diff.el (ediff-test-utility):
9165 * dired-aux.el (dired-check-process):
9166 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
9167 test the return value of call-process, because it can be a string.
9168
9169 2003-12-31 John Paul Wallington <jpw@gnu.org>
9170
9171 * bindings.el (completion-ignored-extensions): Add .pfsl.
9172
9173 2003-12-31 Kim F. Storm <storm@cua.dk>
9174
9175 * ido.el (ido-nonreadable-directory-p): New defun to check for
9176 nonreadable directory without activating tramp (to avoid problems
9177 with checking incomplete tramp paths).
9178 (ido-set-current-directory, ido-file-internal)
9179 (ido-file-name-all-completions1): Use it.
9180
9181 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
9182
9183 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
9184 documentation if the anchor (or node) name is preceded by `info
9185 anchor' or `Info anchor' in addition to earlier `info node' and
9186 `Info node'.
9187 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
9188
9189 2003-12-30 Eli Zaretskii <eliz@gnu.org>
9190
9191 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
9192 error in arguments to base64-decode-region. Remove ^M characters
9193 after decoding base64.
9194
9195 2003-12-30 Simon Josefsson <jas@extundo.com>
9196
9197 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
9198 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
9199 have only been distributed with Emacs for some years.
9200 (texinfo-mode-hook): Customize.
9201
9202 2003-12-30 Eli Zaretskii <eliz@gnu.org>
9203
9204 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
9205 cleaner (suggested by Richard Stallman).
9206
9207 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
9208 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
9209 file-name clashes on 8+3 DOS filesystems.
9210
9211 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
9212 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
9213 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
9214 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
9215 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
9216 file-name clashes on 8+3 filesystems.
9217
9218 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
9219 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
9220 file-name clashes on 8+3 DOS filesystems.
9221
9222 2003-12-29 Richard M. Stallman <rms@gnu.org>
9223
9224 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
9225 Upcase the character.
9226
9227 * textmodes/flyspell.el (mail-mode-flyspell-verify):
9228 Search for header separator alone on a line, literally,
9229 and search for it backward, not forward.
9230 (flyspell-abbrev-table): Always use global-abbrev-table
9231 if there is no local one.
9232
9233 * progmodes/sh-script.el (sh-get-indent-info):
9234 Don't move point back if at bob.
9235
9236 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
9237
9238 * play/handwrite.el (handwrite): Make the handwrite credit message
9239 a comment rather than an output command.
9240
9241 * obsolete/sc.el: Display message that this file is obsolete.
9242
9243 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
9244
9245 * mail/rfc822.el (rfc822-address-start): Declare variable.
9246 Renamed from address-start. All uses changed.
9247
9248 * term.el (term-exec): Set up sentinel.
9249 (term-sentinel): New function.
9250 (term-handle-exit): New function.
9251
9252 * subr.el (assoc-ignore-case, assoc-ignore-representation):
9253 Use assoc-string, and mark them obsolete.
9254 (delay-mode-hooks): Mark as permanent local.
9255
9256 * simple.el (sendmail-user-agent-compose): Use assoc-string.
9257
9258 * register.el (copy-rectangle-to-register): Doc fix.
9259
9260 * info.el (Info-insert-dir): Use assoc-string.
9261
9262 * info-look.el (info-lookup): Use assoc-string.
9263
9264 * frame.el (pop-up-frame-function): Use quote, not `function'.
9265 (frame-notice-user-settings): Calculate ADJUSTED-TOP
9266 copying with lists as coordinate values.
9267
9268 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
9269
9270 * find-dired.el (kill-find): New command.
9271 (find-dired): Make buffer read-only.
9272 Set up a keymap with C-c C-k running kill-find.
9273 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
9274
9275 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
9276
9277 * filecache.el (file-cache-ignore-case): New variable.
9278 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
9279
9280 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
9281 (comint-dynamic-complete-as-filename): Rename local vars.
9282 (comint-dynamic-list-filename-completions): Likewise.
9283
9284 * comint.el (comint-dynamic-list-completions-config): New var.
9285 (comint-dynamic-list-completions): Handle both SPC and TAB right.
9286
9287 * comint.el (comint-file-name-chars): Add [].
9288 (comint-word): Use skip-chars-backward, not search.
9289
9290 * shell.el (shell-file-name-chars): Add [].
9291
9292 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
9293
9294 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
9295
9296 * generic.el (define-generic-mode): Doc fix.
9297
9298 2003-12-29 Eli Zaretskii <eliz@gnu.org>
9299
9300 * files.el (kill-some-buffers): Doc fix.
9301
9302 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
9303
9304 * comint.el (comint-watch-for-password-prompt): Pass `string' as
9305 arg to send-invisible
9306 (send-invisible): Doc fix. The argument is now a prompt, not the
9307 string to send.
9308 (comint-read-noecho): Doc fix.
9309
9310 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
9311
9312 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
9313 "@", as required by some ISP hosting service. Fix defcustom
9314 argument syntax errors that prevented use of customization.
9315
9316 2003-12-29 Eli Zaretskii <eliz@gnu.org>
9317
9318 * xml.el (xml-get-attribute-or-nil): Doc fix.
9319
9320 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
9321
9322 * net/zone-mode.el (zone-mode): Use write-file-functions, not
9323 write-file-hooks.
9324
9325 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
9326
9327 * autorevert.el (auto-revert-interval): Doc fix.
9328
9329 2003-12-29 Mark A. Hershberger <mah@everybody.org>
9330
9331 * xml.el (xml-get-attribute-or-nil): New function, like
9332 xml-get-attribute, but returns nil if the attribute was not found.
9333 (xml-get-attribute): Convert to defsubst, uses
9334 xml-get-attribute-or-nil.
9335
9336 2003-12-29 Eli Zaretskii <eliz@gnu.org>
9337
9338 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
9339
9340 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
9341
9342 * custom.el (custom-declare-theme): Use `value' when putting
9343 properties on `theme'.
9344
9345 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
9346
9347 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
9348 for each yank-handler segment.
9349 (insert-for-yank-1): New function, with the body of the previous
9350 insert-for-yank.
9351
9352 * textmodes/table.el (table-yank-handler): New defcustom.
9353 (table--put-cell-indicator-property): Put yank-handler property
9354 that indicates the yank handler for the table cell.
9355
9356 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
9357
9358 * generic-x.el (etc-modules-conf-generic-mode): A more complete
9359 set of keywords.
9360
9361 2003-12-29 Eli Zaretskii <eliz@gnu.org>
9362
9363 * international/mule-cmds.el (reset-language-environment)
9364 (set-language-environment): Don't invoke fontset-related functions
9365 if fontset-list is not fboundp.
9366
9367 2003-12-29 Kenichi Handa <handa@m17n.org>
9368
9369 * international/mule-cmds.el (reset-language-environment):
9370 Call set-overriding-fontspec-internal with nil.
9371 (set-language-environment): Call set-overriding-fontspec-internal
9372 if the language environment specify `overriding-fontspec'.
9373 (language-info-alist): Doc added.
9374
9375 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
9376 characters of mule-unicode-0100-24ff.
9377 (ccl-encode-windows-1251-font): New CCL program.
9378 ("Bulgarian"): Specify overriding-fontspec.
9379 ("Belarusian"): Likewise.
9380
9381 2003-12-28 Sam Steingold <sds@gnu.org>
9382
9383 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
9384 parameter ID-FORMAT to conform with the 2003-11-30 patch.
9385
9386 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
9387
9388 * progmodes/gud.el (gud-gdb-command-name): Set default to
9389 "gdb --annotate=3".
9390 (gud-gdb-marker-filter): Look out for annotations.
9391 (gdb-first-pre-prompt): New variable.
9392 Remove trailing white space.
9393
9394 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
9395 if necessary.
9396 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
9397 annotations are detected.
9398 (gud-gdba-marker-filter): Use global variable gud-marker-acc
9399 instead of a local one to allow transition from
9400 gud-gdb-marker-filter.
9401 Remove trailing white space.
9402
9403 2003-12-27 Kim F. Storm <storm@cua.dk>
9404
9405 * ido.el: Handle non-readable directories.
9406 (ido-decorations): Add 9th element for non-readable directory.
9407 (ido-directory-nonreadable): New dynamic var.
9408 (ido-set-current-directory): Set it.
9409 (ido-read-buffer, ido-file-internal):
9410 (ido-read-file-name, ido-read-directory-name): Let-bind it.
9411 (ido-file-name-all-completions1): Return empty list for
9412 non-readable directory.
9413 (ido-exhibit): Print [Not readable] if directory is not readable.
9414 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
9415 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
9416 Use it.
9417
9418 2003-12-27 Lars Hansen <larsh@math.ku.dk>
9419
9420 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
9421 calls to directory-files-and-attributes and file-attributes.
9422 (ls-lisp-format): Remove system dependent handling of user and
9423 group id's.
9424
9425 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
9426
9427 * ffap.el (ffap-read-file-or-url): Revert previous change.
9428
9429 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
9430
9431 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
9432 new list of included files called `files-with-node-lines', that
9433 only have node lines. This way @include commands can include any
9434 file, such as version and update files without node lines, not
9435 just files that are chapters.
9436
9437 2003-12-25 Andreas Schwab <schwab@suse.de>
9438
9439 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
9440 file not found.
9441
9442 2003-12-08 Miles Bader <miles@gnu.org>
9443
9444 * dired.el (dired-between-files): Always use dired-move-to-filename,
9445 which is more robust in non-english locales.
9446
9447 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
9448
9449 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
9450
9451 2003-12-24 Andreas Schwab <schwab@suse.de>
9452
9453 * shell.el (shell-file-name-quote-list): Add backslash.
9454
9455 * comint.el (comint-quote-filename): Correctly handle backslash
9456 in comint-file-name-quote-list.
9457
9458 2003-12-24 Kenichi Handa <handa@m17n.org>
9459
9460 * international/mule-cmds.el (set-default-coding-systems):
9461 Call ucs-set-table-for-input for all buffers that don't have local
9462 value of buffer-file-coding-system.
9463
9464 * international/ucs-tables.el (ucs-set-table-for-input):
9465 If translation-table-for-encode is a symbol, get its
9466 translation-table property.
9467
9468 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
9469
9470 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
9471 to `completing-read' on a recently fixed bug.
9472
9473 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
9474 instead of SPACE, to get the list of possible fringe modes.
9475 SPACE only works if both `partial-completion-mode' and
9476 `completion-auto-help' are nil.
9477
9478 * complete.el (PC-is-complete-p): Delete.
9479 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
9480 calls to `test-completion'.
9481
9482 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
9483
9484 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
9485 to edit values when there are no children.
9486
9487 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
9488 a mode called "Assembler" already exists.
9489 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
9490 (gud-watch): Use format option. Remove font properties from string.
9491 (gdb-var-create-handler, gdb-var-list-children-handler):
9492 Don't bother about properties as there are none.
9493 (gdb-var-create-handler, gdb-var-list-children-handler)
9494 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
9495 with two arguments.
9496 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
9497 Let speedbar show value changes with a different font.
9498 (gdb-edit-value): New defun.
9499 (gdb-clear-partial-output, gdb-clear-inferior-io)
9500 (def-gdb-auto-update-handler): Use erase-buffer.
9501 (gdb-frame-handler): Display watch expressions in
9502 FUNCTION::VARIABLE format if required.
9503
9504 2003-12-23 John Paul Wallington <jpw@gnu.org>
9505
9506 * info.el (Info-unescape-quotes, Info-split-parameter-string)
9507 (Info-goto-emacs-command-node): Doc fixes.
9508
9509 2003-12-12 Jesper Harder <harder@ifa.au.dk>
9510
9511 * cus-edit.el (custom-add-parent-links): Define "many".
9512
9513 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
9514
9515 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
9516 (widget-child-validate, widget-type-value-create)
9517 (widget-type-default-get, widget-type-match): New functions.
9518 (lazy): New widget.
9519 (menu-choice, checklist, radio-button-choice, editable-list)
9520 (group, documentation-string): Remove redundant (per 2003-10-25
9521 change) calls to `widget-children-value-delete'.
9522 (widget-choice-value-get, widget-choice-value-inline): Remove.
9523 (menu-choice): Update widget.
9524
9525 2003-12-03 Kenichi Handa <handa@m17n.org>
9526
9527 * language/cyrillic.el: Register "microsoft-cp1251" in
9528 ctext-non-standard-encodings-alist.
9529 ("Bulgarian"): Add ctext-non-standard-encodings.
9530 ("Belarusian"): Likewise.
9531
9532 * international/mule-conf.el (compound-text-with-extensions):
9533 Change the type to 2 (iso-2022 base).
9534
9535 * international/mule.el (ctext-non-standard-encodings-alist):
9536 Change the format.
9537 (ctext-non-standard-encodings): New variable.
9538 (ctext-post-read-conversion): Fully re-written.
9539 (ctext-non-standard-designations-alist): Delete it.
9540 (ctext-non-standard-encodings-table): New function.
9541 (ctext-pre-write-conversion): Fully re-written.
9542
9543 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
9544
9545 * cus-edit.el (custom-add-parent-links): Add documentation links
9546 for parent, if the item has none of its own.
9547
9548 2003-11-30 Richard M. Stallman <rms@gnu.org>
9549
9550 * dired-aux.el (dired-do-query-replace-regexp):
9551 Report files visited read-only.
9552
9553 2003-11-30 Juri Linkov <juri@jurta.org>
9554
9555 * dired-aux.el (dired-compare-directories): New command.
9556 (dired-file-set-difference, dired-files-attributes): New functions.
9557
9558 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
9559 Version 2.0.38 of Tramp released.
9560
9561 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
9562 Charles Curley <charlescurley@charlescurley.com>.
9563 (tramp-multi-connection-function-alist): Add ssht entry which adds
9564 "-e none -t -t" to the list of ssh args. Suggested by Adrian
9565 Aichner.
9566 (tramp-get-method-parameter): New function to retrieve a method
9567 parameter. This allows for omission of method parameters.
9568 Callers adjusted.
9569
9570 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
9571
9572 * net/tramp.el: Add new optional parameter ID-FORMAT to
9573 `file-attributes'. Calls of `file-attributes' won't use this
9574 parameter for backward compatibility reasons.
9575 (tramp-perl-file-attributes): Add a new parameter to Perl script
9576 in order to handle uid/gid as strings, if desired.
9577 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
9578 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
9579 order to make the function more general.
9580 (tramp-handle-file-attributes): Replace proprietary optional
9581 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
9582 (tramp-handle-file-attributes-with-perl): Handle parameter
9583 NONNUMERIC if set. This wasn't done in the past.
9584 (tramp-post-connection): Apply second parameter "$2" if
9585 `tramp-remote-perl' is called.
9586
9587 * net/tramp-smb.el (tramp-smb-handle-delete-file):
9588 Correct cut'n'waste error (`filename' instead of `directory').
9589 (tramp-smb-handle-directory-files-and-attributes)
9590 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
9591 introduced parameter ID-FORMAT.
9592 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
9593 error (`directory' instead of `ldir').
9594
9595 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
9596 `file-attributes' has a second parameter. If yes, apply it with
9597 value "'integer". Otherwise, don't use that parameter (default is
9598 integer format).
9599
9600 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
9601
9602 * help.el (help-map): Bind `display-local-help' to `C-h .'.
9603 (help-for-help): Add `C-h .' to the listed Help options.
9604 Remove trailing whitespace.
9605
9606 * help-at-pt.el: New file.
9607
9608 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
9609
9610 * subr.el (noreturn, 1value): New macros for test coverage.
9611 See `testcover.el'.
9612
9613 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
9614
9615 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
9616 for macro `1value'.
9617 (testcover-1value): New function. Checks that a 1value form
9618 actually returns only one value. Requested by RMS.
9619
9620 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
9621
9622 * gdb-ui.el (gud-watch, gdb-var-create-handler)
9623 (gdb-var-list-children, gdb-var-list-children-handler)
9624 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
9625 gdb commands that use mi to keep them out of the command history.
9626
9627 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9628
9629 * cus-start.el (all): Add use-file-dialog.
9630
9631 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9632
9633 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
9634
9635 2003-11-27 Kim F. Storm <storm@cua.dk>
9636
9637 * subr.el (posn-object-x-y): New defun.
9638
9639 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
9640
9641 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
9642 Don't use `space' for \\\n.
9643 Be more selective as to which # are comment-starters.
9644
9645 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
9646
9647 * subr.el (number-sequence): Improve handling of floating point
9648 arguments (suggested by Kim Storm). Allow negative arguments.
9649
9650 2003-11-26 Kenichi Handa <handa@m17n.org>
9651
9652 * international/mule-cmds.el (standard-display-european-internal):
9653 Cancel the standard-display-table setting for ` and '.
9654
9655 2003-11-26 Kim F. Storm <storm@cua.dk>
9656
9657 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
9658 New defcustoms to add ffap-like functionality to ido.
9659 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
9660 (ido-no-final-slash): New defun.
9661 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
9662 (ido-read-file-name): ): Toggle VC checking via
9663 vc-handled-backends instead of vc-master-templates.
9664 (ido-file-internal): Handle ido-use-url-at-point and
9665 ido-use-filename-at-point via code borrowed from ffap-guesser.
9666 Handle new ido-exit code ffap.
9667 (ido-sort-list): Ignore final slash when sorting file names.
9668
9669 2003-11-25 Kim F. Storm <storm@cua.dk>
9670
9671 * emulation/cua-base.el (cua--standard-movement-commands):
9672 Add forward-sentence and backward-sentence.
9673
9674 2003-11-25 Stephen Eglen <stephen@gnu.org>
9675
9676 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
9677 iswitchb-exit is set to 'usefirst when user selects buffer at head
9678 of list using RET. (Selecting buffers at the head of the list was
9679 broken if the substring was also a complete buffername.)
9680
9681 2003-11-23 Kim F. Storm <storm@cua.dk>
9682
9683 * progmodes/compile.el (grep-command, grep-use-null-device)
9684 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
9685 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
9686 (grep-regexp-alist, grep-program, find-program)
9687 (grep-find-use-xargs, grep-history, grep-find-history)
9688 (grep-process-setup, grep-compute-defaults)
9689 (grep-default-command, grep, grep-tag-default, grep-find)
9690 (grep-expand-command-macros, grep-tree-last-regexp)
9691 (grep-tree-last-files, grep-tree): Move grep variables, functions
9692 and commands to new file grep.el.
9693 (compilation-mode-map): Remove grep commands from Compile sub-menu.
9694 (compilation-process-setup-function): Doc fix.
9695 (compilation-highlight-regexp, compilation-highlight-overlay): New
9696 defvars used for highlighting current compile error in source buffer.
9697 (compile-internal): New optional args HIGHLIGHT-REGEXP and
9698 LOCAL-MAP which overrides compilation-highlight-regexp and
9699 compilation-mode-map for this compilation.
9700 Delay calling compilation-set-window-height until after running
9701 compilation-process-setup-function so it can buffer-local override
9702 compilation-window-height.
9703 Check buffer-local value of compilation-scroll-output.
9704 (compilation-set-window-height): Use buffer-local value of
9705 compilation-window-height.
9706 (compilation-revert-buffer): Don't pass (undefined)
9707 preserve-modes arg to revert-buffer.
9708 (next-error-no-select, previous-error-no-select): New commands.
9709 (compilation-goto-locus): Temporarily highlight current match in
9710 source buffer using compilation-highlight-regexp.
9711
9712 * progmodes/grep.el: New file with grep code from compile.el.
9713 (grep): New defcustom group.
9714 (grep-window-height): New defcustom, like compilation-window-height.
9715 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
9716 (grep-scroll-output): New defcustom, like compilation-scroll-output.
9717 (grep-command, grep-use-null-device, grep-find-command)
9718 (grep-tree-files-aliases, grep-tree-ignore-case)
9719 (grep-tree-ignore-CVS-directories): Move to grep custom group.
9720 (grep-setup-hook): New hook variable.
9721 (grep-mode-map): New keymap for grep commands. Add Grep menu.
9722 (grep-last-buffer): New defvar, override compilation-last-buffer.
9723 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
9724 Call compile-internal with args highlight-regexp and grep-mode-map.
9725
9726 2003-11-23 Kim F. Storm <storm@cua.dk>
9727
9728 * subr.el (event-start, event-end): Doc fix.
9729 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
9730 (posn-area, posn-actual-col-row, posn-object): New defuns.
9731 (posn-col-row): Simplify doc. Rewrite to use cond.
9732 (posn-point): Also return buffer position for events outside text
9733 area (that info is now present in the event position).
9734
9735 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
9736 mouse-set-point so that hscroll still works now that clicks on
9737 fringes generate specific mouse events.
9738 (mouse-set-point): Note that it now works in fringes and margins
9739 too due to new semantics of posn-point in fringes and margins.
9740
9741 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
9742 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
9743
9744 2003-11-20 Kim F. Storm <storm@cua.dk>
9745
9746 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
9747 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
9748 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
9749 to 100 for icons to avoid increasing line height when shown.
9750
9751 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
9752
9753 * newcomment.el (comment-normalize-vars): Initialize properly if
9754 comment-start was nil.
9755
9756 2003-11-19 Andreas Schwab <schwab@suse.de>
9757
9758 * simple.el (set-variable): Fix indentation.
9759
9760 2003-11-17 Kenichi Handa <handa@m17n.org>
9761
9762 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
9763 Fix docstring.
9764
9765 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
9766
9767 * international/latin1-disp.el (latin1-display): Fix docstring.
9768
9769 2003-11-16 John Wiegley <johnw@newartisans.com>
9770
9771 * eshell/em-ls.el (eshell-ls-file): There are times with
9772 size-width is nil and uncomputed (when directories are created in
9773 dired, for example); in this case, 4 is reasonable default value,
9774 although it may caused skewed new entries (which could be avoided
9775 by returning the original value of 8 in all cases, but 99% of the
9776 time this is a waste of whitespace).
9777
9778 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9779
9780 * cc-engine.el (c-guess-continued-construct)
9781 (c-guess-basic-syntax): Check a little more carefully if it's a
9782 function declaration when an unknown construct followed by a block
9783 is found inside a statement context. This avoids macros followed
9784 by blocks to be taken as function declarations.
9785
9786 (c-guess-continued-construct): Change the analysis of a statement
9787 continuation with a brace open to `substatement-block', for
9788 consistency with recognized statements.
9789
9790 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
9791 start is in a position so that `c-beginning-of-statement-1' jumped
9792 to the beginning of the same statement.
9793
9794 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
9795 Don't accept binary operators in the arglist if we're in a function
9796 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
9797 template recognition in cases like "if (a < b || c > d)".
9798
9799 (c-restricted-<>-arglists): New more appropriate name for
9800 `c-disallow-comma-in-<>-arglists'.
9801
9802 Accessing functions updated for the variable name change.
9803
9804 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
9805 match data could get clobbered if NOT-INSIDE-TOKEN is used.
9806
9807 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
9808 labels.
9809
9810 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
9811 instead of duplicating parts of it. This fixes bogus label
9812 recognition.
9813
9814 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
9815 of checking the context in which to apply the minimum indentation,
9816 so that it isn't enforced in e.g. namespace blocks.
9817
9818 * cc-vars.el (c-inside-block-syms): New constant used by
9819 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
9820 to somewhat reduce the risk of becoming stale.
9821
9822 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
9823 cc-cmds to cc-engine to allow use from cc-align.
9824
9825 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
9826 qualified identifiers containing "::".
9827
9828 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
9829 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
9830
9831 * cc-vars.el (c-emacs-features): Use a space in front of the name
9832 of the temporary buffer. That also avoids dumping problems in
9833 XEmacs due to undo info being left around after the buffer is killed.
9834
9835 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
9836 arglist to see if it's a K&R style declaration.
9837
9838 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
9839 before returning `knr-argdecl-intro'.
9840
9841 2003-11-16 John Wiegley <johnw@newartisans.com>
9842
9843 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
9844 field in a long-listing always 8 characters, use `size-width',
9845 which has already been computed.
9846
9847 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
9848
9849 * subr.el (minor-mode-list): Add `hs-minor-mode'.
9850
9851 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
9852
9853 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
9854 Support operation while narrowed, with `diff-restrict-view'.
9855
9856 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
9857
9858 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
9859 Take additional optional arg NARROWFUN. For the generated functions:
9860 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
9861 include frags that arrange to check for and save narrowing state before
9862 the move and then conditionally call NARROWFUN after the move.
9863
9864 2003-11-14 John Wiegley <johnw@newartisans.com>
9865
9866 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
9867 that was optional, but obviously missing based on surrounding code.
9868
9869 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
9870 string arguments to numbers unless the whole argument was seen as
9871 a number.
9872
9873 2003-11-14 Kenichi Handa <handa@m17n.org>
9874
9875 * international/mule.el (ctext-non-standard-encodings-alist):
9876 Fix coding systems.
9877
9878 2003-11-10 Kenichi Handa <handa@m17n.org>
9879
9880 * language/kannada.el ("Kannada"): Add sample-text.
9881
9882 * language/knd-util.el (kannada-compose-region)
9883 (kannada-compose-string, kannada-post-read-conversion):
9884 Add autoload cookie.
9885
9886 * international/quail.el (quail-completion): Change the message
9887 "corresponding translations" to "corresponding characters".
9888
9889 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
9890
9891 * descr-text.el (describe-char): Fix typo.
9892
9893 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
9894
9895 These changes are to support Kannada language/script.
9896
9897 * Makefile.in (DONTCOMPILE): Add kannada.el.
9898
9899 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
9900
9901 * loadup.el: Preload kannada.el.
9902
9903 * language/ind-util.el (ucs-kannada-to-is13194-alist)
9904 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
9905 New variables.
9906
9907 * language/kannada.el: New file.
9908
9909 * language/knd-util.el: New file.
9910
9911 2003-11-07 Andreas Schwab <schwab@suse.de>
9912
9913 * progmodes/autoconf.el (autoconf-font-lock-keywords):
9914 Also highlight AH_*.
9915
9916 * xml.el (xml-parse-dtd): Fix misplaced paren.
9917
9918 2003-11-07 Kenichi Handa <handa@m17n.org>
9919
9920 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
9921
9922 2003-11-05 Juri Linkov <juri@jurta.org>
9923
9924 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
9925 (desktop-buffer-file): Use saved buffer-file-coding-system
9926 for file reading. Set auto-insert to nil to prevent automatic
9927 insertion into restored empty files.
9928
9929 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
9930
9931 * files.el (risky-local-variable-p): Make second argument optional.
9932
9933 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
9934
9935 * subr.el (add-hook): Fix last change.
9936
9937 2003-11-03 Eli Zaretskii <eliz@gnu.org>
9938
9939 * mail/rmail.el (rmail-convert-to-babyl-format):
9940 If base64-decode-region signals an error, catch it and silently
9941 ignore it.
9942
9943 2003-11-01 Mark A. Hershberger <mah@everybody.org>
9944
9945 * xml.el (xml-parse-region): Allow comments to appear after the
9946 topmost element has closed.
9947 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
9948 (xml-ns-expand-attr): New functions to do namespace handling.
9949 (xml-intern-attrlist): Back-compatible handling of attribute names.
9950 (xml-parse-tag): Move namespace handling to separate functions.
9951 Now produces elements in the form ((:ns . "element") (attr-list)
9952 children) instead of ('ns:element (attr-list) children).
9953 (xml-parse-attlist): Fix attribute parsing.
9954 (xml-parse-dtd): Change parsing so that it produces strings
9955 instead of interned symbols.
9956
9957 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
9958
9959 * dired.el (dired-ls-sorting-switches): Doc fix.
9960
9961 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
9962
9963 * emacs-lisp/rx.el (rx-or): Fix the case of
9964 "(rx (and ?a (or ?b ?c) ?d))".
9965
9966 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
9967
9968 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
9969 (texinfo-format-region): Use it.
9970 (texinfo-format-buffer-1): Ditto.
9971
9972 2003-11-01 Alan Mackenzie <acm@muc.de>
9973
9974 Changes to allow scrolling whilst in isearch mode:
9975 * isearch.el (isearch-unread-key-sequence): New function,
9976 extracted from isearch-other-meta-char.
9977 (top level): (put 'foo 'isearch-scroll) on all Emacs's
9978 "scrollable" standard functions.
9979 (isearch-allow-scroll): New customizable variable.
9980 (isearch-string-out-of-window, isearch-back-into-window)
9981 (isearch-reread-key-sequence-naturally)
9982 (isearch-lookup-scroll-key): New functions.
9983 (isearch-other-meta-char): Doc string and functionality enhanced.
9984 Now accepts a prefix argument.
9985 (isearch-lazy-highlight-window-end): New variable.
9986 (isearch-lazy-highlight-new-loop): Pay attention to the window's
9987 end (thru isearch-lazy-highlight-window-end), not only its start.
9988
9989 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
9990 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
9991 (universal-argument, universal-argument-more, negative-argument)
9992 (digit-argument, universal-argument-other-key): Minor changes.
9993
9994 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
9995
9996 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
9997 recursively if the last message is deleted, thus avoiding an
9998 infinite loop.
9999
10000 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
10001
10002 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
10003 (tex-main-file): Don't add .tex if the extension is already present.
10004 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
10005
10006 2003-10-29 Lute Kamstra <lute@gnu.org>
10007
10008 * progmodes/octave-inf.el (inferior-octave-prompt):
10009 Recognize version number in prompt.
10010
10011 2003-10-28 Dave Love <fx@gnu.org>
10012
10013 * international/characters.el: Fix some Unicode ranges.
10014
10015 2003-10-28 Kenichi Handa <handa@m17n.org>
10016
10017 * disp-table.el (standard-display-8bit)
10018 (standard-display-default, standard-display-ascii)
10019 (standard-display-g1, standard-display-graphic)
10020 (standard-display-underline): Assure that standard-display-table
10021 is a display table.
10022
10023 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
10024
10025 * simple.el (reindent-then-newline-and-indent): Delete space *after*
10026 reindenting the first line.
10027
10028 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
10029
10030 * wid-edit.el (widget-default-delete): Always delete child widgets.
10031
10032 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
10033
10034 * newcomment.el (comment-indent): Don't call indent-according-to-mode
10035 if the line has code.
10036 Don't try to line up with something that's too far left.
10037
10038 * progmodes/octave-mod.el (octave-comment-start): Simplify.
10039 (octave-mode-syntax-table): Add % as a comment starter.
10040 (octave-point): Remove.
10041 (octave-in-comment-p, octave-in-string-p)
10042 (octave-not-in-string-or-comment-p, calculate-octave-indent)
10043 (octave-blink-matching-block-open, octave-auto-fill):
10044 Use line-(beginning|end)-position instead.
10045
10046 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
10047
10048 * emacs-lisp/authors.el (authors-aliases): Add correct realname
10049 for Francesco Potort\e,Al\e(B.
10050
10051 2003-10-23 Dave Love <fx@gnu.org>
10052
10053 * international/mule-cmds.el (locale-charset-to-coding-system):
10054 Don't rely on nil being a coding system.
10055
10056 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
10057 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
10058 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
10059
10060 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
10061
10062 * gdb-ui.el (gdb-current-language): New variable.
10063 (gdb-update-flag): Remove variable.
10064 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
10065 (gdb-take-last-elt): Remove function.
10066 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
10067 (gdb-post-prompt): Check for variable object changes here.
10068
10069 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
10070 object changes in gdb-ui.el.
10071
10072 2003-10-21 Richard M. Stallman <rms@gnu.org>
10073
10074 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
10075
10076 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
10077 Don't check for foo*/ wildcard form here.
10078 (insert-directory): Recognize foo*/ as a wildcard.
10079 Separate wildcard-regexp variable from the arg, wildcard.
10080
10081 * subr.el (add-hook): Correctly detect when make-local-hook was used.
10082 (remove-hook): Correctly handle strange cases about local hooks.
10083
10084 2003-10-21 David Ponce <david@dponce.com>
10085
10086 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
10087 argument REAL, to return a real number instead of a rounded
10088 integer value. Define as inline function.
10089 (ruler-mode-right-fringe-cols): Likewise.
10090 (ruler-mode-scroll-bar-cols): New function.
10091 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
10092 (ruler-mode-right-scroll-bar-cols): Likewise.
10093 (ruler-mode-space): New function.
10094 (ruler-mode-ruler): Use it. Handle variations of fringe style,
10095 scroll bar mode and margins in a more robust way.
10096
10097 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
10098
10099 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
10100 (antlr-c-init-language-vars): New function.
10101 (antlr-mode): Use it with cc-mode before v5.29.
10102 (antlr-c-common-init): Don't set some local vars here.
10103 (antlr-mode): Set them here.
10104 (antlr-c-forward-sws): New function alias.
10105 (antlr-mode): Redefine with cc-mode before v5.30.
10106 (antlr-skip-sexps): Use it.
10107 (antlr-skip-exception-part): Ditto.
10108 (antlr-skip-file-prelude): Ditto.
10109 (antlr-outside-rule-p): Ditto.
10110 (antlr-end-of-body): Ditto.
10111 (antlr-option-kind): Ditto.
10112 (antlr-insert-option-area): Ditto.
10113 (antlr-file-dependencies): Ditto.
10114
10115 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10116
10117 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
10118 Move backward only if point was not inside an entry.
10119
10120 2003-10-21 Richard M. Stallman <rms@gnu.org>
10121
10122 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
10123
10124 2003-10-21 Juri Linkov <juri@jurta.org>
10125
10126 * compare-w.el: Automatically skip non-matching text to resync.
10127 (compare-windows-whitespace): Doc fix.
10128 (compare-windows-sync, compare-windows-sync-string-size)
10129 (compare-windows-recenter, compare-ignore-whitespace)
10130 (compare-windows-highlight, compare-windows-face): New variables.
10131 (compare-windows): Use compare-windows-sync.
10132 (compare-windows-highlight, compare-windows-dehighlight)
10133 (compare-windows-sync-regexp)
10134 (compare-windows-sync-default-function): New functions.
10135
10136 2003-10-21 Juri Linkov <juri@jurta.org>
10137
10138 * diff.el (diff-parse-differences): Don't visit the files now;
10139 instead, just record the error locus.
10140
10141 2003-10-21 Dave Love <fx@gnu.org>
10142
10143 * progmodes/cfengine.el: New file.
10144
10145 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
10146
10147 * complete.el (PC-do-completion): Do not forget to use `pred' as the
10148 default-directory when completing file names.
10149
10150 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
10151
10152 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
10153 followed by the word `face', it gets treated as a face, even if
10154 it is also defined as a variable or a function.
10155
10156 2003-10-20 Dave Love <fx@gnu.org>
10157
10158 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10159 Avoid incf in macro expansion.
10160
10161 2003-10-20 John Paul Wallington <jpw@gnu.org>
10162
10163 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
10164 `evenp' so we don't implicitly require cl library at runtime.
10165
10166 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
10167
10168 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
10169 (help-make-xrefs): Only make cross-references for faces if
10170 preceded or followed by the word `face'. Do not make a
10171 cross-reference for variables without variable documentation,
10172 unless preceded by the word `variable' or `option'. Update doc
10173 string accordingly.
10174
10175 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
10176
10177 * progmodes/hideshow.el: Rewrite one-armed `if'
10178 constructs using either `when' or `unless'.
10179 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
10180
10181 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
10182
10183 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
10184 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
10185 instead of 12x12.
10186
10187 2003-10-16 Eli Zaretskii <eliz@gnu.org>
10188
10189 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
10190 message while converting to Babyl.
10191
10192 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
10193
10194 * allout.el (allout-mode): Doc fix.
10195
10196 2003-10-16 Lute Kamstra <lute@gnu.org>
10197
10198 * subr.el (force-mode-line-update): Fix docstring.
10199
10200 2003-10-14 Dave Love <fx@gnu.org>
10201
10202 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
10203 (default-input-method): Add :link, improve :type.
10204 (locale-charset-language-names): Fix utf-8 pattern.
10205 (locale-charset-match-p, locale-charset-alist)
10206 (locale-charset-to-coding-system): New.
10207 (set-locale-environment): Deal with codeset part of locale specs.
10208
10209 2003-10-14 Lute Kamstra <lute@gnu.org>
10210
10211 * fringe.el (fringe-mode): Use active voice in docstring.
10212 (set-fringe-style): Ditto.
10213
10214 2003-10-13 Lute Kamstra <lute@gnu.org>
10215
10216 * fringe.el (fringe-mode): Fix docstring.
10217 (set-fringe-style): Ditto.
10218
10219 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
10220
10221 * ediff-mult.el (ediff-filegroup-action):
10222 Use ediff-default-filtering-regexp.
10223
10224 * ediff-util.el (ediff-recenter): Don't call
10225 ediff-restore-highlighting twice.
10226 (ediff-select-difference): Set current difference.
10227 (ediff-unselect-and-select-difference): Add comment.
10228
10229 * ediff.el (ediff-directories,ediff-directory-revisions)
10230 (ediff-directories3,ediff-merge-directories)
10231 (ediff-merge-directories-with-ancestor)
10232 (ediff-merge-directory-revisions)
10233 (ediff-merge-directory-revisions-with-ancestor):
10234 Use ediff-default-filtering-regexp.
10235
10236 2003-10-12 Andreas Schwab <schwab@suse.de>
10237
10238 * international/mule-cmds.el (locale-charset-language-names):
10239 Simplify regex by removing unused grouping.
10240
10241 2003-10-10 Dave Love <fx@gnu.org>
10242
10243 * bindings.el: Don't bind stop.
10244
10245 2003-10-08 Miles Bader <miles@gnu.org>
10246
10247 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
10248 face instead of attempting to emulate it.
10249
10250 2003-10-07 Kenichi Handa <handa@m17n.org>
10251
10252 * international/mule-diag.el (list-coding-systems-1): List coding
10253 systems that are loaded automatically.
10254
10255 * international/code-pages.el (iso-8859-11): Add autoload cookie.
10256
10257 * international/mule.el (autoload-coding-system): New function.
10258
10259 2003-10-07 Andreas Schwab <schwab@suse.de>
10260
10261 * log-edit.el (log-edit-changelog-entries): Prefer local value of
10262 change-log-default-name in the buffer visiting the file.
10263
10264 2003-10-06 Dave Love <fx@gnu.org>
10265
10266 * files.el (find-file-hook): Customize.
10267 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
10268
10269 * bindings.el (completion-ignored-extensions): Remove .log.
10270 (global-map): Add again, open, stop keys.
10271
10272 2003-10-05 Richard M. Stallman <rms@gnu.org>
10273
10274 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
10275 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
10276 Use sh-modify directly.
10277 (sh-select): Use sh-append, not eval.
10278
10279 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
10280
10281 * info.el (Info-following-node-name): New function.
10282
10283 * loadhist.el (unload-feature-special-hooks):
10284 Rename from loadhist-hook-functions.
10285 (loadhist-hook-functions): Now an alias.
10286
10287 2003-10-04 Eli Zaretskii <eliz@gnu.org>
10288
10289 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
10290 file-name clashes on 8+3 filesystems.
10291
10292 * Makefile.in (DONTCOMPILE, bootstrap-clean):
10293 Rename loaddefs-boot.el to ldefs-boot.el
10294
10295 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
10296 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
10297
10298 2003-10-03 Lute Kamstra <lute@gnu.org>
10299
10300 * info.el (Info-mode): Revert previous change.
10301 (Info-escape-percent): New function.
10302 (Info-fontify-node): Use it.
10303
10304 2003-10-02 Andreas Schwab <schwab@suse.de>
10305
10306 * loaddefs-boot.el: Regenerated.
10307
10308 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
10309
10310 * ffap.el: Remove defadvice related code from CVS since `complete'
10311 provides a `PC-completion-as-file-name-predicate' variable that
10312 ffap can override.
10313
10314 2003-10-02 Kenichi Handa <handa@m17n.org>
10315
10316 * international/utf-8.el (ccl-decode-mule-utf-8):
10317 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
10318
10319 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
10320 * international/subst-big5.el: Likewise.
10321 * international/subst-gb2312.el: Likewise.
10322 * international/subst-ksc.el: Likewise.
10323
10324 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
10325
10326 * calendar/calendar.el (increment-calendar-month)
10327 (calendar-leap-year-p, calendar-absolute-from-gregorian)
10328 (generate-calendar, calendar-read-date, calendar-interval)
10329 (calendar-day-of-week): Handle years BC.
10330 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
10331
10332 2003-10-01 Dave Love <fx@gnu.org>
10333
10334 * language/cyrillic.el (cp1251): Alias for windows-1251.
10335
10336 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
10337 bootstrap.
10338
10339 2003-10-01 Lute Kamstra <lute@gnu.org>
10340
10341 * files.el: Fix typo.
10342 * imenu.el (imenu--generic-function): Docstring fix.
10343
10344 2003-09-30 Richard M. Stallman <rms@gnu.org>
10345
10346 * dired.el (dired-mode): Handle dired-directory as a list.
10347
10348 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
10349
10350 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
10351
10352 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
10353
10354 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
10355 Replace gud-display with gud-watch.
10356 (gud-speedbar-buttons): Add stuff for watching expressions
10357 in the speedbar when using M-x gdba. Use dolist on old part
10358 of this function.
10359
10360 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
10361 (gdb-update-flag): New variables.
10362 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
10363 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
10364 (gud-watch, gdb-var-create-handler) : New functions.
10365 (gdb-var-list-children, gdb-var-list-children-handler)
10366 (gdb-var-create-regexp, gdb-var-update-regexp)
10367 (gdb-var-list-children-regexp): New constants.
10368 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
10369 (gdb-annotation-rules): Reduce annotation set (level 3).
10370 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
10371 (gdb-post-prompt): Don't update GDB buffers every time speedbar
10372 updates.
10373 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
10374 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
10375 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
10376 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
10377 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
10378 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
10379 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
10380 (gud-display, gud-display1)
10381 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
10382 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
10383 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
10384 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
10385 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
10386 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
10387 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
10388 (gdb-display-display-buffer, gdb-toggle-display)
10389 (gdb-delete-display, gdb-expressions-popup-menu)
10390 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
10391 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
10392 to display buffer.
10393
10394 2003-09-30 Richard M. Stallman <rms@gnu.org>
10395
10396 * progmodes/ada-mode.el (ada-mode): Don't use advice.
10397 Instead, set which-func-functions.
10398
10399 * progmodes/which-func.el (which-func-modes): Add ada-mode.
10400 (which-func-functions): New variable.
10401 (which-function): Use that.
10402
10403 * info.el (Info-mode): Double each `%' in header line.
10404
10405 * emacs-lisp/lisp-mnt.el (lm-with-file):
10406 When FILE is nil, run BODY in current buffer.
10407
10408 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
10409
10410 * help.el (describe-mode): Start with a brief list of minor modes.
10411 Find them thru minor-mode-list so as to find them all.
10412 Show them in alphabetical order.
10413
10414 * mail/sendmail.el (mail-aliases): Doc fix.
10415
10416 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
10417
10418 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
10419
10420 * mail/rmailsum.el (rmail-make-summary-line-1):
10421 Change comma after last label to a space.
10422 (rmail-summary-font-lock-keywords): Adapt to that change.
10423
10424 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
10425
10426 * progmodes/scheme.el (scheme-mode-variables): When setting
10427 `font-lock-defaults', also specify that "#" should
10428 be interpreted with `word' syntax.
10429 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
10430
10431 2003-09-30 Lars Hansen <larsh@math.ku.dk>
10432
10433 * desktop.el: A lot of comments updated.
10434 (desktop-save-mode): Minor mode introduced.
10435 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
10436 (desktop-load-default): Function made obsolete.
10437 (desktop-locals-to-save): Variable made customizable.
10438 (desktop-read): Optional parameter `dirname' added.
10439 (desktop-change-dir, desktop-revert): Parameter `dirname' in
10440 `desktop-read' used.
10441 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
10442
10443 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
10444
10445 * whitespace.el (whitespace-clean-msg): Add user customizable message
10446 for displaying ``clean'' output.
10447 (whitespace-buffer): Use `whitespace-clean-msg'.
10448 (whitespace-global-mode): Fix typo.
10449
10450 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
10451
10452 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
10453
10454 2003-09-29 Lute Kamstra <lute@gnu.org>
10455
10456 * bindings.el (mode-line-modes): Remove superfluous :propertize
10457 construct in initialization.
10458 (mode-line-position): Change cons cell into proper list in
10459 initialization.
10460
10461 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
10462
10463 * international/mule.el (decode-coding-inserted-region): Use car
10464 of the return value of find-operation-coding-system.
10465
10466 2003-09-29 Kenichi Handa <handa@m17n.org>
10467
10468 * descr-text.el (describe-char): Fix previous change.
10469
10470 2003-09-28 Kenichi Handa <handa@m17n.org>
10471
10472 * descr-text.el (describe-char-display): New function.
10473 (describe-char): Pay attention to display table on describing how
10474 a character is displayed.
10475
10476 * international/mule-cmds.el (encoded-string-description):
10477 Prepend "0x" to each encoded byte.
10478
10479 2003-09-28 Andreas Schwab <schwab@suse.de>
10480
10481 * find-file.el (ff-special-constructs): Add autoload cookie.
10482
10483 2003-09-28 Kevin Ryde <user42@zip.com.au>
10484
10485 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
10486 makeinfo appends to duplicate index entries.
10487
10488 2003-09-28 Eli Zaretskii <eliz@gnu.org>
10489
10490 * dired-x.el (dired-clean-tex): Doc fix.
10491
10492 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
10493 using a Chinese tutorial.
10494
10495 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
10496
10497 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
10498 between "MAIL FROM:" and "RCPT TO:" and the following address.
10499
10500 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
10501
10502 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
10503
10504 2003-09-28 David Ponce <david@dponce.com>
10505
10506 * recentf.el (recentf-initialize-file-name-history): New defcustom.
10507 (recentf-load-list): When `recentf-initialize-file-name-history'
10508 is non-nil, initialize an empty `file-name-history' with the
10509 recent list.
10510
10511 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
10512
10513 * man.el (Man-default-man-entry): Remove the leading `*' from the
10514 word at point.
10515
10516 2003-09-26 Lute Kamstra <lute@gnu.org>
10517
10518 * bindings.el (mode-line-position): Mention size indication in
10519 docstring.
10520
10521 2003-09-26 Andre Spiegel <spiegel@gnu.org>
10522
10523 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
10524
10525 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
10526 because it's autoloaded now.
10527
10528 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
10529
10530 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
10531 (sh-font-lock-keywords, sh-feature): Fix previous change of
10532 sh-feature to avoid infloop with sh-font-lock-keywords.
10533
10534 2003-09-25 Kim F. Storm <storm@cua.dk>
10535
10536 * frame.el (frame-current-scroll-bars): New defun.
10537
10538 * window.el (window-current-scroll-bars): New defun.
10539
10540 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10541
10542 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
10543 cause errors when the state cache contains info on parts that have
10544 been narrowed out.
10545
10546 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10547
10548 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
10549 `c-setup-paragraph-variables' has to be used when this variable is
10550 changed; it doesn't work to reinitialize the mode since that
10551 typically clobbers the variable.
10552
10553 * progmodes/cc-styles.el (c-setup-paragraph-variables):
10554 Make it interactive.
10555
10556 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10557
10558 * progmodes/cc-fonts.el (c-font-lock-declarations):
10559 Fix recognition of constructors and destructors for classes whose
10560 names are matched by `*-font-lock-extra-types'.
10561
10562 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
10563 followed by an identifier in C++ then it's a type.
10564
10565 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10566
10567 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
10568 problem that primarily affected XEmacs. Don't use faces to find
10569 unterminated strings since Emacs and XEmacs fontify strings
10570 differently - this function should now work better in XEmacs.
10571
10572 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10573
10574 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
10575 `expand-abbrev' workaround which caused braces to misbehave inside
10576 macros.
10577
10578 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
10579 handling. This bug could cause interactive font locking to bail out.
10580
10581 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10582
10583 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
10584 Handle paren-style types in Pike. Also fixed some cases of
10585 insufficient handling of unbalanced parens.
10586
10587 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
10588
10589 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
10590 common shell prompts that are not common filename or URL characters.
10591 (ffap-file-at-point): Use the new regexp to strip the prompts from
10592 the file names. This is an issue mostly for user prompts that
10593 don't have a trailing space and find-file-at-point is invoked from
10594 within a shell inside Emacs.
10595
10596 2003-09-24 Andre Spiegel <spiegel@gnu.org>
10597
10598 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
10599 stamps numerically, rather than textually.
10600
10601 2003-09-24 Kenichi Handa <handa@m17n.org>
10602
10603 * language/devan-util.el (devanagari-post-read-conversion):
10604 * language/mlm-util.el (malayalam-post-read-conversion):
10605 * language/tml-util.el (tamil-post-read-conversion):
10606 Add autoload cookie.
10607
10608 * international/utf-8.el (utf-8-post-read-conversion):
10609 Call post-read-conversion functions for Devanagari, Malayalam,
10610 and Tamil.
10611
10612 2003-09-23 Dave Love <fx@gnu.org>
10613
10614 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
10615
10616 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
10617
10618 * progmodes/gud.el (perldb): Add gud-until to list of commands.
10619 Update gud-remove.
10620
10621 2003-09-22 Richard M. Stallman <rms@gnu.org>
10622
10623 * progmodes/sh-script.el (sh-mode-default-syntax-table):
10624 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
10625 (sh-mode-syntax-table-input): New variable.
10626 (sh-require-final-newline): Don't use eval.
10627 (sh-builtins, sh-leading-keywords, sh-other-keywords)
10628 (sh-variables, sh-font-lock-keywords): Don't use eval.
10629 (sh-set-shell): When setting require-final-newline,
10630 treat value = `require-final-newline' as don't change it.
10631 Set sh-mode-syntax-table locally based on
10632 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
10633
10634 * progmodes/compile.el (compile-internal):
10635 Call compilation-set-window-height before setting window start.
10636
10637 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
10638
10639 * emacs-lisp/bytecomp.el (byte-compile-log-file):
10640 Clear out byte-compile-last-warned-form.
10641
10642 2003-09-22 Richard M. Stallman <rms@gnu.org>
10643
10644 * woman.el (woman-file-name, woman-follow-word):
10645 If current-word returns nil, use "".
10646
10647 * simple.el (eval-expression): Bind standard-output in to-buffer case.
10648
10649 2003-09-22 Richard M. Stallman <rms@gnu.org>
10650
10651 * emacs-lisp/lisp-mnt.el (lm-with-file):
10652 Don't visit the file, just use insert-file-contents in temp buffer.
10653
10654 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
10655
10656 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
10657 Add surrounding \\( and \\) around the header, as in
10658 for lm-history-header 'Change Log\\|History'.
10659
10660 2003-09-22 John Paul Wallington <jpw@gnu.org>
10661
10662 * progmodes/ld-script.el: Add Commentary section,
10663 minor cleanup of file header.
10664 (ld-script-font-lock-keywords): Doc fix.
10665 (toplevel): Provide `ld-script' feature.
10666
10667 2003-09-21 Kim F. Storm <storm@cua.dk>
10668
10669 * scroll-bar.el (set-scroll-bar-mode): Initialize to
10670 new built-in variable default-frame-scroll-bars.
10671 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
10672 scroll-bar-mode; notably, use it instead of t when we toggle
10673 scroll-bars on.
10674 (toggle-scroll-bar): Use default-frame-scroll-bars.
10675
10676 2003-09-19 Masatake YAMATO <jet@gyve.org>
10677
10678 * pcvs.el (cvs-do-removal): Change the prompt depending on
10679 `filter' value.
10680
10681 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
10682
10683 * startup.el (command-line-1): Stop startup-echo-area-message
10684 being hidden by "Loading image..." message.
10685 (use-fancy-splash-screens-p, display-splash-screen):
10686 Move display-graphic-p test from latter to former.
10687
10688 * progmodes/sh-script.el (sh-font-lock-keywords):
10689 Highlight escaped EOLs differently from other backslash constructs.
10690
10691 2003-09-19 Richard M. Stallman <rms@gnu.org>
10692
10693 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
10694 New functions.
10695 (edebug-enter, edebug-outside-excursion): Use them.
10696
10697 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
10698 Fix the condition for whether to print "In WHERE".
10699
10700 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
10701
10702 * finder.el (finder-mode-hook): New variable.
10703 (finder-mode): Run hook finder-mode-hook
10704
10705 2003-09-18 Masatake YAMATO <jet@gyve.org>
10706
10707 * progmodes/ebrowse.el: Fix broken magic autoload comments.
10708
10709 2003-09-17 Mario Lang <mlang@delysid.org>
10710
10711 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
10712 "p %e" to actually print the value in the GUD buffer.
10713
10714 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
10715
10716 From David Ponce <david.ponce@wanadoo.fr>:
10717 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
10718 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
10719 from loaddefs-boot.el if necessary.
10720
10721 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
10722
10723 * progmodes/gud.el (gud-find-class): Make jdb work again since
10724 cc-mode changed the syntactic information.
10725
10726 2003-09-15 David Ponce <david@dponce.com>
10727
10728 * recentf.el: (recentf-exclude): Accept predicates too.
10729 (recentf-file-readable-p): New function.
10730 (recentf-include-p): Handle predicates in recentf-exclude.
10731 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
10732 (recentf-cleanup): Likewise.
10733 (recentf-save-list): Use write-file to handle backup of
10734 recentf-save-file.
10735
10736 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
10737
10738 * loaddefs-boot.el: Renamed from `loaddefs.el'
10739 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
10740 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
10741 necessary.
10742
10743 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
10744
10745 * electric.el (Electric-pop-up-window): For the `one-window' case,
10746 no longer disconcertingly move point in the original buffer.
10747
10748 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10749
10750 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
10751
10752 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
10753
10754 * dired.el (dired-mode-map): Fix typo.
10755
10756 2003-09-11 Richard M. Stallman <rms@gnu.org>
10757
10758 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
10759
10760 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
10761
10762 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
10763 the function is less noisy. Now only `kill-buffer' can ask questions.
10764
10765 2003-09-10 Mario Lang <mlang@delysid.org>
10766
10767 * battery.el: Update Commentary and Copyright.
10768 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
10769 appear due to wrong ordering of the expressions in `or'.
10770
10771 2003-09-09 Lute Kamstra <lute@gnu.org>
10772
10773 * misc.el (upcase-char): Fix docstring.
10774 (zap-up-to-char): New command.
10775
10776 2003-09-08 David Ponce <david@dponce.com>
10777
10778 Ensure that recentf correctly updates the menu bar.
10779 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
10780 (recentf-menu-bar): New function.
10781 (recentf-clear-data): Use it
10782 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
10783 of easy-menu-change.
10784
10785 2003-09-08 Lute Kamstra <lute@gnu.org>
10786
10787 * simple.el (size-indication-mode): New.
10788 * bindings.el (mode-line-position): Add buffer size indicator.
10789
10790 2003-09-04 Mario Lang <mlang@delysid.org>
10791
10792 * battery.el (battery-linux-proc-acpi): New function.
10793 (battery-status-function): Modify default value calculation to also
10794 check for availability of ACPI.
10795 (battery-echo-area-format): Ditto.
10796 (battery-mode-line-format): Ditto.
10797
10798 2003-09-06 Dave Love <fx@gnu.org>
10799
10800 * ielm.el (ielm-mode-hook): Add :options.
10801
10802 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
10803 (eldoc-print-current-symbol-info): Use it.
10804
10805 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
10806
10807 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
10808 being displayed in GUD buffer.
10809 (gdb-idle-input-queue): Remove var. Use just one queue.
10810 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
10811 Remove functions. Use just one queue.
10812 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
10813 (gdb-invalidate-assembler, gdb-get-current-frame):
10814 Modify functions. Use just one queue.
10815
10816 2003-09-04 Dave Love <fx@gnu.org>
10817
10818 * cus-start.el: Add blink-cursor-alist.
10819
10820 * ruler-mode.el (ruler-mode-fill-column-char)
10821 (ruler-mode-current-column-char): Use char-displayable-p,
10822 not window-system.
10823
10824 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
10825
10826 * language/european.el (windows-1252): Move from code-pages.
10827
10828 * language/cyrillic.el ("Windows-1251"): Delete.
10829 ("Bulgarian", "Belarusian"): Remove `features'.
10830 (windows-1251): Move from code-pages.
10831
10832 * international/mule-diag.el (non-iso-charset-alist):
10833 Remove `codepage' stuff.
10834 (print-designation, list-coding-systems-1): Output fixes.
10835
10836 * international/code-pages.el (cp-make-translation-table)
10837 (cp-valid-codes): Made defsubsts.
10838 (cp-fix-safe-chars): Delete.
10839 (mule-diag): Don't require.
10840 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
10841 (top-level): Check for defined coding system when defining
10842 cp... aliases. Change w32-add-charset-info test to avoid warning.
10843 (non-iso-charset-alist): Defvar when compiling.
10844 (cp-make-coding-system): Doc fix.
10845
10846 2003-09-02 Jason Rumney <jasonr@gnu.org>
10847
10848 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
10849 line-ends from CVS before doing conversion.
10850
10851 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
10852
10853 * calendar/diary-lib.el (diary-header-line-flag)
10854 (diary-header-line-format): New variables.
10855 (list-diary-entries): Use them to set header line in simple diary.
10856
10857 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
10858 other than font-lock-string-face to highlight backslashes.
10859
10860 2003-09-01 Jason Rumney <jasonr@gnu.org>
10861
10862 * international/titdic-cnv.el (tit-read-key-value): Include \r in
10863 regexp.
10864
10865 2003-09-01 Dave Love <fx@gnu.org>
10866
10867 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
10868
10869 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
10870 and :help; also line and column numbers labels.
10871
10872 * international/mule-util.el (char-displayable-p): Move from
10873 latin1-disp, rename and autoload.
10874
10875 * international/latin1-disp.el (latin1-char-displayable-p):
10876 Now obsolete alias. Replace uses with char-displayable-p.
10877 (latin1-display-ucs-per-lynx): Fix last change.
10878
10879 * international/mule-cmds.el (standard-display-european-internal):
10880 Don't use char code for Latin-1 NBSP.
10881 <XFree86 4>: Unfrob NBSP display table. Set display table to use
10882 U+2018, U+2019 for `'.
10883 (select-safe-coding-system): Message fix.
10884
10885 2003-09-01 Kenichi Handa <handa@m17n.org>
10886
10887 * international/fontset.el (setup-default-fontset): For Thai
10888 font, specify "*" family.
10889
10890 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
10891
10892 * progmodes/compile.el (previous-error): Accept a prefix
10893 argument, similarly to next-error.
10894
10895 2003-08-31 Masatake YAMATO <jet@gyve.org>
10896
10897 * pcvs.el (cvs-do-removal): Use = instead of eq to check
10898 the number of files. Bind the number of files to a local
10899 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
10900
10901 2003-08-30 Eli Zaretskii <eliz@gnu.org>
10902
10903 * vc-hooks.el (vc-make-version-backup): Fix the change made on
10904 2003-07-26: msdos-long-file-names is a function, not a variable.
10905
10906 2003-08-29 Richard M. Stallman <rms@gnu.org>
10907
10908 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
10909 Do nothing with mail-personal-alias-file if it is nil.
10910
10911 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
10912 Do nothing if mail-personal-alias-file is nil.
10913
10914 * term.el (term-exec-1): Bind coding-system-for-read.
10915
10916 * dired.el (dired-mouse-find-file-other-window):
10917 Use dired-view-command-alist here, as in dired-view-file.
10918 (dired-view-command-alist): Use %s to substitute file name.
10919 Handle .ps_pages, .eps, .jpg, .gif, .png.
10920
10921 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
10922
10923 * info.el (Info-mode-map): Bind S-tab and <backtab> to
10924 `Info-prev-reference', instead of M-tab.
10925
10926 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
10927
10928 * simple.el (blink-matching-open): Work correctly on chars that
10929 are designated as parens through the syntax-table text property.
10930
10931 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
10932
10933 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
10934 line break position in the middle of a non-kinsoku (e.g. latin)
10935 word, making it skip until either a space or a character with
10936 category "|".
10937 (kinsoku-longer): Test for end of buffer.
10938
10939 2003-08-28 Eli Zaretskii <eliz@gnu.org>
10940
10941 * mail/rmail.el (rmail-convert-to-babyl-format):
10942 Detect quoted-printable- and base64-encoded messages and decode them
10943 automatically. Set the message's encoding from the charset=
10944 header, if any. Decode base64-encoded messages in Mail format as well.
10945
10946 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
10947
10948 * mail/smtpmail.el: Fix previous change.
10949 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
10950 calling smtpmail-via-smtp.
10951 (smtpmail-via-smtp): Add fall-back values for envelope-from.
10952
10953 2003-08-26 John Paul Wallington <jpw@gnu.org>
10954
10955 * image.el (image-jpeg-p): Don't search beyond length of data.
10956
10957 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
10958
10959 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
10960 misfeature in `expand-abbrev' which caused electric keywords like
10961 "else" to disappear if an open brace was typed directly afterwards.
10962
10963 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
10964
10965 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
10966 mandatory in `define-widget'.
10967
10968 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
10969 Don't align the operators "!=", "<=" and ">=" as assignment operators.
10970
10971 (c-assignment-operators): New language constant that only contains
10972 the assignment operators.
10973
10974 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
10975
10976 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
10977
10978 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
10979 Safeguard against unbalanced sexps.
10980
10981 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
10982
10983 * version.el (emacs-version): Check for gtk. Include gtk version info.
10984
10985 2003-08-25 John Paul Wallington <jpw@gnu.org>
10986
10987 * man.el (Man-default-man-entry): Don't whizz past the section
10988 number before looking for it.
10989
10990 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
10991
10992 * progmodes/gud.el (gud-display-line): Don't set window-point if
10993 source buffer is not visible. (Only happens with M-x gdba.)
10994
10995 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
10996 documentation.
10997 (gdb-source, gdb-source-info): Update to assembler unnecessary
10998 as its done after each GDB command anyway.
10999 (gdb-pre-prompt): Use with-current-buffer.
11000 (gdb-insert-field): Add help-echo text.
11001 (gdb-invalidate-assembler): Re-display of assembler now done in
11002 gdb-info-breakpoints-custom.
11003 (gdb-info-breakpoints-custom): Force re-display of assembler to
11004 happen *after* update of breakpoints buffer.
11005 (gdb-display-source-buffer): Don't choke if gdb-source-window
11006 isn't visible.
11007 (gdb-put-string, gdb-put-arrow): Remove free variables.
11008
11009 2003-08-24 John Paul Wallington <jpw@gnu.org>
11010
11011 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
11012
11013 * man.el (Man-default-man-entry): Strip text properties when
11014 snarfing parts of entry because `format' preserves properties.
11015
11016 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
11017
11018 * files.el (file-newest-backup): Use `expand-file-name'.
11019
11020 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
11021 Allow the diary to pop up a new frame, if needed.
11022
11023 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
11024 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
11025 (smtpmail-send-it): Make treatment of envelope-from consistent with
11026 sendmail.el.
11027
11028 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
11029 (sh-leading-keywords): Add the bash `time' reserved word.
11030 (sh-variables): Add some bash variables.
11031 (sh-add-completer): Fix nil branch of case statement.
11032
11033 2003-08-24 Masatake YAMATO <jet@gyve.org>
11034
11035 * progmodes/ld-script.el: New file.
11036
11037 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
11038
11039 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
11040
11041 2003-08-23 Andre Spiegel <spiegel@gnu.org>
11042
11043 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
11044 Better explain obsolescence, and what to use instead.
11045
11046 2003-08-23 Masatake YAMATO <jet@gyve.org>
11047
11048 * pcvs.el (cvs-do-removal): Show the deleted file name
11049 on the prompt.
11050
11051 2003-08-20 Dave Love <fx@gnu.org>
11052
11053 * international/mule.el (make-coding-system)
11054 (set-buffer-file-coding-system): Doc fix.
11055
11056 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
11057
11058 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
11059
11060 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
11061
11062 * international/utf-16.el: Add mime-text-unsuitable coding system
11063 properties.
11064
11065 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
11066
11067 * cus-edit.el: Add some :links.
11068 (bib): Remove.
11069
11070 * textmodes/bib-mode.el (bib): Add :group external.
11071
11072 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
11073
11074 * wid-edit.el (widget-echo-help): Make it handle expressions that
11075 evaluate to strings.
11076
11077 2003-08-18 Michael Mauger <mmaug@yahoo.com>
11078
11079 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
11080
11081 Simplify selection of SQL products to define highlighting and
11082 interactive mode. Includes detailed instructions on adding
11083 support for new products.
11084
11085 * progmodes/sql.el (sql-product): New variable. Identifies SQL
11086 product for use in highlighting and interactive mode.
11087 (sql-interactive-product): New variable. SQL product for
11088 sql-interactive-mode.
11089 (sql-product-support): New variable. Specifies product-specific
11090 parameters to drive highlighting and interactive mode.
11091 (sql-imenu-generic-expression): Add more object types.
11092 (sql-sqlite-options): Correct comment.
11093 (sql-ms-program): Use "osql" rather than "isql".
11094 (sql-prompt-regexp, sql-prompt-length): Update comment.
11095 (sql-mode-menu): Add "Start SQLi session" entry.
11096 Replace Highlighting submenu with Product menu. Fix Send Region entry.
11097 (sql-mode-abbrev-table): Add abbreviations. Support of
11098 SYSTEM-FLAG on define-abbrev. Support was removed with last
11099 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
11100 (sql-mode-font-lock-object-name): Add font-lock pattern for object
11101 names.
11102 (sql-mode-ansi-font-lock-keywords): Set as default value.
11103 (sql-mode-oracle-font-lock-keywords): Set as default value.
11104 Support Oracle 9i keywords.
11105 (sql-mode-postgres-font-lock-keywords): Set as default value.
11106 (sql-mode-linter-font-lock-keywords): Set as default value.
11107 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
11108 SQLServer 2000.
11109 (sql-mode-sybase-font-lock-keywords)
11110 (sql-mode-interbase-font-lock-keywords)
11111 (sql-mode-sqlite-font-lock-keywords)
11112 (sql-mode-strong-font-lock-keywords)
11113 (sql-mode-mysql-font-lock-keywords)
11114 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
11115 keywords.
11116 (sql-mode-font-lock-defaults): Update comment.
11117 (sql-product-feature): New function. Returns feature associated
11118 with a product from `sql-product-support' alist.
11119 (sql-product-font-lock): New function. Set font-lock support
11120 based on `sql-product'.
11121 (sql-add-product-keywords): New function. Add font-lock rules to
11122 product-specific keyword variables.
11123 (sql-set-product): New function. Set `sql-product' and apply
11124 appropriate font-lock highlighting.
11125 (sql-highlight-product): New function. Set font-lock support
11126 based on a product. Also set mode name to include product name.
11127 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
11128 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
11129 Use `sql-set-product'.
11130 (sql-highlight-ms-keywords)
11131 (sql-highlight-sybase-keywords)
11132 (sql-highlight-interbase-keywords)
11133 (sql-highlight-strong-keywords)
11134 (sql-highlight-mysql-keywords)
11135 (sql-highlight-sqlite-keywords)
11136 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
11137 (sql-get-login): Prompt in the same order as the tokens.
11138 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
11139 (sql-product-interactive): New function. Common portions of
11140 product-specific interactive mode wrappers.
11141 (sql-interactive-mode): Rewritten to use product features.
11142 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
11143 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
11144 (sql-db2, sql-linter): Use `sql-product-interactive'.
11145 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
11146 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
11147 (sql-connect-ingres, sql-connect-postgres)
11148 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
11149 New functions. Format command line parameters and invoke comint on
11150 the appropriate interpreter. Code was in the corresponding
11151 `sql-xyz' function before.
11152 (sql-connect-ms): New function. Support -E argument to use
11153 operating system credentials for authentication.
11154
11155 2003-08-18 Kenichi Handa <handa@m17n.org>
11156
11157 * international/mule.el (encode-char): Fix for the ASCII case.
11158
11159 2003-08-15 Kenichi Handa <handa@m17n.org>
11160
11161 * international/fontset.el (setup-default-fontset): Change "*" to
11162 nil in the specifications of font family.
11163
11164 2003-08-18 Kim F. Storm <storm@cua.dk>
11165
11166 * kmacro.el (kmacro-keymap): Group related bindings in
11167 initialization for clarity. Bind C-s to start macro.
11168 Remove C-r binding.
11169 (kmacro-initial-counter-value): New defvar to hold initial counter
11170 value in case we set the value before defining a macro.
11171 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
11172 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
11173 not defining or executing macro. Doc fix.
11174 (kmacro-add-counter): Clear kmacro-initial-counter-value.
11175 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
11176 temporarily view older elements on the macro ring without cycling
11177 the ring.
11178 (kmacro-display): Doc fix.
11179 (kmacro-exec-ring-item): New helper function.
11180 (kmacro-call-ring-2nd): Use it.
11181 (kmacro-call-ring-2nd-repeat): Doc fix.
11182 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
11183 (kmacro-end-or-call-macro): Execute last viewed macro (using
11184 kmacro-exec-ring-item) from ring if this follows
11185 kmacro-view-macro. This allows us to find a macro on the ring
11186 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
11187 the ring to bring it to the head of the ring.
11188 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
11189 Allow binding to reserved keys without specifying C-x C-k prefix.
11190 Ask for confirmation if entered key sequence is already bound to
11191 a non-macro command.
11192 (kmacro-view-macro): Repeating command will show older elements
11193 on the macro ring; C-k will execute the last viewed macro.
11194 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
11195 property from 'ring to 'head.
11196
11197 2003-08-17 Alan Shutko <ats@acm.org>
11198
11199 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
11200 keeping December out of the alist.
11201
11202 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
11203
11204 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
11205 * calendar/calendar.el (calendar-mode-map): Bind it to key.
11206 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
11207 (calendar-flatten): New function.
11208 (calendar-mouse-view-other-diary-entries)
11209 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
11210 in the menu title and to show multi-line diary entries correctly
11211 in the menu.
11212
11213 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
11214
11215 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
11216 defcustom, because the default was recently changed.
11217
11218 2003-08-16 Richard M. Stallman <rms@gnu.org>
11219
11220 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
11221
11222 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
11223 New subroutine, broken out of eval-last-sexp-1.
11224 (eval-last-sexp-1): Use eval-last-sexp-print-value.
11225
11226 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
11227
11228 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
11229
11230 * simple.el (eval-expression): Use eval-last-sexp-print-value.
11231
11232 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
11233
11234 * progmodes/compile.el (compilation-error-regexp-alist):
11235 Add Java ANt error detection as described in document
11236 http://ant.apache.org/faq.html
11237
11238 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
11239
11240 * simple.el (backward-word, forward-to-indentation)
11241 (backward-to-indentation): Argument changed to optional.
11242 (next-line, previous-line): Use `or' instead of `unless'.
11243
11244 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11245
11246 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
11247 instead of a constant.
11248
11249 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
11250
11251 * shell.el (shell): With prefix-arg, suggest a new buffer name.
11252
11253 2003-08-12 Andre Spiegel <spiegel@gnu.org>
11254
11255 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
11256 (vc-sccs-workfile-version): Search the entire delta table, rather
11257 than just the first entry, because that might be a deleted version.
11258
11259 2003-08-11 Karl Fogel <kfogel@red-bean.com>
11260
11261 * menu-bar.el (menu-bar-options-menu): Supply a body for the
11262 [save-place] binding in the Options menu. Have it require
11263 'saveplace' and then toggle the variable manually, to avoid an an
11264 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
11265 for the bug report.
11266
11267 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
11268
11269 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
11270 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
11271 (gdb-info-threads-custom): Add help-echo text.
11272 (gdb-display-back): Don't use purecopy.
11273 (gdb-info-breakpoints-custom, gdb-reset)
11274 (gdb-assembler-custom): Use display-images-p to test if breakpoint
11275 icons can be displayed.
11276
11277 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
11278
11279 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
11280
11281 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
11282
11283 * bookmark.el (bookmark-completing-read):
11284 Return a string, instead of a list of one string.
11285 Use a popup menu if activated from the mouse.
11286 (bookmark-edit-annotation): Remove unused vars.
11287 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
11288 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
11289 to bookmark-completing-read.
11290 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11291 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
11292 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
11293 and erase-buffer.
11294 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
11295 (bookmark-menu-jump, bookmark-menu-insert)
11296 (bookmark-popup-menu-and-apply-function)
11297 (bookmark-menu-popup-paned-bookmark-menu): Remove.
11298 (bookmark-menu-build-paned-menu): Remove by folding it into
11299 bookmark-menu-popup-paned-menu.
11300 (menu-bar-bookmark-map): Move the define-key statements here.
11301 Use the "non-menu" commands since they now pop up a menu if needed.
11302 (bookmark-exit-hook-internal): Simplify.
11303
11304 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
11305
11306 * reftex-toc.el (reftex-toc-rename-label): New function.
11307 (reftex-toc-check-docstruct): New function.
11308
11309 * reftex.el (reftex-region-active-p): New function.
11310
11311 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
11312 regexp to find the \bibliography macro.
11313
11314 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
11315 which does not exist in LaTeX.
11316 (reftex-cite-format-builtin): Added amsrefs support.
11317 (reftex-toc-confirm-promotion): New option
11318
11319 * reftex-toc.el
11320 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
11321 (reftex-toc-demote, reftex-toc-promote)
11322 (reftex-toc-do-promote, reftex-toc-promote-prepare)
11323 (reftex-toc-promote-action, reftex-toc-extract-section-number)
11324 (reftex-toc-newhead-from-alist)
11325 (reftex-toc-load-all-files-for-promotion): New functions.
11326 (reftex-toc-help): Added description of new keys.
11327 (reftex-toc-split-windows-fraction): New option.
11328 (reftex-recenter-toc-when-idle): Search *toc* window on all
11329 visible frames.
11330 (reftex-toc): Additional parameter REUSE
11331 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
11332 with REUSE argument.
11333 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
11334 the call of `reftex-toc'.
11335 (reftex-make-separate-toc-frame): New function .
11336 (reftex-toc-recenter): When called with triple prefix arg, call
11337 `reftex-make-separate-toc-frame' first.
11338 (reftex-toc-toggle-dedicated-frame): New command.
11339 (reftex-toc-quit): Adapted to delete frame when called in
11340 dedicated frame.
11341
11342 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
11343 all enclosing macros.
11344
11345
11346 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11347
11348 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
11349 first use.
11350
11351 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11352
11353 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
11354
11355 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
11356
11357 * calendar/calendar.el (list-diary-entries-hook)
11358 (diary-display-hook, nongregorian-diary-listing-hook)
11359 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
11360 Add some customize options for these hooks.
11361 (calendar-abbrev-construct): Don't try to take a substring longer
11362 than the original string.
11363
11364 2003-08-05 Richard M. Stallman <rms@gnu.org>
11365
11366 * emacs-lisp/testcover.el (noreturn): Report error if does return.
11367 (testcover-reinstrument-clauses): Doc fix.
11368
11369 * emacs-lisp/warnings.el: Doc fixes, args renamed.
11370 (warning-type-format): Rename from warning-group-format.
11371
11372 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
11373 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
11374 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
11375 to prevent warnings about defvar for an obsolete variable.
11376
11377 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
11378 warning-group-format renamed to warning-type-format.
11379
11380 * subr.el (read-passwd): Use clear-string instead of fillarray.
11381
11382 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
11383 Use vconcat instead of concat.
11384 (edmacro-sanitize-for-string): New function.
11385
11386 2003-08-05 Dave Love <fx@gnu.org>
11387
11388 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
11389 line-number-display-limit-width.
11390
11391 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
11392
11393 2003-08-05 Kenichi Handa <handa@m17n.org>
11394
11395 * international/code-pages.el: Don't require mule-diag.
11396
11397 * international/mule-diag.el (non-iso-charset-alist):
11398 Add autoload cookie.
11399
11400 * language/devan-util.el (dev-glyph-order): Add an entry for the
11401 glyph code #xC4.
11402
11403 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
11404
11405 * calendar/calendar.el (diary-file, diary-file-name-prefix)
11406 (european-calendar-style, diary-date-forms)
11407 (calendar-day-name-array, calendar-month-name-array): Doc change.
11408 (generate-calendar-month): Adapt for new behaviour of
11409 `calendar-day-name' function.
11410 (calendar-abbrev-length, calendar-day-abbrev-array)
11411 (calendar-month-abbrev-array): New variables.
11412 (calendar-abbrev-construct): New function.
11413 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
11414 rather than fixing abbrevs at some width. Calling syntax change.
11415 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
11416 (calendar-date-string): Adapt for new behaviours of
11417 `calendar-day-name' and `calendar-month-name' functions.
11418
11419 * calendar/diary-lib.el (list-diary-entries): Adapt for new
11420 behaviour of `calendar-day-name' and `calendar-month-name' functions.
11421 (diary-name-pattern): Use abbrev arrays, rather than fixing
11422 abbrevs at three chars. Calling syntax change.
11423 (mark-diary-entries): Adapt for new behaviours of
11424 `diary-name-pattern' and `calendar-make-alist' functions.
11425 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
11426 `diary-name-pattern' function.
11427 (font-lock-diary-date-forms): Use abbrev arrays, rather than
11428 fixing abbrevs at three chars. Calling syntax change.
11429 (cal-hebrew, cal-islam): Require when compiling.
11430 (diary-font-lock-keywords): Adapt for new behaviour of
11431 `font-lock-diary-date-forms' function.
11432
11433 * calendar/cal-hebrew.el: Reposition some code so defined before used.
11434 (calendar-hebrew-month-name-array-common-year)
11435 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
11436 (list-hebrew-diary-entries): Adapt for new behaviours of
11437 `calendar-day-name' and `add-to-diary-list' functions.
11438 (mark-hebrew-diary-entries): Adapt for new behaviours of
11439 `diary-name-pattern' and `calendar-make-alist' functions.
11440
11441 * calendar/cal-islam.el (calendar-islamic-month-name-array):
11442 Add doc string.
11443 (list-islamic-diary-entries): Adapt for new behaviours of
11444 `calendar-day-name' and `add-to-diary-list' functions.
11445 (mark-islamic-diary-entries): Adapt for new behaviours of
11446 `diary-name-pattern' and `calendar-make-alist' functions.
11447
11448 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
11449 `calendar-month-name' function.
11450
11451 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
11452
11453 * calendar/solar.el (solar-seasons-data): Move definition before use.
11454
11455 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
11456 (cal-tex-LaTeX-hourbox): Move definition before use.
11457
11458 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
11459 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
11460 lunar.el, solar.el
11461 (displayed-month, displayed-year): Define for compiler.
11462
11463 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
11464
11465 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
11466 MODE. Renamed from c-init-c-language-vars'.
11467 (c-initialize-cc-mode): Change accordingly.
11468 (c-common-init): Ditto.
11469 (c-mode): Ditto.
11470 (c++-mode): Use `c-init-language-vars-for'.
11471 (objc-mode): Ditto.
11472 (java-mode): Ditto.
11473 (idl-mode): Ditto.
11474 (pike-mode): Ditto.
11475 (awk-mode): Ditto.
11476
11477 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
11478
11479 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
11480 or not the point moved.
11481
11482 (c-search-decl-header-end): Don't trip up on operator identifiers
11483 in C++ and operators like == in all languages.
11484
11485 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
11486 Detect leading labels correctly.
11487
11488 2003-08-02 Andreas Schwab <schwab@suse.de>
11489
11490 * textmodes/ispell.el: Don't redo key bindings on loading, put
11491 them only in loaddefs.el.
11492 * bookmark.el: Likewise.
11493 * dabbrev.el: Likewise.
11494 * emerge.el: Likewise.
11495
11496 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
11497 has more than one member.
11498
11499 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
11500
11501 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11502
11503 * lpr.el (printify-region): It was ending conversion before the
11504 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
11505
11506 2003-07-31 John Paul Wallington <jpw@gnu.org>
11507
11508 * net/browse-url.el (browse-url-epiphany): Doc fix.
11509
11510 2003-07-30 Kenichi Handa <handa@m17n.org>
11511
11512 * international/fontset.el (setup-default-fontset):
11513 Change registry names of Akurti fonts.
11514
11515 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
11516
11517 * comint.el (comint-read-noecho): Use `clear-string' instead of
11518 `fillarray'.
11519
11520 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
11521
11522 * outline.el (outline-mode-hook): Add defvar.
11523
11524 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
11525
11526 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
11527 Restore assembler in source window if that is what has been selected.
11528 (menu): Add gdb-restore-windows to menu. Make gdba
11529 specific menus only visible from gdba.
11530
11531 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
11532
11533 * progmodes/compile.el (compilation-environment): New user variable.
11534 (compile-internal): Respect it.
11535
11536 2003-07-23 Masatake YAMATO <jet@gyve.org>
11537
11538 * progmodes/gud.el (gdb-script-font-lock-keywords):
11539 Put `font-lock-function-name-face' on a symbol which includes
11540 `-' like `hook-run'. Put font-lock-variable-name-face
11541 on a symbol starting with $.
11542
11543 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
11544
11545 * files.el (set-visited-file-name): Use truename for buffer-file-name.
11546
11547 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
11548
11549 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
11550
11551 2003-07-26 Andre Spiegel <spiegel@gnu.org>
11552
11553 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
11554 Use with-no-warnings.
11555 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
11556 rather than to find-file-not-found-hook, which doesn't exist.
11557
11558 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
11559
11560 * international/quail.el (quail-translate-key): Fix previous change.
11561
11562 2003-07-25 John Paul Wallington <jpw@gnu.org>
11563
11564 * server.el (server-start): Check `server-process' is non-nil
11565 before killing it to avoid killing current buffer's process.
11566
11567 * simple.el (choose-completion-string): Use `minibufferp';
11568 test `completion-reference-buffer' if `buffer' arg is nil.
11569 (push-mark): Use `when' and `unless'.
11570 (pop-mark): Use `when'.
11571
11572 * mouse-sel.el (mouse-sel-get-selection-function):
11573 Check `x-last-selected-text-primary'. Don't barf if it or
11574 `x-last-selected-text' aren't bound.
11575
11576 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
11577
11578 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
11579
11580 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
11581
11582 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
11583
11584 2003-07-23 John Paul Wallington <jpw@gnu.org>
11585
11586 * tooltip.el (defface tooltip): Inherit from variable-pitch.
11587
11588 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
11589
11590 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
11591 string. Defvar the derived hook.
11592
11593 * macros.el (insert-kbd-macro): Escape double quote character.
11594 From Thomas W Murphy <twm@andrew.cmu.edu>.
11595
11596 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
11597
11598 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
11599 to match the specific mark rather than reusing comment-start-skip.
11600
11601 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
11602
11603 * progmodes/hideshow.el (hs-special-modes-alist):
11604 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
11605
11606 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
11607
11608 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
11609 value using ?\s.
11610
11611 2003-07-21 John Paul Wallington <jpw@gnu.org>
11612
11613 * subr.el (with-selected-window): Add closing paren.
11614
11615 2003-07-21 Richard M. Stallman <rms@gnu.org>
11616
11617 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
11618 (lisp-mode): Likewise.
11619
11620 * subr.el (with-selected-window): Copy code form save-selected-window
11621 so as to call select-window with norecord arg.
11622 (dynamic-completion-table): Doc fix.
11623 (lazy-completion-table): Doc fix.
11624
11625 * international/mule-cmds.el (set-locale-environment):
11626 langinfo renamed to locale-info.
11627
11628 * international/mule.el (auto-coding-functions): Doc fix.
11629
11630 2003-07-21 Kenichi Handa <handa@m17n.org>
11631
11632 * international/quail.el (quail-translate-key):
11633 Update quail-current-str correctly.
11634
11635 2003-07-21 Andreas Schwab <schwab@suse.de>
11636
11637 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
11638 ?, to "_".
11639
11640 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
11641 Version 2.0.36 of Tramp released.
11642
11643 * net/tramp.el (tramp-default-password-end-of-line): Rename from
11644 tramp-password-end-of-line.
11645 (tramp-password-end-of-line): New method parameter.
11646 (tramp-get-password-end-of-line): Function to access method
11647 parameter `tramp-password-end-of-line', or variable
11648 `tramp-default-password-end-of-line' (default value).
11649 (tramp-methods): Add entries for new parameter
11650 tramp-password-end-of-line.
11651 (tramp-enter-password): Use new function
11652 `tramp-get-password-end-of-line'.
11653 (tramp-handle-insert-file-contents): Do not
11654 unconditionally inhibit the file operation file-local-copy, only
11655 do that when the inhibit-file-name-operation is currently
11656 insert-file-contents. This fixes finding remote CVS-controlled
11657 files. (It would barf on inserting the CVS/Entries file
11658 literally, because the file-local-copy handler wasn't called.)
11659 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
11660 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
11661 (tramp-initial-commands): New variable.
11662 (tramp-process-initial-commands): New function, using the variable.
11663 (tramp-open-connection-setup-interactive-shell): Call the new function.
11664 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
11665 method into the buffer name, never use nil. Reported by Hanak
11666 David <dhanak@inf.bme.hu>.
11667 (tramp-open-connection-setup-interactive-shell): Erase buffer
11668 before sending "stty -onlcr".
11669
11670 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
11671
11672 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
11673
11674 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
11675
11676 2003-07-19 John Paul Wallington <jpw@gnu.org>
11677
11678 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
11679 (artist-draw-rect, artist-draw-square): Doc fixes.
11680
11681 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
11682
11683 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
11684
11685 2003-07-19 Kenichi Handa <handa@m17n.org>
11686
11687 * international/kkc.el (kkc-show-conversion-list-update):
11688 Highlight the correct candidate in the message.
11689
11690 2003-07-18 John Paul Wallington <jpw@gnu.org>
11691
11692 * simple.el (current-word): Don't include punctuation char when
11693 `really-word' arg is non-nil.
11694
11695 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
11696
11697 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
11698 moved to the directory obsolete.
11699
11700 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
11701
11702 * info.el (Info-menu-entry-name-re): Allow newlines in
11703 menu entry names.
11704
11705 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
11706 syntax-ppss-after-change-function.
11707 (syntax-ppss-after-change-function): New alias. Update uses.
11708 (syntax-ppss): Catch the case where the buffer is narrowed.
11709
11710 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
11711
11712 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
11713 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
11714
11715 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
11716
11717 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
11718 since it might be modified.
11719
11720 * progmodes/cc-langs.el (c++-make-template-syntax-table)
11721 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
11722 names to these language constants.
11723
11724 2003-07-15 Kim F. Storm <storm@cua.dk>
11725
11726 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
11727 All uses changed.
11728
11729 2003-07-14 Mark A. Hershberger <mah@everybody.org>
11730
11731 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
11732 Namespace support.
11733
11734 2003-07-13 Juanma Barranquero <lektu@terra.es>
11735
11736 * frame.el (modify-all-frames-parameters): Reinstall (copyright
11737 papers received).
11738
11739 2003-07-13 Karl Eichwalder <ke@suse.de>
11740
11741 * textmodes/po.el (po-find-charset): White space at the start of the
11742 Content-Type field body is non-mandatory.
11743
11744 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
11745
11746 * textmodes/texinfo.el (texinfo-section-list):
11747 Append appendixsection; a synonym for appendixsec.
11748
11749 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
11750
11751 * man.el (Man-translate-cleanup): New.
11752 (Man-translate-references): Call `Man-translate-cleanup' to clean
11753 leading, trailing and middle spaces.
11754
11755 2003-07-13 Lars Hansen <larsh@math.ku.dk>
11756
11757 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
11758 Handle `dired-directory' being a list.
11759
11760 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
11761
11762 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
11763 it doesn't exist.
11764
11765 2003-07-12 Richard M. Stallman <rms@gnu.org>
11766
11767 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
11768
11769 * progmodes/cc-defs.el (c-make-keywords-re):
11770 Don't use delete-duplicates.
11771 (c-lang-const): Don't use mapcan.
11772
11773 * apropos.el (apropos-show-scores): Make it customizable.
11774 Document new meaning.
11775 (apropos): Compute scores from symbols.
11776 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
11777
11778 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11779
11780 * ps-bdf.el: Fix copyright line.
11781 (bdf-directory-list): Fix initialization code.
11782
11783 2003-07-11 John Paul Wallington <jpw@gnu.org>
11784
11785 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
11786 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
11787 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
11788
11789 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
11790
11791 * emacs-lisp/ring.el (ring-elements): Doc fix.
11792
11793 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
11794
11795 * calendar/timeclock.el (timeclock-relative)
11796 (timeclock-ask-before-exiting, timeclock-use-display-time):
11797 Doc changes.
11798 (timeclock-modeline-display): Give a message if
11799 `timeclock-use-display-time' is non-nil but `display-time-mode'
11800 is not active.
11801
11802 2003-07-11 Kenichi Handa <handa@m17n.org>
11803
11804 * international/mule-cmds.el (set-language-environment):
11805 Set current-language-environment to the correct string.
11806
11807 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11808
11809 * ps-print.el: Print line number correctly in a region. Reported by
11810 Tim Allen <timallen@ls83.fsnet.co.uk>.
11811 (ps-print-version): New version number (6.6.2).
11812 (ps-printing-region): Code fix.
11813
11814 2003-07-10 John Paul Wallington <jpw@gnu.org>
11815
11816 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
11817 this function can be called from `add-completions-from-tags-table'.
11818
11819 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
11820
11821 * calendar/timeclock.el (timeclock-use-display-time)
11822 (timeclock-day-over-hook, timeclock-workday-remaining)
11823 (timeclock-status-string, timeclock-when-to-leave)
11824 (timeclock-when-to-leave-string, timeclock-log-data)
11825 (timeclock-find-discrep, timeclock-day-base)
11826 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
11827 (timeclock-modeline-display): Set the variable
11828 `timeclock-modeline-display'.
11829 (timeclock-update-modeline): Doc fix. Respect value of
11830 `timeclock-relative'.
11831
11832 2003-07-09 Richard M. Stallman <rms@gnu.org>
11833
11834 * textmodes/reftex-parse.el (reftex-all-document-files):
11835 Add autoload cookie.
11836
11837 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
11838 (reftex-scanning-info-available-p): Add autoload cookie.
11839
11840 * international/mule-cmds.el
11841 (set-display-table-and-terminal-coding-system): Delete duplicate
11842 aset on standard-display-table.
11843
11844 * view.el (view-file): If existing buffer's major mode is special,
11845 don't go into view mode.
11846
11847 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
11848
11849 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11850
11851 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
11852 buffer changes; there's third party code that calls this function
11853 directly.
11854
11855 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11856
11857 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
11858 (autodoc-font-lock-keywords): Don't byte compile on font lock
11859 initialization when running from byte compiled files.
11860
11861 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11862
11863 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
11864 statement ends with auto-increment "++".
11865
11866 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11867
11868 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
11869 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
11870 these are changed, so declare them as variables and not constants.
11871
11872 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
11873
11874 * subr.el (dolist, dotimes): Doc fix.
11875
11876 2003-07-08 Kim F. Storm <storm@cua.dk>
11877
11878 * international/mule-cmds.el
11879 (set-display-table-and-terminal-coding-system): Don't break
11880 bootstrap if standard-display-table isn't setup yet.
11881
11882 2003-07-07 Richard M. Stallman <rms@gnu.org>
11883
11884 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
11885 Give it a doc string, and autoload it.
11886
11887 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
11888 Use with-no-warnings.
11889
11890 * info.el (Info-search): If find invisible text, search again.
11891
11892 * isearch.el (search-whitespace-regexp): Add a shy group around it.
11893
11894 * man.el (Man-name-regexp): Match + as part of name.
11895
11896 * simple.el (visible-mode): Rename from vis-mode.
11897 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
11898
11899 * simple.el (current-word): New arg REALLY-WORD specifies
11900 don't include punctuation chars.
11901
11902 * emacs-lisp/debug.el (debug, debugger-env-macro):
11903 Use with-no-warnings while accessing and binding unread-command-char.
11904
11905 * international/mule-cmds.el
11906 (set-display-table-and-terminal-coding-system): Use explicit loop
11907 instead of calling standard-display-default.
11908
11909 * net/ange-ftp.el (ange-ftp-file-symlink-p):
11910 Use condition-case to catch error in ange-ftp-get-files.
11911
11912 * net/browse-url.el (browse-url-browser-function):
11913 Add alternative for Epiphany.
11914 (browse-url-epiphany-program, browse-url-epiphany-arguments)
11915 (browse-url-epiphany-startup-arguments)
11916 (browse-url-epiphany-new-window-is-tab): New variables.
11917 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
11918
11919 * progmodes/compile.el (compile-auto-highlight): Default now t.
11920 (compile): Doc fix.
11921 (compilation-next-error): Fix previous change.
11922
11923 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
11924
11925 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
11926
11927 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
11928
11929 * gdb-ui.el (gdb-source-info): Display current frame when
11930 attaching to an existing process.
11931 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
11932 while laying out windows when attaching to an existing process.
11933
11934 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
11935
11936 * info.el (Info-menu): Use Info-menu-entry-name-re.
11937
11938 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
11939
11940 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
11941 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
11942
11943 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
11944 to match the same text.
11945
11946 2003-07-06 John Paul Wallington <jpw@gnu.org>
11947
11948 * vc.el (vc-annotate-offset): Move defvar up.
11949
11950 2003-07-06 Kim F. Storm <storm@cua.dk>
11951
11952 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
11953 This should fix the infinite loop when extracting menu names.
11954
11955 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
11956
11957 * files.el (auto-mode-alist, interpreter-mode-alist):
11958 Remove entries to CC Mode modes to avoid duplicates; they are now added
11959 with autoload directives in cc-mode.el.
11960
11961 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
11962
11963 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
11964 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
11965 these are changed, so declare them as variables and not constants.
11966
11967 * progmodes/cc-mode.el: Fix some autoload problems: Try to
11968 ensure that the entry for ".c" extension comes before the one for
11969 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
11970 Fix incorrect entries that were added to `interpreter-mode-alist'.
11971 Move the autoload directives for AWK to the top level since they
11972 aren't recognized anywhere else. Do not use the new AWK mode doc
11973 in the autoload form for the old AWK mode.
11974
11975 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11976
11977 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
11978 (bibtex-sort-ignore-string-entries): Default value t.
11979 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
11980 erroneously in previous version.
11981 (bibtex-string-files): Docstring reflects new parsing scheme.
11982 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
11983 docstring, add # as one of the chars to crush
11984 (bibtex-autokey-prefix-string, bibtex-autokey-names)
11985 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
11986 (bibtex-autokey-name-change-strings)
11987 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
11988 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
11989 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
11990 (bibtex-autokey-title-terminators)
11991 (bibtex-autokey-titlewords-stretch)
11992 (bibtex-autokey-titleword-ignore)
11993 (bibtex-autokey-titleword-case-convert)
11994 (bibtex-autokey-titleword-abbrevs)
11995 (bibtex-autokey-titleword-abbrevs)
11996 (bibtex-autokey-titleword-change-strings)
11997 (bibtex-autokey-titleword-length)
11998 (bibtex-autokey-titleword-separator)
11999 (bibtex-autokey-name-year-separator)
12000 (bibtex-autokey-year-title-separator)
12001 (bibtex-autokey-before-presentation-function)
12002 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
12003 Fix docstring.
12004 (bibtex-strings, bibtex-reference-keys):
12005 Use lazy-completion-table and make-variable-buffer-local.
12006 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
12007 (bibtex-braced-string-syntax-table)
12008 (bibtex-quoted-string-syntax-table): New variables.
12009 (bibtex-parse-nested-braces): Remove.
12010 (bibtex-parse-field-string): Use syntax table and forward-sexp.
12011 (bibtex-parse-association): Simplify.
12012 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
12013 (bibtex-parse-field-text): Simplify.
12014 (bibtex-search-forward-field, bibtex-search-backward-field):
12015 argument BOUND can take value t.
12016 (bibtex-start-of-field, bibtex-start-of-name-in-field)
12017 (bibtex-end-of-name-in-field, bibtex-end-of-field)
12018 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
12019 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
12020 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
12021 (bibtex-skip-to-valid-entry): Return buffer position of beginning
12022 and ending of entry. Update for changes of bibtex-search-entry.
12023 Simplify.
12024 (bibtex-map-entries): FUN is called with three arguments.
12025 (bibtex-search-entry): Return a cons pair with buffer positions of
12026 beginning and end of entry.
12027 (bibtex-enclosing-field): Simplify.
12028 (bibtex-format-entry): Use booktitle to set a missing title.
12029 (bibtex-autokey-get-names): Fiddle with regexps.
12030 (bibtex-generate-autokey): Use identity.
12031 (bibtex-parse-keys): Use simplified parsing algorithm if
12032 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
12033 arguments. Return alist of keys.
12034 (bibtex-parse-strings): Simplify. Return alist of strings.
12035 (bibtex-complete-string-cleanup): Fix docstring.
12036 (bibtex-read-key): New function.
12037 (bibtex-mode): Fix docstring. Do not parse for keys and
12038 strings when the mode is entered. Set fill-paragraph-function to
12039 bibtex-fill-field. Setup font-lock-mark-block-function the way
12040 font-lock intended.
12041 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
12042 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
12043 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
12044 (bibtex-Preamble): Avoid hard coded constants.
12045 (bibtex-make-field): Fix docstring. Simplify.
12046 (bibtex-beginning-of-entry): Always return new position of point.
12047 (bibtex-end-of-entry): Rearrange cond clauses.
12048 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
12049 Update for changes of bibtex-map-entries.
12050 (bibtex-ispell-abstract): Do not move point.
12051 (bibtex-entry-index): Use downcase. Simplify.
12052 (bibtex-lessp): Handle catch-all.
12053 (bibtex-find-crossref): Turn into a command.
12054 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
12055 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
12056 preamble entries.
12057 (bibtex-fill-field-bounds): New function.
12058 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
12059 (bibtex-fill-entry): Use bibtex-fill-field-bounds
12060 (bibtex-String): Use bibtex-strings. Always obey
12061 bibtex-sort-ignore-string-entries.
12062
12063 2003-07-05 John Paul Wallington <jpw@gnu.org>
12064
12065 * cus-theme.el (customize-create-theme):
12066 Call `customize-create-theme' in Reset widget's notify function.
12067
12068 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
12069 (ibuffer-mark-interactive): Use `or' instead of `unless'.
12070 (define-ibuffer-column name): Add summarizer.
12071 (define-ibuffer-column size): Likewise.
12072 (define-ibuffer-column filename): Likewise.
12073 (define-ibuffer-column process): Likewise. Change BODY's output too.
12074 (define-ibuffer-column filename-and-process): Likewise, likewise.
12075 (ibuffer): Remove local vars `already-in' and `need-update'.
12076
12077 * ibuf-ext.el: Don't require `derived' at compile-time.
12078
12079 2003-07-05 Kim F. Storm <storm@cua.dk>
12080
12081 * info.el: Disable paragraph refilling.
12082 (Info-refill-paragraphs): New defcustom.
12083 (Info-fontify-node): Use it.
12084
12085 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
12086
12087 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
12088 thingies from constructors created by defstruct.
12089
12090 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
12091 the default value of the variable.
12092 (byte-code-meter): Move declaration to top level.
12093
12094 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
12095
12096 * info.el (Info-following-node-name-re): New fun.
12097 (Info-following-node-name): Remove.
12098 (Info-insert-dir): Use the new fun.
12099 (Info-extract-pointer): Don't save restriction; use new fun.
12100 (Info-menu-entry-name-re): New const.
12101 (Info-menu-entry-name-re): Use it along with new fun.
12102 (Info-node-spec-re): Use new fun.
12103 (Info-complete-menu-item, Info-fontify-node): Use new const.
12104 (Info-goto-node, Info-follow-reference, Info-menu-update):
12105 Use match-string.
12106 (Info-follow-reference): Use assoc-string.
12107 Use a list of strings for the completion table.
12108 (Info-fontify-node): Use match-string, line-end-position.
12109 Limit the search for `node:' to the first line.
12110
12111 * newcomment.el (uncomment-region): Remove padding coming from
12112 comment-start rather than just from comment-padding.
12113
12114 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
12115 (vc-cvs-stay-local-p): Use vc-stay-local-p.
12116 (vc-cvs-rename-file): Remove (use the default).
12117 (vc-cvs-register): Register parent dir if needed.
12118 (vc-cvs-could-register): Return non-nil if parent can be registered.
12119 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
12120 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
12121
12122 * vc-svn.el (vc-svn-use-edit): Make it into a const.
12123 (vc-svn-update): Fix the arguments to `svn'.
12124 (vc-svn-diff-tree): Just use `vc-svn-diff'.
12125 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
12126 Simple implementations, assuming `name' is a URL.
12127
12128 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
12129 set of chars allowed unquoted in a case pattern.
12130
12131 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
12132
12133 * font-lock.el (font-lock-extra-types-widget)
12134 (c-font-lock-extra-types, c++-font-lock-extra-types)
12135 (objc-font-lock-extra-types, java-font-lock-extra-types)
12136 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
12137 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
12138 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
12139 (font-lock-match-c++-structor-declaration)
12140 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
12141 (c++-font-lock-keywords-3, c++-font-lock-keywords)
12142 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
12143 (objc-font-lock-keywords-3, objc-font-lock-keywords)
12144 (java-font-lock-keywords-1, java-font-lock-keywords-2)
12145 (java-font-lock-keywords-3, java-font-lock-keywords)
12146 (java-font-lock-syntactic-face-function): Remove obsolete code
12147 and constants. It's all in cc-fonts.el now.
12148
12149 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
12150
12151 * mail/sendmail.el (mail-specify-envelope-from)
12152 (mail-envelope-from): Doc fix.
12153
12154 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
12155
12156 * generic-x.el: Do away with the dependency on `c-emacs-features'
12157 when populating `rul-generic-mode-syntax-table'; we already know
12158 this isn't XEmacs.
12159
12160 See ChangeLog.10 for earlier changes.
12161
12162 ;; Local Variables:
12163 ;; coding: iso-2022-7bit
12164 ;; End:
12165
12166 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
12167 Copying and distribution of this file, with or without modification,
12168 are permitted provided the copyright notice and this notice are preserved.
12169
12170 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1