]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* isearch.el (isearch-wrap-function)
[gnu-emacs] / lisp / ChangeLog
1 2004-09-01 Juri Linkov <juri@jurta.org>
2
3 * isearch.el (isearch-wrap-function)
4 (isearch-push-state-function): New defvars.
5 (isearch-pop-fun-state): New defsubst.
6 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
7 (isearch-push-state): Set the result of calling
8 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
9 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
10 restore the mode-specific starting point of terminated search.
11 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
12 (isearch-repeat): Call `isearch-wrap-function' if defined.
13 (isearch-message-prefix): Don't add prefix "over" to the message
14 for wrapped search if `isearch-wrap-function' is defined.
15 (isearch-search): Call function saved in `isearch-pop-fun-state' to
16 restore the mode-specific starting point of failed search.
17
18 * info.el (Info-search-whitespace-regexp): Fix backslashes.
19 (Info-search): Add new optional arguments for the sake of isearch.
20 Replace whitespace in Info-search-whitespace-regexp literally.
21 Add backward search. Don't call `Info-select-node' if regexp is
22 found in the same Info node. Don't add node to Info-history for
23 wrapped isearch.
24 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
25 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
26 (Info-mode): Set local variables `isearch-search-fun-function',
27 `isearch-wrap-function', `isearch-push-state-function',
28 `search-whitespace-regexp'.
29
30 * isearch.el: Remove ancient Change Log section.
31 (isearch-string, isearch-message-string, isearch-point)
32 (isearch-success, isearch-forward-flag, isearch-other-end)
33 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
34 (isearch-barrier, isearch-within-brackets)
35 (isearch-case-fold-search): Add suffix `-state' to state-related
36 defsubsts to avoid name clashes with other function names.
37
38 * simple.el (next-error): New defgroup and defface.
39 (next-error-highlight, next-error-highlight-no-select):
40 New defcustoms.
41 (next-error-no-select): Let-bind next-error-highlight to the value
42 of next-error-highlight-no-select before calling `next-error'.
43
44 * progmodes/compile.el (compilation-goto-locus):
45 Use `next-error' face instead of `region'. Set 4-th argument of
46 `move-overlay' to `current-buffer' to move overlay to different
47 source buffers. Use new variable `next-error-highlight'.
48
49 * simple.el (next-error-find-buffer): Move the rule
50 "if current buffer is a next-error capable buffer" after the
51 rule "if next-error-last-buffer is set to a live buffer".
52 Simplify to test all rules in one `or'.
53 (next-error): Doc fix.
54 (next-error, previous-error, first-error)
55 (next-error-no-select, previous-error-no-select):
56 Make arguments optional.
57
58 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
59
60 * macros.el (apply-macro-to-region-lines): Make it operate on all
61 lines that begin in the region, rather than on all complete lines
62 in the region.
63
64 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
65
66 * x-dnd.el (x-dnd-protocol-alist): Document update.
67 (x-dnd-known-types): Defcustom it.
68 (x-dnd-handle-motif): Print message-atom in error message.
69
70 2004-08-30 John Paul Wallington <jpw@gnu.org>
71
72 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
73 strings rather than programatically constructing message.
74
75 2004-08-30 Richard M. Stallman <rms@gnu.org>
76
77 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
78 Don't return a string that would read as the wrong character code.
79
80 2004-08-29 Kim F. Storm <storm@cua.dk>
81
82 * emulation/cua-base.el (cua-auto-expand-rectangles): Remove
83 automatic rectangle padding feature; replace by non-destructive
84 virtual rectangle edges feature.
85 (cua-virtual-rectangle-edges): New defcustom.
86 (cua-auto-tabify-rectangles): New defcustom.
87 (cua-paste): If paste into a marked rectangle, insert rectangle at
88 current column, even if virtual; also paste exactly as many lines
89 as has been marked (ignore additional lines or add empty lines),
90 but paste whole source if only one line is marked.
91 (cua--update-indications): No longer use overwrite-cursor to
92 indicate rectangle padding
93
94 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
95 (cua--rectangle-virtual-edges): New defun.
96 (cua--rectangle-get-corners): Remove optional PAD arg.
97 (cua--rectangle-set-corners): Never do padding.
98 (cua--forward-line): Remove optional PAD arg. Simplify.
99 (cua-resize-rectangle-right, cua-resize-rectangle-left)
100 (cua-resize-rectangle-down, cua-resize-rectangle-up):
101 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
102 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
103 (cua--rectangle-move): Never do padding. Simplify.
104 (cua--tabify-start): New defun.
105 (cua--rectangle-operation): Add tabify arg. All callers changed.
106 (cua--pad-rectangle): Remove.
107 (cua--delete-rectangle): Handle delete with virtual edges.
108 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
109 (cua--insert-rectangle): Handle insert at virtual column.
110 Perform auto-tabify if necessary.
111 (cua--activate-rectangle): Remove optional FORCE arg.
112 Never do padding. Simplify.
113 (cua--highlight-rectangle): Enhance for virtual edges.
114 (cua-toggle-rectangle-padding): Remove command.
115 (cua-toggle-rectangle-virtual-edges): New command.
116 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
117 (cua--rectangle-post-command): Don't force rectangle padding.
118 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
119
120 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
121
122 * indent.el (edit-tab-stops-buffer): Doc fix.
123
124 2004-08-28 Richard M. Stallman <rms@gnu.org>
125
126 * progmodes/grep.el (grep-default-command): Use find-tag-default.
127 (grep-tag-default): Function deleted.
128
129 * subr.el (find-tag-default): Moved from etags.el.
130
131 * progmodes/etags.el (find-tag-default): Moved to subr.el.
132
133 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
134 into the basic character if it has an uppercase form.
135
136 2004-08-27 Kenichi Handa <handa@m17n.org>
137
138 * international/utf-8.el (utf-8-post-read-conversion): If the
139 buffer is unibyte, temporarily make it multibyte.
140
141 2004-08-27 Masatake YAMATO <jet@gyve.org>
142
143 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
144
145 2004-08-25 John Paul Wallington <jpw@gnu.org>
146
147 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
148 0, 1, and many mismatches in message.
149 (tex-start-shell): Use `set-process-query-on-exit-flag'.
150
151 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
152 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
153
154 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
155
156 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
157 vc-diff-switches differently.
158
159 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
160
161 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
162 before and a real defvar after
163 `speedbar-supported-extension-expressions'. This is to silence
164 the compiler without breaking bootstrapping.
165
166 2004-08-22 Richard M. Stallman <rms@gnu.org>
167
168 * textmodes/flyspell.el (flyspell-word):
169 Use set-process-query-on-exit-flag.
170 (flyspell-highlight-duplicate-region): Take POSS as arg.
171 (flyspell-word): Pass POSS as arg.
172
173 * progmodes/ada-xref.el: Many doc and style fixes.
174 (ada-find-any-references): Use compilation-start.
175 (ada-get-ali-file-name): Improve error msg.
176 (ada-get-ada-file-name): Likewise.
177
178 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
179 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
180
181 * mail/mail-extr.el (mail-extr-all-top-level-domains):
182 Add forward defvar.
183
184 * whitespace.el (global-whitespace-mode): New alias
185 for whitespace-global-mode.
186
187 * speedbar.el (speedbar-file-regexp): Definition moved up.
188 (speedbar-mode, speedbar-set-mode-line-format):
189 Use with-no-warnings.
190 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
191
192 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
193 controls whether to display the error buffer.
194
195 * ps-mule.el: Delete compatibility code for old Emacses.
196 (ps-mule-find-wrappoint): Don't use chars-in-region.
197
198 * frame.el (display-mouse-p, display-selections-p):
199 Use with-no-warnings.
200
201 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
202
203 2004-08-22 David Kastrup <dak@gnu.org>
204
205 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
206 information.
207
208 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
209
210 2004-08-22 Andreas Schwab <schwab@suse.de>
211
212 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
213
214 2004-08-22 Masatake YAMATO <jet@gyve.org>
215
216 * cvs-status.el (cvs-status-checkout): New function.
217 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
218
219 2004-08-21 David Kastrup <dak@gnu.org>
220
221 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
222 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
223 has been converted to use hashtables, the relation `nil=none' is
224 no longer valid, as `nil' is not a hashtable. This patch tries to
225 reduce the number of resulting errors.
226
227 2004-08-21 John Paul Wallington <jpw@gnu.org>
228
229 * subr.el (process-kill-without-query): Made obsolete in
230 version 21.4, not 21.5.
231
232 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
233 (vc-previous-comment, vc-next-comment)
234 (vc-comment-search-reverse, vc-comment-search-forward)
235 (vc-comment-to-change-log): Likewise.
236
237 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
238
239 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
240
241 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
242 Correct indentation of DEFMETHODS with non-standard method
243 combinations (e.g., PROGN, MIN, MAX).
244
245 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
246
247 * startup.el (normal-top-level-add-subdirs-to-load-path):
248 Avoid unnecessarily checking system-type.
249 (normal-top-level): Set TERM to "dumb". Simplify.
250
251 * avoid.el (mouse-avoidance-ignore-p): New fun.
252 Also ignore switch-frame, select-window, double, and triple clicks.
253 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
254 (mouse-avoidance-fancy-hook): Use it.
255
256 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
257
258 * avoid.el (mouse-avoidance-nudge-mouse)
259 (mouse-avoidance-banish-destination): Stay within the current window
260 to avoid problems with mouse-autoselect-window.
261
262 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
265 the newer format of some messages in cvs-1.12.1.
266
267 2004-08-19 Masatake YAMATO <jet@gyve.org>
268
269 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
270 (elp-results-jump-to-definition-by-mouse)
271 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
272 (elp-output-result): Use elp-output-insert-symname.
273
274 2004-08-18 Kenichi Handa <handa@m17n.org>
275
276 * language/cyrillic.el: Register koi8-r in
277 ctext-non-standard-encodings-alist.
278 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
279
280 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
281
282 * emacs-lisp/copyright.el (copyright-update-year): Delete code
283 that replaces 20xy with xy.
284
285 2004-08-17 John Paul Wallington <jpw@gnu.org>
286
287 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
288 (reb-force-update): Doc fix.
289
290 2004-08-16 Richard M. Stallman <rms@gnu.org>
291
292 * progmodes/which-func.el (which-func-update-1): Doc fix.
293
294 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
295 (sh-mode-abbrev-table): New variable.
296
297 * progmodes/compile.el (compilation-mode): Doc fix.
298
299 * emacs-lisp/lisp-mode.el (eval-last-sexp):
300 Don't cons a new symbol each time.
301 (eval-last-sexp-fake-value): New variable.
302
303 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
304 (copyright-update-year): Detect continuation of list of years.
305
306 * term.el (term-default-fg-color, term-default-bg-color)
307 (ansi-term-color-vector): Use `unspecified', not nil, as default.
308
309 * imenu.el: Several doc fixes: don't say variables are buffer-local.
310
311 2004-08-16 Davis Herring <herring@lanl.gov>
312
313 * isearch.el (isearch-string, isearch-message-string, isearch-point)
314 (isearch-success, isearch-forward-flag, isearch-other-end)
315 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
316 (isearch-barrier, isearch-within-brackets)
317 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
318
319 2004-08-16 Kenichi Handa <handa@m17n.org>
320
321 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
322
323 2004-08-15 Kenichi Handa <handa@m17n.org>
324
325 * term/x-win.el (x-selection-value): If utf8 was successful but
326 ctext was not, use utf8 string.
327
328 2004-08-14 Davis Herring <herring@lanl.gov>
329
330 * isearch.el: Remove accidental changes of March 4. Fix backing
331 up when a regexp isearch is made more general. Use symbolic
332 accessor functions for isearch stack frames to make usage clearer.
333 (search-whitespace-regexp): Made groups in documentation shy (as
334 is the group in the default value).
335 (isearch-fallback): New function, addresses problems with regexps
336 liberalized by `\|', adds support for liberalization by `\}' (the
337 general repetition construct), and incorporates behavior for
338 `*'/`?'.
339 (isearch-}-char): New command, calls `isearch-fallback' with
340 arguments appropriate to a typed `}'.
341 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
342 appropriately.
343 (isearch-mode-map): Bind `}' to `isearch-}-char'.
344 (isearch-string, isearch-message,string, isearch-point)
345 (isearch-success, isearch-forward-flag, isearch-other-end)
346 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
347 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
348 New inline functions to read fields of a stack frame.
349
350 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
351
352 * battery.el (battery-linux-proc-acpi): Look into battery
353 directories matching the literal string "CMB", too (required for
354 Linux kernel version 2.6.7).
355
356 2004-08-14 John Paul Wallington <jpw@gnu.org>
357
358 * cus-start.el (read-file-name-completion-ignore-case): Add.
359 (blink-cursor-alist): Change version to "21.4".
360
361 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
362
363 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
364
365 * speedbar.el (speedbar-scan-subdirs): New option.
366 (speedbar-file-lists): Don't ignore file-name case on Unix and use
367 dolist.
368 (speedbar-insert-files-at-point): Take an extra argument and use
369 it to optionally find out if a subdir is empty. Also unreadable
370 files don't get expand buttons.
371 (speedbar-directory): New image (unused pixmap already existed).
372 (speedbar-expand-image-button-alist): Use it.
373
374 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
375
376 CC Mode update to 5.30.9:
377
378 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
379 Move from cc-vars to cc-defs for dependency reasons. Fix the
380 POSIX char class test to check that it works in
381 `skip-chars-(forward|backward)' too.
382
383 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
384 first argument starts with a special brace list.
385
386 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
387 when `c-opt-type-concat-key' is used (i.e. in Pike).
388
389 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
390 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
391 >)".
392
393 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
394 whitespace safe.
395
396 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
397 position for `arglist-intro', `arglist-cont-nonempty' and
398 `arglist-close' when there are two arglist open parens on the same
399 line and there's nothing in front of the first.
400
401 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
402 locking of qualified names in Java, which previously could fontify
403 common indexing expressions in many cases. The standard Java
404 naming conventions are used to tell them apart.
405
406 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
407 Fix inconsistency wrt opening parens on the first line inside a paren
408 block.
409
410 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
411 compile time for the sake of `c-major-mode-is'.
412
413 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
414 `c-major-mode-is' in the event that this is used inside a
415 `c-lang-defconst'.
416
417 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
418 `c-lang-defconst' so that it works better with fallback languages.
419
420 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
421 it to fail to record the base mode.
422
423 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
424 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
425 is used. Reordered the syntax checks to get more efficient
426 skipping in some situations.
427
428 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
429 continuation which might precede the newly inserted '{'.
430
431 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
432 Fix cases where it could loop indefinitely.
433
434 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
435 size specs correctly. Only fontify identifiers in front of '('
436 with as functions - don't accept any paren char. Tightened up
437 initializer skipping to stop before function and class blocks.
438
439 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
440 the point could be left directly after an open paren when finding
441 the beginning of the first decl in the block.
442
443 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
444 table when filtering out legitimate open parens to be recorded.
445 This could cause cache inconsistencies when e.g.
446 `c++-template-syntax-table' was temporarily in use.
447
448 * progmodes/cc-engine.el (c-on-identifier)
449 (c-simple-skip-symbol-backward): Small fix for handling "-"
450 correctly in `skip-chars-backward'. Affected the operator lfun
451 syntax in Pike.
452
453 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
454 Fix bug that could cause an error from `after-change-functions' when
455 the changed region is at bob.
456
457 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
458
459 CC Mode update to 5.30.9:
460
461 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
462 to say that <TAB> doesn't insert WS into a CPP line.
463 (c-indent-command, c-tab-always-indent): Amend doc strings.
464
465 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
466 checks for user errors, thus eliminating cryptic and unhelpful
467 Emacs error messages. (1) Check the arg to `c-set-style' is a
468 string. (2) Check that settings to `c-offsets-alist' are not
469 spuriously quoted.
470
471 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
472 which precedes the newly inserted `{'.
473
474 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
475
476 Sync with Tramp 2.0.44.
477
478 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
479 function "tramp_file_attributes". Otherwise, file names
480 containing spaces are misinterpreted. Reported by Magnus Henoch
481 <mange@freemail.hu>.
482 (tramp-handle-file-truename): FILENAME must be expanded first.
483 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
484 obscure results. Reported by D. Goel <deego@gnufans.org>.
485 (tramp-handle-verify-visited-file-modtime): If file does not
486 exist, say it is not modified if and only if that agrees with the
487 buffer's record. Check whether a file is visiting the buffer, or
488 the buffer has no recorded last modification time. Return t in
489 case the visiting file doesn't exist. Suggested by Luc Teirlinck
490 <teirllm@auburn.edu>.
491 (tramp-handle-write-region): Pass modtime explicitely to
492 `set-visited-file-modtime', because filename can be different
493 from (buffer-file-name) if `file-precious-flag' is set.
494 `set-visited-file-modtime' must be called always when `visit' is t
495 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
496 (tramp-handle-set-visited-file-modtime): If `time-list' is not
497 nil, don't apply the whole body. If the file doesn't exists, set
498 modtime to '(-1 65535). Suggested by Luc Teirlinck
499 <teirllm@auburn.edu>.
500
501 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
502
503 * help.el (describe-bindings): Doc fix.
504
505 * subr.el (kbd): Doc fix.
506
507 2004-08-08 John Paul Wallington <jpw@gnu.org>
508
509 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
510 instead of `string-to-int'.
511 (define-ibuffer-column mode): Fix indentation.
512
513 2004-08-08 Lars Hansen <larsh@math.ku.dk>
514
515 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
516
517 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
518
519 * subr.el (global-unset-key, local-unset-key): Doc fixes.
520
521 * novice.el (disabled-command-function): New variable renamed from
522 `disabled-command-hook'.
523 (disabled-command-hook): Keep the _variable_ as alias for
524 `disabled-command-function' and make obsolete.
525 (disabled-command-function): Function renamed from
526 `disabled-command-hook'. Adapt code to name change of the variable.
527
528 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
529
530 * simple.el (completion-root-regexp): New defvar.
531 (completion-setup-function): Use it instead of a literal string.
532
533 2004-08-07 John Paul Wallington <jpw@gnu.org>
534
535 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
536 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
537 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
538 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
539
540 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
541
542 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
543 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
544
545 2004-08-04 Kenichi Handa <handa@m17n.org>
546
547 * international/encoded-kb.el (encoded-kbd-setup-keymap):
548 Fix previous change.
549
550 2004-08-03 Kenichi Handa <handa@m17n.org>
551
552 * international/encoded-kb.el: The following changes are to
553 utilize key-translation-map instead of minor mode map.
554 (encoded-kbd-iso2022-non-ascii-map): Delete it.
555 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
556 (encoded-kbd-last-key): New function.
557 (encoded-kbd-iso2022-single-shift): New function.
558 (encoded-kbd-iso2022-designation)
559 (encoded-kbd-self-insert-iso2022-7bit)
560 (encoded-kbd-self-insert-iso2022-8bit)
561 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
562 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
563 key-translation-map.
564 (encoded-kbd-setup-keymap): Setup key-translation-map.
565 (saved-key-translation-map): New variable.
566 (encoded-kbd-mode): Save/restore key-translation-map. Adjusted
567 for the change of encoded-kbd-setup-keymap.
568
569 2004-08-02 Kim F. Storm <storm@cua.dk>
570
571 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
572 and call compute-motion with nil for topos and width to get proper
573 usable width and height for both window and non-window systems.
574
575 * windmove.el (windmove-coordinates-of-position): Let compute-motion
576 calculate usable window width and height.
577
578 * window.el (window-buffer-height): Call compute-motion with nil width.
579
580 2004-08-01 David Kastrup <dak@gnu.org>
581
582 * replace.el (query-replace-read-from):
583 Use `query-replace-compile-replacement'.
584 (query-replace-compile-replacement): New function.
585 (query-replace-read-to): Use `query-replace-compile-replacement'
586 for repeating the last command.
587
588 2004-08-01 John Paul Wallington <jpw@gnu.org>
589
590 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
591 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
592 (pr-switches): Remove period from end of error messages.
593
594 * help-mode.el (help-go-back): Likewise.
595
596 * abbrev.el (only-global-abbrevs): Doc fix.
597 (edit-abbrevs-map): Define within defvar.
598 (quietly-read-abbrev-file): Doc fix.
599
600 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
601
602 * novice.el (enable-command, disable-command): Doc fixes.
603
604 * subr.el (event-modifiers, event-basic-type): Doc fixes.
605
606 2004-07-30 Richard M. Stallman <rms@gnu.org>
607
608 * subr.el (with-local-quit): Doc fix.
609
610 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
611
612 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
613
614 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
615
616 * custom.el (defcustom): Doc fix.
617
618 2004-07-28 Masatake YAMATO <jet@gyve.org>
619
620 * progmodes/etags.el (etags-tags-apropos): Show building progress.
621
622 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
623
624 * imenu.el (imenu-prev-index-position-function)
625 (imenu-extract-index-name-function, imenu-name-lookup-function)
626 (imenu--index-alist): Docstring redundancy fix.
627
628 2004-07-25 Lars Hansen <larsh@math.ku.dk>
629
630 * wdired.el (wdired-finish-edit): Require dired-aux before locally
631 binding dired-backup-overwrite.
632
633 2004-07-25 John Paul Wallington <jpw@gnu.org>
634
635 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
636
637 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
638
639 * term/tty-colors.el (tty-color-approximate): Doc fix.
640
641 * select.el (x-get-selection, x-set-selection): Doc fixes.
642
643 * frame.el (make-frame): Doc fix.
644
645 2004-07-24 Richard M. Stallman <rms@gnu.org>
646
647 * mail/rmail.el (rmail-mime-charset-pattern):
648 Don't include semicolon in the charset value.
649
650 * replace.el (occur-next-error): Call set-window-point.
651 (occur-engine): Handle negative NLINES.
652
653 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
654
655 * frame.el (modify-all-frames-parameters): Minor doc fix.
656 (set-frame-configuration): Doc fix.
657
658 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
659
660 * simple.el (completion-setup-function): Compute the common parts
661 and the first difference place correctly when
662 partial-completion-mode is on.
663
664 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
665
666 * ps-print.el: Doc fix.
667 (ps-print-version): New version 6.6.5.
668 (ps-printing-region): Doc fix.
669 (ps-generate-string-list): Comment fix.
670 (ps-message-log-max): Code fix.
671
672 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
673
674 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
675 generated PostScript.
676
677 2004-07-22 Kim F. Storm <storm@cua.dk>
678
679 * progmodes/make-mode.el: Fix comments.
680
681 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
682
683 * printing.el: Doc fix.
684
685 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
686
687 * frame.el (modify-all-frames-parameters): Minor doc fix.
688
689 2004-07-20 Richard M. Stallman <rms@gnu.org>
690
691 * textmodes/fill.el (fill-nobreak-p): If this break point is
692 at the end of the line, don't consider the newline which follows
693 as a reason to return t.
694
695 2004-07-19 John Paul Wallington <jpw@gnu.org>
696
697 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
698
699 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
700
701 * dired-aux.el (dired-do-kill-lines): Expand docstring.
702 Delete irrelevant code.
703
704 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
705
706 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
707 New docstring. From Luc Teirlinck.
708
709 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
710
711 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
712 section.
713 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
714 non-file buffers. We know it is nil.
715
716 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
717
718 Sync with Tramp 2.0.43.
719
720 * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove
721 outdated comment.
722 (tramp-locked, tramp-locker): New variables for implementing a
723 global lock.
724 (tramp-sh-file-name-handler): Use them to implement the global
725 lock.
726
727 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
728
729 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
730 calls to respective `xxx` calls.
731 (tramp-process-alive-regexp): Precise doc string.
732 (tramp-multi-action-process-alive): New defun.
733 (tramp-multi-actions): Use it.
734 (tramp-handle-find-backup-file-name): `copy-tree' is available
735 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
736 in order to avoid this function.
737 (tramp-handle-write-region): Set current buffer. If connection
738 wasn't open, `file-modes' has changed it accidently. Reported by
739 David Kastrup <dak@gnu.org>.
740 (tramp-enter-password, tramp-read-passwd): New arguments USER and
741 HOST.
742 (tramp-action-password, tramp-multi-action-password): Apply it.
743 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
744 name must still contain the port number. Otherwise, we have two
745 Tramp buffers, with all the confusion. Reported by Myron Selby
746 <myron@xytech.com> and Rolf Dubitzky
747 <Dubitzky@physi.uni-heidelberg.de>.
748
749 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
750 HOST to `tramp-enter-passwd'.
751
752 * net/tramp-vc.el (all): Code cleanup. Change all
753 `tramp-handle-xxx' calls to respective `xxx` calls.
754
755 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
756
757 * emacs-lisp/testcover.el: New category "potentially-1valued" for
758 functions that are not erroneous if either 1-valued or
759 multi-valued. Detect functions in this class.
760 (testcover-1value-functions, testcover-compose-functions,
761 testcover-progn-functions) Added some additional functions to lists.
762 (testcover-mark): Bugfix when marking up the definition for an
763 empty function.
764
765 2004-07-17 Richard M. Stallman <rms@gnu.org>
766
767 * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer.
768
769 * mail/footnote.el (footnote-section-tag): Use defcustom.
770
771 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
772 Compile font-lock-keywords, not KEYWORDS.
773 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
774 Add warn, check-type. Handle cerror like error.
775
776 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
777
778 * progmodes/which-func.el (which-func-keymap): New var.
779 (which-func-face): New face.
780 (which-func-format): Use them.
781
782 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
783
784 * buff-menu.el (list-buffers-noselect): Append the buffer's
785 process status to its mode name.
786
787 2004-07-16 Kim F. Storm <storm@cua.dk>
788
789 * simple.el (inhibit-mark-movement): New defvar.
790 (beginning-of-buffer, end-of-buffer): Do not push mark if
791 inhibit-mark-movement is non-nil or C-u prefix is given.
792
793 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
794 Init to beginning-of-buffer and end-of-buffer.
795 (cua--undo-push-mark): New defvar.
796 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
797 already active and command is in cua--preserve-mark-commands.
798 Also fix check for shift modifier on non-window systems.
799 (cua--post-command-handler): Clear inhibit-mark-movement if set.
800
801 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
802
803 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
804 of two integers, instead of a cons.
805
806 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
807 `visited-file-modtime' now returns a list of two integers, instead
808 of a cons.
809
810 * dired.el (dired-directory-changed-p): Ditto.
811
812 * progmodes/grep.el (grep): Doc fix.
813
814 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
815
816 * autorevert.el (auto-revert-tail-mode)
817 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
818 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
819 in both at the same time.
820 (auto-revert-tail-mode): New command.
821 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
822 (auto-revert-handler): Revert only either tail or whole file.
823
824 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
825 add auto-revert-tail-mode.
826
827 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
828
829 * printing.el: Doc fix. Change name of some funs.
830 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
831 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
832 (pr-standard-file-name): New fun. Replace pr-standard-path.
833 (pr-call-process): Code fix.
834
835 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
836
837 * subr.el (with-selected-window): Doc fix.
838
839 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
840
841 * subr.el (get-buffer-window-list): Doc fix.
842
843 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
844
845 * files.el (switch-to-buffer-other-window): Doc fix.
846
847 * window.el (save-selected-window, one-window-p)
848 (split-window-keep-point, split-window-vertically)
849 (split-window-horizontally): Doc fixes.
850
851 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
852
853 * printing.el: Doc fix. Now it uses call-process instead of
854 shell-command for low command execution.
855 (pr-version): New version number (6.8).
856 (pr-shell-file-name): Option removed.
857 (pr-shell-command): Fun removed.
858 (pr-call-process): New fun. Replace pr-shell-command.
859 (pr-standard-path, pr-remove-nil-from-list): New funs.
860 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
861 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
862 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
863 (pr-ps-utility-process, pr-txt-print): Code fix.
864
865 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
866
867 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
868 boolean.
869
870 2004-07-09 Lars Hansen <larsh@math.ku.dk>
871
872 * wid-edit.el (widget-field-buffer): Doc fix.
873
874 2004-07-09 John Paul Wallington <jpw@gnu.org>
875
876 * emacs-lisp/re-builder.el (reb-update-overlays): Distinguish
877 between one and several matches in message.
878
879 2004-07-09 Richard M. Stallman <rms@gnu.org>
880
881 * mouse.el (mouse-set-region-1): If transient-mark-mode
882 is `identity', change it to `only'.
883
884 * simple.el (current-word): Doc fix.
885
886 2004-07-09 Mark A. Hershberger <mah@everybody.org>
887
888 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
889 so that it is more understanding of whitespace.
890
891 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
892 form
893 (("ns" . "element") (attr-list) children) instead of
894 ((:ns . "element") (attr-list) children) in order to reduce the
895 number of symbols used.
896 (xml-skip-dtd): Change to use xml-parse-dtd but set
897 xml-validating-parsing to nil.
898 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
899 (xml-substitute-entity): Remove in favor of new entity substitution.
900 (xml-substitute-special): Rewrite in to substitute complex
901 entities from DOCTYPE declarations.
902 (xml-parse-fragment): Parse fragments from entity deleclarations.
903 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
904 (xml-parse-dtd, xml-substitute-special): Make validity checks
905 conditioned on xml-validating-parser. Add "Not Well Formed" to
906 error messages about well-formedness.
907
908 2004-07-08 Steven Tamm <steventamm@mac.com>
909
910 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
911 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
912 Do not treat double clicks and triple clicks specially in the
913 scroll bar (preventing strange repositioning problems)
914
915 2004-07-06 Stefan <monnier@iro.umontreal.ca>
916
917 * replace.el (query-replace-regexp-eval): Fix last change.
918
919 2004-07-05 Stefan <monnier@iro.umontreal.ca>
920
921 * replace.el (query-replace-descr): New fun.
922 (query-replace-read-from, query-replace-read-args): Default to the
923 previous from&to.
924 (query-replace-read-to): Quote the `from' string when displaying it.
925 (query-replace-regexp-eval): Immediately check read-only status.
926 Use query-replace-read-from to get the \n checking.
927 Quote the `from' string when displaying it.
928 (map-query-replace-regexp, occur-read-primary-args):
929 Quote the `from' string when displaying it.
930
931 * isearch.el (isearch-query-replace): Pass the regexp-ness and
932 delimited-ness of the search to query-replace.
933
934 * replace.el (query-replace-read-from, query-replace-read-to):
935 New funs extracted from query-replace-read-args.
936 (query-replace-read-args): Use them.
937
938 * replace.el (query-replace-interactive, query-replace-read-args):
939 Remove the `initial' special value.
940 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
941 (occur-engine): Remove unused var `matchend'.
942
943 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
944 Use the search string without prompting.
945
946 2004-07-05 Kenichi Handa <handa@m17n.org>
947
948 * international/mule.el (decode-coding-inserted-region):
949 Set last-coding-system-used only when coding is nil.
950
951 2004-07-03 Eli Zaretskii <eliz@gnu.org>
952
953 * progmodes/grep.el (grep-compute-defaults, grep-command)
954 (grep-program, find-program, grep-find-use-xargs, grep-history)
955 (grep-find-history, grep-tag-default, grep-find-command)
956 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
957 Add autoload cookies, for unbundled packages that load `compile'
958 and expect all grep-related symbols to become defined.
959
960 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
961
962 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
963 (iimage-mode-image-search-path): New user option to search the
964 image file.
965 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
966 have locate-file.
967 (iimage-mode-buffer): Use it.
968
969 2004-07-03 Nick Roberts <nickrob@gnu.org>
970
971 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
972 carefully.
973 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
974
975 2004-07-03 Juri Linkov <juri@jurta.org>
976
977 * replace.el (query-replace-read-args): Swallow space after 'foo,
978 not after (quote foo). Match space only immediately after symbol,
979 not anywhere in the whole string.
980
981 2004-07-02 Richard M. Stallman <rms@gnu.org>
982
983 * replace.el (query-replace-read-args): Swallow space after
984 symbols, not after closeparens. But avoid error if string ends there.
985
986 * progmodes/python.el (python-beginning-of-statement):
987 Exit the loop if backward-up-list gets error.
988
989 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
990
991 2004-07-02 Andre Spiegel <spiegel@gnu.org>
992
993 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
994 only if vc-consult-headers is non-nil.
995
996 2004-07-02 Juri Linkov <juri@jurta.org>
997
998 * pcvs.el (cvs-mode-diff-repository): New command.
999
1000 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
1001
1002 2004-07-01 Juri Linkov <juri@jurta.org>
1003
1004 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
1005 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
1006 C-M-% to isearch-query-replace-regexp.
1007 (minibuffer-local-isearch-map): Add arrow key bindings.
1008 Bind C-f to isearch-yank-char-in-minibuffer.
1009 (isearch-forward): Doc fix.
1010 (isearch-edit-string): Doc fix.
1011 (isearch-query-replace, isearch-query-replace-regexp): New funs.
1012 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
1013 (isearch-yank-char): Add optional arg.
1014 (isearch-yank-char-in-minibuffer): New fun.
1015
1016 * replace.el (query-replace-interactive): Change type from boolean
1017 to choice. Add value `initial'.
1018 (query-replace-read-args): Handle value `initial' of
1019 query-replace-interactive.
1020
1021 2004-06-29 Kim F. Storm <storm@cua.dk>
1022
1023 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
1024 (breakpoint-disabled-bitmap-face): Add :group 'gud.
1025
1026 * progmodes/ada-xref.el (ada-tight-gvd-integration):
1027 Add :group 'ada.
1028
1029 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
1030
1031 2004-06-29 Juri Linkov <juri@jurta.org>
1032
1033 * replace.el (query-replace-read-args): Swallow a space after
1034 everything except )]" which in most cases means after a symbol.
1035
1036 * emacs-lisp/pp.el (pp-buffer): Add autoload.
1037
1038 2004-06-28 Richard M. Stallman <rms@gnu.org>
1039
1040 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
1041 More changes to go with previous change in font-lock.el.
1042
1043 2004-06-26 David Kastrup <dak@gnu.org>
1044
1045 * replace.el (perform-replace): Highlight the match even in
1046 non-query mode if there is potential replace string editing.
1047
1048 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
1049
1050 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
1051 agree with new return value of `file-remote-p'.
1052 This syncs with Tramp 2.0.42.
1053
1054 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
1055 according to new documentation of `file-remote-p'.
1056
1057 * files.el (file-remote-p): Fix doc to say that return value is
1058 identification of remote system, if not nil.
1059 (file-relative-name): Use new return value of `file-remote-p'.
1060
1061 2004-06-26 Nick Roberts <nickrob@gnu.org>
1062
1063 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
1064 (gdb-goto-breakpoint): Fix breakage.
1065
1066 2004-06-26 Eli Zaretskii <eliz@gnu.org>
1067
1068 * man.el (Man-getpage-in-background): Add windows-nt to the list
1069 of systems where shell-file-name should be used instead of
1070 literal "sh".
1071
1072 2004-06-25 Sam Steingold <sds@gnu.org>
1073
1074 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
1075 function names `(setf symbol)'.
1076
1077 2004-06-24 Richard M. Stallman <rms@gnu.org>
1078
1079 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
1080
1081 * font-lock.el (font-lock-keywords): Change format of compiled values.
1082 Document it.
1083 (font-lock-add-keywords): If font-lock-keywords is compiled,
1084 extract the uncompiled version, modify, then recompile.
1085 (font-lock-remove-keywords): Likewise.
1086 (font-lock-fontify-keywords-region): Handle changed format.
1087 (font-lock-compile-keywords): Handle changed format.
1088 (font-lock-set-defaults): Compile the keywords explicitly here.
1089
1090 2004-06-24 David Kastrup <dak@gnu.org>
1091
1092 * replace.el (query-replace-read-args): Implement `\,' and `\#'
1093 replacements here.
1094 (query-replace-regexp): Doc string explaining this and the new
1095 `\?' replacement. Remove `\,' and `\#' implementation here, as it
1096 is better placed in `query-replace-read-args'.
1097 (replace-regexp): Explain `\,', `\#' and `\?'.
1098 (replace-match-data): New function for thorough reuse/destruction
1099 of old match-data.
1100 (replace-match-maybe-edit): Function for implementing `\?' editing.
1101 (perform-replace): Fix maintaining of the match stack including
1102 already matched regions, implement `\?', fix various problems
1103 with regions while editing and other stuff.
1104 (replace-highlight): Simplify.
1105
1106 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
1107
1108 * progmodes/grep.el (grep-error-screen-columns): New variable.
1109 (grep-regexp-alist): Give it the full functionality of gnu style
1110 compilation messages with line and column ranges. Ask me for the
1111 perl script I'm working on, that uses these.
1112
1113 2004-06-23 Nick Roberts <nickrob@gnu.org>
1114
1115 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
1116 Remove.
1117 (comint-insert-input, comint-mouse-insert-input): New functions
1118 based on comint-insert-clicked-input for two bindings but just
1119 one functionality.
1120
1121 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
1122
1123 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
1124
1125 2004-06-23 Lars Hansen <larsh@math.ku.dk>
1126
1127 * files.el (write-contents-functions): Doc fix.
1128
1129 2004-06-21 Juanma Barranquero <lektu@terra.es>
1130
1131 * image.el (image-library-alist): Rewrite docstring in active voice.
1132
1133 2004-06-20 Richard M. Stallman <rms@gnu.org>
1134
1135 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
1136
1137 * isearch.el (isearch-repeat): Avoid testing old match data.
1138 (isearch-message): Display trailing space in special font
1139 when search is failing.
1140 (isearch-search-fun-function): Doc fix.
1141
1142 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
1143
1144 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
1145
1146 * frame.el (show-trailing-whitespace): Doc fix.
1147
1148 * cus-edit.el (custom-variable-documentation): New function.
1149 (custom-variable): Use it.
1150
1151 2004-06-19 Nick Roberts <nickrob@gnu.org>
1152
1153 * man.el (Man-getpage-in-background): Revert previous change but
1154 make cygwin a special case.
1155
1156 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
1157
1158 * autorevert.el (global-auto-revert-non-file-buffers):
1159 Update docstring.
1160
1161 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
1162
1163 * progmodes/compile.el (compilation-error-properties): Store one
1164 more than end-col, if present, so that transient-mark-mode will
1165 highlight last char too.
1166 * progmodes/grep.el (grep-regexp-alist): Match columns and column
1167 ranges, if present.
1168
1169 2004-06-18 Jason Rumney <jasonr@gnu.org>
1170
1171 * makefile.w32-in: Double percent signs in for loops.
1172
1173 2004-06-17 David Kastrup <dak@gnu.org>
1174
1175 * replace.el (query-replace-read-args): Only warn about use of \n
1176 and \t when we are doing a regexp replacement and the actual
1177 escaped character is n or t.
1178 (query-replace-regexp): Add \, and \# interpretation to
1179 interactive call and document it.
1180 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
1181 as shortkey for replace-count.
1182 (replace-quote): New function for doubling backslashes.
1183
1184 2004-06-17 Juanma Barranquero <lektu@terra.es>
1185
1186 * files.el (parse-colon-path, cd): Mention in docstring that the
1187 path separator is colon in GNU-like systems.
1188
1189 * newcomment.el (comment-region-internal): Fix docstring.
1190
1191 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
1192 (ewoc-invalidate, ewoc-collect): Doc fixes.
1193 (ewoc--create-node, ewoc--delete-node-internal):
1194 Fix typos in docstring.
1195
1196 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1197
1198 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
1199 manual to docstring.
1200
1201 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1202
1203 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
1204
1205 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1206
1207 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1208 Add hyperlink to emacs-xtra manual to docstring.
1209
1210 * autorevert.el (global-auto-revert-non-file-buffers):
1211 Add hyperlink to emacs-xtra manual to docstring, as well as an
1212 info-link.
1213
1214 2004-06-14 Juanma Barranquero <lektu@terra.es>
1215
1216 * image.el (image-library-alist): New variable to map image types
1217 to external libraries. Initialized to nil, unless system-specific
1218 configs change it.
1219 (image-type-available-p): Determine whether an image type is
1220 available by calling `init-image-library'.
1221
1222 * term/w32-win.el (image-library-alist): Initialize to a known set
1223 of probable library names.
1224
1225 2004-06-14 Kenichi Handa <handa@m17n.org>
1226
1227 * international/code-pages.el (windows-1256, cp1125): Fix tables
1228 for several characters.
1229
1230 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
1231
1232 2004-06-13 Richard M. Stallman <rms@gnu.org>
1233
1234 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
1235
1236 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
1237 not "`pc-selection-mode'".
1238
1239 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
1240
1241 * simple.el (previous-matching-history-element): Specify a default.
1242
1243 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
1244
1245 * cus-face.el (custom-declare-face): Simplify code.
1246
1247 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
1248
1249 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
1250
1251 * files.el (before-save-hook): Add `time-stamp' to the options.
1252
1253 * time-stamp.el (time-stamp): Recommend adding it to
1254 `before-save-hook', rather than `write-file-functions'.
1255 Make a similar change in `Commentary' section.
1256
1257 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
1258
1259 * diff-mode.el (diff-current-defun): If at start of hunk, use
1260 position of first change.
1261
1262 2004-06-13 Lars Hansen <larsh@math.ku.dk>
1263
1264 * dired-x.el (dired-mark-omitted): Bind to "*O".
1265
1266 2004-06-12 Karl Fogel <kfogel@red-bean.com>
1267
1268 * bookmark.el (bookmark-bmenu-relocate): New function, as
1269 suggested by David J. Biesack <David.Biesack@sas.com>.
1270 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
1271 (bookmark-bmenu-mode): Describe binding in doc string.
1272 (bookmark-set-filename): Save the bookmark list if it's time.
1273
1274 2004-06-13 Kenichi Handa <handa@m17n.org>
1275
1276 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
1277 (ccl-untranslated-to-ucs): Fix typo.
1278
1279 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
1280
1281 * progmodes/python.el (python-open-block-statement-p):
1282 Fix indentation after a block opening that contains a comment.
1283
1284 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
1285
1286 * bindings.el (completion-ignored-extensions): Add file extensions
1287 of Python byte-compiled files.
1288
1289 2004-06-12 Juri Linkov <juri@jurta.org>
1290
1291 * info.el (Info-goto-node): Add autoload.
1292 (Info-toc): Add substring-no-properties on Info file name.
1293 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
1294 (Info-mode-map): Bind L to Info-history, T to Info-toc.
1295
1296 2004-06-12 Kenichi Handa <handa@m17n.org>
1297
1298 * international/mule-cmds.el (set-language-environment):
1299 Load subst tables if necessary.
1300
1301 * international/mule.el (decode-char): Load subst tables if necessary.
1302 (encode-char): Likewise.
1303
1304 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
1305 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
1306 (utf-16le-decode-loop): Set r5 to -1 before loop.
1307 (utf-16be-decode-loop): Likewise.
1308 (ccl-decode-mule-utf-16le): Add EOF processing block.
1309 (ccl-decode-mule-utf-16be): Likewise.
1310 (ccl-decode-mule-utf-16le-with-signature): Likewise.
1311 (ccl-decode-mule-utf-16be-with-signature): Likewise.
1312 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
1313 (ccl-mule-utf-16-encode-untrans): New CCL.
1314 (utf-16-decode-to-ucs): Handle pre-read character.
1315 (utf-16le-encode-loop): Handle surrogate pair.
1316 (utf-16be-encode-loop): Likewise.
1317 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
1318 of utf-16le-encode-loop.
1319 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
1320 of utf-16be-encode-loop.
1321 (mule-utf-16-post-read-conversion):
1322 Call utf-8-post-read-conversion at first.
1323 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
1324 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
1325 Add post-read-conversion and pre-write-conversion.
1326
1327 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
1328 (utf-translate-cjk-unicode-range): New variable.
1329 (utf-translate-cjk-load-tables): New function.
1330 (utf-lookup-subst-table-for-decode): New function.
1331 (utf-lookup-subst-table-for-encode): New function.
1332 (utf-translate-cjk-mode): Init-value changed to t. Don't load
1333 tables here. Update safe-charsets of utf-* coding systems.
1334 (ccl-mule-utf-untrans): New CCL.
1335 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
1336 at end of each branch.
1337 (ccl-mule-utf-8-encode-untrans): New CCL.
1338 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
1339 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
1340 length of encoding. Don't return r0.
1341 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
1342 (utf-8-post-read-conversion): Narrow to region properly.
1343 If utf-translate-cjk-mode is on, load tables if necessary.
1344 Call utf-8-compose with hash-table arg if necessary.
1345 Call XXX-compose-region instead of XXX-post-read-convesion.
1346 (utf-8-pre-write-conversion): New function.
1347 (mule-utf-8): Include CJK charsets in safe-charsets if
1348 utf-translate-cjk-mode is on. Add pre-write-conversion.
1349
1350 * international/characters.el: Temporarily set
1351 utf-translate-cjk-mode to nil.
1352
1353 * language/devan-util.el (devanagari-compose-region):
1354 Add autoload cookie.
1355
1356 * international/ccl.el (ccl-dump-call): Fix printing the
1357 subroutine name.
1358
1359 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
1360
1361 * dired.el (dired-revert): If buffer is marked unmodified before
1362 reverting, keep it marked unmodified.
1363 Adapt to new conventions for commenting out code.
1364 (dired-make-relative): Adapt to new conventions for commenting out code.
1365
1366 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
1367
1368 * eshell/esh-module.el (eshell-load-defgroups):
1369 Bind `vc-handled-backends' to nil when opening files.
1370
1371 2004-06-11 Juanma Barranquero <lektu@terra.es>
1372
1373 * files.el (parse-colon-path, cd): Doc fixes (refer to
1374 `path-separator', not colon).
1375
1376 2004-06-10 Juanma Barranquero <lektu@terra.es>
1377
1378 * newcomment.el (comment-search-forward)
1379 (comment-search-backward): Fix typos in docstring.
1380 (comment-region): Doc fix.
1381
1382 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
1383
1384 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
1385 switch is no longer stored in `dired-switches-alist'.
1386
1387 * dired-aux.el (dired-insert-subdir): Do not store R switch in
1388 `dired-switches-alist'.
1389
1390 2004-06-10 Kim F. Storm <storm@cua.dk>
1391
1392 * pcvs.el (cvs-mode-diff-yesterday): New command.
1393
1394 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
1395
1396 2004-06-10 Juri Linkov <juri@jurta.org>
1397
1398 * emacs-lisp/edebug.el (edebug-eval-defun):
1399 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
1400 Fix docstring.
1401
1402 * simple.el (eval-expression-print-format): Don't print additional
1403 information on the first call to `eval-print-last-sexp'.
1404 (next-error-find-buffer): Fix punctuation.
1405 (killing) <defgroup>: Fix punctuation.
1406 (yank-excluded-properties): Change group from editing to killing.
1407
1408 * replace.el (perform-replace): Use `limit' to terminate the
1409 while-loop explicitly.
1410
1411 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1412
1413 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
1414 Use lc-*.xpm as prefix instead of *-locol.xpm.
1415
1416 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
1417 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
1418 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
1419 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
1420 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
1421 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
1422 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
1423 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
1424 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
1425 * toolbar/lc-up_arrow.xpm:
1426 Renamed from *-locol.xpm.
1427
1428 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
1429
1430 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
1431 include forms like &<str>; as valid url patterns.
1432
1433 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
1434
1435 * dired.el (dired-diff, dired-backup-diff)
1436 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
1437 (dired-do-chown, dired-do-touch, dired-do-print)
1438 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
1439 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
1440 (dired-create-directory, dired-do-copy, dired-do-symlink)
1441 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
1442 (dired-do-copy-regexp, dired-do-hardlink-regexp)
1443 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
1444 (dired-maybe-insert-subdir, dired-next-subdir)
1445 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
1446 (dired-kill-subdir, dired-tree-up, dired-tree-down)
1447 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
1448 (dired-run-shell-command, dired-query): Remove redundant,
1449 or incorrect, autoloads.
1450
1451 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
1452 does not end in a slash. Add optional argument KILL-ROOT.
1453 Update docstring.
1454 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
1455 (dired-query): Add autoloads.
1456
1457 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
1458
1459 * progmodes/compile.el (compilation-set-window-height):
1460 Rearrange the save-* functions because a buffer can have several current
1461 point in different windows.
1462 (compilation-error-regexp-alist-alist): Recognize {standard input}
1463 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
1464
1465 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1466
1467 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
1468 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
1469 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
1470 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
1471 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
1472 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
1473 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
1474 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
1475 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
1476 * toolbar/up_arrow-locol.xpm:
1477 New versions of icons that uses fewer colors.
1478
1479 * toolbar/tool-bar.el (tool-bar-local-item)
1480 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
1481 if display-color-cells is 256 or less.
1482
1483 2004-06-08 Kim F. Storm <storm@cua.dk>
1484
1485 * wid-edit.el (widget-specify-button): Use hand pointer rather
1486 than mouse-face as visible mouse-over effect.
1487
1488 2004-06-07 Karl Fogel <kfogel@red-bean.com>
1489
1490 * saveplace.el (save-place-alist-to-file): Bind `print-length'
1491 and `print-level' to nil when writing out `save-place-alist'.
1492 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
1493
1494 2004-06-07 Juanma Barranquero <lektu@terra.es>
1495
1496 * completion.el (completion-kill-region): Doc fix.
1497
1498 * format.el (format-insert-annotations)
1499 (format-annotate-location): Doc fixes.
1500 (format-subtract-regions): Make arguments match their use in docstring.
1501
1502 * simple.el (kill-region): Doc fix.
1503
1504 * subr.el (insert-buffer-substring-no-properties)
1505 (insert-buffer-substring-as-yank): Doc fixes.
1506
1507 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
1508
1509 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1510 Update docstring.
1511 (dired-reset-subdir-switches): New function.
1512
1513 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
1514 Limit scope of `buffer-read-only' binding.
1515
1516 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
1517
1518 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
1519 eshell-explicit-command-char.
1520
1521 2004-06-06 Juanma Barranquero <lektu@terra.es>
1522
1523 * help-fns.el (help-argument-name): Inherit from italic face only
1524 if the frame supports it.
1525
1526 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1527
1528 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
1529 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
1530 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
1531 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
1532 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
1533 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
1534 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
1535 New conversions from xpm files.
1536
1537 * toolbar/README: New file.
1538
1539 2004-06-06 Richard M. Stallman <rms@gnu.org>
1540
1541 * isearch.el (isearch-mode-map): Undo previous change.
1542
1543 2004-06-05 Juri Linkov <juri@jurta.org>
1544
1545 * bindings.el (debug-ignored-errors): Add regexps for history
1546 related messages. Remove $ from "No further undo information".
1547 Move Ediff's messages to ediff.el.
1548
1549 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
1550
1551 * cus-edit.el (custom-display): Add `min-colors'.
1552
1553 * custom.el (defface): Add `supports' to docstring.
1554
1555 * help-fns.el (help-argument-name): Add :group 'help.
1556
1557 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
1558
1559 * find-dired.el (find-ls-subdir-switches): New user option.
1560 (find-dired): No longer call `abbreviate-file-name' on DIR.
1561 Set `dired-subdir-switches' buffer-locally.
1562
1563 * locate.el: Merge the two `Commentary' sections.
1564 (locate-ls-subdir-switches): New user option.
1565 (locate): Update for other changes.
1566 (locate-mode-map): Restore Dired binding for mouse-2.
1567 Bind `locate-mouse-view-file' to M-mouse-2.
1568 Bind `l' to `locate-do-redisplay'.
1569 (locate-main-listing-line-p, locate-do-redisplay): New functions.
1570 (locate-mouse-view-file, locate-tags, locate-find-directory):
1571 Print message if used outside main listing.
1572 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
1573 Various changes to support inserted subdirectories.
1574 (locate-insert-header): Change header of *Locate* buffer.
1575
1576 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1577 Change interactive default switches.
1578 (dired-rename-subdir-2): Update `dired-switches-alist'.
1579 (dired-insert-subdir, dired-kill-subdir):
1580 Handle `dired-switches-alist'. Do not mark buffer modified.
1581 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
1582 (dired-insert-subdir-doinsert): Omit messages.
1583 Handle `dired-subdir-switches'.
1584 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
1585
1586 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
1587 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
1588 subdirs if -R switch is used for a subdir.
1589 (dired-mode): Set `dired-switches-alist'.
1590 (dired-build-subdir-alist): Only print number of directories in
1591 echo area when invoked interactively.
1592
1593 2004-06-05 Lars Hansen <larsh@math.ku.dk>
1594
1595 * dired-x.el (dired-omit-mode): Rename from
1596 dired-omit-files-p. Use define-minor-mode to define it.
1597 (dired-omit-files-p): Add as alias for dired-omit-mode.
1598 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
1599 dired-mark-omitted.
1600 (dired-mark-omitted): Add. Bind to M-O.
1601
1602 2004-06-05 Kenichi Handa <handa@m17n.org>
1603
1604 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
1605
1606 2004-06-05 Juanma Barranquero <lektu@terra.es>
1607
1608 * help-fns.el (help-argument-name): Reintroduce face.
1609 (help-default-arg-highlight): Use it, now that
1610 `face-differs-from-default-p' can be trusted.
1611
1612 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
1613
1614 * textmodes/table.el: Sentence commands added to Point Motion
1615 group; kill and backward-kill commands added to Extraction group.
1616
1617 2004-06-04 Mario Lang <mlang@delysid.org>
1618
1619 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
1620 systems appear to use mW, make the code handle this. Fix a
1621 division-by-zero bug while at it, and handle kernels with
1622 a slightly different layout in /proc/acpi.
1623
1624 2004-06-04 Karl Fogel <kfogel@red-bean.com>
1625
1626 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
1627 because the latter is a CL-ism. This fixes the bug reported by
1628 Shawn Boyette <mdxi@collapsar.net> in
1629 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
1630
1631 2004-06-04 Miles Bader <miles@gnu.org>
1632
1633 * faces.el (display-supports-face-attributes-p): Function moved to
1634 C code. Previously only the tty-related portion of this function
1635 was done in C; however the previous attempt to do a halfway-proper
1636 job for non-tty displays in lisp didn't work properly because of
1637 funny conditions during Emacs startup.
1638 (face-differs-from-default-p): Simplify, now that
1639 display-supports-face-attributes-p works properly on all display
1640 types. Remove :stipple from comparison; it doesn't really work
1641 in emacs anyway.
1642
1643 2004-06-04 Miles Bader <miles@gnu.org>
1644
1645 * faces.el (face-differs-from-default-p): Use a different
1646 implementation, so we can really check whether FACE displays
1647 differently or not.
1648
1649 2004-06-04 Miles Bader <miles@gnu.org>
1650
1651 * faces.el (display-supports-face-attributes-p): Implement a
1652 `different from default' check for non-tty displays.
1653
1654 2004-06-03 David Kastrup <dak@gnu.org>
1655
1656 * woman.el (woman-mapcan): More concise code.
1657 (woman-topic-all-completions, woman-topic-all-completions-1)
1658 (woman-topic-all-completions-merge): Replace by a simpler and
1659 much faster implementation based on O(n log n) sort/merge instead
1660 of the old O(n^2) behavior.
1661
1662 2004-06-03 Miles Bader <miles@gnu.org>
1663
1664 * subr.el (read-number): Use canonical format for default in prompt.
1665
1666 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
1667 Add regexp for " [...]" style defaults.
1668
1669 2004-06-02 Romain Francoise <romain@orebokech.com>
1670
1671 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
1672 groups: if the user asks for a hidden buffer, open the
1673 corresponding filter group to expose it.
1674
1675 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
1676 `ibuffer-jump-to-buffer'.
1677 (ibuffer-jump-offer-only-visible-buffers): New user option.
1678
1679 2004-06-02 Juanma Barranquero <lektu@terra.es>
1680
1681 * faces.el (frame-update-faces): Add empty docstring so the one
1682 for `ignore' doesn't show through.
1683
1684 * subr.el (process-kill-without-query): Remove spurious "\n" on
1685 obsolescence string.
1686 (focus-frame, unfocus-frame): Add obsolescence declaration and
1687 empty docstring.
1688
1689 * international/mule.el (register-char-codings): Make alias for
1690 `ignore'. Move docstring to obsolescence info and remove redundancy.
1691
1692 2004-06-02 Kim F. Storm <storm@cua.dk>
1693
1694 * frame.el (blink-cursor-start): Turn cursor off initially so blink
1695 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
1696
1697 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1698
1699 * comint.el (comint-replace-by-expanded-history-before-point):
1700 Obey `start' as the docstring says.
1701 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
1702 (comint-update-fence): Prevent font-lock from running unnecessarily.
1703 (comint-dynamic-list-completions): Use with-current-buffer.
1704
1705 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1706
1707 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
1708 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
1709 (bibtex-entry-update): Handle alternatives and optional fields.
1710 (bibtex-parse-entry): Bugfix, handle empty key.
1711
1712 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1713
1714 * vc-arch.el (vc-arch-state): Don't assume the file exists.
1715
1716 2004-05-31 Lars Hansen <larsh@math.ku.dk>
1717
1718 * desktop.el (desktop-save): Don't save minor modes without a
1719 known mode initialization function.
1720
1721 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
1722
1723 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
1724
1725 * autorevert.el: Update `Commentary' section.
1726
1727 2004-05-30 Juanma Barranquero <lektu@terra.es>
1728
1729 * dos-fns.el (convert-standard-filename):
1730 * files.el (convert-standard-filename):
1731 * w32-fns.el (convert-standard-filename):
1732 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
1733
1734 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
1735
1736 Sync with Tramp.
1737
1738 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
1739 (tramp-let-maybe): Move to an earlier spot in the file.
1740 Patch by Andreas Schwab.
1741
1742 2004-05-30 Andreas Schwab <schwab@suse.de>
1743
1744 * dired.el (dired-get-filename): Don't use dired-re-dot.
1745
1746 2004-05-30 Richard M. Stallman <rms@gnu.org>
1747
1748 * files.el (find-file): Doc fix.
1749
1750 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
1751
1752 2004-05-30 Nick Roberts <nickrob@gnu.org>
1753
1754 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
1755 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
1756 modeline of the locals buffer.
1757 (gdb-goto-breakpoint): Handle gdbmi.
1758 (gdb-get-frame-number): Change for gdbmi.
1759
1760 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
1761
1762 * files.el (file-remote-p): Apply file name handler for operation
1763 `file-remote-p'. It isn' a property any longer.
1764 (file-relative-name): `fh' and `fd' get the required value via
1765 `find-file-name-handler' already.
1766
1767 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
1768 (top): Remove setting of `file-remote-p' property for
1769 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
1770
1771 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
1772
1773 Version 2.0.41 of Tramp released.
1774
1775 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
1776 Throw away if process has died.
1777 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
1778 (tramp-out-of-band-prompt-regexp): Rename to
1779 `tramp-process-alive-regexp', because its usage is widen.
1780 (tramp-actions-copy-out-of-band): Apply it.
1781 (tramp-actions-before-shell, tramp-multi-actions):
1782 Add `tramp-action-process-alive' action.
1783 (tramp-action-process-alive): New defun.
1784 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
1785 Add entry for `file-remote-p'.
1786 (tramp-handle-file-remote-p): New defun.
1787 (top): Remove setting of `file-remote-p'. Don't set
1788 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
1789
1790 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1791 `file-remote-p'.
1792
1793 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
1794 counted for (last) line. [They should or they shouldn't? --Stef]
1795 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
1796
1797 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
1798
1799 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
1800 not really necessary but seems to keep the shell history smaller
1801 in some cases. It is no substitute for setting HISTFILE and
1802 HISTSIZE from tramp-open-connection-setup-interactive-shell,
1803 though. Suggested by Luc Teirlinck.
1804 (tramp-open-connection-setup-interactive-shell): Export variables
1805 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
1806 (tramp-set-process-query-on-exit-flag): New compat function.
1807 (tramp-open-connection-multi, tramp-open-connection-su)
1808 (tramp-open-connection-rsh, tramp-open-connection-telnet)
1809 (tramp-do-copy-or-rename-file-out-of-band): Use it.
1810 (tramp-let-maybe): New macro, let-binds a variable only if it
1811 isn't obsolete.
1812 (tramp-check-ls-commands, tramp-handle-expand-file-name)
1813 (tramp-handle-file-truename): Use it.
1814 (tramp-completion-file-name-regexp-unified): Avoid matching
1815 filenames starting with "/:" -- those are reserved for
1816 file-name-non-special.
1817
1818 * tramp-smb.el (tramp-smb-open-connection):
1819 Use tramp-set-process-query-on-exit-flag compat function.
1820
1821 2004-05-29 Richard M. Stallman <rms@gnu.org>
1822
1823 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
1824
1825 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
1826 (eval-last-sexp-print-value): Print char equivalent regardless
1827 of standard-output value.
1828
1829 * thumbs.el (thumbs-subst-char-in-string): Delete.
1830 (thumbs-thumbname): Use subst-char-in-string.
1831 (thumbs-resize-image): Use condition-case, not ignore-errors.
1832 (thumbs-kill-buffer): Likewise.
1833
1834 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
1835 (thumbs-mode): Make buffer read-only.
1836 (thumbs-make-thumb): Unconditionally accept an existing file.
1837 (thumbs-insert-thumb): Add thumb-image-file property to the image.
1838 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
1839 (thumbs-show-thumbs-list): Error if images not supported.
1840 (thumbs-save-current-image): Improve prompt string.
1841 (thumbs-mode-map): Define u, R, x.
1842 (thumbs-unmark): New command.
1843 (thumbs-emboss-image): Minor cleanup.
1844 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
1845 (thumbs-rename-images): New command.
1846 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
1847
1848 * thumbs.el (thumbs-current-image): New function.
1849 (thumbs-file-list, thumbs-file-alist): New functions.
1850 (thumbs-find-image): Delete arg L.
1851 Don't set up thumbs-fileL as buffer-local global var.
1852 (thumbs-find-image-at-point): Use thumbs-current-image.
1853 (thumbs-set-image-at-point-to-root-window): Likewise.
1854 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
1855 Record and warn about errors. Update thumbs-markedL for deletions.
1856 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
1857 (thumbs-redraw-buffer): Use thumbs-file-list.
1858 (thumbs-mark): Use thumbs-current-image.
1859 (thumbs-show-name): Use thumbs-current-image.
1860
1861 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
1862 and imenu--last-menubar-index-alist.
1863
1864 * subr.el (with-selected-window): Undo previous change.
1865
1866 2004-05-29 John Paul Wallington <jpw@gnu.org>
1867
1868 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
1869 (thumbs-mouse-find-image): New command.
1870 (thumbs-mode-map): Bind it to mouse-2.
1871 (thumbs-mode): Make mode-class special.
1872 (thumbs-view-image-mode): Likewise.
1873
1874 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
1875
1876 * flymake.el: New file.
1877
1878 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
1879
1880 * files.el (find-file-noselect-1): Do not bind
1881 `inhibit-read-only' to t during execution of
1882 `find-file-not-found-functions'.
1883
1884 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1885
1886 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
1887 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
1888
1889 2004-05-28 Juri Linkov <juri@jurta.org>
1890
1891 * simple.el (eval-expression-print-format): New fun.
1892
1893 * simple.el (eval-expression):
1894 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
1895 * emacs-lisp/edebug.el (edebug-compute-previous-result)
1896 (edebug-eval-expression): Print additionally the value returned by
1897 `eval-expression-print-format'.
1898
1899 * emacs-lisp/lisp.el (insert-pair-alist): New var.
1900 (insert-pair): Make arguments optional. Find character pair
1901 from `insert-pair-alist' according to the last input event.
1902 (insert-parentheses): Make arguments optional.
1903 (raise-sexp, delete-pair): New funs.
1904
1905 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
1906 (emacs-lisp-mode-map, lisp-interaction-mode-map):
1907 Bind C-M-q to `indent-pp-sexp'.
1908
1909 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
1910 `pp-to-string' modified to be able to format text with newlines.
1911 (pp-to-string): Move the buffer-formatting part of the code to
1912 `pp-buffer'. Call `pp-buffer'.
1913
1914 * info.el (Info-desktop-buffer-misc-data): Don't save information
1915 about virtual files.
1916 (Info-restore-desktop-buffer): Restore Info buffers in prepared
1917 buffers with names obtained from the desktop file instead of the
1918 default *info* buffer.
1919
1920 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1921
1922 * subr.el (with-selected-window): Only save/restore the selected window.
1923
1924 * progmodes/compile.el (compilation-error-regexp-alist):
1925 Use expand-file-name and data-directory.
1926
1927 * progmodes/grep.el (grep-tree): Rework previous fix.
1928
1929 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
1930 after the user marked text with the mouse.
1931
1932 * startup.el (command-line): Keep the first regexp of
1933 auto-save-file-name-transforms intact.
1934
1935 2004-05-28 Juanma Barranquero <lektu@terra.es>
1936
1937 * cus-edit.el (customize-face, customize-face-other-window)
1938 (custom-face-edit-delete): Make arguments match their use in
1939 docstring.
1940 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
1941 docstring.
1942
1943 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
1944 not `cvs-butlast'.
1945
1946 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
1947 `nbutlast' are in subr.el).
1948
1949 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
1950 (set-w32-system-coding-system): Doc fixes.
1951
1952 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
1953 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
1954 Make arguments match their use in docstring.
1955 (artist-draw-region-trim-line-endings)
1956 (artist-mouse-choose-operation): Fix typo in docstring.
1957 (artist-key-set-point-common): Doc fix.
1958
1959 2004-05-28 Simon Josefsson <jas@extundo.com>
1960
1961 * mail/smtpmail.el (smtpmail-open-stream):
1962 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
1963
1964 2004-05-26 Simon Josefsson <jas@extundo.com>
1965
1966 * starttls.el: Merge with my GNUTLS based starttls.el.
1967 (starttls-gnutls-program, starttls-use-gnutls)
1968 (starttls-extra-arguments, starttls-process-connection-type)
1969 (starttls-connect, starttls-failure, starttls-success): New variables.
1970 (starttls-program, starttls-extra-args): Doc fix.
1971 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
1972 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
1973 and pass on to corresponding *-gnutls function if it is set.
1974
1975 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
1976
1977 * autorevert.el (auto-revert-handler): Disable auto-reverting of
1978 remote files.
1979
1980 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
1981
1982 * files.el (file-name-non-special): There are more operations
1983 which need handling: `find-backup-file-name',
1984 `insert-file-contents', `verify-visited-file-modtime',
1985 `write-region'. Rename t value of method to `add'. Add new
1986 methods `quote' and `unquote-then-quote' to file-arg-indices.
1987
1988 2004-05-25 Juri Linkov <juri@jurta.org>
1989
1990 * info.el (Info-toc): Call Info-mode on intermediate buffer.
1991 (Info-index-nodes): Enclose code in condition-case to catch errors.
1992 (Info-index-node): Don't search all index nodes if request is only
1993 for the current node and file is not in the cache of index nodes.
1994 (Info-mode-map): Bind Info-copy-current-node-name to `w'
1995 for consistency with dired-copy-filename-as-kill.
1996 Bind `S' to Info-search-case-sensitively.
1997 (Info-copy-current-node-name): New arg. With zero prefix arg put
1998 the name inside a function call to `info'. Display copied text in
1999 the echo area.
2000
2001 2004-05-25 Sam Steingold <sds@gnu.org>
2002
2003 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
2004 strip the package prefix from the symbol name, if any.
2005 Make it the `find-tag-default-function' for `lisp-mode'.
2006
2007 2004-05-25 John Paul Wallington <jpw@gnu.org>
2008
2009 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
2010 instead of obsolete `process-kill-without-query'.
2011
2012 * textmodes/texinfmt.el (texinfo-indexvar-alist):
2013 Declare as variable, not constant.
2014
2015 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
2016
2017 * files.el (find-file-noselect-1): Fix bug introduced by
2018 Revision 1.694. As a side effect, `inhibit-read-only'
2019 is again, by default, t during execution of
2020 `find-file-not-found-functions'.
2021 (insert-directory): Check that lines were really inserted by
2022 the --dired switch, before erasing them.
2023
2024 2004-05-24 Nick Roberts <nickrob@gnu.org>
2025
2026 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
2027 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
2028 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
2029 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
2030 gud-minor-mode (gdbmi).
2031
2032 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2033
2034 * net/browse-url.el (browse-url-interactive-arg): Enable user to
2035 explicitly select the text to be taken as URL.
2036
2037 2004-05-23 Juri Linkov <juri@jurta.org>
2038
2039 * info.el (Info-index-nodes): New var and fun.
2040 (Info-goto-index, Info-index, info-apropos)
2041 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
2042 (Info-index): Fix docstring. Store and restore Info-history-list.
2043 (Info-complete-nodes): New var.
2044 (Info-complete-menu-item): Use it.
2045 (Info-index-node): New fun.
2046 (Info-final-node, Info-forward-node, Info-backward-node)
2047 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
2048 Use Info-index-node.
2049 (Info-extract-menu-item, Info-extract-menu-counting): Set second
2050 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
2051 (Info-find-node-2): If a node with period in its name not found,
2052 try to find a node without the name part after period.
2053 (Info-select-node): Call Info-fontify-node only if
2054 Info-fontify-maximum-menu-size is not nil.
2055 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
2056 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
2057 Preserve Info-history-list.
2058 (Info-toc): Set Info-current-file.
2059 (Info-build-toc): Move point to the beginning of the buffer.
2060 Add main-file variable.
2061 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
2062 Use backslashed representation of the control character ^_.
2063
2064 * textmodes/texinfmt.el (texinfo-print-index): Print index line
2065 numbers in the new Texinfo 4.7 format.
2066
2067 * add-log.el (change-log-font-lock-keywords): Remove `:' from
2068 regexps for function and variable names.
2069
2070 * descr-text.el (describe-property-list): Add [show] button for
2071 `syntax-table' property with action to pp to a separate buffer.
2072 (describe-char): Replace search-forward by re-search-forward with
2073 whitespace regexp after "character:" to not fail in too narrow windows.
2074
2075 * simple.el (next-error-find-buffer): Add a rule to return
2076 next-error capable buffer if one window on the selected frame
2077 displays such buffer.
2078
2079 2004-05-23 Nick Roberts <nickrob@gnu.org>
2080
2081 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
2082 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
2083 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
2084 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
2085 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
2086 Handle new value for gud-minor-mode (gdbmi).
2087 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
2088 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
2089 Change from local to global gdb variable set.
2090 (gdb-ann3): Initialise above gdb variable set.
2091 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
2092 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
2093 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
2094 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
2095 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
2096 (gdb-info-locals-handler, gdb-invalidate-assembler)
2097 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
2098 set as global variables.
2099 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
2100 Handle gdbmi.
2101 (gdb-info-breakpoints-custom): Fix regexp.
2102 (def-gdb-var): Delete.
2103
2104 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
2105 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
2106 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
2107 a new mode. The file (gdb-mi.el) for this mode will be included
2108 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
2109 primary interface.
2110
2111 2004-05-23 Jesper Harder <harder@ifa.au.dk>
2112
2113 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
2114 interpreted as a directory.
2115
2116 2004-05-22 Richard M. Stallman <rms@gnu.org>
2117
2118 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
2119 as a close quote.
2120
2121 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
2122
2123 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
2124 Use assoc-string, not assoc-ignore-case.
2125
2126 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
2127
2128 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
2129 If moving back then fwd gets a defun that ends before point,
2130 try again moving fwd then back.
2131
2132 * files.el (file-name-non-special): Allow t in file-arg-indices
2133 to mean requote the return value. Use `identity' as an element
2134 rather than as the whole value.
2135
2136 * gs.el (gs-options): Add -dSAFER. Mark it risky.
2137
2138 2004-05-22 Juanma Barranquero <lektu@terra.es>
2139
2140 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
2141 `help-make-usage'.
2142 (help-highlight-arguments): Skip function name before searching
2143 for arguments.
2144
2145 2004-05-21 Juanma Barranquero <lektu@terra.es>
2146
2147 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
2148 Don't mention in the docstring these arguments meant for
2149 internal (recursive) use only.
2150 (allout-char-spec): Comment out (it's not implemented).
2151 (allout-old-expose-topic, allout-exposure): Fix docstring and add
2152 obsolescence declaration.
2153 (allout-flatten-exposed-to-buffer)
2154 (allout-indented-exposed-to-buffer): Fix typos in docstring.
2155 (my-mark-marker): Doc fix.
2156 (produce-allout-mode-map, allout-sibling-index)
2157 (allout-isearch-expose, allout-distinctive-bullet)
2158 (allout-open-topic, allout-reindent-body)
2159 (allout-rebullet-heading, allout-process-exposed)
2160 (allout-insert-listified, allout-latex-verb-quote)
2161 (allout-insert-latex-header, allout-insert-latex-trailer):
2162 Make arguments match their use in docstring.
2163 (allout-primary-bullet, allout-old-style-prefixes)
2164 (allout-inhibit-protection, allout-init, allout-mode)
2165 (allout-before-change-protect, allout-flag-region):
2166 Use "Emacs" instead of "emacs" in docstrings.
2167
2168 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
2169
2170 * international/characters.el: Modify syntax of more characters.
2171
2172 2004-05-21 Masatake YAMATO <jet@gyve.org>
2173
2174 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
2175 (etags-tags-completion-table): Show parsing progress.
2176
2177 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
2178
2179 * locate.el (locate-prompt-for-command): Shorten first line of
2180 docstring.
2181 (locate-mode): Expand docstring and include keymap summary.
2182
2183 * files.el (find-file-noselect-1): Limit the scope of the
2184 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
2185 is, by default, nil during the execution of
2186 `find-file-not-found-functions' and `find-file-hook'.
2187
2188 2004-05-20 Michael Mauger <mmaug@yahoo.com>
2189
2190 * facemenu.el (facemenu-color-name-equal): New function.
2191 (list-colors-display): Use it to compare colors instead of
2192 facemenu-color-equal.
2193
2194 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
2195
2196 * compare-w.el (compare-windows-face): Use min-colors instead of
2197 checking for tty or pc types.
2198
2199 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
2202 (completion-setup-function): Use with-current-buffer.
2203 Properly save excursion. Simplify.
2204 Don't assume there is necessarily a `mouse-face' property somewhere.
2205
2206 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
2207
2208 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
2209
2210 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
2211 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
2212 Use with-current-buffer.
2213 (byte-goto-log-buffer): Delete.
2214 (byte-compile-log-file): Call compilation-forget-errors.
2215
2216 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2217
2218 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
2219 output messages into the search result.
2220
2221 2004-05-19 Masatake YAMATO <jet@gyve.org>
2222
2223 * wid-edit.el (widget-radio-button-notify): Revert my last
2224 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
2225
2226 2004-05-19 Kenichi Handa <handa@m17n.org>
2227
2228 * international/characters.el: Fix syntax (open/close) of CJK chars.
2229
2230 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
2231
2232 * help-mode.el (help-go-back): Don't depend on position of back button.
2233
2234 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
2237 files files don't contain an accidental additional /.
2238
2239 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
2240 in source buffer.
2241
2242 2004-05-18 Masatake YAMATO <jet@gyve.org>
2243
2244 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
2245 to widget-apply. :action method assumes 2 arguments, not 3.
2246
2247 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
2248
2249 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
2250 New constants.
2251 (hs-special-modes-alist): Add an f90-mode entry.
2252
2253 2004-05-17 Sam Steingold <sds@gnu.org>
2254
2255 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
2256 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
2257
2258 2004-05-16 Kim F. Storm <storm@cua.dk>
2259
2260 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
2261
2262 2004-05-15 John Wiegley <johnw@newartisans.com>
2263
2264 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
2265 (eshell-output-object-to-target): Improve output speed 20% by not
2266 calling `eshell-stringify' if something is already known to be a string.
2267
2268 2004-05-15 Alex Ott <ott@jet.msk.su>
2269
2270 * textmodes/ispell.el (ispell-local-dictionary-alist):
2271 Add windows-1251 to the choice of coding systems.
2272 (ispell-dictionary-alist-6): Add support for "russianw.aff",
2273 encoded in cp1251.
2274
2275 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
2276
2277 * progmodes/compile.el (compilation-warning-face)
2278 (compilation-info-face): Use min-colors.
2279
2280 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2281
2282 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
2283 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
2284 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
2285 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
2286 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
2287 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
2288 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
2289 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
2290 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
2291 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
2292 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
2293 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
2294 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
2295 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
2296
2297 2004-05-15 Kim F. Storm <storm@cua.dk>
2298
2299 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
2300 Use it to set triggered-p element of timer.
2301 (timer-event-handler): Set triggered-p element non-nil while running
2302 the timer function.
2303
2304 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2305
2306 * descr-text.el (describe-char-unicode-data)
2307 (describe-char-unicodedata-file): Re-enable the unicode code now that
2308 the licensing issues have been cleared in the unicode-4 license.
2309 (describe-text-properties-1): Remove unused `overlay' var.
2310 (describe-char): Remove unused var `buffer'.
2311
2312 2004-05-14 David Ponce <david@dponce.com>
2313
2314 * tree-widget.el: New file.
2315
2316 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
2317
2318 * language/european.el ("Brazilian Portuguese"): Add support for
2319 Brazilian Portuguese.
2320
2321 2004-05-13 John Wiegley <johnw@newartisans.com>
2322
2323 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
2324 `recentf-mode' if this variable has been customized to t.
2325
2326 * eshell/esh-test.el (eshell-test): Call the function
2327 `emacs-version' rather than trying to build a custom version string.
2328
2329 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2330
2331 * net/telnet.el (telnet-mode): Use define-derived-mode.
2332 Don't modify the global value of comint-prompt-regexp.
2333
2334 2004-05-13 John Paul Wallington <jpw@gnu.org>
2335
2336 * version.el (emacs-version): Check for `gtk' feature before
2337 `x-toolkit' feature.
2338
2339 2004-05-13 Juanma Barranquero <lektu@terra.es>
2340
2341 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
2342 arguments in the docstring, they're used only in recursive calls.
2343
2344 * help-fns.el (help-arg-highlighting-function)
2345 (help-argument-name): Delete.
2346 (help-default-arg-highlight): New function.
2347 (help-do-arg-highlighting): Use it.
2348
2349 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
2350
2351 * calendar/appt.el (appt-disp-window):
2352 Use `calendar-set-mode-line' for a centered mode-line.
2353
2354 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2355
2356 * calendar/appt.el (appt-disp-window): Do not split window
2357 excessively when `split-height-threshold' is low.
2358
2359 2004-05-12 Nick Roberts <nickrob@gnu.org>
2360
2361 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
2362 kill-buffer-hook here and make it local.
2363 (gud-kill-buffer-hook): Use kill-process for a sure kill.
2364
2365 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
2366
2367 * progmodes/compile.el (compilation-set-window-height):
2368 Use save-excursion to protect against misplaced marker.
2369
2370 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2371
2372 * custom.el (defface): Document that type can have value gtk.
2373
2374 * faces.el (face-spec-set-match-display): Handle type gtk in display.
2375
2376 2004-05-12 Kenichi Handa <handa@m17n.org>
2377
2378 * descr-text.el: Require quail at comile time.
2379 (describe-char): If an input method is on and it supports the
2380 character, show how to input it.
2381
2382 * international/quail.el (quail-install-decode-map): Accept a
2383 char-table whose subtype is `quail-decode-map'.
2384 (quail-store-decode-map-key, quail-gen-decode-map1)
2385 (quail-gen-decode-map, quail-find-key1, quail-find-key)
2386 (quail-show-key): New functions.
2387
2388 2004-05-12 Juanma Barranquero <lektu@terra.es>
2389
2390 * generic.el (define-generic-mode): Remove redundant arglist info.
2391
2392 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
2393 Make arguments match their use in docstring.
2394 (help-arg-highlighting-function): New variable.
2395 (help-argument-name): Mention it in the docstring.
2396 (help-do-arg-highlight): Use it. Expand regexp to accept also
2397 ARG-xxx and xxx-ARG references.
2398
2399 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2400
2401 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
2402 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
2403 and "mailto:addr1?to=addr2" equal.
2404
2405 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
2406
2407 * man.el (Man-getpage-in-background): Use shell-file-name
2408 and shell-command-switch variables instead of hard-coded values.
2409
2410 2004-05-11 Eli Zaretskii <eliz@gnu.org>
2411
2412 * iimage.el: New file.
2413
2414 2004-05-11 Juanma Barranquero <lektu@terra.es>
2415
2416 * custom.el (custom-initialize-default, defcustom):
2417 Fix typo in docstring.
2418
2419 * files.el (set-visited-file-name, file-expand-wildcards):
2420 Fix docstring.
2421
2422 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2423
2424 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
2425
2426 * subr.el (eventp): Be more discriminating with integers.
2427
2428 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2429
2430 * progmodes/compile.el (compile): Add universal prefix arg.
2431 (compilation-error-regexp-alist-alist): Add edg patterns.
2432
2433 2004-05-10 Sam Steingold <sds@gnu.org>
2434
2435 * textmodes/ispell.el (ispell-message):
2436 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
2437
2438 2004-05-10 Dave Love <fx@gnu.org>
2439
2440 * progmodes/python.el (help-buffer): Autoload when compiling.
2441 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
2442 (run-python): Prepend to any existing PYTHONPATH.
2443
2444 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
2445
2446 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
2447 for pending breakpoints.
2448
2449 2004-05-10 Richard M. Stallman <rms@gnu.org>
2450
2451 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
2452 directly without calling any functions in Rmail.
2453 (unrmail-unprune): Function deleted.
2454
2455 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2456
2457 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
2458 C-c C-z binding.
2459
2460 2004-05-10 Kenichi Handa <handa@m17n.org>
2461
2462 * descr-text.el (describe-char): Fix previous change. Don't make
2463 a unibyte character to multibyte in the *Help* buffer.
2464
2465 2004-05-10 Miles Bader <miles@gnu.org>
2466
2467 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
2468 buffer an error if the debugger process is actually running.
2469
2470 2004-05-10 Juanma Barranquero <lektu@terra.es>
2471
2472 * help-fns.el (help-argument-name): Default to italic.
2473 (help-highlight-arguments): Return always (usage . doc), even when
2474 usage is nil.
2475
2476 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
2477 (define-ibuffer-filter): Add usage info.
2478 (define-ibuffer-op): Add usage info (but CL-style defaults for
2479 keyword args are not shown).
2480
2481 * subr.el (remove-overlays, read-passwd): Fix docstring.
2482 (start-process-shell-command): Fix docstring. Put usage info in a
2483 format usable by `describe-function'.
2484 (open-network-stream, open-network-stream-nowait)
2485 (open-network-stream-server): Fix docstring.
2486
2487 2004-05-09 Jason Rumney <jasonr@gnu.org>
2488
2489 * international/code-pages (cp932, cp936, cp949, c950): Remove.
2490 Only define cp125* if windows-125* is already defined.
2491
2492 * language/korean.el (cp949): Add alias.
2493
2494 * language/chinese.el (cp936, cp950): Add aliases.
2495
2496 * language/japanese.el (cp932): Add alias.
2497
2498 * term/w32-win.el: Require code-pages.
2499
2500 * international/mule-cmds.el (set-locale-environment):
2501 On MS-Windows use ansi code-page for default coding-systems.
2502 Set up paper sizes for Windows 3 letter languages.
2503
2504 * international/code-pages.el (cp932, cp936, cp949, cp950):
2505 Add aliases. Also add cp125* if not already defined.
2506
2507 2004-05-09 Juanma Barranquero <lektu@terra.es>
2508
2509 * help-fns.el (help-highlight-arguments): Don't try to highlight
2510 missing or autoloaded arglists. Accept structured arguments, like
2511 the first ones of `do' and `flet'.
2512
2513 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
2514 (cvs-get-marked): Remove redundant arglist info.
2515
2516 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
2517 Don't use CL-style default args.
2518
2519 2004-05-08 Andreas Schwab <schwab@suse.de>
2520
2521 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
2522
2523 * international/subst-ksc.el: Fix references to utf-translate-cjk
2524 into utf-translate-cjk-mode.
2525 * international/subst-big5.el: Likewise.
2526 * international/subst-gb2312.el: Likewise.
2527 * international/subst-jis.el: Likewise.
2528 * international/utf-16.el: Likewise.
2529 * international/utf-8.el: Likewise.
2530
2531 2004-05-08 John Wiegley <johnw@newartisans.com>
2532
2533 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
2534 "virtual buffers" (off by default), which makes it possible to
2535 switch to the "virtual" buffers of recently visited files. When a
2536 buffer name search fails, and this option is on, iswitchb will
2537 look at the list of recently visited files, and permit matching
2538 against those names. When the user hits RET on a match, it will
2539 revisit that file.
2540 (iswitchb-read-buffer): Add two optional arguments, which makes
2541 isearchb.el possible.
2542 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
2543 (iswitchb-next-match): Add support for virtual buffers.
2544
2545 * isearchb.el: This module extends iswitchb to provide "as you
2546 type" buffer selection.
2547
2548 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
2549 Ignore the read-only property when flyspell highlighting is on.
2550 Not ignoring it leads to a series of confusing errors.
2551 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
2552 but also make sure to call flyspell-incorrect-hook.
2553 (flyspell-maybe-correct-transposition): Perform transposition test
2554 by bit twiddling a string, rather than using a temp buffer.
2555 (flyspell-maybe-correct-doubling): Use a string rather than a temp
2556 buffer. This is also the original version of the code, which
2557 could not be checked in before due to a previous lack of
2558 assignment papers. This version has seen heavy usage on my system
2559 for several years now.
2560
2561 * calendar/cal-bahai.el: New file, which adds support for the
2562 Baha'i calendar to Emacs. This calendar is based on a solar year
2563 of 19 months of 19 days, with 4 intercalary days. Each year
2564 begins on March 21, with the calendar starting in 1844.
2565
2566 * calendar/cal-menu.el, calendar/calendar.el,
2567 calendar/diary-lib.el, calendar/holidays.el: Added support for
2568 using cal-bahai.el.
2569
2570 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
2571 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
2572 function can be used outside of eshell buffers.
2573 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
2574
2575 2004-05-08 Juanma Barranquero <lektu@terra.es>
2576
2577 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
2578 word constituent so FOO-ARG is not recognized as an arg.
2579 (help-highlight-arguments): Don't skip lists in mandatory arguments.
2580
2581 * simple.el (next-error): Fix typo in docstring.
2582 (open-line): Make argument names match their use in docstring.
2583 (split-line): Fix docstring.
2584
2585 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
2586 usable by `describe-function'.
2587 (gensym, gentemp, typep, ignore-errors): Make argument names match
2588 their use in docstring.
2589
2590 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
2591 argument to `help-setup-xref'.
2592
2593 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
2594
2595 Version 2.0.40 of Tramp released.
2596
2597 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
2598 Use symbol-function to invoke functions only known on some Emacs
2599 flavors. This avoids byte-compiler warnings. Reported by Kevin
2600 Scaldeferri <kevin@scaldeferri.com>.
2601 (tramp-do-copy-or-rename-file-via-buffer): Rename from
2602 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
2603 consistent with the other tramp-do-* functions.
2604 (tramp-do-copy-or-rename-file): Calls adjusted.
2605 (tramp-process-initial-commands): Avoid liveness check on shell --
2606 we know that it must be alive since we're opening a connection at
2607 this moment.
2608 (tramp-last-cmd): New internal variable.
2609 (tramp-process-echoes): New tunable.
2610 (tramp-send-command): Set tramp-last-cmd.
2611 (tramp-wait-for-output): Delete echo, if applicable.
2612 (tramp-read-passwd): Construct the key for the password cache in a
2613 way that works for multi methods, too.
2614 (tramp-bug): Add backup-directory-alist and
2615 bkup-backup-directory-info to bug reports, with Tramp counterparts.
2616
2617 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
2618
2619 * net/tramp*.el: Suppress byte-compiler warnings where possible.
2620
2621 * net/tramp.el (tramp-out-of-band-prompt-regexp)
2622 (tramp-actions-copy-out-of-band): New defcustoms.
2623 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
2624 used instead of a synchronous one. Allows password entering.
2625 (tramp-action-out-of-band): New defun.
2626 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
2627 Remove restriction with password from doc string.
2628 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
2629 `tramp-out-of-band-prompt-regexp',
2630 `tramp-actions-copy-out-of-band', `password-cache' and
2631 `password-cache-expiry'.
2632 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
2633 password caching.
2634 (tramp-touch): FILE can be a local file, too.
2635 (TODO): Remove items done.
2636 (tramp-handle-insert-directory): Properly quote file name also if
2637 not full-directory-p. Handle wildcard case. Reported by Andreas
2638 Schwab <schwab@suse.de>.
2639 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
2640 new file.
2641 (tramp-handle-file-local-copy, tramp-handle-write-region):
2642 The permissions of the temporary file are set if filename exists.
2643 Reported by Ted Stern <stern@cray.com>.
2644 (tramp-backup-directory-alist)
2645 (tramp-bkup-backup-directory-info): New defcustoms.
2646 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
2647 (tramp-handle-find-backup-file-name): New function.
2648 Implements Tramp's find-backup-file-name.
2649
2650 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
2651 for `find-backup-file-name'.
2652
2653 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
2654 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2655
2656 2004-05-07 Lars Hansen <larsh@math.ku.dk>
2657
2658 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
2659
2660 2004-05-07 Juanma Barranquero <lektu@terra.es>
2661
2662 * subr.el (lambda): Add arglist description to docstring.
2663 (declare): Fix typo in docstring.
2664 (open-network-stream): Fix docstring.
2665 (process-kill-without-query): Fix docstring and add obsolescence info.
2666 (last, butlast, nbutlast): Make arguments match their use in docstring.
2667 (insert-buffer-substring-no-properties): Likewise.
2668 (insert-buffer-substring-as-yank): Likewise.
2669 (split-string): Fix docstring.
2670
2671 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2672 Make argument names match their use in docstring.
2673
2674 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
2675
2676 2004-05-06 Nick Roberts <nickrob@gnu.org>
2677
2678 * progmodes/gdb-ui.el: Improve/extend documentation strings.
2679 Fit first sentence on one line for apropos-command.
2680
2681 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2682
2683 Changes largely merged in from Dave Love's code.
2684 * progmodes/python.el: Doc fixes.
2685 (python-mode-map): Add python-complete-symbol.
2686 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
2687 (python-comment-indent, python-complete-symbol)
2688 (python-symbol-completions, python-partial-symbol)
2689 (python-try-complete): New.
2690 (python-indent-line): Remove optional arg. Use python-block-end-p.
2691 (python-check): Bind compilation-error-regexp-alist.
2692 (inferior-python-mode): Use rx. Move keybindings to top level.
2693 Set comint-input-filter.
2694 (python-preoutput-filter): Use rx.
2695 (python-input-filter): Re-introduce.
2696 (python-proc): Start new process if necessary.
2697 Check python-buffer non-nil.
2698 (view-return-to-alist): Defvar.
2699 (python-send-receive): New.
2700 (python-eldoc-function): Use it.
2701 (python-mode-running): Don't defvar.
2702 (python-mode): Set comment-indent-function.
2703 Maybe update hippie-expand-try-functions-list.
2704 (python-indentation-levels): Initialize differently.
2705 (python-block-end-p): New.
2706 (python-indent-line): Use it.
2707 (python-compilation-regexp-alist): Augment.
2708 (run-python): Import `emacs' module to Python rather than loading
2709 code directly. Set python-buffer differently.
2710 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
2711 Use python-proc.
2712 (python-send-command): Go to end of comint buffer.
2713 (python-load-file): Use python-proc, emacs.eimport.
2714 (python-describe-symbol): Simplify interactive form.
2715 Use emacs.help. Do use temp-buffer-show-hook.
2716 Call print-help-return-message.
2717 (hippie-exp): Require when compiling.
2718 (python-preoutput-continuation): Use rx.
2719
2720 * diff-mode.el (diff-make-unified): Fix regexp.
2721
2722 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
2723
2724 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
2725 filter groups from the buffer when rebuilding the Ibuffer buffer
2726 and `ibuffer-show-empty-filter-groups' is nil.
2727
2728 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2729
2730 * ps-print.el (ps-print-quote): Call ps-value-string.
2731 (ps-setup): Call ps-comment-string.
2732 (ps-value-string, ps-comment-string): New funs.
2733
2734 2004-05-06 Juanma Barranquero <lektu@terra.es>
2735
2736 * ehelp.el (electric-help-command-loop): Check whether the last
2737 character is visible, not (point-max).
2738
2739 * help-fns.el (help-argument-name): Default to bold; don't inherit
2740 from font-lock-variable-name-face.
2741 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
2742
2743 2004-05-05 Kenichi Handa <handa@m17n.org>
2744
2745 * descr-text.el (describe-char): Copy the character with text
2746 properties and overlays into the first line, and call
2747 describe-text-properties on it.
2748
2749 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
2750
2751 * iswitchb.el (iswitchb-global-map): Fix typo.
2752 Remove unwanted ###autoloads from source file.
2753
2754 2004-05-05 Lars Hansen <larsh@math.ku.dk>
2755
2756 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
2757 in run-hooks. Use substitute-command-keys in message.
2758 (wdired-abort-changes): Add message.
2759
2760 2004-05-03 Michael Mauger <mmaug@yahoo.com>
2761
2762 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
2763 (sql-emacs20-p): Remove.
2764 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
2765 (sql-builtin-face, sql-doc-face): Remove.
2766 (sql-mode-ansi-font-lock-keywords)
2767 (sql-mode-oracle-font-lock-keywords)
2768 (sql-mode-postgres-font-lock-keywords)
2769 (sql-mode-linter-font-lock-keywords)
2770 (sql-mode-ms-font-lock-keywords)
2771 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
2772 (sql-product-font-lock): Fix font-lock reset when font rules change.
2773 (sql-highlight-product): Remove incorrect font-lock reset logic.
2774
2775 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
2776
2777 * ses.el (ses-set-parameter): Fix typo.
2778
2779 2004-05-04 Kim F. Storm <storm@cua.dk>
2780
2781 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
2782 Must expand directory for completion to work; and don't mess with
2783 process-environment.
2784 (ido-read-file-name): If command has ido property, don't use ido
2785 if value is ignore, or read as directory if value is dir.
2786 Set ido ignore property for dired-do-rename command.
2787
2788 2004-05-04 Juanma Barranquero <lektu@terra.es>
2789
2790 * ehelp.el (electric-help-command-loop, electric-help-undefined)
2791 (electric-help-help): Check against unmapped commands.
2792
2793 * help-fns.el (help-argument-name): New face, inheriting from
2794 font-lock-variable-name-face, to highlight function arguments in
2795 `describe-function' and `describe-key'.
2796 (help-do-arg-highlight): Auxiliary function to highlight a given
2797 list of arguments in a string.
2798 (help-highlight-arguments): Highlight the function arguments and
2799 all uses of them in the docstring.
2800 (describe-function-1): Use it. Do docstring output via `insert',
2801 not 'princ', so text attributes are preserved.
2802
2803 * winner.el (winner-mode-map): Move `winner-undo' and
2804 `winner-redo' to C-c <left> and C-c <right>, respectively (the
2805 previous bindings conflict with `prev-buffer', `next-buffer').
2806
2807 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2808
2809 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
2810 (bibtex-entry-update): New command bound to C-c C-u.
2811 (bibtex-text-in-string): Fix regexp.
2812 (bibtex-assoc-of-regexp): Remove.
2813 (bibtex-progress-message): Fix docstring.
2814 (bibtex-inside-field): Use if.
2815 (bibtex-assoc-regexp): New function.
2816 (bibtex-format-entry): Make code more robust so that it formats
2817 also old entries.
2818 (bibtex-autokey-demangle-title): Merge with obsolete function
2819 bibtex-assoc-of-regexp.
2820 (bibtex-field-list): New function.
2821 (bibtex-entry): Use bibtex-field-list.
2822 (bibtex-parse-entry): Fix docstring.
2823 (bibtex-print-help-message): Use bibtex-field-list.
2824 (bibtex-make-field): Use bibtex-field-list.
2825 (bibtex-entry-index): Bugfix. Return crossref key if required.
2826 (bibtex-lessp): Fix docstring.
2827
2828 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
2829
2830 * select.el (xselect-convert-to-string): Move comment to intended line.
2831
2832 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2833
2834 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
2835 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
2836
2837 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2838
2839 * term/x-win.el (x-clipboard-yank): Don't exit on error from
2840 x-get-selection.
2841
2842 2004-05-03 Jason Rumney <jasonr@gnu.org>
2843
2844 * makefile.nt: Remove.
2845
2846 2004-05-03 Kim F. Storm <storm@cua.dk>
2847
2848 * emulation/cua-base.el (cua--update-indications): Fix last change.
2849 (cua-mode): Deactivate mark when cua-mode is enabled.
2850
2851 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
2852
2853 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
2854
2855 2004-05-03 Nick Roberts <nickrob@gnu.org>
2856
2857 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
2858 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
2859 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
2860 window over visible frames.
2861 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
2862
2863 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2864
2865 * progmodes/compile.el (compilation-gcpro): New var.
2866 (compilation-fake-loc): Use it.
2867 (compilation-forget-errors): Reset it.
2868
2869 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2870
2871 * diff-mode.el (diff-header-face, diff-file-header-face):
2872 Use min-colors.
2873
2874 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2875
2876 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
2877 (bibtex-clean-entry): Disentangle code.
2878 (bibtex-realign): New function.
2879 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
2880 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
2881 Remove undocumented optional arg called-by-convert-alien.
2882 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
2883 for sorting instead of bibtex-sort-buffer.
2884
2885 2004-05-02 Eli Zaretskii <eliz@gnu.org>
2886
2887 * progmodes/compile.el (compilation-start): In the
2888 no-async-subprocesses branch, call sit-for to give redisplay a
2889 chance to show the updated process status in the mode line, and
2890 fontify the buffer explicitly after the process exits.
2891
2892 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2893
2894 * progmodes/python.el (python-compilation-line-number): Remove.
2895 (python-compilation-regexp-alist): Don't use it any more.
2896 (python-orig-start, python-input-filter): Remove.
2897 (inferior-python-mode): Don't set up comint-input-filter-functions.
2898 (python-send-region): Use compilation-fake-loc.
2899
2900 * progmodes/compile.el (compilation-messages-start): New var.
2901 (compilation-mode): Don't setup next-error-function here.
2902 (compilation-setup): Set it up here instead (for minor modes as well).
2903 Make compilation-messages-start buffer local.
2904 (compilation-next-error-function): Use it.
2905 (compilation-forget-errors): Set compilation-messages-start.
2906
2907 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
2908
2909 * ielm.el (ielm-prompt-read-only): Update docstring.
2910
2911 * comint.el (comint-prompt-read-only): Update docstring.
2912 (comint-update-fence, comint-kill-whole-line)
2913 (comint-kill-region): New functions.
2914
2915 * simple.el (kill-whole-line): Use "p" instead of "P" in
2916 interactive form.
2917
2918 2004-05-01 Juanma Barranquero <lektu@terra.es>
2919
2920 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
2921 format arglist so default values in CL-style argument lists are
2922 correctly shown.
2923
2924 2004-05-01 Jason Rumney <jasonr@gnu.org>
2925
2926 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
2927
2928 2004-05-01 Kenichi Handa <handa@m17n.org>
2929
2930 * international/titdic-cnv.el (miscdic-convert): Don't generate a
2931 quail file if it is up to date.
2932
2933 2004-04-30 Juri Linkov <juri@jurta.org>
2934
2935 * cus-edit.el (custom-mode-map):
2936 Add key binding `C-x C-s' to `Custom-save'.
2937
2938 * outline.el (outline-blank-line): New var.
2939 (outline-next-preface, outline-show-heading)
2940 (outline-end-of-subtree): Use it.
2941
2942 * dired-aux.el (dired-touch-initial): New fun.
2943 (dired-do-chxxx): Call it for op-symbol `touch'.
2944 (dired-diff): Use `dired-dwim-target-directory'
2945 if current dired buffer has no buffer mark.
2946
2947 * bindings.el (propertized-buffer-identification):
2948 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
2949 Add C-M-arrow keys for consistency.
2950
2951 * files.el (confirm-kill-emacs):
2952 Change group from top-level `emacs' to `convenience'.
2953
2954 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2955 Push mark on the first call of successive command calls.
2956 (insert-pair): New fun created from `insert-parentheses' with
2957 `open' and `close' arguments added. Enclose active regions
2958 in paired characters. Compare adjacent characters syntax with
2959 inserted characters syntax before inserting a space.
2960 (insert-parentheses): Call `insert-pair' with ?\( ?\).
2961
2962 * delsel.el: Don't put `delete-selection' property
2963 on `insert-parentheses' symbol to take advantage of
2964 region handling in `insert-pair' function.
2965 Suggested by Stephan Stahl <stahl@eos.franken.de>.
2966
2967 2004-04-30 Kim F. Storm <storm@cua.dk>
2968
2969 * emulation/cua-base.el: Add support for changing cursor types;
2970 based on patch from Michael Mauger.
2971 (cua-normal-cursor-color, cua-read-only-cursor-color)
2972 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
2973 Customization cursor type and/or cursor color.
2974 (cua--update-indications): Handle cursor type changes.
2975 (cua-mode): Update cursor indications if enabled.
2976
2977 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
2978
2979 * mouse.el (mouse-drag-copy-region): New defcustom.
2980 (mouse-set-region, mouse-drag-region-1): Use it.
2981
2982 * simple.el (kill-ring-save): If region face background color is
2983 unspecified (if no highlighting), show extent of fully visible
2984 region even if transient-mark-mode is enabled.
2985
2986 * emulation/cua-base.el (cua--standard-movement-commands):
2987 Add cua-scroll-up and cua-scroll-down.
2988 (cua-scroll-up, cua-scroll-down): New commands.
2989 (cua--init-keymaps): Remap scroll-up and scroll-down.
2990
2991 * emulation/cua-rect.el (cua--convert-rectangle-as):
2992 New defmacro.
2993 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
2994 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
2995 New commands (suggested by Jordan Breeding).
2996
2997 2004-04-30 Juanma Barranquero <lektu@terra.es>
2998
2999 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
3000
3001 2004-04-30 Mario Lang <mlang@delysid.org>
3002
3003 * diff.el (diff-switches): Fix typo in docstring.
3004
3005 2004-04-30 Alex Schroeder <alex@gnu.org>
3006
3007 * xml.el (xml-debug-print-internal): Don't add newline and
3008 indentation to text nodes and write empty elements as empty tags
3009 instead of opening and closing tags.
3010 (xml-debug-print): Take optional indent-string argument.
3011 (xml-print): Alias for xml-debug-print.
3012
3013 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
3014
3015 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
3016 than duplicate call to `line-beginning-position'.
3017
3018 * progmodes/f90.el (f90-get-present-comment-type):
3019 Return whitespace, as well as comment chars, for consistent filling
3020 of comment blocks. Use `match-string-no-properties'.
3021 (f90-break-line): Trim trailing whitespace when filling comments.
3022
3023 2004-04-30 Dave Love <fx@gnu.org>
3024
3025 * calendar/diary-lib.el (diary-outlook-formats): New variable.
3026 (diary-from-outlook-internal, diary-from-outlook)
3027 (diary-from-outlook-gnus, diary-from-outlook-rmail):
3028 New functions to import diary entries from Outlook-format
3029 appointments in mail messages.
3030
3031 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
3032
3033 * progmodes/python.el (python-send-command): New fun.
3034 (python-send-region, python-load-file): Use it.
3035
3036 * progmodes/compile.el (compilation-last-buffer): Add var alias.
3037
3038 * help-fns.el (help-C-file-name): Use new subr-name.
3039 Prepend `src/' to the file name.
3040 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
3041 (describe-function-1, describe-variable): Only find a C source file
3042 name if DOC is already loaded.
3043
3044 * help-mode.el (help-function-def, help-variable-def):
3045 Use the new find-function-search-for-symbol functionality.
3046 Allow FILE to be `C-source'.
3047
3048 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
3049 (find-function-C-source): New fun.
3050 (find-function-search-for-symbol): Use it.
3051
3052 2004-03-29 Michael Mauger <mmaug@yahoo.com>
3053
3054 * progmodes/sql.el (sql-product-alist): Rename variable
3055 `sql-product-support'. Add Postgres login parameters.
3056 (sql-set-product, sql-product-feature): Update with renamed variable.
3057 (sql-connect-postgres): Add username prompt.
3058 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
3059 Make patterns less product specific.
3060 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
3061 (sql-mode-abbrev-table): Modify initialization.
3062 (sql-builtin-face): Add variable.
3063 (sql-keywords-re): Add macro.
3064 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
3065 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
3066 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
3067 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
3068 (sql-mode-linter-font-lock-keywords)
3069 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
3070 (sql-mode-sybase-font-lock-keywords)
3071 (sql-mode-informix-font-lock-keywords)
3072 (sql-mode-interbase-font-lock-keywords)
3073 (sql-mode-ingres-font-lock-keywords)
3074 (sql-mode-solid-font-lock-keywords)
3075 (sql-mode-sqlite-font-lock-keywords)
3076 (sql-mode-db2-font-lock-keywords): Default to nil.
3077 (sql-product-font-lock): Always highlight ANSI keywords.
3078 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
3079 (sql-send-string): Add function.
3080
3081 2004-04-29 Dave Love <fx@gnu.org>
3082
3083 * progmodes/cfengine.el (cfengine-beginning-of-defun)
3084 (cfengine-end-of-defun): Ensure progress through buffer.
3085
3086 * info-look.el (cfengine-mode): Accept a terminal ().
3087
3088 2004-04-29 Juri Linkov <juri@jurta.org>
3089
3090 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
3091 instead of isearch-yank-word-or-char. Add new key bindings for
3092 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
3093 (isearch-del-char): New fun.
3094 (isearch-forward, isearch-edit-string): Update docstring.
3095 (isearch-yank-char): Doc fix.
3096 (isearch-other-meta-char): Restore point after scrolling.
3097
3098 * progmodes/compile.el (compilation-context-lines): Add nil option
3099 to disable compilation output window scrolling.
3100 (compilation-set-window): Use it.
3101
3102 * outline.el (outline-next-preface, outline-show-heading):
3103 Don't leave unhidden blank line before heading.
3104 (outline-end-of-subtree): Include last newline into subtree.
3105 (hide-entry): Leave point at beginning of heading instead of end.
3106 (outline-up-heading): Push mark for the first call of successive
3107 command calls.
3108
3109 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
3110
3111 * comint.el (comint-prompt-read-only): New variable.
3112 (comint-output-filter): Implement it.
3113
3114 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
3115 (ielm-prompt-internal): New variable.
3116 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
3117 (ielm-send-input): Delete unused variable `buf'.
3118 (ielm-eval-input): Use `ielm-prompt-internal'.
3119 (inferior-emacs-lisp-mode): Use new variables
3120 `comint-prompt-read-only' and `ielm-prompt-internal'.
3121 Get rid of obsolete variable `directory-sep-char'.
3122 (ielm): Use `zerop'.
3123
3124 2004-04-29 John Paul Wallington <jpw@gnu.org>
3125
3126 * thumbs.el (toplevel): Require cl at compile time.
3127 Remove conditional definitions of `ignore-errors' and `caddar'
3128 because they occur at run time.
3129
3130 2004-04-28 Nick Roberts <nickrob@gnu.org>
3131
3132 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
3133 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
3134 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3135 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
3136
3137 * progmodes/gud.el (gud-common-init): Throw an error if program is
3138 already running under gdb.
3139
3140 2004-04-28 John Paul Wallington <jpw@gnu.org>
3141
3142 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
3143 (thumbs-show-image-num): Move assignment of
3144 `thumbs-current-image-filename' within scope of `i'.
3145 (thumbs-emboss-image): Don't use `evenp'.
3146
3147 2004-04-28 Richard M. Stallman <rms@gnu.org>
3148
3149 * progmodes/compile.el (compilation-context-lines): Default now 0.
3150
3151 2004-04-28 Juanma Barranquero <lektu@terra.es>
3152
3153 Use `time-less-p' from calendar/time-date.el instead of defining
3154 custom versions of it.
3155
3156 * pcomplete.el (pcomplete-time-less-p): Remove.
3157
3158 * thumbs.el (time-less-p): Remove.
3159
3160 * calendar/timeclock.el (timeclock-time-less-p): Remove.
3161 (timeclock-generate-report): Use `time-less-p'.
3162
3163 * emacs-lisp/autoload.el (autoload-before-p): Remove.
3164 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
3165
3166 2004-04-28 Masatake YAMATO <jet@gyve.org>
3167
3168 * subr.el (remove-overlays): Make arguments optional.
3169
3170 * wid-edit.el (widget-specify-button): Put evaporate to the
3171 overlay for sample.
3172 (widget-specify-sample): Put evaporate to the overlay for sample.
3173 (widget-specify-doc): Put evaporate to the overlay for documentation.
3174
3175 2004-04-27 Jesper Harder <harder@ifa.au.dk>
3176
3177 * info.el (info-apropos): Make it an index node. Align node names
3178 like makeinfo.
3179
3180 2004-04-27 Eli Zaretskii <eliz@gnu.org>
3181
3182 * net/browse-url.el (browse-url-netscape-sentinel)
3183 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
3184 (browse-url-epiphany-sentinel, browse-url-mosaic):
3185 Use browse-url-*-program instead of a literal program name.
3186
3187 2004-04-27 Kevin Ryde <user42@zip.com.au>
3188
3189 * eshell/em-alias.el:
3190 * eshell/em-dirs.el:
3191 * eshell/em-hist.el:
3192 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
3193 features when M-x customize-group loads modules before the main
3194 eshell.el.
3195
3196 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
3197
3198 * subr.el (momentary-string-display): Support EXIT-CHAR that is
3199 either a character representation of an event or an event
3200 description list.
3201
3202 * type-break.el: Capitalise Emacs and Lisp.
3203 (type-break-good-break-interval, type-break-demo-boring-stats)
3204 (type-break-terse-messages, type-break-file-name): New defcustoms.
3205 (type-break-post-command-hook)
3206 (type-break-warning-countdown-string): Quote variable names in doc.
3207 (type-break-interval-start, type-break-auto-save-file-name): New vars.
3208 (type-break-mode): Document type-break-good-break-interval and the
3209 "session" file. Schedule break according to the session file.
3210 Kill session file buffer on exit. Organise for save-some-buffers
3211 to always save the session file.
3212 (type-break-mode-line-message-mode, type-break-query-mode):
3213 Uppercase arguments.
3214 (type-break-file-time, type-break-file-keystroke-count, timep)
3215 (type-break-choose-file, type-break-get-previous-time)
3216 (type-break-get-previous-count): New defuns.
3217 (type-break): Avoid break querying after a completed break in the
3218 case where the query was initiated during user invocation of the
3219 break. Optional terse messages.
3220 Use type-break-good-break-interval if type-break-good-rest-interval is
3221 nil. File the break time.
3222 (type-break-schedule): New optional args for overriding the use of
3223 the current time.
3224 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
3225 after a break.
3226 (type-break-check): File the keystroke count.
3227 (type-break-do-query): Prevent a second query when the break is
3228 interrupted. Optional terse message.
3229 (type-break-keystroke-reset): Record the start of a typing interval.
3230 (type-break-demo-boring): Optional terse messages. Display word
3231 per minute and keystroke counts according to
3232 type-break-demo-boring-stats.
3233
3234 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
3235
3236 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
3237 directories, make sure they exist under archive-tmpdir.
3238
3239 2004-04-27 Juri Linkov <juri@jurta.org>
3240
3241 * help.el (view-emacs-news): With argument, display info for the
3242 selected version by finding it among different NEWS files, and
3243 narrowing the buffer to the selected version.
3244
3245 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
3246 same-window-buffer-names.
3247 (info): New arg `buffer'. Use it. Doc fix. Read file name for
3248 non-numeric prefix argument, append the number to the buffer name
3249 for numeric prefix argument.
3250 (info-other-window): Bind same-window-regexps to nil.
3251 (Info-reference-name): Rename to Info-point-loc.
3252 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
3253 and Info-find-index-name for stringy Info-point-loc.
3254 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
3255 without middle `.', but with final `.' and optional line number
3256 for it. Set Info-point-loc for index nodes.
3257 (Info-index): Remove middle `.' from index entry regexp.
3258 Modify line number regexp.
3259 (Info-index-next): Decrement line number.
3260 (info-apropos): Remove middle `.' from index entry regexp.
3261 Add optional line number regexp at the end. Add matched value
3262 for line number to the result list and insert it to the buffer.
3263 Replace match-string by match-string-no-properties.
3264 Reorder result list.
3265 (Info-fontify-node): Hide index line numbers.
3266 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
3267 empty matches.
3268 (Info-follow-reference): Use `str' instead of
3269 Info-following-node-name-re.
3270 (Info-toc): Use full file names. Set Info-current-node to "Top".
3271 (Info-fontify-node): Compare file names without directory name.
3272 (Info-try-follow-nearest-node): Don't set Info-reference-name.
3273 Set second arg of Info-extract-menu-node-name for index nodes.
3274 (info-xref-visited): Use magenta3 instead of magenta4.
3275 (Info-mode): Add info-apropos to docstring.
3276
3277 * log-view.el (log-view-diff): Replace interactive code "r"
3278 by a list to allow to call it even if region is not active.
3279
3280 * paren.el (show-paren-highlight-openparen): New var.
3281 (show-paren-function): Turn on openparen highlighting when
3282 matching forward if show-paren-highlight-openparen is non-nil.
3283
3284 * simple.el (kill-ring-save): Use blink-matching-delay instead of
3285 the constant value 1.
3286 (completions-common-part): Expand docstring.
3287
3288 * textmodes/picture.el (picture-mode-map): Add arrow keys.
3289
3290 2004-04-27 Kim F. Storm <storm@cua.dk>
3291
3292 * image.el (insert-sliced-image): Use line-height instead of
3293 line-spacing property on newline.
3294
3295 2004-04-26 Lars Hansen <larsh@math.ku.dk>
3296
3297 * desktop.el (desktop-buffer-misc-data-function): Rename to
3298 desktop-save-buffer and change docstring.
3299 (desktop-buffer-modes-to-save): Delete.
3300 (desktop-save-buffer-p): Use desktop-save-buffer instead of
3301 desktop-buffer-modes-to-save.
3302 (desktop-save): Rename desktop-buffer-misc-data-function to
3303 desktop-save-buffer and allow non-function value.
3304 (desktop-missing-file-warning): Correct docstring.
3305
3306 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
3307 to desktop-save-buffer.
3308
3309 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
3310 desktop-save-buffer.
3311
3312 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
3313
3314 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
3315
3316 2004-04-26 Eli Zaretskii <eliz@gnu.org>
3317
3318 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
3319
3320 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
3321
3322 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
3323 (ielm): Only go to the end of the buffer when starting a new process.
3324
3325 2004-04-25 Juanma Barranquero <lektu@terra.es>
3326
3327 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
3328 mode line. Bind `inhibit-read-only' to t before modifying
3329 properties of text in the buffer.
3330 (ielm): Force point to the end of buffer, even when running ielm
3331 from inside itself.
3332
3333 2004-04-25 Jesper Harder <harder@ifa.au.dk>
3334
3335 * info.el (info-apropos): Reset Info-complete-cache.
3336
3337 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
3338
3339 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3340 Also recognize severe Irix et al. messages.
3341 (compilation-normalize-filename, compile-abbreviate-directory):
3342 Delete functions.
3343 (compilation-get-file-structure): New function inherits
3344 functionality of the two preceding ones.
3345 (compilation-internal-error-properties, compilation-fake-loc):
3346 Use it so that different paths to the same file share the same
3347 markers. Also optimize finding adjacent marker slightly.
3348
3349 2004-04-25 Kim F. Storm <storm@cua.dk>
3350
3351 * image.el (insert-sliced-image): Add line-spacing t property
3352 to newlines separating image lines.
3353
3354 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
3355
3356 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
3357
3358 * ielm.el (ielm-prompt-read-only): New user option.
3359 (ielm-prompt): Expand docstring to describe new behavior.
3360 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
3361 mention it in the docstring.
3362
3363 2004-04-24 Andreas Schwab <schwab@suse.de>
3364
3365 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
3366
3367 * diff.el (diff): Set default-directory in diff buffer.
3368
3369 2004-04-24 Eli Zaretskii <eliz@gnu.org>
3370
3371 * mail/sendmail.el (mail-bury): Don't delete the frame where the
3372 mail was being composed if the terminal cannot display more than
3373 one frame; instead, switch to previous frame.
3374
3375 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
3376 (rmail-start-mail): Support rmail-mail-new-frame even on
3377 terminals that can display only one frame at a time.
3378
3379 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3380
3381 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
3382 (checkdoc-output-font-lock-keywords): Remove error regexp.
3383 (checkdoc-output-mode-map): Remove.
3384 (checkdoc-output-mode): Derive from compilation-mode.
3385 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
3386
3387 * dired.el (dired-mode-map): Add a menu entry for wdired.
3388
3389 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
3390 (rx-bracket, rx-check-any, rx-any): Clean up name space.
3391
3392 * wdired.el: (wdired-mode-map): Move init into declaration.
3393 Fix `return' binding.
3394 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3395 Use force-mode-line-update.
3396 (wdired-get-filename): Use `unless'.
3397 (wdired-preprocess-files): Don't assume names have no \n and use / for
3398 dir separator.
3399 (wdired-normalize-filename): Use replace-regexp-in-string.
3400 (wdired-load-hooks): Remove.
3401 (wdired-mode-hooks): Rename to wdired-mode-hook.
3402
3403 * info-look.el: Add support for cfengine-mode.
3404 (info-lookup-setup-mode): Use dolist.
3405
3406 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
3407
3408 * wdired.el: New file.
3409
3410 2004-04-23 Juanma Barranquero <lektu@terra.es>
3411
3412 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
3413
3414 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
3415 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
3416 (pcomplete--help, pcomplete--here): Doc fixes.
3417
3418 2004-04-23 Andre Spiegel <spiegel@gnu.org>
3419
3420 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
3421 handles wrong-number-of-arguments in backend call.
3422
3423 * vc.el (vc-print-log): Likewise.
3424
3425 2004-04-20 Dave Love <fx@gnu.org>
3426
3427 * emacs-lisp/rx.el: Doc fixes.
3428 (rx-constituents): Add/extend many forms.
3429 (rx-check): Check form is a list.
3430 (bracket): Defvar.
3431 (rx-check-any, rx-any, rx-check-not): Modify.
3432 (rx-not): Simplify.
3433 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
3434 (rx-kleene): Use rx-trans-forms.
3435 (rx-quote-for-set): Delete.
3436 (rx): Allow multiple args.
3437
3438 2004-04-23 Kenichi Handa <handa@m17n.org>
3439
3440 * international/mule-util.el (char-displayable-p): Simplify by
3441 using internal-char-font.
3442
3443 2004-04-23 Juanma Barranquero <lektu@terra.es>
3444
3445 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3446
3447 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3448
3449 * diff-mode.el (diff-next-error): New fun.
3450 (diff-mode): Use it.
3451
3452 * simple.el (next-error): Change arg name.
3453 Add support for the documented C-u C-x ` usage.
3454
3455 * frame.el (special-display-popup-frame, next-multiframe-window)
3456 (previous-multiframe-window): Only consider frames on same display.
3457
3458 2004-04-22 Lars Hansen <larsh@math.ku.dk>
3459
3460 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
3461 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
3462
3463 2004-04-22 Kim F. Storm <storm@cua.dk>
3464
3465 * net/telnet.el (telnet): Add optional port arg.
3466
3467 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3468
3469 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3470 Minor sanity check on the `hyperlink' slot.
3471
3472 * Makefile.in (recompile): Compile new files.
3473
3474 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
3475 Add byte-recompile-directory's optional `arg'.
3476
3477 * cvs-status.el (cvs-tree-use-charset): New var.
3478 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
3479 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
3480 (cvs-status-cvstrees): Use it.
3481
3482 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
3483 Make it a normal major mode.
3484 (checkdoc-buffer-label): Make sure the file name is meaningful.
3485 (checkdoc-output-to-error-buffer): Remove.
3486 (checkdoc-error, checkdoc-start-section): Rewrite.
3487
3488 * info.el (info-node, info-menu-5, info-xref, info-header-node)
3489 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3490 (Info-title-4-face): Use new syntax.
3491 (info-xref-visited): Inherit from info-xref.
3492
3493 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
3494
3495 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
3496
3497 * simple.el (next-error-last-buffer, next-error-function):
3498 New variables for the next-error framework.
3499 (next-error-buffer-p): New function.
3500 (next-error-find-buffer): Generalize compilation-find-buffer.
3501 (next-error, previous-error, first-error, next-error-no-select)
3502 (previous-error-no-select): Move from compile.el.
3503
3504 * replace.el (occur-next-error, occur-1): Hook into the next-error
3505 framework.
3506
3507 * progmodes/compile.el (compilation-start):
3508 Set next-error-last-buffer so next-error knows where to jump.
3509 (compilation-setup): Set the buffer-local variable
3510 next-error-function to 'compilation-next-error-function.
3511 (compilation-buffer-p, compilation-buffer-internal-p): Use an
3512 alternate way to find if a buffer is a compilation buffer, for
3513 next-error convenience.
3514 (next-error-no-select, previous-error-no-select, next-error)
3515 (previous-error, first-error): Move to simple.el.
3516 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
3517 (compilation-last-buffer): Remove.
3518 (compilation-start, compilation-next-error, compilation-setup)
3519 (compilation-next-error-function, compilation-find-buffer):
3520 Remove compilation-last-buffer use.
3521
3522 2004-04-21 Juanma Barranquero <lektu@terra.es>
3523
3524 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
3525 (font-lock-warning-face): Fix spacing.
3526
3527 * makefile.w32-in (WINS): Add url/ directory.
3528
3529 2004-04-21 Lars Hansen <larsh@math.ku.dk>
3530
3531 * desktop.el (desktop-buffer-mode-handlers): New variable.
3532 Alist of major mode specific functions to restore a desktop buffer.
3533 (desktop-buffer-handlers): Make variable obsolete.
3534 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
3535 Catch errors signaled in handlers. Update buffer count.
3536 Evaluate desktop-buffer-point.
3537 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
3538 move to dired.el.
3539 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
3540 move to info.el.
3541 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
3542 move to mail/rmail.el.
3543 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
3544 to mh-e/mh-e.el.
3545 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
3546 On fail, print message (to message buffer) even if
3547 desktop-missing-file-warning is nil.
3548 (desktop-buffer-misc-data-function): New buffer local variable.
3549 Function returning major mode specific data.
3550 (desktop-buffer-misc-functions): Make variable obsolete.
3551 (desktop-save): Use desktop-buffer-misc-data-function.
3552 (desktop-buffer-dired-misc-data): Rename to
3553 dired-desktop-buffer-misc-data and move to dired.el.
3554 (desktop-buffer-info-misc-data): Rename to
3555 Info-desktop-buffer-misc-data and move to info.el.
3556 (desktop-read): Add message about number of buffers restored/failed.
3557
3558 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
3559 Add parameters. Pause to display error only when
3560 desktop-missing-file-warning is non-nil.
3561 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3562 (dired-mode): Bind desktop-buffer-misc-data-function.
3563
3564 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
3565 Add Parameters.
3566 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3567 (Info-mode): Bind desktop-buffer-misc-data-function.
3568
3569 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
3570 Add Parameters.
3571
3572 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
3573 Add Parameters.
3574
3575 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
3576
3577 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
3578 the case of letters in case-insensitive expansions when the
3579 abbrev is preceded by characters with letter syntax.
3580
3581 2004-04-21 Richard M. Stallman <rms@gnu.org>
3582
3583 * progmodes/cperl-mode.el (cperl-putback-char):
3584 Delete Emacs 18 definition.
3585
3586 * international/mule.el (ctext-post-read-conversion):
3587 Use assoc-string, not assoc-ignore-case.
3588
3589 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
3590
3591 * emacs-lisp/easymenu.el (easy-menu-add):
3592 Do call x-popup-menu, but only if it's defined.
3593
3594 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
3595
3596 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
3597 Handle multiple args: compile like progn.
3598
3599 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
3600 take all args as &rest arg.
3601
3602 * autoinsert.el (auto-insert-alist): Insert the user's name in
3603 copyright notice, rather than Free Software Foundation.
3604
3605 2004-04-21 Kenichi Handa <handa@m17n.org>
3606
3607 * descr-text.el (describe-char): Make it work on *Help* buffer.
3608
3609 2004-04-21 Kim F. Storm <storm@cua.dk>
3610
3611 * image.el (insert-image): Add optional SLICE arg.
3612 (insert-sliced-image): New defun.
3613
3614 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
3615
3616 * subr.el (read-number): Check whether `default' is nil.
3617
3618 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3619
3620 * progmodes/compile.el (compilation-error-properties):
3621 Split into two.
3622 (compilation-internal-error-properties): New one.
3623 (compilation-compat-error-properties): Use it. Fix the non-marker case.
3624
3625 2004-04-20 Richard M. Stallman <rms@gnu.org>
3626
3627 * window.el (split-window-save-restore-data):
3628 Don't update the data if OLD-INFO is nil.
3629
3630 * view.el (view-return-to-alist): Mark it permanent local.
3631
3632 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
3633
3634 * recentf.el (recentf-save-list): Catch and warn about errors.
3635
3636 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
3637 so "Buffers" won't be pure.
3638
3639 * help-mode.el (help-mode-finish): Set help-return-alist first
3640 thing, setting only the entry for the selected window.
3641
3642 * help-fns.el (describe-function-1): If many non-control non-meta
3643 keys run the command, don't list all of them.
3644
3645 2004-04-20 Juanma Barranquero <lektu@terra.es>
3646
3647 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
3648 arg. Copied from Andre Spiegel's patch of 2004-03-21.
3649
3650 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
3651
3652 2004-04-20 Kenichi Handa <handa@m17n.org>
3653
3654 * international/quail.el (quail-lookup-key): New optional arg
3655 NOT-RESET-INDICES.
3656 (quail-get-translations): Call quail-lookup-key with
3657 NOT-RESET-INDICES t.
3658 (quail-completion): Likewise.
3659 (quail-lookup-map-and-concat): Likewise.
3660
3661 2004-04-20 Kenichi Handa <handa@m17n.org>
3662
3663 * international/quail.el (quail-update-translation): Don't insert
3664 such an unsupported multibyte char in a unibyte buffer.
3665
3666 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
3667
3668 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
3669 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
3670 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
3671 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
3672 (gdb-frame-assembler-buffer): Improve behaviour with
3673 multiple frames.
3674 (gdb-display-buffer): Extend search to all visible frames.
3675
3676 2004-04-19 Eli Zaretskii <eliz@gnu.org>
3677
3678 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
3679 characters left after base64 decoding.
3680 (rmail-decode-region): Use -dos variety of `coding', to remove any
3681 ^M characters left after qp or base64 decoding.
3682
3683 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3684
3685 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
3686 messages.
3687
3688 2004-04-19 Stephen Eglen <stephen@gnu.org>
3689
3690 * add-log.el (add-change-log-entry): Update doc string to mention
3691 add-log-full-name and add-log-mailing-address.
3692
3693 2004-04-18 Juri Linkov <juri@jurta.org>
3694
3695 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
3696 (Info-find-node-2): Simplify error message.
3697 (Info-insert-dir): Use Info-following-node-name.
3698 (Info-goto-node): Remove *info-history* and *info-toc*.
3699 (Info-history): Create a node of the virtual history file.
3700 (Info-toc): Create a node of the virtual toc file.
3701 (Info-insert-toc): New arg `curr-file' for reference file names.
3702 (info-apropos): Remove redundant var binding for temp-file.
3703 (Info-index, Info-index-next, Info-mode): Doc fix.
3704 (Info-goto-emacs-command-node): Don't jump to *info* from
3705 non-*info* Info buffers.
3706 (Info-fontify-node): Don't show the file name of external
3707 references if `Info-hide-note-references' is `hide'. Don't hide
3708 newlines at the end of paragraphs.
3709
3710 * international/mule-diag.el (list-input-methods):
3711 Fix args to help-xref-button.
3712
3713 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
3714 to put into effect local variables from TUTORIAL files.
3715
3716 * textmodes/paragraphs.el (sentence-end) <function>: New fun
3717 with default value taken from the variable `sentence-end'.
3718 (sentence-end) <defcustom>: Set default to nil. Doc fix.
3719 Add nil const to :type.
3720 (sentence-end-without-period, sentence-end-double-space)
3721 (sentence-end-without-space): Doc fix.
3722
3723 * textmodes/paragraphs.el (forward-sentence):
3724 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
3725 (fill-delete-newlines):
3726 * progmodes/cc-cmds.el (c-beginning-of-statement):
3727 Use function `sentence-end' instead of variable `sentence-end'.
3728
3729 2004-04-18 Andreas Schwab <schwab@suse.de>
3730
3731 * progmodes/compile.el (compilation-start): Set window start to
3732 point-min if compilation-scroll-output is nil.
3733
3734 2004-04-18 John Wiegley <johnw@newartisans.com>
3735
3736 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
3737
3738 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
3739
3740 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
3741 (gdb-info-breakpoints-custom): Revert previous change.
3742 (gdb-view-assembler): Update assembler if necessary.
3743 (gdb-frame-handler): Parse correctly for gdb-current-frame.
3744 (gdb-display-source-buffer): Update properly when both source and
3745 assembler are visible.
3746
3747 2004-04-17 John Wiegley <johnw@newartisans.com>
3748
3749 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
3750 which limits the number of names shown in the minibuffer. Off by
3751 default.
3752 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
3753 up iswitchb for users with a multitude of open buffers by showing
3754 only the first and last N/2 buffers in the completion list (which
3755 is enough to aid C-s/C-r, and to know that more characters are
3756 needed to refine the completion list).
3757
3758 2004-04-17 Richard M. Stallman <rms@gnu.org>
3759
3760 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
3761 (file-truename): Expand all ~ constructs directly.
3762 (insert-directory): Delete any error msg output by the
3763 `insert-directory-program'.
3764
3765 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
3766 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
3767 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
3768 (allout-init): Use find-file-hook, not find-file-hooks.
3769 (allout-mode): Eliminate Emacs 18 support.
3770 Use write-contents-functions, not local-write-file-hooks.
3771
3772 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
3773
3774 * progmodes/compile.el (compilation-error-properties): Fix for
3775 adding messages when there are already markers for their file.
3776 (compilation-fake-loc): New function.
3777
3778 2004-04-16 Dave Love <fx@gnu.org>
3779
3780 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
3781 (python-load-file): Fix python-orig-start setting.
3782
3783 * progmodes/compile.el: Doc fixes.
3784 (compilation-error-regexp-alist-alist)
3785 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
3786 (compilation-assq): Wrap in eval-when-compile.
3787 (compilation-mode-font-lock-keywords): Don't use list*.
3788 (compilation-start): Avoid warning.
3789 (compilation-compat-error-properties)
3790 (compilation-directory-properties): Add keymap property.
3791 (compilation-parsing-end): Make it a marker for better compatibility.
3792
3793 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
3794
3795 2004-04-16 Mark A. Hershberger <mah@everybody.org>
3796
3797 * xml.el: Doc fixes.
3798 (xml-get-children): Only looks at sub-tags and ignore strings.
3799
3800 * xml.el (xml-parse-tag): Avoid overwriting node-name.
3801
3802 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3803
3804 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
3805
3806 2004-04-16 Andre Spiegel <spiegel@gnu.org>
3807
3808 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
3809
3810 * vc.el (vc-print-log): Likewise.
3811
3812 2004-04-16 Masatake YAMATO <jet@gyve.org>
3813
3814 * simple.el (completion-setup-function): Set an initial value
3815 to `element-common-end' before entering loop. Set a value
3816 to `element-common-end' at the end of loop.
3817 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
3818 (completions-common-part): Rename from completion-de-emphasis.
3819 (completions-first-difference): Rename from completion-emphasis.
3820 Suggested by RMS.
3821
3822 2004-04-16 Juanma Barranquero <lektu@terra.es>
3823
3824 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
3825 (bookmark-edit-annotation-mode): Add mode name.
3826
3827 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3828
3829 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
3830 for nested conflict markers.
3831 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
3832
3833 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
3834
3835 * progmodes/gdb-ui.el (gdb-goto-info): New function.
3836
3837 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
3838
3839 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3840
3841 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
3842 Give a backtrace if requested.
3843
3844 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
3845
3846 * progmodes/python.el (python-mouse-2-command, python-RET-command):
3847 Remove unused functions.
3848 (python-orig-start-line, python-orig-file): Remove.
3849 (python-orig-start): New var.
3850 (python-input-filter, python-compilation-line-number)
3851 (python-send-region, python-load-file): Use it.
3852
3853 * info.el (info): Always jump to *info*.
3854
3855 * subr.el (posn-set-point): New function.
3856
3857 * mouse.el (mouse-set-point): Use it.
3858
3859 * progmodes/compile.el (compile-goto-error): Use it.
3860 (compilation-button-map): New keymap.
3861 (compilation-error-properties): Use it.
3862 (compilation-shell-minor-mode-map): Don't bind mouse-2.
3863
3864 * smerge-mode.el (smerge-popup-context-menu): Use it.
3865
3866 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
3867 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
3868 mouse and non-mouse case.
3869
3870 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
3871 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
3872
3873 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
3874 Make it work for non-mouse events.
3875
3876 * pcvs-info.el (cvs-status-map): Update binding name.
3877
3878 2004-04-14 Mark A. Hershberger <mah@everybody.org>
3879
3880 * xml.el (xml-maybe-do-ns): New function to handle namespace
3881 parsing of both attribute and element names.
3882 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
3883 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
3884 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
3885 (xml-parse-attlist): Make it do its own namespace parsing.
3886
3887 2004-04-14 Dave Love <fx@gnu.org>
3888
3889 * progmodes/python.el (run-python): Fix use of \n.
3890 (python-load-file): Remove `try' from Python fragment.
3891 (python-describe-symbol): Fix message.
3892
3893 * comint.el: Doc fixes.
3894 (comint-last-input-start, comint-last-input-end)
3895 (comint-last-output-start): Give them values.
3896 (comint-arguments): Avoid warning.
3897 (comint-skip-prompt): Use line-end-position.
3898 (comint-backward-matching-input): Rename arg to agree with doc.
3899 (comint-extract-string): Use syntax-ppss.
3900 (comint-dynamic-simple-complete): Delete useless list construction.
3901 (comint-redirect-subvert-readonly): New.
3902 (comint-redirect-preoutput-filter): Use it.
3903
3904 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
3905 Correctly handle negative arguments when calling hook functions.
3906
3907 2004-04-14 Jesper Harder <harder@ifa.au.dk>
3908
3909 * info.el (info-apropos): Don't clobber Info-history-list.
3910
3911 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
3912
3913 * progmodes/compile.el (compilation-setup):
3914 Localize overlay-arrow-position.
3915 (compilation-sentinel): Restructure code equivalently.
3916 (compilation-next-error): Find message on same line after point if
3917 not found before point.
3918 (compile-mouse-goto-error): Restore function so that compilation
3919 buffer need not be current and use compile-goto-error.
3920 (compile-goto-error): Restore function.
3921 (next-error): Set overlay-arrow-position.
3922 (compilation-forget-errors): Don't localize already local
3923 compilation-locs and remove FIXME about refontifying.
3924
3925 2004-04-14 Kim F. Storm <storm@cua.dk>
3926
3927 * startup.el (emacs-quick-startup): New defvar (set by -Q).
3928 (command-line): New option -Q. Like -q --no-site-file, but
3929 in addition it also disables menu-bar, tool-bar, scroll-bars,
3930 tool-tips, and the blinking cursor.
3931 (command-line-1): Skip startup screen if -Q.
3932 (fancy-splash-head): Use ":align-to center" prop to center splash image.
3933
3934 * emulation/cua-base.el (cua-read-only-cursor-color)
3935 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
3936
3937 2004-04-13 Dave Love <fx@gnu.org>
3938
3939 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
3940 (syntax): Don't require.
3941 (python) <defgroup>: Add :version.
3942 (python-quote-syntax): Re-written.
3943 (inferior-python-mode): Move stuff here from run-python and add
3944 some more.
3945 (python-preoutput-continuation, python-preoutput-result)
3946 (python-dotty-syntax-table): New.
3947 (python-describe-symbol): Use them.
3948 (run-python): Move stuff to inferior-python-mode. Modify code
3949 loaded into Python.
3950 (python-send-region): Use python-proc, python-send-string.
3951 (python-send-string): Send newlines too. Callers changed.
3952 (python-load-file): Re-written.
3953 (python-eldoc-function): New.
3954 (info-look): Don't require.
3955 (python-after-info-look): New. A modified version of former
3956 top-level code for use with eval-after-load.
3957 (python-maybe-jython, python-guess-indent): Use widened buffer.
3958 (python-fill-paragraph): Re-written.
3959 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
3960 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
3961
3962 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3963
3964 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
3965 Set compilation-error-regexp-alist earlier.
3966
3967 * progmodes/compile.el (compilation-minor-mode-map)
3968 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
3969 (compile-goto-error): Re-merge the mouse and non-mouse commands.
3970
3971 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3972
3973 * progmodes/compile.el (compile-goto-error): Select the buffer/window
3974 corresponding to the event.
3975
3976 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
3977
3978 * loadup.el: Add cygwin to system-type list, for unexec() support.
3979
3980 2004-04-12 John Paul Wallington <jpw@gnu.org>
3981
3982 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
3983 (ibuffer-restore-window-config-on-quit): New variable to replace
3984 `ibuffer-delete-window-on-quit'. Update all references.
3985 (ibuffer-prev-window-config): New variable.
3986 (ibuffer-quit): Restore previous window configuration instead of
3987 deleting window.
3988 (ibuffer): Save window configuration before showing Ibuffer buffer.
3989
3990 * help.el (describe-mode): Doc fix.
3991
3992 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3993
3994 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
3995 not to treat nil as a function.
3996
3997 * vc-arch.el (vc-arch-root): Be a bit more careful.
3998 (vc-arch-register): Save the buffer if we modified it.
3999 (vc-arch-delete-rej-if-obsolete): Save excursion.
4000 (vc-arch-find-file-hook): Use the simpler after-save-hook.
4001 (vc-arch-responsible-p, vc-arch-init-version): New functions.
4002
4003 * net/ldap.el (ldap-search): Use list*.
4004
4005 2004-04-12 Juri Linkov <juri@jurta.org>
4006
4007 * info.el (Info-follow-reference): Allow multiline reference name.
4008
4009 2004-04-11 Dave Love <fx@gnu.org>
4010
4011 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
4012
4013 * progmodes/python.el: New file.
4014
4015 2004-04-11 Andre Spiegel <spiegel@gnu.org>
4016
4017 * vc-hooks.el (vc-arg-list): Function removed.
4018 (vc-default-workfile-unchanged-p): Use condition-case to check for
4019 backward compatibility.
4020
4021 * vc.el (vc-print-log): Use condition-case to check for backward
4022 compatibility.
4023
4024 2004-04-11 Juri Linkov <juri@jurta.org>
4025
4026 * dired.el (dired-faces): New defgroup.
4027 (dired-header, dired-mark, dired-marked, dired-flagged)
4028 (dired-warning, dired-directory, dired-symlink, dired-ignored):
4029 New faces.
4030 (dired-header-face, dired-mark-face, dired-marked-face)
4031 (dired-flagged-face, dired-warning-face, dired-directory-face)
4032 (dired-symlink-face, dired-ignored-face): New face variables.
4033 (dired-font-lock-keywords): Use them instead of font-lock faces.
4034 Split the rule for dired marks into 3 separate rules: for marks,
4035 marked file names and flagged file names.
4036
4037 * help-mode.el (help-make-xrefs): Add a final newline to the
4038 *Help* buffer.
4039
4040 2004-04-11 John Paul Wallington <jpw@gnu.org>
4041
4042 * replace.el (occur-engine): Distinguish between one and several
4043 matches in the matches per buffer heading.
4044
4045 2004-04-11 Kim F. Storm <storm@cua.dk>
4046
4047 * ido.el (ido-confirm-unique-completion): New defcustom.
4048 (ido-complete): Use it.
4049 (ido-write-file): Set it to t unconditionally.
4050
4051 2004-04-10 Miles Bader <miles@gnu.org>
4052
4053 RCS keyword removal (only non-comment changes are enumerated here):
4054
4055 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
4056 (byte-compile-insert-header): Don't use `byte-compile-version'.
4057 * forms.el (forms-version): Variable removed.
4058 (forms-mode): Don't use `forms-version'.
4059 * recentf.el (recentf-version): Variable removed.
4060 * progmodes/delphi.el (delphi-version): Variable removed.
4061 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
4062
4063 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4064
4065 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
4066
4067 2004-04-09 Jesper Harder <harder@ifa.au.dk>
4068
4069 * info.el (info-apropos): Improve menu item regexp.
4070
4071 2004-04-09 Simon Josefsson <jas@extundo.com>
4072
4073 * mail/smtpmail.el: Add comment, based on report by
4074 kdc@rcn.com (Kevin D. Clark).
4075
4076 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4077
4078 * progmodes/compile.el (compilation-mode-font-lock-keywords):
4079 Redo one more thing that I didn't notice Daniel had undone.
4080
4081 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
4082
4083 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
4084 (gdb-goto-breakpoint, gdb-display-buffer)
4085 (gdb-display-source-buffer, gdb-view-source-function)
4086 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
4087 (gdb-source-info, gdb-frame-handler): Don't specify a window
4088 for display.
4089 (gdb-info-breakpoints-custom): Remove superfluous update of
4090 assembler buffer.
4091 (gdb-many-windows): Make settable outside gdb.
4092
4093 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
4094
4095 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
4096 Derive from fundamental-mode rather than text-mode.
4097
4098 2004-04-08 Juri Linkov <juri@jurta.org>
4099
4100 * info.el (Info-history): Doc fix.
4101 (Info-history-list): New var.
4102 (info-xref): Change magenta4 to blue, remove bold for dark and
4103 light backgrounds, change bold to underline for non-color classes.
4104 (info-xref-visited): New face.
4105 (Info-fontify-visited-nodes): New custom.
4106 (Info-hide-note-references): Add new value `hide'. Doc fix.
4107 (Info-reference-name): New var.
4108 (Info-selection-hook): New custom.
4109 (Info-edit-mode-hook): New var.
4110 (Info-find-file): New fun.
4111 (Info-find-node): Move part of code to Info-find-file.
4112 (Info-find-node-2): Add anchors to Info-history-list. Move point
4113 to the place with the reference name if name is defined.
4114 (Info-select-node): Add current node to Info-history-list.
4115 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
4116 (Info-search-whitespace-regexp): New custom.
4117 (Info-search-case-fold): New var.
4118 (Info-search): Add "case-sensitively" to the prompt.
4119 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
4120 (Info-search-case-sensitively, Info-search-next): New fun.
4121 (Info-up): Move point to the menu item of the current node.
4122 (Info-history): New fun. Add *info-history* to
4123 same-window-buffer-names.
4124 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
4125 (Info-insert-toc): New fun.
4126 (Info-build-toc): New fun.
4127 (Info-follow-reference): Add new arg `fork'. Doc fix.
4128 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
4129 with the same name prefer the reference closest to point.
4130 (Info-next-reference): Replace * by + in the *Note regexp.
4131 Add regexp for http:// and ftp://. Skip the *Note prefix.
4132 (Info-prev-reference): Replace * by + in the *Note regexp.
4133 Add regexp for http:// and ftp://. Skip the *Note prefix.
4134 (Info-follow-nearest-node): Add new arg `fork'.
4135 (Info-try-follow-nearest-node): Add new arg `fork'.
4136 Call browse-url for http:// and ftp:// references.
4137 Set Info-reference-name for index entries.
4138 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
4139 Info-search-next, Info-history, Info-toc, clone-buffer.
4140 (Info-menu-update): Replace * by + in the *Note regexp.
4141 (Info-mode): Add documentation for Info-history, Info-toc,
4142 Info-search-case-sensitively, Info-search-next, clone-buffer.
4143 (Info-fontify-menu-headers): Remove fun. Move code to
4144 Info-fontify-node.
4145 (Info-fontify-node): Add docstring. Add local vars
4146 fontify-visited-p and not-fontified-p. If not-fontified-p is t
4147 then fontify header line, titles, menu headers, http and ftp
4148 references, refill paragraphs. If not-fontified-p is t or
4149 fontify-visited-p is t then fontify cross references, menu items.
4150 Fontify menu headers. Fontify http and ftp references.
4151 Change regexp for cross references to require whitespace after *Note,
4152 add matching groups for file and node names. Remove hack for quote.
4153 Use display property for Info-hide-note-references=t. Use fifth
4154 or fourth match for help-echo. Display visited nodes in a
4155 different face. Unhide file names of external references.
4156 Unhide newlines. Display visited menu items in a different face.
4157
4158 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4159
4160 * progmodes/compile.el: Require CL.
4161 (compilation-mode-font-lock-keywords): Re-install the "line as
4162 function" patch.
4163
4164 * help-fns.el (help-C-source-directory): New var.
4165 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
4166 (describe-function-1, describe-variable): Use them.
4167
4168 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
4169 to C source files specially.
4170
4171 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
4172
4173 * info.el (Info-hide-cookies-node): New function.
4174 (Info-select-node): Use it.
4175 (Info-display-images-node): Remove message with image file name.
4176
4177 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
4178
4179 * progmodes/compile.el (compilation-warning-face)
4180 (compilation-info-face, compilation-skip-threshold)
4181 (compilation-skip-visited, compilation-context-lines):
4182 Declare :version when added to Emacs.
4183 (compilation-error-regexp-alist-alist): Extend caml and irix.
4184 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
4185 (compilation-mode-font-lock-keywords): Temporarily undo line as
4186 function patch, which wasn't ready.
4187
4188 2004-04-07 Kenichi Handa <handa@m17n.org>
4189
4190 * international/latin1-disp.el (latin1-display-setup): Check each
4191 character is displayable or not instead of calling
4192 latin1-display-check-font.
4193
4194 2004-04-06 Kenichi Handa <handa@m17n.org>
4195
4196 * language/ethio-util.el (ethio-sera-being-called-by-w3):
4197 New variable.
4198 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
4199 instead of sera-being-called-by-w3.
4200 (ethio-fidel-to-sera-buffer): Likewise.
4201 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
4202 instead of sera-being-called-by-w3.
4203 (ethio-write-file): Likewise.
4204
4205 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4206
4207 * printing.el: Doc fix.
4208
4209 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
4210
4211 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
4212 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
4213 (gdb-setup-windows): Only use separate IO buffer if required.
4214
4215 2004-04-06 Kim F. Storm <storm@cua.dk>
4216
4217 * term.el (term-is-xemacs): Remove.
4218 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
4219 (term-window-width): New function.
4220 (term-mode, term-check-size): Use it.
4221 (term-mode): Disable overflow-newline-into-fringe in term buffer.
4222
4223 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
4224
4225 * cus-edit.el (custom-add-parent-links): Change unbound variable
4226 `symbol' to `name'.
4227
4228 2004-04-05 Jesper Harder <harder@ifa.au.dk>
4229 * info.el (info-apropos): New function.
4230 (Info-mode-menu): Add it.
4231 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
4232
4233 * help-mode.el (help-make-xrefs): Recognize aliased variable with
4234 inherited docstring.
4235
4236 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
4237
4238 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4239
4240 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
4241
4242 * progmodes/compile.el (font-lock): Don't require any more.
4243 (compilation-error-properties, compilation-start, compilation-sentinel)
4244 (compilation-filter, next-error): Use with-current-buffer.
4245 (compilation-skip-to-next-location, compilation-skip-threshold)
4246 (compilation-skip-visited): Move to silence the byte-compiler.
4247 (compilation-setup): Simplify.
4248 (compilation-next-error): Use line-(beginning|end)-position.
4249 Make sure `pt' is non-nil before using compilation-loop.
4250 (compile-goto-error): Add optional event arg. Use it.
4251 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
4252 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
4253 Update the binding for mouse-2.
4254 (first-error): Set compilation-current-error to nil rather than bob.
4255 (compilation-parsing-end, compilation-parse-errors-function)
4256 (compilation-error-list, compilation-old-error-list):
4257 "New" compatibility variables.
4258 (compile-buffer-substring, compilation-compat-error-properties)
4259 (compilation-compat-parse-errors, compilation-forget-errors):
4260 New compatibility functions.
4261 (compilation-mode-font-lock-keywords): Use them.
4262
4263 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
4264
4265 * autorevert.el (auto-revert-handler): If point (or a window
4266 point) is at the end of the buffer, keep it there after
4267 reverting. This allows to tail a file.
4268 Mention this in the `Commentary'.
4269
4270 * format.el (format-write-file): Add optional argument CONFIRM
4271 and make it behave like the analogous argument to `write-file'.
4272
4273 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4274
4275 * progmodes/ebnf2ps.el: Doc fix.
4276 (ebnf-version): New version number (4.2).
4277 (ebnf-syntax): Customization and docstring fix.
4278 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
4279 Put autoloaded funs before first use.
4280 (ebnf-style-database): Add dtd entry.
4281 (ebnf-syntax-alist): Add dtd initialization.
4282 (ebnf-token-sequence): New fun.
4283 (ebnf-comment-table): Add new comment action character.
4284 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
4285
4286 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
4287 Type Definition for XML).
4288
4289 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
4290 * progmodes/ebnf-bnf.el (ebnf-sequence):
4291 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
4292 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
4293 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
4294 Code simplification: call ebnf-token-sequence.
4295
4296 2004-04-04 Eli Zaretskii <eliz@gnu.org>
4297
4298 * calendar/timeclock.el (timeclock-relative)
4299 (timeclock-get-project-function, timeclock-get-workday-function)
4300 (timeclock-query-out, timeclock-when-to-leave)
4301 (timeclock-when-to-leave-string, timeclock-log-data)
4302 (timeclock-generate-report, timeclock-in): Doc fixes.
4303
4304 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4305
4306 * url/: New dir. Import the URL package from its repository.
4307
4308 2004-04-03 Andreas Schwab <schwab@suse.de>
4309
4310 * diff-mode.el (diff-mode): Fix missing quote.
4311
4312 2004-04-03 Juri Linkov <juri@jurta.org>
4313
4314 * descr-text.el (describe-property-list): Add `font-lock-face'.
4315
4316 * dired.el (dired-font-lock-keywords): Fix permission regexps.
4317
4318 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4319
4320 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
4321 Use utf-16le on little endian machines and utf-16be otherwise.
4322
4323 2004-04-02 David Kastrup <dak@gnu.org>
4324
4325 * net/browse-url.el (browse-url-generic): Use call-process
4326 instead of start-process to allow browsers that fork and detach.
4327
4328 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
4329
4330 * compile.el (compilation-current-error): New var.
4331 (compilation-setup, compile-mouse-goto-error)
4332 (compile-goto-error, next-error): Use it.
4333 (compilation-skip-to-next-location): Default to t, which gives
4334 contiguous skipping like old compile (where this was redundant).
4335 (compilation-next-error): Prevent previous-* commands from moving
4336 back to message at or just before point.
4337
4338 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
4339
4340 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
4341 (gdb-source-info): Don't display source at startup, if required.
4342 (gdb-show-main): New option.
4343 (gdba): Update documentation.
4344 (gdb-source): Cover case of auto-display output.
4345
4346 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
4347
4348 * autorevert.el: Delete obsolete autoload's and defvar's.
4349 (auto-revert-check-vc-info): New user option.
4350 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
4351 (auto-revert-handler-vc): Delete.
4352 (auto-revert-handler): Treat return value `fast' of
4353 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
4354
4355 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
4356 return `fast'.
4357
4358 * files.el (buffer-stale-function): Doc change.
4359
4360 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4361
4362 * printing.el: New tip on Tips section.
4363 (pr-version): New version number (6.7.4).
4364 (pr-shell-file-name): Initialization fix.
4365
4366 2004-03-31 Juri Linkov <juri@jurta.org>
4367
4368 * dired.el: Add autoload for `dired-do-touch'.
4369 (dired-touch-program): New var.
4370 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
4371 (dired-no-confirm): Add `touch' to docstring.
4372
4373 * dired-aux.el (dired-do-touch): New fun.
4374 (dired-do-chxxx): Add argument -t for touch operation.
4375
4376 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
4377 `dired-move-to-filename-regexp'.
4378
4379 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
4380
4381 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
4382
4383 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4384
4385 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
4386 and only if the buffer was modified.
4387
4388 2004-03-30 Kenichi Handa <handa@m17n.org>
4389
4390 * international/characters.el: Delete pairs for U+2308..U+230B.
4391
4392 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
4393
4394 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
4395 to detect the beginning of a level 2 or 3 annotation.
4396
4397 2004-03-29 Kenichi Handa <handa@m17n.org>
4398
4399 * international/ucs-tables.el (ucs-insert): Fix the error message.
4400
4401 2004-03-29 Kenichi Handa <handa@m17n.org>
4402
4403 * international/mule-util.el (char-displayable-p): Fix generation
4404 of XLFD file name.
4405
4406 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4407 before finding directories by `find'.
4408
4409 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4410
4411 * subr.el (interactive-form): Delete. Now implemented in C.
4412
4413 * pcvs.el (cvs-parse-process): Workaround for Darwin.
4414
4415 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
4416 (vc-diff-label): New fun.
4417 (vc-diff-internal): Use it.
4418
4419 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
4420
4421 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4422
4423 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
4424
4425 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
4426 specify XML (EBNFX).
4427
4428 * progmodes/ebnf2ps.el: Doc fix.
4429 (ebnf-version): New version number (4.1).
4430 (ebnf-syntax): Adjust customization.
4431 (ebnf-style-database): Add ebnfx entry.
4432 (ebnf-syntax-alist): Add ebnfx initialization.
4433 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
4434
4435 * printing.el: Doc fix.
4436 (pr-version): New version number (6.7.3).
4437 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
4438 returns nil for mouse position. Reported by Drew Adams
4439 <drew.adams@oracle.com>.
4440 (pr-update-menus): Modify interactive declaration. Reported by Drew
4441 Adams <drew.adams@oracle.com>.
4442
4443 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
4444
4445 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
4446 (gud-gdba-marker-filter): Log the process input and output, if
4447 required. From Stefan Monnier.
4448 (gdb-debug-log, gdb-enable-debug-log): New variables.
4449 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
4450
4451 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4452
4453 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
4454 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
4455
4456 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
4457
4458 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
4459 Call vc-find-file-hook here instead of in auto-revert-buffers.
4460 (auto-revert-buffers): Delete call to vc-find-file-hook.
4461 (auto-revert-verbose, global-auto-revert-non-file-buffers)
4462 (global-auto-revert-mode, auto-revert-set-timer)
4463 (auto-revert-handler, auto-revert-buffers): Doc fixes.
4464
4465 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4466
4467 * woman.el (woman-change-fonts): Rename local variable
4468 woman-font-alist to font-alist to avoid a compiler warning.
4469
4470 2004-03-27 Dave Love <fx@gnu.org>
4471
4472 * emacs-lisp/rx.el (rx): Doc fix.
4473 Fix copyright years.
4474
4475 * strokes.el (strokes-global-set-stroke-string): New function.
4476 (strokes-list-strokes): Cope with strings, not just commands.
4477 Set foreground colour of image.
4478 (strokes-global-set-stroke): Doc fix.
4479
4480 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
4481
4482 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
4483 Auto Revert mode.
4484 (Buffer-menu-files-only): New variable.
4485 (Buffer-menu-toggle-files-only): New function.
4486 (Buffer-menu-mode-map): Bind it to `T'.
4487 (Buffer-menu-mode): Mention `T' in docstring.
4488 Set buffer-stale-function.
4489 (list-buffers-noselect): Mark buffer non-modified and set
4490 Buffer-menu-files-only.
4491
4492 * dired.el (buffer-stale-function): Remove no longer needed defvar.
4493
4494 * autorevert.el (auto-revert-handler): Print revert message
4495 before, rather than after, reverting.
4496 (buffer-stale-function): Move to files.el.
4497
4498 * files.el (buffer-stale-function): Move here from autorevert.el.
4499
4500 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4501
4502 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
4503
4504 * calc/calc.el (calc-mode-map): Use mapc.
4505
4506 * apropos.el (apropos-mode): Don't autoload.
4507 (apropos-symbols-internal): New fun. Extracted from `apropos'.
4508 (apropos): Use it.
4509 (apropos-print): Add optional `text' argument.
4510 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
4511 Don't assume point-min == 1.
4512
4513 * bs.el (bs-buffer-list): Use buffer-local-value.
4514 (bs--set-toggle-to-show): Use with-current-buffer.
4515
4516 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
4517 New funs.
4518 (list-buffers-noselect): Use them. Adjust :align-to to new style.
4519
4520 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
4521
4522 * dabbrev.el (dabbrev-expand): Fix regexp construction.
4523 (dabbrev--find-expansion): Use pop.
4524 (dabbrev--search): Use match-string-no-properties.
4525
4526 * dired.el (dired-mode): Use run-mode-hooks.
4527 (dired-move-to-end-of-filename): Use match-string.
4528
4529 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
4530 is bound before using it.
4531 (ediff-verbose-p): Make it into a var since it's not constant.
4532
4533 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
4534
4535 * faces.el (read-face-font): Don't cons up unnecessarily.
4536 (header-line, tool-bar): Share common parts.
4537
4538 * files.el (file-relative-name): Use compare-strings.
4539
4540 * finder.el (finder-mode): Follow coding convention.
4541
4542 * subr.el (read-number): New function.
4543
4544 * ses.el (ses-read-number): Move to subr.el.
4545 (ses-set-header-row): Use read-number.
4546
4547 2004-03-26 Andre Spiegel <spiegel@gnu.org>
4548
4549 * vc-hooks.el (vc-arg-list): New function, which handles both
4550 compiled and uncompiled code.
4551 (vc-default-workfile-unchanged-p): Use it.
4552
4553 * vc.el (vc-print-log): Undo prev change, use new function
4554 vc-arg-list from vc-hooks.el.
4555
4556 2004-03-26 Masatake YAMATO <jet@gyve.org>
4557
4558 * simple.el (completion-setup-function): Emphasize the
4559 first uncommon characters in the completions; and de-emphasize
4560 the common prefix substrings.
4561 (completion-emphasis): New face.
4562 (completion-de-emphasis): New face.
4563
4564 2004-03-25 Juanma Barranquero <lektu@terra.es>
4565
4566 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
4567 Comment out (it's unused and unfinished code).
4568
4569 2004-03-25 Sam Steingold <sds@gnu.org>
4570
4571 * vc.el (vc-print-log): Fix a bug in the last patch:
4572 backend-function may be a byte-compiled object, not a lambda.
4573
4574 2004-03-25 Juri Linkov <juri@jurta.org>
4575
4576 * descr-text.el (describe-property-list): Add a button
4577 for `face' property that calls `describe-face'.
4578 Suggested by luis fernandes <elf@ee.ryerson.ca>
4579
4580 * international/mule.el (keyboard-coding-system):
4581 * kmacro.el (kmacro-call-macro): Fix docstring.
4582
4583 * dired.el: Fix comments.
4584
4585 * textmodes/fill.el (fill): Fix Info link.
4586
4587 * font-lock.el (fast-lock, lazy-lock):
4588 * jit-lock.el (jit-lock): Remove links to removed Support Modes
4589 Info node.
4590
4591 * eshell/eshell.el (eshell): Fix broken info-link.
4592
4593 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
4594 * eshell/em-banner.el (eshell-banner):
4595 * eshell/em-smart.el (eshell-smart):
4596 * eshell/esh-cmd.el (eshell-cmd):
4597 Comment out broken info-links to incomplete Info manual.
4598
4599 * info-xref.el: Fix commentary.
4600
4601 2004-03-25 Kevin Ryde <user42@zip.com.au>
4602
4603 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
4604 Remove spurious node duplicate suppression, doesn't work, not wanted.
4605 (info-xref-output): Take format style args, add "sit-for 0" to let
4606 user see the results as they progress.
4607 (info-xref-check-all-custom): New function.
4608
4609 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
4610
4611 * gdb-ui.el: Moved to progmodes.
4612
4613 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4614
4615 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
4616
4617 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
4618
4619 * calendar/appt.el (appt-check): Remove superfluous progn.
4620 When finished with diary buffer: if it was not being displayed
4621 before, kill it; otherwise restore its original state.
4622 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
4623
4624 * calendar/calendar.el (calendar-set-mode-line): Use total
4625 available mode-line width, rather than frame-width.
4626
4627 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
4628 after mode change so effect not lost.
4629
4630 2004-03-23 Dave Love <fx@gnu.org>
4631
4632 * dired.el (dired) <defgroup>: Add link to manual.
4633 (dired-font-lock-keywords): Add highlighting on unusual permissions.
4634 (dired-revert): Use dolist.
4635 (dired-mode-map): Add U binding.
4636 (dired-mode): Add font-lock-beginning-of-syntax-function.
4637 (dired-garbage-files-regexp): Make it a defcustom.
4638
4639 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4640
4641 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
4642 is equivalent to nil.
4643 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
4644 (vc-arch-mode-line-string): Accept `added' state.
4645 (vc-arch-state): Use inode-sigs if available.
4646 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
4647 Copy&delete existing id file if any. Fallback if uuidgen is absent.
4648 (vc-arch-tagline-re): New var.
4649 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
4650 New functions.
4651 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
4652 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
4653
4654 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
4655 (vc-file-not-found-hook): Use it.
4656
4657 * diff-mode.el (diff-default-read-only): Change default.
4658 (diff-mode-hook): Make it a defcustom. Add some options.
4659 (diff-mode-map): Bind diff-refine-hook.
4660 (diff-yank-handler): New var.
4661 (diff-yank-function): New fun.
4662 (diff-font-lock-keywords): Use them.
4663 (diff-end-of-file): Handle case where file-header looks like diff text.
4664 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
4665 (diff-file-kill): Delete a subsequent empty line, if applicable.
4666 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
4667 (diff-find-file-name): Use it.
4668 (diff-tell-file-name): New command.
4669 (diff-mode): Be careful with view-mode.
4670 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
4671 New functions, for use in diff-mode-hook.
4672 (diff-find-source-location): Catch "regex too large" errors.
4673 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
4674 (diff-refine-hunk): New command.
4675
4676 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
4677 (smerge-context-menu-map): Remove unused var.
4678 (smerge-keep-all): Preserve markers.
4679 (smerge-keep-n): New fun.
4680 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4681 (smerge-keep-current, smerge-ediff): Use it.
4682 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
4683 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
4684 (smerge-resolve): Resolve trivial 3-part conflicts.
4685
4686 2004-03-23 Juri Linkov <juri@jurta.org>
4687
4688 * man.el (Man-width): New var.
4689 (Man-getpage-in-background): Use it.
4690 (Man-support-local-filenames): New var and fun.
4691 (Man-build-man-command): Don't add a second %s.
4692 (Man-fontify-manpage): Clean up message.
4693 (Man-mode): Set outline-regexp, outline-level,
4694 imenu-generic-expression.
4695
4696 * woman.el (woman-fill-frame): Doc fix.
4697 (woman-decode-region): Use window-width instead of frame-width.
4698
4699 * abbrevlist.el (list-one-abbrev-table):
4700 * descr-text.el (describe-char):
4701 * international/mule-diag.el (describe-current-coding-system):
4702 * international/quail.el (quail-insert-decode-map):
4703 Use window-width instead of frame-width.
4704
4705 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
4706 (jka-compr-mode-alist-additions): Add tbz.
4707 (jka-compr-write-region, jka-compr-insert-file-contents):
4708 Add message for undefined compress-program.
4709 (jka-compr-write-region): Remove redundant var bindings.
4710
4711 * dired-x.el (dired-guess-shell-alist-default): Add choices for
4712 extracting files into subdirectory. Add tbz and dz. Fix regexps.
4713 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
4714 (dired-man): Use dired-guess-shell-command.
4715 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
4716 Change default nil to t.
4717
4718 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
4719 (dired-compare-directories): Add default value for empty input.
4720
4721 * help-at-pt.el: Move suggestions for key bindings to Commentary.
4722
4723 * time.el (display-time-string-forms): Fix help-echo date format.
4724
4725 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
4726
4727 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
4728 (buffer-stale-function): New variable.
4729 (auto-revert-list-diff, auto-revert-dired-file-list)
4730 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
4731 (auto-revert-handler): Take over some functionality of deleted
4732 functions.
4733 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
4734
4735 * dired.el (dired-directory-changed-p): New fun, extracted from
4736 dired-internal-noselect.
4737 (dired-buffer-stale-p): New fun.
4738 (dired-internal-noselect): Use dired-directory-changed-p.
4739 Eliminate revert messages.
4740 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
4741
4742 2004-03-23 Kenichi Handa <handa@m17n.org>
4743
4744 * international/characters.el: Setup syntaxes for more parentheses
4745 Unicode characters.
4746
4747 * international/mule-cmds.el (select-safe-coding-system):
4748 Merge coding-system and auto-cs before comparing them.
4749
4750 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
4751
4752 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
4753
4754 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4755 normal-auto-fill-function and comment-indent-function.
4756 The default values now work just as well.
4757 Don't set font-lock-beginning-of-syntax-function since we already set
4758 syntax-begin-function.
4759 (lisp-outline-level): Put ;;;###autoload at same level as (.
4760 (prin1-char): Quote special chars.
4761
4762 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
4763 than with-no-warnings.
4764
4765 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
4766 if the source location can't be found.
4767 (edebug-compute-previous-result): Use prin1-char.
4768
4769 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
4770 (debug-ignored-errors): Add an entry.
4771
4772 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
4773 (byte-compile-file): Output warning when deleting a file.
4774
4775 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
4776 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
4777
4778 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
4779 (byte-compile-inline-expand): Use backquote.
4780 (byte-optimize-pure-func): Rename from byte-optimize-concat.
4781 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
4782
4783 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
4784
4785 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
4786
4787 2004-03-22 Juri Linkov <juri@jurta.org>
4788
4789 * finder.el (finder-known-keywords): Fix data, tex, unix.
4790
4791 * play/landmark.el: Fix keywords.
4792
4793 * language/ethio-util.el (ethio-find-file): Doc fix.
4794
4795 * emacs-lisp/warnings.el: Doc fix.
4796
4797 * textmodes/ispell.el (ispell-help): Doc fix.
4798
4799 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
4800
4801 * format.el (format-insert-file): Always return a list of two
4802 elements, like insert-file-contents does.
4803
4804 2004-03-21 Andre Spiegel <spiegel@gnu.org>
4805
4806 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
4807 and vc-BACKEND-diff.
4808 (vc-print-log): If the print-log implementation supports it, use
4809 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
4810 (vc-version-diff, vc-diff-internal): Doc fixes.
4811
4812 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
4813 implementation supports it, let diff output go to *vc*,
4814 not *vc-diff*, since this is an internal call.
4815
4816 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
4817
4818 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
4819
4820 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
4821
4822 2004-03-21 Dave Love <fx@gnu.org>
4823
4824 * progmodes/cfengine.el (cfengine-mode):
4825 Set parse-sexp-ignore-comments.
4826
4827 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
4828
4829 2004-03-21 Juanma Barranquero <lektu@terra.es>
4830
4831 * allout.el (allout-mode): Fix docstring.
4832
4833 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
4834
4835 * files.el (insert-directory): Fix bug if SWITCHES is a list.
4836
4837 * autorevert.el (auto-revert-interval): Make new value take
4838 effect immediately when set through Custom.
4839 (auto-revert-set-timer): Add interactive declaration.
4840
4841 2004-03-19 David Ponce <david@dponce.com>
4842
4843 * ruler-mode.el (ruler-mode-header-line-format-old):
4844 Don't `make-variable-buffer-local'.
4845 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
4846 (ruler-mode-header-line-format): Simply funcall the above.
4847 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
4848 to save/restore a previous header line format.
4849 (ruler-mode-space): Don't depend on a numeric WIDTH value.
4850 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
4851 fringes and margins width.
4852 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
4853
4854 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4855
4856 * log-edit.el (log-edit-font-lock-keywords): Typo.
4857
4858 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
4859 (tex-send-tex-command): Rather than here.
4860 (tex-compilation-parse-errors): Simplify.
4861
4862 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
4863
4864 * time.el (display-time-string-forms): Add help-echo with date on time.
4865
4866 * composite.el (compose-region): Use restore-buffer-modified-p.
4867
4868 * disp-table.el (standard-display-8bit): Simplify.
4869
4870 * server.el (server-process-filter): Delete temp frame.
4871
4872 * add-log.el (add-change-log-entry): Simplify.
4873
4874 2004-03-19 Kim F. Storm <storm@cua.dk>
4875
4876 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
4877 (hexl-follow-line): Don't require 'fringe.
4878
4879 * progmodes/compile.el (compilation-start): Always set
4880 compilation-last-buffer and return it.
4881
4882 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
4883
4884 * simple.el (clone-buffer): Doc fix.
4885
4886 2004-03-18 Juanma Barranquero <lektu@terra.es>
4887
4888 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
4889
4890 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * log-edit.el (log-edit-font-lock-keywords): New var.
4893 (log-edit-mode): Use it.
4894
4895 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
4896
4897 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
4898 properly for watching in speedbar.
4899
4900 2004-03-17 Masatake YAMATO <jet@gyve.org>
4901
4902 * smerge-mode.el (smerge-popup-context-menu):
4903 Put `unwind-protect' around `overlay-put' and `popup-menu'.
4904
4905 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
4906
4907 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
4908 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
4909 Take sealed revisions into account.
4910 (vc-arch-checkin): Extract a summary line from the message.
4911
4912 2004-03-16 Masatake YAMATO <jet@gyve.org>
4913
4914 * register.el (register): Provide `register' feature.
4915
4916 2004-03-15 Masatake YAMATO <jet@gyve.org>
4917
4918 Added context menu support in smerge mode.
4919 Most of the part is written by Stefan Monnier.
4920
4921 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
4922 New keymap and menu.
4923 (smerge-text-properties): New function.
4924 (smerge-remove-props): New function.
4925 (smerge-popup-context-menu): New function.
4926 (smerge-resolve): Call `smerge-remove-props'.
4927 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
4928 (smerge-keep-current): Ditto.
4929 (smerge-kill-current): New function.
4930 (smerge-match-conflict): Put text properties.
4931 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
4932
4933 2004-03-15 David Ponce <david@dponce.com>
4934
4935 * ruler-mode.el: (ruler-mode-left-fringe-cols)
4936 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
4937 (ruler-mode-right-scroll-bar-cols): Remove.
4938 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
4939 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
4940 Use fringe-columns and scroll-bar-columns.
4941
4942 2004-03-15 Masatake YAMATO <jet@gyve.org>
4943
4944 * hl-line.el (hl-line-range-function): New variable.
4945 (hl-line-move): New function.
4946 (global-hl-line-highlight): Use `hl-line-move'.
4947 (hl-line-highlight): Ditto.
4948
4949 * scroll-bar.el (scroll-bar-columns):
4950 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
4951
4952 * ruler-mode.el (top-level): Require scroll-bar and fringe.
4953 (ruler-mode-left-fringe-cols)
4954 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
4955 (ruler-mode-right-scroll-bar-cols)
4956 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
4957 (ruler-mode-ruler-function): New variable.
4958 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
4959 if the value for `ruler-mode-ruler-function'is given.
4960
4961 * hexl.el (hexl-mode-hook): Make the hook customizable.
4962 (hexl-address-area, hexl-ascii-area): New customize variables.
4963 (hexlify-buffer): Put font-lock-faces on the address area and
4964 the ascii area.
4965 (hexl-activate-ruler): New function.
4966 (hexl-follow-line): New function.
4967 (hexl-highlight-line-range): New function.
4968 (hexl-mode-ruler): New function.
4969
4970 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
4971
4972 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
4973 (vc-default-find-file-hook): New fun.
4974 (vc-find-file-hook): Call new find-file-hook operation.
4975
4976 * vc-arch.el: New file.
4977
4978 2004-03-12 Jesper Harder <harder@ifa.au.dk>
4979
4980 * info-look.el (info-lookup): Reuse an existing Info window.
4981
4982 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4983
4984 * woman.el (woman-preserve-ascii): Default value changed to t and
4985 doc string revised.
4986
4987 2004-03-12 Richard M. Stallman <rms@gnu.org>
4988
4989 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
4990 Fix minor bug.
4991
4992 * replace.el (occur-engine): Change message for count of matches.
4993
4994 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
4995 For strings, do compare text properties.
4996
4997 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
4998
4999 * progmodes/compile.el (compile-auto-highlight)
5000 (compilation-error-list, compilation-old-error-list)
5001 (compilation-parse-errors-function, compilation-parsing-end)
5002 (compilation-error-message, compilation-directory-stack)
5003 (compilation-enter-directory-regexp-alist)
5004 (compilation-leave-directory-regexp-alist)
5005 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
5006 (compilation-current-file, compilation-regexps): Remove vars.
5007
5008 (compile-error-at-point, compilation-error-filedata)
5009 (compilation-error-filedata-file-name, compile-reinitialize-errors)
5010 (compilation-next-error-locus, compilation-forget-errors)
5011 (count-regexp-groupings, compilation-parse-errors)
5012 (compile-collect-regexps, compile-buffer-substring): Remove funs.
5013
5014 (compile-internal): Make obsolete.
5015
5016 (compilation-first-column, compilation-error)
5017 (compilation-directory-matcher, compilation-page-delimiter)
5018 (compilation-mode-font-lock-keywords, compilation-debug)
5019 (compilation-error-face, compilation-warning-face)
5020 (compilation-info-face, compilation-line-face)
5021 (compilation-column-face, compilation-enter-directory-face)
5022 (compilation-leave-directory-face, compilation-skip-threshold)
5023 (compilation-skip-visited, compilation-context-lines): New vars.
5024
5025 (compilation-warning-face, compilation-info-face)
5026 (compilation-message-face): New faces.
5027
5028 (compilation-error-regexp-alist-alist): New constant.
5029
5030 (compilation-face, compilation-directory-properties)
5031 (compilation-assq, compilation-error-properties, compilation-start)
5032 (define-compilation-mode, compilation-loop)
5033 (compilation-set-window): New functions.
5034
5035 (compile): Additional argument for interactive compiles like TeX.
5036
5037 * progmodes/grep.el (kill-grep): Move here from compile.el
5038 (grep-error, grep-hit-face, grep-error-face)
5039 (grep-mode-font-lock-keywords): New variables.
5040 (grep-regexp-alist): Simplify regexp and add `binary' case.
5041 (grep-mode): New mode.
5042 (grep-process-setup): Simplify.
5043
5044 2004-03-11 Jason Rumney <jasonr@gnu.org>
5045
5046 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
5047 letters on DOS/Windows.
5048
5049 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
5050
5051 * server.el (server-name): New var.
5052 (server-socket-dir): New var to replace server-socket-name.
5053 (server-start): Use them.
5054
5055 2004-03-11 Simon Josefsson <jas@extundo.com>
5056
5057 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
5058 died to avoid infloop. Reported by Jonathan Glauner
5059 <jglauner@sbum.org>.
5060
5061 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5062
5063 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
5064 (smerge-mode-menu): Use it to deactivate menu entries.
5065 (smerge-keep-current): New fun.
5066 (smerge-keep-current): Use it.
5067
5068 2004-03-10 John Paul Wallington <jpw@gnu.org>
5069
5070 * foldout.el (foldout-fold-list, foldout-modeline-string):
5071 Declare them as variables, not constants.
5072
5073 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5074
5075 * ps-print.el: Modification to print *Messages* buffer.
5076 (ps-print-version): New version 6.6.4.
5077 (ps-message-log-max): New fun.
5078 (ps-spool-without-faces, ps-spool-with-faces)
5079 (ps-count-lines-preprint): Code fix.
5080
5081 * printing.el: New tips in Tips section.
5082
5083 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5084
5085 * delim-col.el: Doc fix.
5086
5087 * printing.el: Doc fix. New doc section (Tips).
5088
5089 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5090
5091 * type-break.el (type-break-emacs-variant): Remove.
5092 (type-break-run-at-time, type-break-cancel-function-timers):
5093 Use fboundp rather than version name and number.
5094
5095 2004-03-09 Masatake YAMATO <jet@gyve.org>
5096
5097 * hexl.el (hexl-mode): Use `make-local-variable' instead of
5098 `make-variable-buffer-local'.
5099
5100 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
5101
5102 * find-dired.el (find-dired): Call `shell-command' instead of
5103 `start-process-shell-command'. By this, Tramp takes over
5104 handling of remote directories.
5105
5106 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
5107
5108 * newcomment.el (comment-use-global-state): New var.
5109 (comment-search-forward): Use it.
5110
5111 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
5112
5113 * cus-edit.el (fill) <defgroup>: Move to fill.el.
5114
5115 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
5116 (enable-kinsoku): Make it a defcustom.
5117 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
5118 paragraph to same-comment-start-marker.
5119
5120 2004-03-07 Dave Love <fx@gnu.org>
5121
5122 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
5123 (browse-url-mail): Use it.
5124
5125 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
5126 (rfc2368-unhexify-string): Use replace-regexp-in-string.
5127
5128 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5129
5130 * woman.el (woman-man.conf-path): Doc fix.
5131 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
5132
5133 2004-03-07 Eli Zaretskii <eliz@gnu.org>
5134
5135 * sort.el (sort-columns): Remove ms-dos from the list of systems
5136 where the external `sort' command is not used.
5137
5138 2004-03-07 Kim F. Storm <storm@cua.dk>
5139
5140 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
5141 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
5142 from overlay-arrow-variable-list.
5143 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
5144
5145 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
5146
5147 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
5148 overlay arrow string properly for the assembler buffer.
5149
5150 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5151
5152 * mail/sendmail.el (mail-mode): Fix last change.
5153
5154 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
5155
5156 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
5157 for the assembler buffer.
5158 (gdb-assembler-custom): Position the overlay arrow.
5159 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
5160
5161 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
5162
5163 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
5164
5165 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
5166 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
5167
5168 * mail/sendmail.el (mail-mode): Set comment-start-skip.
5169
5170 * newcomment.el (uncomment-region): Allow non-terminated comment.
5171 (comment-normalize-vars): Check the user-specified comstart marker.
5172
5173 2004-03-04 Jesper Harder <harder@ifa.au.dk>
5174
5175 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
5176 Otherwise, do use it if the region only contains font-lock text
5177 properties.
5178
5179 2004-03-04 Masatake YAMATO <jet@gyve.org>
5180
5181 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
5182 as the callback function for eldoc.
5183 (hexl-print-current-point-info): New function.
5184 (hexl-current-address): Print the address in both decimal
5185 and hexadecimal format.
5186
5187 2004-03-04 Richard M. Stallman <rms@gnu.org>
5188
5189 * mail/rmail.el (rmail-convert-to-babyl-format):
5190 Specify t for UNIBYTE when calling mail-unquote-printable-region.
5191
5192 * mail/mail-utils.el (mail-unquote-printable-region):
5193 New arg UNIBYTE.
5194
5195 * startup.el (command-switch-alist): Doc fix.
5196
5197 * simple.el (undo): Temporarily set this-command to `undo-start',
5198 then set it to `undo' once undo-start returns without error.
5199
5200 * simple.el (minibuffer-history-sexp-flag): Doc fix.
5201
5202 * simple.el (kill-line): Don't disregard trailing whitespace
5203 in eol condition, if show-trailing-whitespace is set.
5204
5205 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
5206 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
5207 When disabling, restore old values only if mouse-sel-has-been-enabled.
5208
5209 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
5210 (isearch-{-char): New function.
5211 (isearch-mode-map): Bind { to isearch-{-char.
5212
5213 * font-lock.el (lisp-font-lock-keywords-2):
5214 Turn off the CL with-... and do-... general patterns.
5215 Instead, recognize several specific with... and do... constructs.
5216
5217 * files.el (switch-to-buffer-other-window):
5218 Bind same-window-buffer-names and same-window-regexps to nil.
5219 (switch-to-buffer-other-frame): Likewise.
5220
5221 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
5222
5223 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
5224 recognizing leading comment on code line.
5225
5226 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5227
5228 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
5229 hidden files/directories.
5230
5231 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5232
5233 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
5234 only comment-start (in case the mode hasn't set it).
5235
5236 * Makefile.in (AUTOGENEL): New var.
5237 (bootstrap-prepare): Rename from bootstrap-clean.
5238 Don't remove elc files.
5239 (maintainer-clean): New target.
5240
5241 * xml.el (xml-get-attribute-or-nil): Simplify.
5242
5243 2004-03-02 Juri Linkov <juri@jurta.org>
5244
5245 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
5246 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
5247 URL to prevent their substitution with the environment variable
5248 values by browsers.
5249
5250 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5251
5252 * ps-print.el: Doc fix.
5253 (ps-print-version): New version number (6.6.3).
5254 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
5255 Docstring fix.
5256 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
5257 before printing.
5258 (ps-time-stamp-yyyy-mm-dd): New fun.
5259 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
5260
5261 2004-03-02 Kim F. Storm <storm@cua.dk>
5262
5263 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
5264
5265 2004-03-01 Juanma Barranquero <lektu@terra.es>
5266
5267 * allout.el (allout-rebullet-heading): Fix typo in docstring.
5268
5269 * desktop.el (desktop-file-version)
5270 (desktop-after-read-hook): Fix typos.
5271 (desktop-clear-preserve-buffers): Remove redundant info in
5272 docstring already shown by the obsolescence message.
5273 (desktop-truncate, desktop-internal-v2s)
5274 (desktop-value-to-string): Change argument name to match docstring.
5275
5276 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
5277
5278 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
5279 docstring.
5280
5281 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5282
5283 * printing.el: Replace "As Is..." in PostScript file print/preview by
5284 "No Preprocessing...". Suggested by Colin Marquardt
5285 <_marquardt_@zmd.de>.
5286 (pr-insert-section-4): Adjust buffer interface.
5287
5288 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
5289
5290 Version 2.0.39 of Tramp released.
5291
5292 * net/tramp.el (tramp-handle-file-local-copy)
5293 (tramp-handle-write-region, tramp-open-connection-rsh):
5294 Variable name typo. Small change. From Patrick Tullmann
5295 <tullmann@flux.utah.edu>.
5296 (tramp-process-connection-type): New variable.
5297 (tramp-maybe-open-connection): Use it.
5298 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
5299 (tramp-touch): Set last-modified time of a remote file.
5300 (tramp-handle-write-region): Say which function is used when encoding.
5301
5302 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
5303
5304 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
5305 case of non-existing filename, too. Reported by Christoph Bauer
5306 <c_bauer@informatik.uni-kl.de>.
5307 (tramp-smb-get-file-entries): The directory in question should
5308 have permissions "drwxrwxrwx". Just virtual, because we don't
5309 know the real permissions. Don't we know?
5310 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
5311 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
5312 (tramp-smb-wait-for-output): Optimize algorithm getting pending
5313 output. If it was received chunkwise, there have been problems.
5314 Remove the "prompt not found" error message; it is obvious.
5315 Simplify algorithm.
5316 (tramp-smb-process-running): Remove. Since we acknowledge the
5317 virtual prompt for shares, there's no need for distinction of
5318 reading shares (process ends afterwards) and interactive mode of
5319 smblient.
5320 (tramp-smb-open-connection): Setting process sentinel removed.
5321 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
5322 "NT_STATUS_NETWORK_ACCESS_DENIED".
5323 (tramp-smb-maybe-open-connection): Set `process-connection-type'
5324 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
5325 (top-level): Setting default value in `tramp-default-method-alist'
5326 corrected. Order of USER and HOST have been wrong.
5327 Nobody complained for months ...
5328 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
5329 (tramp-smb-open-connection): Clear password cache if login has failed.
5330
5331 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
5332 `tramp-unified-filenames'.
5333 (tramp-completion-mode): Make test for XEmacs explicitely.
5334 `event-to-character' can exists in Emacs packages too.
5335 Reported by Matt Swift <swift@alum.mit.edu>.
5336 (tramp-buffer-name): Buffer name must contain the user if exists.
5337 Reported by Adrian Phillips <a.phillips@met.no>.
5338 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
5339 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
5340 (tramp-do-copy-or-rename-file-out-of-band): Rename from
5341 `tramp-do-copy-or-rename-file-one-local', because it handles also
5342 the case both files use the same out-of-band method.
5343 Implementation added.
5344 (tramp-handle-file-local-copy, tramp-handle-write-region):
5345 Out-of-band handling removed. `copy-file' called instead, which
5346 calls `tramp-do-copy-or-rename-file-out-of-band'.
5347 (tramp-action-password): Check for out-of-band method removed.
5348 This function is used for 'login-program.
5349 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
5350 appropriate.
5351 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
5352 and `tramp-parse-sknownhosts'.
5353 (tramp-completion-function-alist): It's a defvar now, because we
5354 want to apply the optimized `tramp-set-completion-function'
5355 instead of a static list.
5356 (tramp-set-completion-function): Implementation tuned.
5357 Avoid double entries, and entries where the function or the
5358 file/directory doesn't exist.
5359 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
5360 for SSH2.
5361 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
5362 (tramp-handle-dired-compress-file): New function.
5363 (tramp-async-proc): New variable.
5364 (tramp-handle-shell-command): Adding asynchronous processes.
5365 They are far from being perfect, but it works at least for
5366 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
5367 (top-level): Require password.el if visible. Should be mandatory
5368 once No Gnus has found its way into (X)Emacs.
5369 (tramp-read-passwd): Invoke `password-read' if available,
5370 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
5371 fallback any longer.
5372 (tramp-clear-passwd): New function.
5373 (tramp-process-actions, tramp-process-multi-actions):
5374 Clear password cache if login has failed.
5375
5376 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
5377 its own module.
5378 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
5379 `ange-ftp-ftp-name-res'. There could be incorrect values from
5380 previous calls in case the "ftp" method is used in the Tramp file
5381 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5382
5383 2004-02-28 Richard M. Stallman <rms@gnu.org>
5384
5385 * term.el (term-mouse-paste): Call mouse-set-point.
5386
5387 * thumbs.el: New file.
5388
5389 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5390
5391 * progmodes/ebnf-abn.el: Doc fix.
5392
5393 * progmodes/ebnf-bnf.el: Doc fix.
5394 (ebnf-repeat): Code fix.
5395
5396 * progmodes/ebnf2ps.el: Doc fix.
5397 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
5398
5399 2004-02-28 Juri Linkov <juri@jurta.org>
5400
5401 * ffap.el (dired-at-point): Additional writability test for
5402 relative directory names.
5403 (dired-at-point-prompter): Treat directories as a directory, get
5404 the directory component from files.
5405 (ffap-string-at-point): Return string from region if region is active.
5406 (ffap-file-at-point): Remove redundant code.
5407
5408 2004-02-28 Kim F. Storm <storm@cua.dk>
5409
5410 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
5411 Initialize margin area images to nil.
5412 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
5413 (breakpoint-enabled-bitmap-face)
5414 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
5415 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
5416 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
5417 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
5418 (gdb-reset): Use gdb-remove-breakpoint-icons.
5419 (gdb-put-string): Add dprop arg to specify alternative display
5420 property (for setting fringe bitmap).
5421 (gdb-remove-strings): Doc fix.
5422 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
5423 icon in fringe (if available), or else as icon or text in display
5424 margin. Creates necessary icons in breakpoint-bitmap,
5425 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
5426 Also make left window margin if required.
5427 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
5428 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
5429 no longer needed.
5430 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
5431 gdb-put-breakpoint-icon.
5432 (gdb-assembler-mode): Don't set left-margin-width here.
5433
5434 2004-02-27 Kevin Ryde <user42@zip.com.au>
5435
5436 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
5437 comma, so that it DTRT in macros.
5438
5439 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
5440
5441 * progmodes/sh-script.el (sh-shell-arg)
5442 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
5443 (sh-leading-keywords, sh-other-keywords): Fix custom type.
5444
5445 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
5446
5447 * faces.el (face-spec-set-match-display): Add a new attribute,
5448 `min-colors'.
5449 (region, highlight, secondary-selection): Use `min-colors'.
5450
5451 * custom.el (defface): Add documentation for `min-colors'.
5452
5453 * font-lock.el (font-lock-comment-face, font-lock-string-face)
5454 (font-lock-keyword-face, font-lock-function-name-face)
5455 (font-lock-variable-name-face, font-lock-constant-face):
5456 Use `min-colors'.
5457
5458 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
5459
5460 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5461
5462 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
5463 define assq-delete-all if it's not defined.
5464 (ebnf-generate-region): Code fix.
5465
5466 * printing.el: Doc fix.
5467 (pr-version): New version number (6.7.2).
5468 (pr-command): Return empty string if command is an empty string.
5469
5470 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5471
5472 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
5473
5474 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
5475 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
5476 semi-down-full. Fix a bug on productions like test = {"test"}* | (
5477 "tt" ["test"] ). Reported by Markus Dreyer
5478 <mdreyer@ix.urz.uni-heidelberg.de>.
5479 (ebnf-version): New version number (4.0).
5480 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
5481 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
5482 (ebnf-delete-style): New commands.
5483 (ebnf-directory, ebnf-file): New funs.
5484 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
5485 (ebnf-production-name-p, ebnf-stop-on-error): New options.
5486 (ebnf-syntax-alist): New var.
5487 (ebnf-element-width): New fun replacing ebnf-list-width.
5488 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
5489 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
5490 (ebnf-prologue): Adjust vars.
5491 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
5492 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
5493 (ebnf-check-style-values, ebnf-generate-production)
5494 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
5495 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
5496 (ebnf-token-repeat): Code fix.
5497
5498 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
5499 %right, %left and %prec. Suggested by Matthew K. Junker
5500 <junker@alum.mit.edu>.
5501 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
5502
5503 * progmodes/ebnf-iso.el: Doc fix.
5504 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
5505 (ebnf-iso-lex): Code fix.
5506
5507 * progmodes/ebnf-bnf.el: Doc fix.
5508 (ebnf-bnf-lex): Code fix.
5509
5510 * progmodes/ebnf-otz.el: Doc fix.
5511
5512 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5513
5514 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
5515 (abbrev-prefix-mark): Doc fix.
5516
5517 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
5518
5519 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
5520 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
5521 (gdb-var-delete): Make interactive (really).
5522 (gdb-edit-value): Make non-interactive.
5523
5524 * progmodes/gud.el (gud-speedbar-menu-items):
5525 Add gdb-var-delete and, indirectly, gdb-edit-value.
5526 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
5527 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
5528 (gud-gdb-marker-filter): Add comment for annotations.
5529
5530 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5531
5532 * calendar/calendar.el (generate-calendar)
5533 (calendar-read-date): Prevent display of BC calendars once more -
5534 reverts 2003-10-01 change.
5535 (generate-calendar-month): Doc fix.
5536
5537 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
5538
5539 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
5540 return value of increment-calendar-month.
5541
5542 2004-02-21 Stephen Compall <s11@member.fsf.org>
5543
5544 * saveplace.el (save-place-forget-unreadable-files)
5545 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
5546 (save-place-forget-unreadable-files): New function.
5547 (save-place-alist-to-file): Use it to filter out files that are
5548 no longer readable.
5549
5550 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
5551 current Texinfo environment, using the same method as in
5552 `texinfo-insert-@end', and insert a space rather than a newline if
5553 point in a @table environment.
5554
5555 2004-02-21 Juri Linkov <juri@jurta.org>
5556
5557 * ffap.el (ffap-file-at-point): Try parent directories.
5558
5559 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
5560
5561 * vcursor.el (vcursor-modifiers): New defcustom.
5562 (vcursor-cs-binding): Use vcursor-modifiers instead of a
5563 hard-coded list.
5564
5565 2004-02-21 Masatake YAMATO <jet@gyve.org>
5566
5567 * play/animate.el (animate-birthday-present): Accept names other
5568 than `Sarah', too.
5569
5570 2004-02-21 Juri Linkov <juri@jurta.org>
5571
5572 * startup.el: Remove table of command line arguments from the
5573 Commentary section.
5574
5575 2004-02-20 John Wiegley <johnw@newartisans.com>
5576
5577 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
5578 again" modifier from 'e' to 'E', since 'e' is also used by the
5579 "file extension" modifier.
5580
5581 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5582
5583 * help-fns.el (describe-categories): Doc fix.
5584
5585 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
5586
5587 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
5588 temporary file for buffer already visiting one. This change makes
5589 output likely to be directly usable by patch program.
5590 Suggested by Adrian Aichner <adrian@xemacs.org>
5591
5592 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
5593
5594 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
5595 case of variables defined in compound statements.
5596 (gdb-setup-windows, gdb-source-info, gdb-source-info):
5597 Simplify constructions using switch-to-buffer.
5598
5599 2004-02-19 Simon Josefsson <jas@extundo.com>
5600
5601 * play/morse.el: Fix typo.
5602 (morse-code): Add @.
5603
5604 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
5605
5606 * calendar/appt.el (appt-display-format): Change default to
5607 'ignore, for backwards compatibility.
5608 (appt-display-message): If appt-display-format is 'ignore,
5609 respect old vars appt-msg-window and appt-visible.
5610 (appt-activate): Don't depend on return value of cancel-timer.
5611
5612 * calendar/calendar.el (calendar-holidays): Doc fix.
5613
5614 * calendar/cal-coptic.el (coptic-prompt-for-date):
5615 Use assoc-string instead of assoc-ignore-case.
5616 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
5617 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
5618 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
5619 * calendar/cal-islam.el (calendar-goto-islamic-date)
5620 (mark-islamic-diary-entries): Ditto.
5621 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
5622 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
5623 (calendar-read-mayan-tzolkin-date): Ditto.
5624 * calendar/calendar.el (calendar-read-date): Ditto.
5625 * calendar/diary-lib.el (mark-diary-entries): Ditto.
5626
5627 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
5628
5629 * progmodes/executable.el (executable-command-find-posix-p):
5630 Fix choice of the directory.
5631
5632 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
5633
5634 * simple.el (interprogram-cut-function)
5635 (interprogram-paste-function, kill-new, kill-append):
5636 Doc fixes.
5637 (kill-region): Make it return nil. Doc fix.
5638 (yank-pop): Make its argument optional.
5639 (yank): Make ARG `-' equivalent to `-1'.
5640
5641 2004-02-17 Eli Zaretskii <eliz@gnu.org>
5642
5643 * mail/rmail.el (rmail-get-new-mail): Don't reference
5644 rmail-use-spam-filter if rmail-spam-filter is not loaded.
5645
5646 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
5647
5648 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
5649 if one of global-auto-revert-non-file-buffers or autorevert-mode
5650 is non-nil.
5651
5652 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5653
5654 * subr.el (delete-dups): A better implementation from Karl Heuer
5655 <kwzh@gnu.org>.
5656
5657 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5658
5659 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
5660 correct place.
5661 * progmodes/icon.el (icon-indent-command): Ditto.
5662 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
5663
5664 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5665
5666 * progmodes/grep.el (grep-compute-defaults): Undo change from
5667 2004-01-29: don't use executable-command-find-posix-p.
5668
5669 2004-02-16 Richard Sharman <rsharman@pobox.com>
5670
5671 * hilit-chg.el: Use require instead of eval-and-compile.
5672 (highlight-compare-buffers): New function.
5673
5674 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
5675
5676 * man.el (Man-fontify-manpage): Render section headings in
5677 `Man-overstrike-face' even when overstrike was not used by man
5678 formatter for section headings.
5679
5680 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
5681
5682 * rmail-spam-filter.el: (vm-use-spam-filter)
5683 (rsf-min-region-length-added-to-spam-list): New variables.
5684 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
5685 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
5686 spam testing. Don't delete spam message if automatic deletion
5687 after output via variable rmail-delete-after-output is turned on.
5688 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
5689 rsf-bbdb-dont-create-entries-for-spam.
5690 (check-field): New function, extracted from code in
5691 rmail-spam-filter to ease addition of header fields like content-type.
5692 (message-content-type): New variable to check the content-type:
5693 field added, also in defcustom of rsf-definitions-alist.
5694 (rmail-spam-filter): Replace repeated test code for header fields
5695 by calls to check-field; change the call to
5696 rmail-output-to-rmail-file such that rmail-current-message stays
5697 the same to avoid wrong deletion of unseen flags.
5698 (rsf-add-contents-type): New function to convert old format
5699 of rmail-spam-definitions-alist into new one.
5700 Change prefixes of all variables and functions from
5701 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
5702
5703 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5704
5705 * loadhist.el (unload-hook-features-list): New defvar.
5706
5707 2004-02-16 Dave Love <fx@gnu.org>
5708
5709 * loadhist.el (unload-feature): Doc fix. Rename flist to
5710 unload-hook-features-list.
5711
5712 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
5713
5714 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
5715 cookie. Don't check if we are looking-at open-formula.
5716
5717 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
5718
5719 * subr.el (match-string-no-properties): Use substring-no-properties.
5720
5721 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5722
5723 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
5724 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
5725 Use lower-case "rx" in all error message.
5726
5727 2004-02-16 Dave Love <fx@gnu.org>
5728
5729 * emacs-lisp/rx.el (rx-or): Put group around result.
5730 (rx-constituents): Add backref.
5731 (rx-syntax): Add string-delimiter, comment-delimiter.
5732 (rx-categories): Add combining-diacritic.
5733 (rx-check-not, rx-greedy, rx): Doc fix.
5734 (rx-backref, rx-check-backref): New.
5735
5736 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5737
5738 * newcomment.el (uncomment-region): Allow eob as comment end.
5739
5740 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5741
5742 * filecache.el: All message and error commands now use prefix
5743 "Filecache:" to make it easy to read *Messages* buffer.
5744
5745 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5746
5747 * autorevert.el: Add support to detect changed dired and VC buffers.
5748 (auto-revert-active-p, auto-revert-list-diff)
5749 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
5750 (auto-revert-handler, auto-revert-active-p): New functions.
5751 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
5752 and `auto-revert-active-p'.
5753 (eval-when-compile): Defvar dired-directory and vc-mode.
5754 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
5755 (auto-revert-handler-vc): New functions.
5756
5757 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
5758
5759 * progmodes/compile.el (compilation-directory): New defvar.
5760 (compile): Save current directory in compilation-directory.
5761 (recompile): Bind default-directory to compilation-directory if
5762 that is non-nil.
5763
5764 2004-02-16 Dave Love <fx@gnu.org>
5765
5766 * newcomment.el (comment-insert-comment-function)
5767 (comment-region-function, uncomment-region-function): New.
5768 (comment-indent): Use comment-insert-comment-function.
5769 (uncomment-region): Use uncomment-region-function.
5770 (comment-region): Use comment-region-function.
5771
5772 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
5773
5774 2004-02-16 Richard Stallman <rms@gnu.org>
5775
5776 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
5777 loaddefs* and ldefs-boot*.
5778
5779 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5780
5781 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
5782 and email address at the beginning and end of the address.
5783
5784 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
5785 anchored at the beginning of the email address.
5786
5787 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
5788
5789 * international/ccl.el (ccl-compile-write): Pass `left' to
5790 ccl-embed-code to generate correct code of write-expr-register.
5791
5792 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
5793
5794 * progmodes/grep.el (grep-compute-defaults): Fix typos.
5795
5796 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5797
5798 * x-dnd.el: Mention support for Motif in commentary.
5799 (x-dnd-handle-drag-n-drop-event): Ditto.
5800
5801 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5802
5803 * ses.el: Use "ses--" prefixes for buffer-local variables.
5804 Use (point-min) instead of 1, even when we know the buffer
5805 is unnarrowed.
5806 (ses-build-load-map): Delete. Distribute its content to defconst's for
5807 the three maps.
5808 (ses-menu, ses-header-line-menu): New menus.
5809 (ses-mode-map): Use them.
5810 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
5811
5812 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
5813
5814 * Makefile.in: Fix the CC Mode recompile kludge so it works
5815 when building in a different directory.
5816
5817 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
5818
5819 * simple.el (kill-new): Put yank-handler property on the entire string.
5820
5821 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5822
5823 * diff.el: Don't use compile any more, use diff-mode instead.
5824 (diff-regexp-alist, diff-old-file, diff-new-file)
5825 (diff-parse-differences, diff-process-setup): Remove.
5826 (diff-sentinel): New fun.
5827 (diff): Use it. Run the process ourselves.
5828 Use diff-mode for the rest of the processing.
5829
5830 * diff.el (diff): Simplify code handling `switch'.
5831
5832 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5833
5834 * pcvs-defs.el (cvs-menu): Add `tag'.
5835
5836 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
5837
5838 * simple.el (kill-append): Doc fix.
5839
5840 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5841 Adapt outline-regexp to the new conventions for commenting out code.
5842
5843 2004-02-11 John Paul Wallington <jpw@gnu.org>
5844
5845 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
5846
5847 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
5848
5849 * diff.el (diff-switches): New fun.
5850 (diff, diff-backup): Use it.
5851 (diff): Clean up the args construction. Use backquote.
5852 Use listp instead of consp to avoid putting a nil arg.
5853 (diff): Add a revert-buffer function.
5854
5855 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5856
5857 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
5858 handled by x-dnd-handle-file-name.
5859 (x-dnd-known-types): Add COMPOUND_TEXT.
5860 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
5861 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
5862 x-dnd-empty-state.
5863 (x-dnd-forget-drop): Ditto.
5864 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
5865 (x-dnd-handle-one-url): Return private when inserting text.
5866 (x-dnd-insert-ctext): New function.
5867 (x-dnd-handle-file-name): New function for FILE_NAME.
5868 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
5869 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
5870 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
5871
5872 2004-02-10 Kenichi Handa <handa@m17n.org>
5873
5874 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
5875 instead of while loop.
5876
5877 2004-02-10 Miles Bader <miles@gnu.org>
5878
5879 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
5880
5881 2004-02-09 Kenichi Handa <handa@m17n.org>
5882
5883 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
5884 have end-of-line.
5885
5886 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
5887
5888 * Makefile.in: Added extra dependencies in the recompile target
5889 needed to cope with the compile time macro expansions in CC Mode.
5890
5891 2004-02-09 Kim F. Storm <storm@cua.dk>
5892
5893 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
5894 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
5895 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
5896 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
5897 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
5898 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
5899 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
5900 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
5901 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
5902 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
5903 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
5904
5905 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
5906
5907 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
5908 Don't allow shrink if there's a window on our right.
5909
5910 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
5911 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
5912 Bring together declaration and initialization.
5913 (prolog-mode-variables): Don't set the syntax table.
5914 Don't set paragraph-start and comment-indent-function.
5915 Add /*..*/ to the comment regexps.
5916 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
5917 (prolog-mode-map): Don't bind TAB.
5918 (prolog-mode): Set the syntax table.
5919 (prolog-comment-indent): Remove.
5920 (inferior-prolog-mode-map): Initialize in the declaration.
5921 (inferior-prolog-mode-syntax-table)
5922 (inferior-prolog-mode-abbrev-table): New vars.
5923 (inferior-prolog-mode): Derive from comint-mode.
5924 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
5925 minibuffer windows.
5926
5927 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
5928 in file names, as long as it is unabmiguous.
5929
5930 2004-02-08 Andreas Schwab <schwab@suse.de>
5931
5932 * textmodes/reftex-toc.el
5933 (reftex-toc-load-all-files-for-promotion): Remove useless use of
5934 format. Doc fix.
5935
5936 * textmodes/refer.el (refer-find-entry-internal): Remove extra
5937 format string arguments.
5938
5939 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
5940 string argument.
5941
5942 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
5943
5944 * play/zone.el (zone-call): Fix format string.
5945
5946 * net/webjump.el (webjump-builtin): Add missing format string argument.
5947
5948 * midnight.el (midnight-delay-set): Remove extra format string argument.
5949
5950 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
5951
5952 * hexl.el (hexl-insert-char): Add missing format string argument.
5953
5954 * format.el (format-decode): Fix format string.
5955
5956 * emulation/vi.el (vi-mode): Remove extra format string argument.
5957 (vi-repeat-last-search): Likewise.
5958 (vi-reverse-last-search): Likewise.
5959 (vi-goto-mark): Likewise.
5960 (vi-reverse-last-find-char): Likewise.
5961 (vi-repeat-last-find-char): Likewise.
5962 (vi-locate-def): Likewise.
5963
5964 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
5965
5966 * ediff-util.el (ediff-toggle-read-only): Remove extra format
5967 string argument.
5968 (ediff-toggle-regexp-match): Likewise.
5969
5970 * dired-aux.el (dired-do-query-replace-regexp): Add missing
5971 format string argument.
5972
5973 * calc/calc-map.el (calc-get-operator): Remove extra format
5974 string argument.
5975
5976 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
5977
5978 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
5979 string argument.
5980
5981 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
5982
5983 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
5984
5985 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
5986
5987 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
5988 (cl-struct-setf-expander): Likewise.
5989
5990 * vc.el (with-vc-file): Fix unsafe uses of error.
5991 (vc-cancel-version): Likewise.
5992
5993 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
5994
5995 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
5996 thousands separator; fixes <class>:<line-number> regexp for
5997 non-english locales.
5998
5999 2004-02-08 Andreas Schwab <schwab@suse.de>
6000
6001 * view.el (view-mode-enable): Revert previous change.
6002
6003 2004-02-07 Kim F. Storm <storm@cua.dk>
6004
6005 * simple.el (line-number-at-pos): Rename from line-at-pos.
6006 Uses changed (what-line and vc-annotate-warp-version).
6007
6008 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6009
6010 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
6011 (diff-mode): Remove aborted attempt at support for compile.el.
6012 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
6013
6014 2004-02-06 Andreas Schwab <schwab@suse.de>
6015
6016 * view.el (view-mode-enable): Add view-mode-map to
6017 minor-mode-overriding-map-alist.
6018
6019 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6020
6021 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
6022
6023 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
6024
6025 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
6026 with point inside rather than after the paragraph.
6027
6028 2004-02-04 Sam Steingold <sds@gnu.org>
6029
6030 * mail/smtpmail.el (smtpmail-try-auth-methods):
6031 Do not try authentication when no mechanism is available.
6032 Pass port-name as defaultport to `netrc-machine'.
6033
6034 2004-02-04 Stephen Eglen <stephen@gnu.org>
6035
6036 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
6037 to show how minibuffer height can be constrained.
6038
6039 2004-02-04 John Paul Wallington <jpw@gnu.org>
6040
6041 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
6042
6043 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6044
6045 * x-dnd.el: New file for drag and drop.
6046
6047 * term/x-win.el: require x-dnd, set after-make-frame-functions
6048 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
6049 drag-n-drop event.
6050
6051 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
6052 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
6053 (dired-dnd-handle-file): New functions for drag and drop support.
6054 (dired-mode): Initialize drag and drop if x-dnd present.
6055
6056 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
6057
6058 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
6059 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
6060 (cperl-mode): Set fill-paragraph-function.
6061 (cperl-fill-paragraph): Make it non-interactive.
6062
6063 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
6064
6065 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
6066
6067 2004-02-02 David Kastrup <dak@gnu.org>
6068
6069 * replace.el (perform-replace): Allow 'literal argument in
6070 regexp-flag to indicate literal replacement.
6071 (query-replace-regexp-eval): Use it.
6072
6073 2004-02-01 Andreas Schwab <schwab@suse.de>
6074
6075 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
6076
6077 2004-02-01 Stephen Eglen <stephen@gnu.org>
6078
6079 * info-look.el: Add support for maxima-mode. Update commentary
6080 because info-lookup-symbol is now bound to C-h S.
6081
6082 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
6083
6084 * simple.el (edit-and-eval-command): Bind print-level and
6085 minibuffer-history-sexp-flag around call to read-from-minibuffer.
6086 Correct initial position in command-history.
6087
6088 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
6089
6090 * files.el (read-directory-name): Adapt the docstring to recent
6091 change in Fread_file_name.
6092
6093 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
6094
6095 * ses.el (ses-print-cell): If print format too wide for column
6096 width, truncate decimal places if that helps to avoid "#####" fill.
6097 * ses.el (ses-initial-column-width): Revert previous change.
6098
6099 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
6100
6101 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
6102 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
6103 Add edebug info.
6104 (jit-lock-mode): Setup/cancel the new timer.
6105 (jit-lock-context-fontify): New fun. Extracted from
6106 context fontification code of jit-lock-stealth-fontify.
6107 (jit-lock-stealth-fontify): Don't do context fontification any more.
6108
6109 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
6110 (jit-lock-fontify-now): Handle the `quit' case.
6111 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
6112
6113 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
6114
6115 * progmodes/executable.el (executable-command-find-posix-p):
6116 New. Check if find handles arguments Posix-style.
6117
6118 * progmodes/grep.el (grep-compute-defaults):
6119 Use executable-command-find-posix-p.
6120 (grep-find): Check `grep-find-command'.
6121
6122 * filecache.el (file-cache-find-posix-p): Delete.
6123 (file-cache-add-directory-using-find):
6124 Use `executable-command-find-posix-p'.
6125
6126 2004-01-29 Dave Love <fx@gnu.org>
6127
6128 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
6129 Iterate the hook function if arg is given.
6130 (mark-defun, narrow-to-defun): Change order of finding the limits.
6131
6132 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
6133 (byte-compile-format-warn): New.
6134 (byte-compile-callargs-warn): Use it.
6135 (Format, message, error): Add byte-compile-format-like property.
6136 (byte-compile-maybe-guarded): New.
6137 (byte-compile-if, byte-compile-cond): Use it.
6138 (byte-compile-lambda): Compile interactive forms,
6139 just to make warnings about them.
6140
6141 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
6142
6143 * ses.el (ses-initial-column-width): Increase to 14, so it will
6144 work well with the default printer of "%.7g" for extreme values
6145 like "-1.234567e+07".
6146
6147 2004-01-29 Kenichi Handa <handa@m17n.org>
6148
6149 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
6150
6151 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
6152
6153 * dos-w32.el: Added support for the `default-printer-name' function.
6154
6155 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
6156
6157 * server.el (server-socket-name): Don't use the hostname in the
6158 socket name since /tmp is local to the host anyway.
6159
6160 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
6161 robust check of widening and fix var-naming.
6162
6163 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
6164
6165 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
6166 or rmail-spam- to rsf- in all function and variable names.
6167 (rsf-min-region-to-spam-list): New variable.
6168 (rsf-bbdb-auto-delete-spam-entries): Rename from
6169 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
6170 scanned together with the recipients field for spam testing; Don't
6171 delete spam message if rmail-delete-after-output is non-nil;
6172 (rsf-check-field): New function, extracted from code in
6173 rmail-spam-filter to ease addition of header fields like
6174 content-type:;
6175 (message-content-type): New variable. The content-type: field was
6176 added also in defcustom of rsf-definitions-alist;
6177 (rmail-spam-filter): Replace repeated test code for header fields
6178 by calls to check-field; change the call to
6179 rmail-output-to-rmail-file such that rmail-current-message stays
6180 the same to avoid wrong deletion of unseen flags.
6181 (rmail-use-spam-filter): Add autoload cookie.
6182
6183 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
6184
6185 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
6186 (file-cache-add-directory-using-find): Add Cygwin support.
6187 (file-cache-find-command-posix-flag): New user variable.
6188
6189 * filecache.el (file-cache-add-directory): Check for
6190 directories an remove them from dir-files.
6191
6192 2004-01-27 Richard M. Stallman <rms@gnu.org>
6193
6194 * man.el (Man-fontify-manpage): Clean up message.
6195
6196 2004-01-27 Kenichi Handa <handa@m17n.org>
6197
6198 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
6199 (sentence-end): Define using sentence-end-without-space.
6200
6201 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
6202 a sentence ends with one of a character in sentence-end-without-space.
6203
6204 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
6205
6206 * font-lock.el (font-lock): Add jit-lock as explicit group member.
6207 (jit-lock): Group declaration moved to jit-lock.el.
6208 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
6209 when necessary.
6210
6211 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
6212 (jit-lock-context-unfontify-pos): Rename from
6213 jit-lock-first-unfontify-pos.
6214 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
6215
6216 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
6217
6218 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
6219 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
6220 (fortran-fill): When filling a string, adjust re-search-backward
6221 argument for special case of string just on fill-column.
6222 When filling non-string, allow one extra char if
6223 fortran-break-before-delimiters is non-nil.
6224 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
6225 Use fortran-break-delimiters-re and fortran-no-break-re to
6226 correctly handle cases such as "**".
6227
6228 * progmodes/f90.el (f90-break-delimiters): Doc fix.
6229 (f90-no-break-re): Add some extra tokens. Doc fix.
6230
6231 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
6232
6233 * mail/rmail-spam-filter.el:
6234 Use two semicolons as Commentary line prefix.
6235 Add ";;; Code:" stylized comment.
6236 Delete end-of-line whitespace.
6237 Wrap (require 'cl) with `eval-when-compile'.
6238
6239 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
6240
6241 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
6242 at the top level of vc.el.
6243
6244 2004-01-23 Andre Spiegel <spiegel@gnu.org>
6245
6246 * vc.el (vc-current-line): Function removed. This is now done by
6247 the new function line-at-pos in simple.el.
6248 (vc-annotate-warp-version): Use line-at-pos instead of
6249 vc-current-line.
6250
6251 2004-01-22 Kim F. Storm <storm@cua.dk>
6252
6253 * simple.el (line-at-pos): New defun.
6254 (what-line): Use it. Optimize by only counting lines in narrowed
6255 region once.
6256
6257 2004-01-22 Kenichi Handa <handa@m17n.org>
6258
6259 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
6260 point (register r1) only for charset mule-unicode-0100-24ff.
6261
6262 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
6263
6264 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
6265 trailing white space and ensure a final newline.
6266
6267 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
6268 Add autoload cookie.
6269
6270 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
6271
6272 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
6273 activate view-mode explicitly.
6274
6275 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6276
6277 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
6278 use clipboard first.
6279
6280 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
6281
6282 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
6283 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
6284 (vc-mcvs-cvs): Remove.
6285 (vc-mcvs-command): Remove use of assert.
6286
6287 * outline.el (outline-insert-heading): Tighten up match.
6288 (outline-demote, outline-move-subtree-down): Don't assume anything
6289 about outline-regexp.
6290
6291 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
6292 (texinfo-show-structure): Explicitly add ^, and simplify.
6293
6294 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
6295
6296 * calendar/appt.el (appt-check): Restore usage of
6297 appt-issue-message deleted in previous change.
6298 (top-level): Activate package when loaded (needed for backwards
6299 compatibility).
6300
6301 2004-01-20 Jesper Harder <harder@ifa.au.dk>
6302
6303 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
6304 following previous change to smtpmail-send-data.
6305
6306 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
6307
6308 * vc.el (vc-default-previous-version): Doc enhancement.
6309 (vc-default-next-version): New function.
6310 (vc-print-log): New arg FOCUS-REV.
6311 (vc-annotate-mode): Derive from view-mode.
6312 (vc-annotate): New args REVISION, DISPLAY-MODE.
6313 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
6314 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
6315 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
6316 (vc-annotate-show-diff-revision-at-line, vc-current-line)
6317 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
6318
6319 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
6320
6321 2004-01-19 Karl Berry <karl@gnu.org>
6322
6323 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
6324 or "TexInfo".
6325
6326 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
6327
6328 * subr.el (delete-dups): New function.
6329
6330 2004-01-19 Karl Berry <karl@gnu.org>
6331
6332 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
6333 with ^, since that's what texinfo-show-structure
6334 documentation says (plus it works much better in texinfo.txi).
6335
6336 2004-01-18 Jesper Harder <harder@ifa.au.dk>
6337
6338 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
6339
6340 2004-01-18 David Ponce <david@dponce.com> (tiny change)
6341
6342 * progmodes/which-func.el (which-function-mode): Don't cancel
6343 which-func-update-timer if not set.
6344
6345 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
6346
6347 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
6348 Remove spurious left square bracket in XX:XXam regexp.
6349
6350 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
6351
6352 * progmodes/cc-defs.el: Do not require cl at run time.
6353
6354 2004-01-16 Richard M. Stallman <rms@gnu.org>
6355
6356 * emacs-lisp/cl.el (cl-cannot-unload): New function.
6357 (cl-unload-hook): Defvar this to run cl-cannot-unload.
6358
6359 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
6360 Call rmail-spam-filter. Delete and expunge spam.
6361 Print number of spam messages deleted.
6362 Save and restore the deletion status of old messages when reading
6363 new mail with spam filter, so that expunging spam does not expunge
6364 msgs deleted by the user.
6365 (rmail-only-expunge): Add an optional argument dont-show to
6366 prevent showing message after expunge.
6367
6368 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
6369
6370 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
6371 * subr.el (declare): New macro.
6372
6373 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
6374
6375 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
6376
6377 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6378
6379 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6380 Test window-system rather than system-type (for X11/Mac).
6381
6382 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
6383
6384 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
6385
6386 2004-01-12 Richard M. Stallman <rms@gnu.org>
6387
6388 * mail/rmail.el (rmail-convert-to-babyl-format):
6389 Use mail-unquote-printable-region.
6390 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
6391 (rmail-hex-char-to-integer): Functions deleted.
6392
6393 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
6394 (mail-unquote-printable-region): New arg NOERROR.
6395 For invalid encoding, either signal an error to just return nil.
6396
6397 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
6398
6399 * calendar/appt.el: Update copyright and commentary.
6400 (appt-issue-message): Make obsolete.
6401 (appt-visible, appt-msg-window): Make obsolete, in favour of
6402 appt-display-format.
6403 (appt-display-mode-line, appt-display-duration)
6404 (appt-display-diary, appt-time-msg-list, appt-mode-string)
6405 (appt-prev-comp-time, appt-display-count, appt-timer)
6406 (appt-convert-time): Doc change.
6407 (appt-disp-window-function, appt-delete-window-function):
6408 Use defcustom rather than defvar.
6409 (appt-display-format): New variable.
6410 (appt-display-message): New function with display code from appt-check.
6411 (appt-check): Add optional FORCE argument. Doc change.
6412 Add appt-make-list to diary-hook if displaying diary.
6413 Remove checking of view-diary-entries-initially.
6414 Message display section removed to new function appt-display-message.
6415 (appt-display-window): Doc change. Remove unused internal var
6416 this-buffer. Do not beep, since appt-display-message does that.
6417 (appt-make-list): Doc change. Use caar.
6418 (appt-sort-list): Simplify by using builtin sort function.
6419 (appt-update-list): New function for updating appts when diary is
6420 saved.
6421 (appt-activate): New autoloaded function to toggle package
6422 functionality.
6423
6424 * calendar/cal-x.el: (calendar-one-frame-setup)
6425 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
6426
6427 * calendar/calendar.el: Update copyright.
6428 (view-diary-entries-initially, european-calendar-style): Doc change.
6429 (calendar-setup): Make defcustom rather than defvar.
6430 (mark-visible-calendar-date): Initialize temp-face and faceinfo
6431 in let binding so local to function.
6432
6433 * calendar/diary-lib.el: Update copyright.
6434 (diary, diary-entry-time): Doc change.
6435 (list-diary-entries): Doc change. Trivial logic change.
6436 (fancy-diary-display): Restore make-face command mistakenly
6437 deleted 2003-05-08.
6438 (show-all-diary-entries): Allow to pop-up frame if needed.
6439
6440 2004-01-09 John Paul Wallington <jpw@gnu.org>
6441
6442 * bindings.el (mode-line-change-eol): Add EVENT parameter.
6443 Temporarily select EVENT's window for changing eol type.
6444
6445 2004-01-09 Deepak Goel <deego@gnufans.org>
6446
6447 * calendar/diary-lib.el (diary-entry-time):
6448 Also accept time in the form XX[.XX][am/pm/AM/PM].
6449 (fancy-diary-font-lock-keywords): Likewise.
6450 (diary-font-lock-keywords): Likewise.
6451 * calendar/appt.el (appt-add): Likewise.
6452 (appt-make-list): Likewise.
6453 (appt-convert-time): Likewise.
6454
6455 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
6456
6457 * gdb-ui.el (gdb-ann3): Revert previous change.
6458 (gdb-source-info): Allow for case of where compilation directory
6459 is not recorded.
6460
6461 2004-01-08 John Paul Wallington <jpw@gnu.org>
6462
6463 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
6464
6465 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
6466
6467 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
6468
6469 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
6470 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
6471 problems.
6472 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
6473
6474 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
6475
6476 * files.el (write-file-functions, write-contents-functions):
6477 Clarify docstrings.
6478
6479 2004-01-07 Kenichi Handa <handa@m17n.org>
6480
6481 * international/mule.el (set-auto-coding): Fix for the case that
6482 end-of-line is only CR.
6483
6484 2004-01-07 Kim F. Storm <storm@cua.dk>
6485
6486 * subr.el (event-start, event-end): Doc fix.
6487 (posn-string, posn-image): New defuns.
6488 (posn-object): Return either image or string object.
6489 (posn-object-x-y): Return 8th element of position.
6490 (posn-object-width-height): New defun.
6491
6492 2004-01-06 Andreas Schwab <schwab@suse.de>
6493
6494 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
6495 output.
6496
6497 2004-01-05 Karl Berry <karl@gnu.org>
6498
6499 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
6500 / and *, too.
6501
6502 2003-12-31 Simon Josefsson <jas@extundo.com>
6503
6504 * files.el (before-save-hook): Add.
6505 (basic-save-buffer): Use before-save-hook.
6506
6507 * emacs-lisp/copyright.el: Fix comment to recommend
6508 before-save-hook instead of write-file-functions.
6509
6510 2004-01-05 Richard M. Stallman <rms@gnu.org>
6511
6512 * finder.el (finder-commentary): Call delete-other-windows.
6513
6514 * net/ange-ftp.el (ange-ftp-file-attributes):
6515 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
6516
6517 2004-01-04 Karl Berry <karl@gnu.org>
6518
6519 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
6520 comment characters % and # in the copyright year notice,
6521 as well as ;.
6522
6523 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
6524
6525 * wid-edit.el (default): Define dummy :value-delete.
6526 Reported by Jesper Harder <harder@ifa.au.dk>.
6527
6528 2004-01-03 Richard M. Stallman <rms@gnu.org>
6529
6530 * progmodes/compile.el (compile-internal): Use point, not point-min,
6531 for set-window-point.
6532
6533 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
6534
6535 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
6536
6537 * progmodes/grep.el (grep-mode-map):
6538 Don't remap next-line, previous-line.
6539
6540 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
6541
6542 * speedbar.el (speedbar-edit-line): Change regexp to position
6543 the cursor on the first character of this line's button.
6544
6545 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6546
6547 * subr.el (functionp): Doc fix.
6548
6549 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
6550
6551 * progmodes/idlwave.el (idlwave-make-tags):
6552 * textmodes/flyspell.el (flyspell-large-region):.
6553 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
6554 * emulation/viper-util.el (viper-glob-unix-files):
6555 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
6556 * man.el (Man-init-defvars):
6557 * jka-compr.el (jka-compr-call-process):
6558 * files.el (get-free-disk-space,insert-directory):
6559 * ediff-ptch.el (ediff-test-patch-utility):
6560 * ediff-diff.el (ediff-test-utility):
6561 * dired-aux.el (dired-check-process):
6562 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
6563 test the return value of call-process, because it can be a string.
6564
6565 2003-12-31 John Paul Wallington <jpw@gnu.org>
6566
6567 * bindings.el (completion-ignored-extensions): Add .pfsl.
6568
6569 2003-12-31 Kim F. Storm <storm@cua.dk>
6570
6571 * ido.el (ido-nonreadable-directory-p): New defun to check for
6572 nonreadable directory without activating tramp (to avoid problems
6573 with checking incomplete tramp paths).
6574 (ido-set-current-directory, ido-file-internal)
6575 (ido-file-name-all-completions1): Use it.
6576
6577 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6578
6579 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
6580 documentation if the anchor (or node) name is preceded by `info
6581 anchor' or `Info anchor' in addition to earlier `info node' and
6582 `Info node'.
6583 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
6584
6585 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6586
6587 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
6588 error in arguments to base64-decode-region. Remove ^M characters
6589 after decoding base64.
6590
6591 2003-12-30 Simon Josefsson <jas@extundo.com>
6592
6593 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
6594 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
6595 have only been distributed with Emacs for some years.
6596 (texinfo-mode-hook): Customize.
6597
6598 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6599
6600 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
6601 cleaner (suggested by Richard Stallman).
6602
6603 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
6604 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
6605 file-name clashes on 8+3 DOS filesystems.
6606
6607 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
6608 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
6609 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
6610 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
6611 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
6612 file-name clashes on 8+3 filesystems.
6613
6614 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
6615 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
6616 file-name clashes on 8+3 DOS filesystems.
6617
6618 2003-12-29 Richard M. Stallman <rms@gnu.org>
6619
6620 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
6621 Upcase the character.
6622
6623 * textmodes/flyspell.el (mail-mode-flyspell-verify):
6624 Search for header separator alone on a line, literally,
6625 and search for it backward, not forward.
6626 (flyspell-abbrev-table): Always use global-abbrev-table
6627 if there is no local one.
6628
6629 * progmodes/sh-script.el (sh-get-indent-info):
6630 Don't move point back if at bob.
6631
6632 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
6633
6634 * play/handwrite.el (handwrite): Make the handwrite credit message
6635 a comment rather than an output command.
6636
6637 * obsolete/sc.el: Display message that this file is obsolete.
6638
6639 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
6640
6641 * mail/rfc822.el (rfc822-address-start): Declare variable.
6642 Renamed from address-start. All uses changed.
6643
6644 * term.el (term-exec): Set up sentinel.
6645 (term-sentinel): New function.
6646 (term-handle-exit): New function.
6647
6648 * subr.el (assoc-ignore-case, assoc-ignore-representation):
6649 Use assoc-string, and mark them obsolete.
6650 (delay-mode-hooks): Mark as permanent local.
6651
6652 * simple.el (sendmail-user-agent-compose): Use assoc-string.
6653
6654 * register.el (copy-rectangle-to-register): Doc fix.
6655
6656 * info.el (Info-insert-dir): Use assoc-string.
6657
6658 * info-look.el (info-lookup): Use assoc-string.
6659
6660 * frame.el (pop-up-frame-function): Use quote, not `function'.
6661 (frame-notice-user-settings): Calculate ADJUSTED-TOP
6662 copying with lists as coordinate values.
6663
6664 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
6665
6666 * find-dired.el (kill-find): New command.
6667 (find-dired): Make buffer read-only.
6668 Set up a keymap with C-c C-k running kill-find.
6669 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
6670
6671 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
6672
6673 * filecache.el (file-cache-ignore-case): New variable.
6674 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
6675
6676 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
6677 (comint-dynamic-complete-as-filename): Rename local vars.
6678 (comint-dynamic-list-filename-completions): Likewise.
6679
6680 * comint.el (comint-dynamic-list-completions-config): New var.
6681 (comint-dynamic-list-completions): Handle both SPC and TAB right.
6682
6683 * comint.el (comint-file-name-chars): Add [].
6684 (comint-word): Use skip-chars-backward, not search.
6685
6686 * shell.el (shell-file-name-chars): Add [].
6687
6688 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
6689
6690 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
6691
6692 * generic.el (define-generic-mode): Doc fix.
6693
6694 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6695
6696 * files.el (kill-some-buffers): Doc fix.
6697
6698 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
6699
6700 * comint.el (comint-watch-for-password-prompt): Pass `string' as
6701 arg to send-invisible
6702 (send-invisible): Doc fix. The argument is now a prompt, not the
6703 string to send.
6704 (comint-read-noecho): Doc fix.
6705
6706 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
6707
6708 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
6709 "@", as required by some ISP hosting service. Fix defcustom
6710 argument syntax errors that prevented use of customization.
6711
6712 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6713
6714 * xml.el (xml-get-attribute-or-nil): Doc fix.
6715
6716 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
6717
6718 * net/zone-mode.el (zone-mode): Use write-file-functions, not
6719 write-file-hooks.
6720
6721 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
6722
6723 * autorevert.el (auto-revert-interval): Doc fix.
6724
6725 2003-12-29 Mark A. Hershberger <mah@everybody.org>
6726
6727 * xml.el (xml-get-attribute-or-nil): New function, like
6728 xml-get-attribute, but returns nil if the attribute was not found.
6729 (xml-get-attribute): Convert to defsubst, uses
6730 xml-get-attribute-or-nil.
6731
6732 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6733
6734 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
6735
6736 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
6737
6738 * custom.el (custom-declare-theme): Use `value' when putting
6739 properties on `theme'.
6740
6741 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
6742
6743 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
6744 for each yank-handler segment.
6745 (insert-for-yank-1): New function, with the body of the previous
6746 insert-for-yank.
6747
6748 * textmodes/table.el (table-yank-handler): New defcustom.
6749 (table--put-cell-indicator-property): Put yank-handler property
6750 that indicates the yank handler for the table cell.
6751
6752 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
6753
6754 * generic-x.el (etc-modules-conf-generic-mode): A more complete
6755 set of keywords.
6756
6757 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6758
6759 * international/mule-cmds.el (reset-language-environment)
6760 (set-language-environment): Don't invoke fontset-related functions
6761 if fontset-list is not fboundp.
6762
6763 2003-12-29 Kenichi Handa <handa@m17n.org>
6764
6765 * international/mule-cmds.el (reset-language-environment):
6766 Call set-overriding-fontspec-internal with nil.
6767 (set-language-environment): Call set-overriding-fontspec-internal
6768 if the language environment specify `overriding-fontspec'.
6769 (language-info-alist): Doc added.
6770
6771 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
6772 characters of mule-unicode-0100-24ff.
6773 (ccl-encode-windows-1251-font): New CCL program.
6774 ("Bulgarian"): Specify overriding-fontspec.
6775 ("Belarusian"): Likewise.
6776
6777 2003-12-28 Sam Steingold <sds@gnu.org>
6778
6779 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
6780 parameter ID-FORMAT to conform with the 2003-11-30 patch.
6781
6782 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
6783
6784 * progmodes/gud.el (gud-gdb-command-name): Set default to
6785 "gdb --annotate=3".
6786 (gud-gdb-marker-filter): Look out for annotations.
6787 (gdb-first-pre-prompt): New variable.
6788 Remove trailing white space.
6789
6790 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
6791 if necessary.
6792 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
6793 annotations are detected.
6794 (gud-gdba-marker-filter): Use global variable gud-marker-acc
6795 instead of a local one to allow transition from
6796 gud-gdb-marker-filter.
6797 Remove trailing white space.
6798
6799 2003-12-27 Kim F. Storm <storm@cua.dk>
6800
6801 * ido.el: Handle non-readable directories.
6802 (ido-decorations): Add 9th element for non-readable directory.
6803 (ido-directory-nonreadable): New dynamic var.
6804 (ido-set-current-directory): Set it.
6805 (ido-read-buffer, ido-file-internal):
6806 (ido-read-file-name, ido-read-directory-name): Let-bind it.
6807 (ido-file-name-all-completions1): Return empty list for
6808 non-readable directory.
6809 (ido-exhibit): Print [Not readable] if directory is not readable.
6810 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
6811 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
6812 Use it.
6813
6814 2003-12-27 Lars Hansen <larsh@math.ku.dk>
6815
6816 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
6817 calls to directory-files-and-attributes and file-attributes.
6818 (ls-lisp-format): Remove system dependent handling of user and
6819 group id's.
6820
6821 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
6822
6823 * ffap.el (ffap-read-file-or-url): Revert previous change.
6824
6825 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
6826
6827 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
6828 new list of included files called `files-with-node-lines', that
6829 only have node lines. This way @include commands can include any
6830 file, such as version and update files without node lines, not
6831 just files that are chapters.
6832
6833 2003-12-25 Andreas Schwab <schwab@suse.de>
6834
6835 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
6836 file not found.
6837
6838 2003-12-08 Miles Bader <miles@gnu.org>
6839
6840 * dired.el (dired-between-files): Always use dired-move-to-filename,
6841 which is more robust in non-english locales.
6842
6843 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
6844
6845 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
6846
6847 2003-12-24 Andreas Schwab <schwab@suse.de>
6848
6849 * shell.el (shell-file-name-quote-list): Add backslash.
6850
6851 * comint.el (comint-quote-filename): Correctly handle backslash
6852 in comint-file-name-quote-list.
6853
6854 2003-12-24 Kenichi Handa <handa@m17n.org>
6855
6856 * international/mule-cmds.el (set-default-coding-systems):
6857 Call ucs-set-table-for-input for all buffers that don't have local
6858 value of buffer-file-coding-system.
6859
6860 * international/ucs-tables.el (ucs-set-table-for-input):
6861 If translation-table-for-encode is a symbol, get its
6862 translation-table property.
6863
6864 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
6865
6866 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
6867 to `completing-read' on a recently fixed bug.
6868
6869 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
6870 instead of SPACE, to get the list of possible fringe modes.
6871 SPACE only works if both `partial-completion-mode' and
6872 `completion-auto-help' are nil.
6873
6874 * complete.el (PC-is-complete-p): Delete.
6875 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
6876 calls to `test-completion'.
6877
6878 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
6879
6880 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
6881 to edit values when there are no children.
6882
6883 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
6884 a mode called "Assembler" already exists.
6885 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
6886 (gud-watch): Use format option. Remove font properties from string.
6887 (gdb-var-create-handler, gdb-var-list-children-handler):
6888 Don't bother about properties as there are none.
6889 (gdb-var-create-handler, gdb-var-list-children-handler)
6890 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
6891 with two arguments.
6892 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
6893 Let speedbar show value changes with a different font.
6894 (gdb-edit-value): New defun.
6895 (gdb-clear-partial-output, gdb-clear-inferior-io)
6896 (def-gdb-auto-update-handler): Use erase-buffer.
6897 (gdb-frame-handler): Display watch expressions in
6898 FUNCTION::VARIABLE format if required.
6899
6900 2003-12-23 John Paul Wallington <jpw@gnu.org>
6901
6902 * info.el (Info-unescape-quotes, Info-split-parameter-string)
6903 (Info-goto-emacs-command-node): Doc fixes.
6904
6905 2003-12-12 Jesper Harder <harder@ifa.au.dk>
6906
6907 * cus-edit.el (custom-add-parent-links): Define "many".
6908
6909 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
6910
6911 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
6912 (widget-child-validate, widget-type-value-create)
6913 (widget-type-default-get, widget-type-match): New functions.
6914 (lazy): New widget.
6915 (menu-choice, checklist, radio-button-choice, editable-list)
6916 (group, documentation-string): Remove redundant (per 2003-10-25
6917 change) calls to `widget-children-value-delete'.
6918 (widget-choice-value-get, widget-choice-value-inline): Remove.
6919 (menu-choice): Update widget.
6920
6921 2003-12-03 Kenichi Handa <handa@m17n.org>
6922
6923 * language/cyrillic.el: Register "microsoft-cp1251" in
6924 ctext-non-standard-encodings-alist.
6925 ("Bulgarian"): Add ctext-non-standard-encodings.
6926 ("Belarusian"): Likewise.
6927
6928 * international/mule-conf.el (compound-text-with-extensions):
6929 Change the type to 2 (iso-2022 base).
6930
6931 * international/mule.el (ctext-non-standard-encodings-alist):
6932 Change the format.
6933 (ctext-non-standard-encodings): New variable.
6934 (ctext-post-read-conversion): Fully re-written.
6935 (ctext-non-standard-designations-alist): Delete it.
6936 (ctext-non-standard-encodings-table): New function.
6937 (ctext-pre-write-conversion): Fully re-written.
6938
6939 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
6940
6941 * cus-edit.el (custom-add-parent-links): Add documentation links
6942 for parent, if the item has none of its own.
6943
6944 2003-11-30 Richard M. Stallman <rms@gnu.org>
6945
6946 * dired-aux.el (dired-do-query-replace-regexp):
6947 Report files visited read-only.
6948
6949 2003-11-30 Juri Linkov <juri@jurta.org>
6950
6951 * dired-aux.el (dired-compare-directories): New command.
6952 (dired-file-set-difference, dired-files-attributes): New functions.
6953
6954 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
6955 Version 2.0.38 of Tramp released.
6956
6957 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
6958 Charles Curley <charlescurley@charlescurley.com>.
6959 (tramp-multi-connection-function-alist): Add ssht entry which adds
6960 "-e none -t -t" to the list of ssh args. Suggested by Adrian
6961 Aichner.
6962 (tramp-get-method-parameter): New function to retrieve a method
6963 parameter. This allows for omission of method parameters.
6964 Callers adjusted.
6965
6966 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
6967
6968 * net/tramp.el: Add new optional parameter ID-FORMAT to
6969 `file-attributes'. Calls of `file-attributes' won't use this
6970 parameter for backward compatibility reasons.
6971 (tramp-perl-file-attributes): Add a new parameter to Perl script
6972 in order to handle uid/gid as strings, if desired.
6973 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
6974 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
6975 order to make the function more general.
6976 (tramp-handle-file-attributes): Replace proprietary optional
6977 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
6978 (tramp-handle-file-attributes-with-perl): Handle parameter
6979 NONNUMERIC if set. This wasn't done in the past.
6980 (tramp-post-connection): Apply second parameter "$2" if
6981 `tramp-remote-perl' is called.
6982
6983 * net/tramp-smb.el (tramp-smb-handle-delete-file):
6984 Correct cut'n'waste error (`filename' instead of `directory').
6985 (tramp-smb-handle-directory-files-and-attributes)
6986 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
6987 introduced parameter ID-FORMAT.
6988 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
6989 error (`directory' instead of `ldir').
6990
6991 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
6992 `file-attributes' has a second parameter. If yes, apply it with
6993 value "'integer". Otherwise, don't use that parameter (default is
6994 integer format).
6995
6996 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
6997
6998 * help.el (help-map): Bind `display-local-help' to `C-h .'.
6999 (help-for-help): Add `C-h .' to the listed Help options.
7000 Remove trailing whitespace.
7001
7002 * help-at-pt.el: New file.
7003
7004 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
7005
7006 * subr.el (noreturn, 1value): New macros for test coverage.
7007 See `testcover.el'.
7008
7009 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
7010
7011 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
7012 for macro `1value'.
7013 (testcover-1value): New function. Checks that a 1value form
7014 actually returns only one value. Requested by RMS.
7015
7016 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
7017
7018 * gdb-ui.el (gud-watch, gdb-var-create-handler)
7019 (gdb-var-list-children, gdb-var-list-children-handler)
7020 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
7021 gdb commands that use mi to keep them out of the command history.
7022
7023 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7024
7025 * cus-start.el (all): Add use-file-dialog.
7026
7027 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
7028
7029 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
7030
7031 2003-11-27 Kim F. Storm <storm@cua.dk>
7032
7033 * subr.el (posn-object-x-y): New defun.
7034
7035 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7036
7037 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
7038 Don't use `space' for \\\n.
7039 Be more selective as to which # are comment-starters.
7040
7041 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
7042
7043 * subr.el (number-sequence): Improve handling of floating point
7044 arguments (suggested by Kim Storm). Allow negative arguments.
7045
7046 2003-11-26 Kenichi Handa <handa@m17n.org>
7047
7048 * international/mule-cmds.el (standard-display-european-internal):
7049 Cancel the standard-display-table setting for ` and '.
7050
7051 2003-11-26 Kim F. Storm <storm@cua.dk>
7052
7053 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
7054 New defcustoms to add ffap-like functionality to ido.
7055 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
7056 (ido-no-final-slash): New defun.
7057 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
7058 (ido-read-file-name): ): Toggle VC checking via
7059 vc-handled-backends instead of vc-master-templates.
7060 (ido-file-internal): Handle ido-use-url-at-point and
7061 ido-use-filename-at-point via code borrowed from ffap-guesser.
7062 Handle new ido-exit code ffap.
7063 (ido-sort-list): Ignore final slash when sorting file names.
7064
7065 2003-11-25 Kim F. Storm <storm@cua.dk>
7066
7067 * emulation/cua-base.el (cua--standard-movement-commands):
7068 Add forward-sentence and backward-sentence.
7069
7070 2003-11-25 Stephen Eglen <stephen@gnu.org>
7071
7072 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
7073 iswitchb-exit is set to 'usefirst when user selects buffer at head
7074 of list using RET. (Selecting buffers at the head of the list was
7075 broken if the substring was also a complete buffername.)
7076
7077 2003-11-23 Kim F. Storm <storm@cua.dk>
7078
7079 * progmodes/compile.el (grep-command, grep-use-null-device)
7080 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
7081 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
7082 (grep-regexp-alist, grep-program, find-program)
7083 (grep-find-use-xargs, grep-history, grep-find-history)
7084 (grep-process-setup, grep-compute-defaults)
7085 (grep-default-command, grep, grep-tag-default, grep-find)
7086 (grep-expand-command-macros, grep-tree-last-regexp)
7087 (grep-tree-last-files, grep-tree): Move grep variables, functions
7088 and commands to new file grep.el.
7089 (compilation-mode-map): Remove grep commands from Compile sub-menu.
7090 (compilation-process-setup-function): Doc fix.
7091 (compilation-highlight-regexp, compilation-highlight-overlay): New
7092 defvars used for highlighting current compile error in source buffer.
7093 (compile-internal): New optional args HIGHLIGHT-REGEXP and
7094 LOCAL-MAP which overrides compilation-highlight-regexp and
7095 compilation-mode-map for this compilation.
7096 Delay calling compilation-set-window-height until after running
7097 compilation-process-setup-function so it can buffer-local override
7098 compilation-window-height.
7099 Check buffer-local value of compilation-scroll-output.
7100 (compilation-set-window-height): Use buffer-local value of
7101 compilation-window-height.
7102 (compilation-revert-buffer): Don't pass (undefined)
7103 preserve-modes arg to revert-buffer.
7104 (next-error-no-select, previous-error-no-select): New commands.
7105 (compilation-goto-locus): Temporarily highlight current match in
7106 source buffer using compilation-highlight-regexp.
7107
7108 * progmodes/grep.el: New file with grep code from compile.el.
7109 (grep): New defcustom group.
7110 (grep-window-height): New defcustom, like compilation-window-height.
7111 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
7112 (grep-scroll-output): New defcustom, like compilation-scroll-output.
7113 (grep-command, grep-use-null-device, grep-find-command)
7114 (grep-tree-files-aliases, grep-tree-ignore-case)
7115 (grep-tree-ignore-CVS-directories): Move to grep custom group.
7116 (grep-setup-hook): New hook variable.
7117 (grep-mode-map): New keymap for grep commands. Add Grep menu.
7118 (grep-last-buffer): New defvar, override compilation-last-buffer.
7119 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
7120 Call compile-internal with args highlight-regexp and grep-mode-map.
7121
7122 2003-11-23 Kim F. Storm <storm@cua.dk>
7123
7124 * subr.el (event-start, event-end): Doc fix.
7125 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
7126 (posn-area, posn-actual-col-row, posn-object): New defuns.
7127 (posn-col-row): Simplify doc. Rewrite to use cond.
7128 (posn-point): Also return buffer position for events outside text
7129 area (that info is now present in the event position).
7130
7131 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
7132 mouse-set-point so that hscroll still works now that clicks on
7133 fringes generate specific mouse events.
7134 (mouse-set-point): Note that it now works in fringes and margins
7135 too due to new semantics of posn-point in fringes and margins.
7136
7137 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
7138 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
7139
7140 2003-11-20 Kim F. Storm <storm@cua.dk>
7141
7142 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
7143 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
7144 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
7145 to 100 for icons to avoid increasing line height when shown.
7146
7147 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7148
7149 * newcomment.el (comment-normalize-vars): Initialize properly if
7150 comment-start was nil.
7151
7152 2003-11-19 Andreas Schwab <schwab@suse.de>
7153
7154 * simple.el (set-variable): Fix indentation.
7155
7156 2003-11-17 Kenichi Handa <handa@m17n.org>
7157
7158 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
7159 Fix docstring.
7160
7161 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7162
7163 * international/latin1-disp.el (latin1-display): Fix docstring.
7164
7165 2003-11-16 John Wiegley <johnw@newartisans.com>
7166
7167 * eshell/em-ls.el (eshell-ls-file): There are times with
7168 size-width is nil and uncomputed (when directories are created in
7169 dired, for example); in this case, 4 is reasonable default value,
7170 although it may caused skewed new entries (which could be avoided
7171 by returning the original value of 8 in all cases, but 99% of the
7172 time this is a waste of whitespace).
7173
7174 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
7175
7176 * cc-engine.el (c-guess-continued-construct)
7177 (c-guess-basic-syntax): Check a little more carefully if it's a
7178 function declaration when an unknown construct followed by a block
7179 is found inside a statement context. This avoids macros followed
7180 by blocks to be taken as function declarations.
7181
7182 (c-guess-continued-construct): Change the analysis of a statement
7183 continuation with a brace open to `substatement-block', for
7184 consistency with recognized statements.
7185
7186 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
7187 start is in a position so that `c-beginning-of-statement-1' jumped
7188 to the beginning of the same statement.
7189
7190 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
7191 Don't accept binary operators in the arglist if we're in a function
7192 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
7193 template recognition in cases like "if (a < b || c > d)".
7194
7195 (c-restricted-<>-arglists): New more appropriate name for
7196 `c-disallow-comma-in-<>-arglists'.
7197
7198 Accessing functions updated for the variable name change.
7199
7200 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
7201 match data could get clobbered if NOT-INSIDE-TOKEN is used.
7202
7203 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
7204 labels.
7205
7206 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
7207 instead of duplicating parts of it. This fixes bogus label
7208 recognition.
7209
7210 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
7211 of checking the context in which to apply the minimum indentation,
7212 so that it isn't enforced in e.g. namespace blocks.
7213
7214 * cc-vars.el (c-inside-block-syms): New constant used by
7215 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
7216 to somewhat reduce the risk of becoming stale.
7217
7218 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
7219 cc-cmds to cc-engine to allow use from cc-align.
7220
7221 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
7222 qualified identifiers containing "::".
7223
7224 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
7225 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
7226
7227 * cc-vars.el (c-emacs-features): Use a space in front of the name
7228 of the temporary buffer. That also avoids dumping problems in
7229 XEmacs due to undo info being left around after the buffer is killed.
7230
7231 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
7232 arglist to see if it's a K&R style declaration.
7233
7234 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
7235 before returning `knr-argdecl-intro'.
7236
7237 2003-11-16 John Wiegley <johnw@newartisans.com>
7238
7239 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
7240 field in a long-listing always 8 characters, use `size-width',
7241 which has already been computed.
7242
7243 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
7244
7245 * subr.el (minor-mode-list): Add `hs-minor-mode'.
7246
7247 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7248
7249 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
7250 Support operation while narrowed, with `diff-restrict-view'.
7251
7252 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7253
7254 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7255 Take additional optional arg NARROWFUN. For the generated functions:
7256 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
7257 include frags that arrange to check for and save narrowing state before
7258 the move and then conditionally call NARROWFUN after the move.
7259
7260 2003-11-14 John Wiegley <johnw@newartisans.com>
7261
7262 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
7263 that was optional, but obviously missing based on surrounding code.
7264
7265 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
7266 string arguments to numbers unless the whole argument was seen as
7267 a number.
7268
7269 2003-11-14 Kenichi Handa <handa@m17n.org>
7270
7271 * international/mule.el (ctext-non-standard-encodings-alist):
7272 Fix coding systems.
7273
7274 2003-11-10 Kenichi Handa <handa@m17n.org>
7275
7276 * language/kannada.el ("Kannada"): Add sample-text.
7277
7278 * language/knd-util.el (kannada-compose-region)
7279 (kannada-compose-string, kannada-post-read-conversion):
7280 Add autoload cookie.
7281
7282 * international/quail.el (quail-completion): Change the message
7283 "corresponding translations" to "corresponding characters".
7284
7285 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
7286
7287 * descr-text.el (describe-char): Fix typo.
7288
7289 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
7290
7291 These changes are to support Kannada language/script.
7292
7293 * Makefile.in (DONTCOMPILE): Add kannada.el.
7294
7295 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
7296
7297 * loadup.el: Preload kannada.el.
7298
7299 * language/ind-util.el (ucs-kannada-to-is13194-alist)
7300 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
7301 New variables.
7302
7303 * language/kannada.el: New file.
7304
7305 * language/knd-util.el: New file.
7306
7307 2003-11-07 Andreas Schwab <schwab@suse.de>
7308
7309 * progmodes/autoconf.el (autoconf-font-lock-keywords):
7310 Also highlight AH_*.
7311
7312 * xml.el (xml-parse-dtd): Fix misplaced paren.
7313
7314 2003-11-07 Kenichi Handa <handa@m17n.org>
7315
7316 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
7317
7318 2003-11-05 Juri Linkov <juri@jurta.org>
7319
7320 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
7321 (desktop-buffer-file): Use saved buffer-file-coding-system
7322 for file reading. Set auto-insert to nil to prevent automatic
7323 insertion into restored empty files.
7324
7325 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7326
7327 * files.el (risky-local-variable-p): Make second argument optional.
7328
7329 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7330
7331 * subr.el (add-hook): Fix last change.
7332
7333 2003-11-03 Eli Zaretskii <eliz@gnu.org>
7334
7335 * mail/rmail.el (rmail-convert-to-babyl-format):
7336 If base64-decode-region signals an error, catch it and silently
7337 ignore it.
7338
7339 2003-11-01 Mark A. Hershberger <mah@everybody.org>
7340
7341 * xml.el (xml-parse-region): Allow comments to appear after the
7342 topmost element has closed.
7343 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
7344 (xml-ns-expand-attr): New functions to do namespace handling.
7345 (xml-intern-attrlist): Back-compatible handling of attribute names.
7346 (xml-parse-tag): Move namespace handling to separate functions.
7347 Now produces elements in the form ((:ns . "element") (attr-list)
7348 children) instead of ('ns:element (attr-list) children).
7349 (xml-parse-attlist): Fix attribute parsing.
7350 (xml-parse-dtd): Change parsing so that it produces strings
7351 instead of interned symbols.
7352
7353 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
7354
7355 * dired.el (dired-ls-sorting-switches): Doc fix.
7356
7357 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
7358
7359 * emacs-lisp/rx.el (rx-or): Fix the case of
7360 "(rx (and ?a (or ?b ?c) ?d))".
7361
7362 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
7363
7364 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
7365 (texinfo-format-region): Use it.
7366 (texinfo-format-buffer-1): Ditto.
7367
7368 2003-11-01 Alan Mackenzie <acm@muc.de>
7369
7370 Changes to allow scrolling whilst in isearch mode:
7371 * isearch.el (isearch-unread-key-sequence): New function,
7372 extracted from isearch-other-meta-char.
7373 (top level): (put 'foo 'isearch-scroll) on all Emacs's
7374 "scrollable" standard functions.
7375 (isearch-allow-scroll): New customizable variable.
7376 (isearch-string-out-of-window, isearch-back-into-window)
7377 (isearch-reread-key-sequence-naturally)
7378 (isearch-lookup-scroll-key): New functions.
7379 (isearch-other-meta-char): Doc string and functionality enhanced.
7380 Now accepts a prefix argument.
7381 (isearch-lazy-highlight-window-end): New variable.
7382 (isearch-lazy-highlight-new-loop): Pay attention to the window's
7383 end (thru isearch-lazy-highlight-window-end), not only its start.
7384
7385 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
7386 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
7387 (universal-argument, universal-argument-more, negative-argument)
7388 (digit-argument, universal-argument-other-key): Minor changes.
7389
7390 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7391
7392 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
7393 recursively if the last message is deleted, thus avoiding an
7394 infinite loop.
7395
7396 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7397
7398 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
7399 (tex-main-file): Don't add .tex if the extension is already present.
7400 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
7401
7402 2003-10-29 Lute Kamstra <lute@gnu.org>
7403
7404 * progmodes/octave-inf.el (inferior-octave-prompt):
7405 Recognize version number in prompt.
7406
7407 2003-10-28 Dave Love <fx@gnu.org>
7408
7409 * international/characters.el: Fix some Unicode ranges.
7410
7411 2003-10-28 Kenichi Handa <handa@m17n.org>
7412
7413 * disp-table.el (standard-display-8bit)
7414 (standard-display-default, standard-display-ascii)
7415 (standard-display-g1, standard-display-graphic)
7416 (standard-display-underline): Assure that standard-display-table
7417 is a display table.
7418
7419 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
7420
7421 * simple.el (reindent-then-newline-and-indent): Delete space *after*
7422 reindenting the first line.
7423
7424 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
7425
7426 * wid-edit.el (widget-default-delete): Always delete child widgets.
7427
7428 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7429
7430 * newcomment.el (comment-indent): Don't call indent-according-to-mode
7431 if the line has code.
7432 Don't try to line up with something that's too far left.
7433
7434 * progmodes/octave-mod.el (octave-comment-start): Simplify.
7435 (octave-mode-syntax-table): Add % as a comment starter.
7436 (octave-point): Remove.
7437 (octave-in-comment-p, octave-in-string-p)
7438 (octave-not-in-string-or-comment-p, calculate-octave-indent)
7439 (octave-blink-matching-block-open, octave-auto-fill):
7440 Use line-(beginning|end)-position instead.
7441
7442 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
7443
7444 * emacs-lisp/authors.el (authors-aliases): Add correct realname
7445 for Francesco Potort\e,Al\e(B.
7446
7447 2003-10-23 Dave Love <fx@gnu.org>
7448
7449 * international/mule-cmds.el (locale-charset-to-coding-system):
7450 Don't rely on nil being a coding system.
7451
7452 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
7453 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
7454 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
7455
7456 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
7457
7458 * gdb-ui.el (gdb-current-language): New variable.
7459 (gdb-update-flag): Remove variable.
7460 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
7461 (gdb-take-last-elt): Remove function.
7462 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
7463 (gdb-post-prompt): Check for variable object changes here.
7464
7465 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
7466 object changes in gdb-ui.el.
7467
7468 2003-10-21 Richard M. Stallman <rms@gnu.org>
7469
7470 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
7471
7472 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
7473 Don't check for foo*/ wildcard form here.
7474 (insert-directory): Recognize foo*/ as a wildcard.
7475 Separate wildcard-regexp variable from the arg, wildcard.
7476
7477 * subr.el (add-hook): Correctly detect when make-local-hook was used.
7478 (remove-hook): Correctly handle strange cases about local hooks.
7479
7480 2003-10-21 David Ponce <david@dponce.com>
7481
7482 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
7483 argument REAL, to return a real number instead of a rounded
7484 integer value. Define as inline function.
7485 (ruler-mode-right-fringe-cols): Likewise.
7486 (ruler-mode-scroll-bar-cols): New function.
7487 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
7488 (ruler-mode-right-scroll-bar-cols): Likewise.
7489 (ruler-mode-space): New function.
7490 (ruler-mode-ruler): Use it. Handle variations of fringe style,
7491 scroll bar mode and margins in a more robust way.
7492
7493 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
7494
7495 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
7496 (antlr-c-init-language-vars): New function.
7497 (antlr-mode): Use it with cc-mode before v5.29.
7498 (antlr-c-common-init): Don't set some local vars here.
7499 (antlr-mode): Set them here.
7500 (antlr-c-forward-sws): New function alias.
7501 (antlr-mode): Redefine with cc-mode before v5.30.
7502 (antlr-skip-sexps): Use it.
7503 (antlr-skip-exception-part): Ditto.
7504 (antlr-skip-file-prelude): Ditto.
7505 (antlr-outside-rule-p): Ditto.
7506 (antlr-end-of-body): Ditto.
7507 (antlr-option-kind): Ditto.
7508 (antlr-insert-option-area): Ditto.
7509 (antlr-file-dependencies): Ditto.
7510
7511 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7512
7513 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
7514 Move backward only if point was not inside an entry.
7515
7516 2003-10-21 Richard M. Stallman <rms@gnu.org>
7517
7518 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
7519
7520 2003-10-21 Juri Linkov <juri@jurta.org>
7521
7522 * compare-w.el: Automatically skip non-matching text to resync.
7523 (compare-windows-whitespace): Doc fix.
7524 (compare-windows-sync, compare-windows-sync-string-size)
7525 (compare-windows-recenter, compare-ignore-whitespace)
7526 (compare-windows-highlight, compare-windows-face): New variables.
7527 (compare-windows): Use compare-windows-sync.
7528 (compare-windows-highlight, compare-windows-dehighlight)
7529 (compare-windows-sync-regexp)
7530 (compare-windows-sync-default-function): New functions.
7531
7532 2003-10-21 Juri Linkov <juri@jurta.org>
7533
7534 * diff.el (diff-parse-differences): Don't visit the files now;
7535 instead, just record the error locus.
7536
7537 2003-10-21 Dave Love <fx@gnu.org>
7538
7539 * progmodes/cfengine.el: New file.
7540
7541 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7542
7543 * complete.el (PC-do-completion): Do not forget to use `pred' as the
7544 default-directory when completing file names.
7545
7546 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
7547
7548 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
7549 followed by the word `face', it gets treated as a face, even if
7550 it is also defined as a variable or a function.
7551
7552 2003-10-20 Dave Love <fx@gnu.org>
7553
7554 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7555 Avoid incf in macro expansion.
7556
7557 2003-10-20 John Paul Wallington <jpw@gnu.org>
7558
7559 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
7560 `evenp' so we don't implicitly require cl library at runtime.
7561
7562 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
7563
7564 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
7565 (help-make-xrefs): Only make cross-references for faces if
7566 preceded or followed by the word `face'. Do not make a
7567 cross-reference for variables without variable documentation,
7568 unless preceded by the word `variable' or `option'. Update doc
7569 string accordingly.
7570
7571 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
7572
7573 * progmodes/hideshow.el: Rewrite one-armed `if'
7574 constructs using either `when' or `unless'.
7575 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
7576
7577 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
7578
7579 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
7580 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
7581 instead of 12x12.
7582
7583 2003-10-16 Eli Zaretskii <eliz@gnu.org>
7584
7585 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
7586 message while converting to Babyl.
7587
7588 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
7589
7590 * allout.el (allout-mode): Doc fix.
7591
7592 2003-10-16 Lute Kamstra <lute@gnu.org>
7593
7594 * subr.el (force-mode-line-update): Fix docstring.
7595
7596 2003-10-14 Dave Love <fx@gnu.org>
7597
7598 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
7599 (default-input-method): Add :link, improve :type.
7600 (locale-charset-language-names): Fix utf-8 pattern.
7601 (locale-charset-match-p, locale-charset-alist)
7602 (locale-charset-to-coding-system): New.
7603 (set-locale-environment): Deal with codeset part of locale specs.
7604
7605 2003-10-14 Lute Kamstra <lute@gnu.org>
7606
7607 * fringe.el (fringe-mode): Use active voice in docstring.
7608 (set-fringe-style): Ditto.
7609
7610 2003-10-13 Lute Kamstra <lute@gnu.org>
7611
7612 * fringe.el (fringe-mode): Fix docstring.
7613 (set-fringe-style): Ditto.
7614
7615 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
7616
7617 * ediff-mult.el (ediff-filegroup-action):
7618 Use ediff-default-filtering-regexp.
7619
7620 * ediff-util.el (ediff-recenter): Don't call
7621 ediff-restore-highlighting twice.
7622 (ediff-select-difference): Set current difference.
7623 (ediff-unselect-and-select-difference): Add comment.
7624
7625 * ediff.el (ediff-directories,ediff-directory-revisions)
7626 (ediff-directories3,ediff-merge-directories)
7627 (ediff-merge-directories-with-ancestor)
7628 (ediff-merge-directory-revisions)
7629 (ediff-merge-directory-revisions-with-ancestor):
7630 Use ediff-default-filtering-regexp.
7631
7632 2003-10-12 Andreas Schwab <schwab@suse.de>
7633
7634 * international/mule-cmds.el (locale-charset-language-names):
7635 Simplify regex by removing unused grouping.
7636
7637 2003-10-10 Dave Love <fx@gnu.org>
7638
7639 * bindings.el: Don't bind stop.
7640
7641 2003-10-08 Miles Bader <miles@gnu.org>
7642
7643 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
7644 face instead of attempting to emulate it.
7645
7646 2003-10-07 Kenichi Handa <handa@m17n.org>
7647
7648 * international/mule-diag.el (list-coding-systems-1): List coding
7649 systems that are loaded automatically.
7650
7651 * international/code-pages.el (iso-8859-11): Add autoload cookie.
7652
7653 * international/mule.el (autoload-coding-system): New function.
7654
7655 2003-10-07 Andreas Schwab <schwab@suse.de>
7656
7657 * log-edit.el (log-edit-changelog-entries): Prefer local value of
7658 change-log-default-name in the buffer visiting the file.
7659
7660 2003-10-06 Dave Love <fx@gnu.org>
7661
7662 * files.el (find-file-hook): Customize.
7663 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
7664
7665 * bindings.el (completion-ignored-extensions): Remove .log.
7666 (global-map): Add again, open, stop keys.
7667
7668 2003-10-05 Richard M. Stallman <rms@gnu.org>
7669
7670 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
7671 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
7672 Use sh-modify directly.
7673 (sh-select): Use sh-append, not eval.
7674
7675 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
7676
7677 * info.el (Info-following-node-name): New function.
7678
7679 * loadhist.el (unload-feature-special-hooks):
7680 Rename from loadhist-hook-functions.
7681 (loadhist-hook-functions): Now an alias.
7682
7683 2003-10-04 Eli Zaretskii <eliz@gnu.org>
7684
7685 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
7686 file-name clashes on 8+3 filesystems.
7687
7688 * Makefile.in (DONTCOMPILE, bootstrap-clean):
7689 Rename loaddefs-boot.el to ldefs-boot.el
7690
7691 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
7692 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
7693
7694 2003-10-03 Lute Kamstra <lute@gnu.org>
7695
7696 * info.el (Info-mode): Revert previous change.
7697 (Info-escape-percent): New function.
7698 (Info-fontify-node): Use it.
7699
7700 2003-10-02 Andreas Schwab <schwab@suse.de>
7701
7702 * loaddefs-boot.el: Regenerated.
7703
7704 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
7705
7706 * ffap.el: Remove defadvice related code from CVS since `complete'
7707 provides a `PC-completion-as-file-name-predicate' variable that
7708 ffap can override.
7709
7710 2003-10-02 Kenichi Handa <handa@m17n.org>
7711
7712 * international/utf-8.el (ccl-decode-mule-utf-8):
7713 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
7714
7715 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
7716 * international/subst-big5.el: Likewise.
7717 * international/subst-gb2312.el: Likewise.
7718 * international/subst-ksc.el: Likewise.
7719
7720 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
7721
7722 * calendar/calendar.el (increment-calendar-month)
7723 (calendar-leap-year-p, calendar-absolute-from-gregorian)
7724 (generate-calendar, calendar-read-date, calendar-interval)
7725 (calendar-day-of-week): Handle years BC.
7726 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
7727
7728 2003-10-01 Dave Love <fx@gnu.org>
7729
7730 * language/cyrillic.el (cp1251): Alias for windows-1251.
7731
7732 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
7733 bootstrap.
7734
7735 2003-10-01 Lute Kamstra <lute@gnu.org>
7736
7737 * files.el: Fix typo.
7738 * imenu.el (imenu--generic-function): Docstring fix.
7739
7740 2003-09-30 Richard M. Stallman <rms@gnu.org>
7741
7742 * dired.el (dired-mode): Handle dired-directory as a list.
7743
7744 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
7745
7746 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
7747
7748 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
7749
7750 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
7751 Replace gud-display with gud-watch.
7752 (gud-speedbar-buttons): Add stuff for watching expressions
7753 in the speedbar when using M-x gdba. Use dolist on old part
7754 of this function.
7755
7756 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
7757 (gdb-update-flag): New variables.
7758 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
7759 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
7760 (gud-watch, gdb-var-create-handler) : New functions.
7761 (gdb-var-list-children, gdb-var-list-children-handler)
7762 (gdb-var-create-regexp, gdb-var-update-regexp)
7763 (gdb-var-list-children-regexp): New constants.
7764 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
7765 (gdb-annotation-rules): Reduce annotation set (level 3).
7766 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
7767 (gdb-post-prompt): Don't update GDB buffers every time speedbar
7768 updates.
7769 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
7770 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
7771 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
7772 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
7773 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
7774 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
7775 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
7776 (gud-display, gud-display1)
7777 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
7778 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
7779 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
7780 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
7781 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
7782 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
7783 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
7784 (gdb-display-display-buffer, gdb-toggle-display)
7785 (gdb-delete-display, gdb-expressions-popup-menu)
7786 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
7787 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
7788 to display buffer.
7789
7790 2003-09-30 Richard M. Stallman <rms@gnu.org>
7791
7792 * progmodes/ada-mode.el (ada-mode): Don't use advice.
7793 Instead, set which-func-functions.
7794
7795 * progmodes/which-func.el (which-func-modes): Add ada-mode.
7796 (which-func-functions): New variable.
7797 (which-function): Use that.
7798
7799 * info.el (Info-mode): Double each `%' in header line.
7800
7801 * emacs-lisp/lisp-mnt.el (lm-with-file):
7802 When FILE is nil, run BODY in current buffer.
7803
7804 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
7805
7806 * help.el (describe-mode): Start with a brief list of minor modes.
7807 Find them thru minor-mode-list so as to find them all.
7808 Show them in alphabetical order.
7809
7810 * mail/sendmail.el (mail-aliases): Doc fix.
7811
7812 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
7813
7814 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7815
7816 * mail/rmailsum.el (rmail-make-summary-line-1):
7817 Change comma after last label to a space.
7818 (rmail-summary-font-lock-keywords): Adapt to that change.
7819
7820 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
7821
7822 * progmodes/scheme.el (scheme-mode-variables): When setting
7823 `font-lock-defaults', also specify that "#" should
7824 be interpreted with `word' syntax.
7825 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
7826
7827 2003-09-30 Lars Hansen <larsh@math.ku.dk>
7828
7829 * desktop.el: A lot of comments updated.
7830 (desktop-save-mode): Minor mode introduced.
7831 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
7832 (desktop-load-default): Function made obsolete.
7833 (desktop-locals-to-save): Variable made customizable.
7834 (desktop-read): Optional parameter `dirname' added.
7835 (desktop-change-dir, desktop-revert): Parameter `dirname' in
7836 `desktop-read' used.
7837 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
7838
7839 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
7840
7841 * whitespace.el (whitespace-clean-msg): Add user customizable message
7842 for displaying ``clean'' output.
7843 (whitespace-buffer): Use `whitespace-clean-msg'.
7844 (whitespace-global-mode): Fix typo.
7845
7846 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
7847
7848 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
7849
7850 2003-09-29 Lute Kamstra <lute@gnu.org>
7851
7852 * bindings.el (mode-line-modes): Remove superfluous :propertize
7853 construct in initialization.
7854 (mode-line-position): Change cons cell into proper list in
7855 initialization.
7856
7857 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
7858
7859 * international/mule.el (decode-coding-inserted-region): Use car
7860 of the return value of find-operation-coding-system.
7861
7862 2003-09-29 Kenichi Handa <handa@m17n.org>
7863
7864 * descr-text.el (describe-char): Fix previous change.
7865
7866 2003-09-28 Kenichi Handa <handa@m17n.org>
7867
7868 * descr-text.el (describe-char-display): New function.
7869 (describe-char): Pay attention to display table on describing how
7870 a character is displayed.
7871
7872 * international/mule-cmds.el (encoded-string-description):
7873 Prepend "0x" to each encoded byte.
7874
7875 2003-09-28 Andreas Schwab <schwab@suse.de>
7876
7877 * find-file.el (ff-special-constructs): Add autoload cookie.
7878
7879 2003-09-28 Kevin Ryde <user42@zip.com.au>
7880
7881 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
7882 makeinfo appends to duplicate index entries.
7883
7884 2003-09-28 Eli Zaretskii <eliz@gnu.org>
7885
7886 * dired-x.el (dired-clean-tex): Doc fix.
7887
7888 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
7889 using a Chinese tutorial.
7890
7891 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7892
7893 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
7894 between "MAIL FROM:" and "RCPT TO:" and the following address.
7895
7896 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7897
7898 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
7899
7900 2003-09-28 David Ponce <david@dponce.com>
7901
7902 * recentf.el (recentf-initialize-file-name-history): New defcustom.
7903 (recentf-load-list): When `recentf-initialize-file-name-history'
7904 is non-nil, initialize an empty `file-name-history' with the
7905 recent list.
7906
7907 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
7908
7909 * man.el (Man-default-man-entry): Remove the leading `*' from the
7910 word at point.
7911
7912 2003-09-26 Lute Kamstra <lute@gnu.org>
7913
7914 * bindings.el (mode-line-position): Mention size indication in
7915 docstring.
7916
7917 2003-09-26 Andre Spiegel <spiegel@gnu.org>
7918
7919 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
7920
7921 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
7922 because it's autoloaded now.
7923
7924 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
7925
7926 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
7927 (sh-font-lock-keywords, sh-feature): Fix previous change of
7928 sh-feature to avoid infloop with sh-font-lock-keywords.
7929
7930 2003-09-25 Kim F. Storm <storm@cua.dk>
7931
7932 * frame.el (frame-current-scroll-bars): New defun.
7933
7934 * window.el (window-current-scroll-bars): New defun.
7935
7936 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7937
7938 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
7939 cause errors when the state cache contains info on parts that have
7940 been narrowed out.
7941
7942 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7943
7944 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
7945 `c-setup-paragraph-variables' has to be used when this variable is
7946 changed; it doesn't work to reinitialize the mode since that
7947 typically clobbers the variable.
7948
7949 * progmodes/cc-styles.el (c-setup-paragraph-variables):
7950 Make it interactive.
7951
7952 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7953
7954 * progmodes/cc-fonts.el (c-font-lock-declarations):
7955 Fix recognition of constructors and destructors for classes whose
7956 names are matched by `*-font-lock-extra-types'.
7957
7958 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
7959 followed by an identifier in C++ then it's a type.
7960
7961 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7962
7963 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
7964 problem that primarily affected XEmacs. Don't use faces to find
7965 unterminated strings since Emacs and XEmacs fontify strings
7966 differently - this function should now work better in XEmacs.
7967
7968 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7969
7970 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
7971 `expand-abbrev' workaround which caused braces to misbehave inside
7972 macros.
7973
7974 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
7975 handling. This bug could cause interactive font locking to bail out.
7976
7977 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7978
7979 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
7980 Handle paren-style types in Pike. Also fixed some cases of
7981 insufficient handling of unbalanced parens.
7982
7983 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
7984
7985 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
7986 common shell prompts that are not common filename or URL characters.
7987 (ffap-file-at-point): Use the new regexp to strip the prompts from
7988 the file names. This is an issue mostly for user prompts that
7989 don't have a trailing space and find-file-at-point is invoked from
7990 within a shell inside Emacs.
7991
7992 2003-09-24 Andre Spiegel <spiegel@gnu.org>
7993
7994 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
7995 stamps numerically, rather than textually.
7996
7997 2003-09-24 Kenichi Handa <handa@m17n.org>
7998
7999 * language/devan-util.el (devanagari-post-read-conversion):
8000 * language/mlm-util.el (malayalam-post-read-conversion):
8001 * language/tml-util.el (tamil-post-read-conversion):
8002 Add autoload cookie.
8003
8004 * international/utf-8.el (utf-8-post-read-conversion):
8005 Call post-read-conversion functions for Devanagari, Malayalam,
8006 and Tamil.
8007
8008 2003-09-23 Dave Love <fx@gnu.org>
8009
8010 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
8011
8012 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
8013
8014 * progmodes/gud.el (perldb): Add gud-until to list of commands.
8015 Update gud-remove.
8016
8017 2003-09-22 Richard M. Stallman <rms@gnu.org>
8018
8019 * progmodes/sh-script.el (sh-mode-default-syntax-table):
8020 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
8021 (sh-mode-syntax-table-input): New variable.
8022 (sh-require-final-newline): Don't use eval.
8023 (sh-builtins, sh-leading-keywords, sh-other-keywords)
8024 (sh-variables, sh-font-lock-keywords): Don't use eval.
8025 (sh-set-shell): When setting require-final-newline,
8026 treat value = `require-final-newline' as don't change it.
8027 Set sh-mode-syntax-table locally based on
8028 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
8029
8030 * progmodes/compile.el (compile-internal):
8031 Call compilation-set-window-height before setting window start.
8032
8033 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
8034
8035 * emacs-lisp/bytecomp.el (byte-compile-log-file):
8036 Clear out byte-compile-last-warned-form.
8037
8038 2003-09-22 Richard M. Stallman <rms@gnu.org>
8039
8040 * woman.el (woman-file-name, woman-follow-word):
8041 If current-word returns nil, use "".
8042
8043 * simple.el (eval-expression): Bind standard-output in to-buffer case.
8044
8045 2003-09-22 Richard M. Stallman <rms@gnu.org>
8046
8047 * emacs-lisp/lisp-mnt.el (lm-with-file):
8048 Don't visit the file, just use insert-file-contents in temp buffer.
8049
8050 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
8051
8052 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
8053 Add surrounding \\( and \\) around the header, as in
8054 for lm-history-header 'Change Log\\|History'.
8055
8056 2003-09-22 John Paul Wallington <jpw@gnu.org>
8057
8058 * progmodes/ld-script.el: Add Commentary section,
8059 minor cleanup of file header.
8060 (ld-script-font-lock-keywords): Doc fix.
8061 (toplevel): Provide `ld-script' feature.
8062
8063 2003-09-21 Kim F. Storm <storm@cua.dk>
8064
8065 * scroll-bar.el (set-scroll-bar-mode): Initialize to
8066 new built-in variable default-frame-scroll-bars.
8067 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
8068 scroll-bar-mode; notably, use it instead of t when we toggle
8069 scroll-bars on.
8070 (toggle-scroll-bar): Use default-frame-scroll-bars.
8071
8072 2003-09-19 Masatake YAMATO <jet@gyve.org>
8073
8074 * pcvs.el (cvs-do-removal): Change the prompt depending on
8075 `filter' value.
8076
8077 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8078
8079 * startup.el (command-line-1): Stop startup-echo-area-message
8080 being hidden by "Loading image..." message.
8081 (use-fancy-splash-screens-p, display-splash-screen):
8082 Move display-graphic-p test from latter to former.
8083
8084 * progmodes/sh-script.el (sh-font-lock-keywords):
8085 Highlight escaped EOLs differently from other backslash constructs.
8086
8087 2003-09-19 Richard M. Stallman <rms@gnu.org>
8088
8089 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
8090 New functions.
8091 (edebug-enter, edebug-outside-excursion): Use them.
8092
8093 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
8094 Fix the condition for whether to print "In WHERE".
8095
8096 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
8097
8098 * finder.el (finder-mode-hook): New variable.
8099 (finder-mode): Run hook finder-mode-hook
8100
8101 2003-09-18 Masatake YAMATO <jet@gyve.org>
8102
8103 * progmodes/ebrowse.el: Fix broken magic autoload comments.
8104
8105 2003-09-17 Mario Lang <mlang@delysid.org>
8106
8107 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
8108 "p %e" to actually print the value in the GUD buffer.
8109
8110 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
8111
8112 From David Ponce <david.ponce@wanadoo.fr>:
8113 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
8114 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
8115 from loaddefs-boot.el if necessary.
8116
8117 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
8118
8119 * progmodes/gud.el (gud-find-class): Make jdb work again since
8120 cc-mode changed the syntactic information.
8121
8122 2003-09-15 David Ponce <david@dponce.com>
8123
8124 * recentf.el: (recentf-exclude): Accept predicates too.
8125 (recentf-file-readable-p): New function.
8126 (recentf-include-p): Handle predicates in recentf-exclude.
8127 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
8128 (recentf-cleanup): Likewise.
8129 (recentf-save-list): Use write-file to handle backup of
8130 recentf-save-file.
8131
8132 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
8133
8134 * loaddefs-boot.el: Renamed from `loaddefs.el'
8135 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
8136 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
8137 necessary.
8138
8139 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
8140
8141 * electric.el (Electric-pop-up-window): For the `one-window' case,
8142 no longer disconcertingly move point in the original buffer.
8143
8144 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8145
8146 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
8147
8148 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
8149
8150 * dired.el (dired-mode-map): Fix typo.
8151
8152 2003-09-11 Richard M. Stallman <rms@gnu.org>
8153
8154 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
8155
8156 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8157
8158 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
8159 the function is less noisy. Now only `kill-buffer' can ask questions.
8160
8161 2003-09-10 Mario Lang <mlang@delysid.org>
8162
8163 * battery.el: Update Commentary and Copyright.
8164 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
8165 appear due to wrong ordering of the expressions in `or'.
8166
8167 2003-09-09 Lute Kamstra <lute@gnu.org>
8168
8169 * misc.el (upcase-char): Fix docstring.
8170 (zap-up-to-char): New command.
8171
8172 2003-09-08 David Ponce <david@dponce.com>
8173
8174 Ensure that recentf correctly updates the menu bar.
8175 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
8176 (recentf-menu-bar): New function.
8177 (recentf-clear-data): Use it
8178 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
8179 of easy-menu-change.
8180
8181 2003-09-08 Lute Kamstra <lute@gnu.org>
8182
8183 * simple.el (size-indication-mode): New.
8184 * bindings.el (mode-line-position): Add buffer size indicator.
8185
8186 2003-09-04 Mario Lang <mlang@delysid.org>
8187
8188 * battery.el (battery-linux-proc-acpi): New function.
8189 (battery-status-function): Modify default value calculation to also
8190 check for availability of ACPI.
8191 (battery-echo-area-format): Ditto.
8192 (battery-mode-line-format): Ditto.
8193
8194 2003-09-06 Dave Love <fx@gnu.org>
8195
8196 * ielm.el (ielm-mode-hook): Add :options.
8197
8198 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
8199 (eldoc-print-current-symbol-info): Use it.
8200
8201 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
8202
8203 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
8204 being displayed in GUD buffer.
8205 (gdb-idle-input-queue): Remove var. Use just one queue.
8206 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
8207 Remove functions. Use just one queue.
8208 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
8209 (gdb-invalidate-assembler, gdb-get-current-frame):
8210 Modify functions. Use just one queue.
8211
8212 2003-09-04 Dave Love <fx@gnu.org>
8213
8214 * cus-start.el: Add blink-cursor-alist.
8215
8216 * ruler-mode.el (ruler-mode-fill-column-char)
8217 (ruler-mode-current-column-char): Use char-displayable-p,
8218 not window-system.
8219
8220 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
8221
8222 * language/european.el (windows-1252): Move from code-pages.
8223
8224 * language/cyrillic.el ("Windows-1251"): Delete.
8225 ("Bulgarian", "Belarusian"): Remove `features'.
8226 (windows-1251): Move from code-pages.
8227
8228 * international/mule-diag.el (non-iso-charset-alist):
8229 Remove `codepage' stuff.
8230 (print-designation, list-coding-systems-1): Output fixes.
8231
8232 * international/code-pages.el (cp-make-translation-table)
8233 (cp-valid-codes): Made defsubsts.
8234 (cp-fix-safe-chars): Delete.
8235 (mule-diag): Don't require.
8236 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
8237 (top-level): Check for defined coding system when defining
8238 cp... aliases. Change w32-add-charset-info test to avoid warning.
8239 (non-iso-charset-alist): Defvar when compiling.
8240 (cp-make-coding-system): Doc fix.
8241
8242 2003-09-02 Jason Rumney <jasonr@gnu.org>
8243
8244 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
8245 line-ends from CVS before doing conversion.
8246
8247 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
8248
8249 * calendar/diary-lib.el (diary-header-line-flag)
8250 (diary-header-line-format): New variables.
8251 (list-diary-entries): Use them to set header line in simple diary.
8252
8253 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
8254 other than font-lock-string-face to highlight backslashes.
8255
8256 2003-09-01 Jason Rumney <jasonr@gnu.org>
8257
8258 * international/titdic-cnv.el (tit-read-key-value): Include \r in
8259 regexp.
8260
8261 2003-09-01 Dave Love <fx@gnu.org>
8262
8263 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
8264
8265 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
8266 and :help; also line and column numbers labels.
8267
8268 * international/mule-util.el (char-displayable-p): Move from
8269 latin1-disp, rename and autoload.
8270
8271 * international/latin1-disp.el (latin1-char-displayable-p):
8272 Now obsolete alias. Replace uses with char-displayable-p.
8273 (latin1-display-ucs-per-lynx): Fix last change.
8274
8275 * international/mule-cmds.el (standard-display-european-internal):
8276 Don't use char code for Latin-1 NBSP.
8277 <XFree86 4>: Unfrob NBSP display table. Set display table to use
8278 U+2018, U+2019 for `'.
8279 (select-safe-coding-system): Message fix.
8280
8281 2003-09-01 Kenichi Handa <handa@m17n.org>
8282
8283 * international/fontset.el (setup-default-fontset): For Thai
8284 font, specify "*" family.
8285
8286 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8287
8288 * progmodes/compile.el (previous-error): Accept a prefix
8289 argument, similarly to next-error.
8290
8291 2003-08-31 Masatake YAMATO <jet@gyve.org>
8292
8293 * pcvs.el (cvs-do-removal): Use = instead of eq to check
8294 the number of files. Bind the number of files to a local
8295 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
8296
8297 2003-08-30 Eli Zaretskii <eliz@gnu.org>
8298
8299 * vc-hooks.el (vc-make-version-backup): Fix the change made on
8300 2003-07-26: msdos-long-file-names is a function, not a variable.
8301
8302 2003-08-29 Richard M. Stallman <rms@gnu.org>
8303
8304 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
8305 Do nothing with mail-personal-alias-file if it is nil.
8306
8307 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
8308 Do nothing if mail-personal-alias-file is nil.
8309
8310 * term.el (term-exec-1): Bind coding-system-for-read.
8311
8312 * dired.el (dired-mouse-find-file-other-window):
8313 Use dired-view-command-alist here, as in dired-view-file.
8314 (dired-view-command-alist): Use %s to substitute file name.
8315 Handle .ps_pages, .eps, .jpg, .gif, .png.
8316
8317 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8318
8319 * info.el (Info-mode-map): Bind S-tab and <backtab> to
8320 `Info-prev-reference', instead of M-tab.
8321
8322 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
8323
8324 * simple.el (blink-matching-open): Work correctly on chars that
8325 are designated as parens through the syntax-table text property.
8326
8327 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
8328
8329 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
8330 line break position in the middle of a non-kinsoku (e.g. latin)
8331 word, making it skip until either a space or a character with
8332 category "|".
8333 (kinsoku-longer): Test for end of buffer.
8334
8335 2003-08-28 Eli Zaretskii <eliz@gnu.org>
8336
8337 * mail/rmail.el (rmail-convert-to-babyl-format):
8338 Detect quoted-printable- and base64-encoded messages and decode them
8339 automatically. Set the message's encoding from the charset=
8340 header, if any. Decode base64-encoded messages in Mail format as well.
8341
8342 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8343
8344 * mail/smtpmail.el: Fix previous change.
8345 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
8346 calling smtpmail-via-smtp.
8347 (smtpmail-via-smtp): Add fall-back values for envelope-from.
8348
8349 2003-08-26 John Paul Wallington <jpw@gnu.org>
8350
8351 * image.el (image-jpeg-p): Don't search beyond length of data.
8352
8353 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8354
8355 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
8356 misfeature in `expand-abbrev' which caused electric keywords like
8357 "else" to disappear if an open brace was typed directly afterwards.
8358
8359 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8360
8361 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
8362 mandatory in `define-widget'.
8363
8364 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
8365 Don't align the operators "!=", "<=" and ">=" as assignment operators.
8366
8367 (c-assignment-operators): New language constant that only contains
8368 the assignment operators.
8369
8370 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
8371
8372 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8373
8374 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8375 Safeguard against unbalanced sexps.
8376
8377 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
8378
8379 * version.el (emacs-version): Check for gtk. Include gtk version info.
8380
8381 2003-08-25 John Paul Wallington <jpw@gnu.org>
8382
8383 * man.el (Man-default-man-entry): Don't whizz past the section
8384 number before looking for it.
8385
8386 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
8387
8388 * progmodes/gud.el (gud-display-line): Don't set window-point if
8389 source buffer is not visible. (Only happens with M-x gdba.)
8390
8391 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
8392 documentation.
8393 (gdb-source, gdb-source-info): Update to assembler unnecessary
8394 as its done after each GDB command anyway.
8395 (gdb-pre-prompt): Use with-current-buffer.
8396 (gdb-insert-field): Add help-echo text.
8397 (gdb-invalidate-assembler): Re-display of assembler now done in
8398 gdb-info-breakpoints-custom.
8399 (gdb-info-breakpoints-custom): Force re-display of assembler to
8400 happen *after* update of breakpoints buffer.
8401 (gdb-display-source-buffer): Don't choke if gdb-source-window
8402 isn't visible.
8403 (gdb-put-string, gdb-put-arrow): Remove free variables.
8404
8405 2003-08-24 John Paul Wallington <jpw@gnu.org>
8406
8407 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
8408
8409 * man.el (Man-default-man-entry): Strip text properties when
8410 snarfing parts of entry because `format' preserves properties.
8411
8412 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8413
8414 * files.el (file-newest-backup): Use `expand-file-name'.
8415
8416 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
8417 Allow the diary to pop up a new frame, if needed.
8418
8419 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
8420 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
8421 (smtpmail-send-it): Make treatment of envelope-from consistent with
8422 sendmail.el.
8423
8424 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
8425 (sh-leading-keywords): Add the bash `time' reserved word.
8426 (sh-variables): Add some bash variables.
8427 (sh-add-completer): Fix nil branch of case statement.
8428
8429 2003-08-24 Masatake YAMATO <jet@gyve.org>
8430
8431 * progmodes/ld-script.el: New file.
8432
8433 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
8434
8435 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
8436
8437 2003-08-23 Andre Spiegel <spiegel@gnu.org>
8438
8439 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
8440 Better explain obsolescence, and what to use instead.
8441
8442 2003-08-23 Masatake YAMATO <jet@gyve.org>
8443
8444 * pcvs.el (cvs-do-removal): Show the deleted file name
8445 on the prompt.
8446
8447 2003-08-20 Dave Love <fx@gnu.org>
8448
8449 * international/mule.el (make-coding-system)
8450 (set-buffer-file-coding-system): Doc fix.
8451
8452 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
8453
8454 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
8455
8456 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
8457
8458 * international/utf-16.el: Add mime-text-unsuitable coding system
8459 properties.
8460
8461 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
8462
8463 * cus-edit.el: Add some :links.
8464 (bib): Remove.
8465
8466 * textmodes/bib-mode.el (bib): Add :group external.
8467
8468 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
8469
8470 * wid-edit.el (widget-echo-help): Make it handle expressions that
8471 evaluate to strings.
8472
8473 2003-08-18 Michael Mauger <mmaug@yahoo.com>
8474
8475 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
8476
8477 Simplify selection of SQL products to define highlighting and
8478 interactive mode. Includes detailed instructions on adding
8479 support for new products.
8480
8481 * progmodes/sql.el (sql-product): New variable. Identifies SQL
8482 product for use in highlighting and interactive mode.
8483 (sql-interactive-product): New variable. SQL product for
8484 sql-interactive-mode.
8485 (sql-product-support): New variable. Specifies product-specific
8486 parameters to drive highlighting and interactive mode.
8487 (sql-imenu-generic-expression): Add more object types.
8488 (sql-sqlite-options): Correct comment.
8489 (sql-ms-program): Use "osql" rather than "isql".
8490 (sql-prompt-regexp, sql-prompt-length): Update comment.
8491 (sql-mode-menu): Add "Start SQLi session" entry.
8492 Replace Highlighting submenu with Product menu. Fix Send Region entry.
8493 (sql-mode-abbrev-table): Add abbreviations. Support of
8494 SYSTEM-FLAG on define-abbrev. Support was removed with last
8495 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
8496 (sql-mode-font-lock-object-name): Add font-lock pattern for object
8497 names.
8498 (sql-mode-ansi-font-lock-keywords): Set as default value.
8499 (sql-mode-oracle-font-lock-keywords): Set as default value.
8500 Support Oracle 9i keywords.
8501 (sql-mode-postgres-font-lock-keywords): Set as default value.
8502 (sql-mode-linter-font-lock-keywords): Set as default value.
8503 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
8504 SQLServer 2000.
8505 (sql-mode-sybase-font-lock-keywords)
8506 (sql-mode-interbase-font-lock-keywords)
8507 (sql-mode-sqlite-font-lock-keywords)
8508 (sql-mode-strong-font-lock-keywords)
8509 (sql-mode-mysql-font-lock-keywords)
8510 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
8511 keywords.
8512 (sql-mode-font-lock-defaults): Update comment.
8513 (sql-product-feature): New function. Returns feature associated
8514 with a product from `sql-product-support' alist.
8515 (sql-product-font-lock): New function. Set font-lock support
8516 based on `sql-product'.
8517 (sql-add-product-keywords): New function. Add font-lock rules to
8518 product-specific keyword variables.
8519 (sql-set-product): New function. Set `sql-product' and apply
8520 appropriate font-lock highlighting.
8521 (sql-highlight-product): New function. Set font-lock support
8522 based on a product. Also set mode name to include product name.
8523 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
8524 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
8525 Use `sql-set-product'.
8526 (sql-highlight-ms-keywords)
8527 (sql-highlight-sybase-keywords)
8528 (sql-highlight-interbase-keywords)
8529 (sql-highlight-strong-keywords)
8530 (sql-highlight-mysql-keywords)
8531 (sql-highlight-sqlite-keywords)
8532 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
8533 (sql-get-login): Prompt in the same order as the tokens.
8534 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
8535 (sql-product-interactive): New function. Common portions of
8536 product-specific interactive mode wrappers.
8537 (sql-interactive-mode): Rewritten to use product features.
8538 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
8539 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
8540 (sql-db2, sql-linter): Use `sql-product-interactive'.
8541 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
8542 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
8543 (sql-connect-ingres, sql-connect-postgres)
8544 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
8545 New functions. Format command line parameters and invoke comint on
8546 the appropriate interpreter. Code was in the corresponding
8547 `sql-xyz' function before.
8548 (sql-connect-ms): New function. Support -E argument to use
8549 operating system credentials for authentication.
8550
8551 2003-08-18 Kenichi Handa <handa@m17n.org>
8552
8553 * international/mule.el (encode-char): Fix for the ASCII case.
8554
8555 2003-08-15 Kenichi Handa <handa@m17n.org>
8556
8557 * international/fontset.el (setup-default-fontset): Change "*" to
8558 nil in the specifications of font family.
8559
8560 2003-08-18 Kim F. Storm <storm@cua.dk>
8561
8562 * kmacro.el (kmacro-keymap): Group related bindings in
8563 initialization for clarity. Bind C-s to start macro.
8564 Remove C-r binding.
8565 (kmacro-initial-counter-value): New defvar to hold initial counter
8566 value in case we set the value before defining a macro.
8567 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
8568 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
8569 not defining or executing macro. Doc fix.
8570 (kmacro-add-counter): Clear kmacro-initial-counter-value.
8571 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
8572 temporarily view older elements on the macro ring without cycling
8573 the ring.
8574 (kmacro-display): Doc fix.
8575 (kmacro-exec-ring-item): New helper function.
8576 (kmacro-call-ring-2nd): Use it.
8577 (kmacro-call-ring-2nd-repeat): Doc fix.
8578 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
8579 (kmacro-end-or-call-macro): Execute last viewed macro (using
8580 kmacro-exec-ring-item) from ring if this follows
8581 kmacro-view-macro. This allows us to find a macro on the ring
8582 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
8583 the ring to bring it to the head of the ring.
8584 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
8585 Allow binding to reserved keys without specifying C-x C-k prefix.
8586 Ask for confirmation if entered key sequence is already bound to
8587 a non-macro command.
8588 (kmacro-view-macro): Repeating command will show older elements
8589 on the macro ring; C-k will execute the last viewed macro.
8590 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
8591 property from 'ring to 'head.
8592
8593 2003-08-17 Alan Shutko <ats@acm.org>
8594
8595 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
8596 keeping December out of the alist.
8597
8598 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
8599
8600 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
8601 * calendar/calendar.el (calendar-mode-map): Bind it to key.
8602 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
8603 (calendar-flatten): New function.
8604 (calendar-mouse-view-other-diary-entries)
8605 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
8606 in the menu title and to show multi-line diary entries correctly
8607 in the menu.
8608
8609 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
8610
8611 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
8612 defcustom, because the default was recently changed.
8613
8614 2003-08-16 Richard M. Stallman <rms@gnu.org>
8615
8616 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
8617
8618 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8619 New subroutine, broken out of eval-last-sexp-1.
8620 (eval-last-sexp-1): Use eval-last-sexp-print-value.
8621
8622 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
8623
8624 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
8625
8626 * simple.el (eval-expression): Use eval-last-sexp-print-value.
8627
8628 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
8629
8630 * progmodes/compile.el (compilation-error-regexp-alist):
8631 Add Java ANt error detection as described in document
8632 http://ant.apache.org/faq.html
8633
8634 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
8635
8636 * simple.el (backward-word, forward-to-indentation)
8637 (backward-to-indentation): Argument changed to optional.
8638 (next-line, previous-line): Use `or' instead of `unless'.
8639
8640 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8641
8642 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
8643 instead of a constant.
8644
8645 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
8646
8647 * shell.el (shell): With prefix-arg, suggest a new buffer name.
8648
8649 2003-08-12 Andre Spiegel <spiegel@gnu.org>
8650
8651 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
8652 (vc-sccs-workfile-version): Search the entire delta table, rather
8653 than just the first entry, because that might be a deleted version.
8654
8655 2003-08-11 Karl Fogel <kfogel@red-bean.com>
8656
8657 * menu-bar.el (menu-bar-options-menu): Supply a body for the
8658 [save-place] binding in the Options menu. Have it require
8659 'saveplace' and then toggle the variable manually, to avoid an an
8660 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
8661 for the bug report.
8662
8663 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
8664
8665 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
8666 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
8667 (gdb-info-threads-custom): Add help-echo text.
8668 (gdb-display-back): Don't use purecopy.
8669 (gdb-info-breakpoints-custom, gdb-reset)
8670 (gdb-assembler-custom): Use display-images-p to test if breakpoint
8671 icons can be displayed.
8672
8673 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
8674
8675 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
8676
8677 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
8678
8679 * bookmark.el (bookmark-completing-read):
8680 Return a string, instead of a list of one string.
8681 Use a popup menu if activated from the mouse.
8682 (bookmark-edit-annotation): Remove unused vars.
8683 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
8684 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
8685 to bookmark-completing-read.
8686 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8687 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
8688 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
8689 and erase-buffer.
8690 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
8691 (bookmark-menu-jump, bookmark-menu-insert)
8692 (bookmark-popup-menu-and-apply-function)
8693 (bookmark-menu-popup-paned-bookmark-menu): Remove.
8694 (bookmark-menu-build-paned-menu): Remove by folding it into
8695 bookmark-menu-popup-paned-menu.
8696 (menu-bar-bookmark-map): Move the define-key statements here.
8697 Use the "non-menu" commands since they now pop up a menu if needed.
8698 (bookmark-exit-hook-internal): Simplify.
8699
8700 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
8701
8702 * reftex-toc.el (reftex-toc-rename-label): New function.
8703 (reftex-toc-check-docstruct): New function.
8704
8705 * reftex.el (reftex-region-active-p): New function.
8706
8707 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
8708 regexp to find the \bibliography macro.
8709
8710 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
8711 which does not exist in LaTeX.
8712 (reftex-cite-format-builtin): Added amsrefs support.
8713 (reftex-toc-confirm-promotion): New option
8714
8715 * reftex-toc.el
8716 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
8717 (reftex-toc-demote, reftex-toc-promote)
8718 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8719 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8720 (reftex-toc-newhead-from-alist)
8721 (reftex-toc-load-all-files-for-promotion): New functions.
8722 (reftex-toc-help): Added description of new keys.
8723 (reftex-toc-split-windows-fraction): New option.
8724 (reftex-recenter-toc-when-idle): Search *toc* window on all
8725 visible frames.
8726 (reftex-toc): Additional parameter REUSE
8727 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
8728 with REUSE argument.
8729 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
8730 the call of `reftex-toc'.
8731 (reftex-make-separate-toc-frame): New function .
8732 (reftex-toc-recenter): When called with triple prefix arg, call
8733 `reftex-make-separate-toc-frame' first.
8734 (reftex-toc-toggle-dedicated-frame): New command.
8735 (reftex-toc-quit): Adapted to delete frame when called in
8736 dedicated frame.
8737
8738 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
8739 all enclosing macros.
8740
8741
8742 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8743
8744 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
8745 first use.
8746
8747 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8748
8749 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
8750
8751 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8752
8753 * calendar/calendar.el (list-diary-entries-hook)
8754 (diary-display-hook, nongregorian-diary-listing-hook)
8755 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
8756 Add some customize options for these hooks.
8757 (calendar-abbrev-construct): Don't try to take a substring longer
8758 than the original string.
8759
8760 2003-08-05 Richard M. Stallman <rms@gnu.org>
8761
8762 * emacs-lisp/testcover.el (noreturn): Report error if does return.
8763 (testcover-reinstrument-clauses): Doc fix.
8764
8765 * emacs-lisp/warnings.el: Doc fixes, args renamed.
8766 (warning-type-format): Rename from warning-group-format.
8767
8768 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
8769 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
8770 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
8771 to prevent warnings about defvar for an obsolete variable.
8772
8773 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
8774 warning-group-format renamed to warning-type-format.
8775
8776 * subr.el (read-passwd): Use clear-string instead of fillarray.
8777
8778 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
8779 Use vconcat instead of concat.
8780 (edmacro-sanitize-for-string): New function.
8781
8782 2003-08-05 Dave Love <fx@gnu.org>
8783
8784 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
8785 line-number-display-limit-width.
8786
8787 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
8788
8789 2003-08-05 Kenichi Handa <handa@m17n.org>
8790
8791 * international/code-pages.el: Don't require mule-diag.
8792
8793 * international/mule-diag.el (non-iso-charset-alist):
8794 Add autoload cookie.
8795
8796 * language/devan-util.el (dev-glyph-order): Add an entry for the
8797 glyph code #xC4.
8798
8799 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
8800
8801 * calendar/calendar.el (diary-file, diary-file-name-prefix)
8802 (european-calendar-style, diary-date-forms)
8803 (calendar-day-name-array, calendar-month-name-array): Doc change.
8804 (generate-calendar-month): Adapt for new behaviour of
8805 `calendar-day-name' function.
8806 (calendar-abbrev-length, calendar-day-abbrev-array)
8807 (calendar-month-abbrev-array): New variables.
8808 (calendar-abbrev-construct): New function.
8809 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
8810 rather than fixing abbrevs at some width. Calling syntax change.
8811 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
8812 (calendar-date-string): Adapt for new behaviours of
8813 `calendar-day-name' and `calendar-month-name' functions.
8814
8815 * calendar/diary-lib.el (list-diary-entries): Adapt for new
8816 behaviour of `calendar-day-name' and `calendar-month-name' functions.
8817 (diary-name-pattern): Use abbrev arrays, rather than fixing
8818 abbrevs at three chars. Calling syntax change.
8819 (mark-diary-entries): Adapt for new behaviours of
8820 `diary-name-pattern' and `calendar-make-alist' functions.
8821 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
8822 `diary-name-pattern' function.
8823 (font-lock-diary-date-forms): Use abbrev arrays, rather than
8824 fixing abbrevs at three chars. Calling syntax change.
8825 (cal-hebrew, cal-islam): Require when compiling.
8826 (diary-font-lock-keywords): Adapt for new behaviour of
8827 `font-lock-diary-date-forms' function.
8828
8829 * calendar/cal-hebrew.el: Reposition some code so defined before used.
8830 (calendar-hebrew-month-name-array-common-year)
8831 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
8832 (list-hebrew-diary-entries): Adapt for new behaviours of
8833 `calendar-day-name' and `add-to-diary-list' functions.
8834 (mark-hebrew-diary-entries): Adapt for new behaviours of
8835 `diary-name-pattern' and `calendar-make-alist' functions.
8836
8837 * calendar/cal-islam.el (calendar-islamic-month-name-array):
8838 Add doc string.
8839 (list-islamic-diary-entries): Adapt for new behaviours of
8840 `calendar-day-name' and `add-to-diary-list' functions.
8841 (mark-islamic-diary-entries): Adapt for new behaviours of
8842 `diary-name-pattern' and `calendar-make-alist' functions.
8843
8844 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
8845 `calendar-month-name' function.
8846
8847 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
8848
8849 * calendar/solar.el (solar-seasons-data): Move definition before use.
8850
8851 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
8852 (cal-tex-LaTeX-hourbox): Move definition before use.
8853
8854 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
8855 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
8856 lunar.el, solar.el
8857 (displayed-month, displayed-year): Define for compiler.
8858
8859 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8860
8861 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
8862 MODE. Renamed from c-init-c-language-vars'.
8863 (c-initialize-cc-mode): Change accordingly.
8864 (c-common-init): Ditto.
8865 (c-mode): Ditto.
8866 (c++-mode): Use `c-init-language-vars-for'.
8867 (objc-mode): Ditto.
8868 (java-mode): Ditto.
8869 (idl-mode): Ditto.
8870 (pike-mode): Ditto.
8871 (awk-mode): Ditto.
8872
8873 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8874
8875 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
8876 or not the point moved.
8877
8878 (c-search-decl-header-end): Don't trip up on operator identifiers
8879 in C++ and operators like == in all languages.
8880
8881 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
8882 Detect leading labels correctly.
8883
8884 2003-08-02 Andreas Schwab <schwab@suse.de>
8885
8886 * textmodes/ispell.el: Don't redo key bindings on loading, put
8887 them only in loaddefs.el.
8888 * bookmark.el: Likewise.
8889 * dabbrev.el: Likewise.
8890 * emerge.el: Likewise.
8891
8892 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
8893 has more than one member.
8894
8895 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
8896
8897 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8898
8899 * lpr.el (printify-region): It was ending conversion before the
8900 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
8901
8902 2003-07-31 John Paul Wallington <jpw@gnu.org>
8903
8904 * net/browse-url.el (browse-url-epiphany): Doc fix.
8905
8906 2003-07-30 Kenichi Handa <handa@m17n.org>
8907
8908 * international/fontset.el (setup-default-fontset):
8909 Change registry names of Akurti fonts.
8910
8911 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
8912
8913 * comint.el (comint-read-noecho): Use `clear-string' instead of
8914 `fillarray'.
8915
8916 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
8917
8918 * outline.el (outline-mode-hook): Add defvar.
8919
8920 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
8921
8922 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
8923 Restore assembler in source window if that is what has been selected.
8924 (menu): Add gdb-restore-windows to menu. Make gdba
8925 specific menus only visible from gdba.
8926
8927 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
8928
8929 * progmodes/compile.el (compilation-environment): New user variable.
8930 (compile-internal): Respect it.
8931
8932 2003-07-23 Masatake YAMATO <jet@gyve.org>
8933
8934 * progmodes/gud.el (gdb-script-font-lock-keywords):
8935 Put `font-lock-function-name-face' on a symbol which includes
8936 `-' like `hook-run'. Put font-lock-variable-name-face
8937 on a symbol starting with $.
8938
8939 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
8940
8941 * files.el (set-visited-file-name): Use truename for buffer-file-name.
8942
8943 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8944
8945 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
8946
8947 2003-07-26 Andre Spiegel <spiegel@gnu.org>
8948
8949 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
8950 Use with-no-warnings.
8951 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
8952 rather than to find-file-not-found-hook, which doesn't exist.
8953
8954 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8955
8956 * international/quail.el (quail-translate-key): Fix previous change.
8957
8958 2003-07-25 John Paul Wallington <jpw@gnu.org>
8959
8960 * server.el (server-start): Check `server-process' is non-nil
8961 before killing it to avoid killing current buffer's process.
8962
8963 * simple.el (choose-completion-string): Use `minibufferp';
8964 test `completion-reference-buffer' if `buffer' arg is nil.
8965 (push-mark): Use `when' and `unless'.
8966 (pop-mark): Use `when'.
8967
8968 * mouse-sel.el (mouse-sel-get-selection-function):
8969 Check `x-last-selected-text-primary'. Don't barf if it or
8970 `x-last-selected-text' aren't bound.
8971
8972 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8973
8974 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
8975
8976 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
8977
8978 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
8979
8980 2003-07-23 John Paul Wallington <jpw@gnu.org>
8981
8982 * tooltip.el (defface tooltip): Inherit from variable-pitch.
8983
8984 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
8985
8986 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
8987 string. Defvar the derived hook.
8988
8989 * macros.el (insert-kbd-macro): Escape double quote character.
8990 From Thomas W Murphy <twm@andrew.cmu.edu>.
8991
8992 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
8993
8994 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
8995 to match the specific mark rather than reusing comment-start-skip.
8996
8997 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
8998
8999 * progmodes/hideshow.el (hs-special-modes-alist):
9000 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
9001
9002 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
9003
9004 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
9005 value using ?\s.
9006
9007 2003-07-21 John Paul Wallington <jpw@gnu.org>
9008
9009 * subr.el (with-selected-window): Add closing paren.
9010
9011 2003-07-21 Richard M. Stallman <rms@gnu.org>
9012
9013 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
9014 (lisp-mode): Likewise.
9015
9016 * subr.el (with-selected-window): Copy code form save-selected-window
9017 so as to call select-window with norecord arg.
9018 (dynamic-completion-table): Doc fix.
9019 (lazy-completion-table): Doc fix.
9020
9021 * international/mule-cmds.el (set-locale-environment):
9022 langinfo renamed to locale-info.
9023
9024 * international/mule.el (auto-coding-functions): Doc fix.
9025
9026 2003-07-21 Kenichi Handa <handa@m17n.org>
9027
9028 * international/quail.el (quail-translate-key):
9029 Update quail-current-str correctly.
9030
9031 2003-07-21 Andreas Schwab <schwab@suse.de>
9032
9033 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
9034 ?, to "_".
9035
9036 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
9037 Version 2.0.36 of Tramp released.
9038
9039 * net/tramp.el (tramp-default-password-end-of-line): Rename from
9040 tramp-password-end-of-line.
9041 (tramp-password-end-of-line): New method parameter.
9042 (tramp-get-password-end-of-line): Function to access method
9043 parameter `tramp-password-end-of-line', or variable
9044 `tramp-default-password-end-of-line' (default value).
9045 (tramp-methods): Add entries for new parameter
9046 tramp-password-end-of-line.
9047 (tramp-enter-password): Use new function
9048 `tramp-get-password-end-of-line'.
9049 (tramp-handle-insert-file-contents): Do not
9050 unconditionally inhibit the file operation file-local-copy, only
9051 do that when the inhibit-file-name-operation is currently
9052 insert-file-contents. This fixes finding remote CVS-controlled
9053 files. (It would barf on inserting the CVS/Entries file
9054 literally, because the file-local-copy handler wasn't called.)
9055 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
9056 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
9057 (tramp-initial-commands): New variable.
9058 (tramp-process-initial-commands): New function, using the variable.
9059 (tramp-open-connection-setup-interactive-shell): Call the new function.
9060 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
9061 method into the buffer name, never use nil. Reported by Hanak
9062 David <dhanak@inf.bme.hu>.
9063 (tramp-open-connection-setup-interactive-shell): Erase buffer
9064 before sending "stty -onlcr".
9065
9066 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
9067
9068 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
9069
9070 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
9071
9072 2003-07-19 John Paul Wallington <jpw@gnu.org>
9073
9074 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
9075 (artist-draw-rect, artist-draw-square): Doc fixes.
9076
9077 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
9078
9079 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
9080
9081 2003-07-19 Kenichi Handa <handa@m17n.org>
9082
9083 * international/kkc.el (kkc-show-conversion-list-update):
9084 Highlight the correct candidate in the message.
9085
9086 2003-07-18 John Paul Wallington <jpw@gnu.org>
9087
9088 * simple.el (current-word): Don't include punctuation char when
9089 `really-word' arg is non-nil.
9090
9091 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
9092
9093 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
9094 moved to the directory obsolete.
9095
9096 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
9097
9098 * info.el (Info-menu-entry-name-re): Allow newlines in
9099 menu entry names.
9100
9101 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
9102 syntax-ppss-after-change-function.
9103 (syntax-ppss-after-change-function): New alias. Update uses.
9104 (syntax-ppss): Catch the case where the buffer is narrowed.
9105
9106 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9107
9108 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
9109 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
9110
9111 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9112
9113 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
9114 since it might be modified.
9115
9116 * progmodes/cc-langs.el (c++-make-template-syntax-table)
9117 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
9118 names to these language constants.
9119
9120 2003-07-15 Kim F. Storm <storm@cua.dk>
9121
9122 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
9123 All uses changed.
9124
9125 2003-07-14 Mark A. Hershberger <mah@everybody.org>
9126
9127 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
9128 Namespace support.
9129
9130 2003-07-13 Juanma Barranquero <lektu@terra.es>
9131
9132 * frame.el (modify-all-frames-parameters): Reinstall (copyright
9133 papers received).
9134
9135 2003-07-13 Karl Eichwalder <ke@suse.de>
9136
9137 * textmodes/po.el (po-find-charset): White space at the start of the
9138 Content-Type field body is non-mandatory.
9139
9140 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
9141
9142 * textmodes/texinfo.el (texinfo-section-list):
9143 Append appendixsection; a synonym for appendixsec.
9144
9145 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
9146
9147 * man.el (Man-translate-cleanup): New.
9148 (Man-translate-references): Call `Man-translate-cleanup' to clean
9149 leading, trailing and middle spaces.
9150
9151 2003-07-13 Lars Hansen <larsh@math.ku.dk>
9152
9153 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
9154 Handle `dired-directory' being a list.
9155
9156 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
9157
9158 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
9159 it doesn't exist.
9160
9161 2003-07-12 Richard M. Stallman <rms@gnu.org>
9162
9163 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
9164
9165 * progmodes/cc-defs.el (c-make-keywords-re):
9166 Don't use delete-duplicates.
9167 (c-lang-const): Don't use mapcan.
9168
9169 * apropos.el (apropos-show-scores): Make it customizable.
9170 Document new meaning.
9171 (apropos): Compute scores from symbols.
9172 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
9173
9174 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9175
9176 * ps-bdf.el: Fix copyright line.
9177 (bdf-directory-list): Fix initialization code.
9178
9179 2003-07-11 John Paul Wallington <jpw@gnu.org>
9180
9181 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
9182 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
9183 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
9184
9185 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
9186
9187 * emacs-lisp/ring.el (ring-elements): Doc fix.
9188
9189 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9190
9191 * calendar/timeclock.el (timeclock-relative)
9192 (timeclock-ask-before-exiting, timeclock-use-display-time):
9193 Doc changes.
9194 (timeclock-modeline-display): Give a message if
9195 `timeclock-use-display-time' is non-nil but `display-time-mode'
9196 is not active.
9197
9198 2003-07-11 Kenichi Handa <handa@m17n.org>
9199
9200 * international/mule-cmds.el (set-language-environment):
9201 Set current-language-environment to the correct string.
9202
9203 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9204
9205 * ps-print.el: Print line number correctly in a region. Reported by
9206 Tim Allen <timallen@ls83.fsnet.co.uk>.
9207 (ps-print-version): New version number (6.6.2).
9208 (ps-printing-region): Code fix.
9209
9210 2003-07-10 John Paul Wallington <jpw@gnu.org>
9211
9212 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
9213 this function can be called from `add-completions-from-tags-table'.
9214
9215 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
9216
9217 * calendar/timeclock.el (timeclock-use-display-time)
9218 (timeclock-day-over-hook, timeclock-workday-remaining)
9219 (timeclock-status-string, timeclock-when-to-leave)
9220 (timeclock-when-to-leave-string, timeclock-log-data)
9221 (timeclock-find-discrep, timeclock-day-base)
9222 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
9223 (timeclock-modeline-display): Set the variable
9224 `timeclock-modeline-display'.
9225 (timeclock-update-modeline): Doc fix. Respect value of
9226 `timeclock-relative'.
9227
9228 2003-07-09 Richard M. Stallman <rms@gnu.org>
9229
9230 * textmodes/reftex-parse.el (reftex-all-document-files):
9231 Add autoload cookie.
9232
9233 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
9234 (reftex-scanning-info-available-p): Add autoload cookie.
9235
9236 * international/mule-cmds.el
9237 (set-display-table-and-terminal-coding-system): Delete duplicate
9238 aset on standard-display-table.
9239
9240 * view.el (view-file): If existing buffer's major mode is special,
9241 don't go into view mode.
9242
9243 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
9244
9245 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9246
9247 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
9248 buffer changes; there's third party code that calls this function
9249 directly.
9250
9251 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9252
9253 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
9254 (autodoc-font-lock-keywords): Don't byte compile on font lock
9255 initialization when running from byte compiled files.
9256
9257 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9258
9259 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
9260 statement ends with auto-increment "++".
9261
9262 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9263
9264 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9265 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9266 these are changed, so declare them as variables and not constants.
9267
9268 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
9269
9270 * subr.el (dolist, dotimes): Doc fix.
9271
9272 2003-07-08 Kim F. Storm <storm@cua.dk>
9273
9274 * international/mule-cmds.el
9275 (set-display-table-and-terminal-coding-system): Don't break
9276 bootstrap if standard-display-table isn't setup yet.
9277
9278 2003-07-07 Richard M. Stallman <rms@gnu.org>
9279
9280 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
9281 Give it a doc string, and autoload it.
9282
9283 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
9284 Use with-no-warnings.
9285
9286 * info.el (Info-search): If find invisible text, search again.
9287
9288 * isearch.el (search-whitespace-regexp): Add a shy group around it.
9289
9290 * man.el (Man-name-regexp): Match + as part of name.
9291
9292 * simple.el (visible-mode): Rename from vis-mode.
9293 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
9294
9295 * simple.el (current-word): New arg REALLY-WORD specifies
9296 don't include punctuation chars.
9297
9298 * emacs-lisp/debug.el (debug, debugger-env-macro):
9299 Use with-no-warnings while accessing and binding unread-command-char.
9300
9301 * international/mule-cmds.el
9302 (set-display-table-and-terminal-coding-system): Use explicit loop
9303 instead of calling standard-display-default.
9304
9305 * net/ange-ftp.el (ange-ftp-file-symlink-p):
9306 Use condition-case to catch error in ange-ftp-get-files.
9307
9308 * net/browse-url.el (browse-url-browser-function):
9309 Add alternative for Epiphany.
9310 (browse-url-epiphany-program, browse-url-epiphany-arguments)
9311 (browse-url-epiphany-startup-arguments)
9312 (browse-url-epiphany-new-window-is-tab): New variables.
9313 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
9314
9315 * progmodes/compile.el (compile-auto-highlight): Default now t.
9316 (compile): Doc fix.
9317 (compilation-next-error): Fix previous change.
9318
9319 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
9320
9321 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
9322
9323 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
9324
9325 * gdb-ui.el (gdb-source-info): Display current frame when
9326 attaching to an existing process.
9327 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
9328 while laying out windows when attaching to an existing process.
9329
9330 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
9331
9332 * info.el (Info-menu): Use Info-menu-entry-name-re.
9333
9334 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
9335
9336 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
9337 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
9338
9339 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
9340 to match the same text.
9341
9342 2003-07-06 John Paul Wallington <jpw@gnu.org>
9343
9344 * vc.el (vc-annotate-offset): Move defvar up.
9345
9346 2003-07-06 Kim F. Storm <storm@cua.dk>
9347
9348 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
9349 This should fix the infinite loop when extracting menu names.
9350
9351 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9352
9353 * files.el (auto-mode-alist, interpreter-mode-alist):
9354 Remove entries to CC Mode modes to avoid duplicates; they are now added
9355 with autoload directives in cc-mode.el.
9356
9357 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9358
9359 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9360 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9361 these are changed, so declare them as variables and not constants.
9362
9363 * progmodes/cc-mode.el: Fix some autoload problems: Try to
9364 ensure that the entry for ".c" extension comes before the one for
9365 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
9366 Fix incorrect entries that were added to `interpreter-mode-alist'.
9367 Move the autoload directives for AWK to the top level since they
9368 aren't recognized anywhere else. Do not use the new AWK mode doc
9369 in the autoload form for the old AWK mode.
9370
9371 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9372
9373 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
9374 (bibtex-sort-ignore-string-entries): Default value t.
9375 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
9376 erroneously in previous version.
9377 (bibtex-string-files): Docstring reflects new parsing scheme.
9378 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
9379 docstring, add # as one of the chars to crush
9380 (bibtex-autokey-prefix-string, bibtex-autokey-names)
9381 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
9382 (bibtex-autokey-name-change-strings)
9383 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
9384 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
9385 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
9386 (bibtex-autokey-title-terminators)
9387 (bibtex-autokey-titlewords-stretch)
9388 (bibtex-autokey-titleword-ignore)
9389 (bibtex-autokey-titleword-case-convert)
9390 (bibtex-autokey-titleword-abbrevs)
9391 (bibtex-autokey-titleword-abbrevs)
9392 (bibtex-autokey-titleword-change-strings)
9393 (bibtex-autokey-titleword-length)
9394 (bibtex-autokey-titleword-separator)
9395 (bibtex-autokey-name-year-separator)
9396 (bibtex-autokey-year-title-separator)
9397 (bibtex-autokey-before-presentation-function)
9398 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
9399 Fix docstring.
9400 (bibtex-strings, bibtex-reference-keys):
9401 Use lazy-completion-table and make-variable-buffer-local.
9402 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
9403 (bibtex-braced-string-syntax-table)
9404 (bibtex-quoted-string-syntax-table): New variables.
9405 (bibtex-parse-nested-braces): Remove.
9406 (bibtex-parse-field-string): Use syntax table and forward-sexp.
9407 (bibtex-parse-association): Simplify.
9408 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
9409 (bibtex-parse-field-text): Simplify.
9410 (bibtex-search-forward-field, bibtex-search-backward-field):
9411 argument BOUND can take value t.
9412 (bibtex-start-of-field, bibtex-start-of-name-in-field)
9413 (bibtex-end-of-name-in-field, bibtex-end-of-field)
9414 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
9415 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
9416 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
9417 (bibtex-skip-to-valid-entry): Return buffer position of beginning
9418 and ending of entry. Update for changes of bibtex-search-entry.
9419 Simplify.
9420 (bibtex-map-entries): FUN is called with three arguments.
9421 (bibtex-search-entry): Return a cons pair with buffer positions of
9422 beginning and end of entry.
9423 (bibtex-enclosing-field): Simplify.
9424 (bibtex-format-entry): Use booktitle to set a missing title.
9425 (bibtex-autokey-get-names): Fiddle with regexps.
9426 (bibtex-generate-autokey): Use identity.
9427 (bibtex-parse-keys): Use simplified parsing algorithm if
9428 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
9429 arguments. Return alist of keys.
9430 (bibtex-parse-strings): Simplify. Return alist of strings.
9431 (bibtex-complete-string-cleanup): Fix docstring.
9432 (bibtex-read-key): New function.
9433 (bibtex-mode): Fix docstring. Do not parse for keys and
9434 strings when the mode is entered. Set fill-paragraph-function to
9435 bibtex-fill-field. Setup font-lock-mark-block-function the way
9436 font-lock intended.
9437 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
9438 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
9439 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
9440 (bibtex-Preamble): Avoid hard coded constants.
9441 (bibtex-make-field): Fix docstring. Simplify.
9442 (bibtex-beginning-of-entry): Always return new position of point.
9443 (bibtex-end-of-entry): Rearrange cond clauses.
9444 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
9445 Update for changes of bibtex-map-entries.
9446 (bibtex-ispell-abstract): Do not move point.
9447 (bibtex-entry-index): Use downcase. Simplify.
9448 (bibtex-lessp): Handle catch-all.
9449 (bibtex-find-crossref): Turn into a command.
9450 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
9451 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
9452 preamble entries.
9453 (bibtex-fill-field-bounds): New function.
9454 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
9455 (bibtex-fill-entry): Use bibtex-fill-field-bounds
9456 (bibtex-String): Use bibtex-strings. Always obey
9457 bibtex-sort-ignore-string-entries.
9458
9459 2003-07-05 John Paul Wallington <jpw@gnu.org>
9460
9461 * cus-theme.el (customize-create-theme):
9462 Call `customize-create-theme' in Reset widget's notify function.
9463
9464 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
9465 (ibuffer-mark-interactive): Use `or' instead of `unless'.
9466 (define-ibuffer-column name): Add summarizer.
9467 (define-ibuffer-column size): Likewise.
9468 (define-ibuffer-column filename): Likewise.
9469 (define-ibuffer-column process): Likewise. Change BODY's output too.
9470 (define-ibuffer-column filename-and-process): Likewise, likewise.
9471 (ibuffer): Remove local vars `already-in' and `need-update'.
9472
9473 * ibuf-ext.el: Don't require `derived' at compile-time.
9474
9475 2003-07-05 Kim F. Storm <storm@cua.dk>
9476
9477 * info.el: Disable paragraph refilling.
9478 (Info-refill-paragraphs): New defcustom.
9479 (Info-fontify-node): Use it.
9480
9481 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
9482
9483 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
9484 thingies from constructors created by defstruct.
9485
9486 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
9487 the default value of the variable.
9488 (byte-code-meter): Move declaration to top level.
9489
9490 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
9491
9492 * info.el (Info-following-node-name-re): New fun.
9493 (Info-following-node-name): Remove.
9494 (Info-insert-dir): Use the new fun.
9495 (Info-extract-pointer): Don't save restriction; use new fun.
9496 (Info-menu-entry-name-re): New const.
9497 (Info-menu-entry-name-re): Use it along with new fun.
9498 (Info-node-spec-re): Use new fun.
9499 (Info-complete-menu-item, Info-fontify-node): Use new const.
9500 (Info-goto-node, Info-follow-reference, Info-menu-update):
9501 Use match-string.
9502 (Info-follow-reference): Use assoc-string.
9503 Use a list of strings for the completion table.
9504 (Info-fontify-node): Use match-string, line-end-position.
9505 Limit the search for `node:' to the first line.
9506
9507 * newcomment.el (uncomment-region): Remove padding coming from
9508 comment-start rather than just from comment-padding.
9509
9510 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
9511 (vc-cvs-stay-local-p): Use vc-stay-local-p.
9512 (vc-cvs-rename-file): Remove (use the default).
9513 (vc-cvs-register): Register parent dir if needed.
9514 (vc-cvs-could-register): Return non-nil if parent can be registered.
9515 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
9516 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
9517
9518 * vc-svn.el (vc-svn-use-edit): Make it into a const.
9519 (vc-svn-update): Fix the arguments to `svn'.
9520 (vc-svn-diff-tree): Just use `vc-svn-diff'.
9521 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
9522 Simple implementations, assuming `name' is a URL.
9523
9524 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
9525 set of chars allowed unquoted in a case pattern.
9526
9527 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
9528
9529 * font-lock.el (font-lock-extra-types-widget)
9530 (c-font-lock-extra-types, c++-font-lock-extra-types)
9531 (objc-font-lock-extra-types, java-font-lock-extra-types)
9532 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
9533 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
9534 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
9535 (font-lock-match-c++-structor-declaration)
9536 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
9537 (c++-font-lock-keywords-3, c++-font-lock-keywords)
9538 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
9539 (objc-font-lock-keywords-3, objc-font-lock-keywords)
9540 (java-font-lock-keywords-1, java-font-lock-keywords-2)
9541 (java-font-lock-keywords-3, java-font-lock-keywords)
9542 (java-font-lock-syntactic-face-function): Remove obsolete code
9543 and constants. It's all in cc-fonts.el now.
9544
9545 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
9546
9547 * mail/sendmail.el (mail-specify-envelope-from)
9548 (mail-envelope-from): Doc fix.
9549
9550 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
9551
9552 * generic-x.el: Do away with the dependency on `c-emacs-features'
9553 when populating `rul-generic-mode-syntax-table'; we already know
9554 this isn't XEmacs.
9555
9556 See ChangeLog.10 for earlier changes.
9557
9558 ;; Local Variables:
9559 ;; coding: iso-2022-7bit
9560 ;; End:
9561
9562 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
9563 Copying and distribution of this file, with or without modification,
9564 are permitted provided the copyright notice and this notice are preserved.
9565
9566 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1