]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(uncomment-region): Bind comment-use-global-state to nil.
[gnu-emacs] / lisp / ChangeLog
1 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * newcomment.el (uncomment-region): Bind comment-use-global-state
4 to nil.
5
6 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
7
8 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
9 locally around the call to `revert-buffer'.
10
11 2004-09-03 Juri Linkov <juri@jurta.org>
12
13 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
14 `isearch-adjusted' to `t'.
15 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
16 (isearch-message-prefix): Add "pending" for isearch-adjusted.
17 (isearch-other-meta-char): Restore isearch-point unconditionally.
18 (isearch-query-replace): Add new arg `regexp-flag' and use it.
19 Set point to start of match if region is not active in transient
20 mark mode (to include the current match to region boundaries).
21 Push the search string to `query-replace-from-history-variable'.
22 Add prompt "Query replace regexp" for isearch-regexp.
23 Add region beginning/end as last arguments of `perform-replace.'
24 (isearch-query-replace-regexp): Replace code by the call to
25 `isearch-query-replace' with arg `t'.
26
27 2004-09-03 Richard M. Stallman <rms@gnu.org>
28
29 * startup.el (normal-top-level): Undo previous TERM change.
30
31 2004-09-03 Kim F. Storm <storm@cua.dk>
32
33 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
34 highlight overlays; allow using RET when cursor is over a button.
35 (cua--highlight-rectangle): Use it.
36 (cua--rectangle-set-corners): Don't move backwards at eol.
37 (cua--forward-line): Don't move into void after eob.
38
39 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
40 point is set (and displayed) inside rectangle.
41 (cua--rectangle-operation): Fix for highlight of empty lines.
42 (cua--highlight-rectangle): Fix highlight for tabs.
43 Position cursor at left/right edge of rectangle using new `cursor'
44 property on overlay strings.
45 (cua--indent-rectangle): Don't tabify.
46 (cua-rotate-rectangle): Ignore that point has moved.
47
48 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
49
50 * term/mac-win.el: Add ASCII equivalents for some function keys.
51 (mode-line-frame-identification): Sync with x-win.el.
52
53 2004-09-02 Juri Linkov <juri@jurta.org>
54
55 * progmodes/compile.el (compilation-buffer-name): Compare major
56 mode with second element of compilation-arguments instead of third
57 to reflect latest changes in compilation-arguments structure.
58 (recompile): Use global variable `compilation-directory' to get
59 recent compilation directory only when `recompile' is invoked NOT
60 in the compilation buffer. Otherwise, use `default-directory' of
61 the compilation buffer.
62 (compilation-error-properties): Allow to funcall col and end-col.
63 (compilation-mode-font-lock-keywords): Check col and end-col by
64 `integerp'.
65 (compilation-goto-locus): If end-mk is non-nil in transient mark
66 mode don't activate the mark (and don't display message in
67 push-mark), but highlight overlay between mk and end-mk.
68
69 * progmodes/grep.el (grep-highlight-matches): New defcustom.
70 (grep-regexp-alist): Add rule to highlight grep matches.
71 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
72
73 * info.el (Info-fontify-node): Don't compute other-tag
74 if Info-hide-note-references=hide.
75
76 * help.el (function-called-at-point):
77 * help-fns.el (variable-at-point):
78 Try `find-tag-default' when other methods failed.
79
80 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
81 Do not push mark if inhibit-mark-movement is non-nil.
82
83 * textmodes/ispell.el (ispell-html-skip-alists):
84 Fix backslashes in docstring.
85
86 2004-09-01 Juri Linkov <juri@jurta.org>
87
88 * isearch.el (isearch-wrap-function)
89 (isearch-push-state-function): New defvars.
90 (isearch-pop-fun-state): New defsubst.
91 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
92 (isearch-push-state): Set the result of calling
93 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
94 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
95 restore the mode-specific starting point of terminated search.
96 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
97 (isearch-repeat): Call `isearch-wrap-function' if defined.
98 (isearch-message-prefix): Don't add prefix "over" to the message
99 for wrapped search if `isearch-wrap-function' is defined.
100 (isearch-search): Call function saved in `isearch-pop-fun-state' to
101 restore the mode-specific starting point of failed search.
102
103 * info.el (Info-search-whitespace-regexp): Fix backslashes.
104 (Info-search): Add new optional arguments for the sake of isearch.
105 Replace whitespace in Info-search-whitespace-regexp literally.
106 Add backward search. Don't call `Info-select-node' if regexp is
107 found in the same Info node. Don't add node to Info-history for
108 wrapped isearch.
109 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
110 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
111 (Info-mode): Set local variables `isearch-search-fun-function',
112 `isearch-wrap-function', `isearch-push-state-function',
113 `search-whitespace-regexp'.
114
115 * isearch.el: Remove ancient Change Log section.
116 (isearch-string, isearch-message-string, isearch-point)
117 (isearch-success, isearch-forward-flag, isearch-other-end)
118 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
119 (isearch-barrier, isearch-within-brackets)
120 (isearch-case-fold-search): Add suffix `-state' to state-related
121 defsubsts to avoid name clashes with other function names.
122
123 * simple.el (next-error): New defgroup and defface.
124 (next-error-highlight, next-error-highlight-no-select):
125 New defcustoms.
126 (next-error-no-select): Let-bind next-error-highlight to the value
127 of next-error-highlight-no-select before calling `next-error'.
128
129 * progmodes/compile.el (compilation-goto-locus):
130 Use `next-error' face instead of `region'. Set 4-th argument of
131 `move-overlay' to `current-buffer' to move overlay to different
132 source buffers. Use new variable `next-error-highlight'.
133
134 * simple.el (next-error-find-buffer): Move the rule
135 "if current buffer is a next-error capable buffer" after the
136 rule "if next-error-last-buffer is set to a live buffer".
137 Simplify to test all rules in one `or'.
138 (next-error): Doc fix.
139 (next-error, previous-error, first-error)
140 (next-error-no-select, previous-error-no-select):
141 Make arguments optional.
142
143 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
144
145 * macros.el (apply-macro-to-region-lines): Make it operate on all
146 lines that begin in the region, rather than on all complete lines
147 in the region.
148
149 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
150
151 * x-dnd.el (x-dnd-protocol-alist): Document update.
152 (x-dnd-known-types): Defcustom it.
153 (x-dnd-handle-motif): Print message-atom in error message.
154
155 2004-08-30 John Paul Wallington <jpw@gnu.org>
156
157 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
158 strings rather than programatically constructing message.
159
160 2004-08-30 Richard M. Stallman <rms@gnu.org>
161
162 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
163 Don't return a string that would read as the wrong character code.
164
165 2004-08-29 Kim F. Storm <storm@cua.dk>
166
167 * emulation/cua-base.el (cua-auto-expand-rectangles): Remove
168 automatic rectangle padding feature; replace by non-destructive
169 virtual rectangle edges feature.
170 (cua-virtual-rectangle-edges): New defcustom.
171 (cua-auto-tabify-rectangles): New defcustom.
172 (cua-paste): If paste into a marked rectangle, insert rectangle at
173 current column, even if virtual; also paste exactly as many lines
174 as has been marked (ignore additional lines or add empty lines),
175 but paste whole source if only one line is marked.
176 (cua--update-indications): No longer use overwrite-cursor to
177 indicate rectangle padding
178
179 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
180 (cua--rectangle-virtual-edges): New defun.
181 (cua--rectangle-get-corners): Remove optional PAD arg.
182 (cua--rectangle-set-corners): Never do padding.
183 (cua--forward-line): Remove optional PAD arg. Simplify.
184 (cua-resize-rectangle-right, cua-resize-rectangle-left)
185 (cua-resize-rectangle-down, cua-resize-rectangle-up):
186 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
187 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
188 (cua--rectangle-move): Never do padding. Simplify.
189 (cua--tabify-start): New defun.
190 (cua--rectangle-operation): Add tabify arg. All callers changed.
191 (cua--pad-rectangle): Remove.
192 (cua--delete-rectangle): Handle delete with virtual edges.
193 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
194 (cua--insert-rectangle): Handle insert at virtual column.
195 Perform auto-tabify if necessary.
196 (cua--activate-rectangle): Remove optional FORCE arg.
197 Never do padding. Simplify.
198 (cua--highlight-rectangle): Enhance for virtual edges.
199 (cua-toggle-rectangle-padding): Remove command.
200 (cua-toggle-rectangle-virtual-edges): New command.
201 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
202 (cua--rectangle-post-command): Don't force rectangle padding.
203 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
204
205 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
206
207 * indent.el (edit-tab-stops-buffer): Doc fix.
208
209 2004-08-28 Richard M. Stallman <rms@gnu.org>
210
211 * progmodes/grep.el (grep-default-command): Use find-tag-default.
212 (grep-tag-default): Function deleted.
213
214 * subr.el (find-tag-default): Moved from etags.el.
215
216 * progmodes/etags.el (find-tag-default): Moved to subr.el.
217
218 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
219 into the basic character if it has an uppercase form.
220
221 2004-08-27 Kenichi Handa <handa@m17n.org>
222
223 * international/utf-8.el (utf-8-post-read-conversion): If the
224 buffer is unibyte, temporarily make it multibyte.
225
226 2004-08-27 Masatake YAMATO <jet@gyve.org>
227
228 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
229
230 2004-08-25 John Paul Wallington <jpw@gnu.org>
231
232 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
233 0, 1, and many mismatches in message.
234 (tex-start-shell): Use `set-process-query-on-exit-flag'.
235
236 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
237 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
238
239 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
240
241 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
242 vc-diff-switches differently.
243
244 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
245
246 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
247 before and a real defvar after
248 `speedbar-supported-extension-expressions'. This is to silence
249 the compiler without breaking bootstrapping.
250
251 2004-08-22 Richard M. Stallman <rms@gnu.org>
252
253 * textmodes/flyspell.el (flyspell-word):
254 Use set-process-query-on-exit-flag.
255 (flyspell-highlight-duplicate-region): Take POSS as arg.
256 (flyspell-word): Pass POSS as arg.
257
258 * progmodes/ada-xref.el: Many doc and style fixes.
259 (ada-find-any-references): Use compilation-start.
260 (ada-get-ali-file-name): Improve error msg.
261 (ada-get-ada-file-name): Likewise.
262
263 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
264 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
265
266 * mail/mail-extr.el (mail-extr-all-top-level-domains):
267 Add forward defvar.
268
269 * whitespace.el (global-whitespace-mode): New alias
270 for whitespace-global-mode.
271
272 * speedbar.el (speedbar-file-regexp): Definition moved up.
273 (speedbar-mode, speedbar-set-mode-line-format):
274 Use with-no-warnings.
275 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
276
277 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
278 controls whether to display the error buffer.
279
280 * ps-mule.el: Delete compatibility code for old Emacses.
281 (ps-mule-find-wrappoint): Don't use chars-in-region.
282
283 * frame.el (display-mouse-p, display-selections-p):
284 Use with-no-warnings.
285
286 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
287
288 2004-08-22 David Kastrup <dak@gnu.org>
289
290 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
291 information.
292
293 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
294
295 2004-08-22 Andreas Schwab <schwab@suse.de>
296
297 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
298
299 2004-08-22 Masatake YAMATO <jet@gyve.org>
300
301 * cvs-status.el (cvs-status-checkout): New function.
302 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
303
304 2004-08-21 David Kastrup <dak@gnu.org>
305
306 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
307 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
308 has been converted to use hashtables, the relation `nil=none' is
309 no longer valid, as `nil' is not a hashtable. This patch tries to
310 reduce the number of resulting errors.
311
312 2004-08-21 John Paul Wallington <jpw@gnu.org>
313
314 * subr.el (process-kill-without-query): Made obsolete in
315 version 21.4, not 21.5.
316
317 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
318 (vc-previous-comment, vc-next-comment)
319 (vc-comment-search-reverse, vc-comment-search-forward)
320 (vc-comment-to-change-log): Likewise.
321
322 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
323
324 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
325
326 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
327 Correct indentation of DEFMETHODS with non-standard method
328 combinations (e.g., PROGN, MIN, MAX).
329
330 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
331
332 * startup.el (normal-top-level-add-subdirs-to-load-path):
333 Avoid unnecessarily checking system-type.
334 (normal-top-level): Set TERM to "dumb". Simplify.
335
336 * avoid.el (mouse-avoidance-ignore-p): New fun.
337 Also ignore switch-frame, select-window, double, and triple clicks.
338 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
339 (mouse-avoidance-fancy-hook): Use it.
340
341 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
342
343 * avoid.el (mouse-avoidance-nudge-mouse)
344 (mouse-avoidance-banish-destination): Stay within the current window
345 to avoid problems with mouse-autoselect-window.
346
347 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
348
349 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
350 the newer format of some messages in cvs-1.12.1.
351
352 2004-08-19 Masatake YAMATO <jet@gyve.org>
353
354 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
355 (elp-results-jump-to-definition-by-mouse)
356 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
357 (elp-output-result): Use elp-output-insert-symname.
358
359 2004-08-18 Kenichi Handa <handa@m17n.org>
360
361 * language/cyrillic.el: Register koi8-r in
362 ctext-non-standard-encodings-alist.
363 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
364
365 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
366
367 * emacs-lisp/copyright.el (copyright-update-year): Delete code
368 that replaces 20xy with xy.
369
370 2004-08-17 John Paul Wallington <jpw@gnu.org>
371
372 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
373 (reb-force-update): Doc fix.
374
375 2004-08-16 Richard M. Stallman <rms@gnu.org>
376
377 * progmodes/which-func.el (which-func-update-1): Doc fix.
378
379 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
380 (sh-mode-abbrev-table): New variable.
381
382 * progmodes/compile.el (compilation-mode): Doc fix.
383
384 * emacs-lisp/lisp-mode.el (eval-last-sexp):
385 Don't cons a new symbol each time.
386 (eval-last-sexp-fake-value): New variable.
387
388 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
389 (copyright-update-year): Detect continuation of list of years.
390
391 * term.el (term-default-fg-color, term-default-bg-color)
392 (ansi-term-color-vector): Use `unspecified', not nil, as default.
393
394 * imenu.el: Several doc fixes: don't say variables are buffer-local.
395
396 2004-08-16 Davis Herring <herring@lanl.gov>
397
398 * isearch.el (isearch-string, isearch-message-string, isearch-point)
399 (isearch-success, isearch-forward-flag, isearch-other-end)
400 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
401 (isearch-barrier, isearch-within-brackets)
402 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
403
404 2004-08-16 Kenichi Handa <handa@m17n.org>
405
406 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
407
408 2004-08-15 Kenichi Handa <handa@m17n.org>
409
410 * term/x-win.el (x-selection-value): If utf8 was successful but
411 ctext was not, use utf8 string.
412
413 2004-08-14 Davis Herring <herring@lanl.gov>
414
415 * isearch.el: Remove accidental changes of March 4. Fix backing
416 up when a regexp isearch is made more general. Use symbolic
417 accessor functions for isearch stack frames to make usage clearer.
418 (search-whitespace-regexp): Made groups in documentation shy (as
419 is the group in the default value).
420 (isearch-fallback): New function, addresses problems with regexps
421 liberalized by `\|', adds support for liberalization by `\}' (the
422 general repetition construct), and incorporates behavior for
423 `*'/`?'.
424 (isearch-}-char): New command, calls `isearch-fallback' with
425 arguments appropriate to a typed `}'.
426 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
427 appropriately.
428 (isearch-mode-map): Bind `}' to `isearch-}-char'.
429 (isearch-string, isearch-message,string, isearch-point)
430 (isearch-success, isearch-forward-flag, isearch-other-end)
431 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
432 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
433 New inline functions to read fields of a stack frame.
434
435 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
436
437 * battery.el (battery-linux-proc-acpi): Look into battery
438 directories matching the literal string "CMB", too (required for
439 Linux kernel version 2.6.7).
440
441 2004-08-14 John Paul Wallington <jpw@gnu.org>
442
443 * cus-start.el (read-file-name-completion-ignore-case): Add.
444 (blink-cursor-alist): Change version to "21.4".
445
446 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
447
448 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
449
450 * speedbar.el (speedbar-scan-subdirs): New option.
451 (speedbar-file-lists): Don't ignore file-name case on Unix and use
452 dolist.
453 (speedbar-insert-files-at-point): Take an extra argument and use
454 it to optionally find out if a subdir is empty. Also unreadable
455 files don't get expand buttons.
456 (speedbar-directory): New image (unused pixmap already existed).
457 (speedbar-expand-image-button-alist): Use it.
458
459 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
460
461 CC Mode update to 5.30.9:
462
463 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
464 Move from cc-vars to cc-defs for dependency reasons. Fix the
465 POSIX char class test to check that it works in
466 `skip-chars-(forward|backward)' too.
467
468 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
469 first argument starts with a special brace list.
470
471 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
472 when `c-opt-type-concat-key' is used (i.e. in Pike).
473
474 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
475 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
476 >)".
477
478 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
479 whitespace safe.
480
481 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
482 position for `arglist-intro', `arglist-cont-nonempty' and
483 `arglist-close' when there are two arglist open parens on the same
484 line and there's nothing in front of the first.
485
486 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
487 locking of qualified names in Java, which previously could fontify
488 common indexing expressions in many cases. The standard Java
489 naming conventions are used to tell them apart.
490
491 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
492 Fix inconsistency wrt opening parens on the first line inside a paren
493 block.
494
495 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
496 compile time for the sake of `c-major-mode-is'.
497
498 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
499 `c-major-mode-is' in the event that this is used inside a
500 `c-lang-defconst'.
501
502 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
503 `c-lang-defconst' so that it works better with fallback languages.
504
505 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
506 it to fail to record the base mode.
507
508 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
509 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
510 is used. Reordered the syntax checks to get more efficient
511 skipping in some situations.
512
513 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
514 continuation which might precede the newly inserted '{'.
515
516 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
517 Fix cases where it could loop indefinitely.
518
519 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
520 size specs correctly. Only fontify identifiers in front of '('
521 with as functions - don't accept any paren char. Tightened up
522 initializer skipping to stop before function and class blocks.
523
524 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
525 the point could be left directly after an open paren when finding
526 the beginning of the first decl in the block.
527
528 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
529 table when filtering out legitimate open parens to be recorded.
530 This could cause cache inconsistencies when e.g.
531 `c++-template-syntax-table' was temporarily in use.
532
533 * progmodes/cc-engine.el (c-on-identifier)
534 (c-simple-skip-symbol-backward): Small fix for handling "-"
535 correctly in `skip-chars-backward'. Affected the operator lfun
536 syntax in Pike.
537
538 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
539 Fix bug that could cause an error from `after-change-functions' when
540 the changed region is at bob.
541
542 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
543
544 CC Mode update to 5.30.9:
545
546 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
547 to say that <TAB> doesn't insert WS into a CPP line.
548 (c-indent-command, c-tab-always-indent): Amend doc strings.
549
550 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
551 checks for user errors, thus eliminating cryptic and unhelpful
552 Emacs error messages. (1) Check the arg to `c-set-style' is a
553 string. (2) Check that settings to `c-offsets-alist' are not
554 spuriously quoted.
555
556 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
557 which precedes the newly inserted `{'.
558
559 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
560
561 Sync with Tramp 2.0.44.
562
563 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
564 function "tramp_file_attributes". Otherwise, file names
565 containing spaces are misinterpreted. Reported by Magnus Henoch
566 <mange@freemail.hu>.
567 (tramp-handle-file-truename): FILENAME must be expanded first.
568 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
569 obscure results. Reported by D. Goel <deego@gnufans.org>.
570 (tramp-handle-verify-visited-file-modtime): If file does not
571 exist, say it is not modified if and only if that agrees with the
572 buffer's record. Check whether a file is visiting the buffer, or
573 the buffer has no recorded last modification time. Return t in
574 case the visiting file doesn't exist. Suggested by Luc Teirlinck
575 <teirllm@auburn.edu>.
576 (tramp-handle-write-region): Pass modtime explicitely to
577 `set-visited-file-modtime', because filename can be different
578 from (buffer-file-name) if `file-precious-flag' is set.
579 `set-visited-file-modtime' must be called always when `visit' is t
580 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
581 (tramp-handle-set-visited-file-modtime): If `time-list' is not
582 nil, don't apply the whole body. If the file doesn't exists, set
583 modtime to '(-1 65535). Suggested by Luc Teirlinck
584 <teirllm@auburn.edu>.
585
586 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
587
588 * help.el (describe-bindings): Doc fix.
589
590 * subr.el (kbd): Doc fix.
591
592 2004-08-08 John Paul Wallington <jpw@gnu.org>
593
594 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
595 instead of `string-to-int'.
596 (define-ibuffer-column mode): Fix indentation.
597
598 2004-08-08 Lars Hansen <larsh@math.ku.dk>
599
600 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
601
602 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
603
604 * subr.el (global-unset-key, local-unset-key): Doc fixes.
605
606 * novice.el (disabled-command-function): New variable renamed from
607 `disabled-command-hook'.
608 (disabled-command-hook): Keep the _variable_ as alias for
609 `disabled-command-function' and make obsolete.
610 (disabled-command-function): Function renamed from
611 `disabled-command-hook'. Adapt code to name change of the variable.
612
613 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
614
615 * simple.el (completion-root-regexp): New defvar.
616 (completion-setup-function): Use it instead of a literal string.
617
618 2004-08-07 John Paul Wallington <jpw@gnu.org>
619
620 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
621 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
622 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
623 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
624
625 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
626
627 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
628 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
629
630 2004-08-04 Kenichi Handa <handa@m17n.org>
631
632 * international/encoded-kb.el (encoded-kbd-setup-keymap):
633 Fix previous change.
634
635 2004-08-03 Kenichi Handa <handa@m17n.org>
636
637 * international/encoded-kb.el: The following changes are to
638 utilize key-translation-map instead of minor mode map.
639 (encoded-kbd-iso2022-non-ascii-map): Delete it.
640 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
641 (encoded-kbd-last-key): New function.
642 (encoded-kbd-iso2022-single-shift): New function.
643 (encoded-kbd-iso2022-designation)
644 (encoded-kbd-self-insert-iso2022-7bit)
645 (encoded-kbd-self-insert-iso2022-8bit)
646 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
647 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
648 key-translation-map.
649 (encoded-kbd-setup-keymap): Setup key-translation-map.
650 (saved-key-translation-map): New variable.
651 (encoded-kbd-mode): Save/restore key-translation-map. Adjusted
652 for the change of encoded-kbd-setup-keymap.
653
654 2004-08-02 Kim F. Storm <storm@cua.dk>
655
656 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
657 and call compute-motion with nil for topos and width to get proper
658 usable width and height for both window and non-window systems.
659
660 * windmove.el (windmove-coordinates-of-position): Let compute-motion
661 calculate usable window width and height.
662
663 * window.el (window-buffer-height): Call compute-motion with nil width.
664
665 2004-08-01 David Kastrup <dak@gnu.org>
666
667 * replace.el (query-replace-read-from):
668 Use `query-replace-compile-replacement'.
669 (query-replace-compile-replacement): New function.
670 (query-replace-read-to): Use `query-replace-compile-replacement'
671 for repeating the last command.
672
673 2004-08-01 John Paul Wallington <jpw@gnu.org>
674
675 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
676 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
677 (pr-switches): Remove period from end of error messages.
678
679 * help-mode.el (help-go-back): Likewise.
680
681 * abbrev.el (only-global-abbrevs): Doc fix.
682 (edit-abbrevs-map): Define within defvar.
683 (quietly-read-abbrev-file): Doc fix.
684
685 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
686
687 * novice.el (enable-command, disable-command): Doc fixes.
688
689 * subr.el (event-modifiers, event-basic-type): Doc fixes.
690
691 2004-07-30 Richard M. Stallman <rms@gnu.org>
692
693 * subr.el (with-local-quit): Doc fix.
694
695 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
696
697 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
698
699 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
700
701 * custom.el (defcustom): Doc fix.
702
703 2004-07-28 Masatake YAMATO <jet@gyve.org>
704
705 * progmodes/etags.el (etags-tags-apropos): Show building progress.
706
707 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
708
709 * imenu.el (imenu-prev-index-position-function)
710 (imenu-extract-index-name-function, imenu-name-lookup-function)
711 (imenu--index-alist): Docstring redundancy fix.
712
713 2004-07-25 Lars Hansen <larsh@math.ku.dk>
714
715 * wdired.el (wdired-finish-edit): Require dired-aux before locally
716 binding dired-backup-overwrite.
717
718 2004-07-25 John Paul Wallington <jpw@gnu.org>
719
720 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
721
722 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
723
724 * term/tty-colors.el (tty-color-approximate): Doc fix.
725
726 * select.el (x-get-selection, x-set-selection): Doc fixes.
727
728 * frame.el (make-frame): Doc fix.
729
730 2004-07-24 Richard M. Stallman <rms@gnu.org>
731
732 * mail/rmail.el (rmail-mime-charset-pattern):
733 Don't include semicolon in the charset value.
734
735 * replace.el (occur-next-error): Call set-window-point.
736 (occur-engine): Handle negative NLINES.
737
738 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
739
740 * frame.el (modify-all-frames-parameters): Minor doc fix.
741 (set-frame-configuration): Doc fix.
742
743 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
744
745 * simple.el (completion-setup-function): Compute the common parts
746 and the first difference place correctly when
747 partial-completion-mode is on.
748
749 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
750
751 * ps-print.el: Doc fix.
752 (ps-print-version): New version 6.6.5.
753 (ps-printing-region): Doc fix.
754 (ps-generate-string-list): Comment fix.
755 (ps-message-log-max): Code fix.
756
757 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
758
759 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
760 generated PostScript.
761
762 2004-07-22 Kim F. Storm <storm@cua.dk>
763
764 * progmodes/make-mode.el: Fix comments.
765
766 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
767
768 * printing.el: Doc fix.
769
770 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
771
772 * frame.el (modify-all-frames-parameters): Minor doc fix.
773
774 2004-07-20 Richard M. Stallman <rms@gnu.org>
775
776 * textmodes/fill.el (fill-nobreak-p): If this break point is
777 at the end of the line, don't consider the newline which follows
778 as a reason to return t.
779
780 2004-07-19 John Paul Wallington <jpw@gnu.org>
781
782 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
783
784 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
785
786 * dired-aux.el (dired-do-kill-lines): Expand docstring.
787 Delete irrelevant code.
788
789 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
790
791 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
792 New docstring. From Luc Teirlinck.
793
794 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
795
796 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
797 section.
798 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
799 non-file buffers. We know it is nil.
800
801 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
802
803 Sync with Tramp 2.0.43.
804
805 * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove
806 outdated comment.
807 (tramp-locked, tramp-locker): New variables for implementing a
808 global lock.
809 (tramp-sh-file-name-handler): Use them to implement the global
810 lock.
811
812 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
813
814 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
815 calls to respective `xxx` calls.
816 (tramp-process-alive-regexp): Precise doc string.
817 (tramp-multi-action-process-alive): New defun.
818 (tramp-multi-actions): Use it.
819 (tramp-handle-find-backup-file-name): `copy-tree' is available
820 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
821 in order to avoid this function.
822 (tramp-handle-write-region): Set current buffer. If connection
823 wasn't open, `file-modes' has changed it accidently. Reported by
824 David Kastrup <dak@gnu.org>.
825 (tramp-enter-password, tramp-read-passwd): New arguments USER and
826 HOST.
827 (tramp-action-password, tramp-multi-action-password): Apply it.
828 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
829 name must still contain the port number. Otherwise, we have two
830 Tramp buffers, with all the confusion. Reported by Myron Selby
831 <myron@xytech.com> and Rolf Dubitzky
832 <Dubitzky@physi.uni-heidelberg.de>.
833
834 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
835 HOST to `tramp-enter-passwd'.
836
837 * net/tramp-vc.el (all): Code cleanup. Change all
838 `tramp-handle-xxx' calls to respective `xxx` calls.
839
840 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
841
842 * emacs-lisp/testcover.el: New category "potentially-1valued" for
843 functions that are not erroneous if either 1-valued or
844 multi-valued. Detect functions in this class.
845 (testcover-1value-functions, testcover-compose-functions,
846 testcover-progn-functions) Added some additional functions to lists.
847 (testcover-mark): Bugfix when marking up the definition for an
848 empty function.
849
850 2004-07-17 Richard M. Stallman <rms@gnu.org>
851
852 * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer.
853
854 * mail/footnote.el (footnote-section-tag): Use defcustom.
855
856 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
857 Compile font-lock-keywords, not KEYWORDS.
858 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
859 Add warn, check-type. Handle cerror like error.
860
861 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
862
863 * progmodes/which-func.el (which-func-keymap): New var.
864 (which-func-face): New face.
865 (which-func-format): Use them.
866
867 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
868
869 * buff-menu.el (list-buffers-noselect): Append the buffer's
870 process status to its mode name.
871
872 2004-07-16 Kim F. Storm <storm@cua.dk>
873
874 * simple.el (inhibit-mark-movement): New defvar.
875 (beginning-of-buffer, end-of-buffer): Do not push mark if
876 inhibit-mark-movement is non-nil or C-u prefix is given.
877
878 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
879 Init to beginning-of-buffer and end-of-buffer.
880 (cua--undo-push-mark): New defvar.
881 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
882 already active and command is in cua--preserve-mark-commands.
883 Also fix check for shift modifier on non-window systems.
884 (cua--post-command-handler): Clear inhibit-mark-movement if set.
885
886 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
887
888 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
889 of two integers, instead of a cons.
890
891 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
892 `visited-file-modtime' now returns a list of two integers, instead
893 of a cons.
894
895 * dired.el (dired-directory-changed-p): Ditto.
896
897 * progmodes/grep.el (grep): Doc fix.
898
899 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
900
901 * autorevert.el (auto-revert-tail-mode)
902 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
903 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
904 in both at the same time.
905 (auto-revert-tail-mode): New command.
906 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
907 (auto-revert-handler): Revert only either tail or whole file.
908
909 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
910 add auto-revert-tail-mode.
911
912 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
913
914 * printing.el: Doc fix. Change name of some funs.
915 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
916 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
917 (pr-standard-file-name): New fun. Replace pr-standard-path.
918 (pr-call-process): Code fix.
919
920 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
921
922 * subr.el (with-selected-window): Doc fix.
923
924 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
925
926 * subr.el (get-buffer-window-list): Doc fix.
927
928 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
929
930 * files.el (switch-to-buffer-other-window): Doc fix.
931
932 * window.el (save-selected-window, one-window-p)
933 (split-window-keep-point, split-window-vertically)
934 (split-window-horizontally): Doc fixes.
935
936 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
937
938 * printing.el: Doc fix. Now it uses call-process instead of
939 shell-command for low command execution.
940 (pr-version): New version number (6.8).
941 (pr-shell-file-name): Option removed.
942 (pr-shell-command): Fun removed.
943 (pr-call-process): New fun. Replace pr-shell-command.
944 (pr-standard-path, pr-remove-nil-from-list): New funs.
945 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
946 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
947 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
948 (pr-ps-utility-process, pr-txt-print): Code fix.
949
950 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
951
952 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
953 boolean.
954
955 2004-07-09 Lars Hansen <larsh@math.ku.dk>
956
957 * wid-edit.el (widget-field-buffer): Doc fix.
958
959 2004-07-09 John Paul Wallington <jpw@gnu.org>
960
961 * emacs-lisp/re-builder.el (reb-update-overlays): Distinguish
962 between one and several matches in message.
963
964 2004-07-09 Richard M. Stallman <rms@gnu.org>
965
966 * mouse.el (mouse-set-region-1): If transient-mark-mode
967 is `identity', change it to `only'.
968
969 * simple.el (current-word): Doc fix.
970
971 2004-07-09 Mark A. Hershberger <mah@everybody.org>
972
973 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
974 so that it is more understanding of whitespace.
975
976 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
977 form
978 (("ns" . "element") (attr-list) children) instead of
979 ((:ns . "element") (attr-list) children) in order to reduce the
980 number of symbols used.
981 (xml-skip-dtd): Change to use xml-parse-dtd but set
982 xml-validating-parsing to nil.
983 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
984 (xml-substitute-entity): Remove in favor of new entity substitution.
985 (xml-substitute-special): Rewrite in to substitute complex
986 entities from DOCTYPE declarations.
987 (xml-parse-fragment): Parse fragments from entity deleclarations.
988 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
989 (xml-parse-dtd, xml-substitute-special): Make validity checks
990 conditioned on xml-validating-parser. Add "Not Well Formed" to
991 error messages about well-formedness.
992
993 2004-07-08 Steven Tamm <steventamm@mac.com>
994
995 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
996 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
997 Do not treat double clicks and triple clicks specially in the
998 scroll bar (preventing strange repositioning problems)
999
1000 2004-07-06 Stefan <monnier@iro.umontreal.ca>
1001
1002 * replace.el (query-replace-regexp-eval): Fix last change.
1003
1004 2004-07-05 Stefan <monnier@iro.umontreal.ca>
1005
1006 * replace.el (query-replace-descr): New fun.
1007 (query-replace-read-from, query-replace-read-args): Default to the
1008 previous from&to.
1009 (query-replace-read-to): Quote the `from' string when displaying it.
1010 (query-replace-regexp-eval): Immediately check read-only status.
1011 Use query-replace-read-from to get the \n checking.
1012 Quote the `from' string when displaying it.
1013 (map-query-replace-regexp, occur-read-primary-args):
1014 Quote the `from' string when displaying it.
1015
1016 * isearch.el (isearch-query-replace): Pass the regexp-ness and
1017 delimited-ness of the search to query-replace.
1018
1019 * replace.el (query-replace-read-from, query-replace-read-to):
1020 New funs extracted from query-replace-read-args.
1021 (query-replace-read-args): Use them.
1022
1023 * replace.el (query-replace-interactive, query-replace-read-args):
1024 Remove the `initial' special value.
1025 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
1026 (occur-engine): Remove unused var `matchend'.
1027
1028 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
1029 Use the search string without prompting.
1030
1031 2004-07-05 Kenichi Handa <handa@m17n.org>
1032
1033 * international/mule.el (decode-coding-inserted-region):
1034 Set last-coding-system-used only when coding is nil.
1035
1036 2004-07-03 Eli Zaretskii <eliz@gnu.org>
1037
1038 * progmodes/grep.el (grep-compute-defaults, grep-command)
1039 (grep-program, find-program, grep-find-use-xargs, grep-history)
1040 (grep-find-history, grep-tag-default, grep-find-command)
1041 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
1042 Add autoload cookies, for unbundled packages that load `compile'
1043 and expect all grep-related symbols to become defined.
1044
1045 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
1046
1047 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
1048 (iimage-mode-image-search-path): New user option to search the
1049 image file.
1050 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
1051 have locate-file.
1052 (iimage-mode-buffer): Use it.
1053
1054 2004-07-03 Nick Roberts <nickrob@gnu.org>
1055
1056 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
1057 carefully.
1058 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
1059
1060 2004-07-03 Juri Linkov <juri@jurta.org>
1061
1062 * replace.el (query-replace-read-args): Swallow space after 'foo,
1063 not after (quote foo). Match space only immediately after symbol,
1064 not anywhere in the whole string.
1065
1066 2004-07-02 Richard M. Stallman <rms@gnu.org>
1067
1068 * replace.el (query-replace-read-args): Swallow space after
1069 symbols, not after closeparens. But avoid error if string ends there.
1070
1071 * progmodes/python.el (python-beginning-of-statement):
1072 Exit the loop if backward-up-list gets error.
1073
1074 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
1075
1076 2004-07-02 Andre Spiegel <spiegel@gnu.org>
1077
1078 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
1079 only if vc-consult-headers is non-nil.
1080
1081 2004-07-02 Juri Linkov <juri@jurta.org>
1082
1083 * pcvs.el (cvs-mode-diff-repository): New command.
1084
1085 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
1086
1087 2004-07-01 Juri Linkov <juri@jurta.org>
1088
1089 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
1090 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
1091 C-M-% to isearch-query-replace-regexp.
1092 (minibuffer-local-isearch-map): Add arrow key bindings.
1093 Bind C-f to isearch-yank-char-in-minibuffer.
1094 (isearch-forward): Doc fix.
1095 (isearch-edit-string): Doc fix.
1096 (isearch-query-replace, isearch-query-replace-regexp): New funs.
1097 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
1098 (isearch-yank-char): Add optional arg.
1099 (isearch-yank-char-in-minibuffer): New fun.
1100
1101 * replace.el (query-replace-interactive): Change type from boolean
1102 to choice. Add value `initial'.
1103 (query-replace-read-args): Handle value `initial' of
1104 query-replace-interactive.
1105
1106 2004-06-29 Kim F. Storm <storm@cua.dk>
1107
1108 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
1109 (breakpoint-disabled-bitmap-face): Add :group 'gud.
1110
1111 * progmodes/ada-xref.el (ada-tight-gvd-integration):
1112 Add :group 'ada.
1113
1114 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
1115
1116 2004-06-29 Juri Linkov <juri@jurta.org>
1117
1118 * replace.el (query-replace-read-args): Swallow a space after
1119 everything except )]" which in most cases means after a symbol.
1120
1121 * emacs-lisp/pp.el (pp-buffer): Add autoload.
1122
1123 2004-06-28 Richard M. Stallman <rms@gnu.org>
1124
1125 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
1126 More changes to go with previous change in font-lock.el.
1127
1128 2004-06-26 David Kastrup <dak@gnu.org>
1129
1130 * replace.el (perform-replace): Highlight the match even in
1131 non-query mode if there is potential replace string editing.
1132
1133 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
1134
1135 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
1136 agree with new return value of `file-remote-p'.
1137 This syncs with Tramp 2.0.42.
1138
1139 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
1140 according to new documentation of `file-remote-p'.
1141
1142 * files.el (file-remote-p): Fix doc to say that return value is
1143 identification of remote system, if not nil.
1144 (file-relative-name): Use new return value of `file-remote-p'.
1145
1146 2004-06-26 Nick Roberts <nickrob@gnu.org>
1147
1148 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
1149 (gdb-goto-breakpoint): Fix breakage.
1150
1151 2004-06-26 Eli Zaretskii <eliz@gnu.org>
1152
1153 * man.el (Man-getpage-in-background): Add windows-nt to the list
1154 of systems where shell-file-name should be used instead of
1155 literal "sh".
1156
1157 2004-06-25 Sam Steingold <sds@gnu.org>
1158
1159 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
1160 function names `(setf symbol)'.
1161
1162 2004-06-24 Richard M. Stallman <rms@gnu.org>
1163
1164 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
1165
1166 * font-lock.el (font-lock-keywords): Change format of compiled values.
1167 Document it.
1168 (font-lock-add-keywords): If font-lock-keywords is compiled,
1169 extract the uncompiled version, modify, then recompile.
1170 (font-lock-remove-keywords): Likewise.
1171 (font-lock-fontify-keywords-region): Handle changed format.
1172 (font-lock-compile-keywords): Handle changed format.
1173 (font-lock-set-defaults): Compile the keywords explicitly here.
1174
1175 2004-06-24 David Kastrup <dak@gnu.org>
1176
1177 * replace.el (query-replace-read-args): Implement `\,' and `\#'
1178 replacements here.
1179 (query-replace-regexp): Doc string explaining this and the new
1180 `\?' replacement. Remove `\,' and `\#' implementation here, as it
1181 is better placed in `query-replace-read-args'.
1182 (replace-regexp): Explain `\,', `\#' and `\?'.
1183 (replace-match-data): New function for thorough reuse/destruction
1184 of old match-data.
1185 (replace-match-maybe-edit): Function for implementing `\?' editing.
1186 (perform-replace): Fix maintaining of the match stack including
1187 already matched regions, implement `\?', fix various problems
1188 with regions while editing and other stuff.
1189 (replace-highlight): Simplify.
1190
1191 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
1192
1193 * progmodes/grep.el (grep-error-screen-columns): New variable.
1194 (grep-regexp-alist): Give it the full functionality of gnu style
1195 compilation messages with line and column ranges. Ask me for the
1196 perl script I'm working on, that uses these.
1197
1198 2004-06-23 Nick Roberts <nickrob@gnu.org>
1199
1200 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
1201 Remove.
1202 (comint-insert-input, comint-mouse-insert-input): New functions
1203 based on comint-insert-clicked-input for two bindings but just
1204 one functionality.
1205
1206 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
1207
1208 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
1209
1210 2004-06-23 Lars Hansen <larsh@math.ku.dk>
1211
1212 * files.el (write-contents-functions): Doc fix.
1213
1214 2004-06-21 Juanma Barranquero <lektu@terra.es>
1215
1216 * image.el (image-library-alist): Rewrite docstring in active voice.
1217
1218 2004-06-20 Richard M. Stallman <rms@gnu.org>
1219
1220 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
1221
1222 * isearch.el (isearch-repeat): Avoid testing old match data.
1223 (isearch-message): Display trailing space in special font
1224 when search is failing.
1225 (isearch-search-fun-function): Doc fix.
1226
1227 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
1228
1229 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
1230
1231 * frame.el (show-trailing-whitespace): Doc fix.
1232
1233 * cus-edit.el (custom-variable-documentation): New function.
1234 (custom-variable): Use it.
1235
1236 2004-06-19 Nick Roberts <nickrob@gnu.org>
1237
1238 * man.el (Man-getpage-in-background): Revert previous change but
1239 make cygwin a special case.
1240
1241 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
1242
1243 * autorevert.el (global-auto-revert-non-file-buffers):
1244 Update docstring.
1245
1246 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
1247
1248 * progmodes/compile.el (compilation-error-properties): Store one
1249 more than end-col, if present, so that transient-mark-mode will
1250 highlight last char too.
1251 * progmodes/grep.el (grep-regexp-alist): Match columns and column
1252 ranges, if present.
1253
1254 2004-06-18 Jason Rumney <jasonr@gnu.org>
1255
1256 * makefile.w32-in: Double percent signs in for loops.
1257
1258 2004-06-17 David Kastrup <dak@gnu.org>
1259
1260 * replace.el (query-replace-read-args): Only warn about use of \n
1261 and \t when we are doing a regexp replacement and the actual
1262 escaped character is n or t.
1263 (query-replace-regexp): Add \, and \# interpretation to
1264 interactive call and document it.
1265 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
1266 as shortkey for replace-count.
1267 (replace-quote): New function for doubling backslashes.
1268
1269 2004-06-17 Juanma Barranquero <lektu@terra.es>
1270
1271 * files.el (parse-colon-path, cd): Mention in docstring that the
1272 path separator is colon in GNU-like systems.
1273
1274 * newcomment.el (comment-region-internal): Fix docstring.
1275
1276 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
1277 (ewoc-invalidate, ewoc-collect): Doc fixes.
1278 (ewoc--create-node, ewoc--delete-node-internal):
1279 Fix typos in docstring.
1280
1281 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1282
1283 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
1284 manual to docstring.
1285
1286 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1287
1288 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
1289
1290 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1291
1292 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1293 Add hyperlink to emacs-xtra manual to docstring.
1294
1295 * autorevert.el (global-auto-revert-non-file-buffers):
1296 Add hyperlink to emacs-xtra manual to docstring, as well as an
1297 info-link.
1298
1299 2004-06-14 Juanma Barranquero <lektu@terra.es>
1300
1301 * image.el (image-library-alist): New variable to map image types
1302 to external libraries. Initialized to nil, unless system-specific
1303 configs change it.
1304 (image-type-available-p): Determine whether an image type is
1305 available by calling `init-image-library'.
1306
1307 * term/w32-win.el (image-library-alist): Initialize to a known set
1308 of probable library names.
1309
1310 2004-06-14 Kenichi Handa <handa@m17n.org>
1311
1312 * international/code-pages.el (windows-1256, cp1125): Fix tables
1313 for several characters.
1314
1315 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
1316
1317 2004-06-13 Richard M. Stallman <rms@gnu.org>
1318
1319 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
1320
1321 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
1322 not "`pc-selection-mode'".
1323
1324 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
1325
1326 * simple.el (previous-matching-history-element): Specify a default.
1327
1328 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
1329
1330 * cus-face.el (custom-declare-face): Simplify code.
1331
1332 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
1333
1334 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
1335
1336 * files.el (before-save-hook): Add `time-stamp' to the options.
1337
1338 * time-stamp.el (time-stamp): Recommend adding it to
1339 `before-save-hook', rather than `write-file-functions'.
1340 Make a similar change in `Commentary' section.
1341
1342 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
1343
1344 * diff-mode.el (diff-current-defun): If at start of hunk, use
1345 position of first change.
1346
1347 2004-06-13 Lars Hansen <larsh@math.ku.dk>
1348
1349 * dired-x.el (dired-mark-omitted): Bind to "*O".
1350
1351 2004-06-12 Karl Fogel <kfogel@red-bean.com>
1352
1353 * bookmark.el (bookmark-bmenu-relocate): New function, as
1354 suggested by David J. Biesack <David.Biesack@sas.com>.
1355 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
1356 (bookmark-bmenu-mode): Describe binding in doc string.
1357 (bookmark-set-filename): Save the bookmark list if it's time.
1358
1359 2004-06-13 Kenichi Handa <handa@m17n.org>
1360
1361 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
1362 (ccl-untranslated-to-ucs): Fix typo.
1363
1364 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
1365
1366 * progmodes/python.el (python-open-block-statement-p):
1367 Fix indentation after a block opening that contains a comment.
1368
1369 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
1370
1371 * bindings.el (completion-ignored-extensions): Add file extensions
1372 of Python byte-compiled files.
1373
1374 2004-06-12 Juri Linkov <juri@jurta.org>
1375
1376 * info.el (Info-goto-node): Add autoload.
1377 (Info-toc): Add substring-no-properties on Info file name.
1378 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
1379 (Info-mode-map): Bind L to Info-history, T to Info-toc.
1380
1381 2004-06-12 Kenichi Handa <handa@m17n.org>
1382
1383 * international/mule-cmds.el (set-language-environment):
1384 Load subst tables if necessary.
1385
1386 * international/mule.el (decode-char): Load subst tables if necessary.
1387 (encode-char): Likewise.
1388
1389 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
1390 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
1391 (utf-16le-decode-loop): Set r5 to -1 before loop.
1392 (utf-16be-decode-loop): Likewise.
1393 (ccl-decode-mule-utf-16le): Add EOF processing block.
1394 (ccl-decode-mule-utf-16be): Likewise.
1395 (ccl-decode-mule-utf-16le-with-signature): Likewise.
1396 (ccl-decode-mule-utf-16be-with-signature): Likewise.
1397 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
1398 (ccl-mule-utf-16-encode-untrans): New CCL.
1399 (utf-16-decode-to-ucs): Handle pre-read character.
1400 (utf-16le-encode-loop): Handle surrogate pair.
1401 (utf-16be-encode-loop): Likewise.
1402 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
1403 of utf-16le-encode-loop.
1404 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
1405 of utf-16be-encode-loop.
1406 (mule-utf-16-post-read-conversion):
1407 Call utf-8-post-read-conversion at first.
1408 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
1409 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
1410 Add post-read-conversion and pre-write-conversion.
1411
1412 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
1413 (utf-translate-cjk-unicode-range): New variable.
1414 (utf-translate-cjk-load-tables): New function.
1415 (utf-lookup-subst-table-for-decode): New function.
1416 (utf-lookup-subst-table-for-encode): New function.
1417 (utf-translate-cjk-mode): Init-value changed to t. Don't load
1418 tables here. Update safe-charsets of utf-* coding systems.
1419 (ccl-mule-utf-untrans): New CCL.
1420 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
1421 at end of each branch.
1422 (ccl-mule-utf-8-encode-untrans): New CCL.
1423 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
1424 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
1425 length of encoding. Don't return r0.
1426 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
1427 (utf-8-post-read-conversion): Narrow to region properly.
1428 If utf-translate-cjk-mode is on, load tables if necessary.
1429 Call utf-8-compose with hash-table arg if necessary.
1430 Call XXX-compose-region instead of XXX-post-read-convesion.
1431 (utf-8-pre-write-conversion): New function.
1432 (mule-utf-8): Include CJK charsets in safe-charsets if
1433 utf-translate-cjk-mode is on. Add pre-write-conversion.
1434
1435 * international/characters.el: Temporarily set
1436 utf-translate-cjk-mode to nil.
1437
1438 * language/devan-util.el (devanagari-compose-region):
1439 Add autoload cookie.
1440
1441 * international/ccl.el (ccl-dump-call): Fix printing the
1442 subroutine name.
1443
1444 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
1445
1446 * dired.el (dired-revert): If buffer is marked unmodified before
1447 reverting, keep it marked unmodified.
1448 Adapt to new conventions for commenting out code.
1449 (dired-make-relative): Adapt to new conventions for commenting out code.
1450
1451 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
1452
1453 * eshell/esh-module.el (eshell-load-defgroups):
1454 Bind `vc-handled-backends' to nil when opening files.
1455
1456 2004-06-11 Juanma Barranquero <lektu@terra.es>
1457
1458 * files.el (parse-colon-path, cd): Doc fixes (refer to
1459 `path-separator', not colon).
1460
1461 2004-06-10 Juanma Barranquero <lektu@terra.es>
1462
1463 * newcomment.el (comment-search-forward)
1464 (comment-search-backward): Fix typos in docstring.
1465 (comment-region): Doc fix.
1466
1467 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
1468
1469 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
1470 switch is no longer stored in `dired-switches-alist'.
1471
1472 * dired-aux.el (dired-insert-subdir): Do not store R switch in
1473 `dired-switches-alist'.
1474
1475 2004-06-10 Kim F. Storm <storm@cua.dk>
1476
1477 * pcvs.el (cvs-mode-diff-yesterday): New command.
1478
1479 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
1480
1481 2004-06-10 Juri Linkov <juri@jurta.org>
1482
1483 * emacs-lisp/edebug.el (edebug-eval-defun):
1484 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
1485 Fix docstring.
1486
1487 * simple.el (eval-expression-print-format): Don't print additional
1488 information on the first call to `eval-print-last-sexp'.
1489 (next-error-find-buffer): Fix punctuation.
1490 (killing) <defgroup>: Fix punctuation.
1491 (yank-excluded-properties): Change group from editing to killing.
1492
1493 * replace.el (perform-replace): Use `limit' to terminate the
1494 while-loop explicitly.
1495
1496 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1497
1498 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
1499 Use lc-*.xpm as prefix instead of *-locol.xpm.
1500
1501 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
1502 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
1503 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
1504 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
1505 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
1506 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
1507 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
1508 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
1509 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
1510 * toolbar/lc-up_arrow.xpm:
1511 Renamed from *-locol.xpm.
1512
1513 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
1514
1515 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
1516 include forms like &<str>; as valid url patterns.
1517
1518 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
1519
1520 * dired.el (dired-diff, dired-backup-diff)
1521 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
1522 (dired-do-chown, dired-do-touch, dired-do-print)
1523 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
1524 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
1525 (dired-create-directory, dired-do-copy, dired-do-symlink)
1526 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
1527 (dired-do-copy-regexp, dired-do-hardlink-regexp)
1528 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
1529 (dired-maybe-insert-subdir, dired-next-subdir)
1530 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
1531 (dired-kill-subdir, dired-tree-up, dired-tree-down)
1532 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
1533 (dired-run-shell-command, dired-query): Remove redundant,
1534 or incorrect, autoloads.
1535
1536 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
1537 does not end in a slash. Add optional argument KILL-ROOT.
1538 Update docstring.
1539 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
1540 (dired-query): Add autoloads.
1541
1542 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
1543
1544 * progmodes/compile.el (compilation-set-window-height):
1545 Rearrange the save-* functions because a buffer can have several current
1546 point in different windows.
1547 (compilation-error-regexp-alist-alist): Recognize {standard input}
1548 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
1549
1550 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1551
1552 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
1553 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
1554 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
1555 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
1556 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
1557 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
1558 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
1559 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
1560 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
1561 * toolbar/up_arrow-locol.xpm:
1562 New versions of icons that uses fewer colors.
1563
1564 * toolbar/tool-bar.el (tool-bar-local-item)
1565 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
1566 if display-color-cells is 256 or less.
1567
1568 2004-06-08 Kim F. Storm <storm@cua.dk>
1569
1570 * wid-edit.el (widget-specify-button): Use hand pointer rather
1571 than mouse-face as visible mouse-over effect.
1572
1573 2004-06-07 Karl Fogel <kfogel@red-bean.com>
1574
1575 * saveplace.el (save-place-alist-to-file): Bind `print-length'
1576 and `print-level' to nil when writing out `save-place-alist'.
1577 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
1578
1579 2004-06-07 Juanma Barranquero <lektu@terra.es>
1580
1581 * completion.el (completion-kill-region): Doc fix.
1582
1583 * format.el (format-insert-annotations)
1584 (format-annotate-location): Doc fixes.
1585 (format-subtract-regions): Make arguments match their use in docstring.
1586
1587 * simple.el (kill-region): Doc fix.
1588
1589 * subr.el (insert-buffer-substring-no-properties)
1590 (insert-buffer-substring-as-yank): Doc fixes.
1591
1592 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
1593
1594 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1595 Update docstring.
1596 (dired-reset-subdir-switches): New function.
1597
1598 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
1599 Limit scope of `buffer-read-only' binding.
1600
1601 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
1602
1603 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
1604 eshell-explicit-command-char.
1605
1606 2004-06-06 Juanma Barranquero <lektu@terra.es>
1607
1608 * help-fns.el (help-argument-name): Inherit from italic face only
1609 if the frame supports it.
1610
1611 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1612
1613 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
1614 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
1615 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
1616 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
1617 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
1618 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
1619 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
1620 New conversions from xpm files.
1621
1622 * toolbar/README: New file.
1623
1624 2004-06-06 Richard M. Stallman <rms@gnu.org>
1625
1626 * isearch.el (isearch-mode-map): Undo previous change.
1627
1628 2004-06-05 Juri Linkov <juri@jurta.org>
1629
1630 * bindings.el (debug-ignored-errors): Add regexps for history
1631 related messages. Remove $ from "No further undo information".
1632 Move Ediff's messages to ediff.el.
1633
1634 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
1635
1636 * cus-edit.el (custom-display): Add `min-colors'.
1637
1638 * custom.el (defface): Add `supports' to docstring.
1639
1640 * help-fns.el (help-argument-name): Add :group 'help.
1641
1642 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
1643
1644 * find-dired.el (find-ls-subdir-switches): New user option.
1645 (find-dired): No longer call `abbreviate-file-name' on DIR.
1646 Set `dired-subdir-switches' buffer-locally.
1647
1648 * locate.el: Merge the two `Commentary' sections.
1649 (locate-ls-subdir-switches): New user option.
1650 (locate): Update for other changes.
1651 (locate-mode-map): Restore Dired binding for mouse-2.
1652 Bind `locate-mouse-view-file' to M-mouse-2.
1653 Bind `l' to `locate-do-redisplay'.
1654 (locate-main-listing-line-p, locate-do-redisplay): New functions.
1655 (locate-mouse-view-file, locate-tags, locate-find-directory):
1656 Print message if used outside main listing.
1657 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
1658 Various changes to support inserted subdirectories.
1659 (locate-insert-header): Change header of *Locate* buffer.
1660
1661 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1662 Change interactive default switches.
1663 (dired-rename-subdir-2): Update `dired-switches-alist'.
1664 (dired-insert-subdir, dired-kill-subdir):
1665 Handle `dired-switches-alist'. Do not mark buffer modified.
1666 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
1667 (dired-insert-subdir-doinsert): Omit messages.
1668 Handle `dired-subdir-switches'.
1669 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
1670
1671 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
1672 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
1673 subdirs if -R switch is used for a subdir.
1674 (dired-mode): Set `dired-switches-alist'.
1675 (dired-build-subdir-alist): Only print number of directories in
1676 echo area when invoked interactively.
1677
1678 2004-06-05 Lars Hansen <larsh@math.ku.dk>
1679
1680 * dired-x.el (dired-omit-mode): Rename from
1681 dired-omit-files-p. Use define-minor-mode to define it.
1682 (dired-omit-files-p): Add as alias for dired-omit-mode.
1683 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
1684 dired-mark-omitted.
1685 (dired-mark-omitted): Add. Bind to M-O.
1686
1687 2004-06-05 Kenichi Handa <handa@m17n.org>
1688
1689 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
1690
1691 2004-06-05 Juanma Barranquero <lektu@terra.es>
1692
1693 * help-fns.el (help-argument-name): Reintroduce face.
1694 (help-default-arg-highlight): Use it, now that
1695 `face-differs-from-default-p' can be trusted.
1696
1697 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
1698
1699 * textmodes/table.el: Sentence commands added to Point Motion
1700 group; kill and backward-kill commands added to Extraction group.
1701
1702 2004-06-04 Mario Lang <mlang@delysid.org>
1703
1704 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
1705 systems appear to use mW, make the code handle this. Fix a
1706 division-by-zero bug while at it, and handle kernels with
1707 a slightly different layout in /proc/acpi.
1708
1709 2004-06-04 Karl Fogel <kfogel@red-bean.com>
1710
1711 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
1712 because the latter is a CL-ism. This fixes the bug reported by
1713 Shawn Boyette <mdxi@collapsar.net> in
1714 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
1715
1716 2004-06-04 Miles Bader <miles@gnu.org>
1717
1718 * faces.el (display-supports-face-attributes-p): Function moved to
1719 C code. Previously only the tty-related portion of this function
1720 was done in C; however the previous attempt to do a halfway-proper
1721 job for non-tty displays in lisp didn't work properly because of
1722 funny conditions during Emacs startup.
1723 (face-differs-from-default-p): Simplify, now that
1724 display-supports-face-attributes-p works properly on all display
1725 types. Remove :stipple from comparison; it doesn't really work
1726 in emacs anyway.
1727
1728 2004-06-04 Miles Bader <miles@gnu.org>
1729
1730 * faces.el (face-differs-from-default-p): Use a different
1731 implementation, so we can really check whether FACE displays
1732 differently or not.
1733
1734 2004-06-04 Miles Bader <miles@gnu.org>
1735
1736 * faces.el (display-supports-face-attributes-p): Implement a
1737 `different from default' check for non-tty displays.
1738
1739 2004-06-03 David Kastrup <dak@gnu.org>
1740
1741 * woman.el (woman-mapcan): More concise code.
1742 (woman-topic-all-completions, woman-topic-all-completions-1)
1743 (woman-topic-all-completions-merge): Replace by a simpler and
1744 much faster implementation based on O(n log n) sort/merge instead
1745 of the old O(n^2) behavior.
1746
1747 2004-06-03 Miles Bader <miles@gnu.org>
1748
1749 * subr.el (read-number): Use canonical format for default in prompt.
1750
1751 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
1752 Add regexp for " [...]" style defaults.
1753
1754 2004-06-02 Romain Francoise <romain@orebokech.com>
1755
1756 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
1757 groups: if the user asks for a hidden buffer, open the
1758 corresponding filter group to expose it.
1759
1760 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
1761 `ibuffer-jump-to-buffer'.
1762 (ibuffer-jump-offer-only-visible-buffers): New user option.
1763
1764 2004-06-02 Juanma Barranquero <lektu@terra.es>
1765
1766 * faces.el (frame-update-faces): Add empty docstring so the one
1767 for `ignore' doesn't show through.
1768
1769 * subr.el (process-kill-without-query): Remove spurious "\n" on
1770 obsolescence string.
1771 (focus-frame, unfocus-frame): Add obsolescence declaration and
1772 empty docstring.
1773
1774 * international/mule.el (register-char-codings): Make alias for
1775 `ignore'. Move docstring to obsolescence info and remove redundancy.
1776
1777 2004-06-02 Kim F. Storm <storm@cua.dk>
1778
1779 * frame.el (blink-cursor-start): Turn cursor off initially so blink
1780 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
1781
1782 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1783
1784 * comint.el (comint-replace-by-expanded-history-before-point):
1785 Obey `start' as the docstring says.
1786 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
1787 (comint-update-fence): Prevent font-lock from running unnecessarily.
1788 (comint-dynamic-list-completions): Use with-current-buffer.
1789
1790 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1791
1792 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
1793 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
1794 (bibtex-entry-update): Handle alternatives and optional fields.
1795 (bibtex-parse-entry): Bugfix, handle empty key.
1796
1797 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1798
1799 * vc-arch.el (vc-arch-state): Don't assume the file exists.
1800
1801 2004-05-31 Lars Hansen <larsh@math.ku.dk>
1802
1803 * desktop.el (desktop-save): Don't save minor modes without a
1804 known mode initialization function.
1805
1806 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
1807
1808 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
1809
1810 * autorevert.el: Update `Commentary' section.
1811
1812 2004-05-30 Juanma Barranquero <lektu@terra.es>
1813
1814 * dos-fns.el (convert-standard-filename):
1815 * files.el (convert-standard-filename):
1816 * w32-fns.el (convert-standard-filename):
1817 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
1818
1819 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
1820
1821 Sync with Tramp.
1822
1823 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
1824 (tramp-let-maybe): Move to an earlier spot in the file.
1825 Patch by Andreas Schwab.
1826
1827 2004-05-30 Andreas Schwab <schwab@suse.de>
1828
1829 * dired.el (dired-get-filename): Don't use dired-re-dot.
1830
1831 2004-05-30 Richard M. Stallman <rms@gnu.org>
1832
1833 * files.el (find-file): Doc fix.
1834
1835 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
1836
1837 2004-05-30 Nick Roberts <nickrob@gnu.org>
1838
1839 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
1840 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
1841 modeline of the locals buffer.
1842 (gdb-goto-breakpoint): Handle gdbmi.
1843 (gdb-get-frame-number): Change for gdbmi.
1844
1845 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
1846
1847 * files.el (file-remote-p): Apply file name handler for operation
1848 `file-remote-p'. It isn' a property any longer.
1849 (file-relative-name): `fh' and `fd' get the required value via
1850 `find-file-name-handler' already.
1851
1852 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
1853 (top): Remove setting of `file-remote-p' property for
1854 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
1855
1856 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
1857
1858 Version 2.0.41 of Tramp released.
1859
1860 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
1861 Throw away if process has died.
1862 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
1863 (tramp-out-of-band-prompt-regexp): Rename to
1864 `tramp-process-alive-regexp', because its usage is widen.
1865 (tramp-actions-copy-out-of-band): Apply it.
1866 (tramp-actions-before-shell, tramp-multi-actions):
1867 Add `tramp-action-process-alive' action.
1868 (tramp-action-process-alive): New defun.
1869 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
1870 Add entry for `file-remote-p'.
1871 (tramp-handle-file-remote-p): New defun.
1872 (top): Remove setting of `file-remote-p'. Don't set
1873 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
1874
1875 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1876 `file-remote-p'.
1877
1878 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
1879 counted for (last) line. [They should or they shouldn't? --Stef]
1880 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
1881
1882 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
1883
1884 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
1885 not really necessary but seems to keep the shell history smaller
1886 in some cases. It is no substitute for setting HISTFILE and
1887 HISTSIZE from tramp-open-connection-setup-interactive-shell,
1888 though. Suggested by Luc Teirlinck.
1889 (tramp-open-connection-setup-interactive-shell): Export variables
1890 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
1891 (tramp-set-process-query-on-exit-flag): New compat function.
1892 (tramp-open-connection-multi, tramp-open-connection-su)
1893 (tramp-open-connection-rsh, tramp-open-connection-telnet)
1894 (tramp-do-copy-or-rename-file-out-of-band): Use it.
1895 (tramp-let-maybe): New macro, let-binds a variable only if it
1896 isn't obsolete.
1897 (tramp-check-ls-commands, tramp-handle-expand-file-name)
1898 (tramp-handle-file-truename): Use it.
1899 (tramp-completion-file-name-regexp-unified): Avoid matching
1900 filenames starting with "/:" -- those are reserved for
1901 file-name-non-special.
1902
1903 * tramp-smb.el (tramp-smb-open-connection):
1904 Use tramp-set-process-query-on-exit-flag compat function.
1905
1906 2004-05-29 Richard M. Stallman <rms@gnu.org>
1907
1908 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
1909
1910 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
1911 (eval-last-sexp-print-value): Print char equivalent regardless
1912 of standard-output value.
1913
1914 * thumbs.el (thumbs-subst-char-in-string): Delete.
1915 (thumbs-thumbname): Use subst-char-in-string.
1916 (thumbs-resize-image): Use condition-case, not ignore-errors.
1917 (thumbs-kill-buffer): Likewise.
1918
1919 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
1920 (thumbs-mode): Make buffer read-only.
1921 (thumbs-make-thumb): Unconditionally accept an existing file.
1922 (thumbs-insert-thumb): Add thumb-image-file property to the image.
1923 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
1924 (thumbs-show-thumbs-list): Error if images not supported.
1925 (thumbs-save-current-image): Improve prompt string.
1926 (thumbs-mode-map): Define u, R, x.
1927 (thumbs-unmark): New command.
1928 (thumbs-emboss-image): Minor cleanup.
1929 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
1930 (thumbs-rename-images): New command.
1931 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
1932
1933 * thumbs.el (thumbs-current-image): New function.
1934 (thumbs-file-list, thumbs-file-alist): New functions.
1935 (thumbs-find-image): Delete arg L.
1936 Don't set up thumbs-fileL as buffer-local global var.
1937 (thumbs-find-image-at-point): Use thumbs-current-image.
1938 (thumbs-set-image-at-point-to-root-window): Likewise.
1939 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
1940 Record and warn about errors. Update thumbs-markedL for deletions.
1941 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
1942 (thumbs-redraw-buffer): Use thumbs-file-list.
1943 (thumbs-mark): Use thumbs-current-image.
1944 (thumbs-show-name): Use thumbs-current-image.
1945
1946 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
1947 and imenu--last-menubar-index-alist.
1948
1949 * subr.el (with-selected-window): Undo previous change.
1950
1951 2004-05-29 John Paul Wallington <jpw@gnu.org>
1952
1953 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
1954 (thumbs-mouse-find-image): New command.
1955 (thumbs-mode-map): Bind it to mouse-2.
1956 (thumbs-mode): Make mode-class special.
1957 (thumbs-view-image-mode): Likewise.
1958
1959 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
1960
1961 * flymake.el: New file.
1962
1963 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
1964
1965 * files.el (find-file-noselect-1): Do not bind
1966 `inhibit-read-only' to t during execution of
1967 `find-file-not-found-functions'.
1968
1969 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1970
1971 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
1972 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
1973
1974 2004-05-28 Juri Linkov <juri@jurta.org>
1975
1976 * simple.el (eval-expression-print-format): New fun.
1977
1978 * simple.el (eval-expression):
1979 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
1980 * emacs-lisp/edebug.el (edebug-compute-previous-result)
1981 (edebug-eval-expression): Print additionally the value returned by
1982 `eval-expression-print-format'.
1983
1984 * emacs-lisp/lisp.el (insert-pair-alist): New var.
1985 (insert-pair): Make arguments optional. Find character pair
1986 from `insert-pair-alist' according to the last input event.
1987 (insert-parentheses): Make arguments optional.
1988 (raise-sexp, delete-pair): New funs.
1989
1990 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
1991 (emacs-lisp-mode-map, lisp-interaction-mode-map):
1992 Bind C-M-q to `indent-pp-sexp'.
1993
1994 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
1995 `pp-to-string' modified to be able to format text with newlines.
1996 (pp-to-string): Move the buffer-formatting part of the code to
1997 `pp-buffer'. Call `pp-buffer'.
1998
1999 * info.el (Info-desktop-buffer-misc-data): Don't save information
2000 about virtual files.
2001 (Info-restore-desktop-buffer): Restore Info buffers in prepared
2002 buffers with names obtained from the desktop file instead of the
2003 default *info* buffer.
2004
2005 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2006
2007 * subr.el (with-selected-window): Only save/restore the selected window.
2008
2009 * progmodes/compile.el (compilation-error-regexp-alist):
2010 Use expand-file-name and data-directory.
2011
2012 * progmodes/grep.el (grep-tree): Rework previous fix.
2013
2014 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
2015 after the user marked text with the mouse.
2016
2017 * startup.el (command-line): Keep the first regexp of
2018 auto-save-file-name-transforms intact.
2019
2020 2004-05-28 Juanma Barranquero <lektu@terra.es>
2021
2022 * cus-edit.el (customize-face, customize-face-other-window)
2023 (custom-face-edit-delete): Make arguments match their use in
2024 docstring.
2025 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
2026 docstring.
2027
2028 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
2029 not `cvs-butlast'.
2030
2031 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
2032 `nbutlast' are in subr.el).
2033
2034 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
2035 (set-w32-system-coding-system): Doc fixes.
2036
2037 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
2038 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
2039 Make arguments match their use in docstring.
2040 (artist-draw-region-trim-line-endings)
2041 (artist-mouse-choose-operation): Fix typo in docstring.
2042 (artist-key-set-point-common): Doc fix.
2043
2044 2004-05-28 Simon Josefsson <jas@extundo.com>
2045
2046 * mail/smtpmail.el (smtpmail-open-stream):
2047 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
2048
2049 2004-05-26 Simon Josefsson <jas@extundo.com>
2050
2051 * starttls.el: Merge with my GNUTLS based starttls.el.
2052 (starttls-gnutls-program, starttls-use-gnutls)
2053 (starttls-extra-arguments, starttls-process-connection-type)
2054 (starttls-connect, starttls-failure, starttls-success): New variables.
2055 (starttls-program, starttls-extra-args): Doc fix.
2056 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
2057 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
2058 and pass on to corresponding *-gnutls function if it is set.
2059
2060 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
2061
2062 * autorevert.el (auto-revert-handler): Disable auto-reverting of
2063 remote files.
2064
2065 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
2066
2067 * files.el (file-name-non-special): There are more operations
2068 which need handling: `find-backup-file-name',
2069 `insert-file-contents', `verify-visited-file-modtime',
2070 `write-region'. Rename t value of method to `add'. Add new
2071 methods `quote' and `unquote-then-quote' to file-arg-indices.
2072
2073 2004-05-25 Juri Linkov <juri@jurta.org>
2074
2075 * info.el (Info-toc): Call Info-mode on intermediate buffer.
2076 (Info-index-nodes): Enclose code in condition-case to catch errors.
2077 (Info-index-node): Don't search all index nodes if request is only
2078 for the current node and file is not in the cache of index nodes.
2079 (Info-mode-map): Bind Info-copy-current-node-name to `w'
2080 for consistency with dired-copy-filename-as-kill.
2081 Bind `S' to Info-search-case-sensitively.
2082 (Info-copy-current-node-name): New arg. With zero prefix arg put
2083 the name inside a function call to `info'. Display copied text in
2084 the echo area.
2085
2086 2004-05-25 Sam Steingold <sds@gnu.org>
2087
2088 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
2089 strip the package prefix from the symbol name, if any.
2090 Make it the `find-tag-default-function' for `lisp-mode'.
2091
2092 2004-05-25 John Paul Wallington <jpw@gnu.org>
2093
2094 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
2095 instead of obsolete `process-kill-without-query'.
2096
2097 * textmodes/texinfmt.el (texinfo-indexvar-alist):
2098 Declare as variable, not constant.
2099
2100 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
2101
2102 * files.el (find-file-noselect-1): Fix bug introduced by
2103 Revision 1.694. As a side effect, `inhibit-read-only'
2104 is again, by default, t during execution of
2105 `find-file-not-found-functions'.
2106 (insert-directory): Check that lines were really inserted by
2107 the --dired switch, before erasing them.
2108
2109 2004-05-24 Nick Roberts <nickrob@gnu.org>
2110
2111 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
2112 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
2113 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
2114 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
2115 gud-minor-mode (gdbmi).
2116
2117 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2118
2119 * net/browse-url.el (browse-url-interactive-arg): Enable user to
2120 explicitly select the text to be taken as URL.
2121
2122 2004-05-23 Juri Linkov <juri@jurta.org>
2123
2124 * info.el (Info-index-nodes): New var and fun.
2125 (Info-goto-index, Info-index, info-apropos)
2126 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
2127 (Info-index): Fix docstring. Store and restore Info-history-list.
2128 (Info-complete-nodes): New var.
2129 (Info-complete-menu-item): Use it.
2130 (Info-index-node): New fun.
2131 (Info-final-node, Info-forward-node, Info-backward-node)
2132 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
2133 Use Info-index-node.
2134 (Info-extract-menu-item, Info-extract-menu-counting): Set second
2135 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
2136 (Info-find-node-2): If a node with period in its name not found,
2137 try to find a node without the name part after period.
2138 (Info-select-node): Call Info-fontify-node only if
2139 Info-fontify-maximum-menu-size is not nil.
2140 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
2141 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
2142 Preserve Info-history-list.
2143 (Info-toc): Set Info-current-file.
2144 (Info-build-toc): Move point to the beginning of the buffer.
2145 Add main-file variable.
2146 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
2147 Use backslashed representation of the control character ^_.
2148
2149 * textmodes/texinfmt.el (texinfo-print-index): Print index line
2150 numbers in the new Texinfo 4.7 format.
2151
2152 * add-log.el (change-log-font-lock-keywords): Remove `:' from
2153 regexps for function and variable names.
2154
2155 * descr-text.el (describe-property-list): Add [show] button for
2156 `syntax-table' property with action to pp to a separate buffer.
2157 (describe-char): Replace search-forward by re-search-forward with
2158 whitespace regexp after "character:" to not fail in too narrow windows.
2159
2160 * simple.el (next-error-find-buffer): Add a rule to return
2161 next-error capable buffer if one window on the selected frame
2162 displays such buffer.
2163
2164 2004-05-23 Nick Roberts <nickrob@gnu.org>
2165
2166 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
2167 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
2168 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
2169 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
2170 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
2171 Handle new value for gud-minor-mode (gdbmi).
2172 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
2173 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
2174 Change from local to global gdb variable set.
2175 (gdb-ann3): Initialise above gdb variable set.
2176 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
2177 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
2178 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
2179 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
2180 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
2181 (gdb-info-locals-handler, gdb-invalidate-assembler)
2182 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
2183 set as global variables.
2184 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
2185 Handle gdbmi.
2186 (gdb-info-breakpoints-custom): Fix regexp.
2187 (def-gdb-var): Delete.
2188
2189 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
2190 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
2191 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
2192 a new mode. The file (gdb-mi.el) for this mode will be included
2193 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
2194 primary interface.
2195
2196 2004-05-23 Jesper Harder <harder@ifa.au.dk>
2197
2198 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
2199 interpreted as a directory.
2200
2201 2004-05-22 Richard M. Stallman <rms@gnu.org>
2202
2203 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
2204 as a close quote.
2205
2206 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
2207
2208 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
2209 Use assoc-string, not assoc-ignore-case.
2210
2211 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
2212
2213 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
2214 If moving back then fwd gets a defun that ends before point,
2215 try again moving fwd then back.
2216
2217 * files.el (file-name-non-special): Allow t in file-arg-indices
2218 to mean requote the return value. Use `identity' as an element
2219 rather than as the whole value.
2220
2221 * gs.el (gs-options): Add -dSAFER. Mark it risky.
2222
2223 2004-05-22 Juanma Barranquero <lektu@terra.es>
2224
2225 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
2226 `help-make-usage'.
2227 (help-highlight-arguments): Skip function name before searching
2228 for arguments.
2229
2230 2004-05-21 Juanma Barranquero <lektu@terra.es>
2231
2232 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
2233 Don't mention in the docstring these arguments meant for
2234 internal (recursive) use only.
2235 (allout-char-spec): Comment out (it's not implemented).
2236 (allout-old-expose-topic, allout-exposure): Fix docstring and add
2237 obsolescence declaration.
2238 (allout-flatten-exposed-to-buffer)
2239 (allout-indented-exposed-to-buffer): Fix typos in docstring.
2240 (my-mark-marker): Doc fix.
2241 (produce-allout-mode-map, allout-sibling-index)
2242 (allout-isearch-expose, allout-distinctive-bullet)
2243 (allout-open-topic, allout-reindent-body)
2244 (allout-rebullet-heading, allout-process-exposed)
2245 (allout-insert-listified, allout-latex-verb-quote)
2246 (allout-insert-latex-header, allout-insert-latex-trailer):
2247 Make arguments match their use in docstring.
2248 (allout-primary-bullet, allout-old-style-prefixes)
2249 (allout-inhibit-protection, allout-init, allout-mode)
2250 (allout-before-change-protect, allout-flag-region):
2251 Use "Emacs" instead of "emacs" in docstrings.
2252
2253 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
2254
2255 * international/characters.el: Modify syntax of more characters.
2256
2257 2004-05-21 Masatake YAMATO <jet@gyve.org>
2258
2259 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
2260 (etags-tags-completion-table): Show parsing progress.
2261
2262 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
2263
2264 * locate.el (locate-prompt-for-command): Shorten first line of
2265 docstring.
2266 (locate-mode): Expand docstring and include keymap summary.
2267
2268 * files.el (find-file-noselect-1): Limit the scope of the
2269 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
2270 is, by default, nil during the execution of
2271 `find-file-not-found-functions' and `find-file-hook'.
2272
2273 2004-05-20 Michael Mauger <mmaug@yahoo.com>
2274
2275 * facemenu.el (facemenu-color-name-equal): New function.
2276 (list-colors-display): Use it to compare colors instead of
2277 facemenu-color-equal.
2278
2279 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
2280
2281 * compare-w.el (compare-windows-face): Use min-colors instead of
2282 checking for tty or pc types.
2283
2284 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2285
2286 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
2287 (completion-setup-function): Use with-current-buffer.
2288 Properly save excursion. Simplify.
2289 Don't assume there is necessarily a `mouse-face' property somewhere.
2290
2291 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
2292
2293 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
2294
2295 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
2296 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
2297 Use with-current-buffer.
2298 (byte-goto-log-buffer): Delete.
2299 (byte-compile-log-file): Call compilation-forget-errors.
2300
2301 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2302
2303 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
2304 output messages into the search result.
2305
2306 2004-05-19 Masatake YAMATO <jet@gyve.org>
2307
2308 * wid-edit.el (widget-radio-button-notify): Revert my last
2309 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
2310
2311 2004-05-19 Kenichi Handa <handa@m17n.org>
2312
2313 * international/characters.el: Fix syntax (open/close) of CJK chars.
2314
2315 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
2316
2317 * help-mode.el (help-go-back): Don't depend on position of back button.
2318
2319 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2320
2321 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
2322 files files don't contain an accidental additional /.
2323
2324 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
2325 in source buffer.
2326
2327 2004-05-18 Masatake YAMATO <jet@gyve.org>
2328
2329 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
2330 to widget-apply. :action method assumes 2 arguments, not 3.
2331
2332 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
2333
2334 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
2335 New constants.
2336 (hs-special-modes-alist): Add an f90-mode entry.
2337
2338 2004-05-17 Sam Steingold <sds@gnu.org>
2339
2340 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
2341 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
2342
2343 2004-05-16 Kim F. Storm <storm@cua.dk>
2344
2345 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
2346
2347 2004-05-15 John Wiegley <johnw@newartisans.com>
2348
2349 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
2350 (eshell-output-object-to-target): Improve output speed 20% by not
2351 calling `eshell-stringify' if something is already known to be a string.
2352
2353 2004-05-15 Alex Ott <ott@jet.msk.su>
2354
2355 * textmodes/ispell.el (ispell-local-dictionary-alist):
2356 Add windows-1251 to the choice of coding systems.
2357 (ispell-dictionary-alist-6): Add support for "russianw.aff",
2358 encoded in cp1251.
2359
2360 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
2361
2362 * progmodes/compile.el (compilation-warning-face)
2363 (compilation-info-face): Use min-colors.
2364
2365 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2366
2367 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
2368 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
2369 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
2370 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
2371 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
2372 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
2373 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
2374 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
2375 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
2376 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
2377 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
2378 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
2379 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
2380 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
2381
2382 2004-05-15 Kim F. Storm <storm@cua.dk>
2383
2384 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
2385 Use it to set triggered-p element of timer.
2386 (timer-event-handler): Set triggered-p element non-nil while running
2387 the timer function.
2388
2389 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2390
2391 * descr-text.el (describe-char-unicode-data)
2392 (describe-char-unicodedata-file): Re-enable the unicode code now that
2393 the licensing issues have been cleared in the unicode-4 license.
2394 (describe-text-properties-1): Remove unused `overlay' var.
2395 (describe-char): Remove unused var `buffer'.
2396
2397 2004-05-14 David Ponce <david@dponce.com>
2398
2399 * tree-widget.el: New file.
2400
2401 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
2402
2403 * language/european.el ("Brazilian Portuguese"): Add support for
2404 Brazilian Portuguese.
2405
2406 2004-05-13 John Wiegley <johnw@newartisans.com>
2407
2408 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
2409 `recentf-mode' if this variable has been customized to t.
2410
2411 * eshell/esh-test.el (eshell-test): Call the function
2412 `emacs-version' rather than trying to build a custom version string.
2413
2414 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * net/telnet.el (telnet-mode): Use define-derived-mode.
2417 Don't modify the global value of comint-prompt-regexp.
2418
2419 2004-05-13 John Paul Wallington <jpw@gnu.org>
2420
2421 * version.el (emacs-version): Check for `gtk' feature before
2422 `x-toolkit' feature.
2423
2424 2004-05-13 Juanma Barranquero <lektu@terra.es>
2425
2426 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
2427 arguments in the docstring, they're used only in recursive calls.
2428
2429 * help-fns.el (help-arg-highlighting-function)
2430 (help-argument-name): Delete.
2431 (help-default-arg-highlight): New function.
2432 (help-do-arg-highlighting): Use it.
2433
2434 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
2435
2436 * calendar/appt.el (appt-disp-window):
2437 Use `calendar-set-mode-line' for a centered mode-line.
2438
2439 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2440
2441 * calendar/appt.el (appt-disp-window): Do not split window
2442 excessively when `split-height-threshold' is low.
2443
2444 2004-05-12 Nick Roberts <nickrob@gnu.org>
2445
2446 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
2447 kill-buffer-hook here and make it local.
2448 (gud-kill-buffer-hook): Use kill-process for a sure kill.
2449
2450 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
2451
2452 * progmodes/compile.el (compilation-set-window-height):
2453 Use save-excursion to protect against misplaced marker.
2454
2455 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2456
2457 * custom.el (defface): Document that type can have value gtk.
2458
2459 * faces.el (face-spec-set-match-display): Handle type gtk in display.
2460
2461 2004-05-12 Kenichi Handa <handa@m17n.org>
2462
2463 * descr-text.el: Require quail at comile time.
2464 (describe-char): If an input method is on and it supports the
2465 character, show how to input it.
2466
2467 * international/quail.el (quail-install-decode-map): Accept a
2468 char-table whose subtype is `quail-decode-map'.
2469 (quail-store-decode-map-key, quail-gen-decode-map1)
2470 (quail-gen-decode-map, quail-find-key1, quail-find-key)
2471 (quail-show-key): New functions.
2472
2473 2004-05-12 Juanma Barranquero <lektu@terra.es>
2474
2475 * generic.el (define-generic-mode): Remove redundant arglist info.
2476
2477 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
2478 Make arguments match their use in docstring.
2479 (help-arg-highlighting-function): New variable.
2480 (help-argument-name): Mention it in the docstring.
2481 (help-do-arg-highlight): Use it. Expand regexp to accept also
2482 ARG-xxx and xxx-ARG references.
2483
2484 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2485
2486 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
2487 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
2488 and "mailto:addr1?to=addr2" equal.
2489
2490 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
2491
2492 * man.el (Man-getpage-in-background): Use shell-file-name
2493 and shell-command-switch variables instead of hard-coded values.
2494
2495 2004-05-11 Eli Zaretskii <eliz@gnu.org>
2496
2497 * iimage.el: New file.
2498
2499 2004-05-11 Juanma Barranquero <lektu@terra.es>
2500
2501 * custom.el (custom-initialize-default, defcustom):
2502 Fix typo in docstring.
2503
2504 * files.el (set-visited-file-name, file-expand-wildcards):
2505 Fix docstring.
2506
2507 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2508
2509 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
2510
2511 * subr.el (eventp): Be more discriminating with integers.
2512
2513 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2514
2515 * progmodes/compile.el (compile): Add universal prefix arg.
2516 (compilation-error-regexp-alist-alist): Add edg patterns.
2517
2518 2004-05-10 Sam Steingold <sds@gnu.org>
2519
2520 * textmodes/ispell.el (ispell-message):
2521 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
2522
2523 2004-05-10 Dave Love <fx@gnu.org>
2524
2525 * progmodes/python.el (help-buffer): Autoload when compiling.
2526 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
2527 (run-python): Prepend to any existing PYTHONPATH.
2528
2529 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
2530
2531 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
2532 for pending breakpoints.
2533
2534 2004-05-10 Richard M. Stallman <rms@gnu.org>
2535
2536 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
2537 directly without calling any functions in Rmail.
2538 (unrmail-unprune): Function deleted.
2539
2540 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2541
2542 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
2543 C-c C-z binding.
2544
2545 2004-05-10 Kenichi Handa <handa@m17n.org>
2546
2547 * descr-text.el (describe-char): Fix previous change. Don't make
2548 a unibyte character to multibyte in the *Help* buffer.
2549
2550 2004-05-10 Miles Bader <miles@gnu.org>
2551
2552 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
2553 buffer an error if the debugger process is actually running.
2554
2555 2004-05-10 Juanma Barranquero <lektu@terra.es>
2556
2557 * help-fns.el (help-argument-name): Default to italic.
2558 (help-highlight-arguments): Return always (usage . doc), even when
2559 usage is nil.
2560
2561 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
2562 (define-ibuffer-filter): Add usage info.
2563 (define-ibuffer-op): Add usage info (but CL-style defaults for
2564 keyword args are not shown).
2565
2566 * subr.el (remove-overlays, read-passwd): Fix docstring.
2567 (start-process-shell-command): Fix docstring. Put usage info in a
2568 format usable by `describe-function'.
2569 (open-network-stream, open-network-stream-nowait)
2570 (open-network-stream-server): Fix docstring.
2571
2572 2004-05-09 Jason Rumney <jasonr@gnu.org>
2573
2574 * international/code-pages (cp932, cp936, cp949, c950): Remove.
2575 Only define cp125* if windows-125* is already defined.
2576
2577 * language/korean.el (cp949): Add alias.
2578
2579 * language/chinese.el (cp936, cp950): Add aliases.
2580
2581 * language/japanese.el (cp932): Add alias.
2582
2583 * term/w32-win.el: Require code-pages.
2584
2585 * international/mule-cmds.el (set-locale-environment):
2586 On MS-Windows use ansi code-page for default coding-systems.
2587 Set up paper sizes for Windows 3 letter languages.
2588
2589 * international/code-pages.el (cp932, cp936, cp949, cp950):
2590 Add aliases. Also add cp125* if not already defined.
2591
2592 2004-05-09 Juanma Barranquero <lektu@terra.es>
2593
2594 * help-fns.el (help-highlight-arguments): Don't try to highlight
2595 missing or autoloaded arglists. Accept structured arguments, like
2596 the first ones of `do' and `flet'.
2597
2598 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
2599 (cvs-get-marked): Remove redundant arglist info.
2600
2601 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
2602 Don't use CL-style default args.
2603
2604 2004-05-08 Andreas Schwab <schwab@suse.de>
2605
2606 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
2607
2608 * international/subst-ksc.el: Fix references to utf-translate-cjk
2609 into utf-translate-cjk-mode.
2610 * international/subst-big5.el: Likewise.
2611 * international/subst-gb2312.el: Likewise.
2612 * international/subst-jis.el: Likewise.
2613 * international/utf-16.el: Likewise.
2614 * international/utf-8.el: Likewise.
2615
2616 2004-05-08 John Wiegley <johnw@newartisans.com>
2617
2618 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
2619 "virtual buffers" (off by default), which makes it possible to
2620 switch to the "virtual" buffers of recently visited files. When a
2621 buffer name search fails, and this option is on, iswitchb will
2622 look at the list of recently visited files, and permit matching
2623 against those names. When the user hits RET on a match, it will
2624 revisit that file.
2625 (iswitchb-read-buffer): Add two optional arguments, which makes
2626 isearchb.el possible.
2627 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
2628 (iswitchb-next-match): Add support for virtual buffers.
2629
2630 * isearchb.el: This module extends iswitchb to provide "as you
2631 type" buffer selection.
2632
2633 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
2634 Ignore the read-only property when flyspell highlighting is on.
2635 Not ignoring it leads to a series of confusing errors.
2636 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
2637 but also make sure to call flyspell-incorrect-hook.
2638 (flyspell-maybe-correct-transposition): Perform transposition test
2639 by bit twiddling a string, rather than using a temp buffer.
2640 (flyspell-maybe-correct-doubling): Use a string rather than a temp
2641 buffer. This is also the original version of the code, which
2642 could not be checked in before due to a previous lack of
2643 assignment papers. This version has seen heavy usage on my system
2644 for several years now.
2645
2646 * calendar/cal-bahai.el: New file, which adds support for the
2647 Baha'i calendar to Emacs. This calendar is based on a solar year
2648 of 19 months of 19 days, with 4 intercalary days. Each year
2649 begins on March 21, with the calendar starting in 1844.
2650
2651 * calendar/cal-menu.el, calendar/calendar.el,
2652 calendar/diary-lib.el, calendar/holidays.el: Added support for
2653 using cal-bahai.el.
2654
2655 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
2656 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
2657 function can be used outside of eshell buffers.
2658 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
2659
2660 2004-05-08 Juanma Barranquero <lektu@terra.es>
2661
2662 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
2663 word constituent so FOO-ARG is not recognized as an arg.
2664 (help-highlight-arguments): Don't skip lists in mandatory arguments.
2665
2666 * simple.el (next-error): Fix typo in docstring.
2667 (open-line): Make argument names match their use in docstring.
2668 (split-line): Fix docstring.
2669
2670 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
2671 usable by `describe-function'.
2672 (gensym, gentemp, typep, ignore-errors): Make argument names match
2673 their use in docstring.
2674
2675 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
2676 argument to `help-setup-xref'.
2677
2678 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
2679
2680 Version 2.0.40 of Tramp released.
2681
2682 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
2683 Use symbol-function to invoke functions only known on some Emacs
2684 flavors. This avoids byte-compiler warnings. Reported by Kevin
2685 Scaldeferri <kevin@scaldeferri.com>.
2686 (tramp-do-copy-or-rename-file-via-buffer): Rename from
2687 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
2688 consistent with the other tramp-do-* functions.
2689 (tramp-do-copy-or-rename-file): Calls adjusted.
2690 (tramp-process-initial-commands): Avoid liveness check on shell --
2691 we know that it must be alive since we're opening a connection at
2692 this moment.
2693 (tramp-last-cmd): New internal variable.
2694 (tramp-process-echoes): New tunable.
2695 (tramp-send-command): Set tramp-last-cmd.
2696 (tramp-wait-for-output): Delete echo, if applicable.
2697 (tramp-read-passwd): Construct the key for the password cache in a
2698 way that works for multi methods, too.
2699 (tramp-bug): Add backup-directory-alist and
2700 bkup-backup-directory-info to bug reports, with Tramp counterparts.
2701
2702 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
2703
2704 * net/tramp*.el: Suppress byte-compiler warnings where possible.
2705
2706 * net/tramp.el (tramp-out-of-band-prompt-regexp)
2707 (tramp-actions-copy-out-of-band): New defcustoms.
2708 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
2709 used instead of a synchronous one. Allows password entering.
2710 (tramp-action-out-of-band): New defun.
2711 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
2712 Remove restriction with password from doc string.
2713 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
2714 `tramp-out-of-band-prompt-regexp',
2715 `tramp-actions-copy-out-of-band', `password-cache' and
2716 `password-cache-expiry'.
2717 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
2718 password caching.
2719 (tramp-touch): FILE can be a local file, too.
2720 (TODO): Remove items done.
2721 (tramp-handle-insert-directory): Properly quote file name also if
2722 not full-directory-p. Handle wildcard case. Reported by Andreas
2723 Schwab <schwab@suse.de>.
2724 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
2725 new file.
2726 (tramp-handle-file-local-copy, tramp-handle-write-region):
2727 The permissions of the temporary file are set if filename exists.
2728 Reported by Ted Stern <stern@cray.com>.
2729 (tramp-backup-directory-alist)
2730 (tramp-bkup-backup-directory-info): New defcustoms.
2731 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
2732 (tramp-handle-find-backup-file-name): New function.
2733 Implements Tramp's find-backup-file-name.
2734
2735 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
2736 for `find-backup-file-name'.
2737
2738 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
2739 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2740
2741 2004-05-07 Lars Hansen <larsh@math.ku.dk>
2742
2743 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
2744
2745 2004-05-07 Juanma Barranquero <lektu@terra.es>
2746
2747 * subr.el (lambda): Add arglist description to docstring.
2748 (declare): Fix typo in docstring.
2749 (open-network-stream): Fix docstring.
2750 (process-kill-without-query): Fix docstring and add obsolescence info.
2751 (last, butlast, nbutlast): Make arguments match their use in docstring.
2752 (insert-buffer-substring-no-properties): Likewise.
2753 (insert-buffer-substring-as-yank): Likewise.
2754 (split-string): Fix docstring.
2755
2756 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2757 Make argument names match their use in docstring.
2758
2759 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
2760
2761 2004-05-06 Nick Roberts <nickrob@gnu.org>
2762
2763 * progmodes/gdb-ui.el: Improve/extend documentation strings.
2764 Fit first sentence on one line for apropos-command.
2765
2766 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2767
2768 Changes largely merged in from Dave Love's code.
2769 * progmodes/python.el: Doc fixes.
2770 (python-mode-map): Add python-complete-symbol.
2771 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
2772 (python-comment-indent, python-complete-symbol)
2773 (python-symbol-completions, python-partial-symbol)
2774 (python-try-complete): New.
2775 (python-indent-line): Remove optional arg. Use python-block-end-p.
2776 (python-check): Bind compilation-error-regexp-alist.
2777 (inferior-python-mode): Use rx. Move keybindings to top level.
2778 Set comint-input-filter.
2779 (python-preoutput-filter): Use rx.
2780 (python-input-filter): Re-introduce.
2781 (python-proc): Start new process if necessary.
2782 Check python-buffer non-nil.
2783 (view-return-to-alist): Defvar.
2784 (python-send-receive): New.
2785 (python-eldoc-function): Use it.
2786 (python-mode-running): Don't defvar.
2787 (python-mode): Set comment-indent-function.
2788 Maybe update hippie-expand-try-functions-list.
2789 (python-indentation-levels): Initialize differently.
2790 (python-block-end-p): New.
2791 (python-indent-line): Use it.
2792 (python-compilation-regexp-alist): Augment.
2793 (run-python): Import `emacs' module to Python rather than loading
2794 code directly. Set python-buffer differently.
2795 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
2796 Use python-proc.
2797 (python-send-command): Go to end of comint buffer.
2798 (python-load-file): Use python-proc, emacs.eimport.
2799 (python-describe-symbol): Simplify interactive form.
2800 Use emacs.help. Do use temp-buffer-show-hook.
2801 Call print-help-return-message.
2802 (hippie-exp): Require when compiling.
2803 (python-preoutput-continuation): Use rx.
2804
2805 * diff-mode.el (diff-make-unified): Fix regexp.
2806
2807 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
2808
2809 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
2810 filter groups from the buffer when rebuilding the Ibuffer buffer
2811 and `ibuffer-show-empty-filter-groups' is nil.
2812
2813 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2814
2815 * ps-print.el (ps-print-quote): Call ps-value-string.
2816 (ps-setup): Call ps-comment-string.
2817 (ps-value-string, ps-comment-string): New funs.
2818
2819 2004-05-06 Juanma Barranquero <lektu@terra.es>
2820
2821 * ehelp.el (electric-help-command-loop): Check whether the last
2822 character is visible, not (point-max).
2823
2824 * help-fns.el (help-argument-name): Default to bold; don't inherit
2825 from font-lock-variable-name-face.
2826 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
2827
2828 2004-05-05 Kenichi Handa <handa@m17n.org>
2829
2830 * descr-text.el (describe-char): Copy the character with text
2831 properties and overlays into the first line, and call
2832 describe-text-properties on it.
2833
2834 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
2835
2836 * iswitchb.el (iswitchb-global-map): Fix typo.
2837 Remove unwanted ###autoloads from source file.
2838
2839 2004-05-05 Lars Hansen <larsh@math.ku.dk>
2840
2841 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
2842 in run-hooks. Use substitute-command-keys in message.
2843 (wdired-abort-changes): Add message.
2844
2845 2004-05-03 Michael Mauger <mmaug@yahoo.com>
2846
2847 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
2848 (sql-emacs20-p): Remove.
2849 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
2850 (sql-builtin-face, sql-doc-face): Remove.
2851 (sql-mode-ansi-font-lock-keywords)
2852 (sql-mode-oracle-font-lock-keywords)
2853 (sql-mode-postgres-font-lock-keywords)
2854 (sql-mode-linter-font-lock-keywords)
2855 (sql-mode-ms-font-lock-keywords)
2856 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
2857 (sql-product-font-lock): Fix font-lock reset when font rules change.
2858 (sql-highlight-product): Remove incorrect font-lock reset logic.
2859
2860 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
2861
2862 * ses.el (ses-set-parameter): Fix typo.
2863
2864 2004-05-04 Kim F. Storm <storm@cua.dk>
2865
2866 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
2867 Must expand directory for completion to work; and don't mess with
2868 process-environment.
2869 (ido-read-file-name): If command has ido property, don't use ido
2870 if value is ignore, or read as directory if value is dir.
2871 Set ido ignore property for dired-do-rename command.
2872
2873 2004-05-04 Juanma Barranquero <lektu@terra.es>
2874
2875 * ehelp.el (electric-help-command-loop, electric-help-undefined)
2876 (electric-help-help): Check against unmapped commands.
2877
2878 * help-fns.el (help-argument-name): New face, inheriting from
2879 font-lock-variable-name-face, to highlight function arguments in
2880 `describe-function' and `describe-key'.
2881 (help-do-arg-highlight): Auxiliary function to highlight a given
2882 list of arguments in a string.
2883 (help-highlight-arguments): Highlight the function arguments and
2884 all uses of them in the docstring.
2885 (describe-function-1): Use it. Do docstring output via `insert',
2886 not 'princ', so text attributes are preserved.
2887
2888 * winner.el (winner-mode-map): Move `winner-undo' and
2889 `winner-redo' to C-c <left> and C-c <right>, respectively (the
2890 previous bindings conflict with `prev-buffer', `next-buffer').
2891
2892 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2893
2894 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
2895 (bibtex-entry-update): New command bound to C-c C-u.
2896 (bibtex-text-in-string): Fix regexp.
2897 (bibtex-assoc-of-regexp): Remove.
2898 (bibtex-progress-message): Fix docstring.
2899 (bibtex-inside-field): Use if.
2900 (bibtex-assoc-regexp): New function.
2901 (bibtex-format-entry): Make code more robust so that it formats
2902 also old entries.
2903 (bibtex-autokey-demangle-title): Merge with obsolete function
2904 bibtex-assoc-of-regexp.
2905 (bibtex-field-list): New function.
2906 (bibtex-entry): Use bibtex-field-list.
2907 (bibtex-parse-entry): Fix docstring.
2908 (bibtex-print-help-message): Use bibtex-field-list.
2909 (bibtex-make-field): Use bibtex-field-list.
2910 (bibtex-entry-index): Bugfix. Return crossref key if required.
2911 (bibtex-lessp): Fix docstring.
2912
2913 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
2914
2915 * select.el (xselect-convert-to-string): Move comment to intended line.
2916
2917 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2918
2919 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
2920 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
2921
2922 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2923
2924 * term/x-win.el (x-clipboard-yank): Don't exit on error from
2925 x-get-selection.
2926
2927 2004-05-03 Jason Rumney <jasonr@gnu.org>
2928
2929 * makefile.nt: Remove.
2930
2931 2004-05-03 Kim F. Storm <storm@cua.dk>
2932
2933 * emulation/cua-base.el (cua--update-indications): Fix last change.
2934 (cua-mode): Deactivate mark when cua-mode is enabled.
2935
2936 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
2937
2938 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
2939
2940 2004-05-03 Nick Roberts <nickrob@gnu.org>
2941
2942 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
2943 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
2944 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
2945 window over visible frames.
2946 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
2947
2948 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2949
2950 * progmodes/compile.el (compilation-gcpro): New var.
2951 (compilation-fake-loc): Use it.
2952 (compilation-forget-errors): Reset it.
2953
2954 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2955
2956 * diff-mode.el (diff-header-face, diff-file-header-face):
2957 Use min-colors.
2958
2959 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2960
2961 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
2962 (bibtex-clean-entry): Disentangle code.
2963 (bibtex-realign): New function.
2964 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
2965 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
2966 Remove undocumented optional arg called-by-convert-alien.
2967 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
2968 for sorting instead of bibtex-sort-buffer.
2969
2970 2004-05-02 Eli Zaretskii <eliz@gnu.org>
2971
2972 * progmodes/compile.el (compilation-start): In the
2973 no-async-subprocesses branch, call sit-for to give redisplay a
2974 chance to show the updated process status in the mode line, and
2975 fontify the buffer explicitly after the process exits.
2976
2977 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2978
2979 * progmodes/python.el (python-compilation-line-number): Remove.
2980 (python-compilation-regexp-alist): Don't use it any more.
2981 (python-orig-start, python-input-filter): Remove.
2982 (inferior-python-mode): Don't set up comint-input-filter-functions.
2983 (python-send-region): Use compilation-fake-loc.
2984
2985 * progmodes/compile.el (compilation-messages-start): New var.
2986 (compilation-mode): Don't setup next-error-function here.
2987 (compilation-setup): Set it up here instead (for minor modes as well).
2988 Make compilation-messages-start buffer local.
2989 (compilation-next-error-function): Use it.
2990 (compilation-forget-errors): Set compilation-messages-start.
2991
2992 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
2993
2994 * ielm.el (ielm-prompt-read-only): Update docstring.
2995
2996 * comint.el (comint-prompt-read-only): Update docstring.
2997 (comint-update-fence, comint-kill-whole-line)
2998 (comint-kill-region): New functions.
2999
3000 * simple.el (kill-whole-line): Use "p" instead of "P" in
3001 interactive form.
3002
3003 2004-05-01 Juanma Barranquero <lektu@terra.es>
3004
3005 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
3006 format arglist so default values in CL-style argument lists are
3007 correctly shown.
3008
3009 2004-05-01 Jason Rumney <jasonr@gnu.org>
3010
3011 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
3012
3013 2004-05-01 Kenichi Handa <handa@m17n.org>
3014
3015 * international/titdic-cnv.el (miscdic-convert): Don't generate a
3016 quail file if it is up to date.
3017
3018 2004-04-30 Juri Linkov <juri@jurta.org>
3019
3020 * cus-edit.el (custom-mode-map):
3021 Add key binding `C-x C-s' to `Custom-save'.
3022
3023 * outline.el (outline-blank-line): New var.
3024 (outline-next-preface, outline-show-heading)
3025 (outline-end-of-subtree): Use it.
3026
3027 * dired-aux.el (dired-touch-initial): New fun.
3028 (dired-do-chxxx): Call it for op-symbol `touch'.
3029 (dired-diff): Use `dired-dwim-target-directory'
3030 if current dired buffer has no buffer mark.
3031
3032 * bindings.el (propertized-buffer-identification):
3033 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
3034 Add C-M-arrow keys for consistency.
3035
3036 * files.el (confirm-kill-emacs):
3037 Change group from top-level `emacs' to `convenience'.
3038
3039 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
3040 Push mark on the first call of successive command calls.
3041 (insert-pair): New fun created from `insert-parentheses' with
3042 `open' and `close' arguments added. Enclose active regions
3043 in paired characters. Compare adjacent characters syntax with
3044 inserted characters syntax before inserting a space.
3045 (insert-parentheses): Call `insert-pair' with ?\( ?\).
3046
3047 * delsel.el: Don't put `delete-selection' property
3048 on `insert-parentheses' symbol to take advantage of
3049 region handling in `insert-pair' function.
3050 Suggested by Stephan Stahl <stahl@eos.franken.de>.
3051
3052 2004-04-30 Kim F. Storm <storm@cua.dk>
3053
3054 * emulation/cua-base.el: Add support for changing cursor types;
3055 based on patch from Michael Mauger.
3056 (cua-normal-cursor-color, cua-read-only-cursor-color)
3057 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
3058 Customization cursor type and/or cursor color.
3059 (cua--update-indications): Handle cursor type changes.
3060 (cua-mode): Update cursor indications if enabled.
3061
3062 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
3063
3064 * mouse.el (mouse-drag-copy-region): New defcustom.
3065 (mouse-set-region, mouse-drag-region-1): Use it.
3066
3067 * simple.el (kill-ring-save): If region face background color is
3068 unspecified (if no highlighting), show extent of fully visible
3069 region even if transient-mark-mode is enabled.
3070
3071 * emulation/cua-base.el (cua--standard-movement-commands):
3072 Add cua-scroll-up and cua-scroll-down.
3073 (cua-scroll-up, cua-scroll-down): New commands.
3074 (cua--init-keymaps): Remap scroll-up and scroll-down.
3075
3076 * emulation/cua-rect.el (cua--convert-rectangle-as):
3077 New defmacro.
3078 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
3079 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
3080 New commands (suggested by Jordan Breeding).
3081
3082 2004-04-30 Juanma Barranquero <lektu@terra.es>
3083
3084 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
3085
3086 2004-04-30 Mario Lang <mlang@delysid.org>
3087
3088 * diff.el (diff-switches): Fix typo in docstring.
3089
3090 2004-04-30 Alex Schroeder <alex@gnu.org>
3091
3092 * xml.el (xml-debug-print-internal): Don't add newline and
3093 indentation to text nodes and write empty elements as empty tags
3094 instead of opening and closing tags.
3095 (xml-debug-print): Take optional indent-string argument.
3096 (xml-print): Alias for xml-debug-print.
3097
3098 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
3099
3100 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
3101 than duplicate call to `line-beginning-position'.
3102
3103 * progmodes/f90.el (f90-get-present-comment-type):
3104 Return whitespace, as well as comment chars, for consistent filling
3105 of comment blocks. Use `match-string-no-properties'.
3106 (f90-break-line): Trim trailing whitespace when filling comments.
3107
3108 2004-04-30 Dave Love <fx@gnu.org>
3109
3110 * calendar/diary-lib.el (diary-outlook-formats): New variable.
3111 (diary-from-outlook-internal, diary-from-outlook)
3112 (diary-from-outlook-gnus, diary-from-outlook-rmail):
3113 New functions to import diary entries from Outlook-format
3114 appointments in mail messages.
3115
3116 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
3117
3118 * progmodes/python.el (python-send-command): New fun.
3119 (python-send-region, python-load-file): Use it.
3120
3121 * progmodes/compile.el (compilation-last-buffer): Add var alias.
3122
3123 * help-fns.el (help-C-file-name): Use new subr-name.
3124 Prepend `src/' to the file name.
3125 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
3126 (describe-function-1, describe-variable): Only find a C source file
3127 name if DOC is already loaded.
3128
3129 * help-mode.el (help-function-def, help-variable-def):
3130 Use the new find-function-search-for-symbol functionality.
3131 Allow FILE to be `C-source'.
3132
3133 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
3134 (find-function-C-source): New fun.
3135 (find-function-search-for-symbol): Use it.
3136
3137 2004-03-29 Michael Mauger <mmaug@yahoo.com>
3138
3139 * progmodes/sql.el (sql-product-alist): Rename variable
3140 `sql-product-support'. Add Postgres login parameters.
3141 (sql-set-product, sql-product-feature): Update with renamed variable.
3142 (sql-connect-postgres): Add username prompt.
3143 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
3144 Make patterns less product specific.
3145 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
3146 (sql-mode-abbrev-table): Modify initialization.
3147 (sql-builtin-face): Add variable.
3148 (sql-keywords-re): Add macro.
3149 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
3150 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
3151 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
3152 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
3153 (sql-mode-linter-font-lock-keywords)
3154 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
3155 (sql-mode-sybase-font-lock-keywords)
3156 (sql-mode-informix-font-lock-keywords)
3157 (sql-mode-interbase-font-lock-keywords)
3158 (sql-mode-ingres-font-lock-keywords)
3159 (sql-mode-solid-font-lock-keywords)
3160 (sql-mode-sqlite-font-lock-keywords)
3161 (sql-mode-db2-font-lock-keywords): Default to nil.
3162 (sql-product-font-lock): Always highlight ANSI keywords.
3163 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
3164 (sql-send-string): Add function.
3165
3166 2004-04-29 Dave Love <fx@gnu.org>
3167
3168 * progmodes/cfengine.el (cfengine-beginning-of-defun)
3169 (cfengine-end-of-defun): Ensure progress through buffer.
3170
3171 * info-look.el (cfengine-mode): Accept a terminal ().
3172
3173 2004-04-29 Juri Linkov <juri@jurta.org>
3174
3175 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
3176 instead of isearch-yank-word-or-char. Add new key bindings for
3177 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
3178 (isearch-del-char): New fun.
3179 (isearch-forward, isearch-edit-string): Update docstring.
3180 (isearch-yank-char): Doc fix.
3181 (isearch-other-meta-char): Restore point after scrolling.
3182
3183 * progmodes/compile.el (compilation-context-lines): Add nil option
3184 to disable compilation output window scrolling.
3185 (compilation-set-window): Use it.
3186
3187 * outline.el (outline-next-preface, outline-show-heading):
3188 Don't leave unhidden blank line before heading.
3189 (outline-end-of-subtree): Include last newline into subtree.
3190 (hide-entry): Leave point at beginning of heading instead of end.
3191 (outline-up-heading): Push mark for the first call of successive
3192 command calls.
3193
3194 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
3195
3196 * comint.el (comint-prompt-read-only): New variable.
3197 (comint-output-filter): Implement it.
3198
3199 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
3200 (ielm-prompt-internal): New variable.
3201 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
3202 (ielm-send-input): Delete unused variable `buf'.
3203 (ielm-eval-input): Use `ielm-prompt-internal'.
3204 (inferior-emacs-lisp-mode): Use new variables
3205 `comint-prompt-read-only' and `ielm-prompt-internal'.
3206 Get rid of obsolete variable `directory-sep-char'.
3207 (ielm): Use `zerop'.
3208
3209 2004-04-29 John Paul Wallington <jpw@gnu.org>
3210
3211 * thumbs.el (toplevel): Require cl at compile time.
3212 Remove conditional definitions of `ignore-errors' and `caddar'
3213 because they occur at run time.
3214
3215 2004-04-28 Nick Roberts <nickrob@gnu.org>
3216
3217 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
3218 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
3219 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3220 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
3221
3222 * progmodes/gud.el (gud-common-init): Throw an error if program is
3223 already running under gdb.
3224
3225 2004-04-28 John Paul Wallington <jpw@gnu.org>
3226
3227 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
3228 (thumbs-show-image-num): Move assignment of
3229 `thumbs-current-image-filename' within scope of `i'.
3230 (thumbs-emboss-image): Don't use `evenp'.
3231
3232 2004-04-28 Richard M. Stallman <rms@gnu.org>
3233
3234 * progmodes/compile.el (compilation-context-lines): Default now 0.
3235
3236 2004-04-28 Juanma Barranquero <lektu@terra.es>
3237
3238 Use `time-less-p' from calendar/time-date.el instead of defining
3239 custom versions of it.
3240
3241 * pcomplete.el (pcomplete-time-less-p): Remove.
3242
3243 * thumbs.el (time-less-p): Remove.
3244
3245 * calendar/timeclock.el (timeclock-time-less-p): Remove.
3246 (timeclock-generate-report): Use `time-less-p'.
3247
3248 * emacs-lisp/autoload.el (autoload-before-p): Remove.
3249 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
3250
3251 2004-04-28 Masatake YAMATO <jet@gyve.org>
3252
3253 * subr.el (remove-overlays): Make arguments optional.
3254
3255 * wid-edit.el (widget-specify-button): Put evaporate to the
3256 overlay for sample.
3257 (widget-specify-sample): Put evaporate to the overlay for sample.
3258 (widget-specify-doc): Put evaporate to the overlay for documentation.
3259
3260 2004-04-27 Jesper Harder <harder@ifa.au.dk>
3261
3262 * info.el (info-apropos): Make it an index node. Align node names
3263 like makeinfo.
3264
3265 2004-04-27 Eli Zaretskii <eliz@gnu.org>
3266
3267 * net/browse-url.el (browse-url-netscape-sentinel)
3268 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
3269 (browse-url-epiphany-sentinel, browse-url-mosaic):
3270 Use browse-url-*-program instead of a literal program name.
3271
3272 2004-04-27 Kevin Ryde <user42@zip.com.au>
3273
3274 * eshell/em-alias.el:
3275 * eshell/em-dirs.el:
3276 * eshell/em-hist.el:
3277 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
3278 features when M-x customize-group loads modules before the main
3279 eshell.el.
3280
3281 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
3282
3283 * subr.el (momentary-string-display): Support EXIT-CHAR that is
3284 either a character representation of an event or an event
3285 description list.
3286
3287 * type-break.el: Capitalise Emacs and Lisp.
3288 (type-break-good-break-interval, type-break-demo-boring-stats)
3289 (type-break-terse-messages, type-break-file-name): New defcustoms.
3290 (type-break-post-command-hook)
3291 (type-break-warning-countdown-string): Quote variable names in doc.
3292 (type-break-interval-start, type-break-auto-save-file-name): New vars.
3293 (type-break-mode): Document type-break-good-break-interval and the
3294 "session" file. Schedule break according to the session file.
3295 Kill session file buffer on exit. Organise for save-some-buffers
3296 to always save the session file.
3297 (type-break-mode-line-message-mode, type-break-query-mode):
3298 Uppercase arguments.
3299 (type-break-file-time, type-break-file-keystroke-count, timep)
3300 (type-break-choose-file, type-break-get-previous-time)
3301 (type-break-get-previous-count): New defuns.
3302 (type-break): Avoid break querying after a completed break in the
3303 case where the query was initiated during user invocation of the
3304 break. Optional terse messages.
3305 Use type-break-good-break-interval if type-break-good-rest-interval is
3306 nil. File the break time.
3307 (type-break-schedule): New optional args for overriding the use of
3308 the current time.
3309 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
3310 after a break.
3311 (type-break-check): File the keystroke count.
3312 (type-break-do-query): Prevent a second query when the break is
3313 interrupted. Optional terse message.
3314 (type-break-keystroke-reset): Record the start of a typing interval.
3315 (type-break-demo-boring): Optional terse messages. Display word
3316 per minute and keystroke counts according to
3317 type-break-demo-boring-stats.
3318
3319 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
3320
3321 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
3322 directories, make sure they exist under archive-tmpdir.
3323
3324 2004-04-27 Juri Linkov <juri@jurta.org>
3325
3326 * help.el (view-emacs-news): With argument, display info for the
3327 selected version by finding it among different NEWS files, and
3328 narrowing the buffer to the selected version.
3329
3330 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
3331 same-window-buffer-names.
3332 (info): New arg `buffer'. Use it. Doc fix. Read file name for
3333 non-numeric prefix argument, append the number to the buffer name
3334 for numeric prefix argument.
3335 (info-other-window): Bind same-window-regexps to nil.
3336 (Info-reference-name): Rename to Info-point-loc.
3337 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
3338 and Info-find-index-name for stringy Info-point-loc.
3339 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
3340 without middle `.', but with final `.' and optional line number
3341 for it. Set Info-point-loc for index nodes.
3342 (Info-index): Remove middle `.' from index entry regexp.
3343 Modify line number regexp.
3344 (Info-index-next): Decrement line number.
3345 (info-apropos): Remove middle `.' from index entry regexp.
3346 Add optional line number regexp at the end. Add matched value
3347 for line number to the result list and insert it to the buffer.
3348 Replace match-string by match-string-no-properties.
3349 Reorder result list.
3350 (Info-fontify-node): Hide index line numbers.
3351 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
3352 empty matches.
3353 (Info-follow-reference): Use `str' instead of
3354 Info-following-node-name-re.
3355 (Info-toc): Use full file names. Set Info-current-node to "Top".
3356 (Info-fontify-node): Compare file names without directory name.
3357 (Info-try-follow-nearest-node): Don't set Info-reference-name.
3358 Set second arg of Info-extract-menu-node-name for index nodes.
3359 (info-xref-visited): Use magenta3 instead of magenta4.
3360 (Info-mode): Add info-apropos to docstring.
3361
3362 * log-view.el (log-view-diff): Replace interactive code "r"
3363 by a list to allow to call it even if region is not active.
3364
3365 * paren.el (show-paren-highlight-openparen): New var.
3366 (show-paren-function): Turn on openparen highlighting when
3367 matching forward if show-paren-highlight-openparen is non-nil.
3368
3369 * simple.el (kill-ring-save): Use blink-matching-delay instead of
3370 the constant value 1.
3371 (completions-common-part): Expand docstring.
3372
3373 * textmodes/picture.el (picture-mode-map): Add arrow keys.
3374
3375 2004-04-27 Kim F. Storm <storm@cua.dk>
3376
3377 * image.el (insert-sliced-image): Use line-height instead of
3378 line-spacing property on newline.
3379
3380 2004-04-26 Lars Hansen <larsh@math.ku.dk>
3381
3382 * desktop.el (desktop-buffer-misc-data-function): Rename to
3383 desktop-save-buffer and change docstring.
3384 (desktop-buffer-modes-to-save): Delete.
3385 (desktop-save-buffer-p): Use desktop-save-buffer instead of
3386 desktop-buffer-modes-to-save.
3387 (desktop-save): Rename desktop-buffer-misc-data-function to
3388 desktop-save-buffer and allow non-function value.
3389 (desktop-missing-file-warning): Correct docstring.
3390
3391 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
3392 to desktop-save-buffer.
3393
3394 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
3395 desktop-save-buffer.
3396
3397 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
3398
3399 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
3400
3401 2004-04-26 Eli Zaretskii <eliz@gnu.org>
3402
3403 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
3404
3405 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
3406
3407 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
3408 (ielm): Only go to the end of the buffer when starting a new process.
3409
3410 2004-04-25 Juanma Barranquero <lektu@terra.es>
3411
3412 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
3413 mode line. Bind `inhibit-read-only' to t before modifying
3414 properties of text in the buffer.
3415 (ielm): Force point to the end of buffer, even when running ielm
3416 from inside itself.
3417
3418 2004-04-25 Jesper Harder <harder@ifa.au.dk>
3419
3420 * info.el (info-apropos): Reset Info-complete-cache.
3421
3422 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
3423
3424 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3425 Also recognize severe Irix et al. messages.
3426 (compilation-normalize-filename, compile-abbreviate-directory):
3427 Delete functions.
3428 (compilation-get-file-structure): New function inherits
3429 functionality of the two preceding ones.
3430 (compilation-internal-error-properties, compilation-fake-loc):
3431 Use it so that different paths to the same file share the same
3432 markers. Also optimize finding adjacent marker slightly.
3433
3434 2004-04-25 Kim F. Storm <storm@cua.dk>
3435
3436 * image.el (insert-sliced-image): Add line-spacing t property
3437 to newlines separating image lines.
3438
3439 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
3440
3441 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
3442
3443 * ielm.el (ielm-prompt-read-only): New user option.
3444 (ielm-prompt): Expand docstring to describe new behavior.
3445 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
3446 mention it in the docstring.
3447
3448 2004-04-24 Andreas Schwab <schwab@suse.de>
3449
3450 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
3451
3452 * diff.el (diff): Set default-directory in diff buffer.
3453
3454 2004-04-24 Eli Zaretskii <eliz@gnu.org>
3455
3456 * mail/sendmail.el (mail-bury): Don't delete the frame where the
3457 mail was being composed if the terminal cannot display more than
3458 one frame; instead, switch to previous frame.
3459
3460 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
3461 (rmail-start-mail): Support rmail-mail-new-frame even on
3462 terminals that can display only one frame at a time.
3463
3464 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
3467 (checkdoc-output-font-lock-keywords): Remove error regexp.
3468 (checkdoc-output-mode-map): Remove.
3469 (checkdoc-output-mode): Derive from compilation-mode.
3470 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
3471
3472 * dired.el (dired-mode-map): Add a menu entry for wdired.
3473
3474 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
3475 (rx-bracket, rx-check-any, rx-any): Clean up name space.
3476
3477 * wdired.el: (wdired-mode-map): Move init into declaration.
3478 Fix `return' binding.
3479 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3480 Use force-mode-line-update.
3481 (wdired-get-filename): Use `unless'.
3482 (wdired-preprocess-files): Don't assume names have no \n and use / for
3483 dir separator.
3484 (wdired-normalize-filename): Use replace-regexp-in-string.
3485 (wdired-load-hooks): Remove.
3486 (wdired-mode-hooks): Rename to wdired-mode-hook.
3487
3488 * info-look.el: Add support for cfengine-mode.
3489 (info-lookup-setup-mode): Use dolist.
3490
3491 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
3492
3493 * wdired.el: New file.
3494
3495 2004-04-23 Juanma Barranquero <lektu@terra.es>
3496
3497 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
3498
3499 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
3500 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
3501 (pcomplete--help, pcomplete--here): Doc fixes.
3502
3503 2004-04-23 Andre Spiegel <spiegel@gnu.org>
3504
3505 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
3506 handles wrong-number-of-arguments in backend call.
3507
3508 * vc.el (vc-print-log): Likewise.
3509
3510 2004-04-20 Dave Love <fx@gnu.org>
3511
3512 * emacs-lisp/rx.el: Doc fixes.
3513 (rx-constituents): Add/extend many forms.
3514 (rx-check): Check form is a list.
3515 (bracket): Defvar.
3516 (rx-check-any, rx-any, rx-check-not): Modify.
3517 (rx-not): Simplify.
3518 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
3519 (rx-kleene): Use rx-trans-forms.
3520 (rx-quote-for-set): Delete.
3521 (rx): Allow multiple args.
3522
3523 2004-04-23 Kenichi Handa <handa@m17n.org>
3524
3525 * international/mule-util.el (char-displayable-p): Simplify by
3526 using internal-char-font.
3527
3528 2004-04-23 Juanma Barranquero <lektu@terra.es>
3529
3530 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3531
3532 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3533
3534 * diff-mode.el (diff-next-error): New fun.
3535 (diff-mode): Use it.
3536
3537 * simple.el (next-error): Change arg name.
3538 Add support for the documented C-u C-x ` usage.
3539
3540 * frame.el (special-display-popup-frame, next-multiframe-window)
3541 (previous-multiframe-window): Only consider frames on same display.
3542
3543 2004-04-22 Lars Hansen <larsh@math.ku.dk>
3544
3545 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
3546 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
3547
3548 2004-04-22 Kim F. Storm <storm@cua.dk>
3549
3550 * net/telnet.el (telnet): Add optional port arg.
3551
3552 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3553
3554 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3555 Minor sanity check on the `hyperlink' slot.
3556
3557 * Makefile.in (recompile): Compile new files.
3558
3559 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
3560 Add byte-recompile-directory's optional `arg'.
3561
3562 * cvs-status.el (cvs-tree-use-charset): New var.
3563 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
3564 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
3565 (cvs-status-cvstrees): Use it.
3566
3567 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
3568 Make it a normal major mode.
3569 (checkdoc-buffer-label): Make sure the file name is meaningful.
3570 (checkdoc-output-to-error-buffer): Remove.
3571 (checkdoc-error, checkdoc-start-section): Rewrite.
3572
3573 * info.el (info-node, info-menu-5, info-xref, info-header-node)
3574 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3575 (Info-title-4-face): Use new syntax.
3576 (info-xref-visited): Inherit from info-xref.
3577
3578 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
3579
3580 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
3581
3582 * simple.el (next-error-last-buffer, next-error-function):
3583 New variables for the next-error framework.
3584 (next-error-buffer-p): New function.
3585 (next-error-find-buffer): Generalize compilation-find-buffer.
3586 (next-error, previous-error, first-error, next-error-no-select)
3587 (previous-error-no-select): Move from compile.el.
3588
3589 * replace.el (occur-next-error, occur-1): Hook into the next-error
3590 framework.
3591
3592 * progmodes/compile.el (compilation-start):
3593 Set next-error-last-buffer so next-error knows where to jump.
3594 (compilation-setup): Set the buffer-local variable
3595 next-error-function to 'compilation-next-error-function.
3596 (compilation-buffer-p, compilation-buffer-internal-p): Use an
3597 alternate way to find if a buffer is a compilation buffer, for
3598 next-error convenience.
3599 (next-error-no-select, previous-error-no-select, next-error)
3600 (previous-error, first-error): Move to simple.el.
3601 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
3602 (compilation-last-buffer): Remove.
3603 (compilation-start, compilation-next-error, compilation-setup)
3604 (compilation-next-error-function, compilation-find-buffer):
3605 Remove compilation-last-buffer use.
3606
3607 2004-04-21 Juanma Barranquero <lektu@terra.es>
3608
3609 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
3610 (font-lock-warning-face): Fix spacing.
3611
3612 * makefile.w32-in (WINS): Add url/ directory.
3613
3614 2004-04-21 Lars Hansen <larsh@math.ku.dk>
3615
3616 * desktop.el (desktop-buffer-mode-handlers): New variable.
3617 Alist of major mode specific functions to restore a desktop buffer.
3618 (desktop-buffer-handlers): Make variable obsolete.
3619 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
3620 Catch errors signaled in handlers. Update buffer count.
3621 Evaluate desktop-buffer-point.
3622 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
3623 move to dired.el.
3624 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
3625 move to info.el.
3626 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
3627 move to mail/rmail.el.
3628 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
3629 to mh-e/mh-e.el.
3630 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
3631 On fail, print message (to message buffer) even if
3632 desktop-missing-file-warning is nil.
3633 (desktop-buffer-misc-data-function): New buffer local variable.
3634 Function returning major mode specific data.
3635 (desktop-buffer-misc-functions): Make variable obsolete.
3636 (desktop-save): Use desktop-buffer-misc-data-function.
3637 (desktop-buffer-dired-misc-data): Rename to
3638 dired-desktop-buffer-misc-data and move to dired.el.
3639 (desktop-buffer-info-misc-data): Rename to
3640 Info-desktop-buffer-misc-data and move to info.el.
3641 (desktop-read): Add message about number of buffers restored/failed.
3642
3643 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
3644 Add parameters. Pause to display error only when
3645 desktop-missing-file-warning is non-nil.
3646 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3647 (dired-mode): Bind desktop-buffer-misc-data-function.
3648
3649 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
3650 Add Parameters.
3651 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3652 (Info-mode): Bind desktop-buffer-misc-data-function.
3653
3654 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
3655 Add Parameters.
3656
3657 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
3658 Add Parameters.
3659
3660 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
3661
3662 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
3663 the case of letters in case-insensitive expansions when the
3664 abbrev is preceded by characters with letter syntax.
3665
3666 2004-04-21 Richard M. Stallman <rms@gnu.org>
3667
3668 * progmodes/cperl-mode.el (cperl-putback-char):
3669 Delete Emacs 18 definition.
3670
3671 * international/mule.el (ctext-post-read-conversion):
3672 Use assoc-string, not assoc-ignore-case.
3673
3674 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
3675
3676 * emacs-lisp/easymenu.el (easy-menu-add):
3677 Do call x-popup-menu, but only if it's defined.
3678
3679 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
3680
3681 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
3682 Handle multiple args: compile like progn.
3683
3684 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
3685 take all args as &rest arg.
3686
3687 * autoinsert.el (auto-insert-alist): Insert the user's name in
3688 copyright notice, rather than Free Software Foundation.
3689
3690 2004-04-21 Kenichi Handa <handa@m17n.org>
3691
3692 * descr-text.el (describe-char): Make it work on *Help* buffer.
3693
3694 2004-04-21 Kim F. Storm <storm@cua.dk>
3695
3696 * image.el (insert-image): Add optional SLICE arg.
3697 (insert-sliced-image): New defun.
3698
3699 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
3700
3701 * subr.el (read-number): Check whether `default' is nil.
3702
3703 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3704
3705 * progmodes/compile.el (compilation-error-properties):
3706 Split into two.
3707 (compilation-internal-error-properties): New one.
3708 (compilation-compat-error-properties): Use it. Fix the non-marker case.
3709
3710 2004-04-20 Richard M. Stallman <rms@gnu.org>
3711
3712 * window.el (split-window-save-restore-data):
3713 Don't update the data if OLD-INFO is nil.
3714
3715 * view.el (view-return-to-alist): Mark it permanent local.
3716
3717 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
3718
3719 * recentf.el (recentf-save-list): Catch and warn about errors.
3720
3721 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
3722 so "Buffers" won't be pure.
3723
3724 * help-mode.el (help-mode-finish): Set help-return-alist first
3725 thing, setting only the entry for the selected window.
3726
3727 * help-fns.el (describe-function-1): If many non-control non-meta
3728 keys run the command, don't list all of them.
3729
3730 2004-04-20 Juanma Barranquero <lektu@terra.es>
3731
3732 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
3733 arg. Copied from Andre Spiegel's patch of 2004-03-21.
3734
3735 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
3736
3737 2004-04-20 Kenichi Handa <handa@m17n.org>
3738
3739 * international/quail.el (quail-lookup-key): New optional arg
3740 NOT-RESET-INDICES.
3741 (quail-get-translations): Call quail-lookup-key with
3742 NOT-RESET-INDICES t.
3743 (quail-completion): Likewise.
3744 (quail-lookup-map-and-concat): Likewise.
3745
3746 2004-04-20 Kenichi Handa <handa@m17n.org>
3747
3748 * international/quail.el (quail-update-translation): Don't insert
3749 such an unsupported multibyte char in a unibyte buffer.
3750
3751 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
3752
3753 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
3754 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
3755 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
3756 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
3757 (gdb-frame-assembler-buffer): Improve behaviour with
3758 multiple frames.
3759 (gdb-display-buffer): Extend search to all visible frames.
3760
3761 2004-04-19 Eli Zaretskii <eliz@gnu.org>
3762
3763 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
3764 characters left after base64 decoding.
3765 (rmail-decode-region): Use -dos variety of `coding', to remove any
3766 ^M characters left after qp or base64 decoding.
3767
3768 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3769
3770 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
3771 messages.
3772
3773 2004-04-19 Stephen Eglen <stephen@gnu.org>
3774
3775 * add-log.el (add-change-log-entry): Update doc string to mention
3776 add-log-full-name and add-log-mailing-address.
3777
3778 2004-04-18 Juri Linkov <juri@jurta.org>
3779
3780 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
3781 (Info-find-node-2): Simplify error message.
3782 (Info-insert-dir): Use Info-following-node-name.
3783 (Info-goto-node): Remove *info-history* and *info-toc*.
3784 (Info-history): Create a node of the virtual history file.
3785 (Info-toc): Create a node of the virtual toc file.
3786 (Info-insert-toc): New arg `curr-file' for reference file names.
3787 (info-apropos): Remove redundant var binding for temp-file.
3788 (Info-index, Info-index-next, Info-mode): Doc fix.
3789 (Info-goto-emacs-command-node): Don't jump to *info* from
3790 non-*info* Info buffers.
3791 (Info-fontify-node): Don't show the file name of external
3792 references if `Info-hide-note-references' is `hide'. Don't hide
3793 newlines at the end of paragraphs.
3794
3795 * international/mule-diag.el (list-input-methods):
3796 Fix args to help-xref-button.
3797
3798 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
3799 to put into effect local variables from TUTORIAL files.
3800
3801 * textmodes/paragraphs.el (sentence-end) <function>: New fun
3802 with default value taken from the variable `sentence-end'.
3803 (sentence-end) <defcustom>: Set default to nil. Doc fix.
3804 Add nil const to :type.
3805 (sentence-end-without-period, sentence-end-double-space)
3806 (sentence-end-without-space): Doc fix.
3807
3808 * textmodes/paragraphs.el (forward-sentence):
3809 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
3810 (fill-delete-newlines):
3811 * progmodes/cc-cmds.el (c-beginning-of-statement):
3812 Use function `sentence-end' instead of variable `sentence-end'.
3813
3814 2004-04-18 Andreas Schwab <schwab@suse.de>
3815
3816 * progmodes/compile.el (compilation-start): Set window start to
3817 point-min if compilation-scroll-output is nil.
3818
3819 2004-04-18 John Wiegley <johnw@newartisans.com>
3820
3821 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
3822
3823 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
3824
3825 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
3826 (gdb-info-breakpoints-custom): Revert previous change.
3827 (gdb-view-assembler): Update assembler if necessary.
3828 (gdb-frame-handler): Parse correctly for gdb-current-frame.
3829 (gdb-display-source-buffer): Update properly when both source and
3830 assembler are visible.
3831
3832 2004-04-17 John Wiegley <johnw@newartisans.com>
3833
3834 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
3835 which limits the number of names shown in the minibuffer. Off by
3836 default.
3837 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
3838 up iswitchb for users with a multitude of open buffers by showing
3839 only the first and last N/2 buffers in the completion list (which
3840 is enough to aid C-s/C-r, and to know that more characters are
3841 needed to refine the completion list).
3842
3843 2004-04-17 Richard M. Stallman <rms@gnu.org>
3844
3845 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
3846 (file-truename): Expand all ~ constructs directly.
3847 (insert-directory): Delete any error msg output by the
3848 `insert-directory-program'.
3849
3850 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
3851 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
3852 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
3853 (allout-init): Use find-file-hook, not find-file-hooks.
3854 (allout-mode): Eliminate Emacs 18 support.
3855 Use write-contents-functions, not local-write-file-hooks.
3856
3857 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
3858
3859 * progmodes/compile.el (compilation-error-properties): Fix for
3860 adding messages when there are already markers for their file.
3861 (compilation-fake-loc): New function.
3862
3863 2004-04-16 Dave Love <fx@gnu.org>
3864
3865 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
3866 (python-load-file): Fix python-orig-start setting.
3867
3868 * progmodes/compile.el: Doc fixes.
3869 (compilation-error-regexp-alist-alist)
3870 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
3871 (compilation-assq): Wrap in eval-when-compile.
3872 (compilation-mode-font-lock-keywords): Don't use list*.
3873 (compilation-start): Avoid warning.
3874 (compilation-compat-error-properties)
3875 (compilation-directory-properties): Add keymap property.
3876 (compilation-parsing-end): Make it a marker for better compatibility.
3877
3878 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
3879
3880 2004-04-16 Mark A. Hershberger <mah@everybody.org>
3881
3882 * xml.el: Doc fixes.
3883 (xml-get-children): Only looks at sub-tags and ignore strings.
3884
3885 * xml.el (xml-parse-tag): Avoid overwriting node-name.
3886
3887 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3888
3889 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
3890
3891 2004-04-16 Andre Spiegel <spiegel@gnu.org>
3892
3893 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
3894
3895 * vc.el (vc-print-log): Likewise.
3896
3897 2004-04-16 Masatake YAMATO <jet@gyve.org>
3898
3899 * simple.el (completion-setup-function): Set an initial value
3900 to `element-common-end' before entering loop. Set a value
3901 to `element-common-end' at the end of loop.
3902 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
3903 (completions-common-part): Rename from completion-de-emphasis.
3904 (completions-first-difference): Rename from completion-emphasis.
3905 Suggested by RMS.
3906
3907 2004-04-16 Juanma Barranquero <lektu@terra.es>
3908
3909 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
3910 (bookmark-edit-annotation-mode): Add mode name.
3911
3912 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3913
3914 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
3915 for nested conflict markers.
3916 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
3917
3918 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
3919
3920 * progmodes/gdb-ui.el (gdb-goto-info): New function.
3921
3922 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
3923
3924 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3925
3926 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
3927 Give a backtrace if requested.
3928
3929 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
3930
3931 * progmodes/python.el (python-mouse-2-command, python-RET-command):
3932 Remove unused functions.
3933 (python-orig-start-line, python-orig-file): Remove.
3934 (python-orig-start): New var.
3935 (python-input-filter, python-compilation-line-number)
3936 (python-send-region, python-load-file): Use it.
3937
3938 * info.el (info): Always jump to *info*.
3939
3940 * subr.el (posn-set-point): New function.
3941
3942 * mouse.el (mouse-set-point): Use it.
3943
3944 * progmodes/compile.el (compile-goto-error): Use it.
3945 (compilation-button-map): New keymap.
3946 (compilation-error-properties): Use it.
3947 (compilation-shell-minor-mode-map): Don't bind mouse-2.
3948
3949 * smerge-mode.el (smerge-popup-context-menu): Use it.
3950
3951 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
3952 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
3953 mouse and non-mouse case.
3954
3955 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
3956 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
3957
3958 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
3959 Make it work for non-mouse events.
3960
3961 * pcvs-info.el (cvs-status-map): Update binding name.
3962
3963 2004-04-14 Mark A. Hershberger <mah@everybody.org>
3964
3965 * xml.el (xml-maybe-do-ns): New function to handle namespace
3966 parsing of both attribute and element names.
3967 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
3968 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
3969 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
3970 (xml-parse-attlist): Make it do its own namespace parsing.
3971
3972 2004-04-14 Dave Love <fx@gnu.org>
3973
3974 * progmodes/python.el (run-python): Fix use of \n.
3975 (python-load-file): Remove `try' from Python fragment.
3976 (python-describe-symbol): Fix message.
3977
3978 * comint.el: Doc fixes.
3979 (comint-last-input-start, comint-last-input-end)
3980 (comint-last-output-start): Give them values.
3981 (comint-arguments): Avoid warning.
3982 (comint-skip-prompt): Use line-end-position.
3983 (comint-backward-matching-input): Rename arg to agree with doc.
3984 (comint-extract-string): Use syntax-ppss.
3985 (comint-dynamic-simple-complete): Delete useless list construction.
3986 (comint-redirect-subvert-readonly): New.
3987 (comint-redirect-preoutput-filter): Use it.
3988
3989 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
3990 Correctly handle negative arguments when calling hook functions.
3991
3992 2004-04-14 Jesper Harder <harder@ifa.au.dk>
3993
3994 * info.el (info-apropos): Don't clobber Info-history-list.
3995
3996 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
3997
3998 * progmodes/compile.el (compilation-setup):
3999 Localize overlay-arrow-position.
4000 (compilation-sentinel): Restructure code equivalently.
4001 (compilation-next-error): Find message on same line after point if
4002 not found before point.
4003 (compile-mouse-goto-error): Restore function so that compilation
4004 buffer need not be current and use compile-goto-error.
4005 (compile-goto-error): Restore function.
4006 (next-error): Set overlay-arrow-position.
4007 (compilation-forget-errors): Don't localize already local
4008 compilation-locs and remove FIXME about refontifying.
4009
4010 2004-04-14 Kim F. Storm <storm@cua.dk>
4011
4012 * startup.el (emacs-quick-startup): New defvar (set by -Q).
4013 (command-line): New option -Q. Like -q --no-site-file, but
4014 in addition it also disables menu-bar, tool-bar, scroll-bars,
4015 tool-tips, and the blinking cursor.
4016 (command-line-1): Skip startup screen if -Q.
4017 (fancy-splash-head): Use ":align-to center" prop to center splash image.
4018
4019 * emulation/cua-base.el (cua-read-only-cursor-color)
4020 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
4021
4022 2004-04-13 Dave Love <fx@gnu.org>
4023
4024 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
4025 (syntax): Don't require.
4026 (python) <defgroup>: Add :version.
4027 (python-quote-syntax): Re-written.
4028 (inferior-python-mode): Move stuff here from run-python and add
4029 some more.
4030 (python-preoutput-continuation, python-preoutput-result)
4031 (python-dotty-syntax-table): New.
4032 (python-describe-symbol): Use them.
4033 (run-python): Move stuff to inferior-python-mode. Modify code
4034 loaded into Python.
4035 (python-send-region): Use python-proc, python-send-string.
4036 (python-send-string): Send newlines too. Callers changed.
4037 (python-load-file): Re-written.
4038 (python-eldoc-function): New.
4039 (info-look): Don't require.
4040 (python-after-info-look): New. A modified version of former
4041 top-level code for use with eval-after-load.
4042 (python-maybe-jython, python-guess-indent): Use widened buffer.
4043 (python-fill-paragraph): Re-written.
4044 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
4045 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
4046
4047 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4048
4049 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
4050 Set compilation-error-regexp-alist earlier.
4051
4052 * progmodes/compile.el (compilation-minor-mode-map)
4053 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
4054 (compile-goto-error): Re-merge the mouse and non-mouse commands.
4055
4056 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4057
4058 * progmodes/compile.el (compile-goto-error): Select the buffer/window
4059 corresponding to the event.
4060
4061 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
4062
4063 * loadup.el: Add cygwin to system-type list, for unexec() support.
4064
4065 2004-04-12 John Paul Wallington <jpw@gnu.org>
4066
4067 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
4068 (ibuffer-restore-window-config-on-quit): New variable to replace
4069 `ibuffer-delete-window-on-quit'. Update all references.
4070 (ibuffer-prev-window-config): New variable.
4071 (ibuffer-quit): Restore previous window configuration instead of
4072 deleting window.
4073 (ibuffer): Save window configuration before showing Ibuffer buffer.
4074
4075 * help.el (describe-mode): Doc fix.
4076
4077 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4078
4079 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
4080 not to treat nil as a function.
4081
4082 * vc-arch.el (vc-arch-root): Be a bit more careful.
4083 (vc-arch-register): Save the buffer if we modified it.
4084 (vc-arch-delete-rej-if-obsolete): Save excursion.
4085 (vc-arch-find-file-hook): Use the simpler after-save-hook.
4086 (vc-arch-responsible-p, vc-arch-init-version): New functions.
4087
4088 * net/ldap.el (ldap-search): Use list*.
4089
4090 2004-04-12 Juri Linkov <juri@jurta.org>
4091
4092 * info.el (Info-follow-reference): Allow multiline reference name.
4093
4094 2004-04-11 Dave Love <fx@gnu.org>
4095
4096 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
4097
4098 * progmodes/python.el: New file.
4099
4100 2004-04-11 Andre Spiegel <spiegel@gnu.org>
4101
4102 * vc-hooks.el (vc-arg-list): Function removed.
4103 (vc-default-workfile-unchanged-p): Use condition-case to check for
4104 backward compatibility.
4105
4106 * vc.el (vc-print-log): Use condition-case to check for backward
4107 compatibility.
4108
4109 2004-04-11 Juri Linkov <juri@jurta.org>
4110
4111 * dired.el (dired-faces): New defgroup.
4112 (dired-header, dired-mark, dired-marked, dired-flagged)
4113 (dired-warning, dired-directory, dired-symlink, dired-ignored):
4114 New faces.
4115 (dired-header-face, dired-mark-face, dired-marked-face)
4116 (dired-flagged-face, dired-warning-face, dired-directory-face)
4117 (dired-symlink-face, dired-ignored-face): New face variables.
4118 (dired-font-lock-keywords): Use them instead of font-lock faces.
4119 Split the rule for dired marks into 3 separate rules: for marks,
4120 marked file names and flagged file names.
4121
4122 * help-mode.el (help-make-xrefs): Add a final newline to the
4123 *Help* buffer.
4124
4125 2004-04-11 John Paul Wallington <jpw@gnu.org>
4126
4127 * replace.el (occur-engine): Distinguish between one and several
4128 matches in the matches per buffer heading.
4129
4130 2004-04-11 Kim F. Storm <storm@cua.dk>
4131
4132 * ido.el (ido-confirm-unique-completion): New defcustom.
4133 (ido-complete): Use it.
4134 (ido-write-file): Set it to t unconditionally.
4135
4136 2004-04-10 Miles Bader <miles@gnu.org>
4137
4138 RCS keyword removal (only non-comment changes are enumerated here):
4139
4140 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
4141 (byte-compile-insert-header): Don't use `byte-compile-version'.
4142 * forms.el (forms-version): Variable removed.
4143 (forms-mode): Don't use `forms-version'.
4144 * recentf.el (recentf-version): Variable removed.
4145 * progmodes/delphi.el (delphi-version): Variable removed.
4146 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
4147
4148 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4149
4150 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
4151
4152 2004-04-09 Jesper Harder <harder@ifa.au.dk>
4153
4154 * info.el (info-apropos): Improve menu item regexp.
4155
4156 2004-04-09 Simon Josefsson <jas@extundo.com>
4157
4158 * mail/smtpmail.el: Add comment, based on report by
4159 kdc@rcn.com (Kevin D. Clark).
4160
4161 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4162
4163 * progmodes/compile.el (compilation-mode-font-lock-keywords):
4164 Redo one more thing that I didn't notice Daniel had undone.
4165
4166 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
4167
4168 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
4169 (gdb-goto-breakpoint, gdb-display-buffer)
4170 (gdb-display-source-buffer, gdb-view-source-function)
4171 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
4172 (gdb-source-info, gdb-frame-handler): Don't specify a window
4173 for display.
4174 (gdb-info-breakpoints-custom): Remove superfluous update of
4175 assembler buffer.
4176 (gdb-many-windows): Make settable outside gdb.
4177
4178 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
4179
4180 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
4181 Derive from fundamental-mode rather than text-mode.
4182
4183 2004-04-08 Juri Linkov <juri@jurta.org>
4184
4185 * info.el (Info-history): Doc fix.
4186 (Info-history-list): New var.
4187 (info-xref): Change magenta4 to blue, remove bold for dark and
4188 light backgrounds, change bold to underline for non-color classes.
4189 (info-xref-visited): New face.
4190 (Info-fontify-visited-nodes): New custom.
4191 (Info-hide-note-references): Add new value `hide'. Doc fix.
4192 (Info-reference-name): New var.
4193 (Info-selection-hook): New custom.
4194 (Info-edit-mode-hook): New var.
4195 (Info-find-file): New fun.
4196 (Info-find-node): Move part of code to Info-find-file.
4197 (Info-find-node-2): Add anchors to Info-history-list. Move point
4198 to the place with the reference name if name is defined.
4199 (Info-select-node): Add current node to Info-history-list.
4200 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
4201 (Info-search-whitespace-regexp): New custom.
4202 (Info-search-case-fold): New var.
4203 (Info-search): Add "case-sensitively" to the prompt.
4204 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
4205 (Info-search-case-sensitively, Info-search-next): New fun.
4206 (Info-up): Move point to the menu item of the current node.
4207 (Info-history): New fun. Add *info-history* to
4208 same-window-buffer-names.
4209 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
4210 (Info-insert-toc): New fun.
4211 (Info-build-toc): New fun.
4212 (Info-follow-reference): Add new arg `fork'. Doc fix.
4213 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
4214 with the same name prefer the reference closest to point.
4215 (Info-next-reference): Replace * by + in the *Note regexp.
4216 Add regexp for http:// and ftp://. Skip the *Note prefix.
4217 (Info-prev-reference): Replace * by + in the *Note regexp.
4218 Add regexp for http:// and ftp://. Skip the *Note prefix.
4219 (Info-follow-nearest-node): Add new arg `fork'.
4220 (Info-try-follow-nearest-node): Add new arg `fork'.
4221 Call browse-url for http:// and ftp:// references.
4222 Set Info-reference-name for index entries.
4223 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
4224 Info-search-next, Info-history, Info-toc, clone-buffer.
4225 (Info-menu-update): Replace * by + in the *Note regexp.
4226 (Info-mode): Add documentation for Info-history, Info-toc,
4227 Info-search-case-sensitively, Info-search-next, clone-buffer.
4228 (Info-fontify-menu-headers): Remove fun. Move code to
4229 Info-fontify-node.
4230 (Info-fontify-node): Add docstring. Add local vars
4231 fontify-visited-p and not-fontified-p. If not-fontified-p is t
4232 then fontify header line, titles, menu headers, http and ftp
4233 references, refill paragraphs. If not-fontified-p is t or
4234 fontify-visited-p is t then fontify cross references, menu items.
4235 Fontify menu headers. Fontify http and ftp references.
4236 Change regexp for cross references to require whitespace after *Note,
4237 add matching groups for file and node names. Remove hack for quote.
4238 Use display property for Info-hide-note-references=t. Use fifth
4239 or fourth match for help-echo. Display visited nodes in a
4240 different face. Unhide file names of external references.
4241 Unhide newlines. Display visited menu items in a different face.
4242
4243 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4244
4245 * progmodes/compile.el: Require CL.
4246 (compilation-mode-font-lock-keywords): Re-install the "line as
4247 function" patch.
4248
4249 * help-fns.el (help-C-source-directory): New var.
4250 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
4251 (describe-function-1, describe-variable): Use them.
4252
4253 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
4254 to C source files specially.
4255
4256 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
4257
4258 * info.el (Info-hide-cookies-node): New function.
4259 (Info-select-node): Use it.
4260 (Info-display-images-node): Remove message with image file name.
4261
4262 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
4263
4264 * progmodes/compile.el (compilation-warning-face)
4265 (compilation-info-face, compilation-skip-threshold)
4266 (compilation-skip-visited, compilation-context-lines):
4267 Declare :version when added to Emacs.
4268 (compilation-error-regexp-alist-alist): Extend caml and irix.
4269 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
4270 (compilation-mode-font-lock-keywords): Temporarily undo line as
4271 function patch, which wasn't ready.
4272
4273 2004-04-07 Kenichi Handa <handa@m17n.org>
4274
4275 * international/latin1-disp.el (latin1-display-setup): Check each
4276 character is displayable or not instead of calling
4277 latin1-display-check-font.
4278
4279 2004-04-06 Kenichi Handa <handa@m17n.org>
4280
4281 * language/ethio-util.el (ethio-sera-being-called-by-w3):
4282 New variable.
4283 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
4284 instead of sera-being-called-by-w3.
4285 (ethio-fidel-to-sera-buffer): Likewise.
4286 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
4287 instead of sera-being-called-by-w3.
4288 (ethio-write-file): Likewise.
4289
4290 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4291
4292 * printing.el: Doc fix.
4293
4294 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
4295
4296 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
4297 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
4298 (gdb-setup-windows): Only use separate IO buffer if required.
4299
4300 2004-04-06 Kim F. Storm <storm@cua.dk>
4301
4302 * term.el (term-is-xemacs): Remove.
4303 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
4304 (term-window-width): New function.
4305 (term-mode, term-check-size): Use it.
4306 (term-mode): Disable overflow-newline-into-fringe in term buffer.
4307
4308 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
4309
4310 * cus-edit.el (custom-add-parent-links): Change unbound variable
4311 `symbol' to `name'.
4312
4313 2004-04-05 Jesper Harder <harder@ifa.au.dk>
4314 * info.el (info-apropos): New function.
4315 (Info-mode-menu): Add it.
4316 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
4317
4318 * help-mode.el (help-make-xrefs): Recognize aliased variable with
4319 inherited docstring.
4320
4321 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
4322
4323 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4324
4325 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
4326
4327 * progmodes/compile.el (font-lock): Don't require any more.
4328 (compilation-error-properties, compilation-start, compilation-sentinel)
4329 (compilation-filter, next-error): Use with-current-buffer.
4330 (compilation-skip-to-next-location, compilation-skip-threshold)
4331 (compilation-skip-visited): Move to silence the byte-compiler.
4332 (compilation-setup): Simplify.
4333 (compilation-next-error): Use line-(beginning|end)-position.
4334 Make sure `pt' is non-nil before using compilation-loop.
4335 (compile-goto-error): Add optional event arg. Use it.
4336 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
4337 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
4338 Update the binding for mouse-2.
4339 (first-error): Set compilation-current-error to nil rather than bob.
4340 (compilation-parsing-end, compilation-parse-errors-function)
4341 (compilation-error-list, compilation-old-error-list):
4342 "New" compatibility variables.
4343 (compile-buffer-substring, compilation-compat-error-properties)
4344 (compilation-compat-parse-errors, compilation-forget-errors):
4345 New compatibility functions.
4346 (compilation-mode-font-lock-keywords): Use them.
4347
4348 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
4349
4350 * autorevert.el (auto-revert-handler): If point (or a window
4351 point) is at the end of the buffer, keep it there after
4352 reverting. This allows to tail a file.
4353 Mention this in the `Commentary'.
4354
4355 * format.el (format-write-file): Add optional argument CONFIRM
4356 and make it behave like the analogous argument to `write-file'.
4357
4358 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4359
4360 * progmodes/ebnf2ps.el: Doc fix.
4361 (ebnf-version): New version number (4.2).
4362 (ebnf-syntax): Customization and docstring fix.
4363 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
4364 Put autoloaded funs before first use.
4365 (ebnf-style-database): Add dtd entry.
4366 (ebnf-syntax-alist): Add dtd initialization.
4367 (ebnf-token-sequence): New fun.
4368 (ebnf-comment-table): Add new comment action character.
4369 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
4370
4371 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
4372 Type Definition for XML).
4373
4374 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
4375 * progmodes/ebnf-bnf.el (ebnf-sequence):
4376 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
4377 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
4378 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
4379 Code simplification: call ebnf-token-sequence.
4380
4381 2004-04-04 Eli Zaretskii <eliz@gnu.org>
4382
4383 * calendar/timeclock.el (timeclock-relative)
4384 (timeclock-get-project-function, timeclock-get-workday-function)
4385 (timeclock-query-out, timeclock-when-to-leave)
4386 (timeclock-when-to-leave-string, timeclock-log-data)
4387 (timeclock-generate-report, timeclock-in): Doc fixes.
4388
4389 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4390
4391 * url/: New dir. Import the URL package from its repository.
4392
4393 2004-04-03 Andreas Schwab <schwab@suse.de>
4394
4395 * diff-mode.el (diff-mode): Fix missing quote.
4396
4397 2004-04-03 Juri Linkov <juri@jurta.org>
4398
4399 * descr-text.el (describe-property-list): Add `font-lock-face'.
4400
4401 * dired.el (dired-font-lock-keywords): Fix permission regexps.
4402
4403 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4404
4405 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
4406 Use utf-16le on little endian machines and utf-16be otherwise.
4407
4408 2004-04-02 David Kastrup <dak@gnu.org>
4409
4410 * net/browse-url.el (browse-url-generic): Use call-process
4411 instead of start-process to allow browsers that fork and detach.
4412
4413 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
4414
4415 * compile.el (compilation-current-error): New var.
4416 (compilation-setup, compile-mouse-goto-error)
4417 (compile-goto-error, next-error): Use it.
4418 (compilation-skip-to-next-location): Default to t, which gives
4419 contiguous skipping like old compile (where this was redundant).
4420 (compilation-next-error): Prevent previous-* commands from moving
4421 back to message at or just before point.
4422
4423 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
4424
4425 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
4426 (gdb-source-info): Don't display source at startup, if required.
4427 (gdb-show-main): New option.
4428 (gdba): Update documentation.
4429 (gdb-source): Cover case of auto-display output.
4430
4431 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
4432
4433 * autorevert.el: Delete obsolete autoload's and defvar's.
4434 (auto-revert-check-vc-info): New user option.
4435 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
4436 (auto-revert-handler-vc): Delete.
4437 (auto-revert-handler): Treat return value `fast' of
4438 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
4439
4440 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
4441 return `fast'.
4442
4443 * files.el (buffer-stale-function): Doc change.
4444
4445 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4446
4447 * printing.el: New tip on Tips section.
4448 (pr-version): New version number (6.7.4).
4449 (pr-shell-file-name): Initialization fix.
4450
4451 2004-03-31 Juri Linkov <juri@jurta.org>
4452
4453 * dired.el: Add autoload for `dired-do-touch'.
4454 (dired-touch-program): New var.
4455 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
4456 (dired-no-confirm): Add `touch' to docstring.
4457
4458 * dired-aux.el (dired-do-touch): New fun.
4459 (dired-do-chxxx): Add argument -t for touch operation.
4460
4461 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
4462 `dired-move-to-filename-regexp'.
4463
4464 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
4465
4466 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
4467
4468 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4469
4470 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
4471 and only if the buffer was modified.
4472
4473 2004-03-30 Kenichi Handa <handa@m17n.org>
4474
4475 * international/characters.el: Delete pairs for U+2308..U+230B.
4476
4477 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
4478
4479 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
4480 to detect the beginning of a level 2 or 3 annotation.
4481
4482 2004-03-29 Kenichi Handa <handa@m17n.org>
4483
4484 * international/ucs-tables.el (ucs-insert): Fix the error message.
4485
4486 2004-03-29 Kenichi Handa <handa@m17n.org>
4487
4488 * international/mule-util.el (char-displayable-p): Fix generation
4489 of XLFD file name.
4490
4491 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4492 before finding directories by `find'.
4493
4494 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4495
4496 * subr.el (interactive-form): Delete. Now implemented in C.
4497
4498 * pcvs.el (cvs-parse-process): Workaround for Darwin.
4499
4500 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
4501 (vc-diff-label): New fun.
4502 (vc-diff-internal): Use it.
4503
4504 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
4505
4506 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4507
4508 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
4509
4510 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
4511 specify XML (EBNFX).
4512
4513 * progmodes/ebnf2ps.el: Doc fix.
4514 (ebnf-version): New version number (4.1).
4515 (ebnf-syntax): Adjust customization.
4516 (ebnf-style-database): Add ebnfx entry.
4517 (ebnf-syntax-alist): Add ebnfx initialization.
4518 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
4519
4520 * printing.el: Doc fix.
4521 (pr-version): New version number (6.7.3).
4522 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
4523 returns nil for mouse position. Reported by Drew Adams
4524 <drew.adams@oracle.com>.
4525 (pr-update-menus): Modify interactive declaration. Reported by Drew
4526 Adams <drew.adams@oracle.com>.
4527
4528 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
4529
4530 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
4531 (gud-gdba-marker-filter): Log the process input and output, if
4532 required. From Stefan Monnier.
4533 (gdb-debug-log, gdb-enable-debug-log): New variables.
4534 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
4535
4536 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
4539 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
4540
4541 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
4542
4543 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
4544 Call vc-find-file-hook here instead of in auto-revert-buffers.
4545 (auto-revert-buffers): Delete call to vc-find-file-hook.
4546 (auto-revert-verbose, global-auto-revert-non-file-buffers)
4547 (global-auto-revert-mode, auto-revert-set-timer)
4548 (auto-revert-handler, auto-revert-buffers): Doc fixes.
4549
4550 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4551
4552 * woman.el (woman-change-fonts): Rename local variable
4553 woman-font-alist to font-alist to avoid a compiler warning.
4554
4555 2004-03-27 Dave Love <fx@gnu.org>
4556
4557 * emacs-lisp/rx.el (rx): Doc fix.
4558 Fix copyright years.
4559
4560 * strokes.el (strokes-global-set-stroke-string): New function.
4561 (strokes-list-strokes): Cope with strings, not just commands.
4562 Set foreground colour of image.
4563 (strokes-global-set-stroke): Doc fix.
4564
4565 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
4566
4567 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
4568 Auto Revert mode.
4569 (Buffer-menu-files-only): New variable.
4570 (Buffer-menu-toggle-files-only): New function.
4571 (Buffer-menu-mode-map): Bind it to `T'.
4572 (Buffer-menu-mode): Mention `T' in docstring.
4573 Set buffer-stale-function.
4574 (list-buffers-noselect): Mark buffer non-modified and set
4575 Buffer-menu-files-only.
4576
4577 * dired.el (buffer-stale-function): Remove no longer needed defvar.
4578
4579 * autorevert.el (auto-revert-handler): Print revert message
4580 before, rather than after, reverting.
4581 (buffer-stale-function): Move to files.el.
4582
4583 * files.el (buffer-stale-function): Move here from autorevert.el.
4584
4585 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4586
4587 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
4588
4589 * calc/calc.el (calc-mode-map): Use mapc.
4590
4591 * apropos.el (apropos-mode): Don't autoload.
4592 (apropos-symbols-internal): New fun. Extracted from `apropos'.
4593 (apropos): Use it.
4594 (apropos-print): Add optional `text' argument.
4595 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
4596 Don't assume point-min == 1.
4597
4598 * bs.el (bs-buffer-list): Use buffer-local-value.
4599 (bs--set-toggle-to-show): Use with-current-buffer.
4600
4601 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
4602 New funs.
4603 (list-buffers-noselect): Use them. Adjust :align-to to new style.
4604
4605 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
4606
4607 * dabbrev.el (dabbrev-expand): Fix regexp construction.
4608 (dabbrev--find-expansion): Use pop.
4609 (dabbrev--search): Use match-string-no-properties.
4610
4611 * dired.el (dired-mode): Use run-mode-hooks.
4612 (dired-move-to-end-of-filename): Use match-string.
4613
4614 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
4615 is bound before using it.
4616 (ediff-verbose-p): Make it into a var since it's not constant.
4617
4618 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
4619
4620 * faces.el (read-face-font): Don't cons up unnecessarily.
4621 (header-line, tool-bar): Share common parts.
4622
4623 * files.el (file-relative-name): Use compare-strings.
4624
4625 * finder.el (finder-mode): Follow coding convention.
4626
4627 * subr.el (read-number): New function.
4628
4629 * ses.el (ses-read-number): Move to subr.el.
4630 (ses-set-header-row): Use read-number.
4631
4632 2004-03-26 Andre Spiegel <spiegel@gnu.org>
4633
4634 * vc-hooks.el (vc-arg-list): New function, which handles both
4635 compiled and uncompiled code.
4636 (vc-default-workfile-unchanged-p): Use it.
4637
4638 * vc.el (vc-print-log): Undo prev change, use new function
4639 vc-arg-list from vc-hooks.el.
4640
4641 2004-03-26 Masatake YAMATO <jet@gyve.org>
4642
4643 * simple.el (completion-setup-function): Emphasize the
4644 first uncommon characters in the completions; and de-emphasize
4645 the common prefix substrings.
4646 (completion-emphasis): New face.
4647 (completion-de-emphasis): New face.
4648
4649 2004-03-25 Juanma Barranquero <lektu@terra.es>
4650
4651 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
4652 Comment out (it's unused and unfinished code).
4653
4654 2004-03-25 Sam Steingold <sds@gnu.org>
4655
4656 * vc.el (vc-print-log): Fix a bug in the last patch:
4657 backend-function may be a byte-compiled object, not a lambda.
4658
4659 2004-03-25 Juri Linkov <juri@jurta.org>
4660
4661 * descr-text.el (describe-property-list): Add a button
4662 for `face' property that calls `describe-face'.
4663 Suggested by luis fernandes <elf@ee.ryerson.ca>
4664
4665 * international/mule.el (keyboard-coding-system):
4666 * kmacro.el (kmacro-call-macro): Fix docstring.
4667
4668 * dired.el: Fix comments.
4669
4670 * textmodes/fill.el (fill): Fix Info link.
4671
4672 * font-lock.el (fast-lock, lazy-lock):
4673 * jit-lock.el (jit-lock): Remove links to removed Support Modes
4674 Info node.
4675
4676 * eshell/eshell.el (eshell): Fix broken info-link.
4677
4678 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
4679 * eshell/em-banner.el (eshell-banner):
4680 * eshell/em-smart.el (eshell-smart):
4681 * eshell/esh-cmd.el (eshell-cmd):
4682 Comment out broken info-links to incomplete Info manual.
4683
4684 * info-xref.el: Fix commentary.
4685
4686 2004-03-25 Kevin Ryde <user42@zip.com.au>
4687
4688 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
4689 Remove spurious node duplicate suppression, doesn't work, not wanted.
4690 (info-xref-output): Take format style args, add "sit-for 0" to let
4691 user see the results as they progress.
4692 (info-xref-check-all-custom): New function.
4693
4694 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
4695
4696 * gdb-ui.el: Moved to progmodes.
4697
4698 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4699
4700 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
4701
4702 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
4703
4704 * calendar/appt.el (appt-check): Remove superfluous progn.
4705 When finished with diary buffer: if it was not being displayed
4706 before, kill it; otherwise restore its original state.
4707 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
4708
4709 * calendar/calendar.el (calendar-set-mode-line): Use total
4710 available mode-line width, rather than frame-width.
4711
4712 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
4713 after mode change so effect not lost.
4714
4715 2004-03-23 Dave Love <fx@gnu.org>
4716
4717 * dired.el (dired) <defgroup>: Add link to manual.
4718 (dired-font-lock-keywords): Add highlighting on unusual permissions.
4719 (dired-revert): Use dolist.
4720 (dired-mode-map): Add U binding.
4721 (dired-mode): Add font-lock-beginning-of-syntax-function.
4722 (dired-garbage-files-regexp): Make it a defcustom.
4723
4724 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4725
4726 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
4727 is equivalent to nil.
4728 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
4729 (vc-arch-mode-line-string): Accept `added' state.
4730 (vc-arch-state): Use inode-sigs if available.
4731 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
4732 Copy&delete existing id file if any. Fallback if uuidgen is absent.
4733 (vc-arch-tagline-re): New var.
4734 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
4735 New functions.
4736 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
4737 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
4738
4739 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
4740 (vc-file-not-found-hook): Use it.
4741
4742 * diff-mode.el (diff-default-read-only): Change default.
4743 (diff-mode-hook): Make it a defcustom. Add some options.
4744 (diff-mode-map): Bind diff-refine-hook.
4745 (diff-yank-handler): New var.
4746 (diff-yank-function): New fun.
4747 (diff-font-lock-keywords): Use them.
4748 (diff-end-of-file): Handle case where file-header looks like diff text.
4749 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
4750 (diff-file-kill): Delete a subsequent empty line, if applicable.
4751 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
4752 (diff-find-file-name): Use it.
4753 (diff-tell-file-name): New command.
4754 (diff-mode): Be careful with view-mode.
4755 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
4756 New functions, for use in diff-mode-hook.
4757 (diff-find-source-location): Catch "regex too large" errors.
4758 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
4759 (diff-refine-hunk): New command.
4760
4761 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
4762 (smerge-context-menu-map): Remove unused var.
4763 (smerge-keep-all): Preserve markers.
4764 (smerge-keep-n): New fun.
4765 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4766 (smerge-keep-current, smerge-ediff): Use it.
4767 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
4768 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
4769 (smerge-resolve): Resolve trivial 3-part conflicts.
4770
4771 2004-03-23 Juri Linkov <juri@jurta.org>
4772
4773 * man.el (Man-width): New var.
4774 (Man-getpage-in-background): Use it.
4775 (Man-support-local-filenames): New var and fun.
4776 (Man-build-man-command): Don't add a second %s.
4777 (Man-fontify-manpage): Clean up message.
4778 (Man-mode): Set outline-regexp, outline-level,
4779 imenu-generic-expression.
4780
4781 * woman.el (woman-fill-frame): Doc fix.
4782 (woman-decode-region): Use window-width instead of frame-width.
4783
4784 * abbrevlist.el (list-one-abbrev-table):
4785 * descr-text.el (describe-char):
4786 * international/mule-diag.el (describe-current-coding-system):
4787 * international/quail.el (quail-insert-decode-map):
4788 Use window-width instead of frame-width.
4789
4790 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
4791 (jka-compr-mode-alist-additions): Add tbz.
4792 (jka-compr-write-region, jka-compr-insert-file-contents):
4793 Add message for undefined compress-program.
4794 (jka-compr-write-region): Remove redundant var bindings.
4795
4796 * dired-x.el (dired-guess-shell-alist-default): Add choices for
4797 extracting files into subdirectory. Add tbz and dz. Fix regexps.
4798 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
4799 (dired-man): Use dired-guess-shell-command.
4800 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
4801 Change default nil to t.
4802
4803 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
4804 (dired-compare-directories): Add default value for empty input.
4805
4806 * help-at-pt.el: Move suggestions for key bindings to Commentary.
4807
4808 * time.el (display-time-string-forms): Fix help-echo date format.
4809
4810 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
4811
4812 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
4813 (buffer-stale-function): New variable.
4814 (auto-revert-list-diff, auto-revert-dired-file-list)
4815 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
4816 (auto-revert-handler): Take over some functionality of deleted
4817 functions.
4818 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
4819
4820 * dired.el (dired-directory-changed-p): New fun, extracted from
4821 dired-internal-noselect.
4822 (dired-buffer-stale-p): New fun.
4823 (dired-internal-noselect): Use dired-directory-changed-p.
4824 Eliminate revert messages.
4825 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
4826
4827 2004-03-23 Kenichi Handa <handa@m17n.org>
4828
4829 * international/characters.el: Setup syntaxes for more parentheses
4830 Unicode characters.
4831
4832 * international/mule-cmds.el (select-safe-coding-system):
4833 Merge coding-system and auto-cs before comparing them.
4834
4835 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
4836
4837 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
4838
4839 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4840 normal-auto-fill-function and comment-indent-function.
4841 The default values now work just as well.
4842 Don't set font-lock-beginning-of-syntax-function since we already set
4843 syntax-begin-function.
4844 (lisp-outline-level): Put ;;;###autoload at same level as (.
4845 (prin1-char): Quote special chars.
4846
4847 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
4848 than with-no-warnings.
4849
4850 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
4851 if the source location can't be found.
4852 (edebug-compute-previous-result): Use prin1-char.
4853
4854 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
4855 (debug-ignored-errors): Add an entry.
4856
4857 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
4858 (byte-compile-file): Output warning when deleting a file.
4859
4860 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
4861 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
4862
4863 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
4864 (byte-compile-inline-expand): Use backquote.
4865 (byte-optimize-pure-func): Rename from byte-optimize-concat.
4866 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
4867
4868 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
4869
4870 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
4871
4872 2004-03-22 Juri Linkov <juri@jurta.org>
4873
4874 * finder.el (finder-known-keywords): Fix data, tex, unix.
4875
4876 * play/landmark.el: Fix keywords.
4877
4878 * language/ethio-util.el (ethio-find-file): Doc fix.
4879
4880 * emacs-lisp/warnings.el: Doc fix.
4881
4882 * textmodes/ispell.el (ispell-help): Doc fix.
4883
4884 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
4885
4886 * format.el (format-insert-file): Always return a list of two
4887 elements, like insert-file-contents does.
4888
4889 2004-03-21 Andre Spiegel <spiegel@gnu.org>
4890
4891 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
4892 and vc-BACKEND-diff.
4893 (vc-print-log): If the print-log implementation supports it, use
4894 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
4895 (vc-version-diff, vc-diff-internal): Doc fixes.
4896
4897 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
4898 implementation supports it, let diff output go to *vc*,
4899 not *vc-diff*, since this is an internal call.
4900
4901 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
4902
4903 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
4904
4905 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
4906
4907 2004-03-21 Dave Love <fx@gnu.org>
4908
4909 * progmodes/cfengine.el (cfengine-mode):
4910 Set parse-sexp-ignore-comments.
4911
4912 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
4913
4914 2004-03-21 Juanma Barranquero <lektu@terra.es>
4915
4916 * allout.el (allout-mode): Fix docstring.
4917
4918 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
4919
4920 * files.el (insert-directory): Fix bug if SWITCHES is a list.
4921
4922 * autorevert.el (auto-revert-interval): Make new value take
4923 effect immediately when set through Custom.
4924 (auto-revert-set-timer): Add interactive declaration.
4925
4926 2004-03-19 David Ponce <david@dponce.com>
4927
4928 * ruler-mode.el (ruler-mode-header-line-format-old):
4929 Don't `make-variable-buffer-local'.
4930 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
4931 (ruler-mode-header-line-format): Simply funcall the above.
4932 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
4933 to save/restore a previous header line format.
4934 (ruler-mode-space): Don't depend on a numeric WIDTH value.
4935 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
4936 fringes and margins width.
4937 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
4938
4939 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4940
4941 * log-edit.el (log-edit-font-lock-keywords): Typo.
4942
4943 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
4944 (tex-send-tex-command): Rather than here.
4945 (tex-compilation-parse-errors): Simplify.
4946
4947 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
4948
4949 * time.el (display-time-string-forms): Add help-echo with date on time.
4950
4951 * composite.el (compose-region): Use restore-buffer-modified-p.
4952
4953 * disp-table.el (standard-display-8bit): Simplify.
4954
4955 * server.el (server-process-filter): Delete temp frame.
4956
4957 * add-log.el (add-change-log-entry): Simplify.
4958
4959 2004-03-19 Kim F. Storm <storm@cua.dk>
4960
4961 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
4962 (hexl-follow-line): Don't require 'fringe.
4963
4964 * progmodes/compile.el (compilation-start): Always set
4965 compilation-last-buffer and return it.
4966
4967 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
4968
4969 * simple.el (clone-buffer): Doc fix.
4970
4971 2004-03-18 Juanma Barranquero <lektu@terra.es>
4972
4973 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
4974
4975 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4976
4977 * log-edit.el (log-edit-font-lock-keywords): New var.
4978 (log-edit-mode): Use it.
4979
4980 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
4981
4982 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
4983 properly for watching in speedbar.
4984
4985 2004-03-17 Masatake YAMATO <jet@gyve.org>
4986
4987 * smerge-mode.el (smerge-popup-context-menu):
4988 Put `unwind-protect' around `overlay-put' and `popup-menu'.
4989
4990 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
4991
4992 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
4993 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
4994 Take sealed revisions into account.
4995 (vc-arch-checkin): Extract a summary line from the message.
4996
4997 2004-03-16 Masatake YAMATO <jet@gyve.org>
4998
4999 * register.el (register): Provide `register' feature.
5000
5001 2004-03-15 Masatake YAMATO <jet@gyve.org>
5002
5003 Added context menu support in smerge mode.
5004 Most of the part is written by Stefan Monnier.
5005
5006 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
5007 New keymap and menu.
5008 (smerge-text-properties): New function.
5009 (smerge-remove-props): New function.
5010 (smerge-popup-context-menu): New function.
5011 (smerge-resolve): Call `smerge-remove-props'.
5012 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
5013 (smerge-keep-current): Ditto.
5014 (smerge-kill-current): New function.
5015 (smerge-match-conflict): Put text properties.
5016 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
5017
5018 2004-03-15 David Ponce <david@dponce.com>
5019
5020 * ruler-mode.el: (ruler-mode-left-fringe-cols)
5021 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
5022 (ruler-mode-right-scroll-bar-cols): Remove.
5023 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
5024 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
5025 Use fringe-columns and scroll-bar-columns.
5026
5027 2004-03-15 Masatake YAMATO <jet@gyve.org>
5028
5029 * hl-line.el (hl-line-range-function): New variable.
5030 (hl-line-move): New function.
5031 (global-hl-line-highlight): Use `hl-line-move'.
5032 (hl-line-highlight): Ditto.
5033
5034 * scroll-bar.el (scroll-bar-columns):
5035 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
5036
5037 * ruler-mode.el (top-level): Require scroll-bar and fringe.
5038 (ruler-mode-left-fringe-cols)
5039 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
5040 (ruler-mode-right-scroll-bar-cols)
5041 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
5042 (ruler-mode-ruler-function): New variable.
5043 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
5044 if the value for `ruler-mode-ruler-function'is given.
5045
5046 * hexl.el (hexl-mode-hook): Make the hook customizable.
5047 (hexl-address-area, hexl-ascii-area): New customize variables.
5048 (hexlify-buffer): Put font-lock-faces on the address area and
5049 the ascii area.
5050 (hexl-activate-ruler): New function.
5051 (hexl-follow-line): New function.
5052 (hexl-highlight-line-range): New function.
5053 (hexl-mode-ruler): New function.
5054
5055 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
5056
5057 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
5058 (vc-default-find-file-hook): New fun.
5059 (vc-find-file-hook): Call new find-file-hook operation.
5060
5061 * vc-arch.el: New file.
5062
5063 2004-03-12 Jesper Harder <harder@ifa.au.dk>
5064
5065 * info-look.el (info-lookup): Reuse an existing Info window.
5066
5067 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5068
5069 * woman.el (woman-preserve-ascii): Default value changed to t and
5070 doc string revised.
5071
5072 2004-03-12 Richard M. Stallman <rms@gnu.org>
5073
5074 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
5075 Fix minor bug.
5076
5077 * replace.el (occur-engine): Change message for count of matches.
5078
5079 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
5080 For strings, do compare text properties.
5081
5082 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
5083
5084 * progmodes/compile.el (compile-auto-highlight)
5085 (compilation-error-list, compilation-old-error-list)
5086 (compilation-parse-errors-function, compilation-parsing-end)
5087 (compilation-error-message, compilation-directory-stack)
5088 (compilation-enter-directory-regexp-alist)
5089 (compilation-leave-directory-regexp-alist)
5090 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
5091 (compilation-current-file, compilation-regexps): Remove vars.
5092
5093 (compile-error-at-point, compilation-error-filedata)
5094 (compilation-error-filedata-file-name, compile-reinitialize-errors)
5095 (compilation-next-error-locus, compilation-forget-errors)
5096 (count-regexp-groupings, compilation-parse-errors)
5097 (compile-collect-regexps, compile-buffer-substring): Remove funs.
5098
5099 (compile-internal): Make obsolete.
5100
5101 (compilation-first-column, compilation-error)
5102 (compilation-directory-matcher, compilation-page-delimiter)
5103 (compilation-mode-font-lock-keywords, compilation-debug)
5104 (compilation-error-face, compilation-warning-face)
5105 (compilation-info-face, compilation-line-face)
5106 (compilation-column-face, compilation-enter-directory-face)
5107 (compilation-leave-directory-face, compilation-skip-threshold)
5108 (compilation-skip-visited, compilation-context-lines): New vars.
5109
5110 (compilation-warning-face, compilation-info-face)
5111 (compilation-message-face): New faces.
5112
5113 (compilation-error-regexp-alist-alist): New constant.
5114
5115 (compilation-face, compilation-directory-properties)
5116 (compilation-assq, compilation-error-properties, compilation-start)
5117 (define-compilation-mode, compilation-loop)
5118 (compilation-set-window): New functions.
5119
5120 (compile): Additional argument for interactive compiles like TeX.
5121
5122 * progmodes/grep.el (kill-grep): Move here from compile.el
5123 (grep-error, grep-hit-face, grep-error-face)
5124 (grep-mode-font-lock-keywords): New variables.
5125 (grep-regexp-alist): Simplify regexp and add `binary' case.
5126 (grep-mode): New mode.
5127 (grep-process-setup): Simplify.
5128
5129 2004-03-11 Jason Rumney <jasonr@gnu.org>
5130
5131 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
5132 letters on DOS/Windows.
5133
5134 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
5135
5136 * server.el (server-name): New var.
5137 (server-socket-dir): New var to replace server-socket-name.
5138 (server-start): Use them.
5139
5140 2004-03-11 Simon Josefsson <jas@extundo.com>
5141
5142 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
5143 died to avoid infloop. Reported by Jonathan Glauner
5144 <jglauner@sbum.org>.
5145
5146 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5147
5148 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
5149 (smerge-mode-menu): Use it to deactivate menu entries.
5150 (smerge-keep-current): New fun.
5151 (smerge-keep-current): Use it.
5152
5153 2004-03-10 John Paul Wallington <jpw@gnu.org>
5154
5155 * foldout.el (foldout-fold-list, foldout-modeline-string):
5156 Declare them as variables, not constants.
5157
5158 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5159
5160 * ps-print.el: Modification to print *Messages* buffer.
5161 (ps-print-version): New version 6.6.4.
5162 (ps-message-log-max): New fun.
5163 (ps-spool-without-faces, ps-spool-with-faces)
5164 (ps-count-lines-preprint): Code fix.
5165
5166 * printing.el: New tips in Tips section.
5167
5168 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5169
5170 * delim-col.el: Doc fix.
5171
5172 * printing.el: Doc fix. New doc section (Tips).
5173
5174 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5175
5176 * type-break.el (type-break-emacs-variant): Remove.
5177 (type-break-run-at-time, type-break-cancel-function-timers):
5178 Use fboundp rather than version name and number.
5179
5180 2004-03-09 Masatake YAMATO <jet@gyve.org>
5181
5182 * hexl.el (hexl-mode): Use `make-local-variable' instead of
5183 `make-variable-buffer-local'.
5184
5185 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
5186
5187 * find-dired.el (find-dired): Call `shell-command' instead of
5188 `start-process-shell-command'. By this, Tramp takes over
5189 handling of remote directories.
5190
5191 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
5192
5193 * newcomment.el (comment-use-global-state): New var.
5194 (comment-search-forward): Use it.
5195
5196 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
5197
5198 * cus-edit.el (fill) <defgroup>: Move to fill.el.
5199
5200 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
5201 (enable-kinsoku): Make it a defcustom.
5202 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
5203 paragraph to same-comment-start-marker.
5204
5205 2004-03-07 Dave Love <fx@gnu.org>
5206
5207 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
5208 (browse-url-mail): Use it.
5209
5210 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
5211 (rfc2368-unhexify-string): Use replace-regexp-in-string.
5212
5213 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5214
5215 * woman.el (woman-man.conf-path): Doc fix.
5216 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
5217
5218 2004-03-07 Eli Zaretskii <eliz@gnu.org>
5219
5220 * sort.el (sort-columns): Remove ms-dos from the list of systems
5221 where the external `sort' command is not used.
5222
5223 2004-03-07 Kim F. Storm <storm@cua.dk>
5224
5225 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
5226 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
5227 from overlay-arrow-variable-list.
5228 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
5229
5230 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
5231
5232 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
5233 overlay arrow string properly for the assembler buffer.
5234
5235 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5236
5237 * mail/sendmail.el (mail-mode): Fix last change.
5238
5239 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
5240
5241 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
5242 for the assembler buffer.
5243 (gdb-assembler-custom): Position the overlay arrow.
5244 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
5245
5246 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
5247
5248 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
5249
5250 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
5251 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
5252
5253 * mail/sendmail.el (mail-mode): Set comment-start-skip.
5254
5255 * newcomment.el (uncomment-region): Allow non-terminated comment.
5256 (comment-normalize-vars): Check the user-specified comstart marker.
5257
5258 2004-03-04 Jesper Harder <harder@ifa.au.dk>
5259
5260 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
5261 Otherwise, do use it if the region only contains font-lock text
5262 properties.
5263
5264 2004-03-04 Masatake YAMATO <jet@gyve.org>
5265
5266 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
5267 as the callback function for eldoc.
5268 (hexl-print-current-point-info): New function.
5269 (hexl-current-address): Print the address in both decimal
5270 and hexadecimal format.
5271
5272 2004-03-04 Richard M. Stallman <rms@gnu.org>
5273
5274 * mail/rmail.el (rmail-convert-to-babyl-format):
5275 Specify t for UNIBYTE when calling mail-unquote-printable-region.
5276
5277 * mail/mail-utils.el (mail-unquote-printable-region):
5278 New arg UNIBYTE.
5279
5280 * startup.el (command-switch-alist): Doc fix.
5281
5282 * simple.el (undo): Temporarily set this-command to `undo-start',
5283 then set it to `undo' once undo-start returns without error.
5284
5285 * simple.el (minibuffer-history-sexp-flag): Doc fix.
5286
5287 * simple.el (kill-line): Don't disregard trailing whitespace
5288 in eol condition, if show-trailing-whitespace is set.
5289
5290 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
5291 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
5292 When disabling, restore old values only if mouse-sel-has-been-enabled.
5293
5294 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
5295 (isearch-{-char): New function.
5296 (isearch-mode-map): Bind { to isearch-{-char.
5297
5298 * font-lock.el (lisp-font-lock-keywords-2):
5299 Turn off the CL with-... and do-... general patterns.
5300 Instead, recognize several specific with... and do... constructs.
5301
5302 * files.el (switch-to-buffer-other-window):
5303 Bind same-window-buffer-names and same-window-regexps to nil.
5304 (switch-to-buffer-other-frame): Likewise.
5305
5306 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
5307
5308 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
5309 recognizing leading comment on code line.
5310
5311 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
5314 hidden files/directories.
5315
5316 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5317
5318 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
5319 only comment-start (in case the mode hasn't set it).
5320
5321 * Makefile.in (AUTOGENEL): New var.
5322 (bootstrap-prepare): Rename from bootstrap-clean.
5323 Don't remove elc files.
5324 (maintainer-clean): New target.
5325
5326 * xml.el (xml-get-attribute-or-nil): Simplify.
5327
5328 2004-03-02 Juri Linkov <juri@jurta.org>
5329
5330 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
5331 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
5332 URL to prevent their substitution with the environment variable
5333 values by browsers.
5334
5335 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5336
5337 * ps-print.el: Doc fix.
5338 (ps-print-version): New version number (6.6.3).
5339 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
5340 Docstring fix.
5341 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
5342 before printing.
5343 (ps-time-stamp-yyyy-mm-dd): New fun.
5344 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
5345
5346 2004-03-02 Kim F. Storm <storm@cua.dk>
5347
5348 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
5349
5350 2004-03-01 Juanma Barranquero <lektu@terra.es>
5351
5352 * allout.el (allout-rebullet-heading): Fix typo in docstring.
5353
5354 * desktop.el (desktop-file-version)
5355 (desktop-after-read-hook): Fix typos.
5356 (desktop-clear-preserve-buffers): Remove redundant info in
5357 docstring already shown by the obsolescence message.
5358 (desktop-truncate, desktop-internal-v2s)
5359 (desktop-value-to-string): Change argument name to match docstring.
5360
5361 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
5362
5363 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
5364 docstring.
5365
5366 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5367
5368 * printing.el: Replace "As Is..." in PostScript file print/preview by
5369 "No Preprocessing...". Suggested by Colin Marquardt
5370 <_marquardt_@zmd.de>.
5371 (pr-insert-section-4): Adjust buffer interface.
5372
5373 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
5374
5375 Version 2.0.39 of Tramp released.
5376
5377 * net/tramp.el (tramp-handle-file-local-copy)
5378 (tramp-handle-write-region, tramp-open-connection-rsh):
5379 Variable name typo. Small change. From Patrick Tullmann
5380 <tullmann@flux.utah.edu>.
5381 (tramp-process-connection-type): New variable.
5382 (tramp-maybe-open-connection): Use it.
5383 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
5384 (tramp-touch): Set last-modified time of a remote file.
5385 (tramp-handle-write-region): Say which function is used when encoding.
5386
5387 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
5388
5389 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
5390 case of non-existing filename, too. Reported by Christoph Bauer
5391 <c_bauer@informatik.uni-kl.de>.
5392 (tramp-smb-get-file-entries): The directory in question should
5393 have permissions "drwxrwxrwx". Just virtual, because we don't
5394 know the real permissions. Don't we know?
5395 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
5396 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
5397 (tramp-smb-wait-for-output): Optimize algorithm getting pending
5398 output. If it was received chunkwise, there have been problems.
5399 Remove the "prompt not found" error message; it is obvious.
5400 Simplify algorithm.
5401 (tramp-smb-process-running): Remove. Since we acknowledge the
5402 virtual prompt for shares, there's no need for distinction of
5403 reading shares (process ends afterwards) and interactive mode of
5404 smblient.
5405 (tramp-smb-open-connection): Setting process sentinel removed.
5406 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
5407 "NT_STATUS_NETWORK_ACCESS_DENIED".
5408 (tramp-smb-maybe-open-connection): Set `process-connection-type'
5409 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
5410 (top-level): Setting default value in `tramp-default-method-alist'
5411 corrected. Order of USER and HOST have been wrong.
5412 Nobody complained for months ...
5413 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
5414 (tramp-smb-open-connection): Clear password cache if login has failed.
5415
5416 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
5417 `tramp-unified-filenames'.
5418 (tramp-completion-mode): Make test for XEmacs explicitely.
5419 `event-to-character' can exists in Emacs packages too.
5420 Reported by Matt Swift <swift@alum.mit.edu>.
5421 (tramp-buffer-name): Buffer name must contain the user if exists.
5422 Reported by Adrian Phillips <a.phillips@met.no>.
5423 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
5424 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
5425 (tramp-do-copy-or-rename-file-out-of-band): Rename from
5426 `tramp-do-copy-or-rename-file-one-local', because it handles also
5427 the case both files use the same out-of-band method.
5428 Implementation added.
5429 (tramp-handle-file-local-copy, tramp-handle-write-region):
5430 Out-of-band handling removed. `copy-file' called instead, which
5431 calls `tramp-do-copy-or-rename-file-out-of-band'.
5432 (tramp-action-password): Check for out-of-band method removed.
5433 This function is used for 'login-program.
5434 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
5435 appropriate.
5436 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
5437 and `tramp-parse-sknownhosts'.
5438 (tramp-completion-function-alist): It's a defvar now, because we
5439 want to apply the optimized `tramp-set-completion-function'
5440 instead of a static list.
5441 (tramp-set-completion-function): Implementation tuned.
5442 Avoid double entries, and entries where the function or the
5443 file/directory doesn't exist.
5444 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
5445 for SSH2.
5446 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
5447 (tramp-handle-dired-compress-file): New function.
5448 (tramp-async-proc): New variable.
5449 (tramp-handle-shell-command): Adding asynchronous processes.
5450 They are far from being perfect, but it works at least for
5451 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
5452 (top-level): Require password.el if visible. Should be mandatory
5453 once No Gnus has found its way into (X)Emacs.
5454 (tramp-read-passwd): Invoke `password-read' if available,
5455 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
5456 fallback any longer.
5457 (tramp-clear-passwd): New function.
5458 (tramp-process-actions, tramp-process-multi-actions):
5459 Clear password cache if login has failed.
5460
5461 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
5462 its own module.
5463 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
5464 `ange-ftp-ftp-name-res'. There could be incorrect values from
5465 previous calls in case the "ftp" method is used in the Tramp file
5466 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5467
5468 2004-02-28 Richard M. Stallman <rms@gnu.org>
5469
5470 * term.el (term-mouse-paste): Call mouse-set-point.
5471
5472 * thumbs.el: New file.
5473
5474 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5475
5476 * progmodes/ebnf-abn.el: Doc fix.
5477
5478 * progmodes/ebnf-bnf.el: Doc fix.
5479 (ebnf-repeat): Code fix.
5480
5481 * progmodes/ebnf2ps.el: Doc fix.
5482 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
5483
5484 2004-02-28 Juri Linkov <juri@jurta.org>
5485
5486 * ffap.el (dired-at-point): Additional writability test for
5487 relative directory names.
5488 (dired-at-point-prompter): Treat directories as a directory, get
5489 the directory component from files.
5490 (ffap-string-at-point): Return string from region if region is active.
5491 (ffap-file-at-point): Remove redundant code.
5492
5493 2004-02-28 Kim F. Storm <storm@cua.dk>
5494
5495 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
5496 Initialize margin area images to nil.
5497 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
5498 (breakpoint-enabled-bitmap-face)
5499 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
5500 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
5501 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
5502 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
5503 (gdb-reset): Use gdb-remove-breakpoint-icons.
5504 (gdb-put-string): Add dprop arg to specify alternative display
5505 property (for setting fringe bitmap).
5506 (gdb-remove-strings): Doc fix.
5507 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
5508 icon in fringe (if available), or else as icon or text in display
5509 margin. Creates necessary icons in breakpoint-bitmap,
5510 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
5511 Also make left window margin if required.
5512 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
5513 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
5514 no longer needed.
5515 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
5516 gdb-put-breakpoint-icon.
5517 (gdb-assembler-mode): Don't set left-margin-width here.
5518
5519 2004-02-27 Kevin Ryde <user42@zip.com.au>
5520
5521 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
5522 comma, so that it DTRT in macros.
5523
5524 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
5525
5526 * progmodes/sh-script.el (sh-shell-arg)
5527 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
5528 (sh-leading-keywords, sh-other-keywords): Fix custom type.
5529
5530 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
5531
5532 * faces.el (face-spec-set-match-display): Add a new attribute,
5533 `min-colors'.
5534 (region, highlight, secondary-selection): Use `min-colors'.
5535
5536 * custom.el (defface): Add documentation for `min-colors'.
5537
5538 * font-lock.el (font-lock-comment-face, font-lock-string-face)
5539 (font-lock-keyword-face, font-lock-function-name-face)
5540 (font-lock-variable-name-face, font-lock-constant-face):
5541 Use `min-colors'.
5542
5543 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
5544
5545 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5546
5547 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
5548 define assq-delete-all if it's not defined.
5549 (ebnf-generate-region): Code fix.
5550
5551 * printing.el: Doc fix.
5552 (pr-version): New version number (6.7.2).
5553 (pr-command): Return empty string if command is an empty string.
5554
5555 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5556
5557 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
5558
5559 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
5560 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
5561 semi-down-full. Fix a bug on productions like test = {"test"}* | (
5562 "tt" ["test"] ). Reported by Markus Dreyer
5563 <mdreyer@ix.urz.uni-heidelberg.de>.
5564 (ebnf-version): New version number (4.0).
5565 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
5566 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
5567 (ebnf-delete-style): New commands.
5568 (ebnf-directory, ebnf-file): New funs.
5569 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
5570 (ebnf-production-name-p, ebnf-stop-on-error): New options.
5571 (ebnf-syntax-alist): New var.
5572 (ebnf-element-width): New fun replacing ebnf-list-width.
5573 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
5574 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
5575 (ebnf-prologue): Adjust vars.
5576 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
5577 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
5578 (ebnf-check-style-values, ebnf-generate-production)
5579 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
5580 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
5581 (ebnf-token-repeat): Code fix.
5582
5583 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
5584 %right, %left and %prec. Suggested by Matthew K. Junker
5585 <junker@alum.mit.edu>.
5586 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
5587
5588 * progmodes/ebnf-iso.el: Doc fix.
5589 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
5590 (ebnf-iso-lex): Code fix.
5591
5592 * progmodes/ebnf-bnf.el: Doc fix.
5593 (ebnf-bnf-lex): Code fix.
5594
5595 * progmodes/ebnf-otz.el: Doc fix.
5596
5597 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5598
5599 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
5600 (abbrev-prefix-mark): Doc fix.
5601
5602 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
5603
5604 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
5605 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
5606 (gdb-var-delete): Make interactive (really).
5607 (gdb-edit-value): Make non-interactive.
5608
5609 * progmodes/gud.el (gud-speedbar-menu-items):
5610 Add gdb-var-delete and, indirectly, gdb-edit-value.
5611 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
5612 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
5613 (gud-gdb-marker-filter): Add comment for annotations.
5614
5615 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5616
5617 * calendar/calendar.el (generate-calendar)
5618 (calendar-read-date): Prevent display of BC calendars once more -
5619 reverts 2003-10-01 change.
5620 (generate-calendar-month): Doc fix.
5621
5622 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
5623
5624 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
5625 return value of increment-calendar-month.
5626
5627 2004-02-21 Stephen Compall <s11@member.fsf.org>
5628
5629 * saveplace.el (save-place-forget-unreadable-files)
5630 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
5631 (save-place-forget-unreadable-files): New function.
5632 (save-place-alist-to-file): Use it to filter out files that are
5633 no longer readable.
5634
5635 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
5636 current Texinfo environment, using the same method as in
5637 `texinfo-insert-@end', and insert a space rather than a newline if
5638 point in a @table environment.
5639
5640 2004-02-21 Juri Linkov <juri@jurta.org>
5641
5642 * ffap.el (ffap-file-at-point): Try parent directories.
5643
5644 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
5645
5646 * vcursor.el (vcursor-modifiers): New defcustom.
5647 (vcursor-cs-binding): Use vcursor-modifiers instead of a
5648 hard-coded list.
5649
5650 2004-02-21 Masatake YAMATO <jet@gyve.org>
5651
5652 * play/animate.el (animate-birthday-present): Accept names other
5653 than `Sarah', too.
5654
5655 2004-02-21 Juri Linkov <juri@jurta.org>
5656
5657 * startup.el: Remove table of command line arguments from the
5658 Commentary section.
5659
5660 2004-02-20 John Wiegley <johnw@newartisans.com>
5661
5662 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
5663 again" modifier from 'e' to 'E', since 'e' is also used by the
5664 "file extension" modifier.
5665
5666 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5667
5668 * help-fns.el (describe-categories): Doc fix.
5669
5670 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
5671
5672 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
5673 temporary file for buffer already visiting one. This change makes
5674 output likely to be directly usable by patch program.
5675 Suggested by Adrian Aichner <adrian@xemacs.org>
5676
5677 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
5678
5679 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
5680 case of variables defined in compound statements.
5681 (gdb-setup-windows, gdb-source-info, gdb-source-info):
5682 Simplify constructions using switch-to-buffer.
5683
5684 2004-02-19 Simon Josefsson <jas@extundo.com>
5685
5686 * play/morse.el: Fix typo.
5687 (morse-code): Add @.
5688
5689 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
5690
5691 * calendar/appt.el (appt-display-format): Change default to
5692 'ignore, for backwards compatibility.
5693 (appt-display-message): If appt-display-format is 'ignore,
5694 respect old vars appt-msg-window and appt-visible.
5695 (appt-activate): Don't depend on return value of cancel-timer.
5696
5697 * calendar/calendar.el (calendar-holidays): Doc fix.
5698
5699 * calendar/cal-coptic.el (coptic-prompt-for-date):
5700 Use assoc-string instead of assoc-ignore-case.
5701 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
5702 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
5703 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
5704 * calendar/cal-islam.el (calendar-goto-islamic-date)
5705 (mark-islamic-diary-entries): Ditto.
5706 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
5707 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
5708 (calendar-read-mayan-tzolkin-date): Ditto.
5709 * calendar/calendar.el (calendar-read-date): Ditto.
5710 * calendar/diary-lib.el (mark-diary-entries): Ditto.
5711
5712 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
5713
5714 * progmodes/executable.el (executable-command-find-posix-p):
5715 Fix choice of the directory.
5716
5717 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
5718
5719 * simple.el (interprogram-cut-function)
5720 (interprogram-paste-function, kill-new, kill-append):
5721 Doc fixes.
5722 (kill-region): Make it return nil. Doc fix.
5723 (yank-pop): Make its argument optional.
5724 (yank): Make ARG `-' equivalent to `-1'.
5725
5726 2004-02-17 Eli Zaretskii <eliz@gnu.org>
5727
5728 * mail/rmail.el (rmail-get-new-mail): Don't reference
5729 rmail-use-spam-filter if rmail-spam-filter is not loaded.
5730
5731 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
5732
5733 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
5734 if one of global-auto-revert-non-file-buffers or autorevert-mode
5735 is non-nil.
5736
5737 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5738
5739 * subr.el (delete-dups): A better implementation from Karl Heuer
5740 <kwzh@gnu.org>.
5741
5742 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5743
5744 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
5745 correct place.
5746 * progmodes/icon.el (icon-indent-command): Ditto.
5747 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
5748
5749 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5750
5751 * progmodes/grep.el (grep-compute-defaults): Undo change from
5752 2004-01-29: don't use executable-command-find-posix-p.
5753
5754 2004-02-16 Richard Sharman <rsharman@pobox.com>
5755
5756 * hilit-chg.el: Use require instead of eval-and-compile.
5757 (highlight-compare-buffers): New function.
5758
5759 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
5760
5761 * man.el (Man-fontify-manpage): Render section headings in
5762 `Man-overstrike-face' even when overstrike was not used by man
5763 formatter for section headings.
5764
5765 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
5766
5767 * rmail-spam-filter.el: (vm-use-spam-filter)
5768 (rsf-min-region-length-added-to-spam-list): New variables.
5769 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
5770 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
5771 spam testing. Don't delete spam message if automatic deletion
5772 after output via variable rmail-delete-after-output is turned on.
5773 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
5774 rsf-bbdb-dont-create-entries-for-spam.
5775 (check-field): New function, extracted from code in
5776 rmail-spam-filter to ease addition of header fields like content-type.
5777 (message-content-type): New variable to check the content-type:
5778 field added, also in defcustom of rsf-definitions-alist.
5779 (rmail-spam-filter): Replace repeated test code for header fields
5780 by calls to check-field; change the call to
5781 rmail-output-to-rmail-file such that rmail-current-message stays
5782 the same to avoid wrong deletion of unseen flags.
5783 (rsf-add-contents-type): New function to convert old format
5784 of rmail-spam-definitions-alist into new one.
5785 Change prefixes of all variables and functions from
5786 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
5787
5788 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5789
5790 * loadhist.el (unload-hook-features-list): New defvar.
5791
5792 2004-02-16 Dave Love <fx@gnu.org>
5793
5794 * loadhist.el (unload-feature): Doc fix. Rename flist to
5795 unload-hook-features-list.
5796
5797 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
5798
5799 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
5800 cookie. Don't check if we are looking-at open-formula.
5801
5802 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
5803
5804 * subr.el (match-string-no-properties): Use substring-no-properties.
5805
5806 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5807
5808 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
5809 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
5810 Use lower-case "rx" in all error message.
5811
5812 2004-02-16 Dave Love <fx@gnu.org>
5813
5814 * emacs-lisp/rx.el (rx-or): Put group around result.
5815 (rx-constituents): Add backref.
5816 (rx-syntax): Add string-delimiter, comment-delimiter.
5817 (rx-categories): Add combining-diacritic.
5818 (rx-check-not, rx-greedy, rx): Doc fix.
5819 (rx-backref, rx-check-backref): New.
5820
5821 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5822
5823 * newcomment.el (uncomment-region): Allow eob as comment end.
5824
5825 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5826
5827 * filecache.el: All message and error commands now use prefix
5828 "Filecache:" to make it easy to read *Messages* buffer.
5829
5830 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5831
5832 * autorevert.el: Add support to detect changed dired and VC buffers.
5833 (auto-revert-active-p, auto-revert-list-diff)
5834 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
5835 (auto-revert-handler, auto-revert-active-p): New functions.
5836 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
5837 and `auto-revert-active-p'.
5838 (eval-when-compile): Defvar dired-directory and vc-mode.
5839 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
5840 (auto-revert-handler-vc): New functions.
5841
5842 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
5843
5844 * progmodes/compile.el (compilation-directory): New defvar.
5845 (compile): Save current directory in compilation-directory.
5846 (recompile): Bind default-directory to compilation-directory if
5847 that is non-nil.
5848
5849 2004-02-16 Dave Love <fx@gnu.org>
5850
5851 * newcomment.el (comment-insert-comment-function)
5852 (comment-region-function, uncomment-region-function): New.
5853 (comment-indent): Use comment-insert-comment-function.
5854 (uncomment-region): Use uncomment-region-function.
5855 (comment-region): Use comment-region-function.
5856
5857 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
5858
5859 2004-02-16 Richard Stallman <rms@gnu.org>
5860
5861 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
5862 loaddefs* and ldefs-boot*.
5863
5864 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5865
5866 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
5867 and email address at the beginning and end of the address.
5868
5869 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
5870 anchored at the beginning of the email address.
5871
5872 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
5873
5874 * international/ccl.el (ccl-compile-write): Pass `left' to
5875 ccl-embed-code to generate correct code of write-expr-register.
5876
5877 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
5878
5879 * progmodes/grep.el (grep-compute-defaults): Fix typos.
5880
5881 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5882
5883 * x-dnd.el: Mention support for Motif in commentary.
5884 (x-dnd-handle-drag-n-drop-event): Ditto.
5885
5886 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5887
5888 * ses.el: Use "ses--" prefixes for buffer-local variables.
5889 Use (point-min) instead of 1, even when we know the buffer
5890 is unnarrowed.
5891 (ses-build-load-map): Delete. Distribute its content to defconst's for
5892 the three maps.
5893 (ses-menu, ses-header-line-menu): New menus.
5894 (ses-mode-map): Use them.
5895 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
5896
5897 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
5898
5899 * Makefile.in: Fix the CC Mode recompile kludge so it works
5900 when building in a different directory.
5901
5902 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
5903
5904 * simple.el (kill-new): Put yank-handler property on the entire string.
5905
5906 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5907
5908 * diff.el: Don't use compile any more, use diff-mode instead.
5909 (diff-regexp-alist, diff-old-file, diff-new-file)
5910 (diff-parse-differences, diff-process-setup): Remove.
5911 (diff-sentinel): New fun.
5912 (diff): Use it. Run the process ourselves.
5913 Use diff-mode for the rest of the processing.
5914
5915 * diff.el (diff): Simplify code handling `switch'.
5916
5917 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5918
5919 * pcvs-defs.el (cvs-menu): Add `tag'.
5920
5921 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
5922
5923 * simple.el (kill-append): Doc fix.
5924
5925 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5926 Adapt outline-regexp to the new conventions for commenting out code.
5927
5928 2004-02-11 John Paul Wallington <jpw@gnu.org>
5929
5930 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
5931
5932 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
5933
5934 * diff.el (diff-switches): New fun.
5935 (diff, diff-backup): Use it.
5936 (diff): Clean up the args construction. Use backquote.
5937 Use listp instead of consp to avoid putting a nil arg.
5938 (diff): Add a revert-buffer function.
5939
5940 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5941
5942 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
5943 handled by x-dnd-handle-file-name.
5944 (x-dnd-known-types): Add COMPOUND_TEXT.
5945 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
5946 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
5947 x-dnd-empty-state.
5948 (x-dnd-forget-drop): Ditto.
5949 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
5950 (x-dnd-handle-one-url): Return private when inserting text.
5951 (x-dnd-insert-ctext): New function.
5952 (x-dnd-handle-file-name): New function for FILE_NAME.
5953 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
5954 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
5955 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
5956
5957 2004-02-10 Kenichi Handa <handa@m17n.org>
5958
5959 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
5960 instead of while loop.
5961
5962 2004-02-10 Miles Bader <miles@gnu.org>
5963
5964 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
5965
5966 2004-02-09 Kenichi Handa <handa@m17n.org>
5967
5968 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
5969 have end-of-line.
5970
5971 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
5972
5973 * Makefile.in: Added extra dependencies in the recompile target
5974 needed to cope with the compile time macro expansions in CC Mode.
5975
5976 2004-02-09 Kim F. Storm <storm@cua.dk>
5977
5978 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
5979 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
5980 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
5981 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
5982 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
5983 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
5984 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
5985 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
5986 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
5987 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
5988 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
5989
5990 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
5991
5992 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
5993 Don't allow shrink if there's a window on our right.
5994
5995 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
5996 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
5997 Bring together declaration and initialization.
5998 (prolog-mode-variables): Don't set the syntax table.
5999 Don't set paragraph-start and comment-indent-function.
6000 Add /*..*/ to the comment regexps.
6001 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
6002 (prolog-mode-map): Don't bind TAB.
6003 (prolog-mode): Set the syntax table.
6004 (prolog-comment-indent): Remove.
6005 (inferior-prolog-mode-map): Initialize in the declaration.
6006 (inferior-prolog-mode-syntax-table)
6007 (inferior-prolog-mode-abbrev-table): New vars.
6008 (inferior-prolog-mode): Derive from comint-mode.
6009 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
6010 minibuffer windows.
6011
6012 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
6013 in file names, as long as it is unabmiguous.
6014
6015 2004-02-08 Andreas Schwab <schwab@suse.de>
6016
6017 * textmodes/reftex-toc.el
6018 (reftex-toc-load-all-files-for-promotion): Remove useless use of
6019 format. Doc fix.
6020
6021 * textmodes/refer.el (refer-find-entry-internal): Remove extra
6022 format string arguments.
6023
6024 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
6025 string argument.
6026
6027 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
6028
6029 * play/zone.el (zone-call): Fix format string.
6030
6031 * net/webjump.el (webjump-builtin): Add missing format string argument.
6032
6033 * midnight.el (midnight-delay-set): Remove extra format string argument.
6034
6035 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
6036
6037 * hexl.el (hexl-insert-char): Add missing format string argument.
6038
6039 * format.el (format-decode): Fix format string.
6040
6041 * emulation/vi.el (vi-mode): Remove extra format string argument.
6042 (vi-repeat-last-search): Likewise.
6043 (vi-reverse-last-search): Likewise.
6044 (vi-goto-mark): Likewise.
6045 (vi-reverse-last-find-char): Likewise.
6046 (vi-repeat-last-find-char): Likewise.
6047 (vi-locate-def): Likewise.
6048
6049 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
6050
6051 * ediff-util.el (ediff-toggle-read-only): Remove extra format
6052 string argument.
6053 (ediff-toggle-regexp-match): Likewise.
6054
6055 * dired-aux.el (dired-do-query-replace-regexp): Add missing
6056 format string argument.
6057
6058 * calc/calc-map.el (calc-get-operator): Remove extra format
6059 string argument.
6060
6061 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
6062
6063 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
6064 string argument.
6065
6066 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
6067
6068 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
6069
6070 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
6071
6072 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
6073 (cl-struct-setf-expander): Likewise.
6074
6075 * vc.el (with-vc-file): Fix unsafe uses of error.
6076 (vc-cancel-version): Likewise.
6077
6078 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
6079
6080 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
6081 thousands separator; fixes <class>:<line-number> regexp for
6082 non-english locales.
6083
6084 2004-02-08 Andreas Schwab <schwab@suse.de>
6085
6086 * view.el (view-mode-enable): Revert previous change.
6087
6088 2004-02-07 Kim F. Storm <storm@cua.dk>
6089
6090 * simple.el (line-number-at-pos): Rename from line-at-pos.
6091 Uses changed (what-line and vc-annotate-warp-version).
6092
6093 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6094
6095 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
6096 (diff-mode): Remove aborted attempt at support for compile.el.
6097 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
6098
6099 2004-02-06 Andreas Schwab <schwab@suse.de>
6100
6101 * view.el (view-mode-enable): Add view-mode-map to
6102 minor-mode-overriding-map-alist.
6103
6104 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6105
6106 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
6107
6108 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
6109
6110 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
6111 with point inside rather than after the paragraph.
6112
6113 2004-02-04 Sam Steingold <sds@gnu.org>
6114
6115 * mail/smtpmail.el (smtpmail-try-auth-methods):
6116 Do not try authentication when no mechanism is available.
6117 Pass port-name as defaultport to `netrc-machine'.
6118
6119 2004-02-04 Stephen Eglen <stephen@gnu.org>
6120
6121 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
6122 to show how minibuffer height can be constrained.
6123
6124 2004-02-04 John Paul Wallington <jpw@gnu.org>
6125
6126 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
6127
6128 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6129
6130 * x-dnd.el: New file for drag and drop.
6131
6132 * term/x-win.el: require x-dnd, set after-make-frame-functions
6133 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
6134 drag-n-drop event.
6135
6136 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
6137 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
6138 (dired-dnd-handle-file): New functions for drag and drop support.
6139 (dired-mode): Initialize drag and drop if x-dnd present.
6140
6141 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
6142
6143 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
6144 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
6145 (cperl-mode): Set fill-paragraph-function.
6146 (cperl-fill-paragraph): Make it non-interactive.
6147
6148 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
6149
6150 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
6151
6152 2004-02-02 David Kastrup <dak@gnu.org>
6153
6154 * replace.el (perform-replace): Allow 'literal argument in
6155 regexp-flag to indicate literal replacement.
6156 (query-replace-regexp-eval): Use it.
6157
6158 2004-02-01 Andreas Schwab <schwab@suse.de>
6159
6160 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
6161
6162 2004-02-01 Stephen Eglen <stephen@gnu.org>
6163
6164 * info-look.el: Add support for maxima-mode. Update commentary
6165 because info-lookup-symbol is now bound to C-h S.
6166
6167 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
6168
6169 * simple.el (edit-and-eval-command): Bind print-level and
6170 minibuffer-history-sexp-flag around call to read-from-minibuffer.
6171 Correct initial position in command-history.
6172
6173 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
6174
6175 * files.el (read-directory-name): Adapt the docstring to recent
6176 change in Fread_file_name.
6177
6178 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
6179
6180 * ses.el (ses-print-cell): If print format too wide for column
6181 width, truncate decimal places if that helps to avoid "#####" fill.
6182 * ses.el (ses-initial-column-width): Revert previous change.
6183
6184 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
6185
6186 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
6187 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
6188 Add edebug info.
6189 (jit-lock-mode): Setup/cancel the new timer.
6190 (jit-lock-context-fontify): New fun. Extracted from
6191 context fontification code of jit-lock-stealth-fontify.
6192 (jit-lock-stealth-fontify): Don't do context fontification any more.
6193
6194 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
6195 (jit-lock-fontify-now): Handle the `quit' case.
6196 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
6197
6198 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
6199
6200 * progmodes/executable.el (executable-command-find-posix-p):
6201 New. Check if find handles arguments Posix-style.
6202
6203 * progmodes/grep.el (grep-compute-defaults):
6204 Use executable-command-find-posix-p.
6205 (grep-find): Check `grep-find-command'.
6206
6207 * filecache.el (file-cache-find-posix-p): Delete.
6208 (file-cache-add-directory-using-find):
6209 Use `executable-command-find-posix-p'.
6210
6211 2004-01-29 Dave Love <fx@gnu.org>
6212
6213 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
6214 Iterate the hook function if arg is given.
6215 (mark-defun, narrow-to-defun): Change order of finding the limits.
6216
6217 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
6218 (byte-compile-format-warn): New.
6219 (byte-compile-callargs-warn): Use it.
6220 (Format, message, error): Add byte-compile-format-like property.
6221 (byte-compile-maybe-guarded): New.
6222 (byte-compile-if, byte-compile-cond): Use it.
6223 (byte-compile-lambda): Compile interactive forms,
6224 just to make warnings about them.
6225
6226 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
6227
6228 * ses.el (ses-initial-column-width): Increase to 14, so it will
6229 work well with the default printer of "%.7g" for extreme values
6230 like "-1.234567e+07".
6231
6232 2004-01-29 Kenichi Handa <handa@m17n.org>
6233
6234 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
6235
6236 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
6237
6238 * dos-w32.el: Added support for the `default-printer-name' function.
6239
6240 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
6241
6242 * server.el (server-socket-name): Don't use the hostname in the
6243 socket name since /tmp is local to the host anyway.
6244
6245 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
6246 robust check of widening and fix var-naming.
6247
6248 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
6249
6250 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
6251 or rmail-spam- to rsf- in all function and variable names.
6252 (rsf-min-region-to-spam-list): New variable.
6253 (rsf-bbdb-auto-delete-spam-entries): Rename from
6254 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
6255 scanned together with the recipients field for spam testing; Don't
6256 delete spam message if rmail-delete-after-output is non-nil;
6257 (rsf-check-field): New function, extracted from code in
6258 rmail-spam-filter to ease addition of header fields like
6259 content-type:;
6260 (message-content-type): New variable. The content-type: field was
6261 added also in defcustom of rsf-definitions-alist;
6262 (rmail-spam-filter): Replace repeated test code for header fields
6263 by calls to check-field; change the call to
6264 rmail-output-to-rmail-file such that rmail-current-message stays
6265 the same to avoid wrong deletion of unseen flags.
6266 (rmail-use-spam-filter): Add autoload cookie.
6267
6268 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
6269
6270 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
6271 (file-cache-add-directory-using-find): Add Cygwin support.
6272 (file-cache-find-command-posix-flag): New user variable.
6273
6274 * filecache.el (file-cache-add-directory): Check for
6275 directories an remove them from dir-files.
6276
6277 2004-01-27 Richard M. Stallman <rms@gnu.org>
6278
6279 * man.el (Man-fontify-manpage): Clean up message.
6280
6281 2004-01-27 Kenichi Handa <handa@m17n.org>
6282
6283 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
6284 (sentence-end): Define using sentence-end-without-space.
6285
6286 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
6287 a sentence ends with one of a character in sentence-end-without-space.
6288
6289 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
6290
6291 * font-lock.el (font-lock): Add jit-lock as explicit group member.
6292 (jit-lock): Group declaration moved to jit-lock.el.
6293 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
6294 when necessary.
6295
6296 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
6297 (jit-lock-context-unfontify-pos): Rename from
6298 jit-lock-first-unfontify-pos.
6299 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
6300
6301 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
6302
6303 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
6304 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
6305 (fortran-fill): When filling a string, adjust re-search-backward
6306 argument for special case of string just on fill-column.
6307 When filling non-string, allow one extra char if
6308 fortran-break-before-delimiters is non-nil.
6309 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
6310 Use fortran-break-delimiters-re and fortran-no-break-re to
6311 correctly handle cases such as "**".
6312
6313 * progmodes/f90.el (f90-break-delimiters): Doc fix.
6314 (f90-no-break-re): Add some extra tokens. Doc fix.
6315
6316 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
6317
6318 * mail/rmail-spam-filter.el:
6319 Use two semicolons as Commentary line prefix.
6320 Add ";;; Code:" stylized comment.
6321 Delete end-of-line whitespace.
6322 Wrap (require 'cl) with `eval-when-compile'.
6323
6324 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
6325
6326 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
6327 at the top level of vc.el.
6328
6329 2004-01-23 Andre Spiegel <spiegel@gnu.org>
6330
6331 * vc.el (vc-current-line): Function removed. This is now done by
6332 the new function line-at-pos in simple.el.
6333 (vc-annotate-warp-version): Use line-at-pos instead of
6334 vc-current-line.
6335
6336 2004-01-22 Kim F. Storm <storm@cua.dk>
6337
6338 * simple.el (line-at-pos): New defun.
6339 (what-line): Use it. Optimize by only counting lines in narrowed
6340 region once.
6341
6342 2004-01-22 Kenichi Handa <handa@m17n.org>
6343
6344 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
6345 point (register r1) only for charset mule-unicode-0100-24ff.
6346
6347 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
6348
6349 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
6350 trailing white space and ensure a final newline.
6351
6352 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
6353 Add autoload cookie.
6354
6355 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
6356
6357 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
6358 activate view-mode explicitly.
6359
6360 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6361
6362 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
6363 use clipboard first.
6364
6365 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
6366
6367 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
6368 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
6369 (vc-mcvs-cvs): Remove.
6370 (vc-mcvs-command): Remove use of assert.
6371
6372 * outline.el (outline-insert-heading): Tighten up match.
6373 (outline-demote, outline-move-subtree-down): Don't assume anything
6374 about outline-regexp.
6375
6376 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
6377 (texinfo-show-structure): Explicitly add ^, and simplify.
6378
6379 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
6380
6381 * calendar/appt.el (appt-check): Restore usage of
6382 appt-issue-message deleted in previous change.
6383 (top-level): Activate package when loaded (needed for backwards
6384 compatibility).
6385
6386 2004-01-20 Jesper Harder <harder@ifa.au.dk>
6387
6388 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
6389 following previous change to smtpmail-send-data.
6390
6391 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
6392
6393 * vc.el (vc-default-previous-version): Doc enhancement.
6394 (vc-default-next-version): New function.
6395 (vc-print-log): New arg FOCUS-REV.
6396 (vc-annotate-mode): Derive from view-mode.
6397 (vc-annotate): New args REVISION, DISPLAY-MODE.
6398 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
6399 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
6400 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
6401 (vc-annotate-show-diff-revision-at-line, vc-current-line)
6402 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
6403
6404 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
6405
6406 2004-01-19 Karl Berry <karl@gnu.org>
6407
6408 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
6409 or "TexInfo".
6410
6411 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
6412
6413 * subr.el (delete-dups): New function.
6414
6415 2004-01-19 Karl Berry <karl@gnu.org>
6416
6417 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
6418 with ^, since that's what texinfo-show-structure
6419 documentation says (plus it works much better in texinfo.txi).
6420
6421 2004-01-18 Jesper Harder <harder@ifa.au.dk>
6422
6423 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
6424
6425 2004-01-18 David Ponce <david@dponce.com> (tiny change)
6426
6427 * progmodes/which-func.el (which-function-mode): Don't cancel
6428 which-func-update-timer if not set.
6429
6430 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
6431
6432 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
6433 Remove spurious left square bracket in XX:XXam regexp.
6434
6435 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
6436
6437 * progmodes/cc-defs.el: Do not require cl at run time.
6438
6439 2004-01-16 Richard M. Stallman <rms@gnu.org>
6440
6441 * emacs-lisp/cl.el (cl-cannot-unload): New function.
6442 (cl-unload-hook): Defvar this to run cl-cannot-unload.
6443
6444 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
6445 Call rmail-spam-filter. Delete and expunge spam.
6446 Print number of spam messages deleted.
6447 Save and restore the deletion status of old messages when reading
6448 new mail with spam filter, so that expunging spam does not expunge
6449 msgs deleted by the user.
6450 (rmail-only-expunge): Add an optional argument dont-show to
6451 prevent showing message after expunge.
6452
6453 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
6454
6455 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
6456 * subr.el (declare): New macro.
6457
6458 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
6459
6460 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
6461
6462 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6463
6464 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6465 Test window-system rather than system-type (for X11/Mac).
6466
6467 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
6468
6469 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
6470
6471 2004-01-12 Richard M. Stallman <rms@gnu.org>
6472
6473 * mail/rmail.el (rmail-convert-to-babyl-format):
6474 Use mail-unquote-printable-region.
6475 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
6476 (rmail-hex-char-to-integer): Functions deleted.
6477
6478 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
6479 (mail-unquote-printable-region): New arg NOERROR.
6480 For invalid encoding, either signal an error to just return nil.
6481
6482 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
6483
6484 * calendar/appt.el: Update copyright and commentary.
6485 (appt-issue-message): Make obsolete.
6486 (appt-visible, appt-msg-window): Make obsolete, in favour of
6487 appt-display-format.
6488 (appt-display-mode-line, appt-display-duration)
6489 (appt-display-diary, appt-time-msg-list, appt-mode-string)
6490 (appt-prev-comp-time, appt-display-count, appt-timer)
6491 (appt-convert-time): Doc change.
6492 (appt-disp-window-function, appt-delete-window-function):
6493 Use defcustom rather than defvar.
6494 (appt-display-format): New variable.
6495 (appt-display-message): New function with display code from appt-check.
6496 (appt-check): Add optional FORCE argument. Doc change.
6497 Add appt-make-list to diary-hook if displaying diary.
6498 Remove checking of view-diary-entries-initially.
6499 Message display section removed to new function appt-display-message.
6500 (appt-display-window): Doc change. Remove unused internal var
6501 this-buffer. Do not beep, since appt-display-message does that.
6502 (appt-make-list): Doc change. Use caar.
6503 (appt-sort-list): Simplify by using builtin sort function.
6504 (appt-update-list): New function for updating appts when diary is
6505 saved.
6506 (appt-activate): New autoloaded function to toggle package
6507 functionality.
6508
6509 * calendar/cal-x.el: (calendar-one-frame-setup)
6510 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
6511
6512 * calendar/calendar.el: Update copyright.
6513 (view-diary-entries-initially, european-calendar-style): Doc change.
6514 (calendar-setup): Make defcustom rather than defvar.
6515 (mark-visible-calendar-date): Initialize temp-face and faceinfo
6516 in let binding so local to function.
6517
6518 * calendar/diary-lib.el: Update copyright.
6519 (diary, diary-entry-time): Doc change.
6520 (list-diary-entries): Doc change. Trivial logic change.
6521 (fancy-diary-display): Restore make-face command mistakenly
6522 deleted 2003-05-08.
6523 (show-all-diary-entries): Allow to pop-up frame if needed.
6524
6525 2004-01-09 John Paul Wallington <jpw@gnu.org>
6526
6527 * bindings.el (mode-line-change-eol): Add EVENT parameter.
6528 Temporarily select EVENT's window for changing eol type.
6529
6530 2004-01-09 Deepak Goel <deego@gnufans.org>
6531
6532 * calendar/diary-lib.el (diary-entry-time):
6533 Also accept time in the form XX[.XX][am/pm/AM/PM].
6534 (fancy-diary-font-lock-keywords): Likewise.
6535 (diary-font-lock-keywords): Likewise.
6536 * calendar/appt.el (appt-add): Likewise.
6537 (appt-make-list): Likewise.
6538 (appt-convert-time): Likewise.
6539
6540 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
6541
6542 * gdb-ui.el (gdb-ann3): Revert previous change.
6543 (gdb-source-info): Allow for case of where compilation directory
6544 is not recorded.
6545
6546 2004-01-08 John Paul Wallington <jpw@gnu.org>
6547
6548 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
6549
6550 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
6551
6552 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
6553
6554 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
6555 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
6556 problems.
6557 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
6558
6559 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
6560
6561 * files.el (write-file-functions, write-contents-functions):
6562 Clarify docstrings.
6563
6564 2004-01-07 Kenichi Handa <handa@m17n.org>
6565
6566 * international/mule.el (set-auto-coding): Fix for the case that
6567 end-of-line is only CR.
6568
6569 2004-01-07 Kim F. Storm <storm@cua.dk>
6570
6571 * subr.el (event-start, event-end): Doc fix.
6572 (posn-string, posn-image): New defuns.
6573 (posn-object): Return either image or string object.
6574 (posn-object-x-y): Return 8th element of position.
6575 (posn-object-width-height): New defun.
6576
6577 2004-01-06 Andreas Schwab <schwab@suse.de>
6578
6579 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
6580 output.
6581
6582 2004-01-05 Karl Berry <karl@gnu.org>
6583
6584 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
6585 / and *, too.
6586
6587 2003-12-31 Simon Josefsson <jas@extundo.com>
6588
6589 * files.el (before-save-hook): Add.
6590 (basic-save-buffer): Use before-save-hook.
6591
6592 * emacs-lisp/copyright.el: Fix comment to recommend
6593 before-save-hook instead of write-file-functions.
6594
6595 2004-01-05 Richard M. Stallman <rms@gnu.org>
6596
6597 * finder.el (finder-commentary): Call delete-other-windows.
6598
6599 * net/ange-ftp.el (ange-ftp-file-attributes):
6600 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
6601
6602 2004-01-04 Karl Berry <karl@gnu.org>
6603
6604 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
6605 comment characters % and # in the copyright year notice,
6606 as well as ;.
6607
6608 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
6609
6610 * wid-edit.el (default): Define dummy :value-delete.
6611 Reported by Jesper Harder <harder@ifa.au.dk>.
6612
6613 2004-01-03 Richard M. Stallman <rms@gnu.org>
6614
6615 * progmodes/compile.el (compile-internal): Use point, not point-min,
6616 for set-window-point.
6617
6618 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
6619
6620 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
6621
6622 * progmodes/grep.el (grep-mode-map):
6623 Don't remap next-line, previous-line.
6624
6625 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
6626
6627 * speedbar.el (speedbar-edit-line): Change regexp to position
6628 the cursor on the first character of this line's button.
6629
6630 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6631
6632 * subr.el (functionp): Doc fix.
6633
6634 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
6635
6636 * progmodes/idlwave.el (idlwave-make-tags):
6637 * textmodes/flyspell.el (flyspell-large-region):.
6638 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
6639 * emulation/viper-util.el (viper-glob-unix-files):
6640 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
6641 * man.el (Man-init-defvars):
6642 * jka-compr.el (jka-compr-call-process):
6643 * files.el (get-free-disk-space,insert-directory):
6644 * ediff-ptch.el (ediff-test-patch-utility):
6645 * ediff-diff.el (ediff-test-utility):
6646 * dired-aux.el (dired-check-process):
6647 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
6648 test the return value of call-process, because it can be a string.
6649
6650 2003-12-31 John Paul Wallington <jpw@gnu.org>
6651
6652 * bindings.el (completion-ignored-extensions): Add .pfsl.
6653
6654 2003-12-31 Kim F. Storm <storm@cua.dk>
6655
6656 * ido.el (ido-nonreadable-directory-p): New defun to check for
6657 nonreadable directory without activating tramp (to avoid problems
6658 with checking incomplete tramp paths).
6659 (ido-set-current-directory, ido-file-internal)
6660 (ido-file-name-all-completions1): Use it.
6661
6662 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6663
6664 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
6665 documentation if the anchor (or node) name is preceded by `info
6666 anchor' or `Info anchor' in addition to earlier `info node' and
6667 `Info node'.
6668 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
6669
6670 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6671
6672 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
6673 error in arguments to base64-decode-region. Remove ^M characters
6674 after decoding base64.
6675
6676 2003-12-30 Simon Josefsson <jas@extundo.com>
6677
6678 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
6679 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
6680 have only been distributed with Emacs for some years.
6681 (texinfo-mode-hook): Customize.
6682
6683 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6684
6685 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
6686 cleaner (suggested by Richard Stallman).
6687
6688 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
6689 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
6690 file-name clashes on 8+3 DOS filesystems.
6691
6692 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
6693 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
6694 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
6695 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
6696 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
6697 file-name clashes on 8+3 filesystems.
6698
6699 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
6700 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
6701 file-name clashes on 8+3 DOS filesystems.
6702
6703 2003-12-29 Richard M. Stallman <rms@gnu.org>
6704
6705 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
6706 Upcase the character.
6707
6708 * textmodes/flyspell.el (mail-mode-flyspell-verify):
6709 Search for header separator alone on a line, literally,
6710 and search for it backward, not forward.
6711 (flyspell-abbrev-table): Always use global-abbrev-table
6712 if there is no local one.
6713
6714 * progmodes/sh-script.el (sh-get-indent-info):
6715 Don't move point back if at bob.
6716
6717 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
6718
6719 * play/handwrite.el (handwrite): Make the handwrite credit message
6720 a comment rather than an output command.
6721
6722 * obsolete/sc.el: Display message that this file is obsolete.
6723
6724 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
6725
6726 * mail/rfc822.el (rfc822-address-start): Declare variable.
6727 Renamed from address-start. All uses changed.
6728
6729 * term.el (term-exec): Set up sentinel.
6730 (term-sentinel): New function.
6731 (term-handle-exit): New function.
6732
6733 * subr.el (assoc-ignore-case, assoc-ignore-representation):
6734 Use assoc-string, and mark them obsolete.
6735 (delay-mode-hooks): Mark as permanent local.
6736
6737 * simple.el (sendmail-user-agent-compose): Use assoc-string.
6738
6739 * register.el (copy-rectangle-to-register): Doc fix.
6740
6741 * info.el (Info-insert-dir): Use assoc-string.
6742
6743 * info-look.el (info-lookup): Use assoc-string.
6744
6745 * frame.el (pop-up-frame-function): Use quote, not `function'.
6746 (frame-notice-user-settings): Calculate ADJUSTED-TOP
6747 copying with lists as coordinate values.
6748
6749 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
6750
6751 * find-dired.el (kill-find): New command.
6752 (find-dired): Make buffer read-only.
6753 Set up a keymap with C-c C-k running kill-find.
6754 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
6755
6756 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
6757
6758 * filecache.el (file-cache-ignore-case): New variable.
6759 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
6760
6761 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
6762 (comint-dynamic-complete-as-filename): Rename local vars.
6763 (comint-dynamic-list-filename-completions): Likewise.
6764
6765 * comint.el (comint-dynamic-list-completions-config): New var.
6766 (comint-dynamic-list-completions): Handle both SPC and TAB right.
6767
6768 * comint.el (comint-file-name-chars): Add [].
6769 (comint-word): Use skip-chars-backward, not search.
6770
6771 * shell.el (shell-file-name-chars): Add [].
6772
6773 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
6774
6775 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
6776
6777 * generic.el (define-generic-mode): Doc fix.
6778
6779 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6780
6781 * files.el (kill-some-buffers): Doc fix.
6782
6783 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
6784
6785 * comint.el (comint-watch-for-password-prompt): Pass `string' as
6786 arg to send-invisible
6787 (send-invisible): Doc fix. The argument is now a prompt, not the
6788 string to send.
6789 (comint-read-noecho): Doc fix.
6790
6791 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
6792
6793 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
6794 "@", as required by some ISP hosting service. Fix defcustom
6795 argument syntax errors that prevented use of customization.
6796
6797 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6798
6799 * xml.el (xml-get-attribute-or-nil): Doc fix.
6800
6801 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
6802
6803 * net/zone-mode.el (zone-mode): Use write-file-functions, not
6804 write-file-hooks.
6805
6806 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
6807
6808 * autorevert.el (auto-revert-interval): Doc fix.
6809
6810 2003-12-29 Mark A. Hershberger <mah@everybody.org>
6811
6812 * xml.el (xml-get-attribute-or-nil): New function, like
6813 xml-get-attribute, but returns nil if the attribute was not found.
6814 (xml-get-attribute): Convert to defsubst, uses
6815 xml-get-attribute-or-nil.
6816
6817 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6818
6819 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
6820
6821 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
6822
6823 * custom.el (custom-declare-theme): Use `value' when putting
6824 properties on `theme'.
6825
6826 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
6827
6828 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
6829 for each yank-handler segment.
6830 (insert-for-yank-1): New function, with the body of the previous
6831 insert-for-yank.
6832
6833 * textmodes/table.el (table-yank-handler): New defcustom.
6834 (table--put-cell-indicator-property): Put yank-handler property
6835 that indicates the yank handler for the table cell.
6836
6837 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
6838
6839 * generic-x.el (etc-modules-conf-generic-mode): A more complete
6840 set of keywords.
6841
6842 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6843
6844 * international/mule-cmds.el (reset-language-environment)
6845 (set-language-environment): Don't invoke fontset-related functions
6846 if fontset-list is not fboundp.
6847
6848 2003-12-29 Kenichi Handa <handa@m17n.org>
6849
6850 * international/mule-cmds.el (reset-language-environment):
6851 Call set-overriding-fontspec-internal with nil.
6852 (set-language-environment): Call set-overriding-fontspec-internal
6853 if the language environment specify `overriding-fontspec'.
6854 (language-info-alist): Doc added.
6855
6856 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
6857 characters of mule-unicode-0100-24ff.
6858 (ccl-encode-windows-1251-font): New CCL program.
6859 ("Bulgarian"): Specify overriding-fontspec.
6860 ("Belarusian"): Likewise.
6861
6862 2003-12-28 Sam Steingold <sds@gnu.org>
6863
6864 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
6865 parameter ID-FORMAT to conform with the 2003-11-30 patch.
6866
6867 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
6868
6869 * progmodes/gud.el (gud-gdb-command-name): Set default to
6870 "gdb --annotate=3".
6871 (gud-gdb-marker-filter): Look out for annotations.
6872 (gdb-first-pre-prompt): New variable.
6873 Remove trailing white space.
6874
6875 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
6876 if necessary.
6877 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
6878 annotations are detected.
6879 (gud-gdba-marker-filter): Use global variable gud-marker-acc
6880 instead of a local one to allow transition from
6881 gud-gdb-marker-filter.
6882 Remove trailing white space.
6883
6884 2003-12-27 Kim F. Storm <storm@cua.dk>
6885
6886 * ido.el: Handle non-readable directories.
6887 (ido-decorations): Add 9th element for non-readable directory.
6888 (ido-directory-nonreadable): New dynamic var.
6889 (ido-set-current-directory): Set it.
6890 (ido-read-buffer, ido-file-internal):
6891 (ido-read-file-name, ido-read-directory-name): Let-bind it.
6892 (ido-file-name-all-completions1): Return empty list for
6893 non-readable directory.
6894 (ido-exhibit): Print [Not readable] if directory is not readable.
6895 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
6896 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
6897 Use it.
6898
6899 2003-12-27 Lars Hansen <larsh@math.ku.dk>
6900
6901 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
6902 calls to directory-files-and-attributes and file-attributes.
6903 (ls-lisp-format): Remove system dependent handling of user and
6904 group id's.
6905
6906 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
6907
6908 * ffap.el (ffap-read-file-or-url): Revert previous change.
6909
6910 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
6911
6912 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
6913 new list of included files called `files-with-node-lines', that
6914 only have node lines. This way @include commands can include any
6915 file, such as version and update files without node lines, not
6916 just files that are chapters.
6917
6918 2003-12-25 Andreas Schwab <schwab@suse.de>
6919
6920 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
6921 file not found.
6922
6923 2003-12-08 Miles Bader <miles@gnu.org>
6924
6925 * dired.el (dired-between-files): Always use dired-move-to-filename,
6926 which is more robust in non-english locales.
6927
6928 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
6929
6930 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
6931
6932 2003-12-24 Andreas Schwab <schwab@suse.de>
6933
6934 * shell.el (shell-file-name-quote-list): Add backslash.
6935
6936 * comint.el (comint-quote-filename): Correctly handle backslash
6937 in comint-file-name-quote-list.
6938
6939 2003-12-24 Kenichi Handa <handa@m17n.org>
6940
6941 * international/mule-cmds.el (set-default-coding-systems):
6942 Call ucs-set-table-for-input for all buffers that don't have local
6943 value of buffer-file-coding-system.
6944
6945 * international/ucs-tables.el (ucs-set-table-for-input):
6946 If translation-table-for-encode is a symbol, get its
6947 translation-table property.
6948
6949 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
6950
6951 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
6952 to `completing-read' on a recently fixed bug.
6953
6954 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
6955 instead of SPACE, to get the list of possible fringe modes.
6956 SPACE only works if both `partial-completion-mode' and
6957 `completion-auto-help' are nil.
6958
6959 * complete.el (PC-is-complete-p): Delete.
6960 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
6961 calls to `test-completion'.
6962
6963 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
6964
6965 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
6966 to edit values when there are no children.
6967
6968 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
6969 a mode called "Assembler" already exists.
6970 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
6971 (gud-watch): Use format option. Remove font properties from string.
6972 (gdb-var-create-handler, gdb-var-list-children-handler):
6973 Don't bother about properties as there are none.
6974 (gdb-var-create-handler, gdb-var-list-children-handler)
6975 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
6976 with two arguments.
6977 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
6978 Let speedbar show value changes with a different font.
6979 (gdb-edit-value): New defun.
6980 (gdb-clear-partial-output, gdb-clear-inferior-io)
6981 (def-gdb-auto-update-handler): Use erase-buffer.
6982 (gdb-frame-handler): Display watch expressions in
6983 FUNCTION::VARIABLE format if required.
6984
6985 2003-12-23 John Paul Wallington <jpw@gnu.org>
6986
6987 * info.el (Info-unescape-quotes, Info-split-parameter-string)
6988 (Info-goto-emacs-command-node): Doc fixes.
6989
6990 2003-12-12 Jesper Harder <harder@ifa.au.dk>
6991
6992 * cus-edit.el (custom-add-parent-links): Define "many".
6993
6994 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
6995
6996 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
6997 (widget-child-validate, widget-type-value-create)
6998 (widget-type-default-get, widget-type-match): New functions.
6999 (lazy): New widget.
7000 (menu-choice, checklist, radio-button-choice, editable-list)
7001 (group, documentation-string): Remove redundant (per 2003-10-25
7002 change) calls to `widget-children-value-delete'.
7003 (widget-choice-value-get, widget-choice-value-inline): Remove.
7004 (menu-choice): Update widget.
7005
7006 2003-12-03 Kenichi Handa <handa@m17n.org>
7007
7008 * language/cyrillic.el: Register "microsoft-cp1251" in
7009 ctext-non-standard-encodings-alist.
7010 ("Bulgarian"): Add ctext-non-standard-encodings.
7011 ("Belarusian"): Likewise.
7012
7013 * international/mule-conf.el (compound-text-with-extensions):
7014 Change the type to 2 (iso-2022 base).
7015
7016 * international/mule.el (ctext-non-standard-encodings-alist):
7017 Change the format.
7018 (ctext-non-standard-encodings): New variable.
7019 (ctext-post-read-conversion): Fully re-written.
7020 (ctext-non-standard-designations-alist): Delete it.
7021 (ctext-non-standard-encodings-table): New function.
7022 (ctext-pre-write-conversion): Fully re-written.
7023
7024 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
7025
7026 * cus-edit.el (custom-add-parent-links): Add documentation links
7027 for parent, if the item has none of its own.
7028
7029 2003-11-30 Richard M. Stallman <rms@gnu.org>
7030
7031 * dired-aux.el (dired-do-query-replace-regexp):
7032 Report files visited read-only.
7033
7034 2003-11-30 Juri Linkov <juri@jurta.org>
7035
7036 * dired-aux.el (dired-compare-directories): New command.
7037 (dired-file-set-difference, dired-files-attributes): New functions.
7038
7039 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
7040 Version 2.0.38 of Tramp released.
7041
7042 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
7043 Charles Curley <charlescurley@charlescurley.com>.
7044 (tramp-multi-connection-function-alist): Add ssht entry which adds
7045 "-e none -t -t" to the list of ssh args. Suggested by Adrian
7046 Aichner.
7047 (tramp-get-method-parameter): New function to retrieve a method
7048 parameter. This allows for omission of method parameters.
7049 Callers adjusted.
7050
7051 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
7052
7053 * net/tramp.el: Add new optional parameter ID-FORMAT to
7054 `file-attributes'. Calls of `file-attributes' won't use this
7055 parameter for backward compatibility reasons.
7056 (tramp-perl-file-attributes): Add a new parameter to Perl script
7057 in order to handle uid/gid as strings, if desired.
7058 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
7059 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
7060 order to make the function more general.
7061 (tramp-handle-file-attributes): Replace proprietary optional
7062 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
7063 (tramp-handle-file-attributes-with-perl): Handle parameter
7064 NONNUMERIC if set. This wasn't done in the past.
7065 (tramp-post-connection): Apply second parameter "$2" if
7066 `tramp-remote-perl' is called.
7067
7068 * net/tramp-smb.el (tramp-smb-handle-delete-file):
7069 Correct cut'n'waste error (`filename' instead of `directory').
7070 (tramp-smb-handle-directory-files-and-attributes)
7071 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
7072 introduced parameter ID-FORMAT.
7073 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
7074 error (`directory' instead of `ldir').
7075
7076 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
7077 `file-attributes' has a second parameter. If yes, apply it with
7078 value "'integer". Otherwise, don't use that parameter (default is
7079 integer format).
7080
7081 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
7082
7083 * help.el (help-map): Bind `display-local-help' to `C-h .'.
7084 (help-for-help): Add `C-h .' to the listed Help options.
7085 Remove trailing whitespace.
7086
7087 * help-at-pt.el: New file.
7088
7089 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
7090
7091 * subr.el (noreturn, 1value): New macros for test coverage.
7092 See `testcover.el'.
7093
7094 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
7095
7096 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
7097 for macro `1value'.
7098 (testcover-1value): New function. Checks that a 1value form
7099 actually returns only one value. Requested by RMS.
7100
7101 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
7102
7103 * gdb-ui.el (gud-watch, gdb-var-create-handler)
7104 (gdb-var-list-children, gdb-var-list-children-handler)
7105 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
7106 gdb commands that use mi to keep them out of the command history.
7107
7108 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7109
7110 * cus-start.el (all): Add use-file-dialog.
7111
7112 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
7113
7114 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
7115
7116 2003-11-27 Kim F. Storm <storm@cua.dk>
7117
7118 * subr.el (posn-object-x-y): New defun.
7119
7120 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7121
7122 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
7123 Don't use `space' for \\\n.
7124 Be more selective as to which # are comment-starters.
7125
7126 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
7127
7128 * subr.el (number-sequence): Improve handling of floating point
7129 arguments (suggested by Kim Storm). Allow negative arguments.
7130
7131 2003-11-26 Kenichi Handa <handa@m17n.org>
7132
7133 * international/mule-cmds.el (standard-display-european-internal):
7134 Cancel the standard-display-table setting for ` and '.
7135
7136 2003-11-26 Kim F. Storm <storm@cua.dk>
7137
7138 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
7139 New defcustoms to add ffap-like functionality to ido.
7140 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
7141 (ido-no-final-slash): New defun.
7142 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
7143 (ido-read-file-name): ): Toggle VC checking via
7144 vc-handled-backends instead of vc-master-templates.
7145 (ido-file-internal): Handle ido-use-url-at-point and
7146 ido-use-filename-at-point via code borrowed from ffap-guesser.
7147 Handle new ido-exit code ffap.
7148 (ido-sort-list): Ignore final slash when sorting file names.
7149
7150 2003-11-25 Kim F. Storm <storm@cua.dk>
7151
7152 * emulation/cua-base.el (cua--standard-movement-commands):
7153 Add forward-sentence and backward-sentence.
7154
7155 2003-11-25 Stephen Eglen <stephen@gnu.org>
7156
7157 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
7158 iswitchb-exit is set to 'usefirst when user selects buffer at head
7159 of list using RET. (Selecting buffers at the head of the list was
7160 broken if the substring was also a complete buffername.)
7161
7162 2003-11-23 Kim F. Storm <storm@cua.dk>
7163
7164 * progmodes/compile.el (grep-command, grep-use-null-device)
7165 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
7166 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
7167 (grep-regexp-alist, grep-program, find-program)
7168 (grep-find-use-xargs, grep-history, grep-find-history)
7169 (grep-process-setup, grep-compute-defaults)
7170 (grep-default-command, grep, grep-tag-default, grep-find)
7171 (grep-expand-command-macros, grep-tree-last-regexp)
7172 (grep-tree-last-files, grep-tree): Move grep variables, functions
7173 and commands to new file grep.el.
7174 (compilation-mode-map): Remove grep commands from Compile sub-menu.
7175 (compilation-process-setup-function): Doc fix.
7176 (compilation-highlight-regexp, compilation-highlight-overlay): New
7177 defvars used for highlighting current compile error in source buffer.
7178 (compile-internal): New optional args HIGHLIGHT-REGEXP and
7179 LOCAL-MAP which overrides compilation-highlight-regexp and
7180 compilation-mode-map for this compilation.
7181 Delay calling compilation-set-window-height until after running
7182 compilation-process-setup-function so it can buffer-local override
7183 compilation-window-height.
7184 Check buffer-local value of compilation-scroll-output.
7185 (compilation-set-window-height): Use buffer-local value of
7186 compilation-window-height.
7187 (compilation-revert-buffer): Don't pass (undefined)
7188 preserve-modes arg to revert-buffer.
7189 (next-error-no-select, previous-error-no-select): New commands.
7190 (compilation-goto-locus): Temporarily highlight current match in
7191 source buffer using compilation-highlight-regexp.
7192
7193 * progmodes/grep.el: New file with grep code from compile.el.
7194 (grep): New defcustom group.
7195 (grep-window-height): New defcustom, like compilation-window-height.
7196 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
7197 (grep-scroll-output): New defcustom, like compilation-scroll-output.
7198 (grep-command, grep-use-null-device, grep-find-command)
7199 (grep-tree-files-aliases, grep-tree-ignore-case)
7200 (grep-tree-ignore-CVS-directories): Move to grep custom group.
7201 (grep-setup-hook): New hook variable.
7202 (grep-mode-map): New keymap for grep commands. Add Grep menu.
7203 (grep-last-buffer): New defvar, override compilation-last-buffer.
7204 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
7205 Call compile-internal with args highlight-regexp and grep-mode-map.
7206
7207 2003-11-23 Kim F. Storm <storm@cua.dk>
7208
7209 * subr.el (event-start, event-end): Doc fix.
7210 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
7211 (posn-area, posn-actual-col-row, posn-object): New defuns.
7212 (posn-col-row): Simplify doc. Rewrite to use cond.
7213 (posn-point): Also return buffer position for events outside text
7214 area (that info is now present in the event position).
7215
7216 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
7217 mouse-set-point so that hscroll still works now that clicks on
7218 fringes generate specific mouse events.
7219 (mouse-set-point): Note that it now works in fringes and margins
7220 too due to new semantics of posn-point in fringes and margins.
7221
7222 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
7223 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
7224
7225 2003-11-20 Kim F. Storm <storm@cua.dk>
7226
7227 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
7228 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
7229 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
7230 to 100 for icons to avoid increasing line height when shown.
7231
7232 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7233
7234 * newcomment.el (comment-normalize-vars): Initialize properly if
7235 comment-start was nil.
7236
7237 2003-11-19 Andreas Schwab <schwab@suse.de>
7238
7239 * simple.el (set-variable): Fix indentation.
7240
7241 2003-11-17 Kenichi Handa <handa@m17n.org>
7242
7243 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
7244 Fix docstring.
7245
7246 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7247
7248 * international/latin1-disp.el (latin1-display): Fix docstring.
7249
7250 2003-11-16 John Wiegley <johnw@newartisans.com>
7251
7252 * eshell/em-ls.el (eshell-ls-file): There are times with
7253 size-width is nil and uncomputed (when directories are created in
7254 dired, for example); in this case, 4 is reasonable default value,
7255 although it may caused skewed new entries (which could be avoided
7256 by returning the original value of 8 in all cases, but 99% of the
7257 time this is a waste of whitespace).
7258
7259 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
7260
7261 * cc-engine.el (c-guess-continued-construct)
7262 (c-guess-basic-syntax): Check a little more carefully if it's a
7263 function declaration when an unknown construct followed by a block
7264 is found inside a statement context. This avoids macros followed
7265 by blocks to be taken as function declarations.
7266
7267 (c-guess-continued-construct): Change the analysis of a statement
7268 continuation with a brace open to `substatement-block', for
7269 consistency with recognized statements.
7270
7271 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
7272 start is in a position so that `c-beginning-of-statement-1' jumped
7273 to the beginning of the same statement.
7274
7275 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
7276 Don't accept binary operators in the arglist if we're in a function
7277 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
7278 template recognition in cases like "if (a < b || c > d)".
7279
7280 (c-restricted-<>-arglists): New more appropriate name for
7281 `c-disallow-comma-in-<>-arglists'.
7282
7283 Accessing functions updated for the variable name change.
7284
7285 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
7286 match data could get clobbered if NOT-INSIDE-TOKEN is used.
7287
7288 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
7289 labels.
7290
7291 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
7292 instead of duplicating parts of it. This fixes bogus label
7293 recognition.
7294
7295 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
7296 of checking the context in which to apply the minimum indentation,
7297 so that it isn't enforced in e.g. namespace blocks.
7298
7299 * cc-vars.el (c-inside-block-syms): New constant used by
7300 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
7301 to somewhat reduce the risk of becoming stale.
7302
7303 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
7304 cc-cmds to cc-engine to allow use from cc-align.
7305
7306 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
7307 qualified identifiers containing "::".
7308
7309 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
7310 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
7311
7312 * cc-vars.el (c-emacs-features): Use a space in front of the name
7313 of the temporary buffer. That also avoids dumping problems in
7314 XEmacs due to undo info being left around after the buffer is killed.
7315
7316 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
7317 arglist to see if it's a K&R style declaration.
7318
7319 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
7320 before returning `knr-argdecl-intro'.
7321
7322 2003-11-16 John Wiegley <johnw@newartisans.com>
7323
7324 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
7325 field in a long-listing always 8 characters, use `size-width',
7326 which has already been computed.
7327
7328 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
7329
7330 * subr.el (minor-mode-list): Add `hs-minor-mode'.
7331
7332 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7333
7334 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
7335 Support operation while narrowed, with `diff-restrict-view'.
7336
7337 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7338
7339 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7340 Take additional optional arg NARROWFUN. For the generated functions:
7341 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
7342 include frags that arrange to check for and save narrowing state before
7343 the move and then conditionally call NARROWFUN after the move.
7344
7345 2003-11-14 John Wiegley <johnw@newartisans.com>
7346
7347 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
7348 that was optional, but obviously missing based on surrounding code.
7349
7350 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
7351 string arguments to numbers unless the whole argument was seen as
7352 a number.
7353
7354 2003-11-14 Kenichi Handa <handa@m17n.org>
7355
7356 * international/mule.el (ctext-non-standard-encodings-alist):
7357 Fix coding systems.
7358
7359 2003-11-10 Kenichi Handa <handa@m17n.org>
7360
7361 * language/kannada.el ("Kannada"): Add sample-text.
7362
7363 * language/knd-util.el (kannada-compose-region)
7364 (kannada-compose-string, kannada-post-read-conversion):
7365 Add autoload cookie.
7366
7367 * international/quail.el (quail-completion): Change the message
7368 "corresponding translations" to "corresponding characters".
7369
7370 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
7371
7372 * descr-text.el (describe-char): Fix typo.
7373
7374 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
7375
7376 These changes are to support Kannada language/script.
7377
7378 * Makefile.in (DONTCOMPILE): Add kannada.el.
7379
7380 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
7381
7382 * loadup.el: Preload kannada.el.
7383
7384 * language/ind-util.el (ucs-kannada-to-is13194-alist)
7385 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
7386 New variables.
7387
7388 * language/kannada.el: New file.
7389
7390 * language/knd-util.el: New file.
7391
7392 2003-11-07 Andreas Schwab <schwab@suse.de>
7393
7394 * progmodes/autoconf.el (autoconf-font-lock-keywords):
7395 Also highlight AH_*.
7396
7397 * xml.el (xml-parse-dtd): Fix misplaced paren.
7398
7399 2003-11-07 Kenichi Handa <handa@m17n.org>
7400
7401 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
7402
7403 2003-11-05 Juri Linkov <juri@jurta.org>
7404
7405 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
7406 (desktop-buffer-file): Use saved buffer-file-coding-system
7407 for file reading. Set auto-insert to nil to prevent automatic
7408 insertion into restored empty files.
7409
7410 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7411
7412 * files.el (risky-local-variable-p): Make second argument optional.
7413
7414 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7415
7416 * subr.el (add-hook): Fix last change.
7417
7418 2003-11-03 Eli Zaretskii <eliz@gnu.org>
7419
7420 * mail/rmail.el (rmail-convert-to-babyl-format):
7421 If base64-decode-region signals an error, catch it and silently
7422 ignore it.
7423
7424 2003-11-01 Mark A. Hershberger <mah@everybody.org>
7425
7426 * xml.el (xml-parse-region): Allow comments to appear after the
7427 topmost element has closed.
7428 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
7429 (xml-ns-expand-attr): New functions to do namespace handling.
7430 (xml-intern-attrlist): Back-compatible handling of attribute names.
7431 (xml-parse-tag): Move namespace handling to separate functions.
7432 Now produces elements in the form ((:ns . "element") (attr-list)
7433 children) instead of ('ns:element (attr-list) children).
7434 (xml-parse-attlist): Fix attribute parsing.
7435 (xml-parse-dtd): Change parsing so that it produces strings
7436 instead of interned symbols.
7437
7438 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
7439
7440 * dired.el (dired-ls-sorting-switches): Doc fix.
7441
7442 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
7443
7444 * emacs-lisp/rx.el (rx-or): Fix the case of
7445 "(rx (and ?a (or ?b ?c) ?d))".
7446
7447 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
7448
7449 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
7450 (texinfo-format-region): Use it.
7451 (texinfo-format-buffer-1): Ditto.
7452
7453 2003-11-01 Alan Mackenzie <acm@muc.de>
7454
7455 Changes to allow scrolling whilst in isearch mode:
7456 * isearch.el (isearch-unread-key-sequence): New function,
7457 extracted from isearch-other-meta-char.
7458 (top level): (put 'foo 'isearch-scroll) on all Emacs's
7459 "scrollable" standard functions.
7460 (isearch-allow-scroll): New customizable variable.
7461 (isearch-string-out-of-window, isearch-back-into-window)
7462 (isearch-reread-key-sequence-naturally)
7463 (isearch-lookup-scroll-key): New functions.
7464 (isearch-other-meta-char): Doc string and functionality enhanced.
7465 Now accepts a prefix argument.
7466 (isearch-lazy-highlight-window-end): New variable.
7467 (isearch-lazy-highlight-new-loop): Pay attention to the window's
7468 end (thru isearch-lazy-highlight-window-end), not only its start.
7469
7470 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
7471 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
7472 (universal-argument, universal-argument-more, negative-argument)
7473 (digit-argument, universal-argument-other-key): Minor changes.
7474
7475 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7476
7477 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
7478 recursively if the last message is deleted, thus avoiding an
7479 infinite loop.
7480
7481 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7482
7483 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
7484 (tex-main-file): Don't add .tex if the extension is already present.
7485 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
7486
7487 2003-10-29 Lute Kamstra <lute@gnu.org>
7488
7489 * progmodes/octave-inf.el (inferior-octave-prompt):
7490 Recognize version number in prompt.
7491
7492 2003-10-28 Dave Love <fx@gnu.org>
7493
7494 * international/characters.el: Fix some Unicode ranges.
7495
7496 2003-10-28 Kenichi Handa <handa@m17n.org>
7497
7498 * disp-table.el (standard-display-8bit)
7499 (standard-display-default, standard-display-ascii)
7500 (standard-display-g1, standard-display-graphic)
7501 (standard-display-underline): Assure that standard-display-table
7502 is a display table.
7503
7504 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
7505
7506 * simple.el (reindent-then-newline-and-indent): Delete space *after*
7507 reindenting the first line.
7508
7509 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
7510
7511 * wid-edit.el (widget-default-delete): Always delete child widgets.
7512
7513 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7514
7515 * newcomment.el (comment-indent): Don't call indent-according-to-mode
7516 if the line has code.
7517 Don't try to line up with something that's too far left.
7518
7519 * progmodes/octave-mod.el (octave-comment-start): Simplify.
7520 (octave-mode-syntax-table): Add % as a comment starter.
7521 (octave-point): Remove.
7522 (octave-in-comment-p, octave-in-string-p)
7523 (octave-not-in-string-or-comment-p, calculate-octave-indent)
7524 (octave-blink-matching-block-open, octave-auto-fill):
7525 Use line-(beginning|end)-position instead.
7526
7527 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
7528
7529 * emacs-lisp/authors.el (authors-aliases): Add correct realname
7530 for Francesco Potort\e,Al\e(B.
7531
7532 2003-10-23 Dave Love <fx@gnu.org>
7533
7534 * international/mule-cmds.el (locale-charset-to-coding-system):
7535 Don't rely on nil being a coding system.
7536
7537 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
7538 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
7539 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
7540
7541 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
7542
7543 * gdb-ui.el (gdb-current-language): New variable.
7544 (gdb-update-flag): Remove variable.
7545 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
7546 (gdb-take-last-elt): Remove function.
7547 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
7548 (gdb-post-prompt): Check for variable object changes here.
7549
7550 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
7551 object changes in gdb-ui.el.
7552
7553 2003-10-21 Richard M. Stallman <rms@gnu.org>
7554
7555 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
7556
7557 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
7558 Don't check for foo*/ wildcard form here.
7559 (insert-directory): Recognize foo*/ as a wildcard.
7560 Separate wildcard-regexp variable from the arg, wildcard.
7561
7562 * subr.el (add-hook): Correctly detect when make-local-hook was used.
7563 (remove-hook): Correctly handle strange cases about local hooks.
7564
7565 2003-10-21 David Ponce <david@dponce.com>
7566
7567 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
7568 argument REAL, to return a real number instead of a rounded
7569 integer value. Define as inline function.
7570 (ruler-mode-right-fringe-cols): Likewise.
7571 (ruler-mode-scroll-bar-cols): New function.
7572 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
7573 (ruler-mode-right-scroll-bar-cols): Likewise.
7574 (ruler-mode-space): New function.
7575 (ruler-mode-ruler): Use it. Handle variations of fringe style,
7576 scroll bar mode and margins in a more robust way.
7577
7578 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
7579
7580 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
7581 (antlr-c-init-language-vars): New function.
7582 (antlr-mode): Use it with cc-mode before v5.29.
7583 (antlr-c-common-init): Don't set some local vars here.
7584 (antlr-mode): Set them here.
7585 (antlr-c-forward-sws): New function alias.
7586 (antlr-mode): Redefine with cc-mode before v5.30.
7587 (antlr-skip-sexps): Use it.
7588 (antlr-skip-exception-part): Ditto.
7589 (antlr-skip-file-prelude): Ditto.
7590 (antlr-outside-rule-p): Ditto.
7591 (antlr-end-of-body): Ditto.
7592 (antlr-option-kind): Ditto.
7593 (antlr-insert-option-area): Ditto.
7594 (antlr-file-dependencies): Ditto.
7595
7596 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7597
7598 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
7599 Move backward only if point was not inside an entry.
7600
7601 2003-10-21 Richard M. Stallman <rms@gnu.org>
7602
7603 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
7604
7605 2003-10-21 Juri Linkov <juri@jurta.org>
7606
7607 * compare-w.el: Automatically skip non-matching text to resync.
7608 (compare-windows-whitespace): Doc fix.
7609 (compare-windows-sync, compare-windows-sync-string-size)
7610 (compare-windows-recenter, compare-ignore-whitespace)
7611 (compare-windows-highlight, compare-windows-face): New variables.
7612 (compare-windows): Use compare-windows-sync.
7613 (compare-windows-highlight, compare-windows-dehighlight)
7614 (compare-windows-sync-regexp)
7615 (compare-windows-sync-default-function): New functions.
7616
7617 2003-10-21 Juri Linkov <juri@jurta.org>
7618
7619 * diff.el (diff-parse-differences): Don't visit the files now;
7620 instead, just record the error locus.
7621
7622 2003-10-21 Dave Love <fx@gnu.org>
7623
7624 * progmodes/cfengine.el: New file.
7625
7626 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7627
7628 * complete.el (PC-do-completion): Do not forget to use `pred' as the
7629 default-directory when completing file names.
7630
7631 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
7632
7633 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
7634 followed by the word `face', it gets treated as a face, even if
7635 it is also defined as a variable or a function.
7636
7637 2003-10-20 Dave Love <fx@gnu.org>
7638
7639 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7640 Avoid incf in macro expansion.
7641
7642 2003-10-20 John Paul Wallington <jpw@gnu.org>
7643
7644 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
7645 `evenp' so we don't implicitly require cl library at runtime.
7646
7647 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
7648
7649 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
7650 (help-make-xrefs): Only make cross-references for faces if
7651 preceded or followed by the word `face'. Do not make a
7652 cross-reference for variables without variable documentation,
7653 unless preceded by the word `variable' or `option'. Update doc
7654 string accordingly.
7655
7656 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
7657
7658 * progmodes/hideshow.el: Rewrite one-armed `if'
7659 constructs using either `when' or `unless'.
7660 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
7661
7662 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
7663
7664 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
7665 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
7666 instead of 12x12.
7667
7668 2003-10-16 Eli Zaretskii <eliz@gnu.org>
7669
7670 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
7671 message while converting to Babyl.
7672
7673 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
7674
7675 * allout.el (allout-mode): Doc fix.
7676
7677 2003-10-16 Lute Kamstra <lute@gnu.org>
7678
7679 * subr.el (force-mode-line-update): Fix docstring.
7680
7681 2003-10-14 Dave Love <fx@gnu.org>
7682
7683 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
7684 (default-input-method): Add :link, improve :type.
7685 (locale-charset-language-names): Fix utf-8 pattern.
7686 (locale-charset-match-p, locale-charset-alist)
7687 (locale-charset-to-coding-system): New.
7688 (set-locale-environment): Deal with codeset part of locale specs.
7689
7690 2003-10-14 Lute Kamstra <lute@gnu.org>
7691
7692 * fringe.el (fringe-mode): Use active voice in docstring.
7693 (set-fringe-style): Ditto.
7694
7695 2003-10-13 Lute Kamstra <lute@gnu.org>
7696
7697 * fringe.el (fringe-mode): Fix docstring.
7698 (set-fringe-style): Ditto.
7699
7700 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
7701
7702 * ediff-mult.el (ediff-filegroup-action):
7703 Use ediff-default-filtering-regexp.
7704
7705 * ediff-util.el (ediff-recenter): Don't call
7706 ediff-restore-highlighting twice.
7707 (ediff-select-difference): Set current difference.
7708 (ediff-unselect-and-select-difference): Add comment.
7709
7710 * ediff.el (ediff-directories,ediff-directory-revisions)
7711 (ediff-directories3,ediff-merge-directories)
7712 (ediff-merge-directories-with-ancestor)
7713 (ediff-merge-directory-revisions)
7714 (ediff-merge-directory-revisions-with-ancestor):
7715 Use ediff-default-filtering-regexp.
7716
7717 2003-10-12 Andreas Schwab <schwab@suse.de>
7718
7719 * international/mule-cmds.el (locale-charset-language-names):
7720 Simplify regex by removing unused grouping.
7721
7722 2003-10-10 Dave Love <fx@gnu.org>
7723
7724 * bindings.el: Don't bind stop.
7725
7726 2003-10-08 Miles Bader <miles@gnu.org>
7727
7728 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
7729 face instead of attempting to emulate it.
7730
7731 2003-10-07 Kenichi Handa <handa@m17n.org>
7732
7733 * international/mule-diag.el (list-coding-systems-1): List coding
7734 systems that are loaded automatically.
7735
7736 * international/code-pages.el (iso-8859-11): Add autoload cookie.
7737
7738 * international/mule.el (autoload-coding-system): New function.
7739
7740 2003-10-07 Andreas Schwab <schwab@suse.de>
7741
7742 * log-edit.el (log-edit-changelog-entries): Prefer local value of
7743 change-log-default-name in the buffer visiting the file.
7744
7745 2003-10-06 Dave Love <fx@gnu.org>
7746
7747 * files.el (find-file-hook): Customize.
7748 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
7749
7750 * bindings.el (completion-ignored-extensions): Remove .log.
7751 (global-map): Add again, open, stop keys.
7752
7753 2003-10-05 Richard M. Stallman <rms@gnu.org>
7754
7755 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
7756 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
7757 Use sh-modify directly.
7758 (sh-select): Use sh-append, not eval.
7759
7760 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
7761
7762 * info.el (Info-following-node-name): New function.
7763
7764 * loadhist.el (unload-feature-special-hooks):
7765 Rename from loadhist-hook-functions.
7766 (loadhist-hook-functions): Now an alias.
7767
7768 2003-10-04 Eli Zaretskii <eliz@gnu.org>
7769
7770 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
7771 file-name clashes on 8+3 filesystems.
7772
7773 * Makefile.in (DONTCOMPILE, bootstrap-clean):
7774 Rename loaddefs-boot.el to ldefs-boot.el
7775
7776 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
7777 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
7778
7779 2003-10-03 Lute Kamstra <lute@gnu.org>
7780
7781 * info.el (Info-mode): Revert previous change.
7782 (Info-escape-percent): New function.
7783 (Info-fontify-node): Use it.
7784
7785 2003-10-02 Andreas Schwab <schwab@suse.de>
7786
7787 * loaddefs-boot.el: Regenerated.
7788
7789 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
7790
7791 * ffap.el: Remove defadvice related code from CVS since `complete'
7792 provides a `PC-completion-as-file-name-predicate' variable that
7793 ffap can override.
7794
7795 2003-10-02 Kenichi Handa <handa@m17n.org>
7796
7797 * international/utf-8.el (ccl-decode-mule-utf-8):
7798 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
7799
7800 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
7801 * international/subst-big5.el: Likewise.
7802 * international/subst-gb2312.el: Likewise.
7803 * international/subst-ksc.el: Likewise.
7804
7805 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
7806
7807 * calendar/calendar.el (increment-calendar-month)
7808 (calendar-leap-year-p, calendar-absolute-from-gregorian)
7809 (generate-calendar, calendar-read-date, calendar-interval)
7810 (calendar-day-of-week): Handle years BC.
7811 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
7812
7813 2003-10-01 Dave Love <fx@gnu.org>
7814
7815 * language/cyrillic.el (cp1251): Alias for windows-1251.
7816
7817 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
7818 bootstrap.
7819
7820 2003-10-01 Lute Kamstra <lute@gnu.org>
7821
7822 * files.el: Fix typo.
7823 * imenu.el (imenu--generic-function): Docstring fix.
7824
7825 2003-09-30 Richard M. Stallman <rms@gnu.org>
7826
7827 * dired.el (dired-mode): Handle dired-directory as a list.
7828
7829 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
7830
7831 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
7832
7833 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
7834
7835 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
7836 Replace gud-display with gud-watch.
7837 (gud-speedbar-buttons): Add stuff for watching expressions
7838 in the speedbar when using M-x gdba. Use dolist on old part
7839 of this function.
7840
7841 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
7842 (gdb-update-flag): New variables.
7843 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
7844 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
7845 (gud-watch, gdb-var-create-handler) : New functions.
7846 (gdb-var-list-children, gdb-var-list-children-handler)
7847 (gdb-var-create-regexp, gdb-var-update-regexp)
7848 (gdb-var-list-children-regexp): New constants.
7849 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
7850 (gdb-annotation-rules): Reduce annotation set (level 3).
7851 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
7852 (gdb-post-prompt): Don't update GDB buffers every time speedbar
7853 updates.
7854 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
7855 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
7856 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
7857 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
7858 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
7859 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
7860 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
7861 (gud-display, gud-display1)
7862 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
7863 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
7864 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
7865 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
7866 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
7867 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
7868 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
7869 (gdb-display-display-buffer, gdb-toggle-display)
7870 (gdb-delete-display, gdb-expressions-popup-menu)
7871 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
7872 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
7873 to display buffer.
7874
7875 2003-09-30 Richard M. Stallman <rms@gnu.org>
7876
7877 * progmodes/ada-mode.el (ada-mode): Don't use advice.
7878 Instead, set which-func-functions.
7879
7880 * progmodes/which-func.el (which-func-modes): Add ada-mode.
7881 (which-func-functions): New variable.
7882 (which-function): Use that.
7883
7884 * info.el (Info-mode): Double each `%' in header line.
7885
7886 * emacs-lisp/lisp-mnt.el (lm-with-file):
7887 When FILE is nil, run BODY in current buffer.
7888
7889 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
7890
7891 * help.el (describe-mode): Start with a brief list of minor modes.
7892 Find them thru minor-mode-list so as to find them all.
7893 Show them in alphabetical order.
7894
7895 * mail/sendmail.el (mail-aliases): Doc fix.
7896
7897 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
7898
7899 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7900
7901 * mail/rmailsum.el (rmail-make-summary-line-1):
7902 Change comma after last label to a space.
7903 (rmail-summary-font-lock-keywords): Adapt to that change.
7904
7905 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
7906
7907 * progmodes/scheme.el (scheme-mode-variables): When setting
7908 `font-lock-defaults', also specify that "#" should
7909 be interpreted with `word' syntax.
7910 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
7911
7912 2003-09-30 Lars Hansen <larsh@math.ku.dk>
7913
7914 * desktop.el: A lot of comments updated.
7915 (desktop-save-mode): Minor mode introduced.
7916 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
7917 (desktop-load-default): Function made obsolete.
7918 (desktop-locals-to-save): Variable made customizable.
7919 (desktop-read): Optional parameter `dirname' added.
7920 (desktop-change-dir, desktop-revert): Parameter `dirname' in
7921 `desktop-read' used.
7922 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
7923
7924 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
7925
7926 * whitespace.el (whitespace-clean-msg): Add user customizable message
7927 for displaying ``clean'' output.
7928 (whitespace-buffer): Use `whitespace-clean-msg'.
7929 (whitespace-global-mode): Fix typo.
7930
7931 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
7932
7933 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
7934
7935 2003-09-29 Lute Kamstra <lute@gnu.org>
7936
7937 * bindings.el (mode-line-modes): Remove superfluous :propertize
7938 construct in initialization.
7939 (mode-line-position): Change cons cell into proper list in
7940 initialization.
7941
7942 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
7943
7944 * international/mule.el (decode-coding-inserted-region): Use car
7945 of the return value of find-operation-coding-system.
7946
7947 2003-09-29 Kenichi Handa <handa@m17n.org>
7948
7949 * descr-text.el (describe-char): Fix previous change.
7950
7951 2003-09-28 Kenichi Handa <handa@m17n.org>
7952
7953 * descr-text.el (describe-char-display): New function.
7954 (describe-char): Pay attention to display table on describing how
7955 a character is displayed.
7956
7957 * international/mule-cmds.el (encoded-string-description):
7958 Prepend "0x" to each encoded byte.
7959
7960 2003-09-28 Andreas Schwab <schwab@suse.de>
7961
7962 * find-file.el (ff-special-constructs): Add autoload cookie.
7963
7964 2003-09-28 Kevin Ryde <user42@zip.com.au>
7965
7966 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
7967 makeinfo appends to duplicate index entries.
7968
7969 2003-09-28 Eli Zaretskii <eliz@gnu.org>
7970
7971 * dired-x.el (dired-clean-tex): Doc fix.
7972
7973 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
7974 using a Chinese tutorial.
7975
7976 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7977
7978 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
7979 between "MAIL FROM:" and "RCPT TO:" and the following address.
7980
7981 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7982
7983 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
7984
7985 2003-09-28 David Ponce <david@dponce.com>
7986
7987 * recentf.el (recentf-initialize-file-name-history): New defcustom.
7988 (recentf-load-list): When `recentf-initialize-file-name-history'
7989 is non-nil, initialize an empty `file-name-history' with the
7990 recent list.
7991
7992 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
7993
7994 * man.el (Man-default-man-entry): Remove the leading `*' from the
7995 word at point.
7996
7997 2003-09-26 Lute Kamstra <lute@gnu.org>
7998
7999 * bindings.el (mode-line-position): Mention size indication in
8000 docstring.
8001
8002 2003-09-26 Andre Spiegel <spiegel@gnu.org>
8003
8004 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
8005
8006 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
8007 because it's autoloaded now.
8008
8009 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
8010
8011 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
8012 (sh-font-lock-keywords, sh-feature): Fix previous change of
8013 sh-feature to avoid infloop with sh-font-lock-keywords.
8014
8015 2003-09-25 Kim F. Storm <storm@cua.dk>
8016
8017 * frame.el (frame-current-scroll-bars): New defun.
8018
8019 * window.el (window-current-scroll-bars): New defun.
8020
8021 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8022
8023 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
8024 cause errors when the state cache contains info on parts that have
8025 been narrowed out.
8026
8027 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8028
8029 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
8030 `c-setup-paragraph-variables' has to be used when this variable is
8031 changed; it doesn't work to reinitialize the mode since that
8032 typically clobbers the variable.
8033
8034 * progmodes/cc-styles.el (c-setup-paragraph-variables):
8035 Make it interactive.
8036
8037 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8038
8039 * progmodes/cc-fonts.el (c-font-lock-declarations):
8040 Fix recognition of constructors and destructors for classes whose
8041 names are matched by `*-font-lock-extra-types'.
8042
8043 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
8044 followed by an identifier in C++ then it's a type.
8045
8046 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8047
8048 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
8049 problem that primarily affected XEmacs. Don't use faces to find
8050 unterminated strings since Emacs and XEmacs fontify strings
8051 differently - this function should now work better in XEmacs.
8052
8053 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8054
8055 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
8056 `expand-abbrev' workaround which caused braces to misbehave inside
8057 macros.
8058
8059 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
8060 handling. This bug could cause interactive font locking to bail out.
8061
8062 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8063
8064 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8065 Handle paren-style types in Pike. Also fixed some cases of
8066 insufficient handling of unbalanced parens.
8067
8068 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
8069
8070 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
8071 common shell prompts that are not common filename or URL characters.
8072 (ffap-file-at-point): Use the new regexp to strip the prompts from
8073 the file names. This is an issue mostly for user prompts that
8074 don't have a trailing space and find-file-at-point is invoked from
8075 within a shell inside Emacs.
8076
8077 2003-09-24 Andre Spiegel <spiegel@gnu.org>
8078
8079 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
8080 stamps numerically, rather than textually.
8081
8082 2003-09-24 Kenichi Handa <handa@m17n.org>
8083
8084 * language/devan-util.el (devanagari-post-read-conversion):
8085 * language/mlm-util.el (malayalam-post-read-conversion):
8086 * language/tml-util.el (tamil-post-read-conversion):
8087 Add autoload cookie.
8088
8089 * international/utf-8.el (utf-8-post-read-conversion):
8090 Call post-read-conversion functions for Devanagari, Malayalam,
8091 and Tamil.
8092
8093 2003-09-23 Dave Love <fx@gnu.org>
8094
8095 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
8096
8097 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
8098
8099 * progmodes/gud.el (perldb): Add gud-until to list of commands.
8100 Update gud-remove.
8101
8102 2003-09-22 Richard M. Stallman <rms@gnu.org>
8103
8104 * progmodes/sh-script.el (sh-mode-default-syntax-table):
8105 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
8106 (sh-mode-syntax-table-input): New variable.
8107 (sh-require-final-newline): Don't use eval.
8108 (sh-builtins, sh-leading-keywords, sh-other-keywords)
8109 (sh-variables, sh-font-lock-keywords): Don't use eval.
8110 (sh-set-shell): When setting require-final-newline,
8111 treat value = `require-final-newline' as don't change it.
8112 Set sh-mode-syntax-table locally based on
8113 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
8114
8115 * progmodes/compile.el (compile-internal):
8116 Call compilation-set-window-height before setting window start.
8117
8118 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
8119
8120 * emacs-lisp/bytecomp.el (byte-compile-log-file):
8121 Clear out byte-compile-last-warned-form.
8122
8123 2003-09-22 Richard M. Stallman <rms@gnu.org>
8124
8125 * woman.el (woman-file-name, woman-follow-word):
8126 If current-word returns nil, use "".
8127
8128 * simple.el (eval-expression): Bind standard-output in to-buffer case.
8129
8130 2003-09-22 Richard M. Stallman <rms@gnu.org>
8131
8132 * emacs-lisp/lisp-mnt.el (lm-with-file):
8133 Don't visit the file, just use insert-file-contents in temp buffer.
8134
8135 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
8136
8137 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
8138 Add surrounding \\( and \\) around the header, as in
8139 for lm-history-header 'Change Log\\|History'.
8140
8141 2003-09-22 John Paul Wallington <jpw@gnu.org>
8142
8143 * progmodes/ld-script.el: Add Commentary section,
8144 minor cleanup of file header.
8145 (ld-script-font-lock-keywords): Doc fix.
8146 (toplevel): Provide `ld-script' feature.
8147
8148 2003-09-21 Kim F. Storm <storm@cua.dk>
8149
8150 * scroll-bar.el (set-scroll-bar-mode): Initialize to
8151 new built-in variable default-frame-scroll-bars.
8152 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
8153 scroll-bar-mode; notably, use it instead of t when we toggle
8154 scroll-bars on.
8155 (toggle-scroll-bar): Use default-frame-scroll-bars.
8156
8157 2003-09-19 Masatake YAMATO <jet@gyve.org>
8158
8159 * pcvs.el (cvs-do-removal): Change the prompt depending on
8160 `filter' value.
8161
8162 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8163
8164 * startup.el (command-line-1): Stop startup-echo-area-message
8165 being hidden by "Loading image..." message.
8166 (use-fancy-splash-screens-p, display-splash-screen):
8167 Move display-graphic-p test from latter to former.
8168
8169 * progmodes/sh-script.el (sh-font-lock-keywords):
8170 Highlight escaped EOLs differently from other backslash constructs.
8171
8172 2003-09-19 Richard M. Stallman <rms@gnu.org>
8173
8174 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
8175 New functions.
8176 (edebug-enter, edebug-outside-excursion): Use them.
8177
8178 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
8179 Fix the condition for whether to print "In WHERE".
8180
8181 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
8182
8183 * finder.el (finder-mode-hook): New variable.
8184 (finder-mode): Run hook finder-mode-hook
8185
8186 2003-09-18 Masatake YAMATO <jet@gyve.org>
8187
8188 * progmodes/ebrowse.el: Fix broken magic autoload comments.
8189
8190 2003-09-17 Mario Lang <mlang@delysid.org>
8191
8192 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
8193 "p %e" to actually print the value in the GUD buffer.
8194
8195 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
8196
8197 From David Ponce <david.ponce@wanadoo.fr>:
8198 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
8199 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
8200 from loaddefs-boot.el if necessary.
8201
8202 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
8203
8204 * progmodes/gud.el (gud-find-class): Make jdb work again since
8205 cc-mode changed the syntactic information.
8206
8207 2003-09-15 David Ponce <david@dponce.com>
8208
8209 * recentf.el: (recentf-exclude): Accept predicates too.
8210 (recentf-file-readable-p): New function.
8211 (recentf-include-p): Handle predicates in recentf-exclude.
8212 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
8213 (recentf-cleanup): Likewise.
8214 (recentf-save-list): Use write-file to handle backup of
8215 recentf-save-file.
8216
8217 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
8218
8219 * loaddefs-boot.el: Renamed from `loaddefs.el'
8220 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
8221 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
8222 necessary.
8223
8224 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
8225
8226 * electric.el (Electric-pop-up-window): For the `one-window' case,
8227 no longer disconcertingly move point in the original buffer.
8228
8229 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8230
8231 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
8232
8233 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
8234
8235 * dired.el (dired-mode-map): Fix typo.
8236
8237 2003-09-11 Richard M. Stallman <rms@gnu.org>
8238
8239 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
8240
8241 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8242
8243 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
8244 the function is less noisy. Now only `kill-buffer' can ask questions.
8245
8246 2003-09-10 Mario Lang <mlang@delysid.org>
8247
8248 * battery.el: Update Commentary and Copyright.
8249 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
8250 appear due to wrong ordering of the expressions in `or'.
8251
8252 2003-09-09 Lute Kamstra <lute@gnu.org>
8253
8254 * misc.el (upcase-char): Fix docstring.
8255 (zap-up-to-char): New command.
8256
8257 2003-09-08 David Ponce <david@dponce.com>
8258
8259 Ensure that recentf correctly updates the menu bar.
8260 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
8261 (recentf-menu-bar): New function.
8262 (recentf-clear-data): Use it
8263 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
8264 of easy-menu-change.
8265
8266 2003-09-08 Lute Kamstra <lute@gnu.org>
8267
8268 * simple.el (size-indication-mode): New.
8269 * bindings.el (mode-line-position): Add buffer size indicator.
8270
8271 2003-09-04 Mario Lang <mlang@delysid.org>
8272
8273 * battery.el (battery-linux-proc-acpi): New function.
8274 (battery-status-function): Modify default value calculation to also
8275 check for availability of ACPI.
8276 (battery-echo-area-format): Ditto.
8277 (battery-mode-line-format): Ditto.
8278
8279 2003-09-06 Dave Love <fx@gnu.org>
8280
8281 * ielm.el (ielm-mode-hook): Add :options.
8282
8283 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
8284 (eldoc-print-current-symbol-info): Use it.
8285
8286 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
8287
8288 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
8289 being displayed in GUD buffer.
8290 (gdb-idle-input-queue): Remove var. Use just one queue.
8291 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
8292 Remove functions. Use just one queue.
8293 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
8294 (gdb-invalidate-assembler, gdb-get-current-frame):
8295 Modify functions. Use just one queue.
8296
8297 2003-09-04 Dave Love <fx@gnu.org>
8298
8299 * cus-start.el: Add blink-cursor-alist.
8300
8301 * ruler-mode.el (ruler-mode-fill-column-char)
8302 (ruler-mode-current-column-char): Use char-displayable-p,
8303 not window-system.
8304
8305 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
8306
8307 * language/european.el (windows-1252): Move from code-pages.
8308
8309 * language/cyrillic.el ("Windows-1251"): Delete.
8310 ("Bulgarian", "Belarusian"): Remove `features'.
8311 (windows-1251): Move from code-pages.
8312
8313 * international/mule-diag.el (non-iso-charset-alist):
8314 Remove `codepage' stuff.
8315 (print-designation, list-coding-systems-1): Output fixes.
8316
8317 * international/code-pages.el (cp-make-translation-table)
8318 (cp-valid-codes): Made defsubsts.
8319 (cp-fix-safe-chars): Delete.
8320 (mule-diag): Don't require.
8321 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
8322 (top-level): Check for defined coding system when defining
8323 cp... aliases. Change w32-add-charset-info test to avoid warning.
8324 (non-iso-charset-alist): Defvar when compiling.
8325 (cp-make-coding-system): Doc fix.
8326
8327 2003-09-02 Jason Rumney <jasonr@gnu.org>
8328
8329 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
8330 line-ends from CVS before doing conversion.
8331
8332 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
8333
8334 * calendar/diary-lib.el (diary-header-line-flag)
8335 (diary-header-line-format): New variables.
8336 (list-diary-entries): Use them to set header line in simple diary.
8337
8338 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
8339 other than font-lock-string-face to highlight backslashes.
8340
8341 2003-09-01 Jason Rumney <jasonr@gnu.org>
8342
8343 * international/titdic-cnv.el (tit-read-key-value): Include \r in
8344 regexp.
8345
8346 2003-09-01 Dave Love <fx@gnu.org>
8347
8348 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
8349
8350 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
8351 and :help; also line and column numbers labels.
8352
8353 * international/mule-util.el (char-displayable-p): Move from
8354 latin1-disp, rename and autoload.
8355
8356 * international/latin1-disp.el (latin1-char-displayable-p):
8357 Now obsolete alias. Replace uses with char-displayable-p.
8358 (latin1-display-ucs-per-lynx): Fix last change.
8359
8360 * international/mule-cmds.el (standard-display-european-internal):
8361 Don't use char code for Latin-1 NBSP.
8362 <XFree86 4>: Unfrob NBSP display table. Set display table to use
8363 U+2018, U+2019 for `'.
8364 (select-safe-coding-system): Message fix.
8365
8366 2003-09-01 Kenichi Handa <handa@m17n.org>
8367
8368 * international/fontset.el (setup-default-fontset): For Thai
8369 font, specify "*" family.
8370
8371 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8372
8373 * progmodes/compile.el (previous-error): Accept a prefix
8374 argument, similarly to next-error.
8375
8376 2003-08-31 Masatake YAMATO <jet@gyve.org>
8377
8378 * pcvs.el (cvs-do-removal): Use = instead of eq to check
8379 the number of files. Bind the number of files to a local
8380 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
8381
8382 2003-08-30 Eli Zaretskii <eliz@gnu.org>
8383
8384 * vc-hooks.el (vc-make-version-backup): Fix the change made on
8385 2003-07-26: msdos-long-file-names is a function, not a variable.
8386
8387 2003-08-29 Richard M. Stallman <rms@gnu.org>
8388
8389 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
8390 Do nothing with mail-personal-alias-file if it is nil.
8391
8392 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
8393 Do nothing if mail-personal-alias-file is nil.
8394
8395 * term.el (term-exec-1): Bind coding-system-for-read.
8396
8397 * dired.el (dired-mouse-find-file-other-window):
8398 Use dired-view-command-alist here, as in dired-view-file.
8399 (dired-view-command-alist): Use %s to substitute file name.
8400 Handle .ps_pages, .eps, .jpg, .gif, .png.
8401
8402 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8403
8404 * info.el (Info-mode-map): Bind S-tab and <backtab> to
8405 `Info-prev-reference', instead of M-tab.
8406
8407 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
8408
8409 * simple.el (blink-matching-open): Work correctly on chars that
8410 are designated as parens through the syntax-table text property.
8411
8412 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
8413
8414 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
8415 line break position in the middle of a non-kinsoku (e.g. latin)
8416 word, making it skip until either a space or a character with
8417 category "|".
8418 (kinsoku-longer): Test for end of buffer.
8419
8420 2003-08-28 Eli Zaretskii <eliz@gnu.org>
8421
8422 * mail/rmail.el (rmail-convert-to-babyl-format):
8423 Detect quoted-printable- and base64-encoded messages and decode them
8424 automatically. Set the message's encoding from the charset=
8425 header, if any. Decode base64-encoded messages in Mail format as well.
8426
8427 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8428
8429 * mail/smtpmail.el: Fix previous change.
8430 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
8431 calling smtpmail-via-smtp.
8432 (smtpmail-via-smtp): Add fall-back values for envelope-from.
8433
8434 2003-08-26 John Paul Wallington <jpw@gnu.org>
8435
8436 * image.el (image-jpeg-p): Don't search beyond length of data.
8437
8438 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8439
8440 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
8441 misfeature in `expand-abbrev' which caused electric keywords like
8442 "else" to disappear if an open brace was typed directly afterwards.
8443
8444 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8445
8446 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
8447 mandatory in `define-widget'.
8448
8449 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
8450 Don't align the operators "!=", "<=" and ">=" as assignment operators.
8451
8452 (c-assignment-operators): New language constant that only contains
8453 the assignment operators.
8454
8455 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
8456
8457 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8458
8459 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8460 Safeguard against unbalanced sexps.
8461
8462 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
8463
8464 * version.el (emacs-version): Check for gtk. Include gtk version info.
8465
8466 2003-08-25 John Paul Wallington <jpw@gnu.org>
8467
8468 * man.el (Man-default-man-entry): Don't whizz past the section
8469 number before looking for it.
8470
8471 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
8472
8473 * progmodes/gud.el (gud-display-line): Don't set window-point if
8474 source buffer is not visible. (Only happens with M-x gdba.)
8475
8476 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
8477 documentation.
8478 (gdb-source, gdb-source-info): Update to assembler unnecessary
8479 as its done after each GDB command anyway.
8480 (gdb-pre-prompt): Use with-current-buffer.
8481 (gdb-insert-field): Add help-echo text.
8482 (gdb-invalidate-assembler): Re-display of assembler now done in
8483 gdb-info-breakpoints-custom.
8484 (gdb-info-breakpoints-custom): Force re-display of assembler to
8485 happen *after* update of breakpoints buffer.
8486 (gdb-display-source-buffer): Don't choke if gdb-source-window
8487 isn't visible.
8488 (gdb-put-string, gdb-put-arrow): Remove free variables.
8489
8490 2003-08-24 John Paul Wallington <jpw@gnu.org>
8491
8492 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
8493
8494 * man.el (Man-default-man-entry): Strip text properties when
8495 snarfing parts of entry because `format' preserves properties.
8496
8497 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8498
8499 * files.el (file-newest-backup): Use `expand-file-name'.
8500
8501 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
8502 Allow the diary to pop up a new frame, if needed.
8503
8504 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
8505 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
8506 (smtpmail-send-it): Make treatment of envelope-from consistent with
8507 sendmail.el.
8508
8509 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
8510 (sh-leading-keywords): Add the bash `time' reserved word.
8511 (sh-variables): Add some bash variables.
8512 (sh-add-completer): Fix nil branch of case statement.
8513
8514 2003-08-24 Masatake YAMATO <jet@gyve.org>
8515
8516 * progmodes/ld-script.el: New file.
8517
8518 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
8519
8520 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
8521
8522 2003-08-23 Andre Spiegel <spiegel@gnu.org>
8523
8524 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
8525 Better explain obsolescence, and what to use instead.
8526
8527 2003-08-23 Masatake YAMATO <jet@gyve.org>
8528
8529 * pcvs.el (cvs-do-removal): Show the deleted file name
8530 on the prompt.
8531
8532 2003-08-20 Dave Love <fx@gnu.org>
8533
8534 * international/mule.el (make-coding-system)
8535 (set-buffer-file-coding-system): Doc fix.
8536
8537 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
8538
8539 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
8540
8541 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
8542
8543 * international/utf-16.el: Add mime-text-unsuitable coding system
8544 properties.
8545
8546 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
8547
8548 * cus-edit.el: Add some :links.
8549 (bib): Remove.
8550
8551 * textmodes/bib-mode.el (bib): Add :group external.
8552
8553 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
8554
8555 * wid-edit.el (widget-echo-help): Make it handle expressions that
8556 evaluate to strings.
8557
8558 2003-08-18 Michael Mauger <mmaug@yahoo.com>
8559
8560 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
8561
8562 Simplify selection of SQL products to define highlighting and
8563 interactive mode. Includes detailed instructions on adding
8564 support for new products.
8565
8566 * progmodes/sql.el (sql-product): New variable. Identifies SQL
8567 product for use in highlighting and interactive mode.
8568 (sql-interactive-product): New variable. SQL product for
8569 sql-interactive-mode.
8570 (sql-product-support): New variable. Specifies product-specific
8571 parameters to drive highlighting and interactive mode.
8572 (sql-imenu-generic-expression): Add more object types.
8573 (sql-sqlite-options): Correct comment.
8574 (sql-ms-program): Use "osql" rather than "isql".
8575 (sql-prompt-regexp, sql-prompt-length): Update comment.
8576 (sql-mode-menu): Add "Start SQLi session" entry.
8577 Replace Highlighting submenu with Product menu. Fix Send Region entry.
8578 (sql-mode-abbrev-table): Add abbreviations. Support of
8579 SYSTEM-FLAG on define-abbrev. Support was removed with last
8580 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
8581 (sql-mode-font-lock-object-name): Add font-lock pattern for object
8582 names.
8583 (sql-mode-ansi-font-lock-keywords): Set as default value.
8584 (sql-mode-oracle-font-lock-keywords): Set as default value.
8585 Support Oracle 9i keywords.
8586 (sql-mode-postgres-font-lock-keywords): Set as default value.
8587 (sql-mode-linter-font-lock-keywords): Set as default value.
8588 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
8589 SQLServer 2000.
8590 (sql-mode-sybase-font-lock-keywords)
8591 (sql-mode-interbase-font-lock-keywords)
8592 (sql-mode-sqlite-font-lock-keywords)
8593 (sql-mode-strong-font-lock-keywords)
8594 (sql-mode-mysql-font-lock-keywords)
8595 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
8596 keywords.
8597 (sql-mode-font-lock-defaults): Update comment.
8598 (sql-product-feature): New function. Returns feature associated
8599 with a product from `sql-product-support' alist.
8600 (sql-product-font-lock): New function. Set font-lock support
8601 based on `sql-product'.
8602 (sql-add-product-keywords): New function. Add font-lock rules to
8603 product-specific keyword variables.
8604 (sql-set-product): New function. Set `sql-product' and apply
8605 appropriate font-lock highlighting.
8606 (sql-highlight-product): New function. Set font-lock support
8607 based on a product. Also set mode name to include product name.
8608 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
8609 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
8610 Use `sql-set-product'.
8611 (sql-highlight-ms-keywords)
8612 (sql-highlight-sybase-keywords)
8613 (sql-highlight-interbase-keywords)
8614 (sql-highlight-strong-keywords)
8615 (sql-highlight-mysql-keywords)
8616 (sql-highlight-sqlite-keywords)
8617 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
8618 (sql-get-login): Prompt in the same order as the tokens.
8619 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
8620 (sql-product-interactive): New function. Common portions of
8621 product-specific interactive mode wrappers.
8622 (sql-interactive-mode): Rewritten to use product features.
8623 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
8624 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
8625 (sql-db2, sql-linter): Use `sql-product-interactive'.
8626 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
8627 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
8628 (sql-connect-ingres, sql-connect-postgres)
8629 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
8630 New functions. Format command line parameters and invoke comint on
8631 the appropriate interpreter. Code was in the corresponding
8632 `sql-xyz' function before.
8633 (sql-connect-ms): New function. Support -E argument to use
8634 operating system credentials for authentication.
8635
8636 2003-08-18 Kenichi Handa <handa@m17n.org>
8637
8638 * international/mule.el (encode-char): Fix for the ASCII case.
8639
8640 2003-08-15 Kenichi Handa <handa@m17n.org>
8641
8642 * international/fontset.el (setup-default-fontset): Change "*" to
8643 nil in the specifications of font family.
8644
8645 2003-08-18 Kim F. Storm <storm@cua.dk>
8646
8647 * kmacro.el (kmacro-keymap): Group related bindings in
8648 initialization for clarity. Bind C-s to start macro.
8649 Remove C-r binding.
8650 (kmacro-initial-counter-value): New defvar to hold initial counter
8651 value in case we set the value before defining a macro.
8652 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
8653 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
8654 not defining or executing macro. Doc fix.
8655 (kmacro-add-counter): Clear kmacro-initial-counter-value.
8656 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
8657 temporarily view older elements on the macro ring without cycling
8658 the ring.
8659 (kmacro-display): Doc fix.
8660 (kmacro-exec-ring-item): New helper function.
8661 (kmacro-call-ring-2nd): Use it.
8662 (kmacro-call-ring-2nd-repeat): Doc fix.
8663 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
8664 (kmacro-end-or-call-macro): Execute last viewed macro (using
8665 kmacro-exec-ring-item) from ring if this follows
8666 kmacro-view-macro. This allows us to find a macro on the ring
8667 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
8668 the ring to bring it to the head of the ring.
8669 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
8670 Allow binding to reserved keys without specifying C-x C-k prefix.
8671 Ask for confirmation if entered key sequence is already bound to
8672 a non-macro command.
8673 (kmacro-view-macro): Repeating command will show older elements
8674 on the macro ring; C-k will execute the last viewed macro.
8675 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
8676 property from 'ring to 'head.
8677
8678 2003-08-17 Alan Shutko <ats@acm.org>
8679
8680 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
8681 keeping December out of the alist.
8682
8683 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
8684
8685 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
8686 * calendar/calendar.el (calendar-mode-map): Bind it to key.
8687 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
8688 (calendar-flatten): New function.
8689 (calendar-mouse-view-other-diary-entries)
8690 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
8691 in the menu title and to show multi-line diary entries correctly
8692 in the menu.
8693
8694 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
8695
8696 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
8697 defcustom, because the default was recently changed.
8698
8699 2003-08-16 Richard M. Stallman <rms@gnu.org>
8700
8701 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
8702
8703 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8704 New subroutine, broken out of eval-last-sexp-1.
8705 (eval-last-sexp-1): Use eval-last-sexp-print-value.
8706
8707 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
8708
8709 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
8710
8711 * simple.el (eval-expression): Use eval-last-sexp-print-value.
8712
8713 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
8714
8715 * progmodes/compile.el (compilation-error-regexp-alist):
8716 Add Java ANt error detection as described in document
8717 http://ant.apache.org/faq.html
8718
8719 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
8720
8721 * simple.el (backward-word, forward-to-indentation)
8722 (backward-to-indentation): Argument changed to optional.
8723 (next-line, previous-line): Use `or' instead of `unless'.
8724
8725 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8726
8727 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
8728 instead of a constant.
8729
8730 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
8731
8732 * shell.el (shell): With prefix-arg, suggest a new buffer name.
8733
8734 2003-08-12 Andre Spiegel <spiegel@gnu.org>
8735
8736 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
8737 (vc-sccs-workfile-version): Search the entire delta table, rather
8738 than just the first entry, because that might be a deleted version.
8739
8740 2003-08-11 Karl Fogel <kfogel@red-bean.com>
8741
8742 * menu-bar.el (menu-bar-options-menu): Supply a body for the
8743 [save-place] binding in the Options menu. Have it require
8744 'saveplace' and then toggle the variable manually, to avoid an an
8745 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
8746 for the bug report.
8747
8748 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
8749
8750 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
8751 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
8752 (gdb-info-threads-custom): Add help-echo text.
8753 (gdb-display-back): Don't use purecopy.
8754 (gdb-info-breakpoints-custom, gdb-reset)
8755 (gdb-assembler-custom): Use display-images-p to test if breakpoint
8756 icons can be displayed.
8757
8758 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
8759
8760 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
8761
8762 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
8763
8764 * bookmark.el (bookmark-completing-read):
8765 Return a string, instead of a list of one string.
8766 Use a popup menu if activated from the mouse.
8767 (bookmark-edit-annotation): Remove unused vars.
8768 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
8769 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
8770 to bookmark-completing-read.
8771 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8772 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
8773 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
8774 and erase-buffer.
8775 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
8776 (bookmark-menu-jump, bookmark-menu-insert)
8777 (bookmark-popup-menu-and-apply-function)
8778 (bookmark-menu-popup-paned-bookmark-menu): Remove.
8779 (bookmark-menu-build-paned-menu): Remove by folding it into
8780 bookmark-menu-popup-paned-menu.
8781 (menu-bar-bookmark-map): Move the define-key statements here.
8782 Use the "non-menu" commands since they now pop up a menu if needed.
8783 (bookmark-exit-hook-internal): Simplify.
8784
8785 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
8786
8787 * reftex-toc.el (reftex-toc-rename-label): New function.
8788 (reftex-toc-check-docstruct): New function.
8789
8790 * reftex.el (reftex-region-active-p): New function.
8791
8792 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
8793 regexp to find the \bibliography macro.
8794
8795 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
8796 which does not exist in LaTeX.
8797 (reftex-cite-format-builtin): Added amsrefs support.
8798 (reftex-toc-confirm-promotion): New option
8799
8800 * reftex-toc.el
8801 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
8802 (reftex-toc-demote, reftex-toc-promote)
8803 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8804 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8805 (reftex-toc-newhead-from-alist)
8806 (reftex-toc-load-all-files-for-promotion): New functions.
8807 (reftex-toc-help): Added description of new keys.
8808 (reftex-toc-split-windows-fraction): New option.
8809 (reftex-recenter-toc-when-idle): Search *toc* window on all
8810 visible frames.
8811 (reftex-toc): Additional parameter REUSE
8812 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
8813 with REUSE argument.
8814 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
8815 the call of `reftex-toc'.
8816 (reftex-make-separate-toc-frame): New function .
8817 (reftex-toc-recenter): When called with triple prefix arg, call
8818 `reftex-make-separate-toc-frame' first.
8819 (reftex-toc-toggle-dedicated-frame): New command.
8820 (reftex-toc-quit): Adapted to delete frame when called in
8821 dedicated frame.
8822
8823 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
8824 all enclosing macros.
8825
8826
8827 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8828
8829 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
8830 first use.
8831
8832 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8833
8834 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
8835
8836 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8837
8838 * calendar/calendar.el (list-diary-entries-hook)
8839 (diary-display-hook, nongregorian-diary-listing-hook)
8840 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
8841 Add some customize options for these hooks.
8842 (calendar-abbrev-construct): Don't try to take a substring longer
8843 than the original string.
8844
8845 2003-08-05 Richard M. Stallman <rms@gnu.org>
8846
8847 * emacs-lisp/testcover.el (noreturn): Report error if does return.
8848 (testcover-reinstrument-clauses): Doc fix.
8849
8850 * emacs-lisp/warnings.el: Doc fixes, args renamed.
8851 (warning-type-format): Rename from warning-group-format.
8852
8853 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
8854 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
8855 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
8856 to prevent warnings about defvar for an obsolete variable.
8857
8858 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
8859 warning-group-format renamed to warning-type-format.
8860
8861 * subr.el (read-passwd): Use clear-string instead of fillarray.
8862
8863 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
8864 Use vconcat instead of concat.
8865 (edmacro-sanitize-for-string): New function.
8866
8867 2003-08-05 Dave Love <fx@gnu.org>
8868
8869 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
8870 line-number-display-limit-width.
8871
8872 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
8873
8874 2003-08-05 Kenichi Handa <handa@m17n.org>
8875
8876 * international/code-pages.el: Don't require mule-diag.
8877
8878 * international/mule-diag.el (non-iso-charset-alist):
8879 Add autoload cookie.
8880
8881 * language/devan-util.el (dev-glyph-order): Add an entry for the
8882 glyph code #xC4.
8883
8884 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
8885
8886 * calendar/calendar.el (diary-file, diary-file-name-prefix)
8887 (european-calendar-style, diary-date-forms)
8888 (calendar-day-name-array, calendar-month-name-array): Doc change.
8889 (generate-calendar-month): Adapt for new behaviour of
8890 `calendar-day-name' function.
8891 (calendar-abbrev-length, calendar-day-abbrev-array)
8892 (calendar-month-abbrev-array): New variables.
8893 (calendar-abbrev-construct): New function.
8894 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
8895 rather than fixing abbrevs at some width. Calling syntax change.
8896 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
8897 (calendar-date-string): Adapt for new behaviours of
8898 `calendar-day-name' and `calendar-month-name' functions.
8899
8900 * calendar/diary-lib.el (list-diary-entries): Adapt for new
8901 behaviour of `calendar-day-name' and `calendar-month-name' functions.
8902 (diary-name-pattern): Use abbrev arrays, rather than fixing
8903 abbrevs at three chars. Calling syntax change.
8904 (mark-diary-entries): Adapt for new behaviours of
8905 `diary-name-pattern' and `calendar-make-alist' functions.
8906 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
8907 `diary-name-pattern' function.
8908 (font-lock-diary-date-forms): Use abbrev arrays, rather than
8909 fixing abbrevs at three chars. Calling syntax change.
8910 (cal-hebrew, cal-islam): Require when compiling.
8911 (diary-font-lock-keywords): Adapt for new behaviour of
8912 `font-lock-diary-date-forms' function.
8913
8914 * calendar/cal-hebrew.el: Reposition some code so defined before used.
8915 (calendar-hebrew-month-name-array-common-year)
8916 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
8917 (list-hebrew-diary-entries): Adapt for new behaviours of
8918 `calendar-day-name' and `add-to-diary-list' functions.
8919 (mark-hebrew-diary-entries): Adapt for new behaviours of
8920 `diary-name-pattern' and `calendar-make-alist' functions.
8921
8922 * calendar/cal-islam.el (calendar-islamic-month-name-array):
8923 Add doc string.
8924 (list-islamic-diary-entries): Adapt for new behaviours of
8925 `calendar-day-name' and `add-to-diary-list' functions.
8926 (mark-islamic-diary-entries): Adapt for new behaviours of
8927 `diary-name-pattern' and `calendar-make-alist' functions.
8928
8929 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
8930 `calendar-month-name' function.
8931
8932 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
8933
8934 * calendar/solar.el (solar-seasons-data): Move definition before use.
8935
8936 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
8937 (cal-tex-LaTeX-hourbox): Move definition before use.
8938
8939 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
8940 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
8941 lunar.el, solar.el
8942 (displayed-month, displayed-year): Define for compiler.
8943
8944 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8945
8946 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
8947 MODE. Renamed from c-init-c-language-vars'.
8948 (c-initialize-cc-mode): Change accordingly.
8949 (c-common-init): Ditto.
8950 (c-mode): Ditto.
8951 (c++-mode): Use `c-init-language-vars-for'.
8952 (objc-mode): Ditto.
8953 (java-mode): Ditto.
8954 (idl-mode): Ditto.
8955 (pike-mode): Ditto.
8956 (awk-mode): Ditto.
8957
8958 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8959
8960 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
8961 or not the point moved.
8962
8963 (c-search-decl-header-end): Don't trip up on operator identifiers
8964 in C++ and operators like == in all languages.
8965
8966 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
8967 Detect leading labels correctly.
8968
8969 2003-08-02 Andreas Schwab <schwab@suse.de>
8970
8971 * textmodes/ispell.el: Don't redo key bindings on loading, put
8972 them only in loaddefs.el.
8973 * bookmark.el: Likewise.
8974 * dabbrev.el: Likewise.
8975 * emerge.el: Likewise.
8976
8977 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
8978 has more than one member.
8979
8980 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
8981
8982 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8983
8984 * lpr.el (printify-region): It was ending conversion before the
8985 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
8986
8987 2003-07-31 John Paul Wallington <jpw@gnu.org>
8988
8989 * net/browse-url.el (browse-url-epiphany): Doc fix.
8990
8991 2003-07-30 Kenichi Handa <handa@m17n.org>
8992
8993 * international/fontset.el (setup-default-fontset):
8994 Change registry names of Akurti fonts.
8995
8996 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
8997
8998 * comint.el (comint-read-noecho): Use `clear-string' instead of
8999 `fillarray'.
9000
9001 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
9002
9003 * outline.el (outline-mode-hook): Add defvar.
9004
9005 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
9006
9007 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
9008 Restore assembler in source window if that is what has been selected.
9009 (menu): Add gdb-restore-windows to menu. Make gdba
9010 specific menus only visible from gdba.
9011
9012 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
9013
9014 * progmodes/compile.el (compilation-environment): New user variable.
9015 (compile-internal): Respect it.
9016
9017 2003-07-23 Masatake YAMATO <jet@gyve.org>
9018
9019 * progmodes/gud.el (gdb-script-font-lock-keywords):
9020 Put `font-lock-function-name-face' on a symbol which includes
9021 `-' like `hook-run'. Put font-lock-variable-name-face
9022 on a symbol starting with $.
9023
9024 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
9025
9026 * files.el (set-visited-file-name): Use truename for buffer-file-name.
9027
9028 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
9029
9030 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
9031
9032 2003-07-26 Andre Spiegel <spiegel@gnu.org>
9033
9034 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
9035 Use with-no-warnings.
9036 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
9037 rather than to find-file-not-found-hook, which doesn't exist.
9038
9039 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
9040
9041 * international/quail.el (quail-translate-key): Fix previous change.
9042
9043 2003-07-25 John Paul Wallington <jpw@gnu.org>
9044
9045 * server.el (server-start): Check `server-process' is non-nil
9046 before killing it to avoid killing current buffer's process.
9047
9048 * simple.el (choose-completion-string): Use `minibufferp';
9049 test `completion-reference-buffer' if `buffer' arg is nil.
9050 (push-mark): Use `when' and `unless'.
9051 (pop-mark): Use `when'.
9052
9053 * mouse-sel.el (mouse-sel-get-selection-function):
9054 Check `x-last-selected-text-primary'. Don't barf if it or
9055 `x-last-selected-text' aren't bound.
9056
9057 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
9058
9059 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
9060
9061 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
9062
9063 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
9064
9065 2003-07-23 John Paul Wallington <jpw@gnu.org>
9066
9067 * tooltip.el (defface tooltip): Inherit from variable-pitch.
9068
9069 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
9070
9071 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
9072 string. Defvar the derived hook.
9073
9074 * macros.el (insert-kbd-macro): Escape double quote character.
9075 From Thomas W Murphy <twm@andrew.cmu.edu>.
9076
9077 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
9078
9079 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
9080 to match the specific mark rather than reusing comment-start-skip.
9081
9082 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
9083
9084 * progmodes/hideshow.el (hs-special-modes-alist):
9085 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
9086
9087 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
9088
9089 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
9090 value using ?\s.
9091
9092 2003-07-21 John Paul Wallington <jpw@gnu.org>
9093
9094 * subr.el (with-selected-window): Add closing paren.
9095
9096 2003-07-21 Richard M. Stallman <rms@gnu.org>
9097
9098 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
9099 (lisp-mode): Likewise.
9100
9101 * subr.el (with-selected-window): Copy code form save-selected-window
9102 so as to call select-window with norecord arg.
9103 (dynamic-completion-table): Doc fix.
9104 (lazy-completion-table): Doc fix.
9105
9106 * international/mule-cmds.el (set-locale-environment):
9107 langinfo renamed to locale-info.
9108
9109 * international/mule.el (auto-coding-functions): Doc fix.
9110
9111 2003-07-21 Kenichi Handa <handa@m17n.org>
9112
9113 * international/quail.el (quail-translate-key):
9114 Update quail-current-str correctly.
9115
9116 2003-07-21 Andreas Schwab <schwab@suse.de>
9117
9118 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
9119 ?, to "_".
9120
9121 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
9122 Version 2.0.36 of Tramp released.
9123
9124 * net/tramp.el (tramp-default-password-end-of-line): Rename from
9125 tramp-password-end-of-line.
9126 (tramp-password-end-of-line): New method parameter.
9127 (tramp-get-password-end-of-line): Function to access method
9128 parameter `tramp-password-end-of-line', or variable
9129 `tramp-default-password-end-of-line' (default value).
9130 (tramp-methods): Add entries for new parameter
9131 tramp-password-end-of-line.
9132 (tramp-enter-password): Use new function
9133 `tramp-get-password-end-of-line'.
9134 (tramp-handle-insert-file-contents): Do not
9135 unconditionally inhibit the file operation file-local-copy, only
9136 do that when the inhibit-file-name-operation is currently
9137 insert-file-contents. This fixes finding remote CVS-controlled
9138 files. (It would barf on inserting the CVS/Entries file
9139 literally, because the file-local-copy handler wasn't called.)
9140 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
9141 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
9142 (tramp-initial-commands): New variable.
9143 (tramp-process-initial-commands): New function, using the variable.
9144 (tramp-open-connection-setup-interactive-shell): Call the new function.
9145 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
9146 method into the buffer name, never use nil. Reported by Hanak
9147 David <dhanak@inf.bme.hu>.
9148 (tramp-open-connection-setup-interactive-shell): Erase buffer
9149 before sending "stty -onlcr".
9150
9151 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
9152
9153 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
9154
9155 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
9156
9157 2003-07-19 John Paul Wallington <jpw@gnu.org>
9158
9159 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
9160 (artist-draw-rect, artist-draw-square): Doc fixes.
9161
9162 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
9163
9164 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
9165
9166 2003-07-19 Kenichi Handa <handa@m17n.org>
9167
9168 * international/kkc.el (kkc-show-conversion-list-update):
9169 Highlight the correct candidate in the message.
9170
9171 2003-07-18 John Paul Wallington <jpw@gnu.org>
9172
9173 * simple.el (current-word): Don't include punctuation char when
9174 `really-word' arg is non-nil.
9175
9176 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
9177
9178 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
9179 moved to the directory obsolete.
9180
9181 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
9182
9183 * info.el (Info-menu-entry-name-re): Allow newlines in
9184 menu entry names.
9185
9186 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
9187 syntax-ppss-after-change-function.
9188 (syntax-ppss-after-change-function): New alias. Update uses.
9189 (syntax-ppss): Catch the case where the buffer is narrowed.
9190
9191 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9192
9193 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
9194 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
9195
9196 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9197
9198 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
9199 since it might be modified.
9200
9201 * progmodes/cc-langs.el (c++-make-template-syntax-table)
9202 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
9203 names to these language constants.
9204
9205 2003-07-15 Kim F. Storm <storm@cua.dk>
9206
9207 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
9208 All uses changed.
9209
9210 2003-07-14 Mark A. Hershberger <mah@everybody.org>
9211
9212 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
9213 Namespace support.
9214
9215 2003-07-13 Juanma Barranquero <lektu@terra.es>
9216
9217 * frame.el (modify-all-frames-parameters): Reinstall (copyright
9218 papers received).
9219
9220 2003-07-13 Karl Eichwalder <ke@suse.de>
9221
9222 * textmodes/po.el (po-find-charset): White space at the start of the
9223 Content-Type field body is non-mandatory.
9224
9225 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
9226
9227 * textmodes/texinfo.el (texinfo-section-list):
9228 Append appendixsection; a synonym for appendixsec.
9229
9230 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
9231
9232 * man.el (Man-translate-cleanup): New.
9233 (Man-translate-references): Call `Man-translate-cleanup' to clean
9234 leading, trailing and middle spaces.
9235
9236 2003-07-13 Lars Hansen <larsh@math.ku.dk>
9237
9238 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
9239 Handle `dired-directory' being a list.
9240
9241 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
9242
9243 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
9244 it doesn't exist.
9245
9246 2003-07-12 Richard M. Stallman <rms@gnu.org>
9247
9248 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
9249
9250 * progmodes/cc-defs.el (c-make-keywords-re):
9251 Don't use delete-duplicates.
9252 (c-lang-const): Don't use mapcan.
9253
9254 * apropos.el (apropos-show-scores): Make it customizable.
9255 Document new meaning.
9256 (apropos): Compute scores from symbols.
9257 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
9258
9259 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9260
9261 * ps-bdf.el: Fix copyright line.
9262 (bdf-directory-list): Fix initialization code.
9263
9264 2003-07-11 John Paul Wallington <jpw@gnu.org>
9265
9266 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
9267 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
9268 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
9269
9270 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
9271
9272 * emacs-lisp/ring.el (ring-elements): Doc fix.
9273
9274 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9275
9276 * calendar/timeclock.el (timeclock-relative)
9277 (timeclock-ask-before-exiting, timeclock-use-display-time):
9278 Doc changes.
9279 (timeclock-modeline-display): Give a message if
9280 `timeclock-use-display-time' is non-nil but `display-time-mode'
9281 is not active.
9282
9283 2003-07-11 Kenichi Handa <handa@m17n.org>
9284
9285 * international/mule-cmds.el (set-language-environment):
9286 Set current-language-environment to the correct string.
9287
9288 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9289
9290 * ps-print.el: Print line number correctly in a region. Reported by
9291 Tim Allen <timallen@ls83.fsnet.co.uk>.
9292 (ps-print-version): New version number (6.6.2).
9293 (ps-printing-region): Code fix.
9294
9295 2003-07-10 John Paul Wallington <jpw@gnu.org>
9296
9297 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
9298 this function can be called from `add-completions-from-tags-table'.
9299
9300 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
9301
9302 * calendar/timeclock.el (timeclock-use-display-time)
9303 (timeclock-day-over-hook, timeclock-workday-remaining)
9304 (timeclock-status-string, timeclock-when-to-leave)
9305 (timeclock-when-to-leave-string, timeclock-log-data)
9306 (timeclock-find-discrep, timeclock-day-base)
9307 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
9308 (timeclock-modeline-display): Set the variable
9309 `timeclock-modeline-display'.
9310 (timeclock-update-modeline): Doc fix. Respect value of
9311 `timeclock-relative'.
9312
9313 2003-07-09 Richard M. Stallman <rms@gnu.org>
9314
9315 * textmodes/reftex-parse.el (reftex-all-document-files):
9316 Add autoload cookie.
9317
9318 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
9319 (reftex-scanning-info-available-p): Add autoload cookie.
9320
9321 * international/mule-cmds.el
9322 (set-display-table-and-terminal-coding-system): Delete duplicate
9323 aset on standard-display-table.
9324
9325 * view.el (view-file): If existing buffer's major mode is special,
9326 don't go into view mode.
9327
9328 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
9329
9330 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9331
9332 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
9333 buffer changes; there's third party code that calls this function
9334 directly.
9335
9336 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9337
9338 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
9339 (autodoc-font-lock-keywords): Don't byte compile on font lock
9340 initialization when running from byte compiled files.
9341
9342 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9343
9344 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
9345 statement ends with auto-increment "++".
9346
9347 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9348
9349 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9350 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9351 these are changed, so declare them as variables and not constants.
9352
9353 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
9354
9355 * subr.el (dolist, dotimes): Doc fix.
9356
9357 2003-07-08 Kim F. Storm <storm@cua.dk>
9358
9359 * international/mule-cmds.el
9360 (set-display-table-and-terminal-coding-system): Don't break
9361 bootstrap if standard-display-table isn't setup yet.
9362
9363 2003-07-07 Richard M. Stallman <rms@gnu.org>
9364
9365 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
9366 Give it a doc string, and autoload it.
9367
9368 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
9369 Use with-no-warnings.
9370
9371 * info.el (Info-search): If find invisible text, search again.
9372
9373 * isearch.el (search-whitespace-regexp): Add a shy group around it.
9374
9375 * man.el (Man-name-regexp): Match + as part of name.
9376
9377 * simple.el (visible-mode): Rename from vis-mode.
9378 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
9379
9380 * simple.el (current-word): New arg REALLY-WORD specifies
9381 don't include punctuation chars.
9382
9383 * emacs-lisp/debug.el (debug, debugger-env-macro):
9384 Use with-no-warnings while accessing and binding unread-command-char.
9385
9386 * international/mule-cmds.el
9387 (set-display-table-and-terminal-coding-system): Use explicit loop
9388 instead of calling standard-display-default.
9389
9390 * net/ange-ftp.el (ange-ftp-file-symlink-p):
9391 Use condition-case to catch error in ange-ftp-get-files.
9392
9393 * net/browse-url.el (browse-url-browser-function):
9394 Add alternative for Epiphany.
9395 (browse-url-epiphany-program, browse-url-epiphany-arguments)
9396 (browse-url-epiphany-startup-arguments)
9397 (browse-url-epiphany-new-window-is-tab): New variables.
9398 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
9399
9400 * progmodes/compile.el (compile-auto-highlight): Default now t.
9401 (compile): Doc fix.
9402 (compilation-next-error): Fix previous change.
9403
9404 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
9405
9406 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
9407
9408 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
9409
9410 * gdb-ui.el (gdb-source-info): Display current frame when
9411 attaching to an existing process.
9412 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
9413 while laying out windows when attaching to an existing process.
9414
9415 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
9416
9417 * info.el (Info-menu): Use Info-menu-entry-name-re.
9418
9419 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
9420
9421 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
9422 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
9423
9424 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
9425 to match the same text.
9426
9427 2003-07-06 John Paul Wallington <jpw@gnu.org>
9428
9429 * vc.el (vc-annotate-offset): Move defvar up.
9430
9431 2003-07-06 Kim F. Storm <storm@cua.dk>
9432
9433 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
9434 This should fix the infinite loop when extracting menu names.
9435
9436 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9437
9438 * files.el (auto-mode-alist, interpreter-mode-alist):
9439 Remove entries to CC Mode modes to avoid duplicates; they are now added
9440 with autoload directives in cc-mode.el.
9441
9442 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9443
9444 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9445 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9446 these are changed, so declare them as variables and not constants.
9447
9448 * progmodes/cc-mode.el: Fix some autoload problems: Try to
9449 ensure that the entry for ".c" extension comes before the one for
9450 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
9451 Fix incorrect entries that were added to `interpreter-mode-alist'.
9452 Move the autoload directives for AWK to the top level since they
9453 aren't recognized anywhere else. Do not use the new AWK mode doc
9454 in the autoload form for the old AWK mode.
9455
9456 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9457
9458 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
9459 (bibtex-sort-ignore-string-entries): Default value t.
9460 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
9461 erroneously in previous version.
9462 (bibtex-string-files): Docstring reflects new parsing scheme.
9463 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
9464 docstring, add # as one of the chars to crush
9465 (bibtex-autokey-prefix-string, bibtex-autokey-names)
9466 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
9467 (bibtex-autokey-name-change-strings)
9468 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
9469 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
9470 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
9471 (bibtex-autokey-title-terminators)
9472 (bibtex-autokey-titlewords-stretch)
9473 (bibtex-autokey-titleword-ignore)
9474 (bibtex-autokey-titleword-case-convert)
9475 (bibtex-autokey-titleword-abbrevs)
9476 (bibtex-autokey-titleword-abbrevs)
9477 (bibtex-autokey-titleword-change-strings)
9478 (bibtex-autokey-titleword-length)
9479 (bibtex-autokey-titleword-separator)
9480 (bibtex-autokey-name-year-separator)
9481 (bibtex-autokey-year-title-separator)
9482 (bibtex-autokey-before-presentation-function)
9483 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
9484 Fix docstring.
9485 (bibtex-strings, bibtex-reference-keys):
9486 Use lazy-completion-table and make-variable-buffer-local.
9487 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
9488 (bibtex-braced-string-syntax-table)
9489 (bibtex-quoted-string-syntax-table): New variables.
9490 (bibtex-parse-nested-braces): Remove.
9491 (bibtex-parse-field-string): Use syntax table and forward-sexp.
9492 (bibtex-parse-association): Simplify.
9493 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
9494 (bibtex-parse-field-text): Simplify.
9495 (bibtex-search-forward-field, bibtex-search-backward-field):
9496 argument BOUND can take value t.
9497 (bibtex-start-of-field, bibtex-start-of-name-in-field)
9498 (bibtex-end-of-name-in-field, bibtex-end-of-field)
9499 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
9500 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
9501 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
9502 (bibtex-skip-to-valid-entry): Return buffer position of beginning
9503 and ending of entry. Update for changes of bibtex-search-entry.
9504 Simplify.
9505 (bibtex-map-entries): FUN is called with three arguments.
9506 (bibtex-search-entry): Return a cons pair with buffer positions of
9507 beginning and end of entry.
9508 (bibtex-enclosing-field): Simplify.
9509 (bibtex-format-entry): Use booktitle to set a missing title.
9510 (bibtex-autokey-get-names): Fiddle with regexps.
9511 (bibtex-generate-autokey): Use identity.
9512 (bibtex-parse-keys): Use simplified parsing algorithm if
9513 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
9514 arguments. Return alist of keys.
9515 (bibtex-parse-strings): Simplify. Return alist of strings.
9516 (bibtex-complete-string-cleanup): Fix docstring.
9517 (bibtex-read-key): New function.
9518 (bibtex-mode): Fix docstring. Do not parse for keys and
9519 strings when the mode is entered. Set fill-paragraph-function to
9520 bibtex-fill-field. Setup font-lock-mark-block-function the way
9521 font-lock intended.
9522 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
9523 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
9524 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
9525 (bibtex-Preamble): Avoid hard coded constants.
9526 (bibtex-make-field): Fix docstring. Simplify.
9527 (bibtex-beginning-of-entry): Always return new position of point.
9528 (bibtex-end-of-entry): Rearrange cond clauses.
9529 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
9530 Update for changes of bibtex-map-entries.
9531 (bibtex-ispell-abstract): Do not move point.
9532 (bibtex-entry-index): Use downcase. Simplify.
9533 (bibtex-lessp): Handle catch-all.
9534 (bibtex-find-crossref): Turn into a command.
9535 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
9536 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
9537 preamble entries.
9538 (bibtex-fill-field-bounds): New function.
9539 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
9540 (bibtex-fill-entry): Use bibtex-fill-field-bounds
9541 (bibtex-String): Use bibtex-strings. Always obey
9542 bibtex-sort-ignore-string-entries.
9543
9544 2003-07-05 John Paul Wallington <jpw@gnu.org>
9545
9546 * cus-theme.el (customize-create-theme):
9547 Call `customize-create-theme' in Reset widget's notify function.
9548
9549 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
9550 (ibuffer-mark-interactive): Use `or' instead of `unless'.
9551 (define-ibuffer-column name): Add summarizer.
9552 (define-ibuffer-column size): Likewise.
9553 (define-ibuffer-column filename): Likewise.
9554 (define-ibuffer-column process): Likewise. Change BODY's output too.
9555 (define-ibuffer-column filename-and-process): Likewise, likewise.
9556 (ibuffer): Remove local vars `already-in' and `need-update'.
9557
9558 * ibuf-ext.el: Don't require `derived' at compile-time.
9559
9560 2003-07-05 Kim F. Storm <storm@cua.dk>
9561
9562 * info.el: Disable paragraph refilling.
9563 (Info-refill-paragraphs): New defcustom.
9564 (Info-fontify-node): Use it.
9565
9566 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
9567
9568 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
9569 thingies from constructors created by defstruct.
9570
9571 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
9572 the default value of the variable.
9573 (byte-code-meter): Move declaration to top level.
9574
9575 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
9576
9577 * info.el (Info-following-node-name-re): New fun.
9578 (Info-following-node-name): Remove.
9579 (Info-insert-dir): Use the new fun.
9580 (Info-extract-pointer): Don't save restriction; use new fun.
9581 (Info-menu-entry-name-re): New const.
9582 (Info-menu-entry-name-re): Use it along with new fun.
9583 (Info-node-spec-re): Use new fun.
9584 (Info-complete-menu-item, Info-fontify-node): Use new const.
9585 (Info-goto-node, Info-follow-reference, Info-menu-update):
9586 Use match-string.
9587 (Info-follow-reference): Use assoc-string.
9588 Use a list of strings for the completion table.
9589 (Info-fontify-node): Use match-string, line-end-position.
9590 Limit the search for `node:' to the first line.
9591
9592 * newcomment.el (uncomment-region): Remove padding coming from
9593 comment-start rather than just from comment-padding.
9594
9595 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
9596 (vc-cvs-stay-local-p): Use vc-stay-local-p.
9597 (vc-cvs-rename-file): Remove (use the default).
9598 (vc-cvs-register): Register parent dir if needed.
9599 (vc-cvs-could-register): Return non-nil if parent can be registered.
9600 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
9601 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
9602
9603 * vc-svn.el (vc-svn-use-edit): Make it into a const.
9604 (vc-svn-update): Fix the arguments to `svn'.
9605 (vc-svn-diff-tree): Just use `vc-svn-diff'.
9606 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
9607 Simple implementations, assuming `name' is a URL.
9608
9609 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
9610 set of chars allowed unquoted in a case pattern.
9611
9612 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
9613
9614 * font-lock.el (font-lock-extra-types-widget)
9615 (c-font-lock-extra-types, c++-font-lock-extra-types)
9616 (objc-font-lock-extra-types, java-font-lock-extra-types)
9617 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
9618 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
9619 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
9620 (font-lock-match-c++-structor-declaration)
9621 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
9622 (c++-font-lock-keywords-3, c++-font-lock-keywords)
9623 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
9624 (objc-font-lock-keywords-3, objc-font-lock-keywords)
9625 (java-font-lock-keywords-1, java-font-lock-keywords-2)
9626 (java-font-lock-keywords-3, java-font-lock-keywords)
9627 (java-font-lock-syntactic-face-function): Remove obsolete code
9628 and constants. It's all in cc-fonts.el now.
9629
9630 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
9631
9632 * mail/sendmail.el (mail-specify-envelope-from)
9633 (mail-envelope-from): Doc fix.
9634
9635 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
9636
9637 * generic-x.el: Do away with the dependency on `c-emacs-features'
9638 when populating `rul-generic-mode-syntax-table'; we already know
9639 this isn't XEmacs.
9640
9641 See ChangeLog.10 for earlier changes.
9642
9643 ;; Local Variables:
9644 ;; coding: iso-2022-7bit
9645 ;; End:
9646
9647 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
9648 Copying and distribution of this file, with or without modification,
9649 are permitted provided the copyright notice and this notice are preserved.
9650
9651 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1