]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog
1 2004-09-03 Kim F. Storm <storm@cua.dk>
2
3 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
4 point is set (and displayed) inside rectangle.
5 (cua--rectangle-operation): Fix for highlight of empty lines.
6 (cua--highlight-rectangle): Fix highlight for tabs.
7 Position cursor at left/right edge of rectangle using new `cursor'
8 property on overlay strings.
9 (cua--indent-rectangle): Don't tabify.
10 (cua-rotate-rectangle): Ignore that point has moved.
11
12 2004-09-02 Juri Linkov <juri@jurta.org>
13
14 * progmodes/compile.el (compilation-buffer-name): Compare major
15 mode with second element of compilation-arguments instead of third
16 to reflect latest changes in compilation-arguments structure.
17 (recompile): Use global variable `compilation-directory' to get
18 recent compilation directory only when `recompile' is invoked NOT
19 in the compilation buffer. Otherwise, use `default-directory' of
20 the compilation buffer.
21 (compilation-error-properties): Allow to funcall col and end-col.
22 (compilation-mode-font-lock-keywords): Check col and end-col by
23 `integerp'.
24 (compilation-goto-locus): If end-mk is non-nil in transient mark
25 mode don't activate the mark (and don't display message in
26 push-mark), but highlight overlay between mk and end-mk.
27
28 * progmodes/grep.el (grep-highlight-matches): New defcustom.
29 (grep-regexp-alist): Add rule to highlight grep matches.
30 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
31
32 * info.el (Info-fontify-node): Don't compute other-tag
33 if Info-hide-note-references=hide.
34
35 * help.el (function-called-at-point):
36 * help-fns.el (variable-at-point):
37 Try `find-tag-default' when other methods failed.
38
39 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
40 Do not push mark if inhibit-mark-movement is non-nil.
41
42 * textmodes/ispell.el (ispell-html-skip-alists):
43 Fix backslashes in docstring.
44
45 2004-09-01 Juri Linkov <juri@jurta.org>
46
47 * isearch.el (isearch-wrap-function)
48 (isearch-push-state-function): New defvars.
49 (isearch-pop-fun-state): New defsubst.
50 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
51 (isearch-push-state): Set the result of calling
52 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
53 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
54 restore the mode-specific starting point of terminated search.
55 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
56 (isearch-repeat): Call `isearch-wrap-function' if defined.
57 (isearch-message-prefix): Don't add prefix "over" to the message
58 for wrapped search if `isearch-wrap-function' is defined.
59 (isearch-search): Call function saved in `isearch-pop-fun-state' to
60 restore the mode-specific starting point of failed search.
61
62 * info.el (Info-search-whitespace-regexp): Fix backslashes.
63 (Info-search): Add new optional arguments for the sake of isearch.
64 Replace whitespace in Info-search-whitespace-regexp literally.
65 Add backward search. Don't call `Info-select-node' if regexp is
66 found in the same Info node. Don't add node to Info-history for
67 wrapped isearch.
68 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
69 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
70 (Info-mode): Set local variables `isearch-search-fun-function',
71 `isearch-wrap-function', `isearch-push-state-function',
72 `search-whitespace-regexp'.
73
74 * isearch.el: Remove ancient Change Log section.
75 (isearch-string, isearch-message-string, isearch-point)
76 (isearch-success, isearch-forward-flag, isearch-other-end)
77 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
78 (isearch-barrier, isearch-within-brackets)
79 (isearch-case-fold-search): Add suffix `-state' to state-related
80 defsubsts to avoid name clashes with other function names.
81
82 * simple.el (next-error): New defgroup and defface.
83 (next-error-highlight, next-error-highlight-no-select):
84 New defcustoms.
85 (next-error-no-select): Let-bind next-error-highlight to the value
86 of next-error-highlight-no-select before calling `next-error'.
87
88 * progmodes/compile.el (compilation-goto-locus):
89 Use `next-error' face instead of `region'. Set 4-th argument of
90 `move-overlay' to `current-buffer' to move overlay to different
91 source buffers. Use new variable `next-error-highlight'.
92
93 * simple.el (next-error-find-buffer): Move the rule
94 "if current buffer is a next-error capable buffer" after the
95 rule "if next-error-last-buffer is set to a live buffer".
96 Simplify to test all rules in one `or'.
97 (next-error): Doc fix.
98 (next-error, previous-error, first-error)
99 (next-error-no-select, previous-error-no-select):
100 Make arguments optional.
101
102 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
103
104 * macros.el (apply-macro-to-region-lines): Make it operate on all
105 lines that begin in the region, rather than on all complete lines
106 in the region.
107
108 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
109
110 * x-dnd.el (x-dnd-protocol-alist): Document update.
111 (x-dnd-known-types): Defcustom it.
112 (x-dnd-handle-motif): Print message-atom in error message.
113
114 2004-08-30 John Paul Wallington <jpw@gnu.org>
115
116 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
117 strings rather than programatically constructing message.
118
119 2004-08-30 Richard M. Stallman <rms@gnu.org>
120
121 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
122 Don't return a string that would read as the wrong character code.
123
124 2004-08-29 Kim F. Storm <storm@cua.dk>
125
126 * emulation/cua-base.el (cua-auto-expand-rectangles): Remove
127 automatic rectangle padding feature; replace by non-destructive
128 virtual rectangle edges feature.
129 (cua-virtual-rectangle-edges): New defcustom.
130 (cua-auto-tabify-rectangles): New defcustom.
131 (cua-paste): If paste into a marked rectangle, insert rectangle at
132 current column, even if virtual; also paste exactly as many lines
133 as has been marked (ignore additional lines or add empty lines),
134 but paste whole source if only one line is marked.
135 (cua--update-indications): No longer use overwrite-cursor to
136 indicate rectangle padding
137
138 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
139 (cua--rectangle-virtual-edges): New defun.
140 (cua--rectangle-get-corners): Remove optional PAD arg.
141 (cua--rectangle-set-corners): Never do padding.
142 (cua--forward-line): Remove optional PAD arg. Simplify.
143 (cua-resize-rectangle-right, cua-resize-rectangle-left)
144 (cua-resize-rectangle-down, cua-resize-rectangle-up):
145 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
146 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
147 (cua--rectangle-move): Never do padding. Simplify.
148 (cua--tabify-start): New defun.
149 (cua--rectangle-operation): Add tabify arg. All callers changed.
150 (cua--pad-rectangle): Remove.
151 (cua--delete-rectangle): Handle delete with virtual edges.
152 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
153 (cua--insert-rectangle): Handle insert at virtual column.
154 Perform auto-tabify if necessary.
155 (cua--activate-rectangle): Remove optional FORCE arg.
156 Never do padding. Simplify.
157 (cua--highlight-rectangle): Enhance for virtual edges.
158 (cua-toggle-rectangle-padding): Remove command.
159 (cua-toggle-rectangle-virtual-edges): New command.
160 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
161 (cua--rectangle-post-command): Don't force rectangle padding.
162 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
163
164 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
165
166 * indent.el (edit-tab-stops-buffer): Doc fix.
167
168 2004-08-28 Richard M. Stallman <rms@gnu.org>
169
170 * progmodes/grep.el (grep-default-command): Use find-tag-default.
171 (grep-tag-default): Function deleted.
172
173 * subr.el (find-tag-default): Moved from etags.el.
174
175 * progmodes/etags.el (find-tag-default): Moved to subr.el.
176
177 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
178 into the basic character if it has an uppercase form.
179
180 2004-08-27 Kenichi Handa <handa@m17n.org>
181
182 * international/utf-8.el (utf-8-post-read-conversion): If the
183 buffer is unibyte, temporarily make it multibyte.
184
185 2004-08-27 Masatake YAMATO <jet@gyve.org>
186
187 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
188
189 2004-08-25 John Paul Wallington <jpw@gnu.org>
190
191 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
192 0, 1, and many mismatches in message.
193 (tex-start-shell): Use `set-process-query-on-exit-flag'.
194
195 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
196 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
197
198 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
199
200 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
201 vc-diff-switches differently.
202
203 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
204
205 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
206 before and a real defvar after
207 `speedbar-supported-extension-expressions'. This is to silence
208 the compiler without breaking bootstrapping.
209
210 2004-08-22 Richard M. Stallman <rms@gnu.org>
211
212 * textmodes/flyspell.el (flyspell-word):
213 Use set-process-query-on-exit-flag.
214 (flyspell-highlight-duplicate-region): Take POSS as arg.
215 (flyspell-word): Pass POSS as arg.
216
217 * progmodes/ada-xref.el: Many doc and style fixes.
218 (ada-find-any-references): Use compilation-start.
219 (ada-get-ali-file-name): Improve error msg.
220 (ada-get-ada-file-name): Likewise.
221
222 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
223 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
224
225 * mail/mail-extr.el (mail-extr-all-top-level-domains):
226 Add forward defvar.
227
228 * whitespace.el (global-whitespace-mode): New alias
229 for whitespace-global-mode.
230
231 * speedbar.el (speedbar-file-regexp): Definition moved up.
232 (speedbar-mode, speedbar-set-mode-line-format):
233 Use with-no-warnings.
234 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
235
236 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
237 controls whether to display the error buffer.
238
239 * ps-mule.el: Delete compatibility code for old Emacses.
240 (ps-mule-find-wrappoint): Don't use chars-in-region.
241
242 * frame.el (display-mouse-p, display-selections-p):
243 Use with-no-warnings.
244
245 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
246
247 2004-08-22 David Kastrup <dak@gnu.org>
248
249 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
250 information.
251
252 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
253
254 2004-08-22 Andreas Schwab <schwab@suse.de>
255
256 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
257
258 2004-08-22 Masatake YAMATO <jet@gyve.org>
259
260 * cvs-status.el (cvs-status-checkout): New function.
261 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
262
263 2004-08-21 David Kastrup <dak@gnu.org>
264
265 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
266 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
267 has been converted to use hashtables, the relation `nil=none' is
268 no longer valid, as `nil' is not a hashtable. This patch tries to
269 reduce the number of resulting errors.
270
271 2004-08-21 John Paul Wallington <jpw@gnu.org>
272
273 * subr.el (process-kill-without-query): Made obsolete in
274 version 21.4, not 21.5.
275
276 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
277 (vc-previous-comment, vc-next-comment)
278 (vc-comment-search-reverse, vc-comment-search-forward)
279 (vc-comment-to-change-log): Likewise.
280
281 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
282
283 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
284
285 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
286 Correct indentation of DEFMETHODS with non-standard method
287 combinations (e.g., PROGN, MIN, MAX).
288
289 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
290
291 * startup.el (normal-top-level-add-subdirs-to-load-path):
292 Avoid unnecessarily checking system-type.
293 (normal-top-level): Set TERM to "dumb". Simplify.
294
295 * avoid.el (mouse-avoidance-ignore-p): New fun.
296 Also ignore switch-frame, select-window, double, and triple clicks.
297 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
298 (mouse-avoidance-fancy-hook): Use it.
299
300 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
301
302 * avoid.el (mouse-avoidance-nudge-mouse)
303 (mouse-avoidance-banish-destination): Stay within the current window
304 to avoid problems with mouse-autoselect-window.
305
306 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
307
308 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
309 the newer format of some messages in cvs-1.12.1.
310
311 2004-08-19 Masatake YAMATO <jet@gyve.org>
312
313 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
314 (elp-results-jump-to-definition-by-mouse)
315 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
316 (elp-output-result): Use elp-output-insert-symname.
317
318 2004-08-18 Kenichi Handa <handa@m17n.org>
319
320 * language/cyrillic.el: Register koi8-r in
321 ctext-non-standard-encodings-alist.
322 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
323
324 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
325
326 * emacs-lisp/copyright.el (copyright-update-year): Delete code
327 that replaces 20xy with xy.
328
329 2004-08-17 John Paul Wallington <jpw@gnu.org>
330
331 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
332 (reb-force-update): Doc fix.
333
334 2004-08-16 Richard M. Stallman <rms@gnu.org>
335
336 * progmodes/which-func.el (which-func-update-1): Doc fix.
337
338 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
339 (sh-mode-abbrev-table): New variable.
340
341 * progmodes/compile.el (compilation-mode): Doc fix.
342
343 * emacs-lisp/lisp-mode.el (eval-last-sexp):
344 Don't cons a new symbol each time.
345 (eval-last-sexp-fake-value): New variable.
346
347 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
348 (copyright-update-year): Detect continuation of list of years.
349
350 * term.el (term-default-fg-color, term-default-bg-color)
351 (ansi-term-color-vector): Use `unspecified', not nil, as default.
352
353 * imenu.el: Several doc fixes: don't say variables are buffer-local.
354
355 2004-08-16 Davis Herring <herring@lanl.gov>
356
357 * isearch.el (isearch-string, isearch-message-string, isearch-point)
358 (isearch-success, isearch-forward-flag, isearch-other-end)
359 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
360 (isearch-barrier, isearch-within-brackets)
361 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
362
363 2004-08-16 Kenichi Handa <handa@m17n.org>
364
365 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
366
367 2004-08-15 Kenichi Handa <handa@m17n.org>
368
369 * term/x-win.el (x-selection-value): If utf8 was successful but
370 ctext was not, use utf8 string.
371
372 2004-08-14 Davis Herring <herring@lanl.gov>
373
374 * isearch.el: Remove accidental changes of March 4. Fix backing
375 up when a regexp isearch is made more general. Use symbolic
376 accessor functions for isearch stack frames to make usage clearer.
377 (search-whitespace-regexp): Made groups in documentation shy (as
378 is the group in the default value).
379 (isearch-fallback): New function, addresses problems with regexps
380 liberalized by `\|', adds support for liberalization by `\}' (the
381 general repetition construct), and incorporates behavior for
382 `*'/`?'.
383 (isearch-}-char): New command, calls `isearch-fallback' with
384 arguments appropriate to a typed `}'.
385 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
386 appropriately.
387 (isearch-mode-map): Bind `}' to `isearch-}-char'.
388 (isearch-string, isearch-message,string, isearch-point)
389 (isearch-success, isearch-forward-flag, isearch-other-end)
390 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
391 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
392 New inline functions to read fields of a stack frame.
393
394 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
395
396 * battery.el (battery-linux-proc-acpi): Look into battery
397 directories matching the literal string "CMB", too (required for
398 Linux kernel version 2.6.7).
399
400 2004-08-14 John Paul Wallington <jpw@gnu.org>
401
402 * cus-start.el (read-file-name-completion-ignore-case): Add.
403 (blink-cursor-alist): Change version to "21.4".
404
405 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
406
407 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
408
409 * speedbar.el (speedbar-scan-subdirs): New option.
410 (speedbar-file-lists): Don't ignore file-name case on Unix and use
411 dolist.
412 (speedbar-insert-files-at-point): Take an extra argument and use
413 it to optionally find out if a subdir is empty. Also unreadable
414 files don't get expand buttons.
415 (speedbar-directory): New image (unused pixmap already existed).
416 (speedbar-expand-image-button-alist): Use it.
417
418 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
419
420 CC Mode update to 5.30.9:
421
422 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
423 Move from cc-vars to cc-defs for dependency reasons. Fix the
424 POSIX char class test to check that it works in
425 `skip-chars-(forward|backward)' too.
426
427 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
428 first argument starts with a special brace list.
429
430 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
431 when `c-opt-type-concat-key' is used (i.e. in Pike).
432
433 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
434 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
435 >)".
436
437 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
438 whitespace safe.
439
440 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
441 position for `arglist-intro', `arglist-cont-nonempty' and
442 `arglist-close' when there are two arglist open parens on the same
443 line and there's nothing in front of the first.
444
445 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
446 locking of qualified names in Java, which previously could fontify
447 common indexing expressions in many cases. The standard Java
448 naming conventions are used to tell them apart.
449
450 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
451 Fix inconsistency wrt opening parens on the first line inside a paren
452 block.
453
454 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
455 compile time for the sake of `c-major-mode-is'.
456
457 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
458 `c-major-mode-is' in the event that this is used inside a
459 `c-lang-defconst'.
460
461 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
462 `c-lang-defconst' so that it works better with fallback languages.
463
464 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
465 it to fail to record the base mode.
466
467 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
468 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
469 is used. Reordered the syntax checks to get more efficient
470 skipping in some situations.
471
472 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
473 continuation which might precede the newly inserted '{'.
474
475 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
476 Fix cases where it could loop indefinitely.
477
478 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
479 size specs correctly. Only fontify identifiers in front of '('
480 with as functions - don't accept any paren char. Tightened up
481 initializer skipping to stop before function and class blocks.
482
483 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
484 the point could be left directly after an open paren when finding
485 the beginning of the first decl in the block.
486
487 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
488 table when filtering out legitimate open parens to be recorded.
489 This could cause cache inconsistencies when e.g.
490 `c++-template-syntax-table' was temporarily in use.
491
492 * progmodes/cc-engine.el (c-on-identifier)
493 (c-simple-skip-symbol-backward): Small fix for handling "-"
494 correctly in `skip-chars-backward'. Affected the operator lfun
495 syntax in Pike.
496
497 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
498 Fix bug that could cause an error from `after-change-functions' when
499 the changed region is at bob.
500
501 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
502
503 CC Mode update to 5.30.9:
504
505 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
506 to say that <TAB> doesn't insert WS into a CPP line.
507 (c-indent-command, c-tab-always-indent): Amend doc strings.
508
509 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
510 checks for user errors, thus eliminating cryptic and unhelpful
511 Emacs error messages. (1) Check the arg to `c-set-style' is a
512 string. (2) Check that settings to `c-offsets-alist' are not
513 spuriously quoted.
514
515 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
516 which precedes the newly inserted `{'.
517
518 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
519
520 Sync with Tramp 2.0.44.
521
522 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
523 function "tramp_file_attributes". Otherwise, file names
524 containing spaces are misinterpreted. Reported by Magnus Henoch
525 <mange@freemail.hu>.
526 (tramp-handle-file-truename): FILENAME must be expanded first.
527 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
528 obscure results. Reported by D. Goel <deego@gnufans.org>.
529 (tramp-handle-verify-visited-file-modtime): If file does not
530 exist, say it is not modified if and only if that agrees with the
531 buffer's record. Check whether a file is visiting the buffer, or
532 the buffer has no recorded last modification time. Return t in
533 case the visiting file doesn't exist. Suggested by Luc Teirlinck
534 <teirllm@auburn.edu>.
535 (tramp-handle-write-region): Pass modtime explicitely to
536 `set-visited-file-modtime', because filename can be different
537 from (buffer-file-name) if `file-precious-flag' is set.
538 `set-visited-file-modtime' must be called always when `visit' is t
539 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
540 (tramp-handle-set-visited-file-modtime): If `time-list' is not
541 nil, don't apply the whole body. If the file doesn't exists, set
542 modtime to '(-1 65535). Suggested by Luc Teirlinck
543 <teirllm@auburn.edu>.
544
545 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
546
547 * help.el (describe-bindings): Doc fix.
548
549 * subr.el (kbd): Doc fix.
550
551 2004-08-08 John Paul Wallington <jpw@gnu.org>
552
553 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
554 instead of `string-to-int'.
555 (define-ibuffer-column mode): Fix indentation.
556
557 2004-08-08 Lars Hansen <larsh@math.ku.dk>
558
559 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
560
561 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
562
563 * subr.el (global-unset-key, local-unset-key): Doc fixes.
564
565 * novice.el (disabled-command-function): New variable renamed from
566 `disabled-command-hook'.
567 (disabled-command-hook): Keep the _variable_ as alias for
568 `disabled-command-function' and make obsolete.
569 (disabled-command-function): Function renamed from
570 `disabled-command-hook'. Adapt code to name change of the variable.
571
572 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
573
574 * simple.el (completion-root-regexp): New defvar.
575 (completion-setup-function): Use it instead of a literal string.
576
577 2004-08-07 John Paul Wallington <jpw@gnu.org>
578
579 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
580 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
581 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
582 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
583
584 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
585
586 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
587 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
588
589 2004-08-04 Kenichi Handa <handa@m17n.org>
590
591 * international/encoded-kb.el (encoded-kbd-setup-keymap):
592 Fix previous change.
593
594 2004-08-03 Kenichi Handa <handa@m17n.org>
595
596 * international/encoded-kb.el: The following changes are to
597 utilize key-translation-map instead of minor mode map.
598 (encoded-kbd-iso2022-non-ascii-map): Delete it.
599 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
600 (encoded-kbd-last-key): New function.
601 (encoded-kbd-iso2022-single-shift): New function.
602 (encoded-kbd-iso2022-designation)
603 (encoded-kbd-self-insert-iso2022-7bit)
604 (encoded-kbd-self-insert-iso2022-8bit)
605 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
606 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
607 key-translation-map.
608 (encoded-kbd-setup-keymap): Setup key-translation-map.
609 (saved-key-translation-map): New variable.
610 (encoded-kbd-mode): Save/restore key-translation-map. Adjusted
611 for the change of encoded-kbd-setup-keymap.
612
613 2004-08-02 Kim F. Storm <storm@cua.dk>
614
615 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
616 and call compute-motion with nil for topos and width to get proper
617 usable width and height for both window and non-window systems.
618
619 * windmove.el (windmove-coordinates-of-position): Let compute-motion
620 calculate usable window width and height.
621
622 * window.el (window-buffer-height): Call compute-motion with nil width.
623
624 2004-08-01 David Kastrup <dak@gnu.org>
625
626 * replace.el (query-replace-read-from):
627 Use `query-replace-compile-replacement'.
628 (query-replace-compile-replacement): New function.
629 (query-replace-read-to): Use `query-replace-compile-replacement'
630 for repeating the last command.
631
632 2004-08-01 John Paul Wallington <jpw@gnu.org>
633
634 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
635 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
636 (pr-switches): Remove period from end of error messages.
637
638 * help-mode.el (help-go-back): Likewise.
639
640 * abbrev.el (only-global-abbrevs): Doc fix.
641 (edit-abbrevs-map): Define within defvar.
642 (quietly-read-abbrev-file): Doc fix.
643
644 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
645
646 * novice.el (enable-command, disable-command): Doc fixes.
647
648 * subr.el (event-modifiers, event-basic-type): Doc fixes.
649
650 2004-07-30 Richard M. Stallman <rms@gnu.org>
651
652 * subr.el (with-local-quit): Doc fix.
653
654 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
655
656 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
657
658 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
659
660 * custom.el (defcustom): Doc fix.
661
662 2004-07-28 Masatake YAMATO <jet@gyve.org>
663
664 * progmodes/etags.el (etags-tags-apropos): Show building progress.
665
666 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
667
668 * imenu.el (imenu-prev-index-position-function)
669 (imenu-extract-index-name-function, imenu-name-lookup-function)
670 (imenu--index-alist): Docstring redundancy fix.
671
672 2004-07-25 Lars Hansen <larsh@math.ku.dk>
673
674 * wdired.el (wdired-finish-edit): Require dired-aux before locally
675 binding dired-backup-overwrite.
676
677 2004-07-25 John Paul Wallington <jpw@gnu.org>
678
679 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
680
681 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
682
683 * term/tty-colors.el (tty-color-approximate): Doc fix.
684
685 * select.el (x-get-selection, x-set-selection): Doc fixes.
686
687 * frame.el (make-frame): Doc fix.
688
689 2004-07-24 Richard M. Stallman <rms@gnu.org>
690
691 * mail/rmail.el (rmail-mime-charset-pattern):
692 Don't include semicolon in the charset value.
693
694 * replace.el (occur-next-error): Call set-window-point.
695 (occur-engine): Handle negative NLINES.
696
697 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
698
699 * frame.el (modify-all-frames-parameters): Minor doc fix.
700 (set-frame-configuration): Doc fix.
701
702 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
703
704 * simple.el (completion-setup-function): Compute the common parts
705 and the first difference place correctly when
706 partial-completion-mode is on.
707
708 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
709
710 * ps-print.el: Doc fix.
711 (ps-print-version): New version 6.6.5.
712 (ps-printing-region): Doc fix.
713 (ps-generate-string-list): Comment fix.
714 (ps-message-log-max): Code fix.
715
716 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
717
718 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
719 generated PostScript.
720
721 2004-07-22 Kim F. Storm <storm@cua.dk>
722
723 * progmodes/make-mode.el: Fix comments.
724
725 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
726
727 * printing.el: Doc fix.
728
729 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
730
731 * frame.el (modify-all-frames-parameters): Minor doc fix.
732
733 2004-07-20 Richard M. Stallman <rms@gnu.org>
734
735 * textmodes/fill.el (fill-nobreak-p): If this break point is
736 at the end of the line, don't consider the newline which follows
737 as a reason to return t.
738
739 2004-07-19 John Paul Wallington <jpw@gnu.org>
740
741 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
742
743 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
744
745 * dired-aux.el (dired-do-kill-lines): Expand docstring.
746 Delete irrelevant code.
747
748 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
749
750 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
751 New docstring. From Luc Teirlinck.
752
753 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
754
755 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
756 section.
757 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
758 non-file buffers. We know it is nil.
759
760 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
761
762 Sync with Tramp 2.0.43.
763
764 * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove
765 outdated comment.
766 (tramp-locked, tramp-locker): New variables for implementing a
767 global lock.
768 (tramp-sh-file-name-handler): Use them to implement the global
769 lock.
770
771 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
772
773 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
774 calls to respective `xxx` calls.
775 (tramp-process-alive-regexp): Precise doc string.
776 (tramp-multi-action-process-alive): New defun.
777 (tramp-multi-actions): Use it.
778 (tramp-handle-find-backup-file-name): `copy-tree' is available
779 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
780 in order to avoid this function.
781 (tramp-handle-write-region): Set current buffer. If connection
782 wasn't open, `file-modes' has changed it accidently. Reported by
783 David Kastrup <dak@gnu.org>.
784 (tramp-enter-password, tramp-read-passwd): New arguments USER and
785 HOST.
786 (tramp-action-password, tramp-multi-action-password): Apply it.
787 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
788 name must still contain the port number. Otherwise, we have two
789 Tramp buffers, with all the confusion. Reported by Myron Selby
790 <myron@xytech.com> and Rolf Dubitzky
791 <Dubitzky@physi.uni-heidelberg.de>.
792
793 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
794 HOST to `tramp-enter-passwd'.
795
796 * net/tramp-vc.el (all): Code cleanup. Change all
797 `tramp-handle-xxx' calls to respective `xxx` calls.
798
799 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
800
801 * emacs-lisp/testcover.el: New category "potentially-1valued" for
802 functions that are not erroneous if either 1-valued or
803 multi-valued. Detect functions in this class.
804 (testcover-1value-functions, testcover-compose-functions,
805 testcover-progn-functions) Added some additional functions to lists.
806 (testcover-mark): Bugfix when marking up the definition for an
807 empty function.
808
809 2004-07-17 Richard M. Stallman <rms@gnu.org>
810
811 * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer.
812
813 * mail/footnote.el (footnote-section-tag): Use defcustom.
814
815 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
816 Compile font-lock-keywords, not KEYWORDS.
817 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
818 Add warn, check-type. Handle cerror like error.
819
820 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
821
822 * progmodes/which-func.el (which-func-keymap): New var.
823 (which-func-face): New face.
824 (which-func-format): Use them.
825
826 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
827
828 * buff-menu.el (list-buffers-noselect): Append the buffer's
829 process status to its mode name.
830
831 2004-07-16 Kim F. Storm <storm@cua.dk>
832
833 * simple.el (inhibit-mark-movement): New defvar.
834 (beginning-of-buffer, end-of-buffer): Do not push mark if
835 inhibit-mark-movement is non-nil or C-u prefix is given.
836
837 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
838 Init to beginning-of-buffer and end-of-buffer.
839 (cua--undo-push-mark): New defvar.
840 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
841 already active and command is in cua--preserve-mark-commands.
842 Also fix check for shift modifier on non-window systems.
843 (cua--post-command-handler): Clear inhibit-mark-movement if set.
844
845 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
846
847 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
848 of two integers, instead of a cons.
849
850 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
851 `visited-file-modtime' now returns a list of two integers, instead
852 of a cons.
853
854 * dired.el (dired-directory-changed-p): Ditto.
855
856 * progmodes/grep.el (grep): Doc fix.
857
858 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
859
860 * autorevert.el (auto-revert-tail-mode)
861 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
862 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
863 in both at the same time.
864 (auto-revert-tail-mode): New command.
865 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
866 (auto-revert-handler): Revert only either tail or whole file.
867
868 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
869 add auto-revert-tail-mode.
870
871 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
872
873 * printing.el: Doc fix. Change name of some funs.
874 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
875 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
876 (pr-standard-file-name): New fun. Replace pr-standard-path.
877 (pr-call-process): Code fix.
878
879 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
880
881 * subr.el (with-selected-window): Doc fix.
882
883 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
884
885 * subr.el (get-buffer-window-list): Doc fix.
886
887 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
888
889 * files.el (switch-to-buffer-other-window): Doc fix.
890
891 * window.el (save-selected-window, one-window-p)
892 (split-window-keep-point, split-window-vertically)
893 (split-window-horizontally): Doc fixes.
894
895 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
896
897 * printing.el: Doc fix. Now it uses call-process instead of
898 shell-command for low command execution.
899 (pr-version): New version number (6.8).
900 (pr-shell-file-name): Option removed.
901 (pr-shell-command): Fun removed.
902 (pr-call-process): New fun. Replace pr-shell-command.
903 (pr-standard-path, pr-remove-nil-from-list): New funs.
904 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
905 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
906 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
907 (pr-ps-utility-process, pr-txt-print): Code fix.
908
909 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
910
911 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
912 boolean.
913
914 2004-07-09 Lars Hansen <larsh@math.ku.dk>
915
916 * wid-edit.el (widget-field-buffer): Doc fix.
917
918 2004-07-09 John Paul Wallington <jpw@gnu.org>
919
920 * emacs-lisp/re-builder.el (reb-update-overlays): Distinguish
921 between one and several matches in message.
922
923 2004-07-09 Richard M. Stallman <rms@gnu.org>
924
925 * mouse.el (mouse-set-region-1): If transient-mark-mode
926 is `identity', change it to `only'.
927
928 * simple.el (current-word): Doc fix.
929
930 2004-07-09 Mark A. Hershberger <mah@everybody.org>
931
932 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
933 so that it is more understanding of whitespace.
934
935 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
936 form
937 (("ns" . "element") (attr-list) children) instead of
938 ((:ns . "element") (attr-list) children) in order to reduce the
939 number of symbols used.
940 (xml-skip-dtd): Change to use xml-parse-dtd but set
941 xml-validating-parsing to nil.
942 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
943 (xml-substitute-entity): Remove in favor of new entity substitution.
944 (xml-substitute-special): Rewrite in to substitute complex
945 entities from DOCTYPE declarations.
946 (xml-parse-fragment): Parse fragments from entity deleclarations.
947 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
948 (xml-parse-dtd, xml-substitute-special): Make validity checks
949 conditioned on xml-validating-parser. Add "Not Well Formed" to
950 error messages about well-formedness.
951
952 2004-07-08 Steven Tamm <steventamm@mac.com>
953
954 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
955 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
956 Do not treat double clicks and triple clicks specially in the
957 scroll bar (preventing strange repositioning problems)
958
959 2004-07-06 Stefan <monnier@iro.umontreal.ca>
960
961 * replace.el (query-replace-regexp-eval): Fix last change.
962
963 2004-07-05 Stefan <monnier@iro.umontreal.ca>
964
965 * replace.el (query-replace-descr): New fun.
966 (query-replace-read-from, query-replace-read-args): Default to the
967 previous from&to.
968 (query-replace-read-to): Quote the `from' string when displaying it.
969 (query-replace-regexp-eval): Immediately check read-only status.
970 Use query-replace-read-from to get the \n checking.
971 Quote the `from' string when displaying it.
972 (map-query-replace-regexp, occur-read-primary-args):
973 Quote the `from' string when displaying it.
974
975 * isearch.el (isearch-query-replace): Pass the regexp-ness and
976 delimited-ness of the search to query-replace.
977
978 * replace.el (query-replace-read-from, query-replace-read-to):
979 New funs extracted from query-replace-read-args.
980 (query-replace-read-args): Use them.
981
982 * replace.el (query-replace-interactive, query-replace-read-args):
983 Remove the `initial' special value.
984 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
985 (occur-engine): Remove unused var `matchend'.
986
987 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
988 Use the search string without prompting.
989
990 2004-07-05 Kenichi Handa <handa@m17n.org>
991
992 * international/mule.el (decode-coding-inserted-region):
993 Set last-coding-system-used only when coding is nil.
994
995 2004-07-03 Eli Zaretskii <eliz@gnu.org>
996
997 * progmodes/grep.el (grep-compute-defaults, grep-command)
998 (grep-program, find-program, grep-find-use-xargs, grep-history)
999 (grep-find-history, grep-tag-default, grep-find-command)
1000 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
1001 Add autoload cookies, for unbundled packages that load `compile'
1002 and expect all grep-related symbols to become defined.
1003
1004 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
1005
1006 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
1007 (iimage-mode-image-search-path): New user option to search the
1008 image file.
1009 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
1010 have locate-file.
1011 (iimage-mode-buffer): Use it.
1012
1013 2004-07-03 Nick Roberts <nickrob@gnu.org>
1014
1015 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
1016 carefully.
1017 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
1018
1019 2004-07-03 Juri Linkov <juri@jurta.org>
1020
1021 * replace.el (query-replace-read-args): Swallow space after 'foo,
1022 not after (quote foo). Match space only immediately after symbol,
1023 not anywhere in the whole string.
1024
1025 2004-07-02 Richard M. Stallman <rms@gnu.org>
1026
1027 * replace.el (query-replace-read-args): Swallow space after
1028 symbols, not after closeparens. But avoid error if string ends there.
1029
1030 * progmodes/python.el (python-beginning-of-statement):
1031 Exit the loop if backward-up-list gets error.
1032
1033 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
1034
1035 2004-07-02 Andre Spiegel <spiegel@gnu.org>
1036
1037 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
1038 only if vc-consult-headers is non-nil.
1039
1040 2004-07-02 Juri Linkov <juri@jurta.org>
1041
1042 * pcvs.el (cvs-mode-diff-repository): New command.
1043
1044 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
1045
1046 2004-07-01 Juri Linkov <juri@jurta.org>
1047
1048 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
1049 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
1050 C-M-% to isearch-query-replace-regexp.
1051 (minibuffer-local-isearch-map): Add arrow key bindings.
1052 Bind C-f to isearch-yank-char-in-minibuffer.
1053 (isearch-forward): Doc fix.
1054 (isearch-edit-string): Doc fix.
1055 (isearch-query-replace, isearch-query-replace-regexp): New funs.
1056 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
1057 (isearch-yank-char): Add optional arg.
1058 (isearch-yank-char-in-minibuffer): New fun.
1059
1060 * replace.el (query-replace-interactive): Change type from boolean
1061 to choice. Add value `initial'.
1062 (query-replace-read-args): Handle value `initial' of
1063 query-replace-interactive.
1064
1065 2004-06-29 Kim F. Storm <storm@cua.dk>
1066
1067 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
1068 (breakpoint-disabled-bitmap-face): Add :group 'gud.
1069
1070 * progmodes/ada-xref.el (ada-tight-gvd-integration):
1071 Add :group 'ada.
1072
1073 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
1074
1075 2004-06-29 Juri Linkov <juri@jurta.org>
1076
1077 * replace.el (query-replace-read-args): Swallow a space after
1078 everything except )]" which in most cases means after a symbol.
1079
1080 * emacs-lisp/pp.el (pp-buffer): Add autoload.
1081
1082 2004-06-28 Richard M. Stallman <rms@gnu.org>
1083
1084 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
1085 More changes to go with previous change in font-lock.el.
1086
1087 2004-06-26 David Kastrup <dak@gnu.org>
1088
1089 * replace.el (perform-replace): Highlight the match even in
1090 non-query mode if there is potential replace string editing.
1091
1092 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
1093
1094 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
1095 agree with new return value of `file-remote-p'.
1096 This syncs with Tramp 2.0.42.
1097
1098 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
1099 according to new documentation of `file-remote-p'.
1100
1101 * files.el (file-remote-p): Fix doc to say that return value is
1102 identification of remote system, if not nil.
1103 (file-relative-name): Use new return value of `file-remote-p'.
1104
1105 2004-06-26 Nick Roberts <nickrob@gnu.org>
1106
1107 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
1108 (gdb-goto-breakpoint): Fix breakage.
1109
1110 2004-06-26 Eli Zaretskii <eliz@gnu.org>
1111
1112 * man.el (Man-getpage-in-background): Add windows-nt to the list
1113 of systems where shell-file-name should be used instead of
1114 literal "sh".
1115
1116 2004-06-25 Sam Steingold <sds@gnu.org>
1117
1118 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
1119 function names `(setf symbol)'.
1120
1121 2004-06-24 Richard M. Stallman <rms@gnu.org>
1122
1123 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
1124
1125 * font-lock.el (font-lock-keywords): Change format of compiled values.
1126 Document it.
1127 (font-lock-add-keywords): If font-lock-keywords is compiled,
1128 extract the uncompiled version, modify, then recompile.
1129 (font-lock-remove-keywords): Likewise.
1130 (font-lock-fontify-keywords-region): Handle changed format.
1131 (font-lock-compile-keywords): Handle changed format.
1132 (font-lock-set-defaults): Compile the keywords explicitly here.
1133
1134 2004-06-24 David Kastrup <dak@gnu.org>
1135
1136 * replace.el (query-replace-read-args): Implement `\,' and `\#'
1137 replacements here.
1138 (query-replace-regexp): Doc string explaining this and the new
1139 `\?' replacement. Remove `\,' and `\#' implementation here, as it
1140 is better placed in `query-replace-read-args'.
1141 (replace-regexp): Explain `\,', `\#' and `\?'.
1142 (replace-match-data): New function for thorough reuse/destruction
1143 of old match-data.
1144 (replace-match-maybe-edit): Function for implementing `\?' editing.
1145 (perform-replace): Fix maintaining of the match stack including
1146 already matched regions, implement `\?', fix various problems
1147 with regions while editing and other stuff.
1148 (replace-highlight): Simplify.
1149
1150 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
1151
1152 * progmodes/grep.el (grep-error-screen-columns): New variable.
1153 (grep-regexp-alist): Give it the full functionality of gnu style
1154 compilation messages with line and column ranges. Ask me for the
1155 perl script I'm working on, that uses these.
1156
1157 2004-06-23 Nick Roberts <nickrob@gnu.org>
1158
1159 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
1160 Remove.
1161 (comint-insert-input, comint-mouse-insert-input): New functions
1162 based on comint-insert-clicked-input for two bindings but just
1163 one functionality.
1164
1165 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
1166
1167 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
1168
1169 2004-06-23 Lars Hansen <larsh@math.ku.dk>
1170
1171 * files.el (write-contents-functions): Doc fix.
1172
1173 2004-06-21 Juanma Barranquero <lektu@terra.es>
1174
1175 * image.el (image-library-alist): Rewrite docstring in active voice.
1176
1177 2004-06-20 Richard M. Stallman <rms@gnu.org>
1178
1179 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
1180
1181 * isearch.el (isearch-repeat): Avoid testing old match data.
1182 (isearch-message): Display trailing space in special font
1183 when search is failing.
1184 (isearch-search-fun-function): Doc fix.
1185
1186 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
1187
1188 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
1189
1190 * frame.el (show-trailing-whitespace): Doc fix.
1191
1192 * cus-edit.el (custom-variable-documentation): New function.
1193 (custom-variable): Use it.
1194
1195 2004-06-19 Nick Roberts <nickrob@gnu.org>
1196
1197 * man.el (Man-getpage-in-background): Revert previous change but
1198 make cygwin a special case.
1199
1200 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
1201
1202 * autorevert.el (global-auto-revert-non-file-buffers):
1203 Update docstring.
1204
1205 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
1206
1207 * progmodes/compile.el (compilation-error-properties): Store one
1208 more than end-col, if present, so that transient-mark-mode will
1209 highlight last char too.
1210 * progmodes/grep.el (grep-regexp-alist): Match columns and column
1211 ranges, if present.
1212
1213 2004-06-18 Jason Rumney <jasonr@gnu.org>
1214
1215 * makefile.w32-in: Double percent signs in for loops.
1216
1217 2004-06-17 David Kastrup <dak@gnu.org>
1218
1219 * replace.el (query-replace-read-args): Only warn about use of \n
1220 and \t when we are doing a regexp replacement and the actual
1221 escaped character is n or t.
1222 (query-replace-regexp): Add \, and \# interpretation to
1223 interactive call and document it.
1224 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
1225 as shortkey for replace-count.
1226 (replace-quote): New function for doubling backslashes.
1227
1228 2004-06-17 Juanma Barranquero <lektu@terra.es>
1229
1230 * files.el (parse-colon-path, cd): Mention in docstring that the
1231 path separator is colon in GNU-like systems.
1232
1233 * newcomment.el (comment-region-internal): Fix docstring.
1234
1235 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
1236 (ewoc-invalidate, ewoc-collect): Doc fixes.
1237 (ewoc--create-node, ewoc--delete-node-internal):
1238 Fix typos in docstring.
1239
1240 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1241
1242 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
1243 manual to docstring.
1244
1245 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1246
1247 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
1248
1249 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1250
1251 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1252 Add hyperlink to emacs-xtra manual to docstring.
1253
1254 * autorevert.el (global-auto-revert-non-file-buffers):
1255 Add hyperlink to emacs-xtra manual to docstring, as well as an
1256 info-link.
1257
1258 2004-06-14 Juanma Barranquero <lektu@terra.es>
1259
1260 * image.el (image-library-alist): New variable to map image types
1261 to external libraries. Initialized to nil, unless system-specific
1262 configs change it.
1263 (image-type-available-p): Determine whether an image type is
1264 available by calling `init-image-library'.
1265
1266 * term/w32-win.el (image-library-alist): Initialize to a known set
1267 of probable library names.
1268
1269 2004-06-14 Kenichi Handa <handa@m17n.org>
1270
1271 * international/code-pages.el (windows-1256, cp1125): Fix tables
1272 for several characters.
1273
1274 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
1275
1276 2004-06-13 Richard M. Stallman <rms@gnu.org>
1277
1278 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
1279
1280 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
1281 not "`pc-selection-mode'".
1282
1283 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
1284
1285 * simple.el (previous-matching-history-element): Specify a default.
1286
1287 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
1288
1289 * cus-face.el (custom-declare-face): Simplify code.
1290
1291 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
1292
1293 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
1294
1295 * files.el (before-save-hook): Add `time-stamp' to the options.
1296
1297 * time-stamp.el (time-stamp): Recommend adding it to
1298 `before-save-hook', rather than `write-file-functions'.
1299 Make a similar change in `Commentary' section.
1300
1301 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
1302
1303 * diff-mode.el (diff-current-defun): If at start of hunk, use
1304 position of first change.
1305
1306 2004-06-13 Lars Hansen <larsh@math.ku.dk>
1307
1308 * dired-x.el (dired-mark-omitted): Bind to "*O".
1309
1310 2004-06-12 Karl Fogel <kfogel@red-bean.com>
1311
1312 * bookmark.el (bookmark-bmenu-relocate): New function, as
1313 suggested by David J. Biesack <David.Biesack@sas.com>.
1314 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
1315 (bookmark-bmenu-mode): Describe binding in doc string.
1316 (bookmark-set-filename): Save the bookmark list if it's time.
1317
1318 2004-06-13 Kenichi Handa <handa@m17n.org>
1319
1320 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
1321 (ccl-untranslated-to-ucs): Fix typo.
1322
1323 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
1324
1325 * progmodes/python.el (python-open-block-statement-p):
1326 Fix indentation after a block opening that contains a comment.
1327
1328 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
1329
1330 * bindings.el (completion-ignored-extensions): Add file extensions
1331 of Python byte-compiled files.
1332
1333 2004-06-12 Juri Linkov <juri@jurta.org>
1334
1335 * info.el (Info-goto-node): Add autoload.
1336 (Info-toc): Add substring-no-properties on Info file name.
1337 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
1338 (Info-mode-map): Bind L to Info-history, T to Info-toc.
1339
1340 2004-06-12 Kenichi Handa <handa@m17n.org>
1341
1342 * international/mule-cmds.el (set-language-environment):
1343 Load subst tables if necessary.
1344
1345 * international/mule.el (decode-char): Load subst tables if necessary.
1346 (encode-char): Likewise.
1347
1348 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
1349 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
1350 (utf-16le-decode-loop): Set r5 to -1 before loop.
1351 (utf-16be-decode-loop): Likewise.
1352 (ccl-decode-mule-utf-16le): Add EOF processing block.
1353 (ccl-decode-mule-utf-16be): Likewise.
1354 (ccl-decode-mule-utf-16le-with-signature): Likewise.
1355 (ccl-decode-mule-utf-16be-with-signature): Likewise.
1356 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
1357 (ccl-mule-utf-16-encode-untrans): New CCL.
1358 (utf-16-decode-to-ucs): Handle pre-read character.
1359 (utf-16le-encode-loop): Handle surrogate pair.
1360 (utf-16be-encode-loop): Likewise.
1361 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
1362 of utf-16le-encode-loop.
1363 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
1364 of utf-16be-encode-loop.
1365 (mule-utf-16-post-read-conversion):
1366 Call utf-8-post-read-conversion at first.
1367 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
1368 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
1369 Add post-read-conversion and pre-write-conversion.
1370
1371 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
1372 (utf-translate-cjk-unicode-range): New variable.
1373 (utf-translate-cjk-load-tables): New function.
1374 (utf-lookup-subst-table-for-decode): New function.
1375 (utf-lookup-subst-table-for-encode): New function.
1376 (utf-translate-cjk-mode): Init-value changed to t. Don't load
1377 tables here. Update safe-charsets of utf-* coding systems.
1378 (ccl-mule-utf-untrans): New CCL.
1379 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
1380 at end of each branch.
1381 (ccl-mule-utf-8-encode-untrans): New CCL.
1382 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
1383 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
1384 length of encoding. Don't return r0.
1385 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
1386 (utf-8-post-read-conversion): Narrow to region properly.
1387 If utf-translate-cjk-mode is on, load tables if necessary.
1388 Call utf-8-compose with hash-table arg if necessary.
1389 Call XXX-compose-region instead of XXX-post-read-convesion.
1390 (utf-8-pre-write-conversion): New function.
1391 (mule-utf-8): Include CJK charsets in safe-charsets if
1392 utf-translate-cjk-mode is on. Add pre-write-conversion.
1393
1394 * international/characters.el: Temporarily set
1395 utf-translate-cjk-mode to nil.
1396
1397 * language/devan-util.el (devanagari-compose-region):
1398 Add autoload cookie.
1399
1400 * international/ccl.el (ccl-dump-call): Fix printing the
1401 subroutine name.
1402
1403 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
1404
1405 * dired.el (dired-revert): If buffer is marked unmodified before
1406 reverting, keep it marked unmodified.
1407 Adapt to new conventions for commenting out code.
1408 (dired-make-relative): Adapt to new conventions for commenting out code.
1409
1410 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
1411
1412 * eshell/esh-module.el (eshell-load-defgroups):
1413 Bind `vc-handled-backends' to nil when opening files.
1414
1415 2004-06-11 Juanma Barranquero <lektu@terra.es>
1416
1417 * files.el (parse-colon-path, cd): Doc fixes (refer to
1418 `path-separator', not colon).
1419
1420 2004-06-10 Juanma Barranquero <lektu@terra.es>
1421
1422 * newcomment.el (comment-search-forward)
1423 (comment-search-backward): Fix typos in docstring.
1424 (comment-region): Doc fix.
1425
1426 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
1427
1428 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
1429 switch is no longer stored in `dired-switches-alist'.
1430
1431 * dired-aux.el (dired-insert-subdir): Do not store R switch in
1432 `dired-switches-alist'.
1433
1434 2004-06-10 Kim F. Storm <storm@cua.dk>
1435
1436 * pcvs.el (cvs-mode-diff-yesterday): New command.
1437
1438 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
1439
1440 2004-06-10 Juri Linkov <juri@jurta.org>
1441
1442 * emacs-lisp/edebug.el (edebug-eval-defun):
1443 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
1444 Fix docstring.
1445
1446 * simple.el (eval-expression-print-format): Don't print additional
1447 information on the first call to `eval-print-last-sexp'.
1448 (next-error-find-buffer): Fix punctuation.
1449 (killing) <defgroup>: Fix punctuation.
1450 (yank-excluded-properties): Change group from editing to killing.
1451
1452 * replace.el (perform-replace): Use `limit' to terminate the
1453 while-loop explicitly.
1454
1455 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1456
1457 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
1458 Use lc-*.xpm as prefix instead of *-locol.xpm.
1459
1460 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
1461 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
1462 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
1463 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
1464 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
1465 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
1466 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
1467 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
1468 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
1469 * toolbar/lc-up_arrow.xpm:
1470 Renamed from *-locol.xpm.
1471
1472 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
1473
1474 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
1475 include forms like &<str>; as valid url patterns.
1476
1477 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
1478
1479 * dired.el (dired-diff, dired-backup-diff)
1480 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
1481 (dired-do-chown, dired-do-touch, dired-do-print)
1482 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
1483 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
1484 (dired-create-directory, dired-do-copy, dired-do-symlink)
1485 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
1486 (dired-do-copy-regexp, dired-do-hardlink-regexp)
1487 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
1488 (dired-maybe-insert-subdir, dired-next-subdir)
1489 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
1490 (dired-kill-subdir, dired-tree-up, dired-tree-down)
1491 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
1492 (dired-run-shell-command, dired-query): Remove redundant,
1493 or incorrect, autoloads.
1494
1495 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
1496 does not end in a slash. Add optional argument KILL-ROOT.
1497 Update docstring.
1498 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
1499 (dired-query): Add autoloads.
1500
1501 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
1502
1503 * progmodes/compile.el (compilation-set-window-height):
1504 Rearrange the save-* functions because a buffer can have several current
1505 point in different windows.
1506 (compilation-error-regexp-alist-alist): Recognize {standard input}
1507 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
1508
1509 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1510
1511 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
1512 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
1513 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
1514 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
1515 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
1516 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
1517 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
1518 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
1519 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
1520 * toolbar/up_arrow-locol.xpm:
1521 New versions of icons that uses fewer colors.
1522
1523 * toolbar/tool-bar.el (tool-bar-local-item)
1524 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
1525 if display-color-cells is 256 or less.
1526
1527 2004-06-08 Kim F. Storm <storm@cua.dk>
1528
1529 * wid-edit.el (widget-specify-button): Use hand pointer rather
1530 than mouse-face as visible mouse-over effect.
1531
1532 2004-06-07 Karl Fogel <kfogel@red-bean.com>
1533
1534 * saveplace.el (save-place-alist-to-file): Bind `print-length'
1535 and `print-level' to nil when writing out `save-place-alist'.
1536 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
1537
1538 2004-06-07 Juanma Barranquero <lektu@terra.es>
1539
1540 * completion.el (completion-kill-region): Doc fix.
1541
1542 * format.el (format-insert-annotations)
1543 (format-annotate-location): Doc fixes.
1544 (format-subtract-regions): Make arguments match their use in docstring.
1545
1546 * simple.el (kill-region): Doc fix.
1547
1548 * subr.el (insert-buffer-substring-no-properties)
1549 (insert-buffer-substring-as-yank): Doc fixes.
1550
1551 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
1552
1553 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1554 Update docstring.
1555 (dired-reset-subdir-switches): New function.
1556
1557 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
1558 Limit scope of `buffer-read-only' binding.
1559
1560 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
1561
1562 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
1563 eshell-explicit-command-char.
1564
1565 2004-06-06 Juanma Barranquero <lektu@terra.es>
1566
1567 * help-fns.el (help-argument-name): Inherit from italic face only
1568 if the frame supports it.
1569
1570 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1571
1572 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
1573 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
1574 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
1575 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
1576 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
1577 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
1578 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
1579 New conversions from xpm files.
1580
1581 * toolbar/README: New file.
1582
1583 2004-06-06 Richard M. Stallman <rms@gnu.org>
1584
1585 * isearch.el (isearch-mode-map): Undo previous change.
1586
1587 2004-06-05 Juri Linkov <juri@jurta.org>
1588
1589 * bindings.el (debug-ignored-errors): Add regexps for history
1590 related messages. Remove $ from "No further undo information".
1591 Move Ediff's messages to ediff.el.
1592
1593 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
1594
1595 * cus-edit.el (custom-display): Add `min-colors'.
1596
1597 * custom.el (defface): Add `supports' to docstring.
1598
1599 * help-fns.el (help-argument-name): Add :group 'help.
1600
1601 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
1602
1603 * find-dired.el (find-ls-subdir-switches): New user option.
1604 (find-dired): No longer call `abbreviate-file-name' on DIR.
1605 Set `dired-subdir-switches' buffer-locally.
1606
1607 * locate.el: Merge the two `Commentary' sections.
1608 (locate-ls-subdir-switches): New user option.
1609 (locate): Update for other changes.
1610 (locate-mode-map): Restore Dired binding for mouse-2.
1611 Bind `locate-mouse-view-file' to M-mouse-2.
1612 Bind `l' to `locate-do-redisplay'.
1613 (locate-main-listing-line-p, locate-do-redisplay): New functions.
1614 (locate-mouse-view-file, locate-tags, locate-find-directory):
1615 Print message if used outside main listing.
1616 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
1617 Various changes to support inserted subdirectories.
1618 (locate-insert-header): Change header of *Locate* buffer.
1619
1620 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1621 Change interactive default switches.
1622 (dired-rename-subdir-2): Update `dired-switches-alist'.
1623 (dired-insert-subdir, dired-kill-subdir):
1624 Handle `dired-switches-alist'. Do not mark buffer modified.
1625 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
1626 (dired-insert-subdir-doinsert): Omit messages.
1627 Handle `dired-subdir-switches'.
1628 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
1629
1630 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
1631 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
1632 subdirs if -R switch is used for a subdir.
1633 (dired-mode): Set `dired-switches-alist'.
1634 (dired-build-subdir-alist): Only print number of directories in
1635 echo area when invoked interactively.
1636
1637 2004-06-05 Lars Hansen <larsh@math.ku.dk>
1638
1639 * dired-x.el (dired-omit-mode): Rename from
1640 dired-omit-files-p. Use define-minor-mode to define it.
1641 (dired-omit-files-p): Add as alias for dired-omit-mode.
1642 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
1643 dired-mark-omitted.
1644 (dired-mark-omitted): Add. Bind to M-O.
1645
1646 2004-06-05 Kenichi Handa <handa@m17n.org>
1647
1648 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
1649
1650 2004-06-05 Juanma Barranquero <lektu@terra.es>
1651
1652 * help-fns.el (help-argument-name): Reintroduce face.
1653 (help-default-arg-highlight): Use it, now that
1654 `face-differs-from-default-p' can be trusted.
1655
1656 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
1657
1658 * textmodes/table.el: Sentence commands added to Point Motion
1659 group; kill and backward-kill commands added to Extraction group.
1660
1661 2004-06-04 Mario Lang <mlang@delysid.org>
1662
1663 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
1664 systems appear to use mW, make the code handle this. Fix a
1665 division-by-zero bug while at it, and handle kernels with
1666 a slightly different layout in /proc/acpi.
1667
1668 2004-06-04 Karl Fogel <kfogel@red-bean.com>
1669
1670 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
1671 because the latter is a CL-ism. This fixes the bug reported by
1672 Shawn Boyette <mdxi@collapsar.net> in
1673 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
1674
1675 2004-06-04 Miles Bader <miles@gnu.org>
1676
1677 * faces.el (display-supports-face-attributes-p): Function moved to
1678 C code. Previously only the tty-related portion of this function
1679 was done in C; however the previous attempt to do a halfway-proper
1680 job for non-tty displays in lisp didn't work properly because of
1681 funny conditions during Emacs startup.
1682 (face-differs-from-default-p): Simplify, now that
1683 display-supports-face-attributes-p works properly on all display
1684 types. Remove :stipple from comparison; it doesn't really work
1685 in emacs anyway.
1686
1687 2004-06-04 Miles Bader <miles@gnu.org>
1688
1689 * faces.el (face-differs-from-default-p): Use a different
1690 implementation, so we can really check whether FACE displays
1691 differently or not.
1692
1693 2004-06-04 Miles Bader <miles@gnu.org>
1694
1695 * faces.el (display-supports-face-attributes-p): Implement a
1696 `different from default' check for non-tty displays.
1697
1698 2004-06-03 David Kastrup <dak@gnu.org>
1699
1700 * woman.el (woman-mapcan): More concise code.
1701 (woman-topic-all-completions, woman-topic-all-completions-1)
1702 (woman-topic-all-completions-merge): Replace by a simpler and
1703 much faster implementation based on O(n log n) sort/merge instead
1704 of the old O(n^2) behavior.
1705
1706 2004-06-03 Miles Bader <miles@gnu.org>
1707
1708 * subr.el (read-number): Use canonical format for default in prompt.
1709
1710 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
1711 Add regexp for " [...]" style defaults.
1712
1713 2004-06-02 Romain Francoise <romain@orebokech.com>
1714
1715 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
1716 groups: if the user asks for a hidden buffer, open the
1717 corresponding filter group to expose it.
1718
1719 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
1720 `ibuffer-jump-to-buffer'.
1721 (ibuffer-jump-offer-only-visible-buffers): New user option.
1722
1723 2004-06-02 Juanma Barranquero <lektu@terra.es>
1724
1725 * faces.el (frame-update-faces): Add empty docstring so the one
1726 for `ignore' doesn't show through.
1727
1728 * subr.el (process-kill-without-query): Remove spurious "\n" on
1729 obsolescence string.
1730 (focus-frame, unfocus-frame): Add obsolescence declaration and
1731 empty docstring.
1732
1733 * international/mule.el (register-char-codings): Make alias for
1734 `ignore'. Move docstring to obsolescence info and remove redundancy.
1735
1736 2004-06-02 Kim F. Storm <storm@cua.dk>
1737
1738 * frame.el (blink-cursor-start): Turn cursor off initially so blink
1739 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
1740
1741 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1742
1743 * comint.el (comint-replace-by-expanded-history-before-point):
1744 Obey `start' as the docstring says.
1745 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
1746 (comint-update-fence): Prevent font-lock from running unnecessarily.
1747 (comint-dynamic-list-completions): Use with-current-buffer.
1748
1749 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1750
1751 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
1752 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
1753 (bibtex-entry-update): Handle alternatives and optional fields.
1754 (bibtex-parse-entry): Bugfix, handle empty key.
1755
1756 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1757
1758 * vc-arch.el (vc-arch-state): Don't assume the file exists.
1759
1760 2004-05-31 Lars Hansen <larsh@math.ku.dk>
1761
1762 * desktop.el (desktop-save): Don't save minor modes without a
1763 known mode initialization function.
1764
1765 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
1766
1767 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
1768
1769 * autorevert.el: Update `Commentary' section.
1770
1771 2004-05-30 Juanma Barranquero <lektu@terra.es>
1772
1773 * dos-fns.el (convert-standard-filename):
1774 * files.el (convert-standard-filename):
1775 * w32-fns.el (convert-standard-filename):
1776 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
1777
1778 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
1779
1780 Sync with Tramp.
1781
1782 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
1783 (tramp-let-maybe): Move to an earlier spot in the file.
1784 Patch by Andreas Schwab.
1785
1786 2004-05-30 Andreas Schwab <schwab@suse.de>
1787
1788 * dired.el (dired-get-filename): Don't use dired-re-dot.
1789
1790 2004-05-30 Richard M. Stallman <rms@gnu.org>
1791
1792 * files.el (find-file): Doc fix.
1793
1794 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
1795
1796 2004-05-30 Nick Roberts <nickrob@gnu.org>
1797
1798 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
1799 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
1800 modeline of the locals buffer.
1801 (gdb-goto-breakpoint): Handle gdbmi.
1802 (gdb-get-frame-number): Change for gdbmi.
1803
1804 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
1805
1806 * files.el (file-remote-p): Apply file name handler for operation
1807 `file-remote-p'. It isn' a property any longer.
1808 (file-relative-name): `fh' and `fd' get the required value via
1809 `find-file-name-handler' already.
1810
1811 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
1812 (top): Remove setting of `file-remote-p' property for
1813 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
1814
1815 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
1816
1817 Version 2.0.41 of Tramp released.
1818
1819 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
1820 Throw away if process has died.
1821 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
1822 (tramp-out-of-band-prompt-regexp): Rename to
1823 `tramp-process-alive-regexp', because its usage is widen.
1824 (tramp-actions-copy-out-of-band): Apply it.
1825 (tramp-actions-before-shell, tramp-multi-actions):
1826 Add `tramp-action-process-alive' action.
1827 (tramp-action-process-alive): New defun.
1828 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
1829 Add entry for `file-remote-p'.
1830 (tramp-handle-file-remote-p): New defun.
1831 (top): Remove setting of `file-remote-p'. Don't set
1832 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
1833
1834 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1835 `file-remote-p'.
1836
1837 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
1838 counted for (last) line. [They should or they shouldn't? --Stef]
1839 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
1840
1841 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
1842
1843 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
1844 not really necessary but seems to keep the shell history smaller
1845 in some cases. It is no substitute for setting HISTFILE and
1846 HISTSIZE from tramp-open-connection-setup-interactive-shell,
1847 though. Suggested by Luc Teirlinck.
1848 (tramp-open-connection-setup-interactive-shell): Export variables
1849 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
1850 (tramp-set-process-query-on-exit-flag): New compat function.
1851 (tramp-open-connection-multi, tramp-open-connection-su)
1852 (tramp-open-connection-rsh, tramp-open-connection-telnet)
1853 (tramp-do-copy-or-rename-file-out-of-band): Use it.
1854 (tramp-let-maybe): New macro, let-binds a variable only if it
1855 isn't obsolete.
1856 (tramp-check-ls-commands, tramp-handle-expand-file-name)
1857 (tramp-handle-file-truename): Use it.
1858 (tramp-completion-file-name-regexp-unified): Avoid matching
1859 filenames starting with "/:" -- those are reserved for
1860 file-name-non-special.
1861
1862 * tramp-smb.el (tramp-smb-open-connection):
1863 Use tramp-set-process-query-on-exit-flag compat function.
1864
1865 2004-05-29 Richard M. Stallman <rms@gnu.org>
1866
1867 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
1868
1869 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
1870 (eval-last-sexp-print-value): Print char equivalent regardless
1871 of standard-output value.
1872
1873 * thumbs.el (thumbs-subst-char-in-string): Delete.
1874 (thumbs-thumbname): Use subst-char-in-string.
1875 (thumbs-resize-image): Use condition-case, not ignore-errors.
1876 (thumbs-kill-buffer): Likewise.
1877
1878 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
1879 (thumbs-mode): Make buffer read-only.
1880 (thumbs-make-thumb): Unconditionally accept an existing file.
1881 (thumbs-insert-thumb): Add thumb-image-file property to the image.
1882 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
1883 (thumbs-show-thumbs-list): Error if images not supported.
1884 (thumbs-save-current-image): Improve prompt string.
1885 (thumbs-mode-map): Define u, R, x.
1886 (thumbs-unmark): New command.
1887 (thumbs-emboss-image): Minor cleanup.
1888 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
1889 (thumbs-rename-images): New command.
1890 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
1891
1892 * thumbs.el (thumbs-current-image): New function.
1893 (thumbs-file-list, thumbs-file-alist): New functions.
1894 (thumbs-find-image): Delete arg L.
1895 Don't set up thumbs-fileL as buffer-local global var.
1896 (thumbs-find-image-at-point): Use thumbs-current-image.
1897 (thumbs-set-image-at-point-to-root-window): Likewise.
1898 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
1899 Record and warn about errors. Update thumbs-markedL for deletions.
1900 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
1901 (thumbs-redraw-buffer): Use thumbs-file-list.
1902 (thumbs-mark): Use thumbs-current-image.
1903 (thumbs-show-name): Use thumbs-current-image.
1904
1905 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
1906 and imenu--last-menubar-index-alist.
1907
1908 * subr.el (with-selected-window): Undo previous change.
1909
1910 2004-05-29 John Paul Wallington <jpw@gnu.org>
1911
1912 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
1913 (thumbs-mouse-find-image): New command.
1914 (thumbs-mode-map): Bind it to mouse-2.
1915 (thumbs-mode): Make mode-class special.
1916 (thumbs-view-image-mode): Likewise.
1917
1918 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
1919
1920 * flymake.el: New file.
1921
1922 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
1923
1924 * files.el (find-file-noselect-1): Do not bind
1925 `inhibit-read-only' to t during execution of
1926 `find-file-not-found-functions'.
1927
1928 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1929
1930 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
1931 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
1932
1933 2004-05-28 Juri Linkov <juri@jurta.org>
1934
1935 * simple.el (eval-expression-print-format): New fun.
1936
1937 * simple.el (eval-expression):
1938 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
1939 * emacs-lisp/edebug.el (edebug-compute-previous-result)
1940 (edebug-eval-expression): Print additionally the value returned by
1941 `eval-expression-print-format'.
1942
1943 * emacs-lisp/lisp.el (insert-pair-alist): New var.
1944 (insert-pair): Make arguments optional. Find character pair
1945 from `insert-pair-alist' according to the last input event.
1946 (insert-parentheses): Make arguments optional.
1947 (raise-sexp, delete-pair): New funs.
1948
1949 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
1950 (emacs-lisp-mode-map, lisp-interaction-mode-map):
1951 Bind C-M-q to `indent-pp-sexp'.
1952
1953 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
1954 `pp-to-string' modified to be able to format text with newlines.
1955 (pp-to-string): Move the buffer-formatting part of the code to
1956 `pp-buffer'. Call `pp-buffer'.
1957
1958 * info.el (Info-desktop-buffer-misc-data): Don't save information
1959 about virtual files.
1960 (Info-restore-desktop-buffer): Restore Info buffers in prepared
1961 buffers with names obtained from the desktop file instead of the
1962 default *info* buffer.
1963
1964 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1965
1966 * subr.el (with-selected-window): Only save/restore the selected window.
1967
1968 * progmodes/compile.el (compilation-error-regexp-alist):
1969 Use expand-file-name and data-directory.
1970
1971 * progmodes/grep.el (grep-tree): Rework previous fix.
1972
1973 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
1974 after the user marked text with the mouse.
1975
1976 * startup.el (command-line): Keep the first regexp of
1977 auto-save-file-name-transforms intact.
1978
1979 2004-05-28 Juanma Barranquero <lektu@terra.es>
1980
1981 * cus-edit.el (customize-face, customize-face-other-window)
1982 (custom-face-edit-delete): Make arguments match their use in
1983 docstring.
1984 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
1985 docstring.
1986
1987 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
1988 not `cvs-butlast'.
1989
1990 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
1991 `nbutlast' are in subr.el).
1992
1993 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
1994 (set-w32-system-coding-system): Doc fixes.
1995
1996 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
1997 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
1998 Make arguments match their use in docstring.
1999 (artist-draw-region-trim-line-endings)
2000 (artist-mouse-choose-operation): Fix typo in docstring.
2001 (artist-key-set-point-common): Doc fix.
2002
2003 2004-05-28 Simon Josefsson <jas@extundo.com>
2004
2005 * mail/smtpmail.el (smtpmail-open-stream):
2006 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
2007
2008 2004-05-26 Simon Josefsson <jas@extundo.com>
2009
2010 * starttls.el: Merge with my GNUTLS based starttls.el.
2011 (starttls-gnutls-program, starttls-use-gnutls)
2012 (starttls-extra-arguments, starttls-process-connection-type)
2013 (starttls-connect, starttls-failure, starttls-success): New variables.
2014 (starttls-program, starttls-extra-args): Doc fix.
2015 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
2016 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
2017 and pass on to corresponding *-gnutls function if it is set.
2018
2019 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
2020
2021 * autorevert.el (auto-revert-handler): Disable auto-reverting of
2022 remote files.
2023
2024 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
2025
2026 * files.el (file-name-non-special): There are more operations
2027 which need handling: `find-backup-file-name',
2028 `insert-file-contents', `verify-visited-file-modtime',
2029 `write-region'. Rename t value of method to `add'. Add new
2030 methods `quote' and `unquote-then-quote' to file-arg-indices.
2031
2032 2004-05-25 Juri Linkov <juri@jurta.org>
2033
2034 * info.el (Info-toc): Call Info-mode on intermediate buffer.
2035 (Info-index-nodes): Enclose code in condition-case to catch errors.
2036 (Info-index-node): Don't search all index nodes if request is only
2037 for the current node and file is not in the cache of index nodes.
2038 (Info-mode-map): Bind Info-copy-current-node-name to `w'
2039 for consistency with dired-copy-filename-as-kill.
2040 Bind `S' to Info-search-case-sensitively.
2041 (Info-copy-current-node-name): New arg. With zero prefix arg put
2042 the name inside a function call to `info'. Display copied text in
2043 the echo area.
2044
2045 2004-05-25 Sam Steingold <sds@gnu.org>
2046
2047 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
2048 strip the package prefix from the symbol name, if any.
2049 Make it the `find-tag-default-function' for `lisp-mode'.
2050
2051 2004-05-25 John Paul Wallington <jpw@gnu.org>
2052
2053 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
2054 instead of obsolete `process-kill-without-query'.
2055
2056 * textmodes/texinfmt.el (texinfo-indexvar-alist):
2057 Declare as variable, not constant.
2058
2059 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
2060
2061 * files.el (find-file-noselect-1): Fix bug introduced by
2062 Revision 1.694. As a side effect, `inhibit-read-only'
2063 is again, by default, t during execution of
2064 `find-file-not-found-functions'.
2065 (insert-directory): Check that lines were really inserted by
2066 the --dired switch, before erasing them.
2067
2068 2004-05-24 Nick Roberts <nickrob@gnu.org>
2069
2070 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
2071 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
2072 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
2073 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
2074 gud-minor-mode (gdbmi).
2075
2076 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2077
2078 * net/browse-url.el (browse-url-interactive-arg): Enable user to
2079 explicitly select the text to be taken as URL.
2080
2081 2004-05-23 Juri Linkov <juri@jurta.org>
2082
2083 * info.el (Info-index-nodes): New var and fun.
2084 (Info-goto-index, Info-index, info-apropos)
2085 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
2086 (Info-index): Fix docstring. Store and restore Info-history-list.
2087 (Info-complete-nodes): New var.
2088 (Info-complete-menu-item): Use it.
2089 (Info-index-node): New fun.
2090 (Info-final-node, Info-forward-node, Info-backward-node)
2091 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
2092 Use Info-index-node.
2093 (Info-extract-menu-item, Info-extract-menu-counting): Set second
2094 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
2095 (Info-find-node-2): If a node with period in its name not found,
2096 try to find a node without the name part after period.
2097 (Info-select-node): Call Info-fontify-node only if
2098 Info-fontify-maximum-menu-size is not nil.
2099 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
2100 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
2101 Preserve Info-history-list.
2102 (Info-toc): Set Info-current-file.
2103 (Info-build-toc): Move point to the beginning of the buffer.
2104 Add main-file variable.
2105 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
2106 Use backslashed representation of the control character ^_.
2107
2108 * textmodes/texinfmt.el (texinfo-print-index): Print index line
2109 numbers in the new Texinfo 4.7 format.
2110
2111 * add-log.el (change-log-font-lock-keywords): Remove `:' from
2112 regexps for function and variable names.
2113
2114 * descr-text.el (describe-property-list): Add [show] button for
2115 `syntax-table' property with action to pp to a separate buffer.
2116 (describe-char): Replace search-forward by re-search-forward with
2117 whitespace regexp after "character:" to not fail in too narrow windows.
2118
2119 * simple.el (next-error-find-buffer): Add a rule to return
2120 next-error capable buffer if one window on the selected frame
2121 displays such buffer.
2122
2123 2004-05-23 Nick Roberts <nickrob@gnu.org>
2124
2125 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
2126 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
2127 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
2128 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
2129 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
2130 Handle new value for gud-minor-mode (gdbmi).
2131 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
2132 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
2133 Change from local to global gdb variable set.
2134 (gdb-ann3): Initialise above gdb variable set.
2135 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
2136 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
2137 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
2138 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
2139 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
2140 (gdb-info-locals-handler, gdb-invalidate-assembler)
2141 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
2142 set as global variables.
2143 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
2144 Handle gdbmi.
2145 (gdb-info-breakpoints-custom): Fix regexp.
2146 (def-gdb-var): Delete.
2147
2148 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
2149 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
2150 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
2151 a new mode. The file (gdb-mi.el) for this mode will be included
2152 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
2153 primary interface.
2154
2155 2004-05-23 Jesper Harder <harder@ifa.au.dk>
2156
2157 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
2158 interpreted as a directory.
2159
2160 2004-05-22 Richard M. Stallman <rms@gnu.org>
2161
2162 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
2163 as a close quote.
2164
2165 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
2166
2167 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
2168 Use assoc-string, not assoc-ignore-case.
2169
2170 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
2171
2172 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
2173 If moving back then fwd gets a defun that ends before point,
2174 try again moving fwd then back.
2175
2176 * files.el (file-name-non-special): Allow t in file-arg-indices
2177 to mean requote the return value. Use `identity' as an element
2178 rather than as the whole value.
2179
2180 * gs.el (gs-options): Add -dSAFER. Mark it risky.
2181
2182 2004-05-22 Juanma Barranquero <lektu@terra.es>
2183
2184 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
2185 `help-make-usage'.
2186 (help-highlight-arguments): Skip function name before searching
2187 for arguments.
2188
2189 2004-05-21 Juanma Barranquero <lektu@terra.es>
2190
2191 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
2192 Don't mention in the docstring these arguments meant for
2193 internal (recursive) use only.
2194 (allout-char-spec): Comment out (it's not implemented).
2195 (allout-old-expose-topic, allout-exposure): Fix docstring and add
2196 obsolescence declaration.
2197 (allout-flatten-exposed-to-buffer)
2198 (allout-indented-exposed-to-buffer): Fix typos in docstring.
2199 (my-mark-marker): Doc fix.
2200 (produce-allout-mode-map, allout-sibling-index)
2201 (allout-isearch-expose, allout-distinctive-bullet)
2202 (allout-open-topic, allout-reindent-body)
2203 (allout-rebullet-heading, allout-process-exposed)
2204 (allout-insert-listified, allout-latex-verb-quote)
2205 (allout-insert-latex-header, allout-insert-latex-trailer):
2206 Make arguments match their use in docstring.
2207 (allout-primary-bullet, allout-old-style-prefixes)
2208 (allout-inhibit-protection, allout-init, allout-mode)
2209 (allout-before-change-protect, allout-flag-region):
2210 Use "Emacs" instead of "emacs" in docstrings.
2211
2212 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
2213
2214 * international/characters.el: Modify syntax of more characters.
2215
2216 2004-05-21 Masatake YAMATO <jet@gyve.org>
2217
2218 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
2219 (etags-tags-completion-table): Show parsing progress.
2220
2221 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
2222
2223 * locate.el (locate-prompt-for-command): Shorten first line of
2224 docstring.
2225 (locate-mode): Expand docstring and include keymap summary.
2226
2227 * files.el (find-file-noselect-1): Limit the scope of the
2228 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
2229 is, by default, nil during the execution of
2230 `find-file-not-found-functions' and `find-file-hook'.
2231
2232 2004-05-20 Michael Mauger <mmaug@yahoo.com>
2233
2234 * facemenu.el (facemenu-color-name-equal): New function.
2235 (list-colors-display): Use it to compare colors instead of
2236 facemenu-color-equal.
2237
2238 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
2239
2240 * compare-w.el (compare-windows-face): Use min-colors instead of
2241 checking for tty or pc types.
2242
2243 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2244
2245 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
2246 (completion-setup-function): Use with-current-buffer.
2247 Properly save excursion. Simplify.
2248 Don't assume there is necessarily a `mouse-face' property somewhere.
2249
2250 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
2251
2252 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
2253
2254 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
2255 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
2256 Use with-current-buffer.
2257 (byte-goto-log-buffer): Delete.
2258 (byte-compile-log-file): Call compilation-forget-errors.
2259
2260 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2261
2262 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
2263 output messages into the search result.
2264
2265 2004-05-19 Masatake YAMATO <jet@gyve.org>
2266
2267 * wid-edit.el (widget-radio-button-notify): Revert my last
2268 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
2269
2270 2004-05-19 Kenichi Handa <handa@m17n.org>
2271
2272 * international/characters.el: Fix syntax (open/close) of CJK chars.
2273
2274 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
2275
2276 * help-mode.el (help-go-back): Don't depend on position of back button.
2277
2278 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2279
2280 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
2281 files files don't contain an accidental additional /.
2282
2283 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
2284 in source buffer.
2285
2286 2004-05-18 Masatake YAMATO <jet@gyve.org>
2287
2288 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
2289 to widget-apply. :action method assumes 2 arguments, not 3.
2290
2291 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
2292
2293 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
2294 New constants.
2295 (hs-special-modes-alist): Add an f90-mode entry.
2296
2297 2004-05-17 Sam Steingold <sds@gnu.org>
2298
2299 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
2300 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
2301
2302 2004-05-16 Kim F. Storm <storm@cua.dk>
2303
2304 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
2305
2306 2004-05-15 John Wiegley <johnw@newartisans.com>
2307
2308 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
2309 (eshell-output-object-to-target): Improve output speed 20% by not
2310 calling `eshell-stringify' if something is already known to be a string.
2311
2312 2004-05-15 Alex Ott <ott@jet.msk.su>
2313
2314 * textmodes/ispell.el (ispell-local-dictionary-alist):
2315 Add windows-1251 to the choice of coding systems.
2316 (ispell-dictionary-alist-6): Add support for "russianw.aff",
2317 encoded in cp1251.
2318
2319 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
2320
2321 * progmodes/compile.el (compilation-warning-face)
2322 (compilation-info-face): Use min-colors.
2323
2324 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2325
2326 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
2327 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
2328 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
2329 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
2330 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
2331 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
2332 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
2333 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
2334 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
2335 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
2336 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
2337 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
2338 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
2339 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
2340
2341 2004-05-15 Kim F. Storm <storm@cua.dk>
2342
2343 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
2344 Use it to set triggered-p element of timer.
2345 (timer-event-handler): Set triggered-p element non-nil while running
2346 the timer function.
2347
2348 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * descr-text.el (describe-char-unicode-data)
2351 (describe-char-unicodedata-file): Re-enable the unicode code now that
2352 the licensing issues have been cleared in the unicode-4 license.
2353 (describe-text-properties-1): Remove unused `overlay' var.
2354 (describe-char): Remove unused var `buffer'.
2355
2356 2004-05-14 David Ponce <david@dponce.com>
2357
2358 * tree-widget.el: New file.
2359
2360 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
2361
2362 * language/european.el ("Brazilian Portuguese"): Add support for
2363 Brazilian Portuguese.
2364
2365 2004-05-13 John Wiegley <johnw@newartisans.com>
2366
2367 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
2368 `recentf-mode' if this variable has been customized to t.
2369
2370 * eshell/esh-test.el (eshell-test): Call the function
2371 `emacs-version' rather than trying to build a custom version string.
2372
2373 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2374
2375 * net/telnet.el (telnet-mode): Use define-derived-mode.
2376 Don't modify the global value of comint-prompt-regexp.
2377
2378 2004-05-13 John Paul Wallington <jpw@gnu.org>
2379
2380 * version.el (emacs-version): Check for `gtk' feature before
2381 `x-toolkit' feature.
2382
2383 2004-05-13 Juanma Barranquero <lektu@terra.es>
2384
2385 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
2386 arguments in the docstring, they're used only in recursive calls.
2387
2388 * help-fns.el (help-arg-highlighting-function)
2389 (help-argument-name): Delete.
2390 (help-default-arg-highlight): New function.
2391 (help-do-arg-highlighting): Use it.
2392
2393 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
2394
2395 * calendar/appt.el (appt-disp-window):
2396 Use `calendar-set-mode-line' for a centered mode-line.
2397
2398 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2399
2400 * calendar/appt.el (appt-disp-window): Do not split window
2401 excessively when `split-height-threshold' is low.
2402
2403 2004-05-12 Nick Roberts <nickrob@gnu.org>
2404
2405 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
2406 kill-buffer-hook here and make it local.
2407 (gud-kill-buffer-hook): Use kill-process for a sure kill.
2408
2409 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
2410
2411 * progmodes/compile.el (compilation-set-window-height):
2412 Use save-excursion to protect against misplaced marker.
2413
2414 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2415
2416 * custom.el (defface): Document that type can have value gtk.
2417
2418 * faces.el (face-spec-set-match-display): Handle type gtk in display.
2419
2420 2004-05-12 Kenichi Handa <handa@m17n.org>
2421
2422 * descr-text.el: Require quail at comile time.
2423 (describe-char): If an input method is on and it supports the
2424 character, show how to input it.
2425
2426 * international/quail.el (quail-install-decode-map): Accept a
2427 char-table whose subtype is `quail-decode-map'.
2428 (quail-store-decode-map-key, quail-gen-decode-map1)
2429 (quail-gen-decode-map, quail-find-key1, quail-find-key)
2430 (quail-show-key): New functions.
2431
2432 2004-05-12 Juanma Barranquero <lektu@terra.es>
2433
2434 * generic.el (define-generic-mode): Remove redundant arglist info.
2435
2436 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
2437 Make arguments match their use in docstring.
2438 (help-arg-highlighting-function): New variable.
2439 (help-argument-name): Mention it in the docstring.
2440 (help-do-arg-highlight): Use it. Expand regexp to accept also
2441 ARG-xxx and xxx-ARG references.
2442
2443 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2444
2445 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
2446 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
2447 and "mailto:addr1?to=addr2" equal.
2448
2449 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
2450
2451 * man.el (Man-getpage-in-background): Use shell-file-name
2452 and shell-command-switch variables instead of hard-coded values.
2453
2454 2004-05-11 Eli Zaretskii <eliz@gnu.org>
2455
2456 * iimage.el: New file.
2457
2458 2004-05-11 Juanma Barranquero <lektu@terra.es>
2459
2460 * custom.el (custom-initialize-default, defcustom):
2461 Fix typo in docstring.
2462
2463 * files.el (set-visited-file-name, file-expand-wildcards):
2464 Fix docstring.
2465
2466 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2467
2468 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
2469
2470 * subr.el (eventp): Be more discriminating with integers.
2471
2472 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2473
2474 * progmodes/compile.el (compile): Add universal prefix arg.
2475 (compilation-error-regexp-alist-alist): Add edg patterns.
2476
2477 2004-05-10 Sam Steingold <sds@gnu.org>
2478
2479 * textmodes/ispell.el (ispell-message):
2480 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
2481
2482 2004-05-10 Dave Love <fx@gnu.org>
2483
2484 * progmodes/python.el (help-buffer): Autoload when compiling.
2485 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
2486 (run-python): Prepend to any existing PYTHONPATH.
2487
2488 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
2489
2490 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
2491 for pending breakpoints.
2492
2493 2004-05-10 Richard M. Stallman <rms@gnu.org>
2494
2495 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
2496 directly without calling any functions in Rmail.
2497 (unrmail-unprune): Function deleted.
2498
2499 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2500
2501 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
2502 C-c C-z binding.
2503
2504 2004-05-10 Kenichi Handa <handa@m17n.org>
2505
2506 * descr-text.el (describe-char): Fix previous change. Don't make
2507 a unibyte character to multibyte in the *Help* buffer.
2508
2509 2004-05-10 Miles Bader <miles@gnu.org>
2510
2511 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
2512 buffer an error if the debugger process is actually running.
2513
2514 2004-05-10 Juanma Barranquero <lektu@terra.es>
2515
2516 * help-fns.el (help-argument-name): Default to italic.
2517 (help-highlight-arguments): Return always (usage . doc), even when
2518 usage is nil.
2519
2520 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
2521 (define-ibuffer-filter): Add usage info.
2522 (define-ibuffer-op): Add usage info (but CL-style defaults for
2523 keyword args are not shown).
2524
2525 * subr.el (remove-overlays, read-passwd): Fix docstring.
2526 (start-process-shell-command): Fix docstring. Put usage info in a
2527 format usable by `describe-function'.
2528 (open-network-stream, open-network-stream-nowait)
2529 (open-network-stream-server): Fix docstring.
2530
2531 2004-05-09 Jason Rumney <jasonr@gnu.org>
2532
2533 * international/code-pages (cp932, cp936, cp949, c950): Remove.
2534 Only define cp125* if windows-125* is already defined.
2535
2536 * language/korean.el (cp949): Add alias.
2537
2538 * language/chinese.el (cp936, cp950): Add aliases.
2539
2540 * language/japanese.el (cp932): Add alias.
2541
2542 * term/w32-win.el: Require code-pages.
2543
2544 * international/mule-cmds.el (set-locale-environment):
2545 On MS-Windows use ansi code-page for default coding-systems.
2546 Set up paper sizes for Windows 3 letter languages.
2547
2548 * international/code-pages.el (cp932, cp936, cp949, cp950):
2549 Add aliases. Also add cp125* if not already defined.
2550
2551 2004-05-09 Juanma Barranquero <lektu@terra.es>
2552
2553 * help-fns.el (help-highlight-arguments): Don't try to highlight
2554 missing or autoloaded arglists. Accept structured arguments, like
2555 the first ones of `do' and `flet'.
2556
2557 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
2558 (cvs-get-marked): Remove redundant arglist info.
2559
2560 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
2561 Don't use CL-style default args.
2562
2563 2004-05-08 Andreas Schwab <schwab@suse.de>
2564
2565 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
2566
2567 * international/subst-ksc.el: Fix references to utf-translate-cjk
2568 into utf-translate-cjk-mode.
2569 * international/subst-big5.el: Likewise.
2570 * international/subst-gb2312.el: Likewise.
2571 * international/subst-jis.el: Likewise.
2572 * international/utf-16.el: Likewise.
2573 * international/utf-8.el: Likewise.
2574
2575 2004-05-08 John Wiegley <johnw@newartisans.com>
2576
2577 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
2578 "virtual buffers" (off by default), which makes it possible to
2579 switch to the "virtual" buffers of recently visited files. When a
2580 buffer name search fails, and this option is on, iswitchb will
2581 look at the list of recently visited files, and permit matching
2582 against those names. When the user hits RET on a match, it will
2583 revisit that file.
2584 (iswitchb-read-buffer): Add two optional arguments, which makes
2585 isearchb.el possible.
2586 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
2587 (iswitchb-next-match): Add support for virtual buffers.
2588
2589 * isearchb.el: This module extends iswitchb to provide "as you
2590 type" buffer selection.
2591
2592 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
2593 Ignore the read-only property when flyspell highlighting is on.
2594 Not ignoring it leads to a series of confusing errors.
2595 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
2596 but also make sure to call flyspell-incorrect-hook.
2597 (flyspell-maybe-correct-transposition): Perform transposition test
2598 by bit twiddling a string, rather than using a temp buffer.
2599 (flyspell-maybe-correct-doubling): Use a string rather than a temp
2600 buffer. This is also the original version of the code, which
2601 could not be checked in before due to a previous lack of
2602 assignment papers. This version has seen heavy usage on my system
2603 for several years now.
2604
2605 * calendar/cal-bahai.el: New file, which adds support for the
2606 Baha'i calendar to Emacs. This calendar is based on a solar year
2607 of 19 months of 19 days, with 4 intercalary days. Each year
2608 begins on March 21, with the calendar starting in 1844.
2609
2610 * calendar/cal-menu.el, calendar/calendar.el,
2611 calendar/diary-lib.el, calendar/holidays.el: Added support for
2612 using cal-bahai.el.
2613
2614 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
2615 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
2616 function can be used outside of eshell buffers.
2617 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
2618
2619 2004-05-08 Juanma Barranquero <lektu@terra.es>
2620
2621 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
2622 word constituent so FOO-ARG is not recognized as an arg.
2623 (help-highlight-arguments): Don't skip lists in mandatory arguments.
2624
2625 * simple.el (next-error): Fix typo in docstring.
2626 (open-line): Make argument names match their use in docstring.
2627 (split-line): Fix docstring.
2628
2629 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
2630 usable by `describe-function'.
2631 (gensym, gentemp, typep, ignore-errors): Make argument names match
2632 their use in docstring.
2633
2634 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
2635 argument to `help-setup-xref'.
2636
2637 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
2638
2639 Version 2.0.40 of Tramp released.
2640
2641 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
2642 Use symbol-function to invoke functions only known on some Emacs
2643 flavors. This avoids byte-compiler warnings. Reported by Kevin
2644 Scaldeferri <kevin@scaldeferri.com>.
2645 (tramp-do-copy-or-rename-file-via-buffer): Rename from
2646 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
2647 consistent with the other tramp-do-* functions.
2648 (tramp-do-copy-or-rename-file): Calls adjusted.
2649 (tramp-process-initial-commands): Avoid liveness check on shell --
2650 we know that it must be alive since we're opening a connection at
2651 this moment.
2652 (tramp-last-cmd): New internal variable.
2653 (tramp-process-echoes): New tunable.
2654 (tramp-send-command): Set tramp-last-cmd.
2655 (tramp-wait-for-output): Delete echo, if applicable.
2656 (tramp-read-passwd): Construct the key for the password cache in a
2657 way that works for multi methods, too.
2658 (tramp-bug): Add backup-directory-alist and
2659 bkup-backup-directory-info to bug reports, with Tramp counterparts.
2660
2661 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
2662
2663 * net/tramp*.el: Suppress byte-compiler warnings where possible.
2664
2665 * net/tramp.el (tramp-out-of-band-prompt-regexp)
2666 (tramp-actions-copy-out-of-band): New defcustoms.
2667 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
2668 used instead of a synchronous one. Allows password entering.
2669 (tramp-action-out-of-band): New defun.
2670 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
2671 Remove restriction with password from doc string.
2672 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
2673 `tramp-out-of-band-prompt-regexp',
2674 `tramp-actions-copy-out-of-band', `password-cache' and
2675 `password-cache-expiry'.
2676 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
2677 password caching.
2678 (tramp-touch): FILE can be a local file, too.
2679 (TODO): Remove items done.
2680 (tramp-handle-insert-directory): Properly quote file name also if
2681 not full-directory-p. Handle wildcard case. Reported by Andreas
2682 Schwab <schwab@suse.de>.
2683 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
2684 new file.
2685 (tramp-handle-file-local-copy, tramp-handle-write-region):
2686 The permissions of the temporary file are set if filename exists.
2687 Reported by Ted Stern <stern@cray.com>.
2688 (tramp-backup-directory-alist)
2689 (tramp-bkup-backup-directory-info): New defcustoms.
2690 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
2691 (tramp-handle-find-backup-file-name): New function.
2692 Implements Tramp's find-backup-file-name.
2693
2694 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
2695 for `find-backup-file-name'.
2696
2697 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
2698 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2699
2700 2004-05-07 Lars Hansen <larsh@math.ku.dk>
2701
2702 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
2703
2704 2004-05-07 Juanma Barranquero <lektu@terra.es>
2705
2706 * subr.el (lambda): Add arglist description to docstring.
2707 (declare): Fix typo in docstring.
2708 (open-network-stream): Fix docstring.
2709 (process-kill-without-query): Fix docstring and add obsolescence info.
2710 (last, butlast, nbutlast): Make arguments match their use in docstring.
2711 (insert-buffer-substring-no-properties): Likewise.
2712 (insert-buffer-substring-as-yank): Likewise.
2713 (split-string): Fix docstring.
2714
2715 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2716 Make argument names match their use in docstring.
2717
2718 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
2719
2720 2004-05-06 Nick Roberts <nickrob@gnu.org>
2721
2722 * progmodes/gdb-ui.el: Improve/extend documentation strings.
2723 Fit first sentence on one line for apropos-command.
2724
2725 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2726
2727 Changes largely merged in from Dave Love's code.
2728 * progmodes/python.el: Doc fixes.
2729 (python-mode-map): Add python-complete-symbol.
2730 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
2731 (python-comment-indent, python-complete-symbol)
2732 (python-symbol-completions, python-partial-symbol)
2733 (python-try-complete): New.
2734 (python-indent-line): Remove optional arg. Use python-block-end-p.
2735 (python-check): Bind compilation-error-regexp-alist.
2736 (inferior-python-mode): Use rx. Move keybindings to top level.
2737 Set comint-input-filter.
2738 (python-preoutput-filter): Use rx.
2739 (python-input-filter): Re-introduce.
2740 (python-proc): Start new process if necessary.
2741 Check python-buffer non-nil.
2742 (view-return-to-alist): Defvar.
2743 (python-send-receive): New.
2744 (python-eldoc-function): Use it.
2745 (python-mode-running): Don't defvar.
2746 (python-mode): Set comment-indent-function.
2747 Maybe update hippie-expand-try-functions-list.
2748 (python-indentation-levels): Initialize differently.
2749 (python-block-end-p): New.
2750 (python-indent-line): Use it.
2751 (python-compilation-regexp-alist): Augment.
2752 (run-python): Import `emacs' module to Python rather than loading
2753 code directly. Set python-buffer differently.
2754 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
2755 Use python-proc.
2756 (python-send-command): Go to end of comint buffer.
2757 (python-load-file): Use python-proc, emacs.eimport.
2758 (python-describe-symbol): Simplify interactive form.
2759 Use emacs.help. Do use temp-buffer-show-hook.
2760 Call print-help-return-message.
2761 (hippie-exp): Require when compiling.
2762 (python-preoutput-continuation): Use rx.
2763
2764 * diff-mode.el (diff-make-unified): Fix regexp.
2765
2766 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
2767
2768 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
2769 filter groups from the buffer when rebuilding the Ibuffer buffer
2770 and `ibuffer-show-empty-filter-groups' is nil.
2771
2772 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2773
2774 * ps-print.el (ps-print-quote): Call ps-value-string.
2775 (ps-setup): Call ps-comment-string.
2776 (ps-value-string, ps-comment-string): New funs.
2777
2778 2004-05-06 Juanma Barranquero <lektu@terra.es>
2779
2780 * ehelp.el (electric-help-command-loop): Check whether the last
2781 character is visible, not (point-max).
2782
2783 * help-fns.el (help-argument-name): Default to bold; don't inherit
2784 from font-lock-variable-name-face.
2785 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
2786
2787 2004-05-05 Kenichi Handa <handa@m17n.org>
2788
2789 * descr-text.el (describe-char): Copy the character with text
2790 properties and overlays into the first line, and call
2791 describe-text-properties on it.
2792
2793 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
2794
2795 * iswitchb.el (iswitchb-global-map): Fix typo.
2796 Remove unwanted ###autoloads from source file.
2797
2798 2004-05-05 Lars Hansen <larsh@math.ku.dk>
2799
2800 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
2801 in run-hooks. Use substitute-command-keys in message.
2802 (wdired-abort-changes): Add message.
2803
2804 2004-05-03 Michael Mauger <mmaug@yahoo.com>
2805
2806 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
2807 (sql-emacs20-p): Remove.
2808 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
2809 (sql-builtin-face, sql-doc-face): Remove.
2810 (sql-mode-ansi-font-lock-keywords)
2811 (sql-mode-oracle-font-lock-keywords)
2812 (sql-mode-postgres-font-lock-keywords)
2813 (sql-mode-linter-font-lock-keywords)
2814 (sql-mode-ms-font-lock-keywords)
2815 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
2816 (sql-product-font-lock): Fix font-lock reset when font rules change.
2817 (sql-highlight-product): Remove incorrect font-lock reset logic.
2818
2819 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
2820
2821 * ses.el (ses-set-parameter): Fix typo.
2822
2823 2004-05-04 Kim F. Storm <storm@cua.dk>
2824
2825 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
2826 Must expand directory for completion to work; and don't mess with
2827 process-environment.
2828 (ido-read-file-name): If command has ido property, don't use ido
2829 if value is ignore, or read as directory if value is dir.
2830 Set ido ignore property for dired-do-rename command.
2831
2832 2004-05-04 Juanma Barranquero <lektu@terra.es>
2833
2834 * ehelp.el (electric-help-command-loop, electric-help-undefined)
2835 (electric-help-help): Check against unmapped commands.
2836
2837 * help-fns.el (help-argument-name): New face, inheriting from
2838 font-lock-variable-name-face, to highlight function arguments in
2839 `describe-function' and `describe-key'.
2840 (help-do-arg-highlight): Auxiliary function to highlight a given
2841 list of arguments in a string.
2842 (help-highlight-arguments): Highlight the function arguments and
2843 all uses of them in the docstring.
2844 (describe-function-1): Use it. Do docstring output via `insert',
2845 not 'princ', so text attributes are preserved.
2846
2847 * winner.el (winner-mode-map): Move `winner-undo' and
2848 `winner-redo' to C-c <left> and C-c <right>, respectively (the
2849 previous bindings conflict with `prev-buffer', `next-buffer').
2850
2851 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2852
2853 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
2854 (bibtex-entry-update): New command bound to C-c C-u.
2855 (bibtex-text-in-string): Fix regexp.
2856 (bibtex-assoc-of-regexp): Remove.
2857 (bibtex-progress-message): Fix docstring.
2858 (bibtex-inside-field): Use if.
2859 (bibtex-assoc-regexp): New function.
2860 (bibtex-format-entry): Make code more robust so that it formats
2861 also old entries.
2862 (bibtex-autokey-demangle-title): Merge with obsolete function
2863 bibtex-assoc-of-regexp.
2864 (bibtex-field-list): New function.
2865 (bibtex-entry): Use bibtex-field-list.
2866 (bibtex-parse-entry): Fix docstring.
2867 (bibtex-print-help-message): Use bibtex-field-list.
2868 (bibtex-make-field): Use bibtex-field-list.
2869 (bibtex-entry-index): Bugfix. Return crossref key if required.
2870 (bibtex-lessp): Fix docstring.
2871
2872 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
2873
2874 * select.el (xselect-convert-to-string): Move comment to intended line.
2875
2876 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2877
2878 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
2879 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
2880
2881 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2882
2883 * term/x-win.el (x-clipboard-yank): Don't exit on error from
2884 x-get-selection.
2885
2886 2004-05-03 Jason Rumney <jasonr@gnu.org>
2887
2888 * makefile.nt: Remove.
2889
2890 2004-05-03 Kim F. Storm <storm@cua.dk>
2891
2892 * emulation/cua-base.el (cua--update-indications): Fix last change.
2893 (cua-mode): Deactivate mark when cua-mode is enabled.
2894
2895 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
2896
2897 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
2898
2899 2004-05-03 Nick Roberts <nickrob@gnu.org>
2900
2901 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
2902 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
2903 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
2904 window over visible frames.
2905 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
2906
2907 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2908
2909 * progmodes/compile.el (compilation-gcpro): New var.
2910 (compilation-fake-loc): Use it.
2911 (compilation-forget-errors): Reset it.
2912
2913 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2914
2915 * diff-mode.el (diff-header-face, diff-file-header-face):
2916 Use min-colors.
2917
2918 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2919
2920 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
2921 (bibtex-clean-entry): Disentangle code.
2922 (bibtex-realign): New function.
2923 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
2924 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
2925 Remove undocumented optional arg called-by-convert-alien.
2926 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
2927 for sorting instead of bibtex-sort-buffer.
2928
2929 2004-05-02 Eli Zaretskii <eliz@gnu.org>
2930
2931 * progmodes/compile.el (compilation-start): In the
2932 no-async-subprocesses branch, call sit-for to give redisplay a
2933 chance to show the updated process status in the mode line, and
2934 fontify the buffer explicitly after the process exits.
2935
2936 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2937
2938 * progmodes/python.el (python-compilation-line-number): Remove.
2939 (python-compilation-regexp-alist): Don't use it any more.
2940 (python-orig-start, python-input-filter): Remove.
2941 (inferior-python-mode): Don't set up comint-input-filter-functions.
2942 (python-send-region): Use compilation-fake-loc.
2943
2944 * progmodes/compile.el (compilation-messages-start): New var.
2945 (compilation-mode): Don't setup next-error-function here.
2946 (compilation-setup): Set it up here instead (for minor modes as well).
2947 Make compilation-messages-start buffer local.
2948 (compilation-next-error-function): Use it.
2949 (compilation-forget-errors): Set compilation-messages-start.
2950
2951 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
2952
2953 * ielm.el (ielm-prompt-read-only): Update docstring.
2954
2955 * comint.el (comint-prompt-read-only): Update docstring.
2956 (comint-update-fence, comint-kill-whole-line)
2957 (comint-kill-region): New functions.
2958
2959 * simple.el (kill-whole-line): Use "p" instead of "P" in
2960 interactive form.
2961
2962 2004-05-01 Juanma Barranquero <lektu@terra.es>
2963
2964 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
2965 format arglist so default values in CL-style argument lists are
2966 correctly shown.
2967
2968 2004-05-01 Jason Rumney <jasonr@gnu.org>
2969
2970 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
2971
2972 2004-05-01 Kenichi Handa <handa@m17n.org>
2973
2974 * international/titdic-cnv.el (miscdic-convert): Don't generate a
2975 quail file if it is up to date.
2976
2977 2004-04-30 Juri Linkov <juri@jurta.org>
2978
2979 * cus-edit.el (custom-mode-map):
2980 Add key binding `C-x C-s' to `Custom-save'.
2981
2982 * outline.el (outline-blank-line): New var.
2983 (outline-next-preface, outline-show-heading)
2984 (outline-end-of-subtree): Use it.
2985
2986 * dired-aux.el (dired-touch-initial): New fun.
2987 (dired-do-chxxx): Call it for op-symbol `touch'.
2988 (dired-diff): Use `dired-dwim-target-directory'
2989 if current dired buffer has no buffer mark.
2990
2991 * bindings.el (propertized-buffer-identification):
2992 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
2993 Add C-M-arrow keys for consistency.
2994
2995 * files.el (confirm-kill-emacs):
2996 Change group from top-level `emacs' to `convenience'.
2997
2998 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2999 Push mark on the first call of successive command calls.
3000 (insert-pair): New fun created from `insert-parentheses' with
3001 `open' and `close' arguments added. Enclose active regions
3002 in paired characters. Compare adjacent characters syntax with
3003 inserted characters syntax before inserting a space.
3004 (insert-parentheses): Call `insert-pair' with ?\( ?\).
3005
3006 * delsel.el: Don't put `delete-selection' property
3007 on `insert-parentheses' symbol to take advantage of
3008 region handling in `insert-pair' function.
3009 Suggested by Stephan Stahl <stahl@eos.franken.de>.
3010
3011 2004-04-30 Kim F. Storm <storm@cua.dk>
3012
3013 * emulation/cua-base.el: Add support for changing cursor types;
3014 based on patch from Michael Mauger.
3015 (cua-normal-cursor-color, cua-read-only-cursor-color)
3016 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
3017 Customization cursor type and/or cursor color.
3018 (cua--update-indications): Handle cursor type changes.
3019 (cua-mode): Update cursor indications if enabled.
3020
3021 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
3022
3023 * mouse.el (mouse-drag-copy-region): New defcustom.
3024 (mouse-set-region, mouse-drag-region-1): Use it.
3025
3026 * simple.el (kill-ring-save): If region face background color is
3027 unspecified (if no highlighting), show extent of fully visible
3028 region even if transient-mark-mode is enabled.
3029
3030 * emulation/cua-base.el (cua--standard-movement-commands):
3031 Add cua-scroll-up and cua-scroll-down.
3032 (cua-scroll-up, cua-scroll-down): New commands.
3033 (cua--init-keymaps): Remap scroll-up and scroll-down.
3034
3035 * emulation/cua-rect.el (cua--convert-rectangle-as):
3036 New defmacro.
3037 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
3038 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
3039 New commands (suggested by Jordan Breeding).
3040
3041 2004-04-30 Juanma Barranquero <lektu@terra.es>
3042
3043 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
3044
3045 2004-04-30 Mario Lang <mlang@delysid.org>
3046
3047 * diff.el (diff-switches): Fix typo in docstring.
3048
3049 2004-04-30 Alex Schroeder <alex@gnu.org>
3050
3051 * xml.el (xml-debug-print-internal): Don't add newline and
3052 indentation to text nodes and write empty elements as empty tags
3053 instead of opening and closing tags.
3054 (xml-debug-print): Take optional indent-string argument.
3055 (xml-print): Alias for xml-debug-print.
3056
3057 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
3058
3059 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
3060 than duplicate call to `line-beginning-position'.
3061
3062 * progmodes/f90.el (f90-get-present-comment-type):
3063 Return whitespace, as well as comment chars, for consistent filling
3064 of comment blocks. Use `match-string-no-properties'.
3065 (f90-break-line): Trim trailing whitespace when filling comments.
3066
3067 2004-04-30 Dave Love <fx@gnu.org>
3068
3069 * calendar/diary-lib.el (diary-outlook-formats): New variable.
3070 (diary-from-outlook-internal, diary-from-outlook)
3071 (diary-from-outlook-gnus, diary-from-outlook-rmail):
3072 New functions to import diary entries from Outlook-format
3073 appointments in mail messages.
3074
3075 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * progmodes/python.el (python-send-command): New fun.
3078 (python-send-region, python-load-file): Use it.
3079
3080 * progmodes/compile.el (compilation-last-buffer): Add var alias.
3081
3082 * help-fns.el (help-C-file-name): Use new subr-name.
3083 Prepend `src/' to the file name.
3084 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
3085 (describe-function-1, describe-variable): Only find a C source file
3086 name if DOC is already loaded.
3087
3088 * help-mode.el (help-function-def, help-variable-def):
3089 Use the new find-function-search-for-symbol functionality.
3090 Allow FILE to be `C-source'.
3091
3092 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
3093 (find-function-C-source): New fun.
3094 (find-function-search-for-symbol): Use it.
3095
3096 2004-03-29 Michael Mauger <mmaug@yahoo.com>
3097
3098 * progmodes/sql.el (sql-product-alist): Rename variable
3099 `sql-product-support'. Add Postgres login parameters.
3100 (sql-set-product, sql-product-feature): Update with renamed variable.
3101 (sql-connect-postgres): Add username prompt.
3102 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
3103 Make patterns less product specific.
3104 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
3105 (sql-mode-abbrev-table): Modify initialization.
3106 (sql-builtin-face): Add variable.
3107 (sql-keywords-re): Add macro.
3108 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
3109 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
3110 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
3111 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
3112 (sql-mode-linter-font-lock-keywords)
3113 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
3114 (sql-mode-sybase-font-lock-keywords)
3115 (sql-mode-informix-font-lock-keywords)
3116 (sql-mode-interbase-font-lock-keywords)
3117 (sql-mode-ingres-font-lock-keywords)
3118 (sql-mode-solid-font-lock-keywords)
3119 (sql-mode-sqlite-font-lock-keywords)
3120 (sql-mode-db2-font-lock-keywords): Default to nil.
3121 (sql-product-font-lock): Always highlight ANSI keywords.
3122 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
3123 (sql-send-string): Add function.
3124
3125 2004-04-29 Dave Love <fx@gnu.org>
3126
3127 * progmodes/cfengine.el (cfengine-beginning-of-defun)
3128 (cfengine-end-of-defun): Ensure progress through buffer.
3129
3130 * info-look.el (cfengine-mode): Accept a terminal ().
3131
3132 2004-04-29 Juri Linkov <juri@jurta.org>
3133
3134 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
3135 instead of isearch-yank-word-or-char. Add new key bindings for
3136 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
3137 (isearch-del-char): New fun.
3138 (isearch-forward, isearch-edit-string): Update docstring.
3139 (isearch-yank-char): Doc fix.
3140 (isearch-other-meta-char): Restore point after scrolling.
3141
3142 * progmodes/compile.el (compilation-context-lines): Add nil option
3143 to disable compilation output window scrolling.
3144 (compilation-set-window): Use it.
3145
3146 * outline.el (outline-next-preface, outline-show-heading):
3147 Don't leave unhidden blank line before heading.
3148 (outline-end-of-subtree): Include last newline into subtree.
3149 (hide-entry): Leave point at beginning of heading instead of end.
3150 (outline-up-heading): Push mark for the first call of successive
3151 command calls.
3152
3153 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
3154
3155 * comint.el (comint-prompt-read-only): New variable.
3156 (comint-output-filter): Implement it.
3157
3158 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
3159 (ielm-prompt-internal): New variable.
3160 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
3161 (ielm-send-input): Delete unused variable `buf'.
3162 (ielm-eval-input): Use `ielm-prompt-internal'.
3163 (inferior-emacs-lisp-mode): Use new variables
3164 `comint-prompt-read-only' and `ielm-prompt-internal'.
3165 Get rid of obsolete variable `directory-sep-char'.
3166 (ielm): Use `zerop'.
3167
3168 2004-04-29 John Paul Wallington <jpw@gnu.org>
3169
3170 * thumbs.el (toplevel): Require cl at compile time.
3171 Remove conditional definitions of `ignore-errors' and `caddar'
3172 because they occur at run time.
3173
3174 2004-04-28 Nick Roberts <nickrob@gnu.org>
3175
3176 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
3177 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
3178 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3179 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
3180
3181 * progmodes/gud.el (gud-common-init): Throw an error if program is
3182 already running under gdb.
3183
3184 2004-04-28 John Paul Wallington <jpw@gnu.org>
3185
3186 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
3187 (thumbs-show-image-num): Move assignment of
3188 `thumbs-current-image-filename' within scope of `i'.
3189 (thumbs-emboss-image): Don't use `evenp'.
3190
3191 2004-04-28 Richard M. Stallman <rms@gnu.org>
3192
3193 * progmodes/compile.el (compilation-context-lines): Default now 0.
3194
3195 2004-04-28 Juanma Barranquero <lektu@terra.es>
3196
3197 Use `time-less-p' from calendar/time-date.el instead of defining
3198 custom versions of it.
3199
3200 * pcomplete.el (pcomplete-time-less-p): Remove.
3201
3202 * thumbs.el (time-less-p): Remove.
3203
3204 * calendar/timeclock.el (timeclock-time-less-p): Remove.
3205 (timeclock-generate-report): Use `time-less-p'.
3206
3207 * emacs-lisp/autoload.el (autoload-before-p): Remove.
3208 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
3209
3210 2004-04-28 Masatake YAMATO <jet@gyve.org>
3211
3212 * subr.el (remove-overlays): Make arguments optional.
3213
3214 * wid-edit.el (widget-specify-button): Put evaporate to the
3215 overlay for sample.
3216 (widget-specify-sample): Put evaporate to the overlay for sample.
3217 (widget-specify-doc): Put evaporate to the overlay for documentation.
3218
3219 2004-04-27 Jesper Harder <harder@ifa.au.dk>
3220
3221 * info.el (info-apropos): Make it an index node. Align node names
3222 like makeinfo.
3223
3224 2004-04-27 Eli Zaretskii <eliz@gnu.org>
3225
3226 * net/browse-url.el (browse-url-netscape-sentinel)
3227 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
3228 (browse-url-epiphany-sentinel, browse-url-mosaic):
3229 Use browse-url-*-program instead of a literal program name.
3230
3231 2004-04-27 Kevin Ryde <user42@zip.com.au>
3232
3233 * eshell/em-alias.el:
3234 * eshell/em-dirs.el:
3235 * eshell/em-hist.el:
3236 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
3237 features when M-x customize-group loads modules before the main
3238 eshell.el.
3239
3240 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
3241
3242 * subr.el (momentary-string-display): Support EXIT-CHAR that is
3243 either a character representation of an event or an event
3244 description list.
3245
3246 * type-break.el: Capitalise Emacs and Lisp.
3247 (type-break-good-break-interval, type-break-demo-boring-stats)
3248 (type-break-terse-messages, type-break-file-name): New defcustoms.
3249 (type-break-post-command-hook)
3250 (type-break-warning-countdown-string): Quote variable names in doc.
3251 (type-break-interval-start, type-break-auto-save-file-name): New vars.
3252 (type-break-mode): Document type-break-good-break-interval and the
3253 "session" file. Schedule break according to the session file.
3254 Kill session file buffer on exit. Organise for save-some-buffers
3255 to always save the session file.
3256 (type-break-mode-line-message-mode, type-break-query-mode):
3257 Uppercase arguments.
3258 (type-break-file-time, type-break-file-keystroke-count, timep)
3259 (type-break-choose-file, type-break-get-previous-time)
3260 (type-break-get-previous-count): New defuns.
3261 (type-break): Avoid break querying after a completed break in the
3262 case where the query was initiated during user invocation of the
3263 break. Optional terse messages.
3264 Use type-break-good-break-interval if type-break-good-rest-interval is
3265 nil. File the break time.
3266 (type-break-schedule): New optional args for overriding the use of
3267 the current time.
3268 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
3269 after a break.
3270 (type-break-check): File the keystroke count.
3271 (type-break-do-query): Prevent a second query when the break is
3272 interrupted. Optional terse message.
3273 (type-break-keystroke-reset): Record the start of a typing interval.
3274 (type-break-demo-boring): Optional terse messages. Display word
3275 per minute and keystroke counts according to
3276 type-break-demo-boring-stats.
3277
3278 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
3279
3280 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
3281 directories, make sure they exist under archive-tmpdir.
3282
3283 2004-04-27 Juri Linkov <juri@jurta.org>
3284
3285 * help.el (view-emacs-news): With argument, display info for the
3286 selected version by finding it among different NEWS files, and
3287 narrowing the buffer to the selected version.
3288
3289 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
3290 same-window-buffer-names.
3291 (info): New arg `buffer'. Use it. Doc fix. Read file name for
3292 non-numeric prefix argument, append the number to the buffer name
3293 for numeric prefix argument.
3294 (info-other-window): Bind same-window-regexps to nil.
3295 (Info-reference-name): Rename to Info-point-loc.
3296 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
3297 and Info-find-index-name for stringy Info-point-loc.
3298 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
3299 without middle `.', but with final `.' and optional line number
3300 for it. Set Info-point-loc for index nodes.
3301 (Info-index): Remove middle `.' from index entry regexp.
3302 Modify line number regexp.
3303 (Info-index-next): Decrement line number.
3304 (info-apropos): Remove middle `.' from index entry regexp.
3305 Add optional line number regexp at the end. Add matched value
3306 for line number to the result list and insert it to the buffer.
3307 Replace match-string by match-string-no-properties.
3308 Reorder result list.
3309 (Info-fontify-node): Hide index line numbers.
3310 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
3311 empty matches.
3312 (Info-follow-reference): Use `str' instead of
3313 Info-following-node-name-re.
3314 (Info-toc): Use full file names. Set Info-current-node to "Top".
3315 (Info-fontify-node): Compare file names without directory name.
3316 (Info-try-follow-nearest-node): Don't set Info-reference-name.
3317 Set second arg of Info-extract-menu-node-name for index nodes.
3318 (info-xref-visited): Use magenta3 instead of magenta4.
3319 (Info-mode): Add info-apropos to docstring.
3320
3321 * log-view.el (log-view-diff): Replace interactive code "r"
3322 by a list to allow to call it even if region is not active.
3323
3324 * paren.el (show-paren-highlight-openparen): New var.
3325 (show-paren-function): Turn on openparen highlighting when
3326 matching forward if show-paren-highlight-openparen is non-nil.
3327
3328 * simple.el (kill-ring-save): Use blink-matching-delay instead of
3329 the constant value 1.
3330 (completions-common-part): Expand docstring.
3331
3332 * textmodes/picture.el (picture-mode-map): Add arrow keys.
3333
3334 2004-04-27 Kim F. Storm <storm@cua.dk>
3335
3336 * image.el (insert-sliced-image): Use line-height instead of
3337 line-spacing property on newline.
3338
3339 2004-04-26 Lars Hansen <larsh@math.ku.dk>
3340
3341 * desktop.el (desktop-buffer-misc-data-function): Rename to
3342 desktop-save-buffer and change docstring.
3343 (desktop-buffer-modes-to-save): Delete.
3344 (desktop-save-buffer-p): Use desktop-save-buffer instead of
3345 desktop-buffer-modes-to-save.
3346 (desktop-save): Rename desktop-buffer-misc-data-function to
3347 desktop-save-buffer and allow non-function value.
3348 (desktop-missing-file-warning): Correct docstring.
3349
3350 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
3351 to desktop-save-buffer.
3352
3353 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
3354 desktop-save-buffer.
3355
3356 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
3357
3358 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
3359
3360 2004-04-26 Eli Zaretskii <eliz@gnu.org>
3361
3362 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
3363
3364 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
3365
3366 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
3367 (ielm): Only go to the end of the buffer when starting a new process.
3368
3369 2004-04-25 Juanma Barranquero <lektu@terra.es>
3370
3371 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
3372 mode line. Bind `inhibit-read-only' to t before modifying
3373 properties of text in the buffer.
3374 (ielm): Force point to the end of buffer, even when running ielm
3375 from inside itself.
3376
3377 2004-04-25 Jesper Harder <harder@ifa.au.dk>
3378
3379 * info.el (info-apropos): Reset Info-complete-cache.
3380
3381 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
3382
3383 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3384 Also recognize severe Irix et al. messages.
3385 (compilation-normalize-filename, compile-abbreviate-directory):
3386 Delete functions.
3387 (compilation-get-file-structure): New function inherits
3388 functionality of the two preceding ones.
3389 (compilation-internal-error-properties, compilation-fake-loc):
3390 Use it so that different paths to the same file share the same
3391 markers. Also optimize finding adjacent marker slightly.
3392
3393 2004-04-25 Kim F. Storm <storm@cua.dk>
3394
3395 * image.el (insert-sliced-image): Add line-spacing t property
3396 to newlines separating image lines.
3397
3398 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
3399
3400 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
3401
3402 * ielm.el (ielm-prompt-read-only): New user option.
3403 (ielm-prompt): Expand docstring to describe new behavior.
3404 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
3405 mention it in the docstring.
3406
3407 2004-04-24 Andreas Schwab <schwab@suse.de>
3408
3409 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
3410
3411 * diff.el (diff): Set default-directory in diff buffer.
3412
3413 2004-04-24 Eli Zaretskii <eliz@gnu.org>
3414
3415 * mail/sendmail.el (mail-bury): Don't delete the frame where the
3416 mail was being composed if the terminal cannot display more than
3417 one frame; instead, switch to previous frame.
3418
3419 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
3420 (rmail-start-mail): Support rmail-mail-new-frame even on
3421 terminals that can display only one frame at a time.
3422
3423 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3424
3425 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
3426 (checkdoc-output-font-lock-keywords): Remove error regexp.
3427 (checkdoc-output-mode-map): Remove.
3428 (checkdoc-output-mode): Derive from compilation-mode.
3429 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
3430
3431 * dired.el (dired-mode-map): Add a menu entry for wdired.
3432
3433 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
3434 (rx-bracket, rx-check-any, rx-any): Clean up name space.
3435
3436 * wdired.el: (wdired-mode-map): Move init into declaration.
3437 Fix `return' binding.
3438 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3439 Use force-mode-line-update.
3440 (wdired-get-filename): Use `unless'.
3441 (wdired-preprocess-files): Don't assume names have no \n and use / for
3442 dir separator.
3443 (wdired-normalize-filename): Use replace-regexp-in-string.
3444 (wdired-load-hooks): Remove.
3445 (wdired-mode-hooks): Rename to wdired-mode-hook.
3446
3447 * info-look.el: Add support for cfengine-mode.
3448 (info-lookup-setup-mode): Use dolist.
3449
3450 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
3451
3452 * wdired.el: New file.
3453
3454 2004-04-23 Juanma Barranquero <lektu@terra.es>
3455
3456 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
3457
3458 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
3459 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
3460 (pcomplete--help, pcomplete--here): Doc fixes.
3461
3462 2004-04-23 Andre Spiegel <spiegel@gnu.org>
3463
3464 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
3465 handles wrong-number-of-arguments in backend call.
3466
3467 * vc.el (vc-print-log): Likewise.
3468
3469 2004-04-20 Dave Love <fx@gnu.org>
3470
3471 * emacs-lisp/rx.el: Doc fixes.
3472 (rx-constituents): Add/extend many forms.
3473 (rx-check): Check form is a list.
3474 (bracket): Defvar.
3475 (rx-check-any, rx-any, rx-check-not): Modify.
3476 (rx-not): Simplify.
3477 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
3478 (rx-kleene): Use rx-trans-forms.
3479 (rx-quote-for-set): Delete.
3480 (rx): Allow multiple args.
3481
3482 2004-04-23 Kenichi Handa <handa@m17n.org>
3483
3484 * international/mule-util.el (char-displayable-p): Simplify by
3485 using internal-char-font.
3486
3487 2004-04-23 Juanma Barranquero <lektu@terra.es>
3488
3489 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3490
3491 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * diff-mode.el (diff-next-error): New fun.
3494 (diff-mode): Use it.
3495
3496 * simple.el (next-error): Change arg name.
3497 Add support for the documented C-u C-x ` usage.
3498
3499 * frame.el (special-display-popup-frame, next-multiframe-window)
3500 (previous-multiframe-window): Only consider frames on same display.
3501
3502 2004-04-22 Lars Hansen <larsh@math.ku.dk>
3503
3504 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
3505 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
3506
3507 2004-04-22 Kim F. Storm <storm@cua.dk>
3508
3509 * net/telnet.el (telnet): Add optional port arg.
3510
3511 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3512
3513 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3514 Minor sanity check on the `hyperlink' slot.
3515
3516 * Makefile.in (recompile): Compile new files.
3517
3518 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
3519 Add byte-recompile-directory's optional `arg'.
3520
3521 * cvs-status.el (cvs-tree-use-charset): New var.
3522 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
3523 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
3524 (cvs-status-cvstrees): Use it.
3525
3526 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
3527 Make it a normal major mode.
3528 (checkdoc-buffer-label): Make sure the file name is meaningful.
3529 (checkdoc-output-to-error-buffer): Remove.
3530 (checkdoc-error, checkdoc-start-section): Rewrite.
3531
3532 * info.el (info-node, info-menu-5, info-xref, info-header-node)
3533 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3534 (Info-title-4-face): Use new syntax.
3535 (info-xref-visited): Inherit from info-xref.
3536
3537 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
3538
3539 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
3540
3541 * simple.el (next-error-last-buffer, next-error-function):
3542 New variables for the next-error framework.
3543 (next-error-buffer-p): New function.
3544 (next-error-find-buffer): Generalize compilation-find-buffer.
3545 (next-error, previous-error, first-error, next-error-no-select)
3546 (previous-error-no-select): Move from compile.el.
3547
3548 * replace.el (occur-next-error, occur-1): Hook into the next-error
3549 framework.
3550
3551 * progmodes/compile.el (compilation-start):
3552 Set next-error-last-buffer so next-error knows where to jump.
3553 (compilation-setup): Set the buffer-local variable
3554 next-error-function to 'compilation-next-error-function.
3555 (compilation-buffer-p, compilation-buffer-internal-p): Use an
3556 alternate way to find if a buffer is a compilation buffer, for
3557 next-error convenience.
3558 (next-error-no-select, previous-error-no-select, next-error)
3559 (previous-error, first-error): Move to simple.el.
3560 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
3561 (compilation-last-buffer): Remove.
3562 (compilation-start, compilation-next-error, compilation-setup)
3563 (compilation-next-error-function, compilation-find-buffer):
3564 Remove compilation-last-buffer use.
3565
3566 2004-04-21 Juanma Barranquero <lektu@terra.es>
3567
3568 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
3569 (font-lock-warning-face): Fix spacing.
3570
3571 * makefile.w32-in (WINS): Add url/ directory.
3572
3573 2004-04-21 Lars Hansen <larsh@math.ku.dk>
3574
3575 * desktop.el (desktop-buffer-mode-handlers): New variable.
3576 Alist of major mode specific functions to restore a desktop buffer.
3577 (desktop-buffer-handlers): Make variable obsolete.
3578 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
3579 Catch errors signaled in handlers. Update buffer count.
3580 Evaluate desktop-buffer-point.
3581 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
3582 move to dired.el.
3583 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
3584 move to info.el.
3585 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
3586 move to mail/rmail.el.
3587 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
3588 to mh-e/mh-e.el.
3589 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
3590 On fail, print message (to message buffer) even if
3591 desktop-missing-file-warning is nil.
3592 (desktop-buffer-misc-data-function): New buffer local variable.
3593 Function returning major mode specific data.
3594 (desktop-buffer-misc-functions): Make variable obsolete.
3595 (desktop-save): Use desktop-buffer-misc-data-function.
3596 (desktop-buffer-dired-misc-data): Rename to
3597 dired-desktop-buffer-misc-data and move to dired.el.
3598 (desktop-buffer-info-misc-data): Rename to
3599 Info-desktop-buffer-misc-data and move to info.el.
3600 (desktop-read): Add message about number of buffers restored/failed.
3601
3602 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
3603 Add parameters. Pause to display error only when
3604 desktop-missing-file-warning is non-nil.
3605 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3606 (dired-mode): Bind desktop-buffer-misc-data-function.
3607
3608 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
3609 Add Parameters.
3610 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3611 (Info-mode): Bind desktop-buffer-misc-data-function.
3612
3613 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
3614 Add Parameters.
3615
3616 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
3617 Add Parameters.
3618
3619 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
3620
3621 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
3622 the case of letters in case-insensitive expansions when the
3623 abbrev is preceded by characters with letter syntax.
3624
3625 2004-04-21 Richard M. Stallman <rms@gnu.org>
3626
3627 * progmodes/cperl-mode.el (cperl-putback-char):
3628 Delete Emacs 18 definition.
3629
3630 * international/mule.el (ctext-post-read-conversion):
3631 Use assoc-string, not assoc-ignore-case.
3632
3633 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
3634
3635 * emacs-lisp/easymenu.el (easy-menu-add):
3636 Do call x-popup-menu, but only if it's defined.
3637
3638 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
3639
3640 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
3641 Handle multiple args: compile like progn.
3642
3643 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
3644 take all args as &rest arg.
3645
3646 * autoinsert.el (auto-insert-alist): Insert the user's name in
3647 copyright notice, rather than Free Software Foundation.
3648
3649 2004-04-21 Kenichi Handa <handa@m17n.org>
3650
3651 * descr-text.el (describe-char): Make it work on *Help* buffer.
3652
3653 2004-04-21 Kim F. Storm <storm@cua.dk>
3654
3655 * image.el (insert-image): Add optional SLICE arg.
3656 (insert-sliced-image): New defun.
3657
3658 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
3659
3660 * subr.el (read-number): Check whether `default' is nil.
3661
3662 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3663
3664 * progmodes/compile.el (compilation-error-properties):
3665 Split into two.
3666 (compilation-internal-error-properties): New one.
3667 (compilation-compat-error-properties): Use it. Fix the non-marker case.
3668
3669 2004-04-20 Richard M. Stallman <rms@gnu.org>
3670
3671 * window.el (split-window-save-restore-data):
3672 Don't update the data if OLD-INFO is nil.
3673
3674 * view.el (view-return-to-alist): Mark it permanent local.
3675
3676 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
3677
3678 * recentf.el (recentf-save-list): Catch and warn about errors.
3679
3680 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
3681 so "Buffers" won't be pure.
3682
3683 * help-mode.el (help-mode-finish): Set help-return-alist first
3684 thing, setting only the entry for the selected window.
3685
3686 * help-fns.el (describe-function-1): If many non-control non-meta
3687 keys run the command, don't list all of them.
3688
3689 2004-04-20 Juanma Barranquero <lektu@terra.es>
3690
3691 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
3692 arg. Copied from Andre Spiegel's patch of 2004-03-21.
3693
3694 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
3695
3696 2004-04-20 Kenichi Handa <handa@m17n.org>
3697
3698 * international/quail.el (quail-lookup-key): New optional arg
3699 NOT-RESET-INDICES.
3700 (quail-get-translations): Call quail-lookup-key with
3701 NOT-RESET-INDICES t.
3702 (quail-completion): Likewise.
3703 (quail-lookup-map-and-concat): Likewise.
3704
3705 2004-04-20 Kenichi Handa <handa@m17n.org>
3706
3707 * international/quail.el (quail-update-translation): Don't insert
3708 such an unsupported multibyte char in a unibyte buffer.
3709
3710 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
3711
3712 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
3713 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
3714 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
3715 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
3716 (gdb-frame-assembler-buffer): Improve behaviour with
3717 multiple frames.
3718 (gdb-display-buffer): Extend search to all visible frames.
3719
3720 2004-04-19 Eli Zaretskii <eliz@gnu.org>
3721
3722 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
3723 characters left after base64 decoding.
3724 (rmail-decode-region): Use -dos variety of `coding', to remove any
3725 ^M characters left after qp or base64 decoding.
3726
3727 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3728
3729 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
3730 messages.
3731
3732 2004-04-19 Stephen Eglen <stephen@gnu.org>
3733
3734 * add-log.el (add-change-log-entry): Update doc string to mention
3735 add-log-full-name and add-log-mailing-address.
3736
3737 2004-04-18 Juri Linkov <juri@jurta.org>
3738
3739 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
3740 (Info-find-node-2): Simplify error message.
3741 (Info-insert-dir): Use Info-following-node-name.
3742 (Info-goto-node): Remove *info-history* and *info-toc*.
3743 (Info-history): Create a node of the virtual history file.
3744 (Info-toc): Create a node of the virtual toc file.
3745 (Info-insert-toc): New arg `curr-file' for reference file names.
3746 (info-apropos): Remove redundant var binding for temp-file.
3747 (Info-index, Info-index-next, Info-mode): Doc fix.
3748 (Info-goto-emacs-command-node): Don't jump to *info* from
3749 non-*info* Info buffers.
3750 (Info-fontify-node): Don't show the file name of external
3751 references if `Info-hide-note-references' is `hide'. Don't hide
3752 newlines at the end of paragraphs.
3753
3754 * international/mule-diag.el (list-input-methods):
3755 Fix args to help-xref-button.
3756
3757 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
3758 to put into effect local variables from TUTORIAL files.
3759
3760 * textmodes/paragraphs.el (sentence-end) <function>: New fun
3761 with default value taken from the variable `sentence-end'.
3762 (sentence-end) <defcustom>: Set default to nil. Doc fix.
3763 Add nil const to :type.
3764 (sentence-end-without-period, sentence-end-double-space)
3765 (sentence-end-without-space): Doc fix.
3766
3767 * textmodes/paragraphs.el (forward-sentence):
3768 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
3769 (fill-delete-newlines):
3770 * progmodes/cc-cmds.el (c-beginning-of-statement):
3771 Use function `sentence-end' instead of variable `sentence-end'.
3772
3773 2004-04-18 Andreas Schwab <schwab@suse.de>
3774
3775 * progmodes/compile.el (compilation-start): Set window start to
3776 point-min if compilation-scroll-output is nil.
3777
3778 2004-04-18 John Wiegley <johnw@newartisans.com>
3779
3780 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
3781
3782 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
3783
3784 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
3785 (gdb-info-breakpoints-custom): Revert previous change.
3786 (gdb-view-assembler): Update assembler if necessary.
3787 (gdb-frame-handler): Parse correctly for gdb-current-frame.
3788 (gdb-display-source-buffer): Update properly when both source and
3789 assembler are visible.
3790
3791 2004-04-17 John Wiegley <johnw@newartisans.com>
3792
3793 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
3794 which limits the number of names shown in the minibuffer. Off by
3795 default.
3796 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
3797 up iswitchb for users with a multitude of open buffers by showing
3798 only the first and last N/2 buffers in the completion list (which
3799 is enough to aid C-s/C-r, and to know that more characters are
3800 needed to refine the completion list).
3801
3802 2004-04-17 Richard M. Stallman <rms@gnu.org>
3803
3804 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
3805 (file-truename): Expand all ~ constructs directly.
3806 (insert-directory): Delete any error msg output by the
3807 `insert-directory-program'.
3808
3809 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
3810 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
3811 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
3812 (allout-init): Use find-file-hook, not find-file-hooks.
3813 (allout-mode): Eliminate Emacs 18 support.
3814 Use write-contents-functions, not local-write-file-hooks.
3815
3816 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
3817
3818 * progmodes/compile.el (compilation-error-properties): Fix for
3819 adding messages when there are already markers for their file.
3820 (compilation-fake-loc): New function.
3821
3822 2004-04-16 Dave Love <fx@gnu.org>
3823
3824 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
3825 (python-load-file): Fix python-orig-start setting.
3826
3827 * progmodes/compile.el: Doc fixes.
3828 (compilation-error-regexp-alist-alist)
3829 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
3830 (compilation-assq): Wrap in eval-when-compile.
3831 (compilation-mode-font-lock-keywords): Don't use list*.
3832 (compilation-start): Avoid warning.
3833 (compilation-compat-error-properties)
3834 (compilation-directory-properties): Add keymap property.
3835 (compilation-parsing-end): Make it a marker for better compatibility.
3836
3837 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
3838
3839 2004-04-16 Mark A. Hershberger <mah@everybody.org>
3840
3841 * xml.el: Doc fixes.
3842 (xml-get-children): Only looks at sub-tags and ignore strings.
3843
3844 * xml.el (xml-parse-tag): Avoid overwriting node-name.
3845
3846 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3847
3848 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
3849
3850 2004-04-16 Andre Spiegel <spiegel@gnu.org>
3851
3852 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
3853
3854 * vc.el (vc-print-log): Likewise.
3855
3856 2004-04-16 Masatake YAMATO <jet@gyve.org>
3857
3858 * simple.el (completion-setup-function): Set an initial value
3859 to `element-common-end' before entering loop. Set a value
3860 to `element-common-end' at the end of loop.
3861 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
3862 (completions-common-part): Rename from completion-de-emphasis.
3863 (completions-first-difference): Rename from completion-emphasis.
3864 Suggested by RMS.
3865
3866 2004-04-16 Juanma Barranquero <lektu@terra.es>
3867
3868 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
3869 (bookmark-edit-annotation-mode): Add mode name.
3870
3871 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3872
3873 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
3874 for nested conflict markers.
3875 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
3876
3877 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
3878
3879 * progmodes/gdb-ui.el (gdb-goto-info): New function.
3880
3881 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
3882
3883 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3884
3885 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
3886 Give a backtrace if requested.
3887
3888 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
3889
3890 * progmodes/python.el (python-mouse-2-command, python-RET-command):
3891 Remove unused functions.
3892 (python-orig-start-line, python-orig-file): Remove.
3893 (python-orig-start): New var.
3894 (python-input-filter, python-compilation-line-number)
3895 (python-send-region, python-load-file): Use it.
3896
3897 * info.el (info): Always jump to *info*.
3898
3899 * subr.el (posn-set-point): New function.
3900
3901 * mouse.el (mouse-set-point): Use it.
3902
3903 * progmodes/compile.el (compile-goto-error): Use it.
3904 (compilation-button-map): New keymap.
3905 (compilation-error-properties): Use it.
3906 (compilation-shell-minor-mode-map): Don't bind mouse-2.
3907
3908 * smerge-mode.el (smerge-popup-context-menu): Use it.
3909
3910 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
3911 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
3912 mouse and non-mouse case.
3913
3914 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
3915 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
3916
3917 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
3918 Make it work for non-mouse events.
3919
3920 * pcvs-info.el (cvs-status-map): Update binding name.
3921
3922 2004-04-14 Mark A. Hershberger <mah@everybody.org>
3923
3924 * xml.el (xml-maybe-do-ns): New function to handle namespace
3925 parsing of both attribute and element names.
3926 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
3927 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
3928 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
3929 (xml-parse-attlist): Make it do its own namespace parsing.
3930
3931 2004-04-14 Dave Love <fx@gnu.org>
3932
3933 * progmodes/python.el (run-python): Fix use of \n.
3934 (python-load-file): Remove `try' from Python fragment.
3935 (python-describe-symbol): Fix message.
3936
3937 * comint.el: Doc fixes.
3938 (comint-last-input-start, comint-last-input-end)
3939 (comint-last-output-start): Give them values.
3940 (comint-arguments): Avoid warning.
3941 (comint-skip-prompt): Use line-end-position.
3942 (comint-backward-matching-input): Rename arg to agree with doc.
3943 (comint-extract-string): Use syntax-ppss.
3944 (comint-dynamic-simple-complete): Delete useless list construction.
3945 (comint-redirect-subvert-readonly): New.
3946 (comint-redirect-preoutput-filter): Use it.
3947
3948 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
3949 Correctly handle negative arguments when calling hook functions.
3950
3951 2004-04-14 Jesper Harder <harder@ifa.au.dk>
3952
3953 * info.el (info-apropos): Don't clobber Info-history-list.
3954
3955 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
3956
3957 * progmodes/compile.el (compilation-setup):
3958 Localize overlay-arrow-position.
3959 (compilation-sentinel): Restructure code equivalently.
3960 (compilation-next-error): Find message on same line after point if
3961 not found before point.
3962 (compile-mouse-goto-error): Restore function so that compilation
3963 buffer need not be current and use compile-goto-error.
3964 (compile-goto-error): Restore function.
3965 (next-error): Set overlay-arrow-position.
3966 (compilation-forget-errors): Don't localize already local
3967 compilation-locs and remove FIXME about refontifying.
3968
3969 2004-04-14 Kim F. Storm <storm@cua.dk>
3970
3971 * startup.el (emacs-quick-startup): New defvar (set by -Q).
3972 (command-line): New option -Q. Like -q --no-site-file, but
3973 in addition it also disables menu-bar, tool-bar, scroll-bars,
3974 tool-tips, and the blinking cursor.
3975 (command-line-1): Skip startup screen if -Q.
3976 (fancy-splash-head): Use ":align-to center" prop to center splash image.
3977
3978 * emulation/cua-base.el (cua-read-only-cursor-color)
3979 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
3980
3981 2004-04-13 Dave Love <fx@gnu.org>
3982
3983 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
3984 (syntax): Don't require.
3985 (python) <defgroup>: Add :version.
3986 (python-quote-syntax): Re-written.
3987 (inferior-python-mode): Move stuff here from run-python and add
3988 some more.
3989 (python-preoutput-continuation, python-preoutput-result)
3990 (python-dotty-syntax-table): New.
3991 (python-describe-symbol): Use them.
3992 (run-python): Move stuff to inferior-python-mode. Modify code
3993 loaded into Python.
3994 (python-send-region): Use python-proc, python-send-string.
3995 (python-send-string): Send newlines too. Callers changed.
3996 (python-load-file): Re-written.
3997 (python-eldoc-function): New.
3998 (info-look): Don't require.
3999 (python-after-info-look): New. A modified version of former
4000 top-level code for use with eval-after-load.
4001 (python-maybe-jython, python-guess-indent): Use widened buffer.
4002 (python-fill-paragraph): Re-written.
4003 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
4004 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
4005
4006 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4007
4008 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
4009 Set compilation-error-regexp-alist earlier.
4010
4011 * progmodes/compile.el (compilation-minor-mode-map)
4012 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
4013 (compile-goto-error): Re-merge the mouse and non-mouse commands.
4014
4015 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4016
4017 * progmodes/compile.el (compile-goto-error): Select the buffer/window
4018 corresponding to the event.
4019
4020 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
4021
4022 * loadup.el: Add cygwin to system-type list, for unexec() support.
4023
4024 2004-04-12 John Paul Wallington <jpw@gnu.org>
4025
4026 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
4027 (ibuffer-restore-window-config-on-quit): New variable to replace
4028 `ibuffer-delete-window-on-quit'. Update all references.
4029 (ibuffer-prev-window-config): New variable.
4030 (ibuffer-quit): Restore previous window configuration instead of
4031 deleting window.
4032 (ibuffer): Save window configuration before showing Ibuffer buffer.
4033
4034 * help.el (describe-mode): Doc fix.
4035
4036 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4037
4038 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
4039 not to treat nil as a function.
4040
4041 * vc-arch.el (vc-arch-root): Be a bit more careful.
4042 (vc-arch-register): Save the buffer if we modified it.
4043 (vc-arch-delete-rej-if-obsolete): Save excursion.
4044 (vc-arch-find-file-hook): Use the simpler after-save-hook.
4045 (vc-arch-responsible-p, vc-arch-init-version): New functions.
4046
4047 * net/ldap.el (ldap-search): Use list*.
4048
4049 2004-04-12 Juri Linkov <juri@jurta.org>
4050
4051 * info.el (Info-follow-reference): Allow multiline reference name.
4052
4053 2004-04-11 Dave Love <fx@gnu.org>
4054
4055 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
4056
4057 * progmodes/python.el: New file.
4058
4059 2004-04-11 Andre Spiegel <spiegel@gnu.org>
4060
4061 * vc-hooks.el (vc-arg-list): Function removed.
4062 (vc-default-workfile-unchanged-p): Use condition-case to check for
4063 backward compatibility.
4064
4065 * vc.el (vc-print-log): Use condition-case to check for backward
4066 compatibility.
4067
4068 2004-04-11 Juri Linkov <juri@jurta.org>
4069
4070 * dired.el (dired-faces): New defgroup.
4071 (dired-header, dired-mark, dired-marked, dired-flagged)
4072 (dired-warning, dired-directory, dired-symlink, dired-ignored):
4073 New faces.
4074 (dired-header-face, dired-mark-face, dired-marked-face)
4075 (dired-flagged-face, dired-warning-face, dired-directory-face)
4076 (dired-symlink-face, dired-ignored-face): New face variables.
4077 (dired-font-lock-keywords): Use them instead of font-lock faces.
4078 Split the rule for dired marks into 3 separate rules: for marks,
4079 marked file names and flagged file names.
4080
4081 * help-mode.el (help-make-xrefs): Add a final newline to the
4082 *Help* buffer.
4083
4084 2004-04-11 John Paul Wallington <jpw@gnu.org>
4085
4086 * replace.el (occur-engine): Distinguish between one and several
4087 matches in the matches per buffer heading.
4088
4089 2004-04-11 Kim F. Storm <storm@cua.dk>
4090
4091 * ido.el (ido-confirm-unique-completion): New defcustom.
4092 (ido-complete): Use it.
4093 (ido-write-file): Set it to t unconditionally.
4094
4095 2004-04-10 Miles Bader <miles@gnu.org>
4096
4097 RCS keyword removal (only non-comment changes are enumerated here):
4098
4099 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
4100 (byte-compile-insert-header): Don't use `byte-compile-version'.
4101 * forms.el (forms-version): Variable removed.
4102 (forms-mode): Don't use `forms-version'.
4103 * recentf.el (recentf-version): Variable removed.
4104 * progmodes/delphi.el (delphi-version): Variable removed.
4105 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
4106
4107 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4108
4109 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
4110
4111 2004-04-09 Jesper Harder <harder@ifa.au.dk>
4112
4113 * info.el (info-apropos): Improve menu item regexp.
4114
4115 2004-04-09 Simon Josefsson <jas@extundo.com>
4116
4117 * mail/smtpmail.el: Add comment, based on report by
4118 kdc@rcn.com (Kevin D. Clark).
4119
4120 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4121
4122 * progmodes/compile.el (compilation-mode-font-lock-keywords):
4123 Redo one more thing that I didn't notice Daniel had undone.
4124
4125 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
4126
4127 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
4128 (gdb-goto-breakpoint, gdb-display-buffer)
4129 (gdb-display-source-buffer, gdb-view-source-function)
4130 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
4131 (gdb-source-info, gdb-frame-handler): Don't specify a window
4132 for display.
4133 (gdb-info-breakpoints-custom): Remove superfluous update of
4134 assembler buffer.
4135 (gdb-many-windows): Make settable outside gdb.
4136
4137 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
4138
4139 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
4140 Derive from fundamental-mode rather than text-mode.
4141
4142 2004-04-08 Juri Linkov <juri@jurta.org>
4143
4144 * info.el (Info-history): Doc fix.
4145 (Info-history-list): New var.
4146 (info-xref): Change magenta4 to blue, remove bold for dark and
4147 light backgrounds, change bold to underline for non-color classes.
4148 (info-xref-visited): New face.
4149 (Info-fontify-visited-nodes): New custom.
4150 (Info-hide-note-references): Add new value `hide'. Doc fix.
4151 (Info-reference-name): New var.
4152 (Info-selection-hook): New custom.
4153 (Info-edit-mode-hook): New var.
4154 (Info-find-file): New fun.
4155 (Info-find-node): Move part of code to Info-find-file.
4156 (Info-find-node-2): Add anchors to Info-history-list. Move point
4157 to the place with the reference name if name is defined.
4158 (Info-select-node): Add current node to Info-history-list.
4159 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
4160 (Info-search-whitespace-regexp): New custom.
4161 (Info-search-case-fold): New var.
4162 (Info-search): Add "case-sensitively" to the prompt.
4163 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
4164 (Info-search-case-sensitively, Info-search-next): New fun.
4165 (Info-up): Move point to the menu item of the current node.
4166 (Info-history): New fun. Add *info-history* to
4167 same-window-buffer-names.
4168 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
4169 (Info-insert-toc): New fun.
4170 (Info-build-toc): New fun.
4171 (Info-follow-reference): Add new arg `fork'. Doc fix.
4172 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
4173 with the same name prefer the reference closest to point.
4174 (Info-next-reference): Replace * by + in the *Note regexp.
4175 Add regexp for http:// and ftp://. Skip the *Note prefix.
4176 (Info-prev-reference): Replace * by + in the *Note regexp.
4177 Add regexp for http:// and ftp://. Skip the *Note prefix.
4178 (Info-follow-nearest-node): Add new arg `fork'.
4179 (Info-try-follow-nearest-node): Add new arg `fork'.
4180 Call browse-url for http:// and ftp:// references.
4181 Set Info-reference-name for index entries.
4182 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
4183 Info-search-next, Info-history, Info-toc, clone-buffer.
4184 (Info-menu-update): Replace * by + in the *Note regexp.
4185 (Info-mode): Add documentation for Info-history, Info-toc,
4186 Info-search-case-sensitively, Info-search-next, clone-buffer.
4187 (Info-fontify-menu-headers): Remove fun. Move code to
4188 Info-fontify-node.
4189 (Info-fontify-node): Add docstring. Add local vars
4190 fontify-visited-p and not-fontified-p. If not-fontified-p is t
4191 then fontify header line, titles, menu headers, http and ftp
4192 references, refill paragraphs. If not-fontified-p is t or
4193 fontify-visited-p is t then fontify cross references, menu items.
4194 Fontify menu headers. Fontify http and ftp references.
4195 Change regexp for cross references to require whitespace after *Note,
4196 add matching groups for file and node names. Remove hack for quote.
4197 Use display property for Info-hide-note-references=t. Use fifth
4198 or fourth match for help-echo. Display visited nodes in a
4199 different face. Unhide file names of external references.
4200 Unhide newlines. Display visited menu items in a different face.
4201
4202 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4203
4204 * progmodes/compile.el: Require CL.
4205 (compilation-mode-font-lock-keywords): Re-install the "line as
4206 function" patch.
4207
4208 * help-fns.el (help-C-source-directory): New var.
4209 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
4210 (describe-function-1, describe-variable): Use them.
4211
4212 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
4213 to C source files specially.
4214
4215 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
4216
4217 * info.el (Info-hide-cookies-node): New function.
4218 (Info-select-node): Use it.
4219 (Info-display-images-node): Remove message with image file name.
4220
4221 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
4222
4223 * progmodes/compile.el (compilation-warning-face)
4224 (compilation-info-face, compilation-skip-threshold)
4225 (compilation-skip-visited, compilation-context-lines):
4226 Declare :version when added to Emacs.
4227 (compilation-error-regexp-alist-alist): Extend caml and irix.
4228 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
4229 (compilation-mode-font-lock-keywords): Temporarily undo line as
4230 function patch, which wasn't ready.
4231
4232 2004-04-07 Kenichi Handa <handa@m17n.org>
4233
4234 * international/latin1-disp.el (latin1-display-setup): Check each
4235 character is displayable or not instead of calling
4236 latin1-display-check-font.
4237
4238 2004-04-06 Kenichi Handa <handa@m17n.org>
4239
4240 * language/ethio-util.el (ethio-sera-being-called-by-w3):
4241 New variable.
4242 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
4243 instead of sera-being-called-by-w3.
4244 (ethio-fidel-to-sera-buffer): Likewise.
4245 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
4246 instead of sera-being-called-by-w3.
4247 (ethio-write-file): Likewise.
4248
4249 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4250
4251 * printing.el: Doc fix.
4252
4253 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
4254
4255 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
4256 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
4257 (gdb-setup-windows): Only use separate IO buffer if required.
4258
4259 2004-04-06 Kim F. Storm <storm@cua.dk>
4260
4261 * term.el (term-is-xemacs): Remove.
4262 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
4263 (term-window-width): New function.
4264 (term-mode, term-check-size): Use it.
4265 (term-mode): Disable overflow-newline-into-fringe in term buffer.
4266
4267 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
4268
4269 * cus-edit.el (custom-add-parent-links): Change unbound variable
4270 `symbol' to `name'.
4271
4272 2004-04-05 Jesper Harder <harder@ifa.au.dk>
4273 * info.el (info-apropos): New function.
4274 (Info-mode-menu): Add it.
4275 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
4276
4277 * help-mode.el (help-make-xrefs): Recognize aliased variable with
4278 inherited docstring.
4279
4280 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
4281
4282 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4283
4284 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
4285
4286 * progmodes/compile.el (font-lock): Don't require any more.
4287 (compilation-error-properties, compilation-start, compilation-sentinel)
4288 (compilation-filter, next-error): Use with-current-buffer.
4289 (compilation-skip-to-next-location, compilation-skip-threshold)
4290 (compilation-skip-visited): Move to silence the byte-compiler.
4291 (compilation-setup): Simplify.
4292 (compilation-next-error): Use line-(beginning|end)-position.
4293 Make sure `pt' is non-nil before using compilation-loop.
4294 (compile-goto-error): Add optional event arg. Use it.
4295 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
4296 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
4297 Update the binding for mouse-2.
4298 (first-error): Set compilation-current-error to nil rather than bob.
4299 (compilation-parsing-end, compilation-parse-errors-function)
4300 (compilation-error-list, compilation-old-error-list):
4301 "New" compatibility variables.
4302 (compile-buffer-substring, compilation-compat-error-properties)
4303 (compilation-compat-parse-errors, compilation-forget-errors):
4304 New compatibility functions.
4305 (compilation-mode-font-lock-keywords): Use them.
4306
4307 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
4308
4309 * autorevert.el (auto-revert-handler): If point (or a window
4310 point) is at the end of the buffer, keep it there after
4311 reverting. This allows to tail a file.
4312 Mention this in the `Commentary'.
4313
4314 * format.el (format-write-file): Add optional argument CONFIRM
4315 and make it behave like the analogous argument to `write-file'.
4316
4317 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4318
4319 * progmodes/ebnf2ps.el: Doc fix.
4320 (ebnf-version): New version number (4.2).
4321 (ebnf-syntax): Customization and docstring fix.
4322 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
4323 Put autoloaded funs before first use.
4324 (ebnf-style-database): Add dtd entry.
4325 (ebnf-syntax-alist): Add dtd initialization.
4326 (ebnf-token-sequence): New fun.
4327 (ebnf-comment-table): Add new comment action character.
4328 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
4329
4330 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
4331 Type Definition for XML).
4332
4333 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
4334 * progmodes/ebnf-bnf.el (ebnf-sequence):
4335 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
4336 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
4337 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
4338 Code simplification: call ebnf-token-sequence.
4339
4340 2004-04-04 Eli Zaretskii <eliz@gnu.org>
4341
4342 * calendar/timeclock.el (timeclock-relative)
4343 (timeclock-get-project-function, timeclock-get-workday-function)
4344 (timeclock-query-out, timeclock-when-to-leave)
4345 (timeclock-when-to-leave-string, timeclock-log-data)
4346 (timeclock-generate-report, timeclock-in): Doc fixes.
4347
4348 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4349
4350 * url/: New dir. Import the URL package from its repository.
4351
4352 2004-04-03 Andreas Schwab <schwab@suse.de>
4353
4354 * diff-mode.el (diff-mode): Fix missing quote.
4355
4356 2004-04-03 Juri Linkov <juri@jurta.org>
4357
4358 * descr-text.el (describe-property-list): Add `font-lock-face'.
4359
4360 * dired.el (dired-font-lock-keywords): Fix permission regexps.
4361
4362 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4363
4364 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
4365 Use utf-16le on little endian machines and utf-16be otherwise.
4366
4367 2004-04-02 David Kastrup <dak@gnu.org>
4368
4369 * net/browse-url.el (browse-url-generic): Use call-process
4370 instead of start-process to allow browsers that fork and detach.
4371
4372 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
4373
4374 * compile.el (compilation-current-error): New var.
4375 (compilation-setup, compile-mouse-goto-error)
4376 (compile-goto-error, next-error): Use it.
4377 (compilation-skip-to-next-location): Default to t, which gives
4378 contiguous skipping like old compile (where this was redundant).
4379 (compilation-next-error): Prevent previous-* commands from moving
4380 back to message at or just before point.
4381
4382 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
4383
4384 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
4385 (gdb-source-info): Don't display source at startup, if required.
4386 (gdb-show-main): New option.
4387 (gdba): Update documentation.
4388 (gdb-source): Cover case of auto-display output.
4389
4390 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
4391
4392 * autorevert.el: Delete obsolete autoload's and defvar's.
4393 (auto-revert-check-vc-info): New user option.
4394 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
4395 (auto-revert-handler-vc): Delete.
4396 (auto-revert-handler): Treat return value `fast' of
4397 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
4398
4399 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
4400 return `fast'.
4401
4402 * files.el (buffer-stale-function): Doc change.
4403
4404 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4405
4406 * printing.el: New tip on Tips section.
4407 (pr-version): New version number (6.7.4).
4408 (pr-shell-file-name): Initialization fix.
4409
4410 2004-03-31 Juri Linkov <juri@jurta.org>
4411
4412 * dired.el: Add autoload for `dired-do-touch'.
4413 (dired-touch-program): New var.
4414 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
4415 (dired-no-confirm): Add `touch' to docstring.
4416
4417 * dired-aux.el (dired-do-touch): New fun.
4418 (dired-do-chxxx): Add argument -t for touch operation.
4419
4420 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
4421 `dired-move-to-filename-regexp'.
4422
4423 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
4424
4425 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
4426
4427 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4428
4429 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
4430 and only if the buffer was modified.
4431
4432 2004-03-30 Kenichi Handa <handa@m17n.org>
4433
4434 * international/characters.el: Delete pairs for U+2308..U+230B.
4435
4436 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
4437
4438 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
4439 to detect the beginning of a level 2 or 3 annotation.
4440
4441 2004-03-29 Kenichi Handa <handa@m17n.org>
4442
4443 * international/ucs-tables.el (ucs-insert): Fix the error message.
4444
4445 2004-03-29 Kenichi Handa <handa@m17n.org>
4446
4447 * international/mule-util.el (char-displayable-p): Fix generation
4448 of XLFD file name.
4449
4450 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4451 before finding directories by `find'.
4452
4453 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4454
4455 * subr.el (interactive-form): Delete. Now implemented in C.
4456
4457 * pcvs.el (cvs-parse-process): Workaround for Darwin.
4458
4459 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
4460 (vc-diff-label): New fun.
4461 (vc-diff-internal): Use it.
4462
4463 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
4464
4465 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4466
4467 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
4468
4469 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
4470 specify XML (EBNFX).
4471
4472 * progmodes/ebnf2ps.el: Doc fix.
4473 (ebnf-version): New version number (4.1).
4474 (ebnf-syntax): Adjust customization.
4475 (ebnf-style-database): Add ebnfx entry.
4476 (ebnf-syntax-alist): Add ebnfx initialization.
4477 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
4478
4479 * printing.el: Doc fix.
4480 (pr-version): New version number (6.7.3).
4481 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
4482 returns nil for mouse position. Reported by Drew Adams
4483 <drew.adams@oracle.com>.
4484 (pr-update-menus): Modify interactive declaration. Reported by Drew
4485 Adams <drew.adams@oracle.com>.
4486
4487 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
4488
4489 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
4490 (gud-gdba-marker-filter): Log the process input and output, if
4491 required. From Stefan Monnier.
4492 (gdb-debug-log, gdb-enable-debug-log): New variables.
4493 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
4494
4495 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4496
4497 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
4498 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
4499
4500 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
4501
4502 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
4503 Call vc-find-file-hook here instead of in auto-revert-buffers.
4504 (auto-revert-buffers): Delete call to vc-find-file-hook.
4505 (auto-revert-verbose, global-auto-revert-non-file-buffers)
4506 (global-auto-revert-mode, auto-revert-set-timer)
4507 (auto-revert-handler, auto-revert-buffers): Doc fixes.
4508
4509 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4510
4511 * woman.el (woman-change-fonts): Rename local variable
4512 woman-font-alist to font-alist to avoid a compiler warning.
4513
4514 2004-03-27 Dave Love <fx@gnu.org>
4515
4516 * emacs-lisp/rx.el (rx): Doc fix.
4517 Fix copyright years.
4518
4519 * strokes.el (strokes-global-set-stroke-string): New function.
4520 (strokes-list-strokes): Cope with strings, not just commands.
4521 Set foreground colour of image.
4522 (strokes-global-set-stroke): Doc fix.
4523
4524 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
4525
4526 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
4527 Auto Revert mode.
4528 (Buffer-menu-files-only): New variable.
4529 (Buffer-menu-toggle-files-only): New function.
4530 (Buffer-menu-mode-map): Bind it to `T'.
4531 (Buffer-menu-mode): Mention `T' in docstring.
4532 Set buffer-stale-function.
4533 (list-buffers-noselect): Mark buffer non-modified and set
4534 Buffer-menu-files-only.
4535
4536 * dired.el (buffer-stale-function): Remove no longer needed defvar.
4537
4538 * autorevert.el (auto-revert-handler): Print revert message
4539 before, rather than after, reverting.
4540 (buffer-stale-function): Move to files.el.
4541
4542 * files.el (buffer-stale-function): Move here from autorevert.el.
4543
4544 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4545
4546 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
4547
4548 * calc/calc.el (calc-mode-map): Use mapc.
4549
4550 * apropos.el (apropos-mode): Don't autoload.
4551 (apropos-symbols-internal): New fun. Extracted from `apropos'.
4552 (apropos): Use it.
4553 (apropos-print): Add optional `text' argument.
4554 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
4555 Don't assume point-min == 1.
4556
4557 * bs.el (bs-buffer-list): Use buffer-local-value.
4558 (bs--set-toggle-to-show): Use with-current-buffer.
4559
4560 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
4561 New funs.
4562 (list-buffers-noselect): Use them. Adjust :align-to to new style.
4563
4564 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
4565
4566 * dabbrev.el (dabbrev-expand): Fix regexp construction.
4567 (dabbrev--find-expansion): Use pop.
4568 (dabbrev--search): Use match-string-no-properties.
4569
4570 * dired.el (dired-mode): Use run-mode-hooks.
4571 (dired-move-to-end-of-filename): Use match-string.
4572
4573 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
4574 is bound before using it.
4575 (ediff-verbose-p): Make it into a var since it's not constant.
4576
4577 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
4578
4579 * faces.el (read-face-font): Don't cons up unnecessarily.
4580 (header-line, tool-bar): Share common parts.
4581
4582 * files.el (file-relative-name): Use compare-strings.
4583
4584 * finder.el (finder-mode): Follow coding convention.
4585
4586 * subr.el (read-number): New function.
4587
4588 * ses.el (ses-read-number): Move to subr.el.
4589 (ses-set-header-row): Use read-number.
4590
4591 2004-03-26 Andre Spiegel <spiegel@gnu.org>
4592
4593 * vc-hooks.el (vc-arg-list): New function, which handles both
4594 compiled and uncompiled code.
4595 (vc-default-workfile-unchanged-p): Use it.
4596
4597 * vc.el (vc-print-log): Undo prev change, use new function
4598 vc-arg-list from vc-hooks.el.
4599
4600 2004-03-26 Masatake YAMATO <jet@gyve.org>
4601
4602 * simple.el (completion-setup-function): Emphasize the
4603 first uncommon characters in the completions; and de-emphasize
4604 the common prefix substrings.
4605 (completion-emphasis): New face.
4606 (completion-de-emphasis): New face.
4607
4608 2004-03-25 Juanma Barranquero <lektu@terra.es>
4609
4610 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
4611 Comment out (it's unused and unfinished code).
4612
4613 2004-03-25 Sam Steingold <sds@gnu.org>
4614
4615 * vc.el (vc-print-log): Fix a bug in the last patch:
4616 backend-function may be a byte-compiled object, not a lambda.
4617
4618 2004-03-25 Juri Linkov <juri@jurta.org>
4619
4620 * descr-text.el (describe-property-list): Add a button
4621 for `face' property that calls `describe-face'.
4622 Suggested by luis fernandes <elf@ee.ryerson.ca>
4623
4624 * international/mule.el (keyboard-coding-system):
4625 * kmacro.el (kmacro-call-macro): Fix docstring.
4626
4627 * dired.el: Fix comments.
4628
4629 * textmodes/fill.el (fill): Fix Info link.
4630
4631 * font-lock.el (fast-lock, lazy-lock):
4632 * jit-lock.el (jit-lock): Remove links to removed Support Modes
4633 Info node.
4634
4635 * eshell/eshell.el (eshell): Fix broken info-link.
4636
4637 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
4638 * eshell/em-banner.el (eshell-banner):
4639 * eshell/em-smart.el (eshell-smart):
4640 * eshell/esh-cmd.el (eshell-cmd):
4641 Comment out broken info-links to incomplete Info manual.
4642
4643 * info-xref.el: Fix commentary.
4644
4645 2004-03-25 Kevin Ryde <user42@zip.com.au>
4646
4647 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
4648 Remove spurious node duplicate suppression, doesn't work, not wanted.
4649 (info-xref-output): Take format style args, add "sit-for 0" to let
4650 user see the results as they progress.
4651 (info-xref-check-all-custom): New function.
4652
4653 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
4654
4655 * gdb-ui.el: Moved to progmodes.
4656
4657 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4658
4659 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
4660
4661 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
4662
4663 * calendar/appt.el (appt-check): Remove superfluous progn.
4664 When finished with diary buffer: if it was not being displayed
4665 before, kill it; otherwise restore its original state.
4666 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
4667
4668 * calendar/calendar.el (calendar-set-mode-line): Use total
4669 available mode-line width, rather than frame-width.
4670
4671 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
4672 after mode change so effect not lost.
4673
4674 2004-03-23 Dave Love <fx@gnu.org>
4675
4676 * dired.el (dired) <defgroup>: Add link to manual.
4677 (dired-font-lock-keywords): Add highlighting on unusual permissions.
4678 (dired-revert): Use dolist.
4679 (dired-mode-map): Add U binding.
4680 (dired-mode): Add font-lock-beginning-of-syntax-function.
4681 (dired-garbage-files-regexp): Make it a defcustom.
4682
4683 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4684
4685 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
4686 is equivalent to nil.
4687 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
4688 (vc-arch-mode-line-string): Accept `added' state.
4689 (vc-arch-state): Use inode-sigs if available.
4690 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
4691 Copy&delete existing id file if any. Fallback if uuidgen is absent.
4692 (vc-arch-tagline-re): New var.
4693 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
4694 New functions.
4695 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
4696 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
4697
4698 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
4699 (vc-file-not-found-hook): Use it.
4700
4701 * diff-mode.el (diff-default-read-only): Change default.
4702 (diff-mode-hook): Make it a defcustom. Add some options.
4703 (diff-mode-map): Bind diff-refine-hook.
4704 (diff-yank-handler): New var.
4705 (diff-yank-function): New fun.
4706 (diff-font-lock-keywords): Use them.
4707 (diff-end-of-file): Handle case where file-header looks like diff text.
4708 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
4709 (diff-file-kill): Delete a subsequent empty line, if applicable.
4710 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
4711 (diff-find-file-name): Use it.
4712 (diff-tell-file-name): New command.
4713 (diff-mode): Be careful with view-mode.
4714 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
4715 New functions, for use in diff-mode-hook.
4716 (diff-find-source-location): Catch "regex too large" errors.
4717 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
4718 (diff-refine-hunk): New command.
4719
4720 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
4721 (smerge-context-menu-map): Remove unused var.
4722 (smerge-keep-all): Preserve markers.
4723 (smerge-keep-n): New fun.
4724 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4725 (smerge-keep-current, smerge-ediff): Use it.
4726 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
4727 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
4728 (smerge-resolve): Resolve trivial 3-part conflicts.
4729
4730 2004-03-23 Juri Linkov <juri@jurta.org>
4731
4732 * man.el (Man-width): New var.
4733 (Man-getpage-in-background): Use it.
4734 (Man-support-local-filenames): New var and fun.
4735 (Man-build-man-command): Don't add a second %s.
4736 (Man-fontify-manpage): Clean up message.
4737 (Man-mode): Set outline-regexp, outline-level,
4738 imenu-generic-expression.
4739
4740 * woman.el (woman-fill-frame): Doc fix.
4741 (woman-decode-region): Use window-width instead of frame-width.
4742
4743 * abbrevlist.el (list-one-abbrev-table):
4744 * descr-text.el (describe-char):
4745 * international/mule-diag.el (describe-current-coding-system):
4746 * international/quail.el (quail-insert-decode-map):
4747 Use window-width instead of frame-width.
4748
4749 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
4750 (jka-compr-mode-alist-additions): Add tbz.
4751 (jka-compr-write-region, jka-compr-insert-file-contents):
4752 Add message for undefined compress-program.
4753 (jka-compr-write-region): Remove redundant var bindings.
4754
4755 * dired-x.el (dired-guess-shell-alist-default): Add choices for
4756 extracting files into subdirectory. Add tbz and dz. Fix regexps.
4757 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
4758 (dired-man): Use dired-guess-shell-command.
4759 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
4760 Change default nil to t.
4761
4762 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
4763 (dired-compare-directories): Add default value for empty input.
4764
4765 * help-at-pt.el: Move suggestions for key bindings to Commentary.
4766
4767 * time.el (display-time-string-forms): Fix help-echo date format.
4768
4769 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
4770
4771 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
4772 (buffer-stale-function): New variable.
4773 (auto-revert-list-diff, auto-revert-dired-file-list)
4774 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
4775 (auto-revert-handler): Take over some functionality of deleted
4776 functions.
4777 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
4778
4779 * dired.el (dired-directory-changed-p): New fun, extracted from
4780 dired-internal-noselect.
4781 (dired-buffer-stale-p): New fun.
4782 (dired-internal-noselect): Use dired-directory-changed-p.
4783 Eliminate revert messages.
4784 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
4785
4786 2004-03-23 Kenichi Handa <handa@m17n.org>
4787
4788 * international/characters.el: Setup syntaxes for more parentheses
4789 Unicode characters.
4790
4791 * international/mule-cmds.el (select-safe-coding-system):
4792 Merge coding-system and auto-cs before comparing them.
4793
4794 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
4795
4796 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
4797
4798 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4799 normal-auto-fill-function and comment-indent-function.
4800 The default values now work just as well.
4801 Don't set font-lock-beginning-of-syntax-function since we already set
4802 syntax-begin-function.
4803 (lisp-outline-level): Put ;;;###autoload at same level as (.
4804 (prin1-char): Quote special chars.
4805
4806 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
4807 than with-no-warnings.
4808
4809 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
4810 if the source location can't be found.
4811 (edebug-compute-previous-result): Use prin1-char.
4812
4813 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
4814 (debug-ignored-errors): Add an entry.
4815
4816 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
4817 (byte-compile-file): Output warning when deleting a file.
4818
4819 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
4820 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
4821
4822 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
4823 (byte-compile-inline-expand): Use backquote.
4824 (byte-optimize-pure-func): Rename from byte-optimize-concat.
4825 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
4826
4827 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
4828
4829 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
4830
4831 2004-03-22 Juri Linkov <juri@jurta.org>
4832
4833 * finder.el (finder-known-keywords): Fix data, tex, unix.
4834
4835 * play/landmark.el: Fix keywords.
4836
4837 * language/ethio-util.el (ethio-find-file): Doc fix.
4838
4839 * emacs-lisp/warnings.el: Doc fix.
4840
4841 * textmodes/ispell.el (ispell-help): Doc fix.
4842
4843 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
4844
4845 * format.el (format-insert-file): Always return a list of two
4846 elements, like insert-file-contents does.
4847
4848 2004-03-21 Andre Spiegel <spiegel@gnu.org>
4849
4850 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
4851 and vc-BACKEND-diff.
4852 (vc-print-log): If the print-log implementation supports it, use
4853 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
4854 (vc-version-diff, vc-diff-internal): Doc fixes.
4855
4856 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
4857 implementation supports it, let diff output go to *vc*,
4858 not *vc-diff*, since this is an internal call.
4859
4860 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
4861
4862 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
4863
4864 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
4865
4866 2004-03-21 Dave Love <fx@gnu.org>
4867
4868 * progmodes/cfengine.el (cfengine-mode):
4869 Set parse-sexp-ignore-comments.
4870
4871 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
4872
4873 2004-03-21 Juanma Barranquero <lektu@terra.es>
4874
4875 * allout.el (allout-mode): Fix docstring.
4876
4877 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
4878
4879 * files.el (insert-directory): Fix bug if SWITCHES is a list.
4880
4881 * autorevert.el (auto-revert-interval): Make new value take
4882 effect immediately when set through Custom.
4883 (auto-revert-set-timer): Add interactive declaration.
4884
4885 2004-03-19 David Ponce <david@dponce.com>
4886
4887 * ruler-mode.el (ruler-mode-header-line-format-old):
4888 Don't `make-variable-buffer-local'.
4889 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
4890 (ruler-mode-header-line-format): Simply funcall the above.
4891 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
4892 to save/restore a previous header line format.
4893 (ruler-mode-space): Don't depend on a numeric WIDTH value.
4894 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
4895 fringes and margins width.
4896 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
4897
4898 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4899
4900 * log-edit.el (log-edit-font-lock-keywords): Typo.
4901
4902 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
4903 (tex-send-tex-command): Rather than here.
4904 (tex-compilation-parse-errors): Simplify.
4905
4906 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
4907
4908 * time.el (display-time-string-forms): Add help-echo with date on time.
4909
4910 * composite.el (compose-region): Use restore-buffer-modified-p.
4911
4912 * disp-table.el (standard-display-8bit): Simplify.
4913
4914 * server.el (server-process-filter): Delete temp frame.
4915
4916 * add-log.el (add-change-log-entry): Simplify.
4917
4918 2004-03-19 Kim F. Storm <storm@cua.dk>
4919
4920 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
4921 (hexl-follow-line): Don't require 'fringe.
4922
4923 * progmodes/compile.el (compilation-start): Always set
4924 compilation-last-buffer and return it.
4925
4926 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
4927
4928 * simple.el (clone-buffer): Doc fix.
4929
4930 2004-03-18 Juanma Barranquero <lektu@terra.es>
4931
4932 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
4933
4934 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4935
4936 * log-edit.el (log-edit-font-lock-keywords): New var.
4937 (log-edit-mode): Use it.
4938
4939 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
4940
4941 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
4942 properly for watching in speedbar.
4943
4944 2004-03-17 Masatake YAMATO <jet@gyve.org>
4945
4946 * smerge-mode.el (smerge-popup-context-menu):
4947 Put `unwind-protect' around `overlay-put' and `popup-menu'.
4948
4949 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
4950
4951 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
4952 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
4953 Take sealed revisions into account.
4954 (vc-arch-checkin): Extract a summary line from the message.
4955
4956 2004-03-16 Masatake YAMATO <jet@gyve.org>
4957
4958 * register.el (register): Provide `register' feature.
4959
4960 2004-03-15 Masatake YAMATO <jet@gyve.org>
4961
4962 Added context menu support in smerge mode.
4963 Most of the part is written by Stefan Monnier.
4964
4965 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
4966 New keymap and menu.
4967 (smerge-text-properties): New function.
4968 (smerge-remove-props): New function.
4969 (smerge-popup-context-menu): New function.
4970 (smerge-resolve): Call `smerge-remove-props'.
4971 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
4972 (smerge-keep-current): Ditto.
4973 (smerge-kill-current): New function.
4974 (smerge-match-conflict): Put text properties.
4975 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
4976
4977 2004-03-15 David Ponce <david@dponce.com>
4978
4979 * ruler-mode.el: (ruler-mode-left-fringe-cols)
4980 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
4981 (ruler-mode-right-scroll-bar-cols): Remove.
4982 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
4983 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
4984 Use fringe-columns and scroll-bar-columns.
4985
4986 2004-03-15 Masatake YAMATO <jet@gyve.org>
4987
4988 * hl-line.el (hl-line-range-function): New variable.
4989 (hl-line-move): New function.
4990 (global-hl-line-highlight): Use `hl-line-move'.
4991 (hl-line-highlight): Ditto.
4992
4993 * scroll-bar.el (scroll-bar-columns):
4994 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
4995
4996 * ruler-mode.el (top-level): Require scroll-bar and fringe.
4997 (ruler-mode-left-fringe-cols)
4998 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
4999 (ruler-mode-right-scroll-bar-cols)
5000 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
5001 (ruler-mode-ruler-function): New variable.
5002 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
5003 if the value for `ruler-mode-ruler-function'is given.
5004
5005 * hexl.el (hexl-mode-hook): Make the hook customizable.
5006 (hexl-address-area, hexl-ascii-area): New customize variables.
5007 (hexlify-buffer): Put font-lock-faces on the address area and
5008 the ascii area.
5009 (hexl-activate-ruler): New function.
5010 (hexl-follow-line): New function.
5011 (hexl-highlight-line-range): New function.
5012 (hexl-mode-ruler): New function.
5013
5014 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
5015
5016 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
5017 (vc-default-find-file-hook): New fun.
5018 (vc-find-file-hook): Call new find-file-hook operation.
5019
5020 * vc-arch.el: New file.
5021
5022 2004-03-12 Jesper Harder <harder@ifa.au.dk>
5023
5024 * info-look.el (info-lookup): Reuse an existing Info window.
5025
5026 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5027
5028 * woman.el (woman-preserve-ascii): Default value changed to t and
5029 doc string revised.
5030
5031 2004-03-12 Richard M. Stallman <rms@gnu.org>
5032
5033 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
5034 Fix minor bug.
5035
5036 * replace.el (occur-engine): Change message for count of matches.
5037
5038 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
5039 For strings, do compare text properties.
5040
5041 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
5042
5043 * progmodes/compile.el (compile-auto-highlight)
5044 (compilation-error-list, compilation-old-error-list)
5045 (compilation-parse-errors-function, compilation-parsing-end)
5046 (compilation-error-message, compilation-directory-stack)
5047 (compilation-enter-directory-regexp-alist)
5048 (compilation-leave-directory-regexp-alist)
5049 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
5050 (compilation-current-file, compilation-regexps): Remove vars.
5051
5052 (compile-error-at-point, compilation-error-filedata)
5053 (compilation-error-filedata-file-name, compile-reinitialize-errors)
5054 (compilation-next-error-locus, compilation-forget-errors)
5055 (count-regexp-groupings, compilation-parse-errors)
5056 (compile-collect-regexps, compile-buffer-substring): Remove funs.
5057
5058 (compile-internal): Make obsolete.
5059
5060 (compilation-first-column, compilation-error)
5061 (compilation-directory-matcher, compilation-page-delimiter)
5062 (compilation-mode-font-lock-keywords, compilation-debug)
5063 (compilation-error-face, compilation-warning-face)
5064 (compilation-info-face, compilation-line-face)
5065 (compilation-column-face, compilation-enter-directory-face)
5066 (compilation-leave-directory-face, compilation-skip-threshold)
5067 (compilation-skip-visited, compilation-context-lines): New vars.
5068
5069 (compilation-warning-face, compilation-info-face)
5070 (compilation-message-face): New faces.
5071
5072 (compilation-error-regexp-alist-alist): New constant.
5073
5074 (compilation-face, compilation-directory-properties)
5075 (compilation-assq, compilation-error-properties, compilation-start)
5076 (define-compilation-mode, compilation-loop)
5077 (compilation-set-window): New functions.
5078
5079 (compile): Additional argument for interactive compiles like TeX.
5080
5081 * progmodes/grep.el (kill-grep): Move here from compile.el
5082 (grep-error, grep-hit-face, grep-error-face)
5083 (grep-mode-font-lock-keywords): New variables.
5084 (grep-regexp-alist): Simplify regexp and add `binary' case.
5085 (grep-mode): New mode.
5086 (grep-process-setup): Simplify.
5087
5088 2004-03-11 Jason Rumney <jasonr@gnu.org>
5089
5090 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
5091 letters on DOS/Windows.
5092
5093 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
5094
5095 * server.el (server-name): New var.
5096 (server-socket-dir): New var to replace server-socket-name.
5097 (server-start): Use them.
5098
5099 2004-03-11 Simon Josefsson <jas@extundo.com>
5100
5101 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
5102 died to avoid infloop. Reported by Jonathan Glauner
5103 <jglauner@sbum.org>.
5104
5105 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5106
5107 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
5108 (smerge-mode-menu): Use it to deactivate menu entries.
5109 (smerge-keep-current): New fun.
5110 (smerge-keep-current): Use it.
5111
5112 2004-03-10 John Paul Wallington <jpw@gnu.org>
5113
5114 * foldout.el (foldout-fold-list, foldout-modeline-string):
5115 Declare them as variables, not constants.
5116
5117 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5118
5119 * ps-print.el: Modification to print *Messages* buffer.
5120 (ps-print-version): New version 6.6.4.
5121 (ps-message-log-max): New fun.
5122 (ps-spool-without-faces, ps-spool-with-faces)
5123 (ps-count-lines-preprint): Code fix.
5124
5125 * printing.el: New tips in Tips section.
5126
5127 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5128
5129 * delim-col.el: Doc fix.
5130
5131 * printing.el: Doc fix. New doc section (Tips).
5132
5133 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5134
5135 * type-break.el (type-break-emacs-variant): Remove.
5136 (type-break-run-at-time, type-break-cancel-function-timers):
5137 Use fboundp rather than version name and number.
5138
5139 2004-03-09 Masatake YAMATO <jet@gyve.org>
5140
5141 * hexl.el (hexl-mode): Use `make-local-variable' instead of
5142 `make-variable-buffer-local'.
5143
5144 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
5145
5146 * find-dired.el (find-dired): Call `shell-command' instead of
5147 `start-process-shell-command'. By this, Tramp takes over
5148 handling of remote directories.
5149
5150 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
5151
5152 * newcomment.el (comment-use-global-state): New var.
5153 (comment-search-forward): Use it.
5154
5155 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
5156
5157 * cus-edit.el (fill) <defgroup>: Move to fill.el.
5158
5159 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
5160 (enable-kinsoku): Make it a defcustom.
5161 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
5162 paragraph to same-comment-start-marker.
5163
5164 2004-03-07 Dave Love <fx@gnu.org>
5165
5166 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
5167 (browse-url-mail): Use it.
5168
5169 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
5170 (rfc2368-unhexify-string): Use replace-regexp-in-string.
5171
5172 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5173
5174 * woman.el (woman-man.conf-path): Doc fix.
5175 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
5176
5177 2004-03-07 Eli Zaretskii <eliz@gnu.org>
5178
5179 * sort.el (sort-columns): Remove ms-dos from the list of systems
5180 where the external `sort' command is not used.
5181
5182 2004-03-07 Kim F. Storm <storm@cua.dk>
5183
5184 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
5185 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
5186 from overlay-arrow-variable-list.
5187 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
5188
5189 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
5190
5191 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
5192 overlay arrow string properly for the assembler buffer.
5193
5194 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * mail/sendmail.el (mail-mode): Fix last change.
5197
5198 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
5199
5200 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
5201 for the assembler buffer.
5202 (gdb-assembler-custom): Position the overlay arrow.
5203 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
5204
5205 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
5206
5207 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
5208
5209 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
5210 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
5211
5212 * mail/sendmail.el (mail-mode): Set comment-start-skip.
5213
5214 * newcomment.el (uncomment-region): Allow non-terminated comment.
5215 (comment-normalize-vars): Check the user-specified comstart marker.
5216
5217 2004-03-04 Jesper Harder <harder@ifa.au.dk>
5218
5219 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
5220 Otherwise, do use it if the region only contains font-lock text
5221 properties.
5222
5223 2004-03-04 Masatake YAMATO <jet@gyve.org>
5224
5225 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
5226 as the callback function for eldoc.
5227 (hexl-print-current-point-info): New function.
5228 (hexl-current-address): Print the address in both decimal
5229 and hexadecimal format.
5230
5231 2004-03-04 Richard M. Stallman <rms@gnu.org>
5232
5233 * mail/rmail.el (rmail-convert-to-babyl-format):
5234 Specify t for UNIBYTE when calling mail-unquote-printable-region.
5235
5236 * mail/mail-utils.el (mail-unquote-printable-region):
5237 New arg UNIBYTE.
5238
5239 * startup.el (command-switch-alist): Doc fix.
5240
5241 * simple.el (undo): Temporarily set this-command to `undo-start',
5242 then set it to `undo' once undo-start returns without error.
5243
5244 * simple.el (minibuffer-history-sexp-flag): Doc fix.
5245
5246 * simple.el (kill-line): Don't disregard trailing whitespace
5247 in eol condition, if show-trailing-whitespace is set.
5248
5249 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
5250 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
5251 When disabling, restore old values only if mouse-sel-has-been-enabled.
5252
5253 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
5254 (isearch-{-char): New function.
5255 (isearch-mode-map): Bind { to isearch-{-char.
5256
5257 * font-lock.el (lisp-font-lock-keywords-2):
5258 Turn off the CL with-... and do-... general patterns.
5259 Instead, recognize several specific with... and do... constructs.
5260
5261 * files.el (switch-to-buffer-other-window):
5262 Bind same-window-buffer-names and same-window-regexps to nil.
5263 (switch-to-buffer-other-frame): Likewise.
5264
5265 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
5266
5267 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
5268 recognizing leading comment on code line.
5269
5270 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5271
5272 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
5273 hidden files/directories.
5274
5275 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5276
5277 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
5278 only comment-start (in case the mode hasn't set it).
5279
5280 * Makefile.in (AUTOGENEL): New var.
5281 (bootstrap-prepare): Rename from bootstrap-clean.
5282 Don't remove elc files.
5283 (maintainer-clean): New target.
5284
5285 * xml.el (xml-get-attribute-or-nil): Simplify.
5286
5287 2004-03-02 Juri Linkov <juri@jurta.org>
5288
5289 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
5290 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
5291 URL to prevent their substitution with the environment variable
5292 values by browsers.
5293
5294 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5295
5296 * ps-print.el: Doc fix.
5297 (ps-print-version): New version number (6.6.3).
5298 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
5299 Docstring fix.
5300 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
5301 before printing.
5302 (ps-time-stamp-yyyy-mm-dd): New fun.
5303 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
5304
5305 2004-03-02 Kim F. Storm <storm@cua.dk>
5306
5307 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
5308
5309 2004-03-01 Juanma Barranquero <lektu@terra.es>
5310
5311 * allout.el (allout-rebullet-heading): Fix typo in docstring.
5312
5313 * desktop.el (desktop-file-version)
5314 (desktop-after-read-hook): Fix typos.
5315 (desktop-clear-preserve-buffers): Remove redundant info in
5316 docstring already shown by the obsolescence message.
5317 (desktop-truncate, desktop-internal-v2s)
5318 (desktop-value-to-string): Change argument name to match docstring.
5319
5320 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
5321
5322 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
5323 docstring.
5324
5325 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5326
5327 * printing.el: Replace "As Is..." in PostScript file print/preview by
5328 "No Preprocessing...". Suggested by Colin Marquardt
5329 <_marquardt_@zmd.de>.
5330 (pr-insert-section-4): Adjust buffer interface.
5331
5332 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
5333
5334 Version 2.0.39 of Tramp released.
5335
5336 * net/tramp.el (tramp-handle-file-local-copy)
5337 (tramp-handle-write-region, tramp-open-connection-rsh):
5338 Variable name typo. Small change. From Patrick Tullmann
5339 <tullmann@flux.utah.edu>.
5340 (tramp-process-connection-type): New variable.
5341 (tramp-maybe-open-connection): Use it.
5342 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
5343 (tramp-touch): Set last-modified time of a remote file.
5344 (tramp-handle-write-region): Say which function is used when encoding.
5345
5346 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
5347
5348 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
5349 case of non-existing filename, too. Reported by Christoph Bauer
5350 <c_bauer@informatik.uni-kl.de>.
5351 (tramp-smb-get-file-entries): The directory in question should
5352 have permissions "drwxrwxrwx". Just virtual, because we don't
5353 know the real permissions. Don't we know?
5354 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
5355 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
5356 (tramp-smb-wait-for-output): Optimize algorithm getting pending
5357 output. If it was received chunkwise, there have been problems.
5358 Remove the "prompt not found" error message; it is obvious.
5359 Simplify algorithm.
5360 (tramp-smb-process-running): Remove. Since we acknowledge the
5361 virtual prompt for shares, there's no need for distinction of
5362 reading shares (process ends afterwards) and interactive mode of
5363 smblient.
5364 (tramp-smb-open-connection): Setting process sentinel removed.
5365 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
5366 "NT_STATUS_NETWORK_ACCESS_DENIED".
5367 (tramp-smb-maybe-open-connection): Set `process-connection-type'
5368 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
5369 (top-level): Setting default value in `tramp-default-method-alist'
5370 corrected. Order of USER and HOST have been wrong.
5371 Nobody complained for months ...
5372 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
5373 (tramp-smb-open-connection): Clear password cache if login has failed.
5374
5375 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
5376 `tramp-unified-filenames'.
5377 (tramp-completion-mode): Make test for XEmacs explicitely.
5378 `event-to-character' can exists in Emacs packages too.
5379 Reported by Matt Swift <swift@alum.mit.edu>.
5380 (tramp-buffer-name): Buffer name must contain the user if exists.
5381 Reported by Adrian Phillips <a.phillips@met.no>.
5382 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
5383 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
5384 (tramp-do-copy-or-rename-file-out-of-band): Rename from
5385 `tramp-do-copy-or-rename-file-one-local', because it handles also
5386 the case both files use the same out-of-band method.
5387 Implementation added.
5388 (tramp-handle-file-local-copy, tramp-handle-write-region):
5389 Out-of-band handling removed. `copy-file' called instead, which
5390 calls `tramp-do-copy-or-rename-file-out-of-band'.
5391 (tramp-action-password): Check for out-of-band method removed.
5392 This function is used for 'login-program.
5393 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
5394 appropriate.
5395 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
5396 and `tramp-parse-sknownhosts'.
5397 (tramp-completion-function-alist): It's a defvar now, because we
5398 want to apply the optimized `tramp-set-completion-function'
5399 instead of a static list.
5400 (tramp-set-completion-function): Implementation tuned.
5401 Avoid double entries, and entries where the function or the
5402 file/directory doesn't exist.
5403 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
5404 for SSH2.
5405 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
5406 (tramp-handle-dired-compress-file): New function.
5407 (tramp-async-proc): New variable.
5408 (tramp-handle-shell-command): Adding asynchronous processes.
5409 They are far from being perfect, but it works at least for
5410 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
5411 (top-level): Require password.el if visible. Should be mandatory
5412 once No Gnus has found its way into (X)Emacs.
5413 (tramp-read-passwd): Invoke `password-read' if available,
5414 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
5415 fallback any longer.
5416 (tramp-clear-passwd): New function.
5417 (tramp-process-actions, tramp-process-multi-actions):
5418 Clear password cache if login has failed.
5419
5420 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
5421 its own module.
5422 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
5423 `ange-ftp-ftp-name-res'. There could be incorrect values from
5424 previous calls in case the "ftp" method is used in the Tramp file
5425 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5426
5427 2004-02-28 Richard M. Stallman <rms@gnu.org>
5428
5429 * term.el (term-mouse-paste): Call mouse-set-point.
5430
5431 * thumbs.el: New file.
5432
5433 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5434
5435 * progmodes/ebnf-abn.el: Doc fix.
5436
5437 * progmodes/ebnf-bnf.el: Doc fix.
5438 (ebnf-repeat): Code fix.
5439
5440 * progmodes/ebnf2ps.el: Doc fix.
5441 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
5442
5443 2004-02-28 Juri Linkov <juri@jurta.org>
5444
5445 * ffap.el (dired-at-point): Additional writability test for
5446 relative directory names.
5447 (dired-at-point-prompter): Treat directories as a directory, get
5448 the directory component from files.
5449 (ffap-string-at-point): Return string from region if region is active.
5450 (ffap-file-at-point): Remove redundant code.
5451
5452 2004-02-28 Kim F. Storm <storm@cua.dk>
5453
5454 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
5455 Initialize margin area images to nil.
5456 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
5457 (breakpoint-enabled-bitmap-face)
5458 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
5459 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
5460 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
5461 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
5462 (gdb-reset): Use gdb-remove-breakpoint-icons.
5463 (gdb-put-string): Add dprop arg to specify alternative display
5464 property (for setting fringe bitmap).
5465 (gdb-remove-strings): Doc fix.
5466 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
5467 icon in fringe (if available), or else as icon or text in display
5468 margin. Creates necessary icons in breakpoint-bitmap,
5469 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
5470 Also make left window margin if required.
5471 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
5472 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
5473 no longer needed.
5474 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
5475 gdb-put-breakpoint-icon.
5476 (gdb-assembler-mode): Don't set left-margin-width here.
5477
5478 2004-02-27 Kevin Ryde <user42@zip.com.au>
5479
5480 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
5481 comma, so that it DTRT in macros.
5482
5483 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
5484
5485 * progmodes/sh-script.el (sh-shell-arg)
5486 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
5487 (sh-leading-keywords, sh-other-keywords): Fix custom type.
5488
5489 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
5490
5491 * faces.el (face-spec-set-match-display): Add a new attribute,
5492 `min-colors'.
5493 (region, highlight, secondary-selection): Use `min-colors'.
5494
5495 * custom.el (defface): Add documentation for `min-colors'.
5496
5497 * font-lock.el (font-lock-comment-face, font-lock-string-face)
5498 (font-lock-keyword-face, font-lock-function-name-face)
5499 (font-lock-variable-name-face, font-lock-constant-face):
5500 Use `min-colors'.
5501
5502 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
5503
5504 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5505
5506 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
5507 define assq-delete-all if it's not defined.
5508 (ebnf-generate-region): Code fix.
5509
5510 * printing.el: Doc fix.
5511 (pr-version): New version number (6.7.2).
5512 (pr-command): Return empty string if command is an empty string.
5513
5514 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5515
5516 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
5517
5518 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
5519 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
5520 semi-down-full. Fix a bug on productions like test = {"test"}* | (
5521 "tt" ["test"] ). Reported by Markus Dreyer
5522 <mdreyer@ix.urz.uni-heidelberg.de>.
5523 (ebnf-version): New version number (4.0).
5524 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
5525 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
5526 (ebnf-delete-style): New commands.
5527 (ebnf-directory, ebnf-file): New funs.
5528 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
5529 (ebnf-production-name-p, ebnf-stop-on-error): New options.
5530 (ebnf-syntax-alist): New var.
5531 (ebnf-element-width): New fun replacing ebnf-list-width.
5532 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
5533 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
5534 (ebnf-prologue): Adjust vars.
5535 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
5536 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
5537 (ebnf-check-style-values, ebnf-generate-production)
5538 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
5539 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
5540 (ebnf-token-repeat): Code fix.
5541
5542 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
5543 %right, %left and %prec. Suggested by Matthew K. Junker
5544 <junker@alum.mit.edu>.
5545 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
5546
5547 * progmodes/ebnf-iso.el: Doc fix.
5548 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
5549 (ebnf-iso-lex): Code fix.
5550
5551 * progmodes/ebnf-bnf.el: Doc fix.
5552 (ebnf-bnf-lex): Code fix.
5553
5554 * progmodes/ebnf-otz.el: Doc fix.
5555
5556 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5557
5558 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
5559 (abbrev-prefix-mark): Doc fix.
5560
5561 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
5562
5563 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
5564 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
5565 (gdb-var-delete): Make interactive (really).
5566 (gdb-edit-value): Make non-interactive.
5567
5568 * progmodes/gud.el (gud-speedbar-menu-items):
5569 Add gdb-var-delete and, indirectly, gdb-edit-value.
5570 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
5571 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
5572 (gud-gdb-marker-filter): Add comment for annotations.
5573
5574 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5575
5576 * calendar/calendar.el (generate-calendar)
5577 (calendar-read-date): Prevent display of BC calendars once more -
5578 reverts 2003-10-01 change.
5579 (generate-calendar-month): Doc fix.
5580
5581 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
5582
5583 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
5584 return value of increment-calendar-month.
5585
5586 2004-02-21 Stephen Compall <s11@member.fsf.org>
5587
5588 * saveplace.el (save-place-forget-unreadable-files)
5589 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
5590 (save-place-forget-unreadable-files): New function.
5591 (save-place-alist-to-file): Use it to filter out files that are
5592 no longer readable.
5593
5594 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
5595 current Texinfo environment, using the same method as in
5596 `texinfo-insert-@end', and insert a space rather than a newline if
5597 point in a @table environment.
5598
5599 2004-02-21 Juri Linkov <juri@jurta.org>
5600
5601 * ffap.el (ffap-file-at-point): Try parent directories.
5602
5603 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
5604
5605 * vcursor.el (vcursor-modifiers): New defcustom.
5606 (vcursor-cs-binding): Use vcursor-modifiers instead of a
5607 hard-coded list.
5608
5609 2004-02-21 Masatake YAMATO <jet@gyve.org>
5610
5611 * play/animate.el (animate-birthday-present): Accept names other
5612 than `Sarah', too.
5613
5614 2004-02-21 Juri Linkov <juri@jurta.org>
5615
5616 * startup.el: Remove table of command line arguments from the
5617 Commentary section.
5618
5619 2004-02-20 John Wiegley <johnw@newartisans.com>
5620
5621 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
5622 again" modifier from 'e' to 'E', since 'e' is also used by the
5623 "file extension" modifier.
5624
5625 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5626
5627 * help-fns.el (describe-categories): Doc fix.
5628
5629 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
5630
5631 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
5632 temporary file for buffer already visiting one. This change makes
5633 output likely to be directly usable by patch program.
5634 Suggested by Adrian Aichner <adrian@xemacs.org>
5635
5636 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
5637
5638 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
5639 case of variables defined in compound statements.
5640 (gdb-setup-windows, gdb-source-info, gdb-source-info):
5641 Simplify constructions using switch-to-buffer.
5642
5643 2004-02-19 Simon Josefsson <jas@extundo.com>
5644
5645 * play/morse.el: Fix typo.
5646 (morse-code): Add @.
5647
5648 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
5649
5650 * calendar/appt.el (appt-display-format): Change default to
5651 'ignore, for backwards compatibility.
5652 (appt-display-message): If appt-display-format is 'ignore,
5653 respect old vars appt-msg-window and appt-visible.
5654 (appt-activate): Don't depend on return value of cancel-timer.
5655
5656 * calendar/calendar.el (calendar-holidays): Doc fix.
5657
5658 * calendar/cal-coptic.el (coptic-prompt-for-date):
5659 Use assoc-string instead of assoc-ignore-case.
5660 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
5661 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
5662 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
5663 * calendar/cal-islam.el (calendar-goto-islamic-date)
5664 (mark-islamic-diary-entries): Ditto.
5665 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
5666 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
5667 (calendar-read-mayan-tzolkin-date): Ditto.
5668 * calendar/calendar.el (calendar-read-date): Ditto.
5669 * calendar/diary-lib.el (mark-diary-entries): Ditto.
5670
5671 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
5672
5673 * progmodes/executable.el (executable-command-find-posix-p):
5674 Fix choice of the directory.
5675
5676 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
5677
5678 * simple.el (interprogram-cut-function)
5679 (interprogram-paste-function, kill-new, kill-append):
5680 Doc fixes.
5681 (kill-region): Make it return nil. Doc fix.
5682 (yank-pop): Make its argument optional.
5683 (yank): Make ARG `-' equivalent to `-1'.
5684
5685 2004-02-17 Eli Zaretskii <eliz@gnu.org>
5686
5687 * mail/rmail.el (rmail-get-new-mail): Don't reference
5688 rmail-use-spam-filter if rmail-spam-filter is not loaded.
5689
5690 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
5691
5692 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
5693 if one of global-auto-revert-non-file-buffers or autorevert-mode
5694 is non-nil.
5695
5696 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5697
5698 * subr.el (delete-dups): A better implementation from Karl Heuer
5699 <kwzh@gnu.org>.
5700
5701 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5702
5703 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
5704 correct place.
5705 * progmodes/icon.el (icon-indent-command): Ditto.
5706 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
5707
5708 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5709
5710 * progmodes/grep.el (grep-compute-defaults): Undo change from
5711 2004-01-29: don't use executable-command-find-posix-p.
5712
5713 2004-02-16 Richard Sharman <rsharman@pobox.com>
5714
5715 * hilit-chg.el: Use require instead of eval-and-compile.
5716 (highlight-compare-buffers): New function.
5717
5718 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
5719
5720 * man.el (Man-fontify-manpage): Render section headings in
5721 `Man-overstrike-face' even when overstrike was not used by man
5722 formatter for section headings.
5723
5724 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
5725
5726 * rmail-spam-filter.el: (vm-use-spam-filter)
5727 (rsf-min-region-length-added-to-spam-list): New variables.
5728 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
5729 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
5730 spam testing. Don't delete spam message if automatic deletion
5731 after output via variable rmail-delete-after-output is turned on.
5732 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
5733 rsf-bbdb-dont-create-entries-for-spam.
5734 (check-field): New function, extracted from code in
5735 rmail-spam-filter to ease addition of header fields like content-type.
5736 (message-content-type): New variable to check the content-type:
5737 field added, also in defcustom of rsf-definitions-alist.
5738 (rmail-spam-filter): Replace repeated test code for header fields
5739 by calls to check-field; change the call to
5740 rmail-output-to-rmail-file such that rmail-current-message stays
5741 the same to avoid wrong deletion of unseen flags.
5742 (rsf-add-contents-type): New function to convert old format
5743 of rmail-spam-definitions-alist into new one.
5744 Change prefixes of all variables and functions from
5745 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
5746
5747 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5748
5749 * loadhist.el (unload-hook-features-list): New defvar.
5750
5751 2004-02-16 Dave Love <fx@gnu.org>
5752
5753 * loadhist.el (unload-feature): Doc fix. Rename flist to
5754 unload-hook-features-list.
5755
5756 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
5757
5758 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
5759 cookie. Don't check if we are looking-at open-formula.
5760
5761 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
5762
5763 * subr.el (match-string-no-properties): Use substring-no-properties.
5764
5765 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5766
5767 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
5768 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
5769 Use lower-case "rx" in all error message.
5770
5771 2004-02-16 Dave Love <fx@gnu.org>
5772
5773 * emacs-lisp/rx.el (rx-or): Put group around result.
5774 (rx-constituents): Add backref.
5775 (rx-syntax): Add string-delimiter, comment-delimiter.
5776 (rx-categories): Add combining-diacritic.
5777 (rx-check-not, rx-greedy, rx): Doc fix.
5778 (rx-backref, rx-check-backref): New.
5779
5780 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5781
5782 * newcomment.el (uncomment-region): Allow eob as comment end.
5783
5784 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5785
5786 * filecache.el: All message and error commands now use prefix
5787 "Filecache:" to make it easy to read *Messages* buffer.
5788
5789 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5790
5791 * autorevert.el: Add support to detect changed dired and VC buffers.
5792 (auto-revert-active-p, auto-revert-list-diff)
5793 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
5794 (auto-revert-handler, auto-revert-active-p): New functions.
5795 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
5796 and `auto-revert-active-p'.
5797 (eval-when-compile): Defvar dired-directory and vc-mode.
5798 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
5799 (auto-revert-handler-vc): New functions.
5800
5801 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
5802
5803 * progmodes/compile.el (compilation-directory): New defvar.
5804 (compile): Save current directory in compilation-directory.
5805 (recompile): Bind default-directory to compilation-directory if
5806 that is non-nil.
5807
5808 2004-02-16 Dave Love <fx@gnu.org>
5809
5810 * newcomment.el (comment-insert-comment-function)
5811 (comment-region-function, uncomment-region-function): New.
5812 (comment-indent): Use comment-insert-comment-function.
5813 (uncomment-region): Use uncomment-region-function.
5814 (comment-region): Use comment-region-function.
5815
5816 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
5817
5818 2004-02-16 Richard Stallman <rms@gnu.org>
5819
5820 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
5821 loaddefs* and ldefs-boot*.
5822
5823 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5824
5825 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
5826 and email address at the beginning and end of the address.
5827
5828 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
5829 anchored at the beginning of the email address.
5830
5831 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
5832
5833 * international/ccl.el (ccl-compile-write): Pass `left' to
5834 ccl-embed-code to generate correct code of write-expr-register.
5835
5836 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
5837
5838 * progmodes/grep.el (grep-compute-defaults): Fix typos.
5839
5840 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5841
5842 * x-dnd.el: Mention support for Motif in commentary.
5843 (x-dnd-handle-drag-n-drop-event): Ditto.
5844
5845 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5846
5847 * ses.el: Use "ses--" prefixes for buffer-local variables.
5848 Use (point-min) instead of 1, even when we know the buffer
5849 is unnarrowed.
5850 (ses-build-load-map): Delete. Distribute its content to defconst's for
5851 the three maps.
5852 (ses-menu, ses-header-line-menu): New menus.
5853 (ses-mode-map): Use them.
5854 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
5855
5856 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
5857
5858 * Makefile.in: Fix the CC Mode recompile kludge so it works
5859 when building in a different directory.
5860
5861 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
5862
5863 * simple.el (kill-new): Put yank-handler property on the entire string.
5864
5865 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5866
5867 * diff.el: Don't use compile any more, use diff-mode instead.
5868 (diff-regexp-alist, diff-old-file, diff-new-file)
5869 (diff-parse-differences, diff-process-setup): Remove.
5870 (diff-sentinel): New fun.
5871 (diff): Use it. Run the process ourselves.
5872 Use diff-mode for the rest of the processing.
5873
5874 * diff.el (diff): Simplify code handling `switch'.
5875
5876 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5877
5878 * pcvs-defs.el (cvs-menu): Add `tag'.
5879
5880 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
5881
5882 * simple.el (kill-append): Doc fix.
5883
5884 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5885 Adapt outline-regexp to the new conventions for commenting out code.
5886
5887 2004-02-11 John Paul Wallington <jpw@gnu.org>
5888
5889 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
5890
5891 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
5892
5893 * diff.el (diff-switches): New fun.
5894 (diff, diff-backup): Use it.
5895 (diff): Clean up the args construction. Use backquote.
5896 Use listp instead of consp to avoid putting a nil arg.
5897 (diff): Add a revert-buffer function.
5898
5899 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5900
5901 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
5902 handled by x-dnd-handle-file-name.
5903 (x-dnd-known-types): Add COMPOUND_TEXT.
5904 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
5905 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
5906 x-dnd-empty-state.
5907 (x-dnd-forget-drop): Ditto.
5908 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
5909 (x-dnd-handle-one-url): Return private when inserting text.
5910 (x-dnd-insert-ctext): New function.
5911 (x-dnd-handle-file-name): New function for FILE_NAME.
5912 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
5913 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
5914 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
5915
5916 2004-02-10 Kenichi Handa <handa@m17n.org>
5917
5918 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
5919 instead of while loop.
5920
5921 2004-02-10 Miles Bader <miles@gnu.org>
5922
5923 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
5924
5925 2004-02-09 Kenichi Handa <handa@m17n.org>
5926
5927 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
5928 have end-of-line.
5929
5930 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
5931
5932 * Makefile.in: Added extra dependencies in the recompile target
5933 needed to cope with the compile time macro expansions in CC Mode.
5934
5935 2004-02-09 Kim F. Storm <storm@cua.dk>
5936
5937 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
5938 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
5939 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
5940 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
5941 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
5942 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
5943 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
5944 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
5945 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
5946 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
5947 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
5948
5949 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
5950
5951 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
5952 Don't allow shrink if there's a window on our right.
5953
5954 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
5955 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
5956 Bring together declaration and initialization.
5957 (prolog-mode-variables): Don't set the syntax table.
5958 Don't set paragraph-start and comment-indent-function.
5959 Add /*..*/ to the comment regexps.
5960 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
5961 (prolog-mode-map): Don't bind TAB.
5962 (prolog-mode): Set the syntax table.
5963 (prolog-comment-indent): Remove.
5964 (inferior-prolog-mode-map): Initialize in the declaration.
5965 (inferior-prolog-mode-syntax-table)
5966 (inferior-prolog-mode-abbrev-table): New vars.
5967 (inferior-prolog-mode): Derive from comint-mode.
5968 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
5969 minibuffer windows.
5970
5971 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
5972 in file names, as long as it is unabmiguous.
5973
5974 2004-02-08 Andreas Schwab <schwab@suse.de>
5975
5976 * textmodes/reftex-toc.el
5977 (reftex-toc-load-all-files-for-promotion): Remove useless use of
5978 format. Doc fix.
5979
5980 * textmodes/refer.el (refer-find-entry-internal): Remove extra
5981 format string arguments.
5982
5983 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
5984 string argument.
5985
5986 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
5987
5988 * play/zone.el (zone-call): Fix format string.
5989
5990 * net/webjump.el (webjump-builtin): Add missing format string argument.
5991
5992 * midnight.el (midnight-delay-set): Remove extra format string argument.
5993
5994 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
5995
5996 * hexl.el (hexl-insert-char): Add missing format string argument.
5997
5998 * format.el (format-decode): Fix format string.
5999
6000 * emulation/vi.el (vi-mode): Remove extra format string argument.
6001 (vi-repeat-last-search): Likewise.
6002 (vi-reverse-last-search): Likewise.
6003 (vi-goto-mark): Likewise.
6004 (vi-reverse-last-find-char): Likewise.
6005 (vi-repeat-last-find-char): Likewise.
6006 (vi-locate-def): Likewise.
6007
6008 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
6009
6010 * ediff-util.el (ediff-toggle-read-only): Remove extra format
6011 string argument.
6012 (ediff-toggle-regexp-match): Likewise.
6013
6014 * dired-aux.el (dired-do-query-replace-regexp): Add missing
6015 format string argument.
6016
6017 * calc/calc-map.el (calc-get-operator): Remove extra format
6018 string argument.
6019
6020 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
6021
6022 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
6023 string argument.
6024
6025 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
6026
6027 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
6028
6029 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
6030
6031 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
6032 (cl-struct-setf-expander): Likewise.
6033
6034 * vc.el (with-vc-file): Fix unsafe uses of error.
6035 (vc-cancel-version): Likewise.
6036
6037 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
6038
6039 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
6040 thousands separator; fixes <class>:<line-number> regexp for
6041 non-english locales.
6042
6043 2004-02-08 Andreas Schwab <schwab@suse.de>
6044
6045 * view.el (view-mode-enable): Revert previous change.
6046
6047 2004-02-07 Kim F. Storm <storm@cua.dk>
6048
6049 * simple.el (line-number-at-pos): Rename from line-at-pos.
6050 Uses changed (what-line and vc-annotate-warp-version).
6051
6052 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6053
6054 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
6055 (diff-mode): Remove aborted attempt at support for compile.el.
6056 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
6057
6058 2004-02-06 Andreas Schwab <schwab@suse.de>
6059
6060 * view.el (view-mode-enable): Add view-mode-map to
6061 minor-mode-overriding-map-alist.
6062
6063 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6064
6065 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
6066
6067 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
6070 with point inside rather than after the paragraph.
6071
6072 2004-02-04 Sam Steingold <sds@gnu.org>
6073
6074 * mail/smtpmail.el (smtpmail-try-auth-methods):
6075 Do not try authentication when no mechanism is available.
6076 Pass port-name as defaultport to `netrc-machine'.
6077
6078 2004-02-04 Stephen Eglen <stephen@gnu.org>
6079
6080 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
6081 to show how minibuffer height can be constrained.
6082
6083 2004-02-04 John Paul Wallington <jpw@gnu.org>
6084
6085 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
6086
6087 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6088
6089 * x-dnd.el: New file for drag and drop.
6090
6091 * term/x-win.el: require x-dnd, set after-make-frame-functions
6092 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
6093 drag-n-drop event.
6094
6095 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
6096 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
6097 (dired-dnd-handle-file): New functions for drag and drop support.
6098 (dired-mode): Initialize drag and drop if x-dnd present.
6099
6100 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
6101
6102 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
6103 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
6104 (cperl-mode): Set fill-paragraph-function.
6105 (cperl-fill-paragraph): Make it non-interactive.
6106
6107 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
6108
6109 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
6110
6111 2004-02-02 David Kastrup <dak@gnu.org>
6112
6113 * replace.el (perform-replace): Allow 'literal argument in
6114 regexp-flag to indicate literal replacement.
6115 (query-replace-regexp-eval): Use it.
6116
6117 2004-02-01 Andreas Schwab <schwab@suse.de>
6118
6119 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
6120
6121 2004-02-01 Stephen Eglen <stephen@gnu.org>
6122
6123 * info-look.el: Add support for maxima-mode. Update commentary
6124 because info-lookup-symbol is now bound to C-h S.
6125
6126 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
6127
6128 * simple.el (edit-and-eval-command): Bind print-level and
6129 minibuffer-history-sexp-flag around call to read-from-minibuffer.
6130 Correct initial position in command-history.
6131
6132 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
6133
6134 * files.el (read-directory-name): Adapt the docstring to recent
6135 change in Fread_file_name.
6136
6137 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
6138
6139 * ses.el (ses-print-cell): If print format too wide for column
6140 width, truncate decimal places if that helps to avoid "#####" fill.
6141 * ses.el (ses-initial-column-width): Revert previous change.
6142
6143 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
6144
6145 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
6146 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
6147 Add edebug info.
6148 (jit-lock-mode): Setup/cancel the new timer.
6149 (jit-lock-context-fontify): New fun. Extracted from
6150 context fontification code of jit-lock-stealth-fontify.
6151 (jit-lock-stealth-fontify): Don't do context fontification any more.
6152
6153 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
6154 (jit-lock-fontify-now): Handle the `quit' case.
6155 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
6156
6157 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
6158
6159 * progmodes/executable.el (executable-command-find-posix-p):
6160 New. Check if find handles arguments Posix-style.
6161
6162 * progmodes/grep.el (grep-compute-defaults):
6163 Use executable-command-find-posix-p.
6164 (grep-find): Check `grep-find-command'.
6165
6166 * filecache.el (file-cache-find-posix-p): Delete.
6167 (file-cache-add-directory-using-find):
6168 Use `executable-command-find-posix-p'.
6169
6170 2004-01-29 Dave Love <fx@gnu.org>
6171
6172 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
6173 Iterate the hook function if arg is given.
6174 (mark-defun, narrow-to-defun): Change order of finding the limits.
6175
6176 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
6177 (byte-compile-format-warn): New.
6178 (byte-compile-callargs-warn): Use it.
6179 (Format, message, error): Add byte-compile-format-like property.
6180 (byte-compile-maybe-guarded): New.
6181 (byte-compile-if, byte-compile-cond): Use it.
6182 (byte-compile-lambda): Compile interactive forms,
6183 just to make warnings about them.
6184
6185 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
6186
6187 * ses.el (ses-initial-column-width): Increase to 14, so it will
6188 work well with the default printer of "%.7g" for extreme values
6189 like "-1.234567e+07".
6190
6191 2004-01-29 Kenichi Handa <handa@m17n.org>
6192
6193 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
6194
6195 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
6196
6197 * dos-w32.el: Added support for the `default-printer-name' function.
6198
6199 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
6200
6201 * server.el (server-socket-name): Don't use the hostname in the
6202 socket name since /tmp is local to the host anyway.
6203
6204 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
6205 robust check of widening and fix var-naming.
6206
6207 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
6208
6209 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
6210 or rmail-spam- to rsf- in all function and variable names.
6211 (rsf-min-region-to-spam-list): New variable.
6212 (rsf-bbdb-auto-delete-spam-entries): Rename from
6213 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
6214 scanned together with the recipients field for spam testing; Don't
6215 delete spam message if rmail-delete-after-output is non-nil;
6216 (rsf-check-field): New function, extracted from code in
6217 rmail-spam-filter to ease addition of header fields like
6218 content-type:;
6219 (message-content-type): New variable. The content-type: field was
6220 added also in defcustom of rsf-definitions-alist;
6221 (rmail-spam-filter): Replace repeated test code for header fields
6222 by calls to check-field; change the call to
6223 rmail-output-to-rmail-file such that rmail-current-message stays
6224 the same to avoid wrong deletion of unseen flags.
6225 (rmail-use-spam-filter): Add autoload cookie.
6226
6227 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
6228
6229 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
6230 (file-cache-add-directory-using-find): Add Cygwin support.
6231 (file-cache-find-command-posix-flag): New user variable.
6232
6233 * filecache.el (file-cache-add-directory): Check for
6234 directories an remove them from dir-files.
6235
6236 2004-01-27 Richard M. Stallman <rms@gnu.org>
6237
6238 * man.el (Man-fontify-manpage): Clean up message.
6239
6240 2004-01-27 Kenichi Handa <handa@m17n.org>
6241
6242 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
6243 (sentence-end): Define using sentence-end-without-space.
6244
6245 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
6246 a sentence ends with one of a character in sentence-end-without-space.
6247
6248 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
6249
6250 * font-lock.el (font-lock): Add jit-lock as explicit group member.
6251 (jit-lock): Group declaration moved to jit-lock.el.
6252 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
6253 when necessary.
6254
6255 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
6256 (jit-lock-context-unfontify-pos): Rename from
6257 jit-lock-first-unfontify-pos.
6258 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
6259
6260 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
6261
6262 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
6263 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
6264 (fortran-fill): When filling a string, adjust re-search-backward
6265 argument for special case of string just on fill-column.
6266 When filling non-string, allow one extra char if
6267 fortran-break-before-delimiters is non-nil.
6268 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
6269 Use fortran-break-delimiters-re and fortran-no-break-re to
6270 correctly handle cases such as "**".
6271
6272 * progmodes/f90.el (f90-break-delimiters): Doc fix.
6273 (f90-no-break-re): Add some extra tokens. Doc fix.
6274
6275 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
6276
6277 * mail/rmail-spam-filter.el:
6278 Use two semicolons as Commentary line prefix.
6279 Add ";;; Code:" stylized comment.
6280 Delete end-of-line whitespace.
6281 Wrap (require 'cl) with `eval-when-compile'.
6282
6283 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
6284
6285 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
6286 at the top level of vc.el.
6287
6288 2004-01-23 Andre Spiegel <spiegel@gnu.org>
6289
6290 * vc.el (vc-current-line): Function removed. This is now done by
6291 the new function line-at-pos in simple.el.
6292 (vc-annotate-warp-version): Use line-at-pos instead of
6293 vc-current-line.
6294
6295 2004-01-22 Kim F. Storm <storm@cua.dk>
6296
6297 * simple.el (line-at-pos): New defun.
6298 (what-line): Use it. Optimize by only counting lines in narrowed
6299 region once.
6300
6301 2004-01-22 Kenichi Handa <handa@m17n.org>
6302
6303 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
6304 point (register r1) only for charset mule-unicode-0100-24ff.
6305
6306 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
6307
6308 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
6309 trailing white space and ensure a final newline.
6310
6311 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
6312 Add autoload cookie.
6313
6314 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
6315
6316 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
6317 activate view-mode explicitly.
6318
6319 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6320
6321 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
6322 use clipboard first.
6323
6324 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
6325
6326 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
6327 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
6328 (vc-mcvs-cvs): Remove.
6329 (vc-mcvs-command): Remove use of assert.
6330
6331 * outline.el (outline-insert-heading): Tighten up match.
6332 (outline-demote, outline-move-subtree-down): Don't assume anything
6333 about outline-regexp.
6334
6335 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
6336 (texinfo-show-structure): Explicitly add ^, and simplify.
6337
6338 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
6339
6340 * calendar/appt.el (appt-check): Restore usage of
6341 appt-issue-message deleted in previous change.
6342 (top-level): Activate package when loaded (needed for backwards
6343 compatibility).
6344
6345 2004-01-20 Jesper Harder <harder@ifa.au.dk>
6346
6347 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
6348 following previous change to smtpmail-send-data.
6349
6350 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
6351
6352 * vc.el (vc-default-previous-version): Doc enhancement.
6353 (vc-default-next-version): New function.
6354 (vc-print-log): New arg FOCUS-REV.
6355 (vc-annotate-mode): Derive from view-mode.
6356 (vc-annotate): New args REVISION, DISPLAY-MODE.
6357 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
6358 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
6359 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
6360 (vc-annotate-show-diff-revision-at-line, vc-current-line)
6361 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
6362
6363 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
6364
6365 2004-01-19 Karl Berry <karl@gnu.org>
6366
6367 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
6368 or "TexInfo".
6369
6370 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
6371
6372 * subr.el (delete-dups): New function.
6373
6374 2004-01-19 Karl Berry <karl@gnu.org>
6375
6376 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
6377 with ^, since that's what texinfo-show-structure
6378 documentation says (plus it works much better in texinfo.txi).
6379
6380 2004-01-18 Jesper Harder <harder@ifa.au.dk>
6381
6382 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
6383
6384 2004-01-18 David Ponce <david@dponce.com> (tiny change)
6385
6386 * progmodes/which-func.el (which-function-mode): Don't cancel
6387 which-func-update-timer if not set.
6388
6389 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
6390
6391 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
6392 Remove spurious left square bracket in XX:XXam regexp.
6393
6394 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
6395
6396 * progmodes/cc-defs.el: Do not require cl at run time.
6397
6398 2004-01-16 Richard M. Stallman <rms@gnu.org>
6399
6400 * emacs-lisp/cl.el (cl-cannot-unload): New function.
6401 (cl-unload-hook): Defvar this to run cl-cannot-unload.
6402
6403 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
6404 Call rmail-spam-filter. Delete and expunge spam.
6405 Print number of spam messages deleted.
6406 Save and restore the deletion status of old messages when reading
6407 new mail with spam filter, so that expunging spam does not expunge
6408 msgs deleted by the user.
6409 (rmail-only-expunge): Add an optional argument dont-show to
6410 prevent showing message after expunge.
6411
6412 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
6413
6414 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
6415 * subr.el (declare): New macro.
6416
6417 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
6418
6419 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
6420
6421 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6422
6423 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6424 Test window-system rather than system-type (for X11/Mac).
6425
6426 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
6427
6428 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
6429
6430 2004-01-12 Richard M. Stallman <rms@gnu.org>
6431
6432 * mail/rmail.el (rmail-convert-to-babyl-format):
6433 Use mail-unquote-printable-region.
6434 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
6435 (rmail-hex-char-to-integer): Functions deleted.
6436
6437 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
6438 (mail-unquote-printable-region): New arg NOERROR.
6439 For invalid encoding, either signal an error to just return nil.
6440
6441 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
6442
6443 * calendar/appt.el: Update copyright and commentary.
6444 (appt-issue-message): Make obsolete.
6445 (appt-visible, appt-msg-window): Make obsolete, in favour of
6446 appt-display-format.
6447 (appt-display-mode-line, appt-display-duration)
6448 (appt-display-diary, appt-time-msg-list, appt-mode-string)
6449 (appt-prev-comp-time, appt-display-count, appt-timer)
6450 (appt-convert-time): Doc change.
6451 (appt-disp-window-function, appt-delete-window-function):
6452 Use defcustom rather than defvar.
6453 (appt-display-format): New variable.
6454 (appt-display-message): New function with display code from appt-check.
6455 (appt-check): Add optional FORCE argument. Doc change.
6456 Add appt-make-list to diary-hook if displaying diary.
6457 Remove checking of view-diary-entries-initially.
6458 Message display section removed to new function appt-display-message.
6459 (appt-display-window): Doc change. Remove unused internal var
6460 this-buffer. Do not beep, since appt-display-message does that.
6461 (appt-make-list): Doc change. Use caar.
6462 (appt-sort-list): Simplify by using builtin sort function.
6463 (appt-update-list): New function for updating appts when diary is
6464 saved.
6465 (appt-activate): New autoloaded function to toggle package
6466 functionality.
6467
6468 * calendar/cal-x.el: (calendar-one-frame-setup)
6469 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
6470
6471 * calendar/calendar.el: Update copyright.
6472 (view-diary-entries-initially, european-calendar-style): Doc change.
6473 (calendar-setup): Make defcustom rather than defvar.
6474 (mark-visible-calendar-date): Initialize temp-face and faceinfo
6475 in let binding so local to function.
6476
6477 * calendar/diary-lib.el: Update copyright.
6478 (diary, diary-entry-time): Doc change.
6479 (list-diary-entries): Doc change. Trivial logic change.
6480 (fancy-diary-display): Restore make-face command mistakenly
6481 deleted 2003-05-08.
6482 (show-all-diary-entries): Allow to pop-up frame if needed.
6483
6484 2004-01-09 John Paul Wallington <jpw@gnu.org>
6485
6486 * bindings.el (mode-line-change-eol): Add EVENT parameter.
6487 Temporarily select EVENT's window for changing eol type.
6488
6489 2004-01-09 Deepak Goel <deego@gnufans.org>
6490
6491 * calendar/diary-lib.el (diary-entry-time):
6492 Also accept time in the form XX[.XX][am/pm/AM/PM].
6493 (fancy-diary-font-lock-keywords): Likewise.
6494 (diary-font-lock-keywords): Likewise.
6495 * calendar/appt.el (appt-add): Likewise.
6496 (appt-make-list): Likewise.
6497 (appt-convert-time): Likewise.
6498
6499 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
6500
6501 * gdb-ui.el (gdb-ann3): Revert previous change.
6502 (gdb-source-info): Allow for case of where compilation directory
6503 is not recorded.
6504
6505 2004-01-08 John Paul Wallington <jpw@gnu.org>
6506
6507 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
6508
6509 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
6510
6511 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
6512
6513 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
6514 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
6515 problems.
6516 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
6517
6518 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
6519
6520 * files.el (write-file-functions, write-contents-functions):
6521 Clarify docstrings.
6522
6523 2004-01-07 Kenichi Handa <handa@m17n.org>
6524
6525 * international/mule.el (set-auto-coding): Fix for the case that
6526 end-of-line is only CR.
6527
6528 2004-01-07 Kim F. Storm <storm@cua.dk>
6529
6530 * subr.el (event-start, event-end): Doc fix.
6531 (posn-string, posn-image): New defuns.
6532 (posn-object): Return either image or string object.
6533 (posn-object-x-y): Return 8th element of position.
6534 (posn-object-width-height): New defun.
6535
6536 2004-01-06 Andreas Schwab <schwab@suse.de>
6537
6538 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
6539 output.
6540
6541 2004-01-05 Karl Berry <karl@gnu.org>
6542
6543 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
6544 / and *, too.
6545
6546 2003-12-31 Simon Josefsson <jas@extundo.com>
6547
6548 * files.el (before-save-hook): Add.
6549 (basic-save-buffer): Use before-save-hook.
6550
6551 * emacs-lisp/copyright.el: Fix comment to recommend
6552 before-save-hook instead of write-file-functions.
6553
6554 2004-01-05 Richard M. Stallman <rms@gnu.org>
6555
6556 * finder.el (finder-commentary): Call delete-other-windows.
6557
6558 * net/ange-ftp.el (ange-ftp-file-attributes):
6559 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
6560
6561 2004-01-04 Karl Berry <karl@gnu.org>
6562
6563 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
6564 comment characters % and # in the copyright year notice,
6565 as well as ;.
6566
6567 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
6568
6569 * wid-edit.el (default): Define dummy :value-delete.
6570 Reported by Jesper Harder <harder@ifa.au.dk>.
6571
6572 2004-01-03 Richard M. Stallman <rms@gnu.org>
6573
6574 * progmodes/compile.el (compile-internal): Use point, not point-min,
6575 for set-window-point.
6576
6577 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
6578
6579 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
6580
6581 * progmodes/grep.el (grep-mode-map):
6582 Don't remap next-line, previous-line.
6583
6584 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
6585
6586 * speedbar.el (speedbar-edit-line): Change regexp to position
6587 the cursor on the first character of this line's button.
6588
6589 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6590
6591 * subr.el (functionp): Doc fix.
6592
6593 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
6594
6595 * progmodes/idlwave.el (idlwave-make-tags):
6596 * textmodes/flyspell.el (flyspell-large-region):.
6597 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
6598 * emulation/viper-util.el (viper-glob-unix-files):
6599 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
6600 * man.el (Man-init-defvars):
6601 * jka-compr.el (jka-compr-call-process):
6602 * files.el (get-free-disk-space,insert-directory):
6603 * ediff-ptch.el (ediff-test-patch-utility):
6604 * ediff-diff.el (ediff-test-utility):
6605 * dired-aux.el (dired-check-process):
6606 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
6607 test the return value of call-process, because it can be a string.
6608
6609 2003-12-31 John Paul Wallington <jpw@gnu.org>
6610
6611 * bindings.el (completion-ignored-extensions): Add .pfsl.
6612
6613 2003-12-31 Kim F. Storm <storm@cua.dk>
6614
6615 * ido.el (ido-nonreadable-directory-p): New defun to check for
6616 nonreadable directory without activating tramp (to avoid problems
6617 with checking incomplete tramp paths).
6618 (ido-set-current-directory, ido-file-internal)
6619 (ido-file-name-all-completions1): Use it.
6620
6621 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6622
6623 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
6624 documentation if the anchor (or node) name is preceded by `info
6625 anchor' or `Info anchor' in addition to earlier `info node' and
6626 `Info node'.
6627 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
6628
6629 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6630
6631 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
6632 error in arguments to base64-decode-region. Remove ^M characters
6633 after decoding base64.
6634
6635 2003-12-30 Simon Josefsson <jas@extundo.com>
6636
6637 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
6638 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
6639 have only been distributed with Emacs for some years.
6640 (texinfo-mode-hook): Customize.
6641
6642 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6643
6644 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
6645 cleaner (suggested by Richard Stallman).
6646
6647 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
6648 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
6649 file-name clashes on 8+3 DOS filesystems.
6650
6651 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
6652 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
6653 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
6654 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
6655 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
6656 file-name clashes on 8+3 filesystems.
6657
6658 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
6659 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
6660 file-name clashes on 8+3 DOS filesystems.
6661
6662 2003-12-29 Richard M. Stallman <rms@gnu.org>
6663
6664 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
6665 Upcase the character.
6666
6667 * textmodes/flyspell.el (mail-mode-flyspell-verify):
6668 Search for header separator alone on a line, literally,
6669 and search for it backward, not forward.
6670 (flyspell-abbrev-table): Always use global-abbrev-table
6671 if there is no local one.
6672
6673 * progmodes/sh-script.el (sh-get-indent-info):
6674 Don't move point back if at bob.
6675
6676 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
6677
6678 * play/handwrite.el (handwrite): Make the handwrite credit message
6679 a comment rather than an output command.
6680
6681 * obsolete/sc.el: Display message that this file is obsolete.
6682
6683 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
6684
6685 * mail/rfc822.el (rfc822-address-start): Declare variable.
6686 Renamed from address-start. All uses changed.
6687
6688 * term.el (term-exec): Set up sentinel.
6689 (term-sentinel): New function.
6690 (term-handle-exit): New function.
6691
6692 * subr.el (assoc-ignore-case, assoc-ignore-representation):
6693 Use assoc-string, and mark them obsolete.
6694 (delay-mode-hooks): Mark as permanent local.
6695
6696 * simple.el (sendmail-user-agent-compose): Use assoc-string.
6697
6698 * register.el (copy-rectangle-to-register): Doc fix.
6699
6700 * info.el (Info-insert-dir): Use assoc-string.
6701
6702 * info-look.el (info-lookup): Use assoc-string.
6703
6704 * frame.el (pop-up-frame-function): Use quote, not `function'.
6705 (frame-notice-user-settings): Calculate ADJUSTED-TOP
6706 copying with lists as coordinate values.
6707
6708 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
6709
6710 * find-dired.el (kill-find): New command.
6711 (find-dired): Make buffer read-only.
6712 Set up a keymap with C-c C-k running kill-find.
6713 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
6714
6715 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
6716
6717 * filecache.el (file-cache-ignore-case): New variable.
6718 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
6719
6720 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
6721 (comint-dynamic-complete-as-filename): Rename local vars.
6722 (comint-dynamic-list-filename-completions): Likewise.
6723
6724 * comint.el (comint-dynamic-list-completions-config): New var.
6725 (comint-dynamic-list-completions): Handle both SPC and TAB right.
6726
6727 * comint.el (comint-file-name-chars): Add [].
6728 (comint-word): Use skip-chars-backward, not search.
6729
6730 * shell.el (shell-file-name-chars): Add [].
6731
6732 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
6733
6734 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
6735
6736 * generic.el (define-generic-mode): Doc fix.
6737
6738 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6739
6740 * files.el (kill-some-buffers): Doc fix.
6741
6742 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
6743
6744 * comint.el (comint-watch-for-password-prompt): Pass `string' as
6745 arg to send-invisible
6746 (send-invisible): Doc fix. The argument is now a prompt, not the
6747 string to send.
6748 (comint-read-noecho): Doc fix.
6749
6750 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
6751
6752 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
6753 "@", as required by some ISP hosting service. Fix defcustom
6754 argument syntax errors that prevented use of customization.
6755
6756 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6757
6758 * xml.el (xml-get-attribute-or-nil): Doc fix.
6759
6760 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
6761
6762 * net/zone-mode.el (zone-mode): Use write-file-functions, not
6763 write-file-hooks.
6764
6765 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
6766
6767 * autorevert.el (auto-revert-interval): Doc fix.
6768
6769 2003-12-29 Mark A. Hershberger <mah@everybody.org>
6770
6771 * xml.el (xml-get-attribute-or-nil): New function, like
6772 xml-get-attribute, but returns nil if the attribute was not found.
6773 (xml-get-attribute): Convert to defsubst, uses
6774 xml-get-attribute-or-nil.
6775
6776 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6777
6778 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
6779
6780 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
6781
6782 * custom.el (custom-declare-theme): Use `value' when putting
6783 properties on `theme'.
6784
6785 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
6786
6787 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
6788 for each yank-handler segment.
6789 (insert-for-yank-1): New function, with the body of the previous
6790 insert-for-yank.
6791
6792 * textmodes/table.el (table-yank-handler): New defcustom.
6793 (table--put-cell-indicator-property): Put yank-handler property
6794 that indicates the yank handler for the table cell.
6795
6796 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
6797
6798 * generic-x.el (etc-modules-conf-generic-mode): A more complete
6799 set of keywords.
6800
6801 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6802
6803 * international/mule-cmds.el (reset-language-environment)
6804 (set-language-environment): Don't invoke fontset-related functions
6805 if fontset-list is not fboundp.
6806
6807 2003-12-29 Kenichi Handa <handa@m17n.org>
6808
6809 * international/mule-cmds.el (reset-language-environment):
6810 Call set-overriding-fontspec-internal with nil.
6811 (set-language-environment): Call set-overriding-fontspec-internal
6812 if the language environment specify `overriding-fontspec'.
6813 (language-info-alist): Doc added.
6814
6815 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
6816 characters of mule-unicode-0100-24ff.
6817 (ccl-encode-windows-1251-font): New CCL program.
6818 ("Bulgarian"): Specify overriding-fontspec.
6819 ("Belarusian"): Likewise.
6820
6821 2003-12-28 Sam Steingold <sds@gnu.org>
6822
6823 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
6824 parameter ID-FORMAT to conform with the 2003-11-30 patch.
6825
6826 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
6827
6828 * progmodes/gud.el (gud-gdb-command-name): Set default to
6829 "gdb --annotate=3".
6830 (gud-gdb-marker-filter): Look out for annotations.
6831 (gdb-first-pre-prompt): New variable.
6832 Remove trailing white space.
6833
6834 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
6835 if necessary.
6836 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
6837 annotations are detected.
6838 (gud-gdba-marker-filter): Use global variable gud-marker-acc
6839 instead of a local one to allow transition from
6840 gud-gdb-marker-filter.
6841 Remove trailing white space.
6842
6843 2003-12-27 Kim F. Storm <storm@cua.dk>
6844
6845 * ido.el: Handle non-readable directories.
6846 (ido-decorations): Add 9th element for non-readable directory.
6847 (ido-directory-nonreadable): New dynamic var.
6848 (ido-set-current-directory): Set it.
6849 (ido-read-buffer, ido-file-internal):
6850 (ido-read-file-name, ido-read-directory-name): Let-bind it.
6851 (ido-file-name-all-completions1): Return empty list for
6852 non-readable directory.
6853 (ido-exhibit): Print [Not readable] if directory is not readable.
6854 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
6855 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
6856 Use it.
6857
6858 2003-12-27 Lars Hansen <larsh@math.ku.dk>
6859
6860 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
6861 calls to directory-files-and-attributes and file-attributes.
6862 (ls-lisp-format): Remove system dependent handling of user and
6863 group id's.
6864
6865 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
6866
6867 * ffap.el (ffap-read-file-or-url): Revert previous change.
6868
6869 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
6870
6871 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
6872 new list of included files called `files-with-node-lines', that
6873 only have node lines. This way @include commands can include any
6874 file, such as version and update files without node lines, not
6875 just files that are chapters.
6876
6877 2003-12-25 Andreas Schwab <schwab@suse.de>
6878
6879 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
6880 file not found.
6881
6882 2003-12-08 Miles Bader <miles@gnu.org>
6883
6884 * dired.el (dired-between-files): Always use dired-move-to-filename,
6885 which is more robust in non-english locales.
6886
6887 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
6888
6889 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
6890
6891 2003-12-24 Andreas Schwab <schwab@suse.de>
6892
6893 * shell.el (shell-file-name-quote-list): Add backslash.
6894
6895 * comint.el (comint-quote-filename): Correctly handle backslash
6896 in comint-file-name-quote-list.
6897
6898 2003-12-24 Kenichi Handa <handa@m17n.org>
6899
6900 * international/mule-cmds.el (set-default-coding-systems):
6901 Call ucs-set-table-for-input for all buffers that don't have local
6902 value of buffer-file-coding-system.
6903
6904 * international/ucs-tables.el (ucs-set-table-for-input):
6905 If translation-table-for-encode is a symbol, get its
6906 translation-table property.
6907
6908 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
6909
6910 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
6911 to `completing-read' on a recently fixed bug.
6912
6913 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
6914 instead of SPACE, to get the list of possible fringe modes.
6915 SPACE only works if both `partial-completion-mode' and
6916 `completion-auto-help' are nil.
6917
6918 * complete.el (PC-is-complete-p): Delete.
6919 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
6920 calls to `test-completion'.
6921
6922 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
6923
6924 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
6925 to edit values when there are no children.
6926
6927 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
6928 a mode called "Assembler" already exists.
6929 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
6930 (gud-watch): Use format option. Remove font properties from string.
6931 (gdb-var-create-handler, gdb-var-list-children-handler):
6932 Don't bother about properties as there are none.
6933 (gdb-var-create-handler, gdb-var-list-children-handler)
6934 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
6935 with two arguments.
6936 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
6937 Let speedbar show value changes with a different font.
6938 (gdb-edit-value): New defun.
6939 (gdb-clear-partial-output, gdb-clear-inferior-io)
6940 (def-gdb-auto-update-handler): Use erase-buffer.
6941 (gdb-frame-handler): Display watch expressions in
6942 FUNCTION::VARIABLE format if required.
6943
6944 2003-12-23 John Paul Wallington <jpw@gnu.org>
6945
6946 * info.el (Info-unescape-quotes, Info-split-parameter-string)
6947 (Info-goto-emacs-command-node): Doc fixes.
6948
6949 2003-12-12 Jesper Harder <harder@ifa.au.dk>
6950
6951 * cus-edit.el (custom-add-parent-links): Define "many".
6952
6953 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
6954
6955 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
6956 (widget-child-validate, widget-type-value-create)
6957 (widget-type-default-get, widget-type-match): New functions.
6958 (lazy): New widget.
6959 (menu-choice, checklist, radio-button-choice, editable-list)
6960 (group, documentation-string): Remove redundant (per 2003-10-25
6961 change) calls to `widget-children-value-delete'.
6962 (widget-choice-value-get, widget-choice-value-inline): Remove.
6963 (menu-choice): Update widget.
6964
6965 2003-12-03 Kenichi Handa <handa@m17n.org>
6966
6967 * language/cyrillic.el: Register "microsoft-cp1251" in
6968 ctext-non-standard-encodings-alist.
6969 ("Bulgarian"): Add ctext-non-standard-encodings.
6970 ("Belarusian"): Likewise.
6971
6972 * international/mule-conf.el (compound-text-with-extensions):
6973 Change the type to 2 (iso-2022 base).
6974
6975 * international/mule.el (ctext-non-standard-encodings-alist):
6976 Change the format.
6977 (ctext-non-standard-encodings): New variable.
6978 (ctext-post-read-conversion): Fully re-written.
6979 (ctext-non-standard-designations-alist): Delete it.
6980 (ctext-non-standard-encodings-table): New function.
6981 (ctext-pre-write-conversion): Fully re-written.
6982
6983 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
6984
6985 * cus-edit.el (custom-add-parent-links): Add documentation links
6986 for parent, if the item has none of its own.
6987
6988 2003-11-30 Richard M. Stallman <rms@gnu.org>
6989
6990 * dired-aux.el (dired-do-query-replace-regexp):
6991 Report files visited read-only.
6992
6993 2003-11-30 Juri Linkov <juri@jurta.org>
6994
6995 * dired-aux.el (dired-compare-directories): New command.
6996 (dired-file-set-difference, dired-files-attributes): New functions.
6997
6998 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
6999 Version 2.0.38 of Tramp released.
7000
7001 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
7002 Charles Curley <charlescurley@charlescurley.com>.
7003 (tramp-multi-connection-function-alist): Add ssht entry which adds
7004 "-e none -t -t" to the list of ssh args. Suggested by Adrian
7005 Aichner.
7006 (tramp-get-method-parameter): New function to retrieve a method
7007 parameter. This allows for omission of method parameters.
7008 Callers adjusted.
7009
7010 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
7011
7012 * net/tramp.el: Add new optional parameter ID-FORMAT to
7013 `file-attributes'. Calls of `file-attributes' won't use this
7014 parameter for backward compatibility reasons.
7015 (tramp-perl-file-attributes): Add a new parameter to Perl script
7016 in order to handle uid/gid as strings, if desired.
7017 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
7018 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
7019 order to make the function more general.
7020 (tramp-handle-file-attributes): Replace proprietary optional
7021 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
7022 (tramp-handle-file-attributes-with-perl): Handle parameter
7023 NONNUMERIC if set. This wasn't done in the past.
7024 (tramp-post-connection): Apply second parameter "$2" if
7025 `tramp-remote-perl' is called.
7026
7027 * net/tramp-smb.el (tramp-smb-handle-delete-file):
7028 Correct cut'n'waste error (`filename' instead of `directory').
7029 (tramp-smb-handle-directory-files-and-attributes)
7030 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
7031 introduced parameter ID-FORMAT.
7032 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
7033 error (`directory' instead of `ldir').
7034
7035 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
7036 `file-attributes' has a second parameter. If yes, apply it with
7037 value "'integer". Otherwise, don't use that parameter (default is
7038 integer format).
7039
7040 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
7041
7042 * help.el (help-map): Bind `display-local-help' to `C-h .'.
7043 (help-for-help): Add `C-h .' to the listed Help options.
7044 Remove trailing whitespace.
7045
7046 * help-at-pt.el: New file.
7047
7048 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
7049
7050 * subr.el (noreturn, 1value): New macros for test coverage.
7051 See `testcover.el'.
7052
7053 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
7054
7055 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
7056 for macro `1value'.
7057 (testcover-1value): New function. Checks that a 1value form
7058 actually returns only one value. Requested by RMS.
7059
7060 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
7061
7062 * gdb-ui.el (gud-watch, gdb-var-create-handler)
7063 (gdb-var-list-children, gdb-var-list-children-handler)
7064 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
7065 gdb commands that use mi to keep them out of the command history.
7066
7067 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7068
7069 * cus-start.el (all): Add use-file-dialog.
7070
7071 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
7072
7073 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
7074
7075 2003-11-27 Kim F. Storm <storm@cua.dk>
7076
7077 * subr.el (posn-object-x-y): New defun.
7078
7079 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7080
7081 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
7082 Don't use `space' for \\\n.
7083 Be more selective as to which # are comment-starters.
7084
7085 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
7086
7087 * subr.el (number-sequence): Improve handling of floating point
7088 arguments (suggested by Kim Storm). Allow negative arguments.
7089
7090 2003-11-26 Kenichi Handa <handa@m17n.org>
7091
7092 * international/mule-cmds.el (standard-display-european-internal):
7093 Cancel the standard-display-table setting for ` and '.
7094
7095 2003-11-26 Kim F. Storm <storm@cua.dk>
7096
7097 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
7098 New defcustoms to add ffap-like functionality to ido.
7099 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
7100 (ido-no-final-slash): New defun.
7101 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
7102 (ido-read-file-name): ): Toggle VC checking via
7103 vc-handled-backends instead of vc-master-templates.
7104 (ido-file-internal): Handle ido-use-url-at-point and
7105 ido-use-filename-at-point via code borrowed from ffap-guesser.
7106 Handle new ido-exit code ffap.
7107 (ido-sort-list): Ignore final slash when sorting file names.
7108
7109 2003-11-25 Kim F. Storm <storm@cua.dk>
7110
7111 * emulation/cua-base.el (cua--standard-movement-commands):
7112 Add forward-sentence and backward-sentence.
7113
7114 2003-11-25 Stephen Eglen <stephen@gnu.org>
7115
7116 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
7117 iswitchb-exit is set to 'usefirst when user selects buffer at head
7118 of list using RET. (Selecting buffers at the head of the list was
7119 broken if the substring was also a complete buffername.)
7120
7121 2003-11-23 Kim F. Storm <storm@cua.dk>
7122
7123 * progmodes/compile.el (grep-command, grep-use-null-device)
7124 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
7125 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
7126 (grep-regexp-alist, grep-program, find-program)
7127 (grep-find-use-xargs, grep-history, grep-find-history)
7128 (grep-process-setup, grep-compute-defaults)
7129 (grep-default-command, grep, grep-tag-default, grep-find)
7130 (grep-expand-command-macros, grep-tree-last-regexp)
7131 (grep-tree-last-files, grep-tree): Move grep variables, functions
7132 and commands to new file grep.el.
7133 (compilation-mode-map): Remove grep commands from Compile sub-menu.
7134 (compilation-process-setup-function): Doc fix.
7135 (compilation-highlight-regexp, compilation-highlight-overlay): New
7136 defvars used for highlighting current compile error in source buffer.
7137 (compile-internal): New optional args HIGHLIGHT-REGEXP and
7138 LOCAL-MAP which overrides compilation-highlight-regexp and
7139 compilation-mode-map for this compilation.
7140 Delay calling compilation-set-window-height until after running
7141 compilation-process-setup-function so it can buffer-local override
7142 compilation-window-height.
7143 Check buffer-local value of compilation-scroll-output.
7144 (compilation-set-window-height): Use buffer-local value of
7145 compilation-window-height.
7146 (compilation-revert-buffer): Don't pass (undefined)
7147 preserve-modes arg to revert-buffer.
7148 (next-error-no-select, previous-error-no-select): New commands.
7149 (compilation-goto-locus): Temporarily highlight current match in
7150 source buffer using compilation-highlight-regexp.
7151
7152 * progmodes/grep.el: New file with grep code from compile.el.
7153 (grep): New defcustom group.
7154 (grep-window-height): New defcustom, like compilation-window-height.
7155 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
7156 (grep-scroll-output): New defcustom, like compilation-scroll-output.
7157 (grep-command, grep-use-null-device, grep-find-command)
7158 (grep-tree-files-aliases, grep-tree-ignore-case)
7159 (grep-tree-ignore-CVS-directories): Move to grep custom group.
7160 (grep-setup-hook): New hook variable.
7161 (grep-mode-map): New keymap for grep commands. Add Grep menu.
7162 (grep-last-buffer): New defvar, override compilation-last-buffer.
7163 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
7164 Call compile-internal with args highlight-regexp and grep-mode-map.
7165
7166 2003-11-23 Kim F. Storm <storm@cua.dk>
7167
7168 * subr.el (event-start, event-end): Doc fix.
7169 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
7170 (posn-area, posn-actual-col-row, posn-object): New defuns.
7171 (posn-col-row): Simplify doc. Rewrite to use cond.
7172 (posn-point): Also return buffer position for events outside text
7173 area (that info is now present in the event position).
7174
7175 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
7176 mouse-set-point so that hscroll still works now that clicks on
7177 fringes generate specific mouse events.
7178 (mouse-set-point): Note that it now works in fringes and margins
7179 too due to new semantics of posn-point in fringes and margins.
7180
7181 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
7182 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
7183
7184 2003-11-20 Kim F. Storm <storm@cua.dk>
7185
7186 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
7187 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
7188 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
7189 to 100 for icons to avoid increasing line height when shown.
7190
7191 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7192
7193 * newcomment.el (comment-normalize-vars): Initialize properly if
7194 comment-start was nil.
7195
7196 2003-11-19 Andreas Schwab <schwab@suse.de>
7197
7198 * simple.el (set-variable): Fix indentation.
7199
7200 2003-11-17 Kenichi Handa <handa@m17n.org>
7201
7202 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
7203 Fix docstring.
7204
7205 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7206
7207 * international/latin1-disp.el (latin1-display): Fix docstring.
7208
7209 2003-11-16 John Wiegley <johnw@newartisans.com>
7210
7211 * eshell/em-ls.el (eshell-ls-file): There are times with
7212 size-width is nil and uncomputed (when directories are created in
7213 dired, for example); in this case, 4 is reasonable default value,
7214 although it may caused skewed new entries (which could be avoided
7215 by returning the original value of 8 in all cases, but 99% of the
7216 time this is a waste of whitespace).
7217
7218 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
7219
7220 * cc-engine.el (c-guess-continued-construct)
7221 (c-guess-basic-syntax): Check a little more carefully if it's a
7222 function declaration when an unknown construct followed by a block
7223 is found inside a statement context. This avoids macros followed
7224 by blocks to be taken as function declarations.
7225
7226 (c-guess-continued-construct): Change the analysis of a statement
7227 continuation with a brace open to `substatement-block', for
7228 consistency with recognized statements.
7229
7230 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
7231 start is in a position so that `c-beginning-of-statement-1' jumped
7232 to the beginning of the same statement.
7233
7234 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
7235 Don't accept binary operators in the arglist if we're in a function
7236 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
7237 template recognition in cases like "if (a < b || c > d)".
7238
7239 (c-restricted-<>-arglists): New more appropriate name for
7240 `c-disallow-comma-in-<>-arglists'.
7241
7242 Accessing functions updated for the variable name change.
7243
7244 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
7245 match data could get clobbered if NOT-INSIDE-TOKEN is used.
7246
7247 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
7248 labels.
7249
7250 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
7251 instead of duplicating parts of it. This fixes bogus label
7252 recognition.
7253
7254 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
7255 of checking the context in which to apply the minimum indentation,
7256 so that it isn't enforced in e.g. namespace blocks.
7257
7258 * cc-vars.el (c-inside-block-syms): New constant used by
7259 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
7260 to somewhat reduce the risk of becoming stale.
7261
7262 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
7263 cc-cmds to cc-engine to allow use from cc-align.
7264
7265 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
7266 qualified identifiers containing "::".
7267
7268 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
7269 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
7270
7271 * cc-vars.el (c-emacs-features): Use a space in front of the name
7272 of the temporary buffer. That also avoids dumping problems in
7273 XEmacs due to undo info being left around after the buffer is killed.
7274
7275 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
7276 arglist to see if it's a K&R style declaration.
7277
7278 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
7279 before returning `knr-argdecl-intro'.
7280
7281 2003-11-16 John Wiegley <johnw@newartisans.com>
7282
7283 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
7284 field in a long-listing always 8 characters, use `size-width',
7285 which has already been computed.
7286
7287 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
7288
7289 * subr.el (minor-mode-list): Add `hs-minor-mode'.
7290
7291 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7292
7293 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
7294 Support operation while narrowed, with `diff-restrict-view'.
7295
7296 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7297
7298 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7299 Take additional optional arg NARROWFUN. For the generated functions:
7300 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
7301 include frags that arrange to check for and save narrowing state before
7302 the move and then conditionally call NARROWFUN after the move.
7303
7304 2003-11-14 John Wiegley <johnw@newartisans.com>
7305
7306 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
7307 that was optional, but obviously missing based on surrounding code.
7308
7309 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
7310 string arguments to numbers unless the whole argument was seen as
7311 a number.
7312
7313 2003-11-14 Kenichi Handa <handa@m17n.org>
7314
7315 * international/mule.el (ctext-non-standard-encodings-alist):
7316 Fix coding systems.
7317
7318 2003-11-10 Kenichi Handa <handa@m17n.org>
7319
7320 * language/kannada.el ("Kannada"): Add sample-text.
7321
7322 * language/knd-util.el (kannada-compose-region)
7323 (kannada-compose-string, kannada-post-read-conversion):
7324 Add autoload cookie.
7325
7326 * international/quail.el (quail-completion): Change the message
7327 "corresponding translations" to "corresponding characters".
7328
7329 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
7330
7331 * descr-text.el (describe-char): Fix typo.
7332
7333 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
7334
7335 These changes are to support Kannada language/script.
7336
7337 * Makefile.in (DONTCOMPILE): Add kannada.el.
7338
7339 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
7340
7341 * loadup.el: Preload kannada.el.
7342
7343 * language/ind-util.el (ucs-kannada-to-is13194-alist)
7344 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
7345 New variables.
7346
7347 * language/kannada.el: New file.
7348
7349 * language/knd-util.el: New file.
7350
7351 2003-11-07 Andreas Schwab <schwab@suse.de>
7352
7353 * progmodes/autoconf.el (autoconf-font-lock-keywords):
7354 Also highlight AH_*.
7355
7356 * xml.el (xml-parse-dtd): Fix misplaced paren.
7357
7358 2003-11-07 Kenichi Handa <handa@m17n.org>
7359
7360 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
7361
7362 2003-11-05 Juri Linkov <juri@jurta.org>
7363
7364 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
7365 (desktop-buffer-file): Use saved buffer-file-coding-system
7366 for file reading. Set auto-insert to nil to prevent automatic
7367 insertion into restored empty files.
7368
7369 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7370
7371 * files.el (risky-local-variable-p): Make second argument optional.
7372
7373 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7374
7375 * subr.el (add-hook): Fix last change.
7376
7377 2003-11-03 Eli Zaretskii <eliz@gnu.org>
7378
7379 * mail/rmail.el (rmail-convert-to-babyl-format):
7380 If base64-decode-region signals an error, catch it and silently
7381 ignore it.
7382
7383 2003-11-01 Mark A. Hershberger <mah@everybody.org>
7384
7385 * xml.el (xml-parse-region): Allow comments to appear after the
7386 topmost element has closed.
7387 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
7388 (xml-ns-expand-attr): New functions to do namespace handling.
7389 (xml-intern-attrlist): Back-compatible handling of attribute names.
7390 (xml-parse-tag): Move namespace handling to separate functions.
7391 Now produces elements in the form ((:ns . "element") (attr-list)
7392 children) instead of ('ns:element (attr-list) children).
7393 (xml-parse-attlist): Fix attribute parsing.
7394 (xml-parse-dtd): Change parsing so that it produces strings
7395 instead of interned symbols.
7396
7397 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
7398
7399 * dired.el (dired-ls-sorting-switches): Doc fix.
7400
7401 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
7402
7403 * emacs-lisp/rx.el (rx-or): Fix the case of
7404 "(rx (and ?a (or ?b ?c) ?d))".
7405
7406 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
7407
7408 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
7409 (texinfo-format-region): Use it.
7410 (texinfo-format-buffer-1): Ditto.
7411
7412 2003-11-01 Alan Mackenzie <acm@muc.de>
7413
7414 Changes to allow scrolling whilst in isearch mode:
7415 * isearch.el (isearch-unread-key-sequence): New function,
7416 extracted from isearch-other-meta-char.
7417 (top level): (put 'foo 'isearch-scroll) on all Emacs's
7418 "scrollable" standard functions.
7419 (isearch-allow-scroll): New customizable variable.
7420 (isearch-string-out-of-window, isearch-back-into-window)
7421 (isearch-reread-key-sequence-naturally)
7422 (isearch-lookup-scroll-key): New functions.
7423 (isearch-other-meta-char): Doc string and functionality enhanced.
7424 Now accepts a prefix argument.
7425 (isearch-lazy-highlight-window-end): New variable.
7426 (isearch-lazy-highlight-new-loop): Pay attention to the window's
7427 end (thru isearch-lazy-highlight-window-end), not only its start.
7428
7429 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
7430 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
7431 (universal-argument, universal-argument-more, negative-argument)
7432 (digit-argument, universal-argument-other-key): Minor changes.
7433
7434 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7435
7436 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
7437 recursively if the last message is deleted, thus avoiding an
7438 infinite loop.
7439
7440 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7441
7442 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
7443 (tex-main-file): Don't add .tex if the extension is already present.
7444 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
7445
7446 2003-10-29 Lute Kamstra <lute@gnu.org>
7447
7448 * progmodes/octave-inf.el (inferior-octave-prompt):
7449 Recognize version number in prompt.
7450
7451 2003-10-28 Dave Love <fx@gnu.org>
7452
7453 * international/characters.el: Fix some Unicode ranges.
7454
7455 2003-10-28 Kenichi Handa <handa@m17n.org>
7456
7457 * disp-table.el (standard-display-8bit)
7458 (standard-display-default, standard-display-ascii)
7459 (standard-display-g1, standard-display-graphic)
7460 (standard-display-underline): Assure that standard-display-table
7461 is a display table.
7462
7463 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
7464
7465 * simple.el (reindent-then-newline-and-indent): Delete space *after*
7466 reindenting the first line.
7467
7468 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
7469
7470 * wid-edit.el (widget-default-delete): Always delete child widgets.
7471
7472 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7473
7474 * newcomment.el (comment-indent): Don't call indent-according-to-mode
7475 if the line has code.
7476 Don't try to line up with something that's too far left.
7477
7478 * progmodes/octave-mod.el (octave-comment-start): Simplify.
7479 (octave-mode-syntax-table): Add % as a comment starter.
7480 (octave-point): Remove.
7481 (octave-in-comment-p, octave-in-string-p)
7482 (octave-not-in-string-or-comment-p, calculate-octave-indent)
7483 (octave-blink-matching-block-open, octave-auto-fill):
7484 Use line-(beginning|end)-position instead.
7485
7486 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
7487
7488 * emacs-lisp/authors.el (authors-aliases): Add correct realname
7489 for Francesco Potort\e,Al\e(B.
7490
7491 2003-10-23 Dave Love <fx@gnu.org>
7492
7493 * international/mule-cmds.el (locale-charset-to-coding-system):
7494 Don't rely on nil being a coding system.
7495
7496 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
7497 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
7498 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
7499
7500 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
7501
7502 * gdb-ui.el (gdb-current-language): New variable.
7503 (gdb-update-flag): Remove variable.
7504 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
7505 (gdb-take-last-elt): Remove function.
7506 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
7507 (gdb-post-prompt): Check for variable object changes here.
7508
7509 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
7510 object changes in gdb-ui.el.
7511
7512 2003-10-21 Richard M. Stallman <rms@gnu.org>
7513
7514 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
7515
7516 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
7517 Don't check for foo*/ wildcard form here.
7518 (insert-directory): Recognize foo*/ as a wildcard.
7519 Separate wildcard-regexp variable from the arg, wildcard.
7520
7521 * subr.el (add-hook): Correctly detect when make-local-hook was used.
7522 (remove-hook): Correctly handle strange cases about local hooks.
7523
7524 2003-10-21 David Ponce <david@dponce.com>
7525
7526 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
7527 argument REAL, to return a real number instead of a rounded
7528 integer value. Define as inline function.
7529 (ruler-mode-right-fringe-cols): Likewise.
7530 (ruler-mode-scroll-bar-cols): New function.
7531 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
7532 (ruler-mode-right-scroll-bar-cols): Likewise.
7533 (ruler-mode-space): New function.
7534 (ruler-mode-ruler): Use it. Handle variations of fringe style,
7535 scroll bar mode and margins in a more robust way.
7536
7537 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
7538
7539 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
7540 (antlr-c-init-language-vars): New function.
7541 (antlr-mode): Use it with cc-mode before v5.29.
7542 (antlr-c-common-init): Don't set some local vars here.
7543 (antlr-mode): Set them here.
7544 (antlr-c-forward-sws): New function alias.
7545 (antlr-mode): Redefine with cc-mode before v5.30.
7546 (antlr-skip-sexps): Use it.
7547 (antlr-skip-exception-part): Ditto.
7548 (antlr-skip-file-prelude): Ditto.
7549 (antlr-outside-rule-p): Ditto.
7550 (antlr-end-of-body): Ditto.
7551 (antlr-option-kind): Ditto.
7552 (antlr-insert-option-area): Ditto.
7553 (antlr-file-dependencies): Ditto.
7554
7555 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7556
7557 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
7558 Move backward only if point was not inside an entry.
7559
7560 2003-10-21 Richard M. Stallman <rms@gnu.org>
7561
7562 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
7563
7564 2003-10-21 Juri Linkov <juri@jurta.org>
7565
7566 * compare-w.el: Automatically skip non-matching text to resync.
7567 (compare-windows-whitespace): Doc fix.
7568 (compare-windows-sync, compare-windows-sync-string-size)
7569 (compare-windows-recenter, compare-ignore-whitespace)
7570 (compare-windows-highlight, compare-windows-face): New variables.
7571 (compare-windows): Use compare-windows-sync.
7572 (compare-windows-highlight, compare-windows-dehighlight)
7573 (compare-windows-sync-regexp)
7574 (compare-windows-sync-default-function): New functions.
7575
7576 2003-10-21 Juri Linkov <juri@jurta.org>
7577
7578 * diff.el (diff-parse-differences): Don't visit the files now;
7579 instead, just record the error locus.
7580
7581 2003-10-21 Dave Love <fx@gnu.org>
7582
7583 * progmodes/cfengine.el: New file.
7584
7585 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7586
7587 * complete.el (PC-do-completion): Do not forget to use `pred' as the
7588 default-directory when completing file names.
7589
7590 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
7591
7592 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
7593 followed by the word `face', it gets treated as a face, even if
7594 it is also defined as a variable or a function.
7595
7596 2003-10-20 Dave Love <fx@gnu.org>
7597
7598 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7599 Avoid incf in macro expansion.
7600
7601 2003-10-20 John Paul Wallington <jpw@gnu.org>
7602
7603 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
7604 `evenp' so we don't implicitly require cl library at runtime.
7605
7606 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
7607
7608 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
7609 (help-make-xrefs): Only make cross-references for faces if
7610 preceded or followed by the word `face'. Do not make a
7611 cross-reference for variables without variable documentation,
7612 unless preceded by the word `variable' or `option'. Update doc
7613 string accordingly.
7614
7615 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
7616
7617 * progmodes/hideshow.el: Rewrite one-armed `if'
7618 constructs using either `when' or `unless'.
7619 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
7620
7621 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
7622
7623 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
7624 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
7625 instead of 12x12.
7626
7627 2003-10-16 Eli Zaretskii <eliz@gnu.org>
7628
7629 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
7630 message while converting to Babyl.
7631
7632 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
7633
7634 * allout.el (allout-mode): Doc fix.
7635
7636 2003-10-16 Lute Kamstra <lute@gnu.org>
7637
7638 * subr.el (force-mode-line-update): Fix docstring.
7639
7640 2003-10-14 Dave Love <fx@gnu.org>
7641
7642 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
7643 (default-input-method): Add :link, improve :type.
7644 (locale-charset-language-names): Fix utf-8 pattern.
7645 (locale-charset-match-p, locale-charset-alist)
7646 (locale-charset-to-coding-system): New.
7647 (set-locale-environment): Deal with codeset part of locale specs.
7648
7649 2003-10-14 Lute Kamstra <lute@gnu.org>
7650
7651 * fringe.el (fringe-mode): Use active voice in docstring.
7652 (set-fringe-style): Ditto.
7653
7654 2003-10-13 Lute Kamstra <lute@gnu.org>
7655
7656 * fringe.el (fringe-mode): Fix docstring.
7657 (set-fringe-style): Ditto.
7658
7659 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
7660
7661 * ediff-mult.el (ediff-filegroup-action):
7662 Use ediff-default-filtering-regexp.
7663
7664 * ediff-util.el (ediff-recenter): Don't call
7665 ediff-restore-highlighting twice.
7666 (ediff-select-difference): Set current difference.
7667 (ediff-unselect-and-select-difference): Add comment.
7668
7669 * ediff.el (ediff-directories,ediff-directory-revisions)
7670 (ediff-directories3,ediff-merge-directories)
7671 (ediff-merge-directories-with-ancestor)
7672 (ediff-merge-directory-revisions)
7673 (ediff-merge-directory-revisions-with-ancestor):
7674 Use ediff-default-filtering-regexp.
7675
7676 2003-10-12 Andreas Schwab <schwab@suse.de>
7677
7678 * international/mule-cmds.el (locale-charset-language-names):
7679 Simplify regex by removing unused grouping.
7680
7681 2003-10-10 Dave Love <fx@gnu.org>
7682
7683 * bindings.el: Don't bind stop.
7684
7685 2003-10-08 Miles Bader <miles@gnu.org>
7686
7687 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
7688 face instead of attempting to emulate it.
7689
7690 2003-10-07 Kenichi Handa <handa@m17n.org>
7691
7692 * international/mule-diag.el (list-coding-systems-1): List coding
7693 systems that are loaded automatically.
7694
7695 * international/code-pages.el (iso-8859-11): Add autoload cookie.
7696
7697 * international/mule.el (autoload-coding-system): New function.
7698
7699 2003-10-07 Andreas Schwab <schwab@suse.de>
7700
7701 * log-edit.el (log-edit-changelog-entries): Prefer local value of
7702 change-log-default-name in the buffer visiting the file.
7703
7704 2003-10-06 Dave Love <fx@gnu.org>
7705
7706 * files.el (find-file-hook): Customize.
7707 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
7708
7709 * bindings.el (completion-ignored-extensions): Remove .log.
7710 (global-map): Add again, open, stop keys.
7711
7712 2003-10-05 Richard M. Stallman <rms@gnu.org>
7713
7714 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
7715 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
7716 Use sh-modify directly.
7717 (sh-select): Use sh-append, not eval.
7718
7719 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
7720
7721 * info.el (Info-following-node-name): New function.
7722
7723 * loadhist.el (unload-feature-special-hooks):
7724 Rename from loadhist-hook-functions.
7725 (loadhist-hook-functions): Now an alias.
7726
7727 2003-10-04 Eli Zaretskii <eliz@gnu.org>
7728
7729 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
7730 file-name clashes on 8+3 filesystems.
7731
7732 * Makefile.in (DONTCOMPILE, bootstrap-clean):
7733 Rename loaddefs-boot.el to ldefs-boot.el
7734
7735 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
7736 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
7737
7738 2003-10-03 Lute Kamstra <lute@gnu.org>
7739
7740 * info.el (Info-mode): Revert previous change.
7741 (Info-escape-percent): New function.
7742 (Info-fontify-node): Use it.
7743
7744 2003-10-02 Andreas Schwab <schwab@suse.de>
7745
7746 * loaddefs-boot.el: Regenerated.
7747
7748 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
7749
7750 * ffap.el: Remove defadvice related code from CVS since `complete'
7751 provides a `PC-completion-as-file-name-predicate' variable that
7752 ffap can override.
7753
7754 2003-10-02 Kenichi Handa <handa@m17n.org>
7755
7756 * international/utf-8.el (ccl-decode-mule-utf-8):
7757 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
7758
7759 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
7760 * international/subst-big5.el: Likewise.
7761 * international/subst-gb2312.el: Likewise.
7762 * international/subst-ksc.el: Likewise.
7763
7764 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
7765
7766 * calendar/calendar.el (increment-calendar-month)
7767 (calendar-leap-year-p, calendar-absolute-from-gregorian)
7768 (generate-calendar, calendar-read-date, calendar-interval)
7769 (calendar-day-of-week): Handle years BC.
7770 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
7771
7772 2003-10-01 Dave Love <fx@gnu.org>
7773
7774 * language/cyrillic.el (cp1251): Alias for windows-1251.
7775
7776 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
7777 bootstrap.
7778
7779 2003-10-01 Lute Kamstra <lute@gnu.org>
7780
7781 * files.el: Fix typo.
7782 * imenu.el (imenu--generic-function): Docstring fix.
7783
7784 2003-09-30 Richard M. Stallman <rms@gnu.org>
7785
7786 * dired.el (dired-mode): Handle dired-directory as a list.
7787
7788 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
7789
7790 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
7791
7792 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
7793
7794 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
7795 Replace gud-display with gud-watch.
7796 (gud-speedbar-buttons): Add stuff for watching expressions
7797 in the speedbar when using M-x gdba. Use dolist on old part
7798 of this function.
7799
7800 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
7801 (gdb-update-flag): New variables.
7802 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
7803 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
7804 (gud-watch, gdb-var-create-handler) : New functions.
7805 (gdb-var-list-children, gdb-var-list-children-handler)
7806 (gdb-var-create-regexp, gdb-var-update-regexp)
7807 (gdb-var-list-children-regexp): New constants.
7808 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
7809 (gdb-annotation-rules): Reduce annotation set (level 3).
7810 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
7811 (gdb-post-prompt): Don't update GDB buffers every time speedbar
7812 updates.
7813 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
7814 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
7815 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
7816 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
7817 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
7818 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
7819 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
7820 (gud-display, gud-display1)
7821 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
7822 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
7823 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
7824 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
7825 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
7826 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
7827 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
7828 (gdb-display-display-buffer, gdb-toggle-display)
7829 (gdb-delete-display, gdb-expressions-popup-menu)
7830 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
7831 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
7832 to display buffer.
7833
7834 2003-09-30 Richard M. Stallman <rms@gnu.org>
7835
7836 * progmodes/ada-mode.el (ada-mode): Don't use advice.
7837 Instead, set which-func-functions.
7838
7839 * progmodes/which-func.el (which-func-modes): Add ada-mode.
7840 (which-func-functions): New variable.
7841 (which-function): Use that.
7842
7843 * info.el (Info-mode): Double each `%' in header line.
7844
7845 * emacs-lisp/lisp-mnt.el (lm-with-file):
7846 When FILE is nil, run BODY in current buffer.
7847
7848 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
7849
7850 * help.el (describe-mode): Start with a brief list of minor modes.
7851 Find them thru minor-mode-list so as to find them all.
7852 Show them in alphabetical order.
7853
7854 * mail/sendmail.el (mail-aliases): Doc fix.
7855
7856 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
7857
7858 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7859
7860 * mail/rmailsum.el (rmail-make-summary-line-1):
7861 Change comma after last label to a space.
7862 (rmail-summary-font-lock-keywords): Adapt to that change.
7863
7864 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
7865
7866 * progmodes/scheme.el (scheme-mode-variables): When setting
7867 `font-lock-defaults', also specify that "#" should
7868 be interpreted with `word' syntax.
7869 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
7870
7871 2003-09-30 Lars Hansen <larsh@math.ku.dk>
7872
7873 * desktop.el: A lot of comments updated.
7874 (desktop-save-mode): Minor mode introduced.
7875 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
7876 (desktop-load-default): Function made obsolete.
7877 (desktop-locals-to-save): Variable made customizable.
7878 (desktop-read): Optional parameter `dirname' added.
7879 (desktop-change-dir, desktop-revert): Parameter `dirname' in
7880 `desktop-read' used.
7881 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
7882
7883 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
7884
7885 * whitespace.el (whitespace-clean-msg): Add user customizable message
7886 for displaying ``clean'' output.
7887 (whitespace-buffer): Use `whitespace-clean-msg'.
7888 (whitespace-global-mode): Fix typo.
7889
7890 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
7891
7892 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
7893
7894 2003-09-29 Lute Kamstra <lute@gnu.org>
7895
7896 * bindings.el (mode-line-modes): Remove superfluous :propertize
7897 construct in initialization.
7898 (mode-line-position): Change cons cell into proper list in
7899 initialization.
7900
7901 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
7902
7903 * international/mule.el (decode-coding-inserted-region): Use car
7904 of the return value of find-operation-coding-system.
7905
7906 2003-09-29 Kenichi Handa <handa@m17n.org>
7907
7908 * descr-text.el (describe-char): Fix previous change.
7909
7910 2003-09-28 Kenichi Handa <handa@m17n.org>
7911
7912 * descr-text.el (describe-char-display): New function.
7913 (describe-char): Pay attention to display table on describing how
7914 a character is displayed.
7915
7916 * international/mule-cmds.el (encoded-string-description):
7917 Prepend "0x" to each encoded byte.
7918
7919 2003-09-28 Andreas Schwab <schwab@suse.de>
7920
7921 * find-file.el (ff-special-constructs): Add autoload cookie.
7922
7923 2003-09-28 Kevin Ryde <user42@zip.com.au>
7924
7925 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
7926 makeinfo appends to duplicate index entries.
7927
7928 2003-09-28 Eli Zaretskii <eliz@gnu.org>
7929
7930 * dired-x.el (dired-clean-tex): Doc fix.
7931
7932 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
7933 using a Chinese tutorial.
7934
7935 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7936
7937 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
7938 between "MAIL FROM:" and "RCPT TO:" and the following address.
7939
7940 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7941
7942 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
7943
7944 2003-09-28 David Ponce <david@dponce.com>
7945
7946 * recentf.el (recentf-initialize-file-name-history): New defcustom.
7947 (recentf-load-list): When `recentf-initialize-file-name-history'
7948 is non-nil, initialize an empty `file-name-history' with the
7949 recent list.
7950
7951 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
7952
7953 * man.el (Man-default-man-entry): Remove the leading `*' from the
7954 word at point.
7955
7956 2003-09-26 Lute Kamstra <lute@gnu.org>
7957
7958 * bindings.el (mode-line-position): Mention size indication in
7959 docstring.
7960
7961 2003-09-26 Andre Spiegel <spiegel@gnu.org>
7962
7963 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
7964
7965 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
7966 because it's autoloaded now.
7967
7968 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
7969
7970 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
7971 (sh-font-lock-keywords, sh-feature): Fix previous change of
7972 sh-feature to avoid infloop with sh-font-lock-keywords.
7973
7974 2003-09-25 Kim F. Storm <storm@cua.dk>
7975
7976 * frame.el (frame-current-scroll-bars): New defun.
7977
7978 * window.el (window-current-scroll-bars): New defun.
7979
7980 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7981
7982 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
7983 cause errors when the state cache contains info on parts that have
7984 been narrowed out.
7985
7986 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7987
7988 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
7989 `c-setup-paragraph-variables' has to be used when this variable is
7990 changed; it doesn't work to reinitialize the mode since that
7991 typically clobbers the variable.
7992
7993 * progmodes/cc-styles.el (c-setup-paragraph-variables):
7994 Make it interactive.
7995
7996 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7997
7998 * progmodes/cc-fonts.el (c-font-lock-declarations):
7999 Fix recognition of constructors and destructors for classes whose
8000 names are matched by `*-font-lock-extra-types'.
8001
8002 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
8003 followed by an identifier in C++ then it's a type.
8004
8005 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8006
8007 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
8008 problem that primarily affected XEmacs. Don't use faces to find
8009 unterminated strings since Emacs and XEmacs fontify strings
8010 differently - this function should now work better in XEmacs.
8011
8012 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8013
8014 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
8015 `expand-abbrev' workaround which caused braces to misbehave inside
8016 macros.
8017
8018 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
8019 handling. This bug could cause interactive font locking to bail out.
8020
8021 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8022
8023 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8024 Handle paren-style types in Pike. Also fixed some cases of
8025 insufficient handling of unbalanced parens.
8026
8027 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
8028
8029 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
8030 common shell prompts that are not common filename or URL characters.
8031 (ffap-file-at-point): Use the new regexp to strip the prompts from
8032 the file names. This is an issue mostly for user prompts that
8033 don't have a trailing space and find-file-at-point is invoked from
8034 within a shell inside Emacs.
8035
8036 2003-09-24 Andre Spiegel <spiegel@gnu.org>
8037
8038 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
8039 stamps numerically, rather than textually.
8040
8041 2003-09-24 Kenichi Handa <handa@m17n.org>
8042
8043 * language/devan-util.el (devanagari-post-read-conversion):
8044 * language/mlm-util.el (malayalam-post-read-conversion):
8045 * language/tml-util.el (tamil-post-read-conversion):
8046 Add autoload cookie.
8047
8048 * international/utf-8.el (utf-8-post-read-conversion):
8049 Call post-read-conversion functions for Devanagari, Malayalam,
8050 and Tamil.
8051
8052 2003-09-23 Dave Love <fx@gnu.org>
8053
8054 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
8055
8056 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
8057
8058 * progmodes/gud.el (perldb): Add gud-until to list of commands.
8059 Update gud-remove.
8060
8061 2003-09-22 Richard M. Stallman <rms@gnu.org>
8062
8063 * progmodes/sh-script.el (sh-mode-default-syntax-table):
8064 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
8065 (sh-mode-syntax-table-input): New variable.
8066 (sh-require-final-newline): Don't use eval.
8067 (sh-builtins, sh-leading-keywords, sh-other-keywords)
8068 (sh-variables, sh-font-lock-keywords): Don't use eval.
8069 (sh-set-shell): When setting require-final-newline,
8070 treat value = `require-final-newline' as don't change it.
8071 Set sh-mode-syntax-table locally based on
8072 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
8073
8074 * progmodes/compile.el (compile-internal):
8075 Call compilation-set-window-height before setting window start.
8076
8077 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
8078
8079 * emacs-lisp/bytecomp.el (byte-compile-log-file):
8080 Clear out byte-compile-last-warned-form.
8081
8082 2003-09-22 Richard M. Stallman <rms@gnu.org>
8083
8084 * woman.el (woman-file-name, woman-follow-word):
8085 If current-word returns nil, use "".
8086
8087 * simple.el (eval-expression): Bind standard-output in to-buffer case.
8088
8089 2003-09-22 Richard M. Stallman <rms@gnu.org>
8090
8091 * emacs-lisp/lisp-mnt.el (lm-with-file):
8092 Don't visit the file, just use insert-file-contents in temp buffer.
8093
8094 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
8095
8096 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
8097 Add surrounding \\( and \\) around the header, as in
8098 for lm-history-header 'Change Log\\|History'.
8099
8100 2003-09-22 John Paul Wallington <jpw@gnu.org>
8101
8102 * progmodes/ld-script.el: Add Commentary section,
8103 minor cleanup of file header.
8104 (ld-script-font-lock-keywords): Doc fix.
8105 (toplevel): Provide `ld-script' feature.
8106
8107 2003-09-21 Kim F. Storm <storm@cua.dk>
8108
8109 * scroll-bar.el (set-scroll-bar-mode): Initialize to
8110 new built-in variable default-frame-scroll-bars.
8111 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
8112 scroll-bar-mode; notably, use it instead of t when we toggle
8113 scroll-bars on.
8114 (toggle-scroll-bar): Use default-frame-scroll-bars.
8115
8116 2003-09-19 Masatake YAMATO <jet@gyve.org>
8117
8118 * pcvs.el (cvs-do-removal): Change the prompt depending on
8119 `filter' value.
8120
8121 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8122
8123 * startup.el (command-line-1): Stop startup-echo-area-message
8124 being hidden by "Loading image..." message.
8125 (use-fancy-splash-screens-p, display-splash-screen):
8126 Move display-graphic-p test from latter to former.
8127
8128 * progmodes/sh-script.el (sh-font-lock-keywords):
8129 Highlight escaped EOLs differently from other backslash constructs.
8130
8131 2003-09-19 Richard M. Stallman <rms@gnu.org>
8132
8133 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
8134 New functions.
8135 (edebug-enter, edebug-outside-excursion): Use them.
8136
8137 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
8138 Fix the condition for whether to print "In WHERE".
8139
8140 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
8141
8142 * finder.el (finder-mode-hook): New variable.
8143 (finder-mode): Run hook finder-mode-hook
8144
8145 2003-09-18 Masatake YAMATO <jet@gyve.org>
8146
8147 * progmodes/ebrowse.el: Fix broken magic autoload comments.
8148
8149 2003-09-17 Mario Lang <mlang@delysid.org>
8150
8151 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
8152 "p %e" to actually print the value in the GUD buffer.
8153
8154 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
8155
8156 From David Ponce <david.ponce@wanadoo.fr>:
8157 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
8158 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
8159 from loaddefs-boot.el if necessary.
8160
8161 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
8162
8163 * progmodes/gud.el (gud-find-class): Make jdb work again since
8164 cc-mode changed the syntactic information.
8165
8166 2003-09-15 David Ponce <david@dponce.com>
8167
8168 * recentf.el: (recentf-exclude): Accept predicates too.
8169 (recentf-file-readable-p): New function.
8170 (recentf-include-p): Handle predicates in recentf-exclude.
8171 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
8172 (recentf-cleanup): Likewise.
8173 (recentf-save-list): Use write-file to handle backup of
8174 recentf-save-file.
8175
8176 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
8177
8178 * loaddefs-boot.el: Renamed from `loaddefs.el'
8179 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
8180 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
8181 necessary.
8182
8183 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
8184
8185 * electric.el (Electric-pop-up-window): For the `one-window' case,
8186 no longer disconcertingly move point in the original buffer.
8187
8188 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8189
8190 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
8191
8192 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
8193
8194 * dired.el (dired-mode-map): Fix typo.
8195
8196 2003-09-11 Richard M. Stallman <rms@gnu.org>
8197
8198 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
8199
8200 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8201
8202 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
8203 the function is less noisy. Now only `kill-buffer' can ask questions.
8204
8205 2003-09-10 Mario Lang <mlang@delysid.org>
8206
8207 * battery.el: Update Commentary and Copyright.
8208 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
8209 appear due to wrong ordering of the expressions in `or'.
8210
8211 2003-09-09 Lute Kamstra <lute@gnu.org>
8212
8213 * misc.el (upcase-char): Fix docstring.
8214 (zap-up-to-char): New command.
8215
8216 2003-09-08 David Ponce <david@dponce.com>
8217
8218 Ensure that recentf correctly updates the menu bar.
8219 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
8220 (recentf-menu-bar): New function.
8221 (recentf-clear-data): Use it
8222 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
8223 of easy-menu-change.
8224
8225 2003-09-08 Lute Kamstra <lute@gnu.org>
8226
8227 * simple.el (size-indication-mode): New.
8228 * bindings.el (mode-line-position): Add buffer size indicator.
8229
8230 2003-09-04 Mario Lang <mlang@delysid.org>
8231
8232 * battery.el (battery-linux-proc-acpi): New function.
8233 (battery-status-function): Modify default value calculation to also
8234 check for availability of ACPI.
8235 (battery-echo-area-format): Ditto.
8236 (battery-mode-line-format): Ditto.
8237
8238 2003-09-06 Dave Love <fx@gnu.org>
8239
8240 * ielm.el (ielm-mode-hook): Add :options.
8241
8242 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
8243 (eldoc-print-current-symbol-info): Use it.
8244
8245 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
8246
8247 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
8248 being displayed in GUD buffer.
8249 (gdb-idle-input-queue): Remove var. Use just one queue.
8250 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
8251 Remove functions. Use just one queue.
8252 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
8253 (gdb-invalidate-assembler, gdb-get-current-frame):
8254 Modify functions. Use just one queue.
8255
8256 2003-09-04 Dave Love <fx@gnu.org>
8257
8258 * cus-start.el: Add blink-cursor-alist.
8259
8260 * ruler-mode.el (ruler-mode-fill-column-char)
8261 (ruler-mode-current-column-char): Use char-displayable-p,
8262 not window-system.
8263
8264 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
8265
8266 * language/european.el (windows-1252): Move from code-pages.
8267
8268 * language/cyrillic.el ("Windows-1251"): Delete.
8269 ("Bulgarian", "Belarusian"): Remove `features'.
8270 (windows-1251): Move from code-pages.
8271
8272 * international/mule-diag.el (non-iso-charset-alist):
8273 Remove `codepage' stuff.
8274 (print-designation, list-coding-systems-1): Output fixes.
8275
8276 * international/code-pages.el (cp-make-translation-table)
8277 (cp-valid-codes): Made defsubsts.
8278 (cp-fix-safe-chars): Delete.
8279 (mule-diag): Don't require.
8280 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
8281 (top-level): Check for defined coding system when defining
8282 cp... aliases. Change w32-add-charset-info test to avoid warning.
8283 (non-iso-charset-alist): Defvar when compiling.
8284 (cp-make-coding-system): Doc fix.
8285
8286 2003-09-02 Jason Rumney <jasonr@gnu.org>
8287
8288 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
8289 line-ends from CVS before doing conversion.
8290
8291 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
8292
8293 * calendar/diary-lib.el (diary-header-line-flag)
8294 (diary-header-line-format): New variables.
8295 (list-diary-entries): Use them to set header line in simple diary.
8296
8297 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
8298 other than font-lock-string-face to highlight backslashes.
8299
8300 2003-09-01 Jason Rumney <jasonr@gnu.org>
8301
8302 * international/titdic-cnv.el (tit-read-key-value): Include \r in
8303 regexp.
8304
8305 2003-09-01 Dave Love <fx@gnu.org>
8306
8307 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
8308
8309 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
8310 and :help; also line and column numbers labels.
8311
8312 * international/mule-util.el (char-displayable-p): Move from
8313 latin1-disp, rename and autoload.
8314
8315 * international/latin1-disp.el (latin1-char-displayable-p):
8316 Now obsolete alias. Replace uses with char-displayable-p.
8317 (latin1-display-ucs-per-lynx): Fix last change.
8318
8319 * international/mule-cmds.el (standard-display-european-internal):
8320 Don't use char code for Latin-1 NBSP.
8321 <XFree86 4>: Unfrob NBSP display table. Set display table to use
8322 U+2018, U+2019 for `'.
8323 (select-safe-coding-system): Message fix.
8324
8325 2003-09-01 Kenichi Handa <handa@m17n.org>
8326
8327 * international/fontset.el (setup-default-fontset): For Thai
8328 font, specify "*" family.
8329
8330 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8331
8332 * progmodes/compile.el (previous-error): Accept a prefix
8333 argument, similarly to next-error.
8334
8335 2003-08-31 Masatake YAMATO <jet@gyve.org>
8336
8337 * pcvs.el (cvs-do-removal): Use = instead of eq to check
8338 the number of files. Bind the number of files to a local
8339 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
8340
8341 2003-08-30 Eli Zaretskii <eliz@gnu.org>
8342
8343 * vc-hooks.el (vc-make-version-backup): Fix the change made on
8344 2003-07-26: msdos-long-file-names is a function, not a variable.
8345
8346 2003-08-29 Richard M. Stallman <rms@gnu.org>
8347
8348 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
8349 Do nothing with mail-personal-alias-file if it is nil.
8350
8351 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
8352 Do nothing if mail-personal-alias-file is nil.
8353
8354 * term.el (term-exec-1): Bind coding-system-for-read.
8355
8356 * dired.el (dired-mouse-find-file-other-window):
8357 Use dired-view-command-alist here, as in dired-view-file.
8358 (dired-view-command-alist): Use %s to substitute file name.
8359 Handle .ps_pages, .eps, .jpg, .gif, .png.
8360
8361 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8362
8363 * info.el (Info-mode-map): Bind S-tab and <backtab> to
8364 `Info-prev-reference', instead of M-tab.
8365
8366 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
8367
8368 * simple.el (blink-matching-open): Work correctly on chars that
8369 are designated as parens through the syntax-table text property.
8370
8371 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
8372
8373 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
8374 line break position in the middle of a non-kinsoku (e.g. latin)
8375 word, making it skip until either a space or a character with
8376 category "|".
8377 (kinsoku-longer): Test for end of buffer.
8378
8379 2003-08-28 Eli Zaretskii <eliz@gnu.org>
8380
8381 * mail/rmail.el (rmail-convert-to-babyl-format):
8382 Detect quoted-printable- and base64-encoded messages and decode them
8383 automatically. Set the message's encoding from the charset=
8384 header, if any. Decode base64-encoded messages in Mail format as well.
8385
8386 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8387
8388 * mail/smtpmail.el: Fix previous change.
8389 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
8390 calling smtpmail-via-smtp.
8391 (smtpmail-via-smtp): Add fall-back values for envelope-from.
8392
8393 2003-08-26 John Paul Wallington <jpw@gnu.org>
8394
8395 * image.el (image-jpeg-p): Don't search beyond length of data.
8396
8397 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8398
8399 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
8400 misfeature in `expand-abbrev' which caused electric keywords like
8401 "else" to disappear if an open brace was typed directly afterwards.
8402
8403 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8404
8405 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
8406 mandatory in `define-widget'.
8407
8408 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
8409 Don't align the operators "!=", "<=" and ">=" as assignment operators.
8410
8411 (c-assignment-operators): New language constant that only contains
8412 the assignment operators.
8413
8414 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
8415
8416 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8417
8418 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8419 Safeguard against unbalanced sexps.
8420
8421 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
8422
8423 * version.el (emacs-version): Check for gtk. Include gtk version info.
8424
8425 2003-08-25 John Paul Wallington <jpw@gnu.org>
8426
8427 * man.el (Man-default-man-entry): Don't whizz past the section
8428 number before looking for it.
8429
8430 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
8431
8432 * progmodes/gud.el (gud-display-line): Don't set window-point if
8433 source buffer is not visible. (Only happens with M-x gdba.)
8434
8435 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
8436 documentation.
8437 (gdb-source, gdb-source-info): Update to assembler unnecessary
8438 as its done after each GDB command anyway.
8439 (gdb-pre-prompt): Use with-current-buffer.
8440 (gdb-insert-field): Add help-echo text.
8441 (gdb-invalidate-assembler): Re-display of assembler now done in
8442 gdb-info-breakpoints-custom.
8443 (gdb-info-breakpoints-custom): Force re-display of assembler to
8444 happen *after* update of breakpoints buffer.
8445 (gdb-display-source-buffer): Don't choke if gdb-source-window
8446 isn't visible.
8447 (gdb-put-string, gdb-put-arrow): Remove free variables.
8448
8449 2003-08-24 John Paul Wallington <jpw@gnu.org>
8450
8451 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
8452
8453 * man.el (Man-default-man-entry): Strip text properties when
8454 snarfing parts of entry because `format' preserves properties.
8455
8456 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8457
8458 * files.el (file-newest-backup): Use `expand-file-name'.
8459
8460 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
8461 Allow the diary to pop up a new frame, if needed.
8462
8463 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
8464 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
8465 (smtpmail-send-it): Make treatment of envelope-from consistent with
8466 sendmail.el.
8467
8468 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
8469 (sh-leading-keywords): Add the bash `time' reserved word.
8470 (sh-variables): Add some bash variables.
8471 (sh-add-completer): Fix nil branch of case statement.
8472
8473 2003-08-24 Masatake YAMATO <jet@gyve.org>
8474
8475 * progmodes/ld-script.el: New file.
8476
8477 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
8478
8479 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
8480
8481 2003-08-23 Andre Spiegel <spiegel@gnu.org>
8482
8483 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
8484 Better explain obsolescence, and what to use instead.
8485
8486 2003-08-23 Masatake YAMATO <jet@gyve.org>
8487
8488 * pcvs.el (cvs-do-removal): Show the deleted file name
8489 on the prompt.
8490
8491 2003-08-20 Dave Love <fx@gnu.org>
8492
8493 * international/mule.el (make-coding-system)
8494 (set-buffer-file-coding-system): Doc fix.
8495
8496 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
8497
8498 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
8499
8500 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
8501
8502 * international/utf-16.el: Add mime-text-unsuitable coding system
8503 properties.
8504
8505 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
8506
8507 * cus-edit.el: Add some :links.
8508 (bib): Remove.
8509
8510 * textmodes/bib-mode.el (bib): Add :group external.
8511
8512 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
8513
8514 * wid-edit.el (widget-echo-help): Make it handle expressions that
8515 evaluate to strings.
8516
8517 2003-08-18 Michael Mauger <mmaug@yahoo.com>
8518
8519 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
8520
8521 Simplify selection of SQL products to define highlighting and
8522 interactive mode. Includes detailed instructions on adding
8523 support for new products.
8524
8525 * progmodes/sql.el (sql-product): New variable. Identifies SQL
8526 product for use in highlighting and interactive mode.
8527 (sql-interactive-product): New variable. SQL product for
8528 sql-interactive-mode.
8529 (sql-product-support): New variable. Specifies product-specific
8530 parameters to drive highlighting and interactive mode.
8531 (sql-imenu-generic-expression): Add more object types.
8532 (sql-sqlite-options): Correct comment.
8533 (sql-ms-program): Use "osql" rather than "isql".
8534 (sql-prompt-regexp, sql-prompt-length): Update comment.
8535 (sql-mode-menu): Add "Start SQLi session" entry.
8536 Replace Highlighting submenu with Product menu. Fix Send Region entry.
8537 (sql-mode-abbrev-table): Add abbreviations. Support of
8538 SYSTEM-FLAG on define-abbrev. Support was removed with last
8539 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
8540 (sql-mode-font-lock-object-name): Add font-lock pattern for object
8541 names.
8542 (sql-mode-ansi-font-lock-keywords): Set as default value.
8543 (sql-mode-oracle-font-lock-keywords): Set as default value.
8544 Support Oracle 9i keywords.
8545 (sql-mode-postgres-font-lock-keywords): Set as default value.
8546 (sql-mode-linter-font-lock-keywords): Set as default value.
8547 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
8548 SQLServer 2000.
8549 (sql-mode-sybase-font-lock-keywords)
8550 (sql-mode-interbase-font-lock-keywords)
8551 (sql-mode-sqlite-font-lock-keywords)
8552 (sql-mode-strong-font-lock-keywords)
8553 (sql-mode-mysql-font-lock-keywords)
8554 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
8555 keywords.
8556 (sql-mode-font-lock-defaults): Update comment.
8557 (sql-product-feature): New function. Returns feature associated
8558 with a product from `sql-product-support' alist.
8559 (sql-product-font-lock): New function. Set font-lock support
8560 based on `sql-product'.
8561 (sql-add-product-keywords): New function. Add font-lock rules to
8562 product-specific keyword variables.
8563 (sql-set-product): New function. Set `sql-product' and apply
8564 appropriate font-lock highlighting.
8565 (sql-highlight-product): New function. Set font-lock support
8566 based on a product. Also set mode name to include product name.
8567 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
8568 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
8569 Use `sql-set-product'.
8570 (sql-highlight-ms-keywords)
8571 (sql-highlight-sybase-keywords)
8572 (sql-highlight-interbase-keywords)
8573 (sql-highlight-strong-keywords)
8574 (sql-highlight-mysql-keywords)
8575 (sql-highlight-sqlite-keywords)
8576 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
8577 (sql-get-login): Prompt in the same order as the tokens.
8578 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
8579 (sql-product-interactive): New function. Common portions of
8580 product-specific interactive mode wrappers.
8581 (sql-interactive-mode): Rewritten to use product features.
8582 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
8583 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
8584 (sql-db2, sql-linter): Use `sql-product-interactive'.
8585 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
8586 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
8587 (sql-connect-ingres, sql-connect-postgres)
8588 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
8589 New functions. Format command line parameters and invoke comint on
8590 the appropriate interpreter. Code was in the corresponding
8591 `sql-xyz' function before.
8592 (sql-connect-ms): New function. Support -E argument to use
8593 operating system credentials for authentication.
8594
8595 2003-08-18 Kenichi Handa <handa@m17n.org>
8596
8597 * international/mule.el (encode-char): Fix for the ASCII case.
8598
8599 2003-08-15 Kenichi Handa <handa@m17n.org>
8600
8601 * international/fontset.el (setup-default-fontset): Change "*" to
8602 nil in the specifications of font family.
8603
8604 2003-08-18 Kim F. Storm <storm@cua.dk>
8605
8606 * kmacro.el (kmacro-keymap): Group related bindings in
8607 initialization for clarity. Bind C-s to start macro.
8608 Remove C-r binding.
8609 (kmacro-initial-counter-value): New defvar to hold initial counter
8610 value in case we set the value before defining a macro.
8611 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
8612 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
8613 not defining or executing macro. Doc fix.
8614 (kmacro-add-counter): Clear kmacro-initial-counter-value.
8615 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
8616 temporarily view older elements on the macro ring without cycling
8617 the ring.
8618 (kmacro-display): Doc fix.
8619 (kmacro-exec-ring-item): New helper function.
8620 (kmacro-call-ring-2nd): Use it.
8621 (kmacro-call-ring-2nd-repeat): Doc fix.
8622 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
8623 (kmacro-end-or-call-macro): Execute last viewed macro (using
8624 kmacro-exec-ring-item) from ring if this follows
8625 kmacro-view-macro. This allows us to find a macro on the ring
8626 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
8627 the ring to bring it to the head of the ring.
8628 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
8629 Allow binding to reserved keys without specifying C-x C-k prefix.
8630 Ask for confirmation if entered key sequence is already bound to
8631 a non-macro command.
8632 (kmacro-view-macro): Repeating command will show older elements
8633 on the macro ring; C-k will execute the last viewed macro.
8634 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
8635 property from 'ring to 'head.
8636
8637 2003-08-17 Alan Shutko <ats@acm.org>
8638
8639 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
8640 keeping December out of the alist.
8641
8642 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
8643
8644 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
8645 * calendar/calendar.el (calendar-mode-map): Bind it to key.
8646 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
8647 (calendar-flatten): New function.
8648 (calendar-mouse-view-other-diary-entries)
8649 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
8650 in the menu title and to show multi-line diary entries correctly
8651 in the menu.
8652
8653 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
8654
8655 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
8656 defcustom, because the default was recently changed.
8657
8658 2003-08-16 Richard M. Stallman <rms@gnu.org>
8659
8660 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
8661
8662 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8663 New subroutine, broken out of eval-last-sexp-1.
8664 (eval-last-sexp-1): Use eval-last-sexp-print-value.
8665
8666 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
8667
8668 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
8669
8670 * simple.el (eval-expression): Use eval-last-sexp-print-value.
8671
8672 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
8673
8674 * progmodes/compile.el (compilation-error-regexp-alist):
8675 Add Java ANt error detection as described in document
8676 http://ant.apache.org/faq.html
8677
8678 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
8679
8680 * simple.el (backward-word, forward-to-indentation)
8681 (backward-to-indentation): Argument changed to optional.
8682 (next-line, previous-line): Use `or' instead of `unless'.
8683
8684 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8685
8686 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
8687 instead of a constant.
8688
8689 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
8690
8691 * shell.el (shell): With prefix-arg, suggest a new buffer name.
8692
8693 2003-08-12 Andre Spiegel <spiegel@gnu.org>
8694
8695 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
8696 (vc-sccs-workfile-version): Search the entire delta table, rather
8697 than just the first entry, because that might be a deleted version.
8698
8699 2003-08-11 Karl Fogel <kfogel@red-bean.com>
8700
8701 * menu-bar.el (menu-bar-options-menu): Supply a body for the
8702 [save-place] binding in the Options menu. Have it require
8703 'saveplace' and then toggle the variable manually, to avoid an an
8704 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
8705 for the bug report.
8706
8707 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
8708
8709 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
8710 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
8711 (gdb-info-threads-custom): Add help-echo text.
8712 (gdb-display-back): Don't use purecopy.
8713 (gdb-info-breakpoints-custom, gdb-reset)
8714 (gdb-assembler-custom): Use display-images-p to test if breakpoint
8715 icons can be displayed.
8716
8717 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
8718
8719 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
8720
8721 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
8722
8723 * bookmark.el (bookmark-completing-read):
8724 Return a string, instead of a list of one string.
8725 Use a popup menu if activated from the mouse.
8726 (bookmark-edit-annotation): Remove unused vars.
8727 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
8728 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
8729 to bookmark-completing-read.
8730 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8731 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
8732 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
8733 and erase-buffer.
8734 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
8735 (bookmark-menu-jump, bookmark-menu-insert)
8736 (bookmark-popup-menu-and-apply-function)
8737 (bookmark-menu-popup-paned-bookmark-menu): Remove.
8738 (bookmark-menu-build-paned-menu): Remove by folding it into
8739 bookmark-menu-popup-paned-menu.
8740 (menu-bar-bookmark-map): Move the define-key statements here.
8741 Use the "non-menu" commands since they now pop up a menu if needed.
8742 (bookmark-exit-hook-internal): Simplify.
8743
8744 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
8745
8746 * reftex-toc.el (reftex-toc-rename-label): New function.
8747 (reftex-toc-check-docstruct): New function.
8748
8749 * reftex.el (reftex-region-active-p): New function.
8750
8751 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
8752 regexp to find the \bibliography macro.
8753
8754 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
8755 which does not exist in LaTeX.
8756 (reftex-cite-format-builtin): Added amsrefs support.
8757 (reftex-toc-confirm-promotion): New option
8758
8759 * reftex-toc.el
8760 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
8761 (reftex-toc-demote, reftex-toc-promote)
8762 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8763 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8764 (reftex-toc-newhead-from-alist)
8765 (reftex-toc-load-all-files-for-promotion): New functions.
8766 (reftex-toc-help): Added description of new keys.
8767 (reftex-toc-split-windows-fraction): New option.
8768 (reftex-recenter-toc-when-idle): Search *toc* window on all
8769 visible frames.
8770 (reftex-toc): Additional parameter REUSE
8771 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
8772 with REUSE argument.
8773 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
8774 the call of `reftex-toc'.
8775 (reftex-make-separate-toc-frame): New function .
8776 (reftex-toc-recenter): When called with triple prefix arg, call
8777 `reftex-make-separate-toc-frame' first.
8778 (reftex-toc-toggle-dedicated-frame): New command.
8779 (reftex-toc-quit): Adapted to delete frame when called in
8780 dedicated frame.
8781
8782 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
8783 all enclosing macros.
8784
8785
8786 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8787
8788 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
8789 first use.
8790
8791 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8792
8793 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
8794
8795 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8796
8797 * calendar/calendar.el (list-diary-entries-hook)
8798 (diary-display-hook, nongregorian-diary-listing-hook)
8799 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
8800 Add some customize options for these hooks.
8801 (calendar-abbrev-construct): Don't try to take a substring longer
8802 than the original string.
8803
8804 2003-08-05 Richard M. Stallman <rms@gnu.org>
8805
8806 * emacs-lisp/testcover.el (noreturn): Report error if does return.
8807 (testcover-reinstrument-clauses): Doc fix.
8808
8809 * emacs-lisp/warnings.el: Doc fixes, args renamed.
8810 (warning-type-format): Rename from warning-group-format.
8811
8812 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
8813 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
8814 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
8815 to prevent warnings about defvar for an obsolete variable.
8816
8817 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
8818 warning-group-format renamed to warning-type-format.
8819
8820 * subr.el (read-passwd): Use clear-string instead of fillarray.
8821
8822 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
8823 Use vconcat instead of concat.
8824 (edmacro-sanitize-for-string): New function.
8825
8826 2003-08-05 Dave Love <fx@gnu.org>
8827
8828 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
8829 line-number-display-limit-width.
8830
8831 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
8832
8833 2003-08-05 Kenichi Handa <handa@m17n.org>
8834
8835 * international/code-pages.el: Don't require mule-diag.
8836
8837 * international/mule-diag.el (non-iso-charset-alist):
8838 Add autoload cookie.
8839
8840 * language/devan-util.el (dev-glyph-order): Add an entry for the
8841 glyph code #xC4.
8842
8843 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
8844
8845 * calendar/calendar.el (diary-file, diary-file-name-prefix)
8846 (european-calendar-style, diary-date-forms)
8847 (calendar-day-name-array, calendar-month-name-array): Doc change.
8848 (generate-calendar-month): Adapt for new behaviour of
8849 `calendar-day-name' function.
8850 (calendar-abbrev-length, calendar-day-abbrev-array)
8851 (calendar-month-abbrev-array): New variables.
8852 (calendar-abbrev-construct): New function.
8853 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
8854 rather than fixing abbrevs at some width. Calling syntax change.
8855 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
8856 (calendar-date-string): Adapt for new behaviours of
8857 `calendar-day-name' and `calendar-month-name' functions.
8858
8859 * calendar/diary-lib.el (list-diary-entries): Adapt for new
8860 behaviour of `calendar-day-name' and `calendar-month-name' functions.
8861 (diary-name-pattern): Use abbrev arrays, rather than fixing
8862 abbrevs at three chars. Calling syntax change.
8863 (mark-diary-entries): Adapt for new behaviours of
8864 `diary-name-pattern' and `calendar-make-alist' functions.
8865 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
8866 `diary-name-pattern' function.
8867 (font-lock-diary-date-forms): Use abbrev arrays, rather than
8868 fixing abbrevs at three chars. Calling syntax change.
8869 (cal-hebrew, cal-islam): Require when compiling.
8870 (diary-font-lock-keywords): Adapt for new behaviour of
8871 `font-lock-diary-date-forms' function.
8872
8873 * calendar/cal-hebrew.el: Reposition some code so defined before used.
8874 (calendar-hebrew-month-name-array-common-year)
8875 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
8876 (list-hebrew-diary-entries): Adapt for new behaviours of
8877 `calendar-day-name' and `add-to-diary-list' functions.
8878 (mark-hebrew-diary-entries): Adapt for new behaviours of
8879 `diary-name-pattern' and `calendar-make-alist' functions.
8880
8881 * calendar/cal-islam.el (calendar-islamic-month-name-array):
8882 Add doc string.
8883 (list-islamic-diary-entries): Adapt for new behaviours of
8884 `calendar-day-name' and `add-to-diary-list' functions.
8885 (mark-islamic-diary-entries): Adapt for new behaviours of
8886 `diary-name-pattern' and `calendar-make-alist' functions.
8887
8888 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
8889 `calendar-month-name' function.
8890
8891 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
8892
8893 * calendar/solar.el (solar-seasons-data): Move definition before use.
8894
8895 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
8896 (cal-tex-LaTeX-hourbox): Move definition before use.
8897
8898 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
8899 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
8900 lunar.el, solar.el
8901 (displayed-month, displayed-year): Define for compiler.
8902
8903 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8904
8905 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
8906 MODE. Renamed from c-init-c-language-vars'.
8907 (c-initialize-cc-mode): Change accordingly.
8908 (c-common-init): Ditto.
8909 (c-mode): Ditto.
8910 (c++-mode): Use `c-init-language-vars-for'.
8911 (objc-mode): Ditto.
8912 (java-mode): Ditto.
8913 (idl-mode): Ditto.
8914 (pike-mode): Ditto.
8915 (awk-mode): Ditto.
8916
8917 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8918
8919 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
8920 or not the point moved.
8921
8922 (c-search-decl-header-end): Don't trip up on operator identifiers
8923 in C++ and operators like == in all languages.
8924
8925 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
8926 Detect leading labels correctly.
8927
8928 2003-08-02 Andreas Schwab <schwab@suse.de>
8929
8930 * textmodes/ispell.el: Don't redo key bindings on loading, put
8931 them only in loaddefs.el.
8932 * bookmark.el: Likewise.
8933 * dabbrev.el: Likewise.
8934 * emerge.el: Likewise.
8935
8936 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
8937 has more than one member.
8938
8939 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
8940
8941 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8942
8943 * lpr.el (printify-region): It was ending conversion before the
8944 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
8945
8946 2003-07-31 John Paul Wallington <jpw@gnu.org>
8947
8948 * net/browse-url.el (browse-url-epiphany): Doc fix.
8949
8950 2003-07-30 Kenichi Handa <handa@m17n.org>
8951
8952 * international/fontset.el (setup-default-fontset):
8953 Change registry names of Akurti fonts.
8954
8955 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
8956
8957 * comint.el (comint-read-noecho): Use `clear-string' instead of
8958 `fillarray'.
8959
8960 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
8961
8962 * outline.el (outline-mode-hook): Add defvar.
8963
8964 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
8965
8966 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
8967 Restore assembler in source window if that is what has been selected.
8968 (menu): Add gdb-restore-windows to menu. Make gdba
8969 specific menus only visible from gdba.
8970
8971 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
8972
8973 * progmodes/compile.el (compilation-environment): New user variable.
8974 (compile-internal): Respect it.
8975
8976 2003-07-23 Masatake YAMATO <jet@gyve.org>
8977
8978 * progmodes/gud.el (gdb-script-font-lock-keywords):
8979 Put `font-lock-function-name-face' on a symbol which includes
8980 `-' like `hook-run'. Put font-lock-variable-name-face
8981 on a symbol starting with $.
8982
8983 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
8984
8985 * files.el (set-visited-file-name): Use truename for buffer-file-name.
8986
8987 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8988
8989 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
8990
8991 2003-07-26 Andre Spiegel <spiegel@gnu.org>
8992
8993 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
8994 Use with-no-warnings.
8995 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
8996 rather than to find-file-not-found-hook, which doesn't exist.
8997
8998 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8999
9000 * international/quail.el (quail-translate-key): Fix previous change.
9001
9002 2003-07-25 John Paul Wallington <jpw@gnu.org>
9003
9004 * server.el (server-start): Check `server-process' is non-nil
9005 before killing it to avoid killing current buffer's process.
9006
9007 * simple.el (choose-completion-string): Use `minibufferp';
9008 test `completion-reference-buffer' if `buffer' arg is nil.
9009 (push-mark): Use `when' and `unless'.
9010 (pop-mark): Use `when'.
9011
9012 * mouse-sel.el (mouse-sel-get-selection-function):
9013 Check `x-last-selected-text-primary'. Don't barf if it or
9014 `x-last-selected-text' aren't bound.
9015
9016 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
9017
9018 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
9019
9020 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
9021
9022 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
9023
9024 2003-07-23 John Paul Wallington <jpw@gnu.org>
9025
9026 * tooltip.el (defface tooltip): Inherit from variable-pitch.
9027
9028 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
9029
9030 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
9031 string. Defvar the derived hook.
9032
9033 * macros.el (insert-kbd-macro): Escape double quote character.
9034 From Thomas W Murphy <twm@andrew.cmu.edu>.
9035
9036 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
9037
9038 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
9039 to match the specific mark rather than reusing comment-start-skip.
9040
9041 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
9042
9043 * progmodes/hideshow.el (hs-special-modes-alist):
9044 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
9045
9046 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
9047
9048 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
9049 value using ?\s.
9050
9051 2003-07-21 John Paul Wallington <jpw@gnu.org>
9052
9053 * subr.el (with-selected-window): Add closing paren.
9054
9055 2003-07-21 Richard M. Stallman <rms@gnu.org>
9056
9057 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
9058 (lisp-mode): Likewise.
9059
9060 * subr.el (with-selected-window): Copy code form save-selected-window
9061 so as to call select-window with norecord arg.
9062 (dynamic-completion-table): Doc fix.
9063 (lazy-completion-table): Doc fix.
9064
9065 * international/mule-cmds.el (set-locale-environment):
9066 langinfo renamed to locale-info.
9067
9068 * international/mule.el (auto-coding-functions): Doc fix.
9069
9070 2003-07-21 Kenichi Handa <handa@m17n.org>
9071
9072 * international/quail.el (quail-translate-key):
9073 Update quail-current-str correctly.
9074
9075 2003-07-21 Andreas Schwab <schwab@suse.de>
9076
9077 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
9078 ?, to "_".
9079
9080 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
9081 Version 2.0.36 of Tramp released.
9082
9083 * net/tramp.el (tramp-default-password-end-of-line): Rename from
9084 tramp-password-end-of-line.
9085 (tramp-password-end-of-line): New method parameter.
9086 (tramp-get-password-end-of-line): Function to access method
9087 parameter `tramp-password-end-of-line', or variable
9088 `tramp-default-password-end-of-line' (default value).
9089 (tramp-methods): Add entries for new parameter
9090 tramp-password-end-of-line.
9091 (tramp-enter-password): Use new function
9092 `tramp-get-password-end-of-line'.
9093 (tramp-handle-insert-file-contents): Do not
9094 unconditionally inhibit the file operation file-local-copy, only
9095 do that when the inhibit-file-name-operation is currently
9096 insert-file-contents. This fixes finding remote CVS-controlled
9097 files. (It would barf on inserting the CVS/Entries file
9098 literally, because the file-local-copy handler wasn't called.)
9099 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
9100 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
9101 (tramp-initial-commands): New variable.
9102 (tramp-process-initial-commands): New function, using the variable.
9103 (tramp-open-connection-setup-interactive-shell): Call the new function.
9104 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
9105 method into the buffer name, never use nil. Reported by Hanak
9106 David <dhanak@inf.bme.hu>.
9107 (tramp-open-connection-setup-interactive-shell): Erase buffer
9108 before sending "stty -onlcr".
9109
9110 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
9111
9112 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
9113
9114 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
9115
9116 2003-07-19 John Paul Wallington <jpw@gnu.org>
9117
9118 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
9119 (artist-draw-rect, artist-draw-square): Doc fixes.
9120
9121 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
9122
9123 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
9124
9125 2003-07-19 Kenichi Handa <handa@m17n.org>
9126
9127 * international/kkc.el (kkc-show-conversion-list-update):
9128 Highlight the correct candidate in the message.
9129
9130 2003-07-18 John Paul Wallington <jpw@gnu.org>
9131
9132 * simple.el (current-word): Don't include punctuation char when
9133 `really-word' arg is non-nil.
9134
9135 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
9136
9137 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
9138 moved to the directory obsolete.
9139
9140 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
9141
9142 * info.el (Info-menu-entry-name-re): Allow newlines in
9143 menu entry names.
9144
9145 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
9146 syntax-ppss-after-change-function.
9147 (syntax-ppss-after-change-function): New alias. Update uses.
9148 (syntax-ppss): Catch the case where the buffer is narrowed.
9149
9150 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9151
9152 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
9153 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
9154
9155 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9156
9157 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
9158 since it might be modified.
9159
9160 * progmodes/cc-langs.el (c++-make-template-syntax-table)
9161 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
9162 names to these language constants.
9163
9164 2003-07-15 Kim F. Storm <storm@cua.dk>
9165
9166 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
9167 All uses changed.
9168
9169 2003-07-14 Mark A. Hershberger <mah@everybody.org>
9170
9171 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
9172 Namespace support.
9173
9174 2003-07-13 Juanma Barranquero <lektu@terra.es>
9175
9176 * frame.el (modify-all-frames-parameters): Reinstall (copyright
9177 papers received).
9178
9179 2003-07-13 Karl Eichwalder <ke@suse.de>
9180
9181 * textmodes/po.el (po-find-charset): White space at the start of the
9182 Content-Type field body is non-mandatory.
9183
9184 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
9185
9186 * textmodes/texinfo.el (texinfo-section-list):
9187 Append appendixsection; a synonym for appendixsec.
9188
9189 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
9190
9191 * man.el (Man-translate-cleanup): New.
9192 (Man-translate-references): Call `Man-translate-cleanup' to clean
9193 leading, trailing and middle spaces.
9194
9195 2003-07-13 Lars Hansen <larsh@math.ku.dk>
9196
9197 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
9198 Handle `dired-directory' being a list.
9199
9200 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
9201
9202 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
9203 it doesn't exist.
9204
9205 2003-07-12 Richard M. Stallman <rms@gnu.org>
9206
9207 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
9208
9209 * progmodes/cc-defs.el (c-make-keywords-re):
9210 Don't use delete-duplicates.
9211 (c-lang-const): Don't use mapcan.
9212
9213 * apropos.el (apropos-show-scores): Make it customizable.
9214 Document new meaning.
9215 (apropos): Compute scores from symbols.
9216 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
9217
9218 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9219
9220 * ps-bdf.el: Fix copyright line.
9221 (bdf-directory-list): Fix initialization code.
9222
9223 2003-07-11 John Paul Wallington <jpw@gnu.org>
9224
9225 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
9226 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
9227 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
9228
9229 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
9230
9231 * emacs-lisp/ring.el (ring-elements): Doc fix.
9232
9233 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9234
9235 * calendar/timeclock.el (timeclock-relative)
9236 (timeclock-ask-before-exiting, timeclock-use-display-time):
9237 Doc changes.
9238 (timeclock-modeline-display): Give a message if
9239 `timeclock-use-display-time' is non-nil but `display-time-mode'
9240 is not active.
9241
9242 2003-07-11 Kenichi Handa <handa@m17n.org>
9243
9244 * international/mule-cmds.el (set-language-environment):
9245 Set current-language-environment to the correct string.
9246
9247 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9248
9249 * ps-print.el: Print line number correctly in a region. Reported by
9250 Tim Allen <timallen@ls83.fsnet.co.uk>.
9251 (ps-print-version): New version number (6.6.2).
9252 (ps-printing-region): Code fix.
9253
9254 2003-07-10 John Paul Wallington <jpw@gnu.org>
9255
9256 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
9257 this function can be called from `add-completions-from-tags-table'.
9258
9259 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
9260
9261 * calendar/timeclock.el (timeclock-use-display-time)
9262 (timeclock-day-over-hook, timeclock-workday-remaining)
9263 (timeclock-status-string, timeclock-when-to-leave)
9264 (timeclock-when-to-leave-string, timeclock-log-data)
9265 (timeclock-find-discrep, timeclock-day-base)
9266 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
9267 (timeclock-modeline-display): Set the variable
9268 `timeclock-modeline-display'.
9269 (timeclock-update-modeline): Doc fix. Respect value of
9270 `timeclock-relative'.
9271
9272 2003-07-09 Richard M. Stallman <rms@gnu.org>
9273
9274 * textmodes/reftex-parse.el (reftex-all-document-files):
9275 Add autoload cookie.
9276
9277 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
9278 (reftex-scanning-info-available-p): Add autoload cookie.
9279
9280 * international/mule-cmds.el
9281 (set-display-table-and-terminal-coding-system): Delete duplicate
9282 aset on standard-display-table.
9283
9284 * view.el (view-file): If existing buffer's major mode is special,
9285 don't go into view mode.
9286
9287 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
9288
9289 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9290
9291 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
9292 buffer changes; there's third party code that calls this function
9293 directly.
9294
9295 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9296
9297 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
9298 (autodoc-font-lock-keywords): Don't byte compile on font lock
9299 initialization when running from byte compiled files.
9300
9301 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9302
9303 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
9304 statement ends with auto-increment "++".
9305
9306 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9307
9308 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9309 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9310 these are changed, so declare them as variables and not constants.
9311
9312 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
9313
9314 * subr.el (dolist, dotimes): Doc fix.
9315
9316 2003-07-08 Kim F. Storm <storm@cua.dk>
9317
9318 * international/mule-cmds.el
9319 (set-display-table-and-terminal-coding-system): Don't break
9320 bootstrap if standard-display-table isn't setup yet.
9321
9322 2003-07-07 Richard M. Stallman <rms@gnu.org>
9323
9324 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
9325 Give it a doc string, and autoload it.
9326
9327 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
9328 Use with-no-warnings.
9329
9330 * info.el (Info-search): If find invisible text, search again.
9331
9332 * isearch.el (search-whitespace-regexp): Add a shy group around it.
9333
9334 * man.el (Man-name-regexp): Match + as part of name.
9335
9336 * simple.el (visible-mode): Rename from vis-mode.
9337 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
9338
9339 * simple.el (current-word): New arg REALLY-WORD specifies
9340 don't include punctuation chars.
9341
9342 * emacs-lisp/debug.el (debug, debugger-env-macro):
9343 Use with-no-warnings while accessing and binding unread-command-char.
9344
9345 * international/mule-cmds.el
9346 (set-display-table-and-terminal-coding-system): Use explicit loop
9347 instead of calling standard-display-default.
9348
9349 * net/ange-ftp.el (ange-ftp-file-symlink-p):
9350 Use condition-case to catch error in ange-ftp-get-files.
9351
9352 * net/browse-url.el (browse-url-browser-function):
9353 Add alternative for Epiphany.
9354 (browse-url-epiphany-program, browse-url-epiphany-arguments)
9355 (browse-url-epiphany-startup-arguments)
9356 (browse-url-epiphany-new-window-is-tab): New variables.
9357 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
9358
9359 * progmodes/compile.el (compile-auto-highlight): Default now t.
9360 (compile): Doc fix.
9361 (compilation-next-error): Fix previous change.
9362
9363 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
9364
9365 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
9366
9367 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
9368
9369 * gdb-ui.el (gdb-source-info): Display current frame when
9370 attaching to an existing process.
9371 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
9372 while laying out windows when attaching to an existing process.
9373
9374 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
9375
9376 * info.el (Info-menu): Use Info-menu-entry-name-re.
9377
9378 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
9379
9380 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
9381 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
9382
9383 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
9384 to match the same text.
9385
9386 2003-07-06 John Paul Wallington <jpw@gnu.org>
9387
9388 * vc.el (vc-annotate-offset): Move defvar up.
9389
9390 2003-07-06 Kim F. Storm <storm@cua.dk>
9391
9392 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
9393 This should fix the infinite loop when extracting menu names.
9394
9395 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9396
9397 * files.el (auto-mode-alist, interpreter-mode-alist):
9398 Remove entries to CC Mode modes to avoid duplicates; they are now added
9399 with autoload directives in cc-mode.el.
9400
9401 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9402
9403 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9404 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9405 these are changed, so declare them as variables and not constants.
9406
9407 * progmodes/cc-mode.el: Fix some autoload problems: Try to
9408 ensure that the entry for ".c" extension comes before the one for
9409 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
9410 Fix incorrect entries that were added to `interpreter-mode-alist'.
9411 Move the autoload directives for AWK to the top level since they
9412 aren't recognized anywhere else. Do not use the new AWK mode doc
9413 in the autoload form for the old AWK mode.
9414
9415 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9416
9417 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
9418 (bibtex-sort-ignore-string-entries): Default value t.
9419 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
9420 erroneously in previous version.
9421 (bibtex-string-files): Docstring reflects new parsing scheme.
9422 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
9423 docstring, add # as one of the chars to crush
9424 (bibtex-autokey-prefix-string, bibtex-autokey-names)
9425 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
9426 (bibtex-autokey-name-change-strings)
9427 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
9428 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
9429 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
9430 (bibtex-autokey-title-terminators)
9431 (bibtex-autokey-titlewords-stretch)
9432 (bibtex-autokey-titleword-ignore)
9433 (bibtex-autokey-titleword-case-convert)
9434 (bibtex-autokey-titleword-abbrevs)
9435 (bibtex-autokey-titleword-abbrevs)
9436 (bibtex-autokey-titleword-change-strings)
9437 (bibtex-autokey-titleword-length)
9438 (bibtex-autokey-titleword-separator)
9439 (bibtex-autokey-name-year-separator)
9440 (bibtex-autokey-year-title-separator)
9441 (bibtex-autokey-before-presentation-function)
9442 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
9443 Fix docstring.
9444 (bibtex-strings, bibtex-reference-keys):
9445 Use lazy-completion-table and make-variable-buffer-local.
9446 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
9447 (bibtex-braced-string-syntax-table)
9448 (bibtex-quoted-string-syntax-table): New variables.
9449 (bibtex-parse-nested-braces): Remove.
9450 (bibtex-parse-field-string): Use syntax table and forward-sexp.
9451 (bibtex-parse-association): Simplify.
9452 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
9453 (bibtex-parse-field-text): Simplify.
9454 (bibtex-search-forward-field, bibtex-search-backward-field):
9455 argument BOUND can take value t.
9456 (bibtex-start-of-field, bibtex-start-of-name-in-field)
9457 (bibtex-end-of-name-in-field, bibtex-end-of-field)
9458 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
9459 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
9460 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
9461 (bibtex-skip-to-valid-entry): Return buffer position of beginning
9462 and ending of entry. Update for changes of bibtex-search-entry.
9463 Simplify.
9464 (bibtex-map-entries): FUN is called with three arguments.
9465 (bibtex-search-entry): Return a cons pair with buffer positions of
9466 beginning and end of entry.
9467 (bibtex-enclosing-field): Simplify.
9468 (bibtex-format-entry): Use booktitle to set a missing title.
9469 (bibtex-autokey-get-names): Fiddle with regexps.
9470 (bibtex-generate-autokey): Use identity.
9471 (bibtex-parse-keys): Use simplified parsing algorithm if
9472 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
9473 arguments. Return alist of keys.
9474 (bibtex-parse-strings): Simplify. Return alist of strings.
9475 (bibtex-complete-string-cleanup): Fix docstring.
9476 (bibtex-read-key): New function.
9477 (bibtex-mode): Fix docstring. Do not parse for keys and
9478 strings when the mode is entered. Set fill-paragraph-function to
9479 bibtex-fill-field. Setup font-lock-mark-block-function the way
9480 font-lock intended.
9481 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
9482 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
9483 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
9484 (bibtex-Preamble): Avoid hard coded constants.
9485 (bibtex-make-field): Fix docstring. Simplify.
9486 (bibtex-beginning-of-entry): Always return new position of point.
9487 (bibtex-end-of-entry): Rearrange cond clauses.
9488 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
9489 Update for changes of bibtex-map-entries.
9490 (bibtex-ispell-abstract): Do not move point.
9491 (bibtex-entry-index): Use downcase. Simplify.
9492 (bibtex-lessp): Handle catch-all.
9493 (bibtex-find-crossref): Turn into a command.
9494 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
9495 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
9496 preamble entries.
9497 (bibtex-fill-field-bounds): New function.
9498 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
9499 (bibtex-fill-entry): Use bibtex-fill-field-bounds
9500 (bibtex-String): Use bibtex-strings. Always obey
9501 bibtex-sort-ignore-string-entries.
9502
9503 2003-07-05 John Paul Wallington <jpw@gnu.org>
9504
9505 * cus-theme.el (customize-create-theme):
9506 Call `customize-create-theme' in Reset widget's notify function.
9507
9508 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
9509 (ibuffer-mark-interactive): Use `or' instead of `unless'.
9510 (define-ibuffer-column name): Add summarizer.
9511 (define-ibuffer-column size): Likewise.
9512 (define-ibuffer-column filename): Likewise.
9513 (define-ibuffer-column process): Likewise. Change BODY's output too.
9514 (define-ibuffer-column filename-and-process): Likewise, likewise.
9515 (ibuffer): Remove local vars `already-in' and `need-update'.
9516
9517 * ibuf-ext.el: Don't require `derived' at compile-time.
9518
9519 2003-07-05 Kim F. Storm <storm@cua.dk>
9520
9521 * info.el: Disable paragraph refilling.
9522 (Info-refill-paragraphs): New defcustom.
9523 (Info-fontify-node): Use it.
9524
9525 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
9526
9527 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
9528 thingies from constructors created by defstruct.
9529
9530 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
9531 the default value of the variable.
9532 (byte-code-meter): Move declaration to top level.
9533
9534 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
9535
9536 * info.el (Info-following-node-name-re): New fun.
9537 (Info-following-node-name): Remove.
9538 (Info-insert-dir): Use the new fun.
9539 (Info-extract-pointer): Don't save restriction; use new fun.
9540 (Info-menu-entry-name-re): New const.
9541 (Info-menu-entry-name-re): Use it along with new fun.
9542 (Info-node-spec-re): Use new fun.
9543 (Info-complete-menu-item, Info-fontify-node): Use new const.
9544 (Info-goto-node, Info-follow-reference, Info-menu-update):
9545 Use match-string.
9546 (Info-follow-reference): Use assoc-string.
9547 Use a list of strings for the completion table.
9548 (Info-fontify-node): Use match-string, line-end-position.
9549 Limit the search for `node:' to the first line.
9550
9551 * newcomment.el (uncomment-region): Remove padding coming from
9552 comment-start rather than just from comment-padding.
9553
9554 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
9555 (vc-cvs-stay-local-p): Use vc-stay-local-p.
9556 (vc-cvs-rename-file): Remove (use the default).
9557 (vc-cvs-register): Register parent dir if needed.
9558 (vc-cvs-could-register): Return non-nil if parent can be registered.
9559 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
9560 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
9561
9562 * vc-svn.el (vc-svn-use-edit): Make it into a const.
9563 (vc-svn-update): Fix the arguments to `svn'.
9564 (vc-svn-diff-tree): Just use `vc-svn-diff'.
9565 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
9566 Simple implementations, assuming `name' is a URL.
9567
9568 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
9569 set of chars allowed unquoted in a case pattern.
9570
9571 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
9572
9573 * font-lock.el (font-lock-extra-types-widget)
9574 (c-font-lock-extra-types, c++-font-lock-extra-types)
9575 (objc-font-lock-extra-types, java-font-lock-extra-types)
9576 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
9577 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
9578 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
9579 (font-lock-match-c++-structor-declaration)
9580 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
9581 (c++-font-lock-keywords-3, c++-font-lock-keywords)
9582 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
9583 (objc-font-lock-keywords-3, objc-font-lock-keywords)
9584 (java-font-lock-keywords-1, java-font-lock-keywords-2)
9585 (java-font-lock-keywords-3, java-font-lock-keywords)
9586 (java-font-lock-syntactic-face-function): Remove obsolete code
9587 and constants. It's all in cc-fonts.el now.
9588
9589 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
9590
9591 * mail/sendmail.el (mail-specify-envelope-from)
9592 (mail-envelope-from): Doc fix.
9593
9594 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
9595
9596 * generic-x.el: Do away with the dependency on `c-emacs-features'
9597 when populating `rul-generic-mode-syntax-table'; we already know
9598 this isn't XEmacs.
9599
9600 See ChangeLog.10 for earlier changes.
9601
9602 ;; Local Variables:
9603 ;; coding: iso-2022-7bit
9604 ;; End:
9605
9606 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
9607 Copying and distribution of this file, with or without modification,
9608 are permitted provided the copyright notice and this notice are preserved.
9609
9610 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1