]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(compilation-start): Use copy of `process-environment'
[gnu-emacs] / lisp / ChangeLog
1 2004-09-07 Stefan <monnier@iro.umontreal.ca>
2
3 * newcomment.el (uncomment-region-default, comment-region-default):
4 New functions extracted from uncomment-region and comment-region.
5 (comment-region, comment-region-function, uncomment-region)
6 (uncomment-region-function): Use them.
7
8 * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
9
10 * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
11 It's not crucial but can make sense at times.
12
13 * vc-arch.el (vc-arch-workfile-version): Handle the special case before
14 the first commit.
15
16 * vc.el (vc-buffer-context, vc-restore-buffer-context):
17 Disable obsolete code.
18
19 2004-09-07 Juri Linkov <juri@jurta.org>
20
21 * progmodes/grep.el (grep-highlight-matches): Change default from
22 `t' to `auto-detect', and type from `boolean' to `choice'. Doc fix.
23 (grep-compute-defaults): Set `grep-highlight-matches' to `t'
24 if grep option `--color' is available, or to `nil' otherwise.
25 (grep-process-setup): Call `grep-compute-defaults' if
26 `grep-highlight-matches' is not computed. Set env-vars only
27 if `grep-highlight-matches' is `t'.
28 (grep-use-null-device): Remove redundant type `boolean' (`choice'
29 is already defined).
30
31 * progmodes/compile.el (compilation-start): Use copy of
32 `process-environment' created by `copy-sequence' to not
33 modify env-vars in the global `process-environment'.
34
35 2004-09-06 Eli Zaretskii <eliz@gnu.org>
36
37 * simple.el (next-error-follow-minor-mode): Fix last change.
38
39 2004-09-05 Luc Teirlinck <teirllm@auburn.edu>
40
41 * textmodes/paragraphs.el (use-hard-newlines): Make it into a
42 permanent local.
43
44 2004-09-04 Richard M. Stallman <rms@gnu.org>
45
46 * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
47 highlighting if the search string is empty.
48
49 2004-09-04 Luc Teirlinck <teirllm@auburn.edu>
50
51 * facemenu.el (facemenu-active-faces): Change condition of inner
52 `while' loop to also check the first two elements of `face-atts'
53 and `mask-atts'.
54
55 2004-09-04 John Paul Wallington <jpw@gnu.org>
56
57 * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
58 (thumbs-view-image-mode): Make buffer read-only.
59
60 2004-09-04 Christopher J. Madsen <cjm@pobox.com>
61
62 * textmodes/ispell.el (ispell-really-aspell): New defvar.
63 (ispell-check-version): Set it.
64 (ispell-send-replacement): New function.
65 (ispell-process-line): Call ispell-send-replacement.
66
67 2004-09-04 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
68
69 * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
70 Support choosing seconds with "s".
71
72 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
73
74 * terminal.el (te-escape): Show `?' in prompt for help key.
75
76 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
77
78 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
79
80 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
81
82 * simple.el (next-error-follow-minor-mode)
83 (next-error-follow-mode-post-command-hook): New functions.
84 (next-error-follow-last-line): New defvar.
85
86 * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
87 * progmodes/compile.el (compilation-mode-map): Likewise.
88 * progmodes/grep.el (grep-mode-map): Likewise.
89 * replace.el (occur-mode-map): Likewise.
90
91 * newcomment.el (uncomment-region): Bind comment-use-global-state
92 to nil.
93
94 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
95
96 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
97 locally around the call to `revert-buffer'.
98
99 2004-09-03 Juri Linkov <juri@jurta.org>
100
101 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
102 `isearch-adjusted' to `t'.
103 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
104 (isearch-message-prefix): Add "pending" for isearch-adjusted.
105 (isearch-other-meta-char): Restore isearch-point unconditionally.
106 (isearch-query-replace): Add new arg `regexp-flag' and use it.
107 Set point to start of match if region is not active in transient
108 mark mode (to include the current match to region boundaries).
109 Push the search string to `query-replace-from-history-variable'.
110 Add prompt "Query replace regexp" for isearch-regexp.
111 Add region beginning/end as last arguments of `perform-replace.'
112 (isearch-query-replace-regexp): Replace code by the call to
113 `isearch-query-replace' with arg `t'.
114
115 2004-09-03 Richard M. Stallman <rms@gnu.org>
116
117 * startup.el (normal-top-level): Undo previous TERM change.
118
119 2004-09-03 Kim F. Storm <storm@cua.dk>
120
121 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
122 highlight overlays; allow using RET when cursor is over a button.
123 (cua--highlight-rectangle): Use it.
124 (cua--rectangle-set-corners): Don't move backwards at eol.
125 (cua--forward-line): Don't move into void after eob.
126
127 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
128 point is set (and displayed) inside rectangle.
129 (cua--rectangle-operation): Fix for highlight of empty lines.
130 (cua--highlight-rectangle): Fix highlight for tabs.
131 Position cursor at left/right edge of rectangle using new `cursor'
132 property on overlay strings.
133 (cua--indent-rectangle): Don't tabify.
134 (cua-rotate-rectangle): Ignore that point has moved.
135
136 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
137
138 * term/mac-win.el: Add ASCII equivalents for some function keys.
139 (mode-line-frame-identification): Sync with x-win.el.
140
141 2004-09-02 Juri Linkov <juri@jurta.org>
142
143 * progmodes/compile.el (compilation-buffer-name): Compare major
144 mode with second element of compilation-arguments instead of third
145 to reflect latest changes in compilation-arguments structure.
146 (recompile): Use global variable `compilation-directory' to get
147 recent compilation directory only when `recompile' is invoked NOT
148 in the compilation buffer. Otherwise, use `default-directory' of
149 the compilation buffer.
150 (compilation-error-properties): Allow to funcall col and end-col.
151 (compilation-mode-font-lock-keywords): Check col and end-col by
152 `integerp'.
153 (compilation-goto-locus): If end-mk is non-nil in transient mark
154 mode don't activate the mark (and don't display message in
155 push-mark), but highlight overlay between mk and end-mk.
156
157 * progmodes/grep.el (grep-highlight-matches): New defcustom.
158 (grep-regexp-alist): Add rule to highlight grep matches.
159 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
160
161 * info.el (Info-fontify-node): Don't compute other-tag
162 if Info-hide-note-references=hide.
163
164 * help.el (function-called-at-point):
165 * help-fns.el (variable-at-point):
166 Try `find-tag-default' when other methods failed.
167
168 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
169 Do not push mark if inhibit-mark-movement is non-nil.
170
171 * textmodes/ispell.el (ispell-html-skip-alists):
172 Fix backslashes in docstring.
173
174 2004-09-01 Juri Linkov <juri@jurta.org>
175
176 * isearch.el (isearch-wrap-function)
177 (isearch-push-state-function): New defvars.
178 (isearch-pop-fun-state): New defsubst.
179 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
180 (isearch-push-state): Set the result of calling
181 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
182 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
183 restore the mode-specific starting point of terminated search.
184 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
185 (isearch-repeat): Call `isearch-wrap-function' if defined.
186 (isearch-message-prefix): Don't add prefix "over" to the message
187 for wrapped search if `isearch-wrap-function' is defined.
188 (isearch-search): Call function saved in `isearch-pop-fun-state' to
189 restore the mode-specific starting point of failed search.
190
191 * info.el (Info-search-whitespace-regexp): Fix backslashes.
192 (Info-search): Add new optional arguments for the sake of isearch.
193 Replace whitespace in Info-search-whitespace-regexp literally.
194 Add backward search. Don't call `Info-select-node' if regexp is
195 found in the same Info node. Don't add node to Info-history for
196 wrapped isearch.
197 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
198 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
199 (Info-mode): Set local variables `isearch-search-fun-function',
200 `isearch-wrap-function', `isearch-push-state-function',
201 `search-whitespace-regexp'.
202
203 * isearch.el: Remove ancient Change Log section.
204 (isearch-string, isearch-message-string, isearch-point)
205 (isearch-success, isearch-forward-flag, isearch-other-end)
206 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
207 (isearch-barrier, isearch-within-brackets)
208 (isearch-case-fold-search): Add suffix `-state' to state-related
209 defsubsts to avoid name clashes with other function names.
210
211 * simple.el (next-error): New defgroup and defface.
212 (next-error-highlight, next-error-highlight-no-select):
213 New defcustoms.
214 (next-error-no-select): Let-bind next-error-highlight to the value
215 of next-error-highlight-no-select before calling `next-error'.
216
217 * progmodes/compile.el (compilation-goto-locus):
218 Use `next-error' face instead of `region'. Set 4-th argument of
219 `move-overlay' to `current-buffer' to move overlay to different
220 source buffers. Use new variable `next-error-highlight'.
221
222 * simple.el (next-error-find-buffer): Move the rule
223 "if current buffer is a next-error capable buffer" after the
224 rule "if next-error-last-buffer is set to a live buffer".
225 Simplify to test all rules in one `or'.
226 (next-error): Doc fix.
227 (next-error, previous-error, first-error)
228 (next-error-no-select, previous-error-no-select):
229 Make arguments optional.
230
231 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
232
233 * macros.el (apply-macro-to-region-lines): Make it operate on all
234 lines that begin in the region, rather than on all complete lines
235 in the region.
236
237 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
238
239 * x-dnd.el (x-dnd-protocol-alist): Document update.
240 (x-dnd-known-types): Defcustom it.
241 (x-dnd-handle-motif): Print message-atom in error message.
242
243 2004-08-30 John Paul Wallington <jpw@gnu.org>
244
245 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
246 strings rather than programatically constructing message.
247
248 2004-08-30 Richard M. Stallman <rms@gnu.org>
249
250 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
251 Don't return a string that would read as the wrong character code.
252
253 2004-08-29 Kim F. Storm <storm@cua.dk>
254
255 * emulation/cua-base.el (cua-auto-expand-rectangles): Remove
256 automatic rectangle padding feature; replace by non-destructive
257 virtual rectangle edges feature.
258 (cua-virtual-rectangle-edges): New defcustom.
259 (cua-auto-tabify-rectangles): New defcustom.
260 (cua-paste): If paste into a marked rectangle, insert rectangle at
261 current column, even if virtual; also paste exactly as many lines
262 as has been marked (ignore additional lines or add empty lines),
263 but paste whole source if only one line is marked.
264 (cua--update-indications): No longer use overwrite-cursor to
265 indicate rectangle padding
266
267 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
268 (cua--rectangle-virtual-edges): New defun.
269 (cua--rectangle-get-corners): Remove optional PAD arg.
270 (cua--rectangle-set-corners): Never do padding.
271 (cua--forward-line): Remove optional PAD arg. Simplify.
272 (cua-resize-rectangle-right, cua-resize-rectangle-left)
273 (cua-resize-rectangle-down, cua-resize-rectangle-up):
274 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
275 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
276 (cua--rectangle-move): Never do padding. Simplify.
277 (cua--tabify-start): New defun.
278 (cua--rectangle-operation): Add tabify arg. All callers changed.
279 (cua--pad-rectangle): Remove.
280 (cua--delete-rectangle): Handle delete with virtual edges.
281 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
282 (cua--insert-rectangle): Handle insert at virtual column.
283 Perform auto-tabify if necessary.
284 (cua--activate-rectangle): Remove optional FORCE arg.
285 Never do padding. Simplify.
286 (cua--highlight-rectangle): Enhance for virtual edges.
287 (cua-toggle-rectangle-padding): Remove command.
288 (cua-toggle-rectangle-virtual-edges): New command.
289 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
290 (cua--rectangle-post-command): Don't force rectangle padding.
291 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
292
293 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
294
295 * indent.el (edit-tab-stops-buffer): Doc fix.
296
297 2004-08-28 Richard M. Stallman <rms@gnu.org>
298
299 * progmodes/grep.el (grep-default-command): Use find-tag-default.
300 (grep-tag-default): Function deleted.
301
302 * subr.el (find-tag-default): Moved from etags.el.
303
304 * progmodes/etags.el (find-tag-default): Moved to subr.el.
305
306 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
307 into the basic character if it has an uppercase form.
308
309 2004-08-27 Kenichi Handa <handa@m17n.org>
310
311 * international/utf-8.el (utf-8-post-read-conversion): If the
312 buffer is unibyte, temporarily make it multibyte.
313
314 2004-08-27 Masatake YAMATO <jet@gyve.org>
315
316 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
317
318 2004-08-25 John Paul Wallington <jpw@gnu.org>
319
320 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
321 0, 1, and many mismatches in message.
322 (tex-start-shell): Use `set-process-query-on-exit-flag'.
323
324 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
325 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
326
327 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
328
329 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
330 vc-diff-switches differently.
331
332 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
333
334 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
335 before and a real defvar after
336 `speedbar-supported-extension-expressions'. This is to silence
337 the compiler without breaking bootstrapping.
338
339 2004-08-22 Richard M. Stallman <rms@gnu.org>
340
341 * textmodes/flyspell.el (flyspell-word):
342 Use set-process-query-on-exit-flag.
343 (flyspell-highlight-duplicate-region): Take POSS as arg.
344 (flyspell-word): Pass POSS as arg.
345
346 * progmodes/ada-xref.el: Many doc and style fixes.
347 (ada-find-any-references): Use compilation-start.
348 (ada-get-ali-file-name): Improve error msg.
349 (ada-get-ada-file-name): Likewise.
350
351 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
352 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
353
354 * mail/mail-extr.el (mail-extr-all-top-level-domains):
355 Add forward defvar.
356
357 * whitespace.el (global-whitespace-mode): New alias
358 for whitespace-global-mode.
359
360 * speedbar.el (speedbar-file-regexp): Definition moved up.
361 (speedbar-mode, speedbar-set-mode-line-format):
362 Use with-no-warnings.
363 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
364
365 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
366 controls whether to display the error buffer.
367
368 * ps-mule.el: Delete compatibility code for old Emacses.
369 (ps-mule-find-wrappoint): Don't use chars-in-region.
370
371 * frame.el (display-mouse-p, display-selections-p):
372 Use with-no-warnings.
373
374 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
375
376 2004-08-22 David Kastrup <dak@gnu.org>
377
378 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
379 information.
380
381 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
382
383 2004-08-22 Andreas Schwab <schwab@suse.de>
384
385 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
386
387 2004-08-22 Masatake YAMATO <jet@gyve.org>
388
389 * cvs-status.el (cvs-status-checkout): New function.
390 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
391
392 2004-08-21 David Kastrup <dak@gnu.org>
393
394 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
395 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
396 has been converted to use hashtables, the relation `nil=none' is
397 no longer valid, as `nil' is not a hashtable. This patch tries to
398 reduce the number of resulting errors.
399
400 2004-08-21 John Paul Wallington <jpw@gnu.org>
401
402 * subr.el (process-kill-without-query): Made obsolete in
403 version 21.4, not 21.5.
404
405 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
406 (vc-previous-comment, vc-next-comment)
407 (vc-comment-search-reverse, vc-comment-search-forward)
408 (vc-comment-to-change-log): Likewise.
409
410 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
411
412 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
413
414 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
415 Correct indentation of DEFMETHODS with non-standard method
416 combinations (e.g., PROGN, MIN, MAX).
417
418 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
419
420 * startup.el (normal-top-level-add-subdirs-to-load-path):
421 Avoid unnecessarily checking system-type.
422 (normal-top-level): Set TERM to "dumb". Simplify.
423
424 * avoid.el (mouse-avoidance-ignore-p): New fun.
425 Also ignore switch-frame, select-window, double, and triple clicks.
426 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
427 (mouse-avoidance-fancy-hook): Use it.
428
429 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
430
431 * avoid.el (mouse-avoidance-nudge-mouse)
432 (mouse-avoidance-banish-destination): Stay within the current window
433 to avoid problems with mouse-autoselect-window.
434
435 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
436
437 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
438 the newer format of some messages in cvs-1.12.1.
439
440 2004-08-19 Masatake YAMATO <jet@gyve.org>
441
442 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
443 (elp-results-jump-to-definition-by-mouse)
444 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
445 (elp-output-result): Use elp-output-insert-symname.
446
447 2004-08-18 Kenichi Handa <handa@m17n.org>
448
449 * language/cyrillic.el: Register koi8-r in
450 ctext-non-standard-encodings-alist.
451 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
452
453 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
454
455 * emacs-lisp/copyright.el (copyright-update-year): Delete code
456 that replaces 20xy with xy.
457
458 2004-08-17 John Paul Wallington <jpw@gnu.org>
459
460 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
461 (reb-force-update): Doc fix.
462
463 2004-08-16 Richard M. Stallman <rms@gnu.org>
464
465 * progmodes/which-func.el (which-func-update-1): Doc fix.
466
467 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
468 (sh-mode-abbrev-table): New variable.
469
470 * progmodes/compile.el (compilation-mode): Doc fix.
471
472 * emacs-lisp/lisp-mode.el (eval-last-sexp):
473 Don't cons a new symbol each time.
474 (eval-last-sexp-fake-value): New variable.
475
476 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
477 (copyright-update-year): Detect continuation of list of years.
478
479 * term.el (term-default-fg-color, term-default-bg-color)
480 (ansi-term-color-vector): Use `unspecified', not nil, as default.
481
482 * imenu.el: Several doc fixes: don't say variables are buffer-local.
483
484 2004-08-16 Davis Herring <herring@lanl.gov>
485
486 * isearch.el (isearch-string, isearch-message-string, isearch-point)
487 (isearch-success, isearch-forward-flag, isearch-other-end)
488 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
489 (isearch-barrier, isearch-within-brackets)
490 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
491
492 2004-08-16 Kenichi Handa <handa@m17n.org>
493
494 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
495
496 2004-08-15 Kenichi Handa <handa@m17n.org>
497
498 * term/x-win.el (x-selection-value): If utf8 was successful but
499 ctext was not, use utf8 string.
500
501 2004-08-14 Davis Herring <herring@lanl.gov>
502
503 * isearch.el: Remove accidental changes of March 4. Fix backing
504 up when a regexp isearch is made more general. Use symbolic
505 accessor functions for isearch stack frames to make usage clearer.
506 (search-whitespace-regexp): Made groups in documentation shy (as
507 is the group in the default value).
508 (isearch-fallback): New function, addresses problems with regexps
509 liberalized by `\|', adds support for liberalization by `\}' (the
510 general repetition construct), and incorporates behavior for
511 `*'/`?'.
512 (isearch-}-char): New command, calls `isearch-fallback' with
513 arguments appropriate to a typed `}'.
514 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
515 appropriately.
516 (isearch-mode-map): Bind `}' to `isearch-}-char'.
517 (isearch-string, isearch-message,string, isearch-point)
518 (isearch-success, isearch-forward-flag, isearch-other-end)
519 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
520 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
521 New inline functions to read fields of a stack frame.
522
523 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
524
525 * battery.el (battery-linux-proc-acpi): Look into battery
526 directories matching the literal string "CMB", too (required for
527 Linux kernel version 2.6.7).
528
529 2004-08-14 John Paul Wallington <jpw@gnu.org>
530
531 * cus-start.el (read-file-name-completion-ignore-case): Add.
532 (blink-cursor-alist): Change version to "21.4".
533
534 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
535
536 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
537
538 * speedbar.el (speedbar-scan-subdirs): New option.
539 (speedbar-file-lists): Don't ignore file-name case on Unix and use
540 dolist.
541 (speedbar-insert-files-at-point): Take an extra argument and use
542 it to optionally find out if a subdir is empty. Also unreadable
543 files don't get expand buttons.
544 (speedbar-directory): New image (unused pixmap already existed).
545 (speedbar-expand-image-button-alist): Use it.
546
547 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
548
549 CC Mode update to 5.30.9:
550
551 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
552 Move from cc-vars to cc-defs for dependency reasons. Fix the
553 POSIX char class test to check that it works in
554 `skip-chars-(forward|backward)' too.
555
556 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
557 first argument starts with a special brace list.
558
559 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
560 when `c-opt-type-concat-key' is used (i.e. in Pike).
561
562 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
563 Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
564 >)".
565
566 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
567 whitespace safe.
568
569 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
570 position for `arglist-intro', `arglist-cont-nonempty' and
571 `arglist-close' when there are two arglist open parens on the same
572 line and there's nothing in front of the first.
573
574 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
575 locking of qualified names in Java, which previously could fontify
576 common indexing expressions in many cases. The standard Java
577 naming conventions are used to tell them apart.
578
579 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
580 Fix inconsistency wrt opening parens on the first line inside a paren
581 block.
582
583 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
584 compile time for the sake of `c-major-mode-is'.
585
586 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
587 `c-major-mode-is' in the event that this is used inside a
588 `c-lang-defconst'.
589
590 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
591 `c-lang-defconst' so that it works better with fallback languages.
592
593 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
594 it to fail to record the base mode.
595
596 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
597 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
598 is used. Reordered the syntax checks to get more efficient
599 skipping in some situations.
600
601 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
602 continuation which might precede the newly inserted '{'.
603
604 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
605 Fix cases where it could loop indefinitely.
606
607 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
608 size specs correctly. Only fontify identifiers in front of '('
609 with as functions - don't accept any paren char. Tightened up
610 initializer skipping to stop before function and class blocks.
611
612 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
613 the point could be left directly after an open paren when finding
614 the beginning of the first decl in the block.
615
616 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
617 table when filtering out legitimate open parens to be recorded.
618 This could cause cache inconsistencies when e.g.
619 `c++-template-syntax-table' was temporarily in use.
620
621 * progmodes/cc-engine.el (c-on-identifier)
622 (c-simple-skip-symbol-backward): Small fix for handling "-"
623 correctly in `skip-chars-backward'. Affected the operator lfun
624 syntax in Pike.
625
626 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
627 Fix bug that could cause an error from `after-change-functions' when
628 the changed region is at bob.
629
630 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
631
632 CC Mode update to 5.30.9:
633
634 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
635 to say that <TAB> doesn't insert WS into a CPP line.
636 (c-indent-command, c-tab-always-indent): Amend doc strings.
637
638 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
639 checks for user errors, thus eliminating cryptic and unhelpful
640 Emacs error messages. (1) Check the arg to `c-set-style' is a
641 string. (2) Check that settings to `c-offsets-alist' are not
642 spuriously quoted.
643
644 * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
645 which precedes the newly inserted `{'.
646
647 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
648
649 Sync with Tramp 2.0.44.
650
651 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
652 function "tramp_file_attributes". Otherwise, file names
653 containing spaces are misinterpreted. Reported by Magnus Henoch
654 <mange@freemail.hu>.
655 (tramp-handle-file-truename): FILENAME must be expanded first.
656 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
657 obscure results. Reported by D. Goel <deego@gnufans.org>.
658 (tramp-handle-verify-visited-file-modtime): If file does not
659 exist, say it is not modified if and only if that agrees with the
660 buffer's record. Check whether a file is visiting the buffer, or
661 the buffer has no recorded last modification time. Return t in
662 case the visiting file doesn't exist. Suggested by Luc Teirlinck
663 <teirllm@auburn.edu>.
664 (tramp-handle-write-region): Pass modtime explicitely to
665 `set-visited-file-modtime', because filename can be different
666 from (buffer-file-name) if `file-precious-flag' is set.
667 `set-visited-file-modtime' must be called always when `visit' is t
668 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
669 (tramp-handle-set-visited-file-modtime): If `time-list' is not
670 nil, don't apply the whole body. If the file doesn't exists, set
671 modtime to '(-1 65535). Suggested by Luc Teirlinck
672 <teirllm@auburn.edu>.
673
674 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
675
676 * help.el (describe-bindings): Doc fix.
677
678 * subr.el (kbd): Doc fix.
679
680 2004-08-08 John Paul Wallington <jpw@gnu.org>
681
682 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
683 instead of `string-to-int'.
684 (define-ibuffer-column mode): Fix indentation.
685
686 2004-08-08 Lars Hansen <larsh@math.ku.dk>
687
688 * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
689
690 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
691
692 * subr.el (global-unset-key, local-unset-key): Doc fixes.
693
694 * novice.el (disabled-command-function): New variable renamed from
695 `disabled-command-hook'.
696 (disabled-command-hook): Keep the _variable_ as alias for
697 `disabled-command-function' and make obsolete.
698 (disabled-command-function): Function renamed from
699 `disabled-command-hook'. Adapt code to name change of the variable.
700
701 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
702
703 * simple.el (completion-root-regexp): New defvar.
704 (completion-setup-function): Use it instead of a literal string.
705
706 2004-08-07 John Paul Wallington <jpw@gnu.org>
707
708 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
709 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
710 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
711 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
712
713 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
714
715 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
716 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
717
718 2004-08-04 Kenichi Handa <handa@m17n.org>
719
720 * international/encoded-kb.el (encoded-kbd-setup-keymap):
721 Fix previous change.
722
723 2004-08-03 Kenichi Handa <handa@m17n.org>
724
725 * international/encoded-kb.el: The following changes are to
726 utilize key-translation-map instead of minor mode map.
727 (encoded-kbd-iso2022-non-ascii-map): Delete it.
728 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
729 (encoded-kbd-last-key): New function.
730 (encoded-kbd-iso2022-single-shift): New function.
731 (encoded-kbd-iso2022-designation)
732 (encoded-kbd-self-insert-iso2022-7bit)
733 (encoded-kbd-self-insert-iso2022-8bit)
734 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
735 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
736 key-translation-map.
737 (encoded-kbd-setup-keymap): Setup key-translation-map.
738 (saved-key-translation-map): New variable.
739 (encoded-kbd-mode): Save/restore key-translation-map. Adjusted
740 for the change of encoded-kbd-setup-keymap.
741
742 2004-08-02 Kim F. Storm <storm@cua.dk>
743
744 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
745 and call compute-motion with nil for topos and width to get proper
746 usable width and height for both window and non-window systems.
747
748 * windmove.el (windmove-coordinates-of-position): Let compute-motion
749 calculate usable window width and height.
750
751 * window.el (window-buffer-height): Call compute-motion with nil width.
752
753 2004-08-01 David Kastrup <dak@gnu.org>
754
755 * replace.el (query-replace-read-from):
756 Use `query-replace-compile-replacement'.
757 (query-replace-compile-replacement): New function.
758 (query-replace-read-to): Use `query-replace-compile-replacement'
759 for repeating the last command.
760
761 2004-08-01 John Paul Wallington <jpw@gnu.org>
762
763 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
764 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
765 (pr-switches): Remove period from end of error messages.
766
767 * help-mode.el (help-go-back): Likewise.
768
769 * abbrev.el (only-global-abbrevs): Doc fix.
770 (edit-abbrevs-map): Define within defvar.
771 (quietly-read-abbrev-file): Doc fix.
772
773 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
774
775 * novice.el (enable-command, disable-command): Doc fixes.
776
777 * subr.el (event-modifiers, event-basic-type): Doc fixes.
778
779 2004-07-30 Richard M. Stallman <rms@gnu.org>
780
781 * subr.el (with-local-quit): Doc fix.
782
783 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
784
785 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
786
787 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
788
789 * custom.el (defcustom): Doc fix.
790
791 2004-07-28 Masatake YAMATO <jet@gyve.org>
792
793 * progmodes/etags.el (etags-tags-apropos): Show building progress.
794
795 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
796
797 * imenu.el (imenu-prev-index-position-function)
798 (imenu-extract-index-name-function, imenu-name-lookup-function)
799 (imenu--index-alist): Docstring redundancy fix.
800
801 2004-07-25 Lars Hansen <larsh@math.ku.dk>
802
803 * wdired.el (wdired-finish-edit): Require dired-aux before locally
804 binding dired-backup-overwrite.
805
806 2004-07-25 John Paul Wallington <jpw@gnu.org>
807
808 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
809
810 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
811
812 * term/tty-colors.el (tty-color-approximate): Doc fix.
813
814 * select.el (x-get-selection, x-set-selection): Doc fixes.
815
816 * frame.el (make-frame): Doc fix.
817
818 2004-07-24 Richard M. Stallman <rms@gnu.org>
819
820 * mail/rmail.el (rmail-mime-charset-pattern):
821 Don't include semicolon in the charset value.
822
823 * replace.el (occur-next-error): Call set-window-point.
824 (occur-engine): Handle negative NLINES.
825
826 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
827
828 * frame.el (modify-all-frames-parameters): Minor doc fix.
829 (set-frame-configuration): Doc fix.
830
831 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
832
833 * simple.el (completion-setup-function): Compute the common parts
834 and the first difference place correctly when
835 partial-completion-mode is on.
836
837 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
838
839 * ps-print.el: Doc fix.
840 (ps-print-version): New version 6.6.5.
841 (ps-printing-region): Doc fix.
842 (ps-generate-string-list): Comment fix.
843 (ps-message-log-max): Code fix.
844
845 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
846
847 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
848 generated PostScript.
849
850 2004-08-17 Reiner Steib <Reiner.Steib@gmx.de>
851
852 * net/tls.el (tls-process-connection-type): Fix docstring. (Sync
853 with Gnus v5_10 branch.)
854
855 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
856
857 * calendar/time-date.el (time-to-number-of-days): New function.
858 Imported from from Gnus.
859
860 2004-07-22 Kim F. Storm <storm@cua.dk>
861
862 * progmodes/make-mode.el: Fix comments.
863
864 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
865
866 * printing.el: Doc fix.
867
868 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
869
870 * frame.el (modify-all-frames-parameters): Minor doc fix.
871
872 2004-07-20 Richard M. Stallman <rms@gnu.org>
873
874 * textmodes/fill.el (fill-nobreak-p): If this break point is
875 at the end of the line, don't consider the newline which follows
876 as a reason to return t.
877
878 2004-07-19 John Paul Wallington <jpw@gnu.org>
879
880 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
881
882 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
883
884 * dired-aux.el (dired-do-kill-lines): Expand docstring.
885 Delete irrelevant code.
886
887 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
888
889 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
890 New docstring. From Luc Teirlinck.
891
892 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
893
894 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
895 section.
896 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
897 non-file buffers. We know it is nil.
898
899 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
900
901 Sync with Tramp 2.0.43.
902
903 * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove
904 outdated comment.
905 (tramp-locked, tramp-locker): New variables for implementing a
906 global lock.
907 (tramp-sh-file-name-handler): Use them to implement the global
908 lock.
909
910 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
911
912 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
913 calls to respective `xxx` calls.
914 (tramp-process-alive-regexp): Precise doc string.
915 (tramp-multi-action-process-alive): New defun.
916 (tramp-multi-actions): Use it.
917 (tramp-handle-find-backup-file-name): `copy-tree' is available
918 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
919 in order to avoid this function.
920 (tramp-handle-write-region): Set current buffer. If connection
921 wasn't open, `file-modes' has changed it accidently. Reported by
922 David Kastrup <dak@gnu.org>.
923 (tramp-enter-password, tramp-read-passwd): New arguments USER and
924 HOST.
925 (tramp-action-password, tramp-multi-action-password): Apply it.
926 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
927 name must still contain the port number. Otherwise, we have two
928 Tramp buffers, with all the confusion. Reported by Myron Selby
929 <myron@xytech.com> and Rolf Dubitzky
930 <Dubitzky@physi.uni-heidelberg.de>.
931
932 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
933 HOST to `tramp-enter-passwd'.
934
935 * net/tramp-vc.el (all): Code cleanup. Change all
936 `tramp-handle-xxx' calls to respective `xxx` calls.
937
938 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
939
940 * emacs-lisp/testcover.el: New category "potentially-1valued" for
941 functions that are not erroneous if either 1-valued or
942 multi-valued. Detect functions in this class.
943 (testcover-1value-functions, testcover-compose-functions,
944 testcover-progn-functions) Added some additional functions to lists.
945 (testcover-mark): Bugfix when marking up the definition for an
946 empty function.
947
948 2004-07-17 Richard M. Stallman <rms@gnu.org>
949
950 * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer.
951
952 * mail/footnote.el (footnote-section-tag): Use defcustom.
953
954 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
955 Compile font-lock-keywords, not KEYWORDS.
956 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
957 Add warn, check-type. Handle cerror like error.
958
959 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
960
961 * progmodes/which-func.el (which-func-keymap): New var.
962 (which-func-face): New face.
963 (which-func-format): Use them.
964
965 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
966
967 * buff-menu.el (list-buffers-noselect): Append the buffer's
968 process status to its mode name.
969
970 2004-07-16 Kim F. Storm <storm@cua.dk>
971
972 * simple.el (inhibit-mark-movement): New defvar.
973 (beginning-of-buffer, end-of-buffer): Do not push mark if
974 inhibit-mark-movement is non-nil or C-u prefix is given.
975
976 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
977 Init to beginning-of-buffer and end-of-buffer.
978 (cua--undo-push-mark): New defvar.
979 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
980 already active and command is in cua--preserve-mark-commands.
981 Also fix check for shift modifier on non-window systems.
982 (cua--post-command-handler): Clear inhibit-mark-movement if set.
983
984 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
985
986 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
987 of two integers, instead of a cons.
988
989 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
990 `visited-file-modtime' now returns a list of two integers, instead
991 of a cons.
992
993 * dired.el (dired-directory-changed-p): Ditto.
994
995 * progmodes/grep.el (grep): Doc fix.
996
997 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
998
999 * autorevert.el (auto-revert-tail-mode)
1000 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
1001 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
1002 in both at the same time.
1003 (auto-revert-tail-mode): New command.
1004 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
1005 (auto-revert-handler): Revert only either tail or whole file.
1006
1007 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
1008 add auto-revert-tail-mode.
1009
1010 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1011
1012 * printing.el: Doc fix. Change name of some funs.
1013 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
1014 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
1015 (pr-standard-file-name): New fun. Replace pr-standard-path.
1016 (pr-call-process): Code fix.
1017
1018 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
1019
1020 * subr.el (with-selected-window): Doc fix.
1021
1022 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
1023
1024 * subr.el (get-buffer-window-list): Doc fix.
1025
1026 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
1027
1028 * files.el (switch-to-buffer-other-window): Doc fix.
1029
1030 * window.el (save-selected-window, one-window-p)
1031 (split-window-keep-point, split-window-vertically)
1032 (split-window-horizontally): Doc fixes.
1033
1034 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1035
1036 * printing.el: Doc fix. Now it uses call-process instead of
1037 shell-command for low command execution.
1038 (pr-version): New version number (6.8).
1039 (pr-shell-file-name): Option removed.
1040 (pr-shell-command): Fun removed.
1041 (pr-call-process): New fun. Replace pr-shell-command.
1042 (pr-standard-path, pr-remove-nil-from-list): New funs.
1043 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
1044 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
1045 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
1046 (pr-ps-utility-process, pr-txt-print): Code fix.
1047
1048 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
1049
1050 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
1051 boolean.
1052
1053 2004-07-09 Lars Hansen <larsh@math.ku.dk>
1054
1055 * wid-edit.el (widget-field-buffer): Doc fix.
1056
1057 2004-07-09 John Paul Wallington <jpw@gnu.org>
1058
1059 * emacs-lisp/re-builder.el (reb-update-overlays): Distinguish
1060 between one and several matches in message.
1061
1062 2004-07-09 Richard M. Stallman <rms@gnu.org>
1063
1064 * mouse.el (mouse-set-region-1): If transient-mark-mode
1065 is `identity', change it to `only'.
1066
1067 * simple.el (current-word): Doc fix.
1068
1069 2004-07-09 Mark A. Hershberger <mah@everybody.org>
1070
1071 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
1072 so that it is more understanding of whitespace.
1073
1074 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
1075 form
1076 (("ns" . "element") (attr-list) children) instead of
1077 ((:ns . "element") (attr-list) children) in order to reduce the
1078 number of symbols used.
1079 (xml-skip-dtd): Change to use xml-parse-dtd but set
1080 xml-validating-parsing to nil.
1081 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
1082 (xml-substitute-entity): Remove in favor of new entity substitution.
1083 (xml-substitute-special): Rewrite in to substitute complex
1084 entities from DOCTYPE declarations.
1085 (xml-parse-fragment): Parse fragments from entity deleclarations.
1086 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
1087 (xml-parse-dtd, xml-substitute-special): Make validity checks
1088 conditioned on xml-validating-parser. Add "Not Well Formed" to
1089 error messages about well-formedness.
1090
1091 2004-07-08 Steven Tamm <steventamm@mac.com>
1092
1093 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
1094 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
1095 Do not treat double clicks and triple clicks specially in the
1096 scroll bar (preventing strange repositioning problems)
1097
1098 2004-07-06 Stefan <monnier@iro.umontreal.ca>
1099
1100 * replace.el (query-replace-regexp-eval): Fix last change.
1101
1102 2004-07-05 Stefan <monnier@iro.umontreal.ca>
1103
1104 * replace.el (query-replace-descr): New fun.
1105 (query-replace-read-from, query-replace-read-args): Default to the
1106 previous from&to.
1107 (query-replace-read-to): Quote the `from' string when displaying it.
1108 (query-replace-regexp-eval): Immediately check read-only status.
1109 Use query-replace-read-from to get the \n checking.
1110 Quote the `from' string when displaying it.
1111 (map-query-replace-regexp, occur-read-primary-args):
1112 Quote the `from' string when displaying it.
1113
1114 * isearch.el (isearch-query-replace): Pass the regexp-ness and
1115 delimited-ness of the search to query-replace.
1116
1117 * replace.el (query-replace-read-from, query-replace-read-to):
1118 New funs extracted from query-replace-read-args.
1119 (query-replace-read-args): Use them.
1120
1121 * replace.el (query-replace-interactive, query-replace-read-args):
1122 Remove the `initial' special value.
1123 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
1124 (occur-engine): Remove unused var `matchend'.
1125
1126 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
1127 Use the search string without prompting.
1128
1129 2004-07-05 Kenichi Handa <handa@m17n.org>
1130
1131 * international/mule.el (decode-coding-inserted-region):
1132 Set last-coding-system-used only when coding is nil.
1133
1134 2004-07-03 Eli Zaretskii <eliz@gnu.org>
1135
1136 * progmodes/grep.el (grep-compute-defaults, grep-command)
1137 (grep-program, find-program, grep-find-use-xargs, grep-history)
1138 (grep-find-history, grep-tag-default, grep-find-command)
1139 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
1140 Add autoload cookies, for unbundled packages that load `compile'
1141 and expect all grep-related symbols to become defined.
1142
1143 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
1144
1145 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
1146 (iimage-mode-image-search-path): New user option to search the
1147 image file.
1148 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
1149 have locate-file.
1150 (iimage-mode-buffer): Use it.
1151
1152 2004-07-03 Nick Roberts <nickrob@gnu.org>
1153
1154 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
1155 carefully.
1156 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
1157
1158 2004-07-03 Juri Linkov <juri@jurta.org>
1159
1160 * replace.el (query-replace-read-args): Swallow space after 'foo,
1161 not after (quote foo). Match space only immediately after symbol,
1162 not anywhere in the whole string.
1163
1164 2004-07-02 Richard M. Stallman <rms@gnu.org>
1165
1166 * replace.el (query-replace-read-args): Swallow space after
1167 symbols, not after closeparens. But avoid error if string ends there.
1168
1169 * progmodes/python.el (python-beginning-of-statement):
1170 Exit the loop if backward-up-list gets error.
1171
1172 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
1173
1174 2004-07-02 Andre Spiegel <spiegel@gnu.org>
1175
1176 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
1177 only if vc-consult-headers is non-nil.
1178
1179 2004-07-02 Juri Linkov <juri@jurta.org>
1180
1181 * pcvs.el (cvs-mode-diff-repository): New command.
1182
1183 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
1184
1185 2004-07-01 Juri Linkov <juri@jurta.org>
1186
1187 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
1188 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
1189 C-M-% to isearch-query-replace-regexp.
1190 (minibuffer-local-isearch-map): Add arrow key bindings.
1191 Bind C-f to isearch-yank-char-in-minibuffer.
1192 (isearch-forward): Doc fix.
1193 (isearch-edit-string): Doc fix.
1194 (isearch-query-replace, isearch-query-replace-regexp): New funs.
1195 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
1196 (isearch-yank-char): Add optional arg.
1197 (isearch-yank-char-in-minibuffer): New fun.
1198
1199 * replace.el (query-replace-interactive): Change type from boolean
1200 to choice. Add value `initial'.
1201 (query-replace-read-args): Handle value `initial' of
1202 query-replace-interactive.
1203
1204 2004-06-29 Kim F. Storm <storm@cua.dk>
1205
1206 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
1207 (breakpoint-disabled-bitmap-face): Add :group 'gud.
1208
1209 * progmodes/ada-xref.el (ada-tight-gvd-integration):
1210 Add :group 'ada.
1211
1212 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
1213
1214 2004-06-29 Juri Linkov <juri@jurta.org>
1215
1216 * replace.el (query-replace-read-args): Swallow a space after
1217 everything except )]" which in most cases means after a symbol.
1218
1219 * emacs-lisp/pp.el (pp-buffer): Add autoload.
1220
1221 2004-06-28 Richard M. Stallman <rms@gnu.org>
1222
1223 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
1224 More changes to go with previous change in font-lock.el.
1225
1226 2004-06-26 David Kastrup <dak@gnu.org>
1227
1228 * replace.el (perform-replace): Highlight the match even in
1229 non-query mode if there is potential replace string editing.
1230
1231 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
1232
1233 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
1234 agree with new return value of `file-remote-p'.
1235 This syncs with Tramp 2.0.42.
1236
1237 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
1238 according to new documentation of `file-remote-p'.
1239
1240 * files.el (file-remote-p): Fix doc to say that return value is
1241 identification of remote system, if not nil.
1242 (file-relative-name): Use new return value of `file-remote-p'.
1243
1244 2004-06-26 Nick Roberts <nickrob@gnu.org>
1245
1246 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
1247 (gdb-goto-breakpoint): Fix breakage.
1248
1249 2004-06-26 Eli Zaretskii <eliz@gnu.org>
1250
1251 * man.el (Man-getpage-in-background): Add windows-nt to the list
1252 of systems where shell-file-name should be used instead of
1253 literal "sh".
1254
1255 2004-06-25 Sam Steingold <sds@gnu.org>
1256
1257 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
1258 function names `(setf symbol)'.
1259
1260 2004-06-24 Richard M. Stallman <rms@gnu.org>
1261
1262 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
1263
1264 * font-lock.el (font-lock-keywords): Change format of compiled values.
1265 Document it.
1266 (font-lock-add-keywords): If font-lock-keywords is compiled,
1267 extract the uncompiled version, modify, then recompile.
1268 (font-lock-remove-keywords): Likewise.
1269 (font-lock-fontify-keywords-region): Handle changed format.
1270 (font-lock-compile-keywords): Handle changed format.
1271 (font-lock-set-defaults): Compile the keywords explicitly here.
1272
1273 2004-06-24 David Kastrup <dak@gnu.org>
1274
1275 * replace.el (query-replace-read-args): Implement `\,' and `\#'
1276 replacements here.
1277 (query-replace-regexp): Doc string explaining this and the new
1278 `\?' replacement. Remove `\,' and `\#' implementation here, as it
1279 is better placed in `query-replace-read-args'.
1280 (replace-regexp): Explain `\,', `\#' and `\?'.
1281 (replace-match-data): New function for thorough reuse/destruction
1282 of old match-data.
1283 (replace-match-maybe-edit): Function for implementing `\?' editing.
1284 (perform-replace): Fix maintaining of the match stack including
1285 already matched regions, implement `\?', fix various problems
1286 with regions while editing and other stuff.
1287 (replace-highlight): Simplify.
1288
1289 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
1290
1291 * progmodes/grep.el (grep-error-screen-columns): New variable.
1292 (grep-regexp-alist): Give it the full functionality of gnu style
1293 compilation messages with line and column ranges. Ask me for the
1294 perl script I'm working on, that uses these.
1295
1296 2004-06-23 Nick Roberts <nickrob@gnu.org>
1297
1298 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
1299 Remove.
1300 (comint-insert-input, comint-mouse-insert-input): New functions
1301 based on comint-insert-clicked-input for two bindings but just
1302 one functionality.
1303
1304 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
1305
1306 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
1307
1308 2004-06-23 Lars Hansen <larsh@math.ku.dk>
1309
1310 * files.el (write-contents-functions): Doc fix.
1311
1312 2004-06-21 Juanma Barranquero <lektu@terra.es>
1313
1314 * image.el (image-library-alist): Rewrite docstring in active voice.
1315
1316 2004-06-20 Richard M. Stallman <rms@gnu.org>
1317
1318 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
1319
1320 * isearch.el (isearch-repeat): Avoid testing old match data.
1321 (isearch-message): Display trailing space in special font
1322 when search is failing.
1323 (isearch-search-fun-function): Doc fix.
1324
1325 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
1326
1327 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
1328
1329 * frame.el (show-trailing-whitespace): Doc fix.
1330
1331 * cus-edit.el (custom-variable-documentation): New function.
1332 (custom-variable): Use it.
1333
1334 2004-06-19 Nick Roberts <nickrob@gnu.org>
1335
1336 * man.el (Man-getpage-in-background): Revert previous change but
1337 make cygwin a special case.
1338
1339 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
1340
1341 * autorevert.el (global-auto-revert-non-file-buffers):
1342 Update docstring.
1343
1344 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
1345
1346 * progmodes/compile.el (compilation-error-properties): Store one
1347 more than end-col, if present, so that transient-mark-mode will
1348 highlight last char too.
1349 * progmodes/grep.el (grep-regexp-alist): Match columns and column
1350 ranges, if present.
1351
1352 2004-06-18 Jason Rumney <jasonr@gnu.org>
1353
1354 * makefile.w32-in: Double percent signs in for loops.
1355
1356 2004-06-17 David Kastrup <dak@gnu.org>
1357
1358 * replace.el (query-replace-read-args): Only warn about use of \n
1359 and \t when we are doing a regexp replacement and the actual
1360 escaped character is n or t.
1361 (query-replace-regexp): Add \, and \# interpretation to
1362 interactive call and document it.
1363 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
1364 as shortkey for replace-count.
1365 (replace-quote): New function for doubling backslashes.
1366
1367 2004-06-17 Juanma Barranquero <lektu@terra.es>
1368
1369 * files.el (parse-colon-path, cd): Mention in docstring that the
1370 path separator is colon in GNU-like systems.
1371
1372 * newcomment.el (comment-region-internal): Fix docstring.
1373
1374 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
1375 (ewoc-invalidate, ewoc-collect): Doc fixes.
1376 (ewoc--create-node, ewoc--delete-node-internal):
1377 Fix typos in docstring.
1378
1379 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1380
1381 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
1382 manual to docstring.
1383
1384 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1385
1386 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
1387
1388 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
1389
1390 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1391 Add hyperlink to emacs-xtra manual to docstring.
1392
1393 * autorevert.el (global-auto-revert-non-file-buffers):
1394 Add hyperlink to emacs-xtra manual to docstring, as well as an
1395 info-link.
1396
1397 2004-06-14 Juanma Barranquero <lektu@terra.es>
1398
1399 * image.el (image-library-alist): New variable to map image types
1400 to external libraries. Initialized to nil, unless system-specific
1401 configs change it.
1402 (image-type-available-p): Determine whether an image type is
1403 available by calling `init-image-library'.
1404
1405 * term/w32-win.el (image-library-alist): Initialize to a known set
1406 of probable library names.
1407
1408 2004-06-14 Kenichi Handa <handa@m17n.org>
1409
1410 * international/code-pages.el (windows-1256, cp1125): Fix tables
1411 for several characters.
1412
1413 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
1414
1415 2004-06-13 Richard M. Stallman <rms@gnu.org>
1416
1417 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
1418
1419 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
1420 not "`pc-selection-mode'".
1421
1422 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
1423
1424 * simple.el (previous-matching-history-element): Specify a default.
1425
1426 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
1427
1428 * cus-face.el (custom-declare-face): Simplify code.
1429
1430 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
1431
1432 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
1433
1434 * files.el (before-save-hook): Add `time-stamp' to the options.
1435
1436 * time-stamp.el (time-stamp): Recommend adding it to
1437 `before-save-hook', rather than `write-file-functions'.
1438 Make a similar change in `Commentary' section.
1439
1440 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
1441
1442 * diff-mode.el (diff-current-defun): If at start of hunk, use
1443 position of first change.
1444
1445 2004-06-13 Lars Hansen <larsh@math.ku.dk>
1446
1447 * dired-x.el (dired-mark-omitted): Bind to "*O".
1448
1449 2004-06-12 Karl Fogel <kfogel@red-bean.com>
1450
1451 * bookmark.el (bookmark-bmenu-relocate): New function, as
1452 suggested by David J. Biesack <David.Biesack@sas.com>.
1453 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
1454 (bookmark-bmenu-mode): Describe binding in doc string.
1455 (bookmark-set-filename): Save the bookmark list if it's time.
1456
1457 2004-06-13 Kenichi Handa <handa@m17n.org>
1458
1459 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
1460 (ccl-untranslated-to-ucs): Fix typo.
1461
1462 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
1463
1464 * progmodes/python.el (python-open-block-statement-p):
1465 Fix indentation after a block opening that contains a comment.
1466
1467 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
1468
1469 * bindings.el (completion-ignored-extensions): Add file extensions
1470 of Python byte-compiled files.
1471
1472 2004-06-12 Juri Linkov <juri@jurta.org>
1473
1474 * info.el (Info-goto-node): Add autoload.
1475 (Info-toc): Add substring-no-properties on Info file name.
1476 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
1477 (Info-mode-map): Bind L to Info-history, T to Info-toc.
1478
1479 2004-06-12 Kenichi Handa <handa@m17n.org>
1480
1481 * international/mule-cmds.el (set-language-environment):
1482 Load subst tables if necessary.
1483
1484 * international/mule.el (decode-char): Load subst tables if necessary.
1485 (encode-char): Likewise.
1486
1487 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
1488 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
1489 (utf-16le-decode-loop): Set r5 to -1 before loop.
1490 (utf-16be-decode-loop): Likewise.
1491 (ccl-decode-mule-utf-16le): Add EOF processing block.
1492 (ccl-decode-mule-utf-16be): Likewise.
1493 (ccl-decode-mule-utf-16le-with-signature): Likewise.
1494 (ccl-decode-mule-utf-16be-with-signature): Likewise.
1495 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
1496 (ccl-mule-utf-16-encode-untrans): New CCL.
1497 (utf-16-decode-to-ucs): Handle pre-read character.
1498 (utf-16le-encode-loop): Handle surrogate pair.
1499 (utf-16be-encode-loop): Likewise.
1500 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
1501 of utf-16le-encode-loop.
1502 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
1503 of utf-16be-encode-loop.
1504 (mule-utf-16-post-read-conversion):
1505 Call utf-8-post-read-conversion at first.
1506 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
1507 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
1508 Add post-read-conversion and pre-write-conversion.
1509
1510 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
1511 (utf-translate-cjk-unicode-range): New variable.
1512 (utf-translate-cjk-load-tables): New function.
1513 (utf-lookup-subst-table-for-decode): New function.
1514 (utf-lookup-subst-table-for-encode): New function.
1515 (utf-translate-cjk-mode): Init-value changed to t. Don't load
1516 tables here. Update safe-charsets of utf-* coding systems.
1517 (ccl-mule-utf-untrans): New CCL.
1518 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
1519 at end of each branch.
1520 (ccl-mule-utf-8-encode-untrans): New CCL.
1521 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
1522 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
1523 length of encoding. Don't return r0.
1524 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
1525 (utf-8-post-read-conversion): Narrow to region properly.
1526 If utf-translate-cjk-mode is on, load tables if necessary.
1527 Call utf-8-compose with hash-table arg if necessary.
1528 Call XXX-compose-region instead of XXX-post-read-convesion.
1529 (utf-8-pre-write-conversion): New function.
1530 (mule-utf-8): Include CJK charsets in safe-charsets if
1531 utf-translate-cjk-mode is on. Add pre-write-conversion.
1532
1533 * international/characters.el: Temporarily set
1534 utf-translate-cjk-mode to nil.
1535
1536 * language/devan-util.el (devanagari-compose-region):
1537 Add autoload cookie.
1538
1539 * international/ccl.el (ccl-dump-call): Fix printing the
1540 subroutine name.
1541
1542 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
1543
1544 * dired.el (dired-revert): If buffer is marked unmodified before
1545 reverting, keep it marked unmodified.
1546 Adapt to new conventions for commenting out code.
1547 (dired-make-relative): Adapt to new conventions for commenting out code.
1548
1549 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
1550
1551 * eshell/esh-module.el (eshell-load-defgroups):
1552 Bind `vc-handled-backends' to nil when opening files.
1553
1554 2004-06-11 Juanma Barranquero <lektu@terra.es>
1555
1556 * files.el (parse-colon-path, cd): Doc fixes (refer to
1557 `path-separator', not colon).
1558
1559 2004-06-10 Juanma Barranquero <lektu@terra.es>
1560
1561 * newcomment.el (comment-search-forward)
1562 (comment-search-backward): Fix typos in docstring.
1563 (comment-region): Doc fix.
1564
1565 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
1566
1567 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
1568 switch is no longer stored in `dired-switches-alist'.
1569
1570 * dired-aux.el (dired-insert-subdir): Do not store R switch in
1571 `dired-switches-alist'.
1572
1573 2004-06-10 Kim F. Storm <storm@cua.dk>
1574
1575 * pcvs.el (cvs-mode-diff-yesterday): New command.
1576
1577 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
1578
1579 2004-06-10 Juri Linkov <juri@jurta.org>
1580
1581 * emacs-lisp/edebug.el (edebug-eval-defun):
1582 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
1583 Fix docstring.
1584
1585 * simple.el (eval-expression-print-format): Don't print additional
1586 information on the first call to `eval-print-last-sexp'.
1587 (next-error-find-buffer): Fix punctuation.
1588 (killing) <defgroup>: Fix punctuation.
1589 (yank-excluded-properties): Change group from editing to killing.
1590
1591 * replace.el (perform-replace): Use `limit' to terminate the
1592 while-loop explicitly.
1593
1594 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1595
1596 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
1597 Use lc-*.xpm as prefix instead of *-locol.xpm.
1598
1599 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
1600 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
1601 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
1602 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
1603 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
1604 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
1605 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
1606 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
1607 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
1608 * toolbar/lc-up_arrow.xpm:
1609 Renamed from *-locol.xpm.
1610
1611 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
1612
1613 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
1614 include forms like &<str>; as valid url patterns.
1615
1616 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
1617
1618 * dired.el (dired-diff, dired-backup-diff)
1619 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
1620 (dired-do-chown, dired-do-touch, dired-do-print)
1621 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
1622 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
1623 (dired-create-directory, dired-do-copy, dired-do-symlink)
1624 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
1625 (dired-do-copy-regexp, dired-do-hardlink-regexp)
1626 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
1627 (dired-maybe-insert-subdir, dired-next-subdir)
1628 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
1629 (dired-kill-subdir, dired-tree-up, dired-tree-down)
1630 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
1631 (dired-run-shell-command, dired-query): Remove redundant,
1632 or incorrect, autoloads.
1633
1634 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
1635 does not end in a slash. Add optional argument KILL-ROOT.
1636 Update docstring.
1637 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
1638 (dired-query): Add autoloads.
1639
1640 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
1641
1642 * progmodes/compile.el (compilation-set-window-height):
1643 Rearrange the save-* functions because a buffer can have several current
1644 point in different windows.
1645 (compilation-error-regexp-alist-alist): Recognize {standard input}
1646 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
1647
1648 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1649
1650 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
1651 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
1652 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
1653 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
1654 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
1655 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
1656 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
1657 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
1658 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
1659 * toolbar/up_arrow-locol.xpm:
1660 New versions of icons that uses fewer colors.
1661
1662 * toolbar/tool-bar.el (tool-bar-local-item)
1663 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
1664 if display-color-cells is 256 or less.
1665
1666 2004-06-08 Kim F. Storm <storm@cua.dk>
1667
1668 * wid-edit.el (widget-specify-button): Use hand pointer rather
1669 than mouse-face as visible mouse-over effect.
1670
1671 2004-06-07 Karl Fogel <kfogel@red-bean.com>
1672
1673 * saveplace.el (save-place-alist-to-file): Bind `print-length'
1674 and `print-level' to nil when writing out `save-place-alist'.
1675 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
1676
1677 2004-06-07 Juanma Barranquero <lektu@terra.es>
1678
1679 * completion.el (completion-kill-region): Doc fix.
1680
1681 * format.el (format-insert-annotations)
1682 (format-annotate-location): Doc fixes.
1683 (format-subtract-regions): Make arguments match their use in docstring.
1684
1685 * simple.el (kill-region): Doc fix.
1686
1687 * subr.el (insert-buffer-substring-no-properties)
1688 (insert-buffer-substring-as-yank): Doc fixes.
1689
1690 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
1691
1692 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1693 Update docstring.
1694 (dired-reset-subdir-switches): New function.
1695
1696 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
1697 Limit scope of `buffer-read-only' binding.
1698
1699 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
1700
1701 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
1702 eshell-explicit-command-char.
1703
1704 2004-06-06 Juanma Barranquero <lektu@terra.es>
1705
1706 * help-fns.el (help-argument-name): Inherit from italic face only
1707 if the frame supports it.
1708
1709 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1710
1711 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
1712 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
1713 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
1714 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
1715 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
1716 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
1717 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
1718 New conversions from xpm files.
1719
1720 * toolbar/README: New file.
1721
1722 2004-06-06 Richard M. Stallman <rms@gnu.org>
1723
1724 * isearch.el (isearch-mode-map): Undo previous change.
1725
1726 2004-06-05 Juri Linkov <juri@jurta.org>
1727
1728 * bindings.el (debug-ignored-errors): Add regexps for history
1729 related messages. Remove $ from "No further undo information".
1730 Move Ediff's messages to ediff.el.
1731
1732 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
1733
1734 * cus-edit.el (custom-display): Add `min-colors'.
1735
1736 * custom.el (defface): Add `supports' to docstring.
1737
1738 * help-fns.el (help-argument-name): Add :group 'help.
1739
1740 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
1741
1742 * find-dired.el (find-ls-subdir-switches): New user option.
1743 (find-dired): No longer call `abbreviate-file-name' on DIR.
1744 Set `dired-subdir-switches' buffer-locally.
1745
1746 * locate.el: Merge the two `Commentary' sections.
1747 (locate-ls-subdir-switches): New user option.
1748 (locate): Update for other changes.
1749 (locate-mode-map): Restore Dired binding for mouse-2.
1750 Bind `locate-mouse-view-file' to M-mouse-2.
1751 Bind `l' to `locate-do-redisplay'.
1752 (locate-main-listing-line-p, locate-do-redisplay): New functions.
1753 (locate-mouse-view-file, locate-tags, locate-find-directory):
1754 Print message if used outside main listing.
1755 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
1756 Various changes to support inserted subdirectories.
1757 (locate-insert-header): Change header of *Locate* buffer.
1758
1759 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1760 Change interactive default switches.
1761 (dired-rename-subdir-2): Update `dired-switches-alist'.
1762 (dired-insert-subdir, dired-kill-subdir):
1763 Handle `dired-switches-alist'. Do not mark buffer modified.
1764 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
1765 (dired-insert-subdir-doinsert): Omit messages.
1766 Handle `dired-subdir-switches'.
1767 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
1768
1769 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
1770 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
1771 subdirs if -R switch is used for a subdir.
1772 (dired-mode): Set `dired-switches-alist'.
1773 (dired-build-subdir-alist): Only print number of directories in
1774 echo area when invoked interactively.
1775
1776 2004-06-05 Lars Hansen <larsh@math.ku.dk>
1777
1778 * dired-x.el (dired-omit-mode): Rename from
1779 dired-omit-files-p. Use define-minor-mode to define it.
1780 (dired-omit-files-p): Add as alias for dired-omit-mode.
1781 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
1782 dired-mark-omitted.
1783 (dired-mark-omitted): Add. Bind to M-O.
1784
1785 2004-06-05 Kenichi Handa <handa@m17n.org>
1786
1787 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
1788
1789 2004-06-05 Juanma Barranquero <lektu@terra.es>
1790
1791 * help-fns.el (help-argument-name): Reintroduce face.
1792 (help-default-arg-highlight): Use it, now that
1793 `face-differs-from-default-p' can be trusted.
1794
1795 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
1796
1797 * textmodes/table.el: Sentence commands added to Point Motion
1798 group; kill and backward-kill commands added to Extraction group.
1799
1800 2004-06-04 Mario Lang <mlang@delysid.org>
1801
1802 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
1803 systems appear to use mW, make the code handle this. Fix a
1804 division-by-zero bug while at it, and handle kernels with
1805 a slightly different layout in /proc/acpi.
1806
1807 2004-06-04 Karl Fogel <kfogel@red-bean.com>
1808
1809 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
1810 because the latter is a CL-ism. This fixes the bug reported by
1811 Shawn Boyette <mdxi@collapsar.net> in
1812 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
1813
1814 2004-06-04 Miles Bader <miles@gnu.org>
1815
1816 * faces.el (display-supports-face-attributes-p): Function moved to
1817 C code. Previously only the tty-related portion of this function
1818 was done in C; however the previous attempt to do a halfway-proper
1819 job for non-tty displays in lisp didn't work properly because of
1820 funny conditions during Emacs startup.
1821 (face-differs-from-default-p): Simplify, now that
1822 display-supports-face-attributes-p works properly on all display
1823 types. Remove :stipple from comparison; it doesn't really work
1824 in emacs anyway.
1825
1826 2004-06-04 Miles Bader <miles@gnu.org>
1827
1828 * faces.el (face-differs-from-default-p): Use a different
1829 implementation, so we can really check whether FACE displays
1830 differently or not.
1831
1832 2004-06-04 Miles Bader <miles@gnu.org>
1833
1834 * faces.el (display-supports-face-attributes-p): Implement a
1835 `different from default' check for non-tty displays.
1836
1837 2004-06-03 David Kastrup <dak@gnu.org>
1838
1839 * woman.el (woman-mapcan): More concise code.
1840 (woman-topic-all-completions, woman-topic-all-completions-1)
1841 (woman-topic-all-completions-merge): Replace by a simpler and
1842 much faster implementation based on O(n log n) sort/merge instead
1843 of the old O(n^2) behavior.
1844
1845 2004-06-03 Miles Bader <miles@gnu.org>
1846
1847 * subr.el (read-number): Use canonical format for default in prompt.
1848
1849 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
1850 Add regexp for " [...]" style defaults.
1851
1852 2004-06-02 Romain Francoise <romain@orebokech.com>
1853
1854 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
1855 groups: if the user asks for a hidden buffer, open the
1856 corresponding filter group to expose it.
1857
1858 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
1859 `ibuffer-jump-to-buffer'.
1860 (ibuffer-jump-offer-only-visible-buffers): New user option.
1861
1862 2004-06-02 Juanma Barranquero <lektu@terra.es>
1863
1864 * faces.el (frame-update-faces): Add empty docstring so the one
1865 for `ignore' doesn't show through.
1866
1867 * subr.el (process-kill-without-query): Remove spurious "\n" on
1868 obsolescence string.
1869 (focus-frame, unfocus-frame): Add obsolescence declaration and
1870 empty docstring.
1871
1872 * international/mule.el (register-char-codings): Make alias for
1873 `ignore'. Move docstring to obsolescence info and remove redundancy.
1874
1875 2004-06-02 Kim F. Storm <storm@cua.dk>
1876
1877 * frame.el (blink-cursor-start): Turn cursor off initially so blink
1878 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
1879
1880 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1881
1882 * comint.el (comint-replace-by-expanded-history-before-point):
1883 Obey `start' as the docstring says.
1884 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
1885 (comint-update-fence): Prevent font-lock from running unnecessarily.
1886 (comint-dynamic-list-completions): Use with-current-buffer.
1887
1888 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1889
1890 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
1891 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
1892 (bibtex-entry-update): Handle alternatives and optional fields.
1893 (bibtex-parse-entry): Bugfix, handle empty key.
1894
1895 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1896
1897 * vc-arch.el (vc-arch-state): Don't assume the file exists.
1898
1899 2004-05-31 Lars Hansen <larsh@math.ku.dk>
1900
1901 * desktop.el (desktop-save): Don't save minor modes without a
1902 known mode initialization function.
1903
1904 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
1905
1906 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
1907
1908 * autorevert.el: Update `Commentary' section.
1909
1910 2004-05-30 Juanma Barranquero <lektu@terra.es>
1911
1912 * dos-fns.el (convert-standard-filename):
1913 * files.el (convert-standard-filename):
1914 * w32-fns.el (convert-standard-filename):
1915 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
1916
1917 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
1918
1919 Sync with Tramp.
1920
1921 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
1922 (tramp-let-maybe): Move to an earlier spot in the file.
1923 Patch by Andreas Schwab.
1924
1925 2004-05-30 Andreas Schwab <schwab@suse.de>
1926
1927 * dired.el (dired-get-filename): Don't use dired-re-dot.
1928
1929 2004-05-30 Richard M. Stallman <rms@gnu.org>
1930
1931 * files.el (find-file): Doc fix.
1932
1933 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
1934
1935 2004-05-30 Nick Roberts <nickrob@gnu.org>
1936
1937 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
1938 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
1939 modeline of the locals buffer.
1940 (gdb-goto-breakpoint): Handle gdbmi.
1941 (gdb-get-frame-number): Change for gdbmi.
1942
1943 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
1944
1945 * files.el (file-remote-p): Apply file name handler for operation
1946 `file-remote-p'. It isn' a property any longer.
1947 (file-relative-name): `fh' and `fd' get the required value via
1948 `find-file-name-handler' already.
1949
1950 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
1951 (top): Remove setting of `file-remote-p' property for
1952 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
1953
1954 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
1955
1956 Version 2.0.41 of Tramp released.
1957
1958 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
1959 Throw away if process has died.
1960 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
1961 (tramp-out-of-band-prompt-regexp): Rename to
1962 `tramp-process-alive-regexp', because its usage is widen.
1963 (tramp-actions-copy-out-of-band): Apply it.
1964 (tramp-actions-before-shell, tramp-multi-actions):
1965 Add `tramp-action-process-alive' action.
1966 (tramp-action-process-alive): New defun.
1967 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
1968 Add entry for `file-remote-p'.
1969 (tramp-handle-file-remote-p): New defun.
1970 (top): Remove setting of `file-remote-p'. Don't set
1971 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
1972
1973 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1974 `file-remote-p'.
1975
1976 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
1977 counted for (last) line. [They should or they shouldn't? --Stef]
1978 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
1979
1980 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
1981
1982 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
1983 not really necessary but seems to keep the shell history smaller
1984 in some cases. It is no substitute for setting HISTFILE and
1985 HISTSIZE from tramp-open-connection-setup-interactive-shell,
1986 though. Suggested by Luc Teirlinck.
1987 (tramp-open-connection-setup-interactive-shell): Export variables
1988 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
1989 (tramp-set-process-query-on-exit-flag): New compat function.
1990 (tramp-open-connection-multi, tramp-open-connection-su)
1991 (tramp-open-connection-rsh, tramp-open-connection-telnet)
1992 (tramp-do-copy-or-rename-file-out-of-band): Use it.
1993 (tramp-let-maybe): New macro, let-binds a variable only if it
1994 isn't obsolete.
1995 (tramp-check-ls-commands, tramp-handle-expand-file-name)
1996 (tramp-handle-file-truename): Use it.
1997 (tramp-completion-file-name-regexp-unified): Avoid matching
1998 filenames starting with "/:" -- those are reserved for
1999 file-name-non-special.
2000
2001 * tramp-smb.el (tramp-smb-open-connection):
2002 Use tramp-set-process-query-on-exit-flag compat function.
2003
2004 2004-05-29 Richard M. Stallman <rms@gnu.org>
2005
2006 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
2007
2008 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
2009 (eval-last-sexp-print-value): Print char equivalent regardless
2010 of standard-output value.
2011
2012 * thumbs.el (thumbs-subst-char-in-string): Delete.
2013 (thumbs-thumbname): Use subst-char-in-string.
2014 (thumbs-resize-image): Use condition-case, not ignore-errors.
2015 (thumbs-kill-buffer): Likewise.
2016
2017 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
2018 (thumbs-mode): Make buffer read-only.
2019 (thumbs-make-thumb): Unconditionally accept an existing file.
2020 (thumbs-insert-thumb): Add thumb-image-file property to the image.
2021 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
2022 (thumbs-show-thumbs-list): Error if images not supported.
2023 (thumbs-save-current-image): Improve prompt string.
2024 (thumbs-mode-map): Define u, R, x.
2025 (thumbs-unmark): New command.
2026 (thumbs-emboss-image): Minor cleanup.
2027 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
2028 (thumbs-rename-images): New command.
2029 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
2030
2031 * thumbs.el (thumbs-current-image): New function.
2032 (thumbs-file-list, thumbs-file-alist): New functions.
2033 (thumbs-find-image): Delete arg L.
2034 Don't set up thumbs-fileL as buffer-local global var.
2035 (thumbs-find-image-at-point): Use thumbs-current-image.
2036 (thumbs-set-image-at-point-to-root-window): Likewise.
2037 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
2038 Record and warn about errors. Update thumbs-markedL for deletions.
2039 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
2040 (thumbs-redraw-buffer): Use thumbs-file-list.
2041 (thumbs-mark): Use thumbs-current-image.
2042 (thumbs-show-name): Use thumbs-current-image.
2043
2044 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
2045 and imenu--last-menubar-index-alist.
2046
2047 * subr.el (with-selected-window): Undo previous change.
2048
2049 2004-05-29 John Paul Wallington <jpw@gnu.org>
2050
2051 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
2052 (thumbs-mouse-find-image): New command.
2053 (thumbs-mode-map): Bind it to mouse-2.
2054 (thumbs-mode): Make mode-class special.
2055 (thumbs-view-image-mode): Likewise.
2056
2057 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
2058
2059 * flymake.el: New file.
2060
2061 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
2062
2063 * files.el (find-file-noselect-1): Do not bind
2064 `inhibit-read-only' to t during execution of
2065 `find-file-not-found-functions'.
2066
2067 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2068
2069 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
2070 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
2071
2072 2004-05-28 Juri Linkov <juri@jurta.org>
2073
2074 * simple.el (eval-expression-print-format): New fun.
2075
2076 * simple.el (eval-expression):
2077 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
2078 * emacs-lisp/edebug.el (edebug-compute-previous-result)
2079 (edebug-eval-expression): Print additionally the value returned by
2080 `eval-expression-print-format'.
2081
2082 * emacs-lisp/lisp.el (insert-pair-alist): New var.
2083 (insert-pair): Make arguments optional. Find character pair
2084 from `insert-pair-alist' according to the last input event.
2085 (insert-parentheses): Make arguments optional.
2086 (raise-sexp, delete-pair): New funs.
2087
2088 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
2089 (emacs-lisp-mode-map, lisp-interaction-mode-map):
2090 Bind C-M-q to `indent-pp-sexp'.
2091
2092 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
2093 `pp-to-string' modified to be able to format text with newlines.
2094 (pp-to-string): Move the buffer-formatting part of the code to
2095 `pp-buffer'. Call `pp-buffer'.
2096
2097 * info.el (Info-desktop-buffer-misc-data): Don't save information
2098 about virtual files.
2099 (Info-restore-desktop-buffer): Restore Info buffers in prepared
2100 buffers with names obtained from the desktop file instead of the
2101 default *info* buffer.
2102
2103 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2104
2105 * subr.el (with-selected-window): Only save/restore the selected window.
2106
2107 * progmodes/compile.el (compilation-error-regexp-alist):
2108 Use expand-file-name and data-directory.
2109
2110 * progmodes/grep.el (grep-tree): Rework previous fix.
2111
2112 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
2113 after the user marked text with the mouse.
2114
2115 * startup.el (command-line): Keep the first regexp of
2116 auto-save-file-name-transforms intact.
2117
2118 2004-05-28 Juanma Barranquero <lektu@terra.es>
2119
2120 * cus-edit.el (customize-face, customize-face-other-window)
2121 (custom-face-edit-delete): Make arguments match their use in
2122 docstring.
2123 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
2124 docstring.
2125
2126 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
2127 not `cvs-butlast'.
2128
2129 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
2130 `nbutlast' are in subr.el).
2131
2132 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
2133 (set-w32-system-coding-system): Doc fixes.
2134
2135 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
2136 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
2137 Make arguments match their use in docstring.
2138 (artist-draw-region-trim-line-endings)
2139 (artist-mouse-choose-operation): Fix typo in docstring.
2140 (artist-key-set-point-common): Doc fix.
2141
2142 2004-05-28 Simon Josefsson <jas@extundo.com>
2143
2144 * mail/smtpmail.el (smtpmail-open-stream):
2145 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
2146
2147 2004-05-26 Simon Josefsson <jas@extundo.com>
2148
2149 * starttls.el: Merge with my GNUTLS based starttls.el.
2150 (starttls-gnutls-program, starttls-use-gnutls)
2151 (starttls-extra-arguments, starttls-process-connection-type)
2152 (starttls-connect, starttls-failure, starttls-success): New variables.
2153 (starttls-program, starttls-extra-args): Doc fix.
2154 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
2155 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
2156 and pass on to corresponding *-gnutls function if it is set.
2157
2158 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
2159
2160 * autorevert.el (auto-revert-handler): Disable auto-reverting of
2161 remote files.
2162
2163 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
2164
2165 * files.el (file-name-non-special): There are more operations
2166 which need handling: `find-backup-file-name',
2167 `insert-file-contents', `verify-visited-file-modtime',
2168 `write-region'. Rename t value of method to `add'. Add new
2169 methods `quote' and `unquote-then-quote' to file-arg-indices.
2170
2171 2004-05-25 Juri Linkov <juri@jurta.org>
2172
2173 * info.el (Info-toc): Call Info-mode on intermediate buffer.
2174 (Info-index-nodes): Enclose code in condition-case to catch errors.
2175 (Info-index-node): Don't search all index nodes if request is only
2176 for the current node and file is not in the cache of index nodes.
2177 (Info-mode-map): Bind Info-copy-current-node-name to `w'
2178 for consistency with dired-copy-filename-as-kill.
2179 Bind `S' to Info-search-case-sensitively.
2180 (Info-copy-current-node-name): New arg. With zero prefix arg put
2181 the name inside a function call to `info'. Display copied text in
2182 the echo area.
2183
2184 2004-05-25 Sam Steingold <sds@gnu.org>
2185
2186 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
2187 strip the package prefix from the symbol name, if any.
2188 Make it the `find-tag-default-function' for `lisp-mode'.
2189
2190 2004-05-25 John Paul Wallington <jpw@gnu.org>
2191
2192 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
2193 instead of obsolete `process-kill-without-query'.
2194
2195 * textmodes/texinfmt.el (texinfo-indexvar-alist):
2196 Declare as variable, not constant.
2197
2198 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
2199
2200 * files.el (find-file-noselect-1): Fix bug introduced by
2201 Revision 1.694. As a side effect, `inhibit-read-only'
2202 is again, by default, t during execution of
2203 `find-file-not-found-functions'.
2204 (insert-directory): Check that lines were really inserted by
2205 the --dired switch, before erasing them.
2206
2207 2004-05-24 Nick Roberts <nickrob@gnu.org>
2208
2209 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
2210 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
2211 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
2212 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
2213 gud-minor-mode (gdbmi).
2214
2215 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2216
2217 * net/browse-url.el (browse-url-interactive-arg): Enable user to
2218 explicitly select the text to be taken as URL.
2219
2220 2004-05-23 Juri Linkov <juri@jurta.org>
2221
2222 * info.el (Info-index-nodes): New var and fun.
2223 (Info-goto-index, Info-index, info-apropos)
2224 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
2225 (Info-index): Fix docstring. Store and restore Info-history-list.
2226 (Info-complete-nodes): New var.
2227 (Info-complete-menu-item): Use it.
2228 (Info-index-node): New fun.
2229 (Info-final-node, Info-forward-node, Info-backward-node)
2230 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
2231 Use Info-index-node.
2232 (Info-extract-menu-item, Info-extract-menu-counting): Set second
2233 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
2234 (Info-find-node-2): If a node with period in its name not found,
2235 try to find a node without the name part after period.
2236 (Info-select-node): Call Info-fontify-node only if
2237 Info-fontify-maximum-menu-size is not nil.
2238 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
2239 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
2240 Preserve Info-history-list.
2241 (Info-toc): Set Info-current-file.
2242 (Info-build-toc): Move point to the beginning of the buffer.
2243 Add main-file variable.
2244 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
2245 Use backslashed representation of the control character ^_.
2246
2247 * textmodes/texinfmt.el (texinfo-print-index): Print index line
2248 numbers in the new Texinfo 4.7 format.
2249
2250 * add-log.el (change-log-font-lock-keywords): Remove `:' from
2251 regexps for function and variable names.
2252
2253 * descr-text.el (describe-property-list): Add [show] button for
2254 `syntax-table' property with action to pp to a separate buffer.
2255 (describe-char): Replace search-forward by re-search-forward with
2256 whitespace regexp after "character:" to not fail in too narrow windows.
2257
2258 * simple.el (next-error-find-buffer): Add a rule to return
2259 next-error capable buffer if one window on the selected frame
2260 displays such buffer.
2261
2262 2004-05-23 Nick Roberts <nickrob@gnu.org>
2263
2264 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
2265 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
2266 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
2267 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
2268 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
2269 Handle new value for gud-minor-mode (gdbmi).
2270 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
2271 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
2272 Change from local to global gdb variable set.
2273 (gdb-ann3): Initialise above gdb variable set.
2274 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
2275 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
2276 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
2277 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
2278 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
2279 (gdb-info-locals-handler, gdb-invalidate-assembler)
2280 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
2281 set as global variables.
2282 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
2283 Handle gdbmi.
2284 (gdb-info-breakpoints-custom): Fix regexp.
2285 (def-gdb-var): Delete.
2286
2287 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
2288 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
2289 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
2290 a new mode. The file (gdb-mi.el) for this mode will be included
2291 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
2292 primary interface.
2293
2294 2004-05-23 Jesper Harder <harder@ifa.au.dk>
2295
2296 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
2297 interpreted as a directory.
2298
2299 2004-05-22 Richard M. Stallman <rms@gnu.org>
2300
2301 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
2302 as a close quote.
2303
2304 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
2305
2306 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
2307 Use assoc-string, not assoc-ignore-case.
2308
2309 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
2310
2311 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
2312 If moving back then fwd gets a defun that ends before point,
2313 try again moving fwd then back.
2314
2315 * files.el (file-name-non-special): Allow t in file-arg-indices
2316 to mean requote the return value. Use `identity' as an element
2317 rather than as the whole value.
2318
2319 * gs.el (gs-options): Add -dSAFER. Mark it risky.
2320
2321 2004-05-22 Juanma Barranquero <lektu@terra.es>
2322
2323 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
2324 `help-make-usage'.
2325 (help-highlight-arguments): Skip function name before searching
2326 for arguments.
2327
2328 2004-05-21 Juanma Barranquero <lektu@terra.es>
2329
2330 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
2331 Don't mention in the docstring these arguments meant for
2332 internal (recursive) use only.
2333 (allout-char-spec): Comment out (it's not implemented).
2334 (allout-old-expose-topic, allout-exposure): Fix docstring and add
2335 obsolescence declaration.
2336 (allout-flatten-exposed-to-buffer)
2337 (allout-indented-exposed-to-buffer): Fix typos in docstring.
2338 (my-mark-marker): Doc fix.
2339 (produce-allout-mode-map, allout-sibling-index)
2340 (allout-isearch-expose, allout-distinctive-bullet)
2341 (allout-open-topic, allout-reindent-body)
2342 (allout-rebullet-heading, allout-process-exposed)
2343 (allout-insert-listified, allout-latex-verb-quote)
2344 (allout-insert-latex-header, allout-insert-latex-trailer):
2345 Make arguments match their use in docstring.
2346 (allout-primary-bullet, allout-old-style-prefixes)
2347 (allout-inhibit-protection, allout-init, allout-mode)
2348 (allout-before-change-protect, allout-flag-region):
2349 Use "Emacs" instead of "emacs" in docstrings.
2350
2351 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
2352
2353 * international/characters.el: Modify syntax of more characters.
2354
2355 2004-05-21 Masatake YAMATO <jet@gyve.org>
2356
2357 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
2358 (etags-tags-completion-table): Show parsing progress.
2359
2360 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
2361
2362 * locate.el (locate-prompt-for-command): Shorten first line of
2363 docstring.
2364 (locate-mode): Expand docstring and include keymap summary.
2365
2366 * files.el (find-file-noselect-1): Limit the scope of the
2367 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
2368 is, by default, nil during the execution of
2369 `find-file-not-found-functions' and `find-file-hook'.
2370
2371 2004-05-20 Michael Mauger <mmaug@yahoo.com>
2372
2373 * facemenu.el (facemenu-color-name-equal): New function.
2374 (list-colors-display): Use it to compare colors instead of
2375 facemenu-color-equal.
2376
2377 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
2378
2379 * compare-w.el (compare-windows-face): Use min-colors instead of
2380 checking for tty or pc types.
2381
2382 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2383
2384 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
2385 (completion-setup-function): Use with-current-buffer.
2386 Properly save excursion. Simplify.
2387 Don't assume there is necessarily a `mouse-face' property somewhere.
2388
2389 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
2390
2391 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
2392
2393 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
2394 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
2395 Use with-current-buffer.
2396 (byte-goto-log-buffer): Delete.
2397 (byte-compile-log-file): Call compilation-forget-errors.
2398
2399 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2400
2401 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
2402 output messages into the search result.
2403
2404 2004-05-19 Masatake YAMATO <jet@gyve.org>
2405
2406 * wid-edit.el (widget-radio-button-notify): Revert my last
2407 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
2408
2409 2004-05-19 Kenichi Handa <handa@m17n.org>
2410
2411 * international/characters.el: Fix syntax (open/close) of CJK chars.
2412
2413 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
2414
2415 * help-mode.el (help-go-back): Don't depend on position of back button.
2416
2417 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2418
2419 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
2420 files files don't contain an accidental additional /.
2421
2422 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
2423 in source buffer.
2424
2425 2004-05-18 Masatake YAMATO <jet@gyve.org>
2426
2427 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
2428 to widget-apply. :action method assumes 2 arguments, not 3.
2429
2430 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
2431
2432 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
2433 New constants.
2434 (hs-special-modes-alist): Add an f90-mode entry.
2435
2436 2004-05-17 Sam Steingold <sds@gnu.org>
2437
2438 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
2439 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
2440
2441 2004-05-16 Kim F. Storm <storm@cua.dk>
2442
2443 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
2444
2445 2004-05-15 John Wiegley <johnw@newartisans.com>
2446
2447 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
2448 (eshell-output-object-to-target): Improve output speed 20% by not
2449 calling `eshell-stringify' if something is already known to be a string.
2450
2451 2004-05-15 Alex Ott <ott@jet.msk.su>
2452
2453 * textmodes/ispell.el (ispell-local-dictionary-alist):
2454 Add windows-1251 to the choice of coding systems.
2455 (ispell-dictionary-alist-6): Add support for "russianw.aff",
2456 encoded in cp1251.
2457
2458 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
2459
2460 * progmodes/compile.el (compilation-warning-face)
2461 (compilation-info-face): Use min-colors.
2462
2463 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2464
2465 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
2466 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
2467 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
2468 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
2469 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
2470 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
2471 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
2472 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
2473 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
2474 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
2475 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
2476 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
2477 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
2478 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
2479
2480 2004-05-15 Kim F. Storm <storm@cua.dk>
2481
2482 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
2483 Use it to set triggered-p element of timer.
2484 (timer-event-handler): Set triggered-p element non-nil while running
2485 the timer function.
2486
2487 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2488
2489 * descr-text.el (describe-char-unicode-data)
2490 (describe-char-unicodedata-file): Re-enable the unicode code now that
2491 the licensing issues have been cleared in the unicode-4 license.
2492 (describe-text-properties-1): Remove unused `overlay' var.
2493 (describe-char): Remove unused var `buffer'.
2494
2495 2004-05-14 David Ponce <david@dponce.com>
2496
2497 * tree-widget.el: New file.
2498
2499 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
2500
2501 * language/european.el ("Brazilian Portuguese"): Add support for
2502 Brazilian Portuguese.
2503
2504 2004-05-13 John Wiegley <johnw@newartisans.com>
2505
2506 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
2507 `recentf-mode' if this variable has been customized to t.
2508
2509 * eshell/esh-test.el (eshell-test): Call the function
2510 `emacs-version' rather than trying to build a custom version string.
2511
2512 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2513
2514 * net/telnet.el (telnet-mode): Use define-derived-mode.
2515 Don't modify the global value of comint-prompt-regexp.
2516
2517 2004-05-13 John Paul Wallington <jpw@gnu.org>
2518
2519 * version.el (emacs-version): Check for `gtk' feature before
2520 `x-toolkit' feature.
2521
2522 2004-05-13 Juanma Barranquero <lektu@terra.es>
2523
2524 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
2525 arguments in the docstring, they're used only in recursive calls.
2526
2527 * help-fns.el (help-arg-highlighting-function)
2528 (help-argument-name): Delete.
2529 (help-default-arg-highlight): New function.
2530 (help-do-arg-highlighting): Use it.
2531
2532 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
2533
2534 * calendar/appt.el (appt-disp-window):
2535 Use `calendar-set-mode-line' for a centered mode-line.
2536
2537 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2538
2539 * calendar/appt.el (appt-disp-window): Do not split window
2540 excessively when `split-height-threshold' is low.
2541
2542 2004-05-12 Nick Roberts <nickrob@gnu.org>
2543
2544 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
2545 kill-buffer-hook here and make it local.
2546 (gud-kill-buffer-hook): Use kill-process for a sure kill.
2547
2548 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
2549
2550 * progmodes/compile.el (compilation-set-window-height):
2551 Use save-excursion to protect against misplaced marker.
2552
2553 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2554
2555 * custom.el (defface): Document that type can have value gtk.
2556
2557 * faces.el (face-spec-set-match-display): Handle type gtk in display.
2558
2559 2004-05-12 Kenichi Handa <handa@m17n.org>
2560
2561 * descr-text.el: Require quail at comile time.
2562 (describe-char): If an input method is on and it supports the
2563 character, show how to input it.
2564
2565 * international/quail.el (quail-install-decode-map): Accept a
2566 char-table whose subtype is `quail-decode-map'.
2567 (quail-store-decode-map-key, quail-gen-decode-map1)
2568 (quail-gen-decode-map, quail-find-key1, quail-find-key)
2569 (quail-show-key): New functions.
2570
2571 2004-05-12 Juanma Barranquero <lektu@terra.es>
2572
2573 * generic.el (define-generic-mode): Remove redundant arglist info.
2574
2575 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
2576 Make arguments match their use in docstring.
2577 (help-arg-highlighting-function): New variable.
2578 (help-argument-name): Mention it in the docstring.
2579 (help-do-arg-highlight): Use it. Expand regexp to accept also
2580 ARG-xxx and xxx-ARG references.
2581
2582 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2583
2584 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
2585 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
2586 and "mailto:addr1?to=addr2" equal.
2587
2588 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
2589
2590 * man.el (Man-getpage-in-background): Use shell-file-name
2591 and shell-command-switch variables instead of hard-coded values.
2592
2593 2004-05-11 Eli Zaretskii <eliz@gnu.org>
2594
2595 * iimage.el: New file.
2596
2597 2004-05-11 Juanma Barranquero <lektu@terra.es>
2598
2599 * custom.el (custom-initialize-default, defcustom):
2600 Fix typo in docstring.
2601
2602 * files.el (set-visited-file-name, file-expand-wildcards):
2603 Fix docstring.
2604
2605 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2606
2607 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
2608
2609 * subr.el (eventp): Be more discriminating with integers.
2610
2611 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2612
2613 * progmodes/compile.el (compile): Add universal prefix arg.
2614 (compilation-error-regexp-alist-alist): Add edg patterns.
2615
2616 2004-05-10 Sam Steingold <sds@gnu.org>
2617
2618 * textmodes/ispell.el (ispell-message):
2619 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
2620
2621 2004-05-10 Dave Love <fx@gnu.org>
2622
2623 * progmodes/python.el (help-buffer): Autoload when compiling.
2624 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
2625 (run-python): Prepend to any existing PYTHONPATH.
2626
2627 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
2628
2629 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
2630 for pending breakpoints.
2631
2632 2004-05-10 Richard M. Stallman <rms@gnu.org>
2633
2634 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
2635 directly without calling any functions in Rmail.
2636 (unrmail-unprune): Function deleted.
2637
2638 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2639
2640 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
2641 C-c C-z binding.
2642
2643 2004-05-10 Kenichi Handa <handa@m17n.org>
2644
2645 * descr-text.el (describe-char): Fix previous change. Don't make
2646 a unibyte character to multibyte in the *Help* buffer.
2647
2648 2004-05-10 Miles Bader <miles@gnu.org>
2649
2650 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
2651 buffer an error if the debugger process is actually running.
2652
2653 2004-05-10 Juanma Barranquero <lektu@terra.es>
2654
2655 * help-fns.el (help-argument-name): Default to italic.
2656 (help-highlight-arguments): Return always (usage . doc), even when
2657 usage is nil.
2658
2659 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
2660 (define-ibuffer-filter): Add usage info.
2661 (define-ibuffer-op): Add usage info (but CL-style defaults for
2662 keyword args are not shown).
2663
2664 * subr.el (remove-overlays, read-passwd): Fix docstring.
2665 (start-process-shell-command): Fix docstring. Put usage info in a
2666 format usable by `describe-function'.
2667 (open-network-stream, open-network-stream-nowait)
2668 (open-network-stream-server): Fix docstring.
2669
2670 2004-05-09 Jason Rumney <jasonr@gnu.org>
2671
2672 * international/code-pages (cp932, cp936, cp949, c950): Remove.
2673 Only define cp125* if windows-125* is already defined.
2674
2675 * language/korean.el (cp949): Add alias.
2676
2677 * language/chinese.el (cp936, cp950): Add aliases.
2678
2679 * language/japanese.el (cp932): Add alias.
2680
2681 * term/w32-win.el: Require code-pages.
2682
2683 * international/mule-cmds.el (set-locale-environment):
2684 On MS-Windows use ansi code-page for default coding-systems.
2685 Set up paper sizes for Windows 3 letter languages.
2686
2687 * international/code-pages.el (cp932, cp936, cp949, cp950):
2688 Add aliases. Also add cp125* if not already defined.
2689
2690 2004-05-09 Juanma Barranquero <lektu@terra.es>
2691
2692 * help-fns.el (help-highlight-arguments): Don't try to highlight
2693 missing or autoloaded arglists. Accept structured arguments, like
2694 the first ones of `do' and `flet'.
2695
2696 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
2697 (cvs-get-marked): Remove redundant arglist info.
2698
2699 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
2700 Don't use CL-style default args.
2701
2702 2004-05-08 Andreas Schwab <schwab@suse.de>
2703
2704 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
2705
2706 * international/subst-ksc.el: Fix references to utf-translate-cjk
2707 into utf-translate-cjk-mode.
2708 * international/subst-big5.el: Likewise.
2709 * international/subst-gb2312.el: Likewise.
2710 * international/subst-jis.el: Likewise.
2711 * international/utf-16.el: Likewise.
2712 * international/utf-8.el: Likewise.
2713
2714 2004-05-08 John Wiegley <johnw@newartisans.com>
2715
2716 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
2717 "virtual buffers" (off by default), which makes it possible to
2718 switch to the "virtual" buffers of recently visited files. When a
2719 buffer name search fails, and this option is on, iswitchb will
2720 look at the list of recently visited files, and permit matching
2721 against those names. When the user hits RET on a match, it will
2722 revisit that file.
2723 (iswitchb-read-buffer): Add two optional arguments, which makes
2724 isearchb.el possible.
2725 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
2726 (iswitchb-next-match): Add support for virtual buffers.
2727
2728 * isearchb.el: This module extends iswitchb to provide "as you
2729 type" buffer selection.
2730
2731 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
2732 Ignore the read-only property when flyspell highlighting is on.
2733 Not ignoring it leads to a series of confusing errors.
2734 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
2735 but also make sure to call flyspell-incorrect-hook.
2736 (flyspell-maybe-correct-transposition): Perform transposition test
2737 by bit twiddling a string, rather than using a temp buffer.
2738 (flyspell-maybe-correct-doubling): Use a string rather than a temp
2739 buffer. This is also the original version of the code, which
2740 could not be checked in before due to a previous lack of
2741 assignment papers. This version has seen heavy usage on my system
2742 for several years now.
2743
2744 * calendar/cal-bahai.el: New file, which adds support for the
2745 Baha'i calendar to Emacs. This calendar is based on a solar year
2746 of 19 months of 19 days, with 4 intercalary days. Each year
2747 begins on March 21, with the calendar starting in 1844.
2748
2749 * calendar/cal-menu.el, calendar/calendar.el,
2750 calendar/diary-lib.el, calendar/holidays.el: Added support for
2751 using cal-bahai.el.
2752
2753 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
2754 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
2755 function can be used outside of eshell buffers.
2756 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
2757
2758 2004-05-08 Juanma Barranquero <lektu@terra.es>
2759
2760 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
2761 word constituent so FOO-ARG is not recognized as an arg.
2762 (help-highlight-arguments): Don't skip lists in mandatory arguments.
2763
2764 * simple.el (next-error): Fix typo in docstring.
2765 (open-line): Make argument names match their use in docstring.
2766 (split-line): Fix docstring.
2767
2768 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
2769 usable by `describe-function'.
2770 (gensym, gentemp, typep, ignore-errors): Make argument names match
2771 their use in docstring.
2772
2773 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
2774 argument to `help-setup-xref'.
2775
2776 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
2777
2778 Version 2.0.40 of Tramp released.
2779
2780 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
2781 Use symbol-function to invoke functions only known on some Emacs
2782 flavors. This avoids byte-compiler warnings. Reported by Kevin
2783 Scaldeferri <kevin@scaldeferri.com>.
2784 (tramp-do-copy-or-rename-file-via-buffer): Rename from
2785 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
2786 consistent with the other tramp-do-* functions.
2787 (tramp-do-copy-or-rename-file): Calls adjusted.
2788 (tramp-process-initial-commands): Avoid liveness check on shell --
2789 we know that it must be alive since we're opening a connection at
2790 this moment.
2791 (tramp-last-cmd): New internal variable.
2792 (tramp-process-echoes): New tunable.
2793 (tramp-send-command): Set tramp-last-cmd.
2794 (tramp-wait-for-output): Delete echo, if applicable.
2795 (tramp-read-passwd): Construct the key for the password cache in a
2796 way that works for multi methods, too.
2797 (tramp-bug): Add backup-directory-alist and
2798 bkup-backup-directory-info to bug reports, with Tramp counterparts.
2799
2800 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
2801
2802 * net/tramp*.el: Suppress byte-compiler warnings where possible.
2803
2804 * net/tramp.el (tramp-out-of-band-prompt-regexp)
2805 (tramp-actions-copy-out-of-band): New defcustoms.
2806 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
2807 used instead of a synchronous one. Allows password entering.
2808 (tramp-action-out-of-band): New defun.
2809 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
2810 Remove restriction with password from doc string.
2811 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
2812 `tramp-out-of-band-prompt-regexp',
2813 `tramp-actions-copy-out-of-band', `password-cache' and
2814 `password-cache-expiry'.
2815 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
2816 password caching.
2817 (tramp-touch): FILE can be a local file, too.
2818 (TODO): Remove items done.
2819 (tramp-handle-insert-directory): Properly quote file name also if
2820 not full-directory-p. Handle wildcard case. Reported by Andreas
2821 Schwab <schwab@suse.de>.
2822 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
2823 new file.
2824 (tramp-handle-file-local-copy, tramp-handle-write-region):
2825 The permissions of the temporary file are set if filename exists.
2826 Reported by Ted Stern <stern@cray.com>.
2827 (tramp-backup-directory-alist)
2828 (tramp-bkup-backup-directory-info): New defcustoms.
2829 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
2830 (tramp-handle-find-backup-file-name): New function.
2831 Implements Tramp's find-backup-file-name.
2832
2833 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
2834 for `find-backup-file-name'.
2835
2836 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
2837 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2838
2839 2004-05-07 Lars Hansen <larsh@math.ku.dk>
2840
2841 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
2842
2843 2004-05-07 Juanma Barranquero <lektu@terra.es>
2844
2845 * subr.el (lambda): Add arglist description to docstring.
2846 (declare): Fix typo in docstring.
2847 (open-network-stream): Fix docstring.
2848 (process-kill-without-query): Fix docstring and add obsolescence info.
2849 (last, butlast, nbutlast): Make arguments match their use in docstring.
2850 (insert-buffer-substring-no-properties): Likewise.
2851 (insert-buffer-substring-as-yank): Likewise.
2852 (split-string): Fix docstring.
2853
2854 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2855 Make argument names match their use in docstring.
2856
2857 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
2858
2859 2004-05-06 Nick Roberts <nickrob@gnu.org>
2860
2861 * progmodes/gdb-ui.el: Improve/extend documentation strings.
2862 Fit first sentence on one line for apropos-command.
2863
2864 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2865
2866 Changes largely merged in from Dave Love's code.
2867 * progmodes/python.el: Doc fixes.
2868 (python-mode-map): Add python-complete-symbol.
2869 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
2870 (python-comment-indent, python-complete-symbol)
2871 (python-symbol-completions, python-partial-symbol)
2872 (python-try-complete): New.
2873 (python-indent-line): Remove optional arg. Use python-block-end-p.
2874 (python-check): Bind compilation-error-regexp-alist.
2875 (inferior-python-mode): Use rx. Move keybindings to top level.
2876 Set comint-input-filter.
2877 (python-preoutput-filter): Use rx.
2878 (python-input-filter): Re-introduce.
2879 (python-proc): Start new process if necessary.
2880 Check python-buffer non-nil.
2881 (view-return-to-alist): Defvar.
2882 (python-send-receive): New.
2883 (python-eldoc-function): Use it.
2884 (python-mode-running): Don't defvar.
2885 (python-mode): Set comment-indent-function.
2886 Maybe update hippie-expand-try-functions-list.
2887 (python-indentation-levels): Initialize differently.
2888 (python-block-end-p): New.
2889 (python-indent-line): Use it.
2890 (python-compilation-regexp-alist): Augment.
2891 (run-python): Import `emacs' module to Python rather than loading
2892 code directly. Set python-buffer differently.
2893 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
2894 Use python-proc.
2895 (python-send-command): Go to end of comint buffer.
2896 (python-load-file): Use python-proc, emacs.eimport.
2897 (python-describe-symbol): Simplify interactive form.
2898 Use emacs.help. Do use temp-buffer-show-hook.
2899 Call print-help-return-message.
2900 (hippie-exp): Require when compiling.
2901 (python-preoutput-continuation): Use rx.
2902
2903 * diff-mode.el (diff-make-unified): Fix regexp.
2904
2905 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
2906
2907 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
2908 filter groups from the buffer when rebuilding the Ibuffer buffer
2909 and `ibuffer-show-empty-filter-groups' is nil.
2910
2911 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2912
2913 * ps-print.el (ps-print-quote): Call ps-value-string.
2914 (ps-setup): Call ps-comment-string.
2915 (ps-value-string, ps-comment-string): New funs.
2916
2917 2004-05-06 Juanma Barranquero <lektu@terra.es>
2918
2919 * ehelp.el (electric-help-command-loop): Check whether the last
2920 character is visible, not (point-max).
2921
2922 * help-fns.el (help-argument-name): Default to bold; don't inherit
2923 from font-lock-variable-name-face.
2924 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
2925
2926 2004-05-05 Kenichi Handa <handa@m17n.org>
2927
2928 * descr-text.el (describe-char): Copy the character with text
2929 properties and overlays into the first line, and call
2930 describe-text-properties on it.
2931
2932 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
2933
2934 * iswitchb.el (iswitchb-global-map): Fix typo.
2935 Remove unwanted ###autoloads from source file.
2936
2937 2004-05-05 Lars Hansen <larsh@math.ku.dk>
2938
2939 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
2940 in run-hooks. Use substitute-command-keys in message.
2941 (wdired-abort-changes): Add message.
2942
2943 2004-05-03 Michael Mauger <mmaug@yahoo.com>
2944
2945 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
2946 (sql-emacs20-p): Remove.
2947 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
2948 (sql-builtin-face, sql-doc-face): Remove.
2949 (sql-mode-ansi-font-lock-keywords)
2950 (sql-mode-oracle-font-lock-keywords)
2951 (sql-mode-postgres-font-lock-keywords)
2952 (sql-mode-linter-font-lock-keywords)
2953 (sql-mode-ms-font-lock-keywords)
2954 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
2955 (sql-product-font-lock): Fix font-lock reset when font rules change.
2956 (sql-highlight-product): Remove incorrect font-lock reset logic.
2957
2958 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
2959
2960 * ses.el (ses-set-parameter): Fix typo.
2961
2962 2004-05-04 Kim F. Storm <storm@cua.dk>
2963
2964 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
2965 Must expand directory for completion to work; and don't mess with
2966 process-environment.
2967 (ido-read-file-name): If command has ido property, don't use ido
2968 if value is ignore, or read as directory if value is dir.
2969 Set ido ignore property for dired-do-rename command.
2970
2971 2004-05-04 Juanma Barranquero <lektu@terra.es>
2972
2973 * ehelp.el (electric-help-command-loop, electric-help-undefined)
2974 (electric-help-help): Check against unmapped commands.
2975
2976 * help-fns.el (help-argument-name): New face, inheriting from
2977 font-lock-variable-name-face, to highlight function arguments in
2978 `describe-function' and `describe-key'.
2979 (help-do-arg-highlight): Auxiliary function to highlight a given
2980 list of arguments in a string.
2981 (help-highlight-arguments): Highlight the function arguments and
2982 all uses of them in the docstring.
2983 (describe-function-1): Use it. Do docstring output via `insert',
2984 not 'princ', so text attributes are preserved.
2985
2986 * winner.el (winner-mode-map): Move `winner-undo' and
2987 `winner-redo' to C-c <left> and C-c <right>, respectively (the
2988 previous bindings conflict with `prev-buffer', `next-buffer').
2989
2990 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2991
2992 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
2993 (bibtex-entry-update): New command bound to C-c C-u.
2994 (bibtex-text-in-string): Fix regexp.
2995 (bibtex-assoc-of-regexp): Remove.
2996 (bibtex-progress-message): Fix docstring.
2997 (bibtex-inside-field): Use if.
2998 (bibtex-assoc-regexp): New function.
2999 (bibtex-format-entry): Make code more robust so that it formats
3000 also old entries.
3001 (bibtex-autokey-demangle-title): Merge with obsolete function
3002 bibtex-assoc-of-regexp.
3003 (bibtex-field-list): New function.
3004 (bibtex-entry): Use bibtex-field-list.
3005 (bibtex-parse-entry): Fix docstring.
3006 (bibtex-print-help-message): Use bibtex-field-list.
3007 (bibtex-make-field): Use bibtex-field-list.
3008 (bibtex-entry-index): Bugfix. Return crossref key if required.
3009 (bibtex-lessp): Fix docstring.
3010
3011 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
3012
3013 * select.el (xselect-convert-to-string): Move comment to intended line.
3014
3015 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3016
3017 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
3018 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
3019
3020 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3021
3022 * term/x-win.el (x-clipboard-yank): Don't exit on error from
3023 x-get-selection.
3024
3025 2004-05-03 Jason Rumney <jasonr@gnu.org>
3026
3027 * makefile.nt: Remove.
3028
3029 2004-05-03 Kim F. Storm <storm@cua.dk>
3030
3031 * emulation/cua-base.el (cua--update-indications): Fix last change.
3032 (cua-mode): Deactivate mark when cua-mode is enabled.
3033
3034 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
3035
3036 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
3037
3038 2004-05-03 Nick Roberts <nickrob@gnu.org>
3039
3040 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
3041 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
3042 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
3043 window over visible frames.
3044 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
3045
3046 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
3047
3048 * progmodes/compile.el (compilation-gcpro): New var.
3049 (compilation-fake-loc): Use it.
3050 (compilation-forget-errors): Reset it.
3051
3052 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
3053
3054 * diff-mode.el (diff-header-face, diff-file-header-face):
3055 Use min-colors.
3056
3057 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3058
3059 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
3060 (bibtex-clean-entry): Disentangle code.
3061 (bibtex-realign): New function.
3062 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
3063 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
3064 Remove undocumented optional arg called-by-convert-alien.
3065 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
3066 for sorting instead of bibtex-sort-buffer.
3067
3068 2004-05-02 Eli Zaretskii <eliz@gnu.org>
3069
3070 * progmodes/compile.el (compilation-start): In the
3071 no-async-subprocesses branch, call sit-for to give redisplay a
3072 chance to show the updated process status in the mode line, and
3073 fontify the buffer explicitly after the process exits.
3074
3075 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * progmodes/python.el (python-compilation-line-number): Remove.
3078 (python-compilation-regexp-alist): Don't use it any more.
3079 (python-orig-start, python-input-filter): Remove.
3080 (inferior-python-mode): Don't set up comint-input-filter-functions.
3081 (python-send-region): Use compilation-fake-loc.
3082
3083 * progmodes/compile.el (compilation-messages-start): New var.
3084 (compilation-mode): Don't setup next-error-function here.
3085 (compilation-setup): Set it up here instead (for minor modes as well).
3086 Make compilation-messages-start buffer local.
3087 (compilation-next-error-function): Use it.
3088 (compilation-forget-errors): Set compilation-messages-start.
3089
3090 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
3091
3092 * ielm.el (ielm-prompt-read-only): Update docstring.
3093
3094 * comint.el (comint-prompt-read-only): Update docstring.
3095 (comint-update-fence, comint-kill-whole-line)
3096 (comint-kill-region): New functions.
3097
3098 * simple.el (kill-whole-line): Use "p" instead of "P" in
3099 interactive form.
3100
3101 2004-05-01 Juanma Barranquero <lektu@terra.es>
3102
3103 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
3104 format arglist so default values in CL-style argument lists are
3105 correctly shown.
3106
3107 2004-05-01 Jason Rumney <jasonr@gnu.org>
3108
3109 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
3110
3111 2004-05-01 Kenichi Handa <handa@m17n.org>
3112
3113 * international/titdic-cnv.el (miscdic-convert): Don't generate a
3114 quail file if it is up to date.
3115
3116 2004-04-30 Juri Linkov <juri@jurta.org>
3117
3118 * cus-edit.el (custom-mode-map):
3119 Add key binding `C-x C-s' to `Custom-save'.
3120
3121 * outline.el (outline-blank-line): New var.
3122 (outline-next-preface, outline-show-heading)
3123 (outline-end-of-subtree): Use it.
3124
3125 * dired-aux.el (dired-touch-initial): New fun.
3126 (dired-do-chxxx): Call it for op-symbol `touch'.
3127 (dired-diff): Use `dired-dwim-target-directory'
3128 if current dired buffer has no buffer mark.
3129
3130 * bindings.el (propertized-buffer-identification):
3131 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
3132 Add C-M-arrow keys for consistency.
3133
3134 * files.el (confirm-kill-emacs):
3135 Change group from top-level `emacs' to `convenience'.
3136
3137 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
3138 Push mark on the first call of successive command calls.
3139 (insert-pair): New fun created from `insert-parentheses' with
3140 `open' and `close' arguments added. Enclose active regions
3141 in paired characters. Compare adjacent characters syntax with
3142 inserted characters syntax before inserting a space.
3143 (insert-parentheses): Call `insert-pair' with ?\( ?\).
3144
3145 * delsel.el: Don't put `delete-selection' property
3146 on `insert-parentheses' symbol to take advantage of
3147 region handling in `insert-pair' function.
3148 Suggested by Stephan Stahl <stahl@eos.franken.de>.
3149
3150 2004-04-30 Kim F. Storm <storm@cua.dk>
3151
3152 * emulation/cua-base.el: Add support for changing cursor types;
3153 based on patch from Michael Mauger.
3154 (cua-normal-cursor-color, cua-read-only-cursor-color)
3155 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
3156 Customization cursor type and/or cursor color.
3157 (cua--update-indications): Handle cursor type changes.
3158 (cua-mode): Update cursor indications if enabled.
3159
3160 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
3161
3162 * mouse.el (mouse-drag-copy-region): New defcustom.
3163 (mouse-set-region, mouse-drag-region-1): Use it.
3164
3165 * simple.el (kill-ring-save): If region face background color is
3166 unspecified (if no highlighting), show extent of fully visible
3167 region even if transient-mark-mode is enabled.
3168
3169 * emulation/cua-base.el (cua--standard-movement-commands):
3170 Add cua-scroll-up and cua-scroll-down.
3171 (cua-scroll-up, cua-scroll-down): New commands.
3172 (cua--init-keymaps): Remap scroll-up and scroll-down.
3173
3174 * emulation/cua-rect.el (cua--convert-rectangle-as):
3175 New defmacro.
3176 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
3177 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
3178 New commands (suggested by Jordan Breeding).
3179
3180 2004-04-30 Juanma Barranquero <lektu@terra.es>
3181
3182 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
3183
3184 2004-04-30 Mario Lang <mlang@delysid.org>
3185
3186 * diff.el (diff-switches): Fix typo in docstring.
3187
3188 2004-04-30 Alex Schroeder <alex@gnu.org>
3189
3190 * xml.el (xml-debug-print-internal): Don't add newline and
3191 indentation to text nodes and write empty elements as empty tags
3192 instead of opening and closing tags.
3193 (xml-debug-print): Take optional indent-string argument.
3194 (xml-print): Alias for xml-debug-print.
3195
3196 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
3197
3198 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
3199 than duplicate call to `line-beginning-position'.
3200
3201 * progmodes/f90.el (f90-get-present-comment-type):
3202 Return whitespace, as well as comment chars, for consistent filling
3203 of comment blocks. Use `match-string-no-properties'.
3204 (f90-break-line): Trim trailing whitespace when filling comments.
3205
3206 2004-04-30 Dave Love <fx@gnu.org>
3207
3208 * calendar/diary-lib.el (diary-outlook-formats): New variable.
3209 (diary-from-outlook-internal, diary-from-outlook)
3210 (diary-from-outlook-gnus, diary-from-outlook-rmail):
3211 New functions to import diary entries from Outlook-format
3212 appointments in mail messages.
3213
3214 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
3215
3216 * progmodes/python.el (python-send-command): New fun.
3217 (python-send-region, python-load-file): Use it.
3218
3219 * progmodes/compile.el (compilation-last-buffer): Add var alias.
3220
3221 * help-fns.el (help-C-file-name): Use new subr-name.
3222 Prepend `src/' to the file name.
3223 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
3224 (describe-function-1, describe-variable): Only find a C source file
3225 name if DOC is already loaded.
3226
3227 * help-mode.el (help-function-def, help-variable-def):
3228 Use the new find-function-search-for-symbol functionality.
3229 Allow FILE to be `C-source'.
3230
3231 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
3232 (find-function-C-source): New fun.
3233 (find-function-search-for-symbol): Use it.
3234
3235 2004-03-29 Michael Mauger <mmaug@yahoo.com>
3236
3237 * progmodes/sql.el (sql-product-alist): Rename variable
3238 `sql-product-support'. Add Postgres login parameters.
3239 (sql-set-product, sql-product-feature): Update with renamed variable.
3240 (sql-connect-postgres): Add username prompt.
3241 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
3242 Make patterns less product specific.
3243 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
3244 (sql-mode-abbrev-table): Modify initialization.
3245 (sql-builtin-face): Add variable.
3246 (sql-keywords-re): Add macro.
3247 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
3248 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
3249 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
3250 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
3251 (sql-mode-linter-font-lock-keywords)
3252 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
3253 (sql-mode-sybase-font-lock-keywords)
3254 (sql-mode-informix-font-lock-keywords)
3255 (sql-mode-interbase-font-lock-keywords)
3256 (sql-mode-ingres-font-lock-keywords)
3257 (sql-mode-solid-font-lock-keywords)
3258 (sql-mode-sqlite-font-lock-keywords)
3259 (sql-mode-db2-font-lock-keywords): Default to nil.
3260 (sql-product-font-lock): Always highlight ANSI keywords.
3261 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
3262 (sql-send-string): Add function.
3263
3264 2004-04-29 Dave Love <fx@gnu.org>
3265
3266 * progmodes/cfengine.el (cfengine-beginning-of-defun)
3267 (cfengine-end-of-defun): Ensure progress through buffer.
3268
3269 * info-look.el (cfengine-mode): Accept a terminal ().
3270
3271 2004-04-29 Juri Linkov <juri@jurta.org>
3272
3273 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
3274 instead of isearch-yank-word-or-char. Add new key bindings for
3275 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
3276 (isearch-del-char): New fun.
3277 (isearch-forward, isearch-edit-string): Update docstring.
3278 (isearch-yank-char): Doc fix.
3279 (isearch-other-meta-char): Restore point after scrolling.
3280
3281 * progmodes/compile.el (compilation-context-lines): Add nil option
3282 to disable compilation output window scrolling.
3283 (compilation-set-window): Use it.
3284
3285 * outline.el (outline-next-preface, outline-show-heading):
3286 Don't leave unhidden blank line before heading.
3287 (outline-end-of-subtree): Include last newline into subtree.
3288 (hide-entry): Leave point at beginning of heading instead of end.
3289 (outline-up-heading): Push mark for the first call of successive
3290 command calls.
3291
3292 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
3293
3294 * comint.el (comint-prompt-read-only): New variable.
3295 (comint-output-filter): Implement it.
3296
3297 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
3298 (ielm-prompt-internal): New variable.
3299 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
3300 (ielm-send-input): Delete unused variable `buf'.
3301 (ielm-eval-input): Use `ielm-prompt-internal'.
3302 (inferior-emacs-lisp-mode): Use new variables
3303 `comint-prompt-read-only' and `ielm-prompt-internal'.
3304 Get rid of obsolete variable `directory-sep-char'.
3305 (ielm): Use `zerop'.
3306
3307 2004-04-29 John Paul Wallington <jpw@gnu.org>
3308
3309 * thumbs.el (toplevel): Require cl at compile time.
3310 Remove conditional definitions of `ignore-errors' and `caddar'
3311 because they occur at run time.
3312
3313 2004-04-28 Nick Roberts <nickrob@gnu.org>
3314
3315 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
3316 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
3317 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3318 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
3319
3320 * progmodes/gud.el (gud-common-init): Throw an error if program is
3321 already running under gdb.
3322
3323 2004-04-28 John Paul Wallington <jpw@gnu.org>
3324
3325 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
3326 (thumbs-show-image-num): Move assignment of
3327 `thumbs-current-image-filename' within scope of `i'.
3328 (thumbs-emboss-image): Don't use `evenp'.
3329
3330 2004-04-28 Richard M. Stallman <rms@gnu.org>
3331
3332 * progmodes/compile.el (compilation-context-lines): Default now 0.
3333
3334 2004-04-28 Juanma Barranquero <lektu@terra.es>
3335
3336 Use `time-less-p' from calendar/time-date.el instead of defining
3337 custom versions of it.
3338
3339 * pcomplete.el (pcomplete-time-less-p): Remove.
3340
3341 * thumbs.el (time-less-p): Remove.
3342
3343 * calendar/timeclock.el (timeclock-time-less-p): Remove.
3344 (timeclock-generate-report): Use `time-less-p'.
3345
3346 * emacs-lisp/autoload.el (autoload-before-p): Remove.
3347 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
3348
3349 2004-04-28 Masatake YAMATO <jet@gyve.org>
3350
3351 * subr.el (remove-overlays): Make arguments optional.
3352
3353 * wid-edit.el (widget-specify-button): Put evaporate to the
3354 overlay for sample.
3355 (widget-specify-sample): Put evaporate to the overlay for sample.
3356 (widget-specify-doc): Put evaporate to the overlay for documentation.
3357
3358 2004-04-27 Jesper Harder <harder@ifa.au.dk>
3359
3360 * info.el (info-apropos): Make it an index node. Align node names
3361 like makeinfo.
3362
3363 2004-04-27 Eli Zaretskii <eliz@gnu.org>
3364
3365 * net/browse-url.el (browse-url-netscape-sentinel)
3366 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
3367 (browse-url-epiphany-sentinel, browse-url-mosaic):
3368 Use browse-url-*-program instead of a literal program name.
3369
3370 2004-04-27 Kevin Ryde <user42@zip.com.au>
3371
3372 * eshell/em-alias.el:
3373 * eshell/em-dirs.el:
3374 * eshell/em-hist.el:
3375 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
3376 features when M-x customize-group loads modules before the main
3377 eshell.el.
3378
3379 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
3380
3381 * subr.el (momentary-string-display): Support EXIT-CHAR that is
3382 either a character representation of an event or an event
3383 description list.
3384
3385 * type-break.el: Capitalise Emacs and Lisp.
3386 (type-break-good-break-interval, type-break-demo-boring-stats)
3387 (type-break-terse-messages, type-break-file-name): New defcustoms.
3388 (type-break-post-command-hook)
3389 (type-break-warning-countdown-string): Quote variable names in doc.
3390 (type-break-interval-start, type-break-auto-save-file-name): New vars.
3391 (type-break-mode): Document type-break-good-break-interval and the
3392 "session" file. Schedule break according to the session file.
3393 Kill session file buffer on exit. Organise for save-some-buffers
3394 to always save the session file.
3395 (type-break-mode-line-message-mode, type-break-query-mode):
3396 Uppercase arguments.
3397 (type-break-file-time, type-break-file-keystroke-count, timep)
3398 (type-break-choose-file, type-break-get-previous-time)
3399 (type-break-get-previous-count): New defuns.
3400 (type-break): Avoid break querying after a completed break in the
3401 case where the query was initiated during user invocation of the
3402 break. Optional terse messages.
3403 Use type-break-good-break-interval if type-break-good-rest-interval is
3404 nil. File the break time.
3405 (type-break-schedule): New optional args for overriding the use of
3406 the current time.
3407 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
3408 after a break.
3409 (type-break-check): File the keystroke count.
3410 (type-break-do-query): Prevent a second query when the break is
3411 interrupted. Optional terse message.
3412 (type-break-keystroke-reset): Record the start of a typing interval.
3413 (type-break-demo-boring): Optional terse messages. Display word
3414 per minute and keystroke counts according to
3415 type-break-demo-boring-stats.
3416
3417 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
3418
3419 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
3420 directories, make sure they exist under archive-tmpdir.
3421
3422 2004-04-27 Juri Linkov <juri@jurta.org>
3423
3424 * help.el (view-emacs-news): With argument, display info for the
3425 selected version by finding it among different NEWS files, and
3426 narrowing the buffer to the selected version.
3427
3428 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
3429 same-window-buffer-names.
3430 (info): New arg `buffer'. Use it. Doc fix. Read file name for
3431 non-numeric prefix argument, append the number to the buffer name
3432 for numeric prefix argument.
3433 (info-other-window): Bind same-window-regexps to nil.
3434 (Info-reference-name): Rename to Info-point-loc.
3435 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
3436 and Info-find-index-name for stringy Info-point-loc.
3437 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
3438 without middle `.', but with final `.' and optional line number
3439 for it. Set Info-point-loc for index nodes.
3440 (Info-index): Remove middle `.' from index entry regexp.
3441 Modify line number regexp.
3442 (Info-index-next): Decrement line number.
3443 (info-apropos): Remove middle `.' from index entry regexp.
3444 Add optional line number regexp at the end. Add matched value
3445 for line number to the result list and insert it to the buffer.
3446 Replace match-string by match-string-no-properties.
3447 Reorder result list.
3448 (Info-fontify-node): Hide index line numbers.
3449 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
3450 empty matches.
3451 (Info-follow-reference): Use `str' instead of
3452 Info-following-node-name-re.
3453 (Info-toc): Use full file names. Set Info-current-node to "Top".
3454 (Info-fontify-node): Compare file names without directory name.
3455 (Info-try-follow-nearest-node): Don't set Info-reference-name.
3456 Set second arg of Info-extract-menu-node-name for index nodes.
3457 (info-xref-visited): Use magenta3 instead of magenta4.
3458 (Info-mode): Add info-apropos to docstring.
3459
3460 * log-view.el (log-view-diff): Replace interactive code "r"
3461 by a list to allow to call it even if region is not active.
3462
3463 * paren.el (show-paren-highlight-openparen): New var.
3464 (show-paren-function): Turn on openparen highlighting when
3465 matching forward if show-paren-highlight-openparen is non-nil.
3466
3467 * simple.el (kill-ring-save): Use blink-matching-delay instead of
3468 the constant value 1.
3469 (completions-common-part): Expand docstring.
3470
3471 * textmodes/picture.el (picture-mode-map): Add arrow keys.
3472
3473 2004-04-27 Kim F. Storm <storm@cua.dk>
3474
3475 * image.el (insert-sliced-image): Use line-height instead of
3476 line-spacing property on newline.
3477
3478 2004-04-26 Lars Hansen <larsh@math.ku.dk>
3479
3480 * desktop.el (desktop-buffer-misc-data-function): Rename to
3481 desktop-save-buffer and change docstring.
3482 (desktop-buffer-modes-to-save): Delete.
3483 (desktop-save-buffer-p): Use desktop-save-buffer instead of
3484 desktop-buffer-modes-to-save.
3485 (desktop-save): Rename desktop-buffer-misc-data-function to
3486 desktop-save-buffer and allow non-function value.
3487 (desktop-missing-file-warning): Correct docstring.
3488
3489 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
3490 to desktop-save-buffer.
3491
3492 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
3493 desktop-save-buffer.
3494
3495 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
3496
3497 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
3498
3499 2004-04-26 Eli Zaretskii <eliz@gnu.org>
3500
3501 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
3502
3503 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
3504
3505 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
3506 (ielm): Only go to the end of the buffer when starting a new process.
3507
3508 2004-04-25 Juanma Barranquero <lektu@terra.es>
3509
3510 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
3511 mode line. Bind `inhibit-read-only' to t before modifying
3512 properties of text in the buffer.
3513 (ielm): Force point to the end of buffer, even when running ielm
3514 from inside itself.
3515
3516 2004-04-25 Jesper Harder <harder@ifa.au.dk>
3517
3518 * info.el (info-apropos): Reset Info-complete-cache.
3519
3520 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
3521
3522 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3523 Also recognize severe Irix et al. messages.
3524 (compilation-normalize-filename, compile-abbreviate-directory):
3525 Delete functions.
3526 (compilation-get-file-structure): New function inherits
3527 functionality of the two preceding ones.
3528 (compilation-internal-error-properties, compilation-fake-loc):
3529 Use it so that different paths to the same file share the same
3530 markers. Also optimize finding adjacent marker slightly.
3531
3532 2004-04-25 Kim F. Storm <storm@cua.dk>
3533
3534 * image.el (insert-sliced-image): Add line-spacing t property
3535 to newlines separating image lines.
3536
3537 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
3538
3539 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
3540
3541 * ielm.el (ielm-prompt-read-only): New user option.
3542 (ielm-prompt): Expand docstring to describe new behavior.
3543 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
3544 mention it in the docstring.
3545
3546 2004-04-24 Andreas Schwab <schwab@suse.de>
3547
3548 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
3549
3550 * diff.el (diff): Set default-directory in diff buffer.
3551
3552 2004-04-24 Eli Zaretskii <eliz@gnu.org>
3553
3554 * mail/sendmail.el (mail-bury): Don't delete the frame where the
3555 mail was being composed if the terminal cannot display more than
3556 one frame; instead, switch to previous frame.
3557
3558 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
3559 (rmail-start-mail): Support rmail-mail-new-frame even on
3560 terminals that can display only one frame at a time.
3561
3562 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3563
3564 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
3565 (checkdoc-output-font-lock-keywords): Remove error regexp.
3566 (checkdoc-output-mode-map): Remove.
3567 (checkdoc-output-mode): Derive from compilation-mode.
3568 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
3569
3570 * dired.el (dired-mode-map): Add a menu entry for wdired.
3571
3572 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
3573 (rx-bracket, rx-check-any, rx-any): Clean up name space.
3574
3575 * wdired.el: (wdired-mode-map): Move init into declaration.
3576 Fix `return' binding.
3577 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3578 Use force-mode-line-update.
3579 (wdired-get-filename): Use `unless'.
3580 (wdired-preprocess-files): Don't assume names have no \n and use / for
3581 dir separator.
3582 (wdired-normalize-filename): Use replace-regexp-in-string.
3583 (wdired-load-hooks): Remove.
3584 (wdired-mode-hooks): Rename to wdired-mode-hook.
3585
3586 * info-look.el: Add support for cfengine-mode.
3587 (info-lookup-setup-mode): Use dolist.
3588
3589 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
3590
3591 * wdired.el: New file.
3592
3593 2004-04-23 Juanma Barranquero <lektu@terra.es>
3594
3595 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
3596
3597 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
3598 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
3599 (pcomplete--help, pcomplete--here): Doc fixes.
3600
3601 2004-04-23 Andre Spiegel <spiegel@gnu.org>
3602
3603 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
3604 handles wrong-number-of-arguments in backend call.
3605
3606 * vc.el (vc-print-log): Likewise.
3607
3608 2004-04-20 Dave Love <fx@gnu.org>
3609
3610 * emacs-lisp/rx.el: Doc fixes.
3611 (rx-constituents): Add/extend many forms.
3612 (rx-check): Check form is a list.
3613 (bracket): Defvar.
3614 (rx-check-any, rx-any, rx-check-not): Modify.
3615 (rx-not): Simplify.
3616 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
3617 (rx-kleene): Use rx-trans-forms.
3618 (rx-quote-for-set): Delete.
3619 (rx): Allow multiple args.
3620
3621 2004-04-23 Kenichi Handa <handa@m17n.org>
3622
3623 * international/mule-util.el (char-displayable-p): Simplify by
3624 using internal-char-font.
3625
3626 2004-04-23 Juanma Barranquero <lektu@terra.es>
3627
3628 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3629
3630 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3631
3632 * diff-mode.el (diff-next-error): New fun.
3633 (diff-mode): Use it.
3634
3635 * simple.el (next-error): Change arg name.
3636 Add support for the documented C-u C-x ` usage.
3637
3638 * frame.el (special-display-popup-frame, next-multiframe-window)
3639 (previous-multiframe-window): Only consider frames on same display.
3640
3641 2004-04-22 Lars Hansen <larsh@math.ku.dk>
3642
3643 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
3644 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
3645
3646 2004-04-22 Kim F. Storm <storm@cua.dk>
3647
3648 * net/telnet.el (telnet): Add optional port arg.
3649
3650 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3651
3652 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3653 Minor sanity check on the `hyperlink' slot.
3654
3655 * Makefile.in (recompile): Compile new files.
3656
3657 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
3658 Add byte-recompile-directory's optional `arg'.
3659
3660 * cvs-status.el (cvs-tree-use-charset): New var.
3661 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
3662 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
3663 (cvs-status-cvstrees): Use it.
3664
3665 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
3666 Make it a normal major mode.
3667 (checkdoc-buffer-label): Make sure the file name is meaningful.
3668 (checkdoc-output-to-error-buffer): Remove.
3669 (checkdoc-error, checkdoc-start-section): Rewrite.
3670
3671 * info.el (info-node, info-menu-5, info-xref, info-header-node)
3672 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3673 (Info-title-4-face): Use new syntax.
3674 (info-xref-visited): Inherit from info-xref.
3675
3676 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
3677
3678 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
3679
3680 * simple.el (next-error-last-buffer, next-error-function):
3681 New variables for the next-error framework.
3682 (next-error-buffer-p): New function.
3683 (next-error-find-buffer): Generalize compilation-find-buffer.
3684 (next-error, previous-error, first-error, next-error-no-select)
3685 (previous-error-no-select): Move from compile.el.
3686
3687 * replace.el (occur-next-error, occur-1): Hook into the next-error
3688 framework.
3689
3690 * progmodes/compile.el (compilation-start):
3691 Set next-error-last-buffer so next-error knows where to jump.
3692 (compilation-setup): Set the buffer-local variable
3693 next-error-function to 'compilation-next-error-function.
3694 (compilation-buffer-p, compilation-buffer-internal-p): Use an
3695 alternate way to find if a buffer is a compilation buffer, for
3696 next-error convenience.
3697 (next-error-no-select, previous-error-no-select, next-error)
3698 (previous-error, first-error): Move to simple.el.
3699 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
3700 (compilation-last-buffer): Remove.
3701 (compilation-start, compilation-next-error, compilation-setup)
3702 (compilation-next-error-function, compilation-find-buffer):
3703 Remove compilation-last-buffer use.
3704
3705 2004-04-21 Juanma Barranquero <lektu@terra.es>
3706
3707 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
3708 (font-lock-warning-face): Fix spacing.
3709
3710 * makefile.w32-in (WINS): Add url/ directory.
3711
3712 2004-04-21 Lars Hansen <larsh@math.ku.dk>
3713
3714 * desktop.el (desktop-buffer-mode-handlers): New variable.
3715 Alist of major mode specific functions to restore a desktop buffer.
3716 (desktop-buffer-handlers): Make variable obsolete.
3717 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
3718 Catch errors signaled in handlers. Update buffer count.
3719 Evaluate desktop-buffer-point.
3720 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
3721 move to dired.el.
3722 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
3723 move to info.el.
3724 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
3725 move to mail/rmail.el.
3726 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
3727 to mh-e/mh-e.el.
3728 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
3729 On fail, print message (to message buffer) even if
3730 desktop-missing-file-warning is nil.
3731 (desktop-buffer-misc-data-function): New buffer local variable.
3732 Function returning major mode specific data.
3733 (desktop-buffer-misc-functions): Make variable obsolete.
3734 (desktop-save): Use desktop-buffer-misc-data-function.
3735 (desktop-buffer-dired-misc-data): Rename to
3736 dired-desktop-buffer-misc-data and move to dired.el.
3737 (desktop-buffer-info-misc-data): Rename to
3738 Info-desktop-buffer-misc-data and move to info.el.
3739 (desktop-read): Add message about number of buffers restored/failed.
3740
3741 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
3742 Add parameters. Pause to display error only when
3743 desktop-missing-file-warning is non-nil.
3744 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3745 (dired-mode): Bind desktop-buffer-misc-data-function.
3746
3747 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
3748 Add Parameters.
3749 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3750 (Info-mode): Bind desktop-buffer-misc-data-function.
3751
3752 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
3753 Add Parameters.
3754
3755 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
3756 Add Parameters.
3757
3758 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
3759
3760 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
3761 the case of letters in case-insensitive expansions when the
3762 abbrev is preceded by characters with letter syntax.
3763
3764 2004-04-21 Richard M. Stallman <rms@gnu.org>
3765
3766 * progmodes/cperl-mode.el (cperl-putback-char):
3767 Delete Emacs 18 definition.
3768
3769 * international/mule.el (ctext-post-read-conversion):
3770 Use assoc-string, not assoc-ignore-case.
3771
3772 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
3773
3774 * emacs-lisp/easymenu.el (easy-menu-add):
3775 Do call x-popup-menu, but only if it's defined.
3776
3777 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
3778
3779 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
3780 Handle multiple args: compile like progn.
3781
3782 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
3783 take all args as &rest arg.
3784
3785 * autoinsert.el (auto-insert-alist): Insert the user's name in
3786 copyright notice, rather than Free Software Foundation.
3787
3788 2004-04-21 Kenichi Handa <handa@m17n.org>
3789
3790 * descr-text.el (describe-char): Make it work on *Help* buffer.
3791
3792 2004-04-21 Kim F. Storm <storm@cua.dk>
3793
3794 * image.el (insert-image): Add optional SLICE arg.
3795 (insert-sliced-image): New defun.
3796
3797 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
3798
3799 * subr.el (read-number): Check whether `default' is nil.
3800
3801 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3802
3803 * progmodes/compile.el (compilation-error-properties):
3804 Split into two.
3805 (compilation-internal-error-properties): New one.
3806 (compilation-compat-error-properties): Use it. Fix the non-marker case.
3807
3808 2004-04-20 Richard M. Stallman <rms@gnu.org>
3809
3810 * window.el (split-window-save-restore-data):
3811 Don't update the data if OLD-INFO is nil.
3812
3813 * view.el (view-return-to-alist): Mark it permanent local.
3814
3815 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
3816
3817 * recentf.el (recentf-save-list): Catch and warn about errors.
3818
3819 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
3820 so "Buffers" won't be pure.
3821
3822 * help-mode.el (help-mode-finish): Set help-return-alist first
3823 thing, setting only the entry for the selected window.
3824
3825 * help-fns.el (describe-function-1): If many non-control non-meta
3826 keys run the command, don't list all of them.
3827
3828 2004-04-20 Juanma Barranquero <lektu@terra.es>
3829
3830 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
3831 arg. Copied from Andre Spiegel's patch of 2004-03-21.
3832
3833 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
3834
3835 2004-04-20 Kenichi Handa <handa@m17n.org>
3836
3837 * international/quail.el (quail-lookup-key): New optional arg
3838 NOT-RESET-INDICES.
3839 (quail-get-translations): Call quail-lookup-key with
3840 NOT-RESET-INDICES t.
3841 (quail-completion): Likewise.
3842 (quail-lookup-map-and-concat): Likewise.
3843
3844 2004-04-20 Kenichi Handa <handa@m17n.org>
3845
3846 * international/quail.el (quail-update-translation): Don't insert
3847 such an unsupported multibyte char in a unibyte buffer.
3848
3849 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
3850
3851 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
3852 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
3853 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
3854 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
3855 (gdb-frame-assembler-buffer): Improve behaviour with
3856 multiple frames.
3857 (gdb-display-buffer): Extend search to all visible frames.
3858
3859 2004-04-19 Eli Zaretskii <eliz@gnu.org>
3860
3861 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
3862 characters left after base64 decoding.
3863 (rmail-decode-region): Use -dos variety of `coding', to remove any
3864 ^M characters left after qp or base64 decoding.
3865
3866 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3867
3868 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
3869 messages.
3870
3871 2004-04-19 Stephen Eglen <stephen@gnu.org>
3872
3873 * add-log.el (add-change-log-entry): Update doc string to mention
3874 add-log-full-name and add-log-mailing-address.
3875
3876 2004-04-18 Juri Linkov <juri@jurta.org>
3877
3878 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
3879 (Info-find-node-2): Simplify error message.
3880 (Info-insert-dir): Use Info-following-node-name.
3881 (Info-goto-node): Remove *info-history* and *info-toc*.
3882 (Info-history): Create a node of the virtual history file.
3883 (Info-toc): Create a node of the virtual toc file.
3884 (Info-insert-toc): New arg `curr-file' for reference file names.
3885 (info-apropos): Remove redundant var binding for temp-file.
3886 (Info-index, Info-index-next, Info-mode): Doc fix.
3887 (Info-goto-emacs-command-node): Don't jump to *info* from
3888 non-*info* Info buffers.
3889 (Info-fontify-node): Don't show the file name of external
3890 references if `Info-hide-note-references' is `hide'. Don't hide
3891 newlines at the end of paragraphs.
3892
3893 * international/mule-diag.el (list-input-methods):
3894 Fix args to help-xref-button.
3895
3896 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
3897 to put into effect local variables from TUTORIAL files.
3898
3899 * textmodes/paragraphs.el (sentence-end) <function>: New fun
3900 with default value taken from the variable `sentence-end'.
3901 (sentence-end) <defcustom>: Set default to nil. Doc fix.
3902 Add nil const to :type.
3903 (sentence-end-without-period, sentence-end-double-space)
3904 (sentence-end-without-space): Doc fix.
3905
3906 * textmodes/paragraphs.el (forward-sentence):
3907 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
3908 (fill-delete-newlines):
3909 * progmodes/cc-cmds.el (c-beginning-of-statement):
3910 Use function `sentence-end' instead of variable `sentence-end'.
3911
3912 2004-04-18 Andreas Schwab <schwab@suse.de>
3913
3914 * progmodes/compile.el (compilation-start): Set window start to
3915 point-min if compilation-scroll-output is nil.
3916
3917 2004-04-18 John Wiegley <johnw@newartisans.com>
3918
3919 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
3920
3921 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
3922
3923 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
3924 (gdb-info-breakpoints-custom): Revert previous change.
3925 (gdb-view-assembler): Update assembler if necessary.
3926 (gdb-frame-handler): Parse correctly for gdb-current-frame.
3927 (gdb-display-source-buffer): Update properly when both source and
3928 assembler are visible.
3929
3930 2004-04-17 John Wiegley <johnw@newartisans.com>
3931
3932 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
3933 which limits the number of names shown in the minibuffer. Off by
3934 default.
3935 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
3936 up iswitchb for users with a multitude of open buffers by showing
3937 only the first and last N/2 buffers in the completion list (which
3938 is enough to aid C-s/C-r, and to know that more characters are
3939 needed to refine the completion list).
3940
3941 2004-04-17 Richard M. Stallman <rms@gnu.org>
3942
3943 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
3944 (file-truename): Expand all ~ constructs directly.
3945 (insert-directory): Delete any error msg output by the
3946 `insert-directory-program'.
3947
3948 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
3949 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
3950 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
3951 (allout-init): Use find-file-hook, not find-file-hooks.
3952 (allout-mode): Eliminate Emacs 18 support.
3953 Use write-contents-functions, not local-write-file-hooks.
3954
3955 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
3956
3957 * progmodes/compile.el (compilation-error-properties): Fix for
3958 adding messages when there are already markers for their file.
3959 (compilation-fake-loc): New function.
3960
3961 2004-04-16 Dave Love <fx@gnu.org>
3962
3963 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
3964 (python-load-file): Fix python-orig-start setting.
3965
3966 * progmodes/compile.el: Doc fixes.
3967 (compilation-error-regexp-alist-alist)
3968 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
3969 (compilation-assq): Wrap in eval-when-compile.
3970 (compilation-mode-font-lock-keywords): Don't use list*.
3971 (compilation-start): Avoid warning.
3972 (compilation-compat-error-properties)
3973 (compilation-directory-properties): Add keymap property.
3974 (compilation-parsing-end): Make it a marker for better compatibility.
3975
3976 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
3977
3978 2004-04-16 Mark A. Hershberger <mah@everybody.org>
3979
3980 * xml.el: Doc fixes.
3981 (xml-get-children): Only looks at sub-tags and ignore strings.
3982
3983 * xml.el (xml-parse-tag): Avoid overwriting node-name.
3984
3985 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
3988
3989 2004-04-16 Andre Spiegel <spiegel@gnu.org>
3990
3991 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
3992
3993 * vc.el (vc-print-log): Likewise.
3994
3995 2004-04-16 Masatake YAMATO <jet@gyve.org>
3996
3997 * simple.el (completion-setup-function): Set an initial value
3998 to `element-common-end' before entering loop. Set a value
3999 to `element-common-end' at the end of loop.
4000 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
4001 (completions-common-part): Rename from completion-de-emphasis.
4002 (completions-first-difference): Rename from completion-emphasis.
4003 Suggested by RMS.
4004
4005 2004-04-16 Juanma Barranquero <lektu@terra.es>
4006
4007 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
4008 (bookmark-edit-annotation-mode): Add mode name.
4009
4010 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4011
4012 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
4013 for nested conflict markers.
4014 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
4015
4016 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
4017
4018 * progmodes/gdb-ui.el (gdb-goto-info): New function.
4019
4020 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
4021
4022 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4023
4024 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
4025 Give a backtrace if requested.
4026
4027 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
4028
4029 * progmodes/python.el (python-mouse-2-command, python-RET-command):
4030 Remove unused functions.
4031 (python-orig-start-line, python-orig-file): Remove.
4032 (python-orig-start): New var.
4033 (python-input-filter, python-compilation-line-number)
4034 (python-send-region, python-load-file): Use it.
4035
4036 * info.el (info): Always jump to *info*.
4037
4038 * subr.el (posn-set-point): New function.
4039
4040 * mouse.el (mouse-set-point): Use it.
4041
4042 * progmodes/compile.el (compile-goto-error): Use it.
4043 (compilation-button-map): New keymap.
4044 (compilation-error-properties): Use it.
4045 (compilation-shell-minor-mode-map): Don't bind mouse-2.
4046
4047 * smerge-mode.el (smerge-popup-context-menu): Use it.
4048
4049 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
4050 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
4051 mouse and non-mouse case.
4052
4053 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
4054 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
4055
4056 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
4057 Make it work for non-mouse events.
4058
4059 * pcvs-info.el (cvs-status-map): Update binding name.
4060
4061 2004-04-14 Mark A. Hershberger <mah@everybody.org>
4062
4063 * xml.el (xml-maybe-do-ns): New function to handle namespace
4064 parsing of both attribute and element names.
4065 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
4066 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
4067 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
4068 (xml-parse-attlist): Make it do its own namespace parsing.
4069
4070 2004-04-14 Dave Love <fx@gnu.org>
4071
4072 * progmodes/python.el (run-python): Fix use of \n.
4073 (python-load-file): Remove `try' from Python fragment.
4074 (python-describe-symbol): Fix message.
4075
4076 * comint.el: Doc fixes.
4077 (comint-last-input-start, comint-last-input-end)
4078 (comint-last-output-start): Give them values.
4079 (comint-arguments): Avoid warning.
4080 (comint-skip-prompt): Use line-end-position.
4081 (comint-backward-matching-input): Rename arg to agree with doc.
4082 (comint-extract-string): Use syntax-ppss.
4083 (comint-dynamic-simple-complete): Delete useless list construction.
4084 (comint-redirect-subvert-readonly): New.
4085 (comint-redirect-preoutput-filter): Use it.
4086
4087 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
4088 Correctly handle negative arguments when calling hook functions.
4089
4090 2004-04-14 Jesper Harder <harder@ifa.au.dk>
4091
4092 * info.el (info-apropos): Don't clobber Info-history-list.
4093
4094 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
4095
4096 * progmodes/compile.el (compilation-setup):
4097 Localize overlay-arrow-position.
4098 (compilation-sentinel): Restructure code equivalently.
4099 (compilation-next-error): Find message on same line after point if
4100 not found before point.
4101 (compile-mouse-goto-error): Restore function so that compilation
4102 buffer need not be current and use compile-goto-error.
4103 (compile-goto-error): Restore function.
4104 (next-error): Set overlay-arrow-position.
4105 (compilation-forget-errors): Don't localize already local
4106 compilation-locs and remove FIXME about refontifying.
4107
4108 2004-04-14 Kim F. Storm <storm@cua.dk>
4109
4110 * startup.el (emacs-quick-startup): New defvar (set by -Q).
4111 (command-line): New option -Q. Like -q --no-site-file, but
4112 in addition it also disables menu-bar, tool-bar, scroll-bars,
4113 tool-tips, and the blinking cursor.
4114 (command-line-1): Skip startup screen if -Q.
4115 (fancy-splash-head): Use ":align-to center" prop to center splash image.
4116
4117 * emulation/cua-base.el (cua-read-only-cursor-color)
4118 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
4119
4120 2004-04-13 Dave Love <fx@gnu.org>
4121
4122 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
4123 (syntax): Don't require.
4124 (python) <defgroup>: Add :version.
4125 (python-quote-syntax): Re-written.
4126 (inferior-python-mode): Move stuff here from run-python and add
4127 some more.
4128 (python-preoutput-continuation, python-preoutput-result)
4129 (python-dotty-syntax-table): New.
4130 (python-describe-symbol): Use them.
4131 (run-python): Move stuff to inferior-python-mode. Modify code
4132 loaded into Python.
4133 (python-send-region): Use python-proc, python-send-string.
4134 (python-send-string): Send newlines too. Callers changed.
4135 (python-load-file): Re-written.
4136 (python-eldoc-function): New.
4137 (info-look): Don't require.
4138 (python-after-info-look): New. A modified version of former
4139 top-level code for use with eval-after-load.
4140 (python-maybe-jython, python-guess-indent): Use widened buffer.
4141 (python-fill-paragraph): Re-written.
4142 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
4143 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
4144
4145 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4146
4147 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
4148 Set compilation-error-regexp-alist earlier.
4149
4150 * progmodes/compile.el (compilation-minor-mode-map)
4151 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
4152 (compile-goto-error): Re-merge the mouse and non-mouse commands.
4153
4154 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4155
4156 * progmodes/compile.el (compile-goto-error): Select the buffer/window
4157 corresponding to the event.
4158
4159 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
4160
4161 * loadup.el: Add cygwin to system-type list, for unexec() support.
4162
4163 2004-04-12 John Paul Wallington <jpw@gnu.org>
4164
4165 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
4166 (ibuffer-restore-window-config-on-quit): New variable to replace
4167 `ibuffer-delete-window-on-quit'. Update all references.
4168 (ibuffer-prev-window-config): New variable.
4169 (ibuffer-quit): Restore previous window configuration instead of
4170 deleting window.
4171 (ibuffer): Save window configuration before showing Ibuffer buffer.
4172
4173 * help.el (describe-mode): Doc fix.
4174
4175 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4176
4177 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
4178 not to treat nil as a function.
4179
4180 * vc-arch.el (vc-arch-root): Be a bit more careful.
4181 (vc-arch-register): Save the buffer if we modified it.
4182 (vc-arch-delete-rej-if-obsolete): Save excursion.
4183 (vc-arch-find-file-hook): Use the simpler after-save-hook.
4184 (vc-arch-responsible-p, vc-arch-init-version): New functions.
4185
4186 * net/ldap.el (ldap-search): Use list*.
4187
4188 2004-04-12 Juri Linkov <juri@jurta.org>
4189
4190 * info.el (Info-follow-reference): Allow multiline reference name.
4191
4192 2004-04-11 Dave Love <fx@gnu.org>
4193
4194 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
4195
4196 * progmodes/python.el: New file.
4197
4198 2004-04-11 Andre Spiegel <spiegel@gnu.org>
4199
4200 * vc-hooks.el (vc-arg-list): Function removed.
4201 (vc-default-workfile-unchanged-p): Use condition-case to check for
4202 backward compatibility.
4203
4204 * vc.el (vc-print-log): Use condition-case to check for backward
4205 compatibility.
4206
4207 2004-04-11 Juri Linkov <juri@jurta.org>
4208
4209 * dired.el (dired-faces): New defgroup.
4210 (dired-header, dired-mark, dired-marked, dired-flagged)
4211 (dired-warning, dired-directory, dired-symlink, dired-ignored):
4212 New faces.
4213 (dired-header-face, dired-mark-face, dired-marked-face)
4214 (dired-flagged-face, dired-warning-face, dired-directory-face)
4215 (dired-symlink-face, dired-ignored-face): New face variables.
4216 (dired-font-lock-keywords): Use them instead of font-lock faces.
4217 Split the rule for dired marks into 3 separate rules: for marks,
4218 marked file names and flagged file names.
4219
4220 * help-mode.el (help-make-xrefs): Add a final newline to the
4221 *Help* buffer.
4222
4223 2004-04-11 John Paul Wallington <jpw@gnu.org>
4224
4225 * replace.el (occur-engine): Distinguish between one and several
4226 matches in the matches per buffer heading.
4227
4228 2004-04-11 Kim F. Storm <storm@cua.dk>
4229
4230 * ido.el (ido-confirm-unique-completion): New defcustom.
4231 (ido-complete): Use it.
4232 (ido-write-file): Set it to t unconditionally.
4233
4234 2004-04-10 Miles Bader <miles@gnu.org>
4235
4236 RCS keyword removal (only non-comment changes are enumerated here):
4237
4238 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
4239 (byte-compile-insert-header): Don't use `byte-compile-version'.
4240 * forms.el (forms-version): Variable removed.
4241 (forms-mode): Don't use `forms-version'.
4242 * recentf.el (recentf-version): Variable removed.
4243 * progmodes/delphi.el (delphi-version): Variable removed.
4244 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
4245
4246 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4247
4248 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
4249
4250 2004-04-09 Jesper Harder <harder@ifa.au.dk>
4251
4252 * info.el (info-apropos): Improve menu item regexp.
4253
4254 2004-04-09 Simon Josefsson <jas@extundo.com>
4255
4256 * mail/smtpmail.el: Add comment, based on report by
4257 kdc@rcn.com (Kevin D. Clark).
4258
4259 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
4260
4261 * progmodes/compile.el (compilation-mode-font-lock-keywords):
4262 Redo one more thing that I didn't notice Daniel had undone.
4263
4264 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
4265
4266 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
4267 (gdb-goto-breakpoint, gdb-display-buffer)
4268 (gdb-display-source-buffer, gdb-view-source-function)
4269 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
4270 (gdb-source-info, gdb-frame-handler): Don't specify a window
4271 for display.
4272 (gdb-info-breakpoints-custom): Remove superfluous update of
4273 assembler buffer.
4274 (gdb-many-windows): Make settable outside gdb.
4275
4276 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
4277
4278 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
4279 Derive from fundamental-mode rather than text-mode.
4280
4281 2004-04-08 Juri Linkov <juri@jurta.org>
4282
4283 * info.el (Info-history): Doc fix.
4284 (Info-history-list): New var.
4285 (info-xref): Change magenta4 to blue, remove bold for dark and
4286 light backgrounds, change bold to underline for non-color classes.
4287 (info-xref-visited): New face.
4288 (Info-fontify-visited-nodes): New custom.
4289 (Info-hide-note-references): Add new value `hide'. Doc fix.
4290 (Info-reference-name): New var.
4291 (Info-selection-hook): New custom.
4292 (Info-edit-mode-hook): New var.
4293 (Info-find-file): New fun.
4294 (Info-find-node): Move part of code to Info-find-file.
4295 (Info-find-node-2): Add anchors to Info-history-list. Move point
4296 to the place with the reference name if name is defined.
4297 (Info-select-node): Add current node to Info-history-list.
4298 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
4299 (Info-search-whitespace-regexp): New custom.
4300 (Info-search-case-fold): New var.
4301 (Info-search): Add "case-sensitively" to the prompt.
4302 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
4303 (Info-search-case-sensitively, Info-search-next): New fun.
4304 (Info-up): Move point to the menu item of the current node.
4305 (Info-history): New fun. Add *info-history* to
4306 same-window-buffer-names.
4307 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
4308 (Info-insert-toc): New fun.
4309 (Info-build-toc): New fun.
4310 (Info-follow-reference): Add new arg `fork'. Doc fix.
4311 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
4312 with the same name prefer the reference closest to point.
4313 (Info-next-reference): Replace * by + in the *Note regexp.
4314 Add regexp for http:// and ftp://. Skip the *Note prefix.
4315 (Info-prev-reference): Replace * by + in the *Note regexp.
4316 Add regexp for http:// and ftp://. Skip the *Note prefix.
4317 (Info-follow-nearest-node): Add new arg `fork'.
4318 (Info-try-follow-nearest-node): Add new arg `fork'.
4319 Call browse-url for http:// and ftp:// references.
4320 Set Info-reference-name for index entries.
4321 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
4322 Info-search-next, Info-history, Info-toc, clone-buffer.
4323 (Info-menu-update): Replace * by + in the *Note regexp.
4324 (Info-mode): Add documentation for Info-history, Info-toc,
4325 Info-search-case-sensitively, Info-search-next, clone-buffer.
4326 (Info-fontify-menu-headers): Remove fun. Move code to
4327 Info-fontify-node.
4328 (Info-fontify-node): Add docstring. Add local vars
4329 fontify-visited-p and not-fontified-p. If not-fontified-p is t
4330 then fontify header line, titles, menu headers, http and ftp
4331 references, refill paragraphs. If not-fontified-p is t or
4332 fontify-visited-p is t then fontify cross references, menu items.
4333 Fontify menu headers. Fontify http and ftp references.
4334 Change regexp for cross references to require whitespace after *Note,
4335 add matching groups for file and node names. Remove hack for quote.
4336 Use display property for Info-hide-note-references=t. Use fifth
4337 or fourth match for help-echo. Display visited nodes in a
4338 different face. Unhide file names of external references.
4339 Unhide newlines. Display visited menu items in a different face.
4340
4341 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4342
4343 * progmodes/compile.el: Require CL.
4344 (compilation-mode-font-lock-keywords): Re-install the "line as
4345 function" patch.
4346
4347 * help-fns.el (help-C-source-directory): New var.
4348 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
4349 (describe-function-1, describe-variable): Use them.
4350
4351 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
4352 to C source files specially.
4353
4354 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
4355
4356 * info.el (Info-hide-cookies-node): New function.
4357 (Info-select-node): Use it.
4358 (Info-display-images-node): Remove message with image file name.
4359
4360 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
4361
4362 * progmodes/compile.el (compilation-warning-face)
4363 (compilation-info-face, compilation-skip-threshold)
4364 (compilation-skip-visited, compilation-context-lines):
4365 Declare :version when added to Emacs.
4366 (compilation-error-regexp-alist-alist): Extend caml and irix.
4367 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
4368 (compilation-mode-font-lock-keywords): Temporarily undo line as
4369 function patch, which wasn't ready.
4370
4371 2004-04-07 Kenichi Handa <handa@m17n.org>
4372
4373 * international/latin1-disp.el (latin1-display-setup): Check each
4374 character is displayable or not instead of calling
4375 latin1-display-check-font.
4376
4377 2004-04-06 Kenichi Handa <handa@m17n.org>
4378
4379 * language/ethio-util.el (ethio-sera-being-called-by-w3):
4380 New variable.
4381 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
4382 instead of sera-being-called-by-w3.
4383 (ethio-fidel-to-sera-buffer): Likewise.
4384 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
4385 instead of sera-being-called-by-w3.
4386 (ethio-write-file): Likewise.
4387
4388 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4389
4390 * printing.el: Doc fix.
4391
4392 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
4393
4394 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
4395 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
4396 (gdb-setup-windows): Only use separate IO buffer if required.
4397
4398 2004-04-06 Kim F. Storm <storm@cua.dk>
4399
4400 * term.el (term-is-xemacs): Remove.
4401 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
4402 (term-window-width): New function.
4403 (term-mode, term-check-size): Use it.
4404 (term-mode): Disable overflow-newline-into-fringe in term buffer.
4405
4406 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
4407
4408 * cus-edit.el (custom-add-parent-links): Change unbound variable
4409 `symbol' to `name'.
4410
4411 2004-04-05 Jesper Harder <harder@ifa.au.dk>
4412 * info.el (info-apropos): New function.
4413 (Info-mode-menu): Add it.
4414 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
4415
4416 * help-mode.el (help-make-xrefs): Recognize aliased variable with
4417 inherited docstring.
4418
4419 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
4420
4421 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4422
4423 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
4424
4425 * progmodes/compile.el (font-lock): Don't require any more.
4426 (compilation-error-properties, compilation-start, compilation-sentinel)
4427 (compilation-filter, next-error): Use with-current-buffer.
4428 (compilation-skip-to-next-location, compilation-skip-threshold)
4429 (compilation-skip-visited): Move to silence the byte-compiler.
4430 (compilation-setup): Simplify.
4431 (compilation-next-error): Use line-(beginning|end)-position.
4432 Make sure `pt' is non-nil before using compilation-loop.
4433 (compile-goto-error): Add optional event arg. Use it.
4434 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
4435 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
4436 Update the binding for mouse-2.
4437 (first-error): Set compilation-current-error to nil rather than bob.
4438 (compilation-parsing-end, compilation-parse-errors-function)
4439 (compilation-error-list, compilation-old-error-list):
4440 "New" compatibility variables.
4441 (compile-buffer-substring, compilation-compat-error-properties)
4442 (compilation-compat-parse-errors, compilation-forget-errors):
4443 New compatibility functions.
4444 (compilation-mode-font-lock-keywords): Use them.
4445
4446 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
4447
4448 * autorevert.el (auto-revert-handler): If point (or a window
4449 point) is at the end of the buffer, keep it there after
4450 reverting. This allows to tail a file.
4451 Mention this in the `Commentary'.
4452
4453 * format.el (format-write-file): Add optional argument CONFIRM
4454 and make it behave like the analogous argument to `write-file'.
4455
4456 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4457
4458 * progmodes/ebnf2ps.el: Doc fix.
4459 (ebnf-version): New version number (4.2).
4460 (ebnf-syntax): Customization and docstring fix.
4461 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
4462 Put autoloaded funs before first use.
4463 (ebnf-style-database): Add dtd entry.
4464 (ebnf-syntax-alist): Add dtd initialization.
4465 (ebnf-token-sequence): New fun.
4466 (ebnf-comment-table): Add new comment action character.
4467 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
4468
4469 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
4470 Type Definition for XML).
4471
4472 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
4473 * progmodes/ebnf-bnf.el (ebnf-sequence):
4474 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
4475 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
4476 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
4477 Code simplification: call ebnf-token-sequence.
4478
4479 2004-04-04 Eli Zaretskii <eliz@gnu.org>
4480
4481 * calendar/timeclock.el (timeclock-relative)
4482 (timeclock-get-project-function, timeclock-get-workday-function)
4483 (timeclock-query-out, timeclock-when-to-leave)
4484 (timeclock-when-to-leave-string, timeclock-log-data)
4485 (timeclock-generate-report, timeclock-in): Doc fixes.
4486
4487 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4488
4489 * url/: New dir. Import the URL package from its repository.
4490
4491 2004-04-03 Andreas Schwab <schwab@suse.de>
4492
4493 * diff-mode.el (diff-mode): Fix missing quote.
4494
4495 2004-04-03 Juri Linkov <juri@jurta.org>
4496
4497 * descr-text.el (describe-property-list): Add `font-lock-face'.
4498
4499 * dired.el (dired-font-lock-keywords): Fix permission regexps.
4500
4501 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4502
4503 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
4504 Use utf-16le on little endian machines and utf-16be otherwise.
4505
4506 2004-04-02 David Kastrup <dak@gnu.org>
4507
4508 * net/browse-url.el (browse-url-generic): Use call-process
4509 instead of start-process to allow browsers that fork and detach.
4510
4511 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
4512
4513 * compile.el (compilation-current-error): New var.
4514 (compilation-setup, compile-mouse-goto-error)
4515 (compile-goto-error, next-error): Use it.
4516 (compilation-skip-to-next-location): Default to t, which gives
4517 contiguous skipping like old compile (where this was redundant).
4518 (compilation-next-error): Prevent previous-* commands from moving
4519 back to message at or just before point.
4520
4521 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
4522
4523 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
4524 (gdb-source-info): Don't display source at startup, if required.
4525 (gdb-show-main): New option.
4526 (gdba): Update documentation.
4527 (gdb-source): Cover case of auto-display output.
4528
4529 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
4530
4531 * autorevert.el: Delete obsolete autoload's and defvar's.
4532 (auto-revert-check-vc-info): New user option.
4533 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
4534 (auto-revert-handler-vc): Delete.
4535 (auto-revert-handler): Treat return value `fast' of
4536 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
4537
4538 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
4539 return `fast'.
4540
4541 * files.el (buffer-stale-function): Doc change.
4542
4543 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4544
4545 * printing.el: New tip on Tips section.
4546 (pr-version): New version number (6.7.4).
4547 (pr-shell-file-name): Initialization fix.
4548
4549 2004-03-31 Juri Linkov <juri@jurta.org>
4550
4551 * dired.el: Add autoload for `dired-do-touch'.
4552 (dired-touch-program): New var.
4553 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
4554 (dired-no-confirm): Add `touch' to docstring.
4555
4556 * dired-aux.el (dired-do-touch): New fun.
4557 (dired-do-chxxx): Add argument -t for touch operation.
4558
4559 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
4560 `dired-move-to-filename-regexp'.
4561
4562 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
4563
4564 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
4565
4566 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4567
4568 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
4569 and only if the buffer was modified.
4570
4571 2004-03-30 Kenichi Handa <handa@m17n.org>
4572
4573 * international/characters.el: Delete pairs for U+2308..U+230B.
4574
4575 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
4576
4577 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
4578 to detect the beginning of a level 2 or 3 annotation.
4579
4580 2004-03-29 Kenichi Handa <handa@m17n.org>
4581
4582 * international/ucs-tables.el (ucs-insert): Fix the error message.
4583
4584 2004-03-29 Kenichi Handa <handa@m17n.org>
4585
4586 * international/mule-util.el (char-displayable-p): Fix generation
4587 of XLFD file name.
4588
4589 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4590 before finding directories by `find'.
4591
4592 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4593
4594 * subr.el (interactive-form): Delete. Now implemented in C.
4595
4596 * pcvs.el (cvs-parse-process): Workaround for Darwin.
4597
4598 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
4599 (vc-diff-label): New fun.
4600 (vc-diff-internal): Use it.
4601
4602 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
4603
4604 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4605
4606 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
4607
4608 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
4609 specify XML (EBNFX).
4610
4611 * progmodes/ebnf2ps.el: Doc fix.
4612 (ebnf-version): New version number (4.1).
4613 (ebnf-syntax): Adjust customization.
4614 (ebnf-style-database): Add ebnfx entry.
4615 (ebnf-syntax-alist): Add ebnfx initialization.
4616 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
4617
4618 * printing.el: Doc fix.
4619 (pr-version): New version number (6.7.3).
4620 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
4621 returns nil for mouse position. Reported by Drew Adams
4622 <drew.adams@oracle.com>.
4623 (pr-update-menus): Modify interactive declaration. Reported by Drew
4624 Adams <drew.adams@oracle.com>.
4625
4626 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
4627
4628 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
4629 (gud-gdba-marker-filter): Log the process input and output, if
4630 required. From Stefan Monnier.
4631 (gdb-debug-log, gdb-enable-debug-log): New variables.
4632 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
4633
4634 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4635
4636 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
4637 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
4638
4639 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
4640
4641 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
4642 Call vc-find-file-hook here instead of in auto-revert-buffers.
4643 (auto-revert-buffers): Delete call to vc-find-file-hook.
4644 (auto-revert-verbose, global-auto-revert-non-file-buffers)
4645 (global-auto-revert-mode, auto-revert-set-timer)
4646 (auto-revert-handler, auto-revert-buffers): Doc fixes.
4647
4648 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4649
4650 * woman.el (woman-change-fonts): Rename local variable
4651 woman-font-alist to font-alist to avoid a compiler warning.
4652
4653 2004-03-27 Dave Love <fx@gnu.org>
4654
4655 * emacs-lisp/rx.el (rx): Doc fix.
4656 Fix copyright years.
4657
4658 * strokes.el (strokes-global-set-stroke-string): New function.
4659 (strokes-list-strokes): Cope with strings, not just commands.
4660 Set foreground colour of image.
4661 (strokes-global-set-stroke): Doc fix.
4662
4663 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
4664
4665 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
4666 Auto Revert mode.
4667 (Buffer-menu-files-only): New variable.
4668 (Buffer-menu-toggle-files-only): New function.
4669 (Buffer-menu-mode-map): Bind it to `T'.
4670 (Buffer-menu-mode): Mention `T' in docstring.
4671 Set buffer-stale-function.
4672 (list-buffers-noselect): Mark buffer non-modified and set
4673 Buffer-menu-files-only.
4674
4675 * dired.el (buffer-stale-function): Remove no longer needed defvar.
4676
4677 * autorevert.el (auto-revert-handler): Print revert message
4678 before, rather than after, reverting.
4679 (buffer-stale-function): Move to files.el.
4680
4681 * files.el (buffer-stale-function): Move here from autorevert.el.
4682
4683 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4684
4685 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
4686
4687 * calc/calc.el (calc-mode-map): Use mapc.
4688
4689 * apropos.el (apropos-mode): Don't autoload.
4690 (apropos-symbols-internal): New fun. Extracted from `apropos'.
4691 (apropos): Use it.
4692 (apropos-print): Add optional `text' argument.
4693 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
4694 Don't assume point-min == 1.
4695
4696 * bs.el (bs-buffer-list): Use buffer-local-value.
4697 (bs--set-toggle-to-show): Use with-current-buffer.
4698
4699 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
4700 New funs.
4701 (list-buffers-noselect): Use them. Adjust :align-to to new style.
4702
4703 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
4704
4705 * dabbrev.el (dabbrev-expand): Fix regexp construction.
4706 (dabbrev--find-expansion): Use pop.
4707 (dabbrev--search): Use match-string-no-properties.
4708
4709 * dired.el (dired-mode): Use run-mode-hooks.
4710 (dired-move-to-end-of-filename): Use match-string.
4711
4712 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
4713 is bound before using it.
4714 (ediff-verbose-p): Make it into a var since it's not constant.
4715
4716 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
4717
4718 * faces.el (read-face-font): Don't cons up unnecessarily.
4719 (header-line, tool-bar): Share common parts.
4720
4721 * files.el (file-relative-name): Use compare-strings.
4722
4723 * finder.el (finder-mode): Follow coding convention.
4724
4725 * subr.el (read-number): New function.
4726
4727 * ses.el (ses-read-number): Move to subr.el.
4728 (ses-set-header-row): Use read-number.
4729
4730 2004-03-26 Andre Spiegel <spiegel@gnu.org>
4731
4732 * vc-hooks.el (vc-arg-list): New function, which handles both
4733 compiled and uncompiled code.
4734 (vc-default-workfile-unchanged-p): Use it.
4735
4736 * vc.el (vc-print-log): Undo prev change, use new function
4737 vc-arg-list from vc-hooks.el.
4738
4739 2004-03-26 Masatake YAMATO <jet@gyve.org>
4740
4741 * simple.el (completion-setup-function): Emphasize the
4742 first uncommon characters in the completions; and de-emphasize
4743 the common prefix substrings.
4744 (completion-emphasis): New face.
4745 (completion-de-emphasis): New face.
4746
4747 2004-03-25 Juanma Barranquero <lektu@terra.es>
4748
4749 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
4750 Comment out (it's unused and unfinished code).
4751
4752 2004-03-25 Sam Steingold <sds@gnu.org>
4753
4754 * vc.el (vc-print-log): Fix a bug in the last patch:
4755 backend-function may be a byte-compiled object, not a lambda.
4756
4757 2004-03-25 Juri Linkov <juri@jurta.org>
4758
4759 * descr-text.el (describe-property-list): Add a button
4760 for `face' property that calls `describe-face'.
4761 Suggested by luis fernandes <elf@ee.ryerson.ca>
4762
4763 * international/mule.el (keyboard-coding-system):
4764 * kmacro.el (kmacro-call-macro): Fix docstring.
4765
4766 * dired.el: Fix comments.
4767
4768 * textmodes/fill.el (fill): Fix Info link.
4769
4770 * font-lock.el (fast-lock, lazy-lock):
4771 * jit-lock.el (jit-lock): Remove links to removed Support Modes
4772 Info node.
4773
4774 * eshell/eshell.el (eshell): Fix broken info-link.
4775
4776 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
4777 * eshell/em-banner.el (eshell-banner):
4778 * eshell/em-smart.el (eshell-smart):
4779 * eshell/esh-cmd.el (eshell-cmd):
4780 Comment out broken info-links to incomplete Info manual.
4781
4782 * info-xref.el: Fix commentary.
4783
4784 2004-03-25 Kevin Ryde <user42@zip.com.au>
4785
4786 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
4787 Remove spurious node duplicate suppression, doesn't work, not wanted.
4788 (info-xref-output): Take format style args, add "sit-for 0" to let
4789 user see the results as they progress.
4790 (info-xref-check-all-custom): New function.
4791
4792 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
4793
4794 * gdb-ui.el: Moved to progmodes.
4795
4796 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4797
4798 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
4799
4800 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
4801
4802 * calendar/appt.el (appt-check): Remove superfluous progn.
4803 When finished with diary buffer: if it was not being displayed
4804 before, kill it; otherwise restore its original state.
4805 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
4806
4807 * calendar/calendar.el (calendar-set-mode-line): Use total
4808 available mode-line width, rather than frame-width.
4809
4810 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
4811 after mode change so effect not lost.
4812
4813 2004-03-23 Dave Love <fx@gnu.org>
4814
4815 * dired.el (dired) <defgroup>: Add link to manual.
4816 (dired-font-lock-keywords): Add highlighting on unusual permissions.
4817 (dired-revert): Use dolist.
4818 (dired-mode-map): Add U binding.
4819 (dired-mode): Add font-lock-beginning-of-syntax-function.
4820 (dired-garbage-files-regexp): Make it a defcustom.
4821
4822 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4823
4824 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
4825 is equivalent to nil.
4826 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
4827 (vc-arch-mode-line-string): Accept `added' state.
4828 (vc-arch-state): Use inode-sigs if available.
4829 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
4830 Copy&delete existing id file if any. Fallback if uuidgen is absent.
4831 (vc-arch-tagline-re): New var.
4832 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
4833 New functions.
4834 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
4835 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
4836
4837 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
4838 (vc-file-not-found-hook): Use it.
4839
4840 * diff-mode.el (diff-default-read-only): Change default.
4841 (diff-mode-hook): Make it a defcustom. Add some options.
4842 (diff-mode-map): Bind diff-refine-hook.
4843 (diff-yank-handler): New var.
4844 (diff-yank-function): New fun.
4845 (diff-font-lock-keywords): Use them.
4846 (diff-end-of-file): Handle case where file-header looks like diff text.
4847 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
4848 (diff-file-kill): Delete a subsequent empty line, if applicable.
4849 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
4850 (diff-find-file-name): Use it.
4851 (diff-tell-file-name): New command.
4852 (diff-mode): Be careful with view-mode.
4853 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
4854 New functions, for use in diff-mode-hook.
4855 (diff-find-source-location): Catch "regex too large" errors.
4856 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
4857 (diff-refine-hunk): New command.
4858
4859 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
4860 (smerge-context-menu-map): Remove unused var.
4861 (smerge-keep-all): Preserve markers.
4862 (smerge-keep-n): New fun.
4863 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4864 (smerge-keep-current, smerge-ediff): Use it.
4865 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
4866 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
4867 (smerge-resolve): Resolve trivial 3-part conflicts.
4868
4869 2004-03-23 Juri Linkov <juri@jurta.org>
4870
4871 * man.el (Man-width): New var.
4872 (Man-getpage-in-background): Use it.
4873 (Man-support-local-filenames): New var and fun.
4874 (Man-build-man-command): Don't add a second %s.
4875 (Man-fontify-manpage): Clean up message.
4876 (Man-mode): Set outline-regexp, outline-level,
4877 imenu-generic-expression.
4878
4879 * woman.el (woman-fill-frame): Doc fix.
4880 (woman-decode-region): Use window-width instead of frame-width.
4881
4882 * abbrevlist.el (list-one-abbrev-table):
4883 * descr-text.el (describe-char):
4884 * international/mule-diag.el (describe-current-coding-system):
4885 * international/quail.el (quail-insert-decode-map):
4886 Use window-width instead of frame-width.
4887
4888 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
4889 (jka-compr-mode-alist-additions): Add tbz.
4890 (jka-compr-write-region, jka-compr-insert-file-contents):
4891 Add message for undefined compress-program.
4892 (jka-compr-write-region): Remove redundant var bindings.
4893
4894 * dired-x.el (dired-guess-shell-alist-default): Add choices for
4895 extracting files into subdirectory. Add tbz and dz. Fix regexps.
4896 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
4897 (dired-man): Use dired-guess-shell-command.
4898 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
4899 Change default nil to t.
4900
4901 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
4902 (dired-compare-directories): Add default value for empty input.
4903
4904 * help-at-pt.el: Move suggestions for key bindings to Commentary.
4905
4906 * time.el (display-time-string-forms): Fix help-echo date format.
4907
4908 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
4909
4910 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
4911 (buffer-stale-function): New variable.
4912 (auto-revert-list-diff, auto-revert-dired-file-list)
4913 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
4914 (auto-revert-handler): Take over some functionality of deleted
4915 functions.
4916 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
4917
4918 * dired.el (dired-directory-changed-p): New fun, extracted from
4919 dired-internal-noselect.
4920 (dired-buffer-stale-p): New fun.
4921 (dired-internal-noselect): Use dired-directory-changed-p.
4922 Eliminate revert messages.
4923 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
4924
4925 2004-03-23 Kenichi Handa <handa@m17n.org>
4926
4927 * international/characters.el: Setup syntaxes for more parentheses
4928 Unicode characters.
4929
4930 * international/mule-cmds.el (select-safe-coding-system):
4931 Merge coding-system and auto-cs before comparing them.
4932
4933 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
4934
4935 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
4936
4937 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4938 normal-auto-fill-function and comment-indent-function.
4939 The default values now work just as well.
4940 Don't set font-lock-beginning-of-syntax-function since we already set
4941 syntax-begin-function.
4942 (lisp-outline-level): Put ;;;###autoload at same level as (.
4943 (prin1-char): Quote special chars.
4944
4945 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
4946 than with-no-warnings.
4947
4948 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
4949 if the source location can't be found.
4950 (edebug-compute-previous-result): Use prin1-char.
4951
4952 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
4953 (debug-ignored-errors): Add an entry.
4954
4955 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
4956 (byte-compile-file): Output warning when deleting a file.
4957
4958 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
4959 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
4960
4961 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
4962 (byte-compile-inline-expand): Use backquote.
4963 (byte-optimize-pure-func): Rename from byte-optimize-concat.
4964 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
4965
4966 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
4967
4968 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
4969
4970 2004-03-22 Juri Linkov <juri@jurta.org>
4971
4972 * finder.el (finder-known-keywords): Fix data, tex, unix.
4973
4974 * play/landmark.el: Fix keywords.
4975
4976 * language/ethio-util.el (ethio-find-file): Doc fix.
4977
4978 * emacs-lisp/warnings.el: Doc fix.
4979
4980 * textmodes/ispell.el (ispell-help): Doc fix.
4981
4982 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
4983
4984 * format.el (format-insert-file): Always return a list of two
4985 elements, like insert-file-contents does.
4986
4987 2004-03-21 Andre Spiegel <spiegel@gnu.org>
4988
4989 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
4990 and vc-BACKEND-diff.
4991 (vc-print-log): If the print-log implementation supports it, use
4992 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
4993 (vc-version-diff, vc-diff-internal): Doc fixes.
4994
4995 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
4996 implementation supports it, let diff output go to *vc*,
4997 not *vc-diff*, since this is an internal call.
4998
4999 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
5000
5001 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
5002
5003 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
5004
5005 2004-03-21 Dave Love <fx@gnu.org>
5006
5007 * progmodes/cfengine.el (cfengine-mode):
5008 Set parse-sexp-ignore-comments.
5009
5010 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
5011
5012 2004-03-21 Juanma Barranquero <lektu@terra.es>
5013
5014 * allout.el (allout-mode): Fix docstring.
5015
5016 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
5017
5018 * files.el (insert-directory): Fix bug if SWITCHES is a list.
5019
5020 * autorevert.el (auto-revert-interval): Make new value take
5021 effect immediately when set through Custom.
5022 (auto-revert-set-timer): Add interactive declaration.
5023
5024 2004-03-19 David Ponce <david@dponce.com>
5025
5026 * ruler-mode.el (ruler-mode-header-line-format-old):
5027 Don't `make-variable-buffer-local'.
5028 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
5029 (ruler-mode-header-line-format): Simply funcall the above.
5030 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
5031 to save/restore a previous header line format.
5032 (ruler-mode-space): Don't depend on a numeric WIDTH value.
5033 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
5034 fringes and margins width.
5035 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
5036
5037 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
5038
5039 * log-edit.el (log-edit-font-lock-keywords): Typo.
5040
5041 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
5042 (tex-send-tex-command): Rather than here.
5043 (tex-compilation-parse-errors): Simplify.
5044
5045 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
5046
5047 * time.el (display-time-string-forms): Add help-echo with date on time.
5048
5049 * composite.el (compose-region): Use restore-buffer-modified-p.
5050
5051 * disp-table.el (standard-display-8bit): Simplify.
5052
5053 * server.el (server-process-filter): Delete temp frame.
5054
5055 * add-log.el (add-change-log-entry): Simplify.
5056
5057 2004-03-19 Kim F. Storm <storm@cua.dk>
5058
5059 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
5060 (hexl-follow-line): Don't require 'fringe.
5061
5062 * progmodes/compile.el (compilation-start): Always set
5063 compilation-last-buffer and return it.
5064
5065 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
5066
5067 * simple.el (clone-buffer): Doc fix.
5068
5069 2004-03-18 Juanma Barranquero <lektu@terra.es>
5070
5071 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
5072
5073 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
5074
5075 * log-edit.el (log-edit-font-lock-keywords): New var.
5076 (log-edit-mode): Use it.
5077
5078 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
5079
5080 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
5081 properly for watching in speedbar.
5082
5083 2004-03-17 Masatake YAMATO <jet@gyve.org>
5084
5085 * smerge-mode.el (smerge-popup-context-menu):
5086 Put `unwind-protect' around `overlay-put' and `popup-menu'.
5087
5088 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
5089
5090 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
5091 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
5092 Take sealed revisions into account.
5093 (vc-arch-checkin): Extract a summary line from the message.
5094
5095 2004-03-16 Masatake YAMATO <jet@gyve.org>
5096
5097 * register.el (register): Provide `register' feature.
5098
5099 2004-03-15 Masatake YAMATO <jet@gyve.org>
5100
5101 Added context menu support in smerge mode.
5102 Most of the part is written by Stefan Monnier.
5103
5104 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
5105 New keymap and menu.
5106 (smerge-text-properties): New function.
5107 (smerge-remove-props): New function.
5108 (smerge-popup-context-menu): New function.
5109 (smerge-resolve): Call `smerge-remove-props'.
5110 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
5111 (smerge-keep-current): Ditto.
5112 (smerge-kill-current): New function.
5113 (smerge-match-conflict): Put text properties.
5114 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
5115
5116 2004-03-15 David Ponce <david@dponce.com>
5117
5118 * ruler-mode.el: (ruler-mode-left-fringe-cols)
5119 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
5120 (ruler-mode-right-scroll-bar-cols): Remove.
5121 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
5122 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
5123 Use fringe-columns and scroll-bar-columns.
5124
5125 2004-03-15 Masatake YAMATO <jet@gyve.org>
5126
5127 * hl-line.el (hl-line-range-function): New variable.
5128 (hl-line-move): New function.
5129 (global-hl-line-highlight): Use `hl-line-move'.
5130 (hl-line-highlight): Ditto.
5131
5132 * scroll-bar.el (scroll-bar-columns):
5133 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
5134
5135 * ruler-mode.el (top-level): Require scroll-bar and fringe.
5136 (ruler-mode-left-fringe-cols)
5137 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
5138 (ruler-mode-right-scroll-bar-cols)
5139 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
5140 (ruler-mode-ruler-function): New variable.
5141 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
5142 if the value for `ruler-mode-ruler-function'is given.
5143
5144 * hexl.el (hexl-mode-hook): Make the hook customizable.
5145 (hexl-address-area, hexl-ascii-area): New customize variables.
5146 (hexlify-buffer): Put font-lock-faces on the address area and
5147 the ascii area.
5148 (hexl-activate-ruler): New function.
5149 (hexl-follow-line): New function.
5150 (hexl-highlight-line-range): New function.
5151 (hexl-mode-ruler): New function.
5152
5153 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
5154
5155 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
5156 (vc-default-find-file-hook): New fun.
5157 (vc-find-file-hook): Call new find-file-hook operation.
5158
5159 * vc-arch.el: New file.
5160
5161 2004-03-12 Jesper Harder <harder@ifa.au.dk>
5162
5163 * info-look.el (info-lookup): Reuse an existing Info window.
5164
5165 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5166
5167 * woman.el (woman-preserve-ascii): Default value changed to t and
5168 doc string revised.
5169
5170 2004-03-12 Richard M. Stallman <rms@gnu.org>
5171
5172 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
5173 Fix minor bug.
5174
5175 * replace.el (occur-engine): Change message for count of matches.
5176
5177 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
5178 For strings, do compare text properties.
5179
5180 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
5181
5182 * progmodes/compile.el (compile-auto-highlight)
5183 (compilation-error-list, compilation-old-error-list)
5184 (compilation-parse-errors-function, compilation-parsing-end)
5185 (compilation-error-message, compilation-directory-stack)
5186 (compilation-enter-directory-regexp-alist)
5187 (compilation-leave-directory-regexp-alist)
5188 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
5189 (compilation-current-file, compilation-regexps): Remove vars.
5190
5191 (compile-error-at-point, compilation-error-filedata)
5192 (compilation-error-filedata-file-name, compile-reinitialize-errors)
5193 (compilation-next-error-locus, compilation-forget-errors)
5194 (count-regexp-groupings, compilation-parse-errors)
5195 (compile-collect-regexps, compile-buffer-substring): Remove funs.
5196
5197 (compile-internal): Make obsolete.
5198
5199 (compilation-first-column, compilation-error)
5200 (compilation-directory-matcher, compilation-page-delimiter)
5201 (compilation-mode-font-lock-keywords, compilation-debug)
5202 (compilation-error-face, compilation-warning-face)
5203 (compilation-info-face, compilation-line-face)
5204 (compilation-column-face, compilation-enter-directory-face)
5205 (compilation-leave-directory-face, compilation-skip-threshold)
5206 (compilation-skip-visited, compilation-context-lines): New vars.
5207
5208 (compilation-warning-face, compilation-info-face)
5209 (compilation-message-face): New faces.
5210
5211 (compilation-error-regexp-alist-alist): New constant.
5212
5213 (compilation-face, compilation-directory-properties)
5214 (compilation-assq, compilation-error-properties, compilation-start)
5215 (define-compilation-mode, compilation-loop)
5216 (compilation-set-window): New functions.
5217
5218 (compile): Additional argument for interactive compiles like TeX.
5219
5220 * progmodes/grep.el (kill-grep): Move here from compile.el
5221 (grep-error, grep-hit-face, grep-error-face)
5222 (grep-mode-font-lock-keywords): New variables.
5223 (grep-regexp-alist): Simplify regexp and add `binary' case.
5224 (grep-mode): New mode.
5225 (grep-process-setup): Simplify.
5226
5227 2004-03-11 Jason Rumney <jasonr@gnu.org>
5228
5229 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
5230 letters on DOS/Windows.
5231
5232 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
5233
5234 * server.el (server-name): New var.
5235 (server-socket-dir): New var to replace server-socket-name.
5236 (server-start): Use them.
5237
5238 2004-03-11 Simon Josefsson <jas@extundo.com>
5239
5240 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
5241 died to avoid infloop. Reported by Jonathan Glauner
5242 <jglauner@sbum.org>.
5243
5244 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5245
5246 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
5247 (smerge-mode-menu): Use it to deactivate menu entries.
5248 (smerge-keep-current): New fun.
5249 (smerge-keep-current): Use it.
5250
5251 2004-03-10 John Paul Wallington <jpw@gnu.org>
5252
5253 * foldout.el (foldout-fold-list, foldout-modeline-string):
5254 Declare them as variables, not constants.
5255
5256 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5257
5258 * ps-print.el: Modification to print *Messages* buffer.
5259 (ps-print-version): New version 6.6.4.
5260 (ps-message-log-max): New fun.
5261 (ps-spool-without-faces, ps-spool-with-faces)
5262 (ps-count-lines-preprint): Code fix.
5263
5264 * printing.el: New tips in Tips section.
5265
5266 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5267
5268 * delim-col.el: Doc fix.
5269
5270 * printing.el: Doc fix. New doc section (Tips).
5271
5272 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
5273
5274 * type-break.el (type-break-emacs-variant): Remove.
5275 (type-break-run-at-time, type-break-cancel-function-timers):
5276 Use fboundp rather than version name and number.
5277
5278 2004-03-09 Masatake YAMATO <jet@gyve.org>
5279
5280 * hexl.el (hexl-mode): Use `make-local-variable' instead of
5281 `make-variable-buffer-local'.
5282
5283 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
5284
5285 * find-dired.el (find-dired): Call `shell-command' instead of
5286 `start-process-shell-command'. By this, Tramp takes over
5287 handling of remote directories.
5288
5289 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
5290
5291 * newcomment.el (comment-use-global-state): New var.
5292 (comment-search-forward): Use it.
5293
5294 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
5295
5296 * cus-edit.el (fill) <defgroup>: Move to fill.el.
5297
5298 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
5299 (enable-kinsoku): Make it a defcustom.
5300 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
5301 paragraph to same-comment-start-marker.
5302
5303 2004-03-07 Dave Love <fx@gnu.org>
5304
5305 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
5306 (browse-url-mail): Use it.
5307
5308 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
5309 (rfc2368-unhexify-string): Use replace-regexp-in-string.
5310
5311 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
5312
5313 * woman.el (woman-man.conf-path): Doc fix.
5314 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
5315
5316 2004-03-07 Eli Zaretskii <eliz@gnu.org>
5317
5318 * sort.el (sort-columns): Remove ms-dos from the list of systems
5319 where the external `sort' command is not used.
5320
5321 2004-03-07 Kim F. Storm <storm@cua.dk>
5322
5323 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
5324 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
5325 from overlay-arrow-variable-list.
5326 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
5327
5328 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
5329
5330 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
5331 overlay arrow string properly for the assembler buffer.
5332
5333 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
5334
5335 * mail/sendmail.el (mail-mode): Fix last change.
5336
5337 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
5338
5339 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
5340 for the assembler buffer.
5341 (gdb-assembler-custom): Position the overlay arrow.
5342 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
5343
5344 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
5345
5346 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
5347
5348 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
5349 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
5350
5351 * mail/sendmail.el (mail-mode): Set comment-start-skip.
5352
5353 * newcomment.el (uncomment-region): Allow non-terminated comment.
5354 (comment-normalize-vars): Check the user-specified comstart marker.
5355
5356 2004-03-04 Jesper Harder <harder@ifa.au.dk>
5357
5358 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
5359 Otherwise, do use it if the region only contains font-lock text
5360 properties.
5361
5362 2004-03-04 Masatake YAMATO <jet@gyve.org>
5363
5364 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
5365 as the callback function for eldoc.
5366 (hexl-print-current-point-info): New function.
5367 (hexl-current-address): Print the address in both decimal
5368 and hexadecimal format.
5369
5370 2004-03-04 Richard M. Stallman <rms@gnu.org>
5371
5372 * mail/rmail.el (rmail-convert-to-babyl-format):
5373 Specify t for UNIBYTE when calling mail-unquote-printable-region.
5374
5375 * mail/mail-utils.el (mail-unquote-printable-region):
5376 New arg UNIBYTE.
5377
5378 * startup.el (command-switch-alist): Doc fix.
5379
5380 * simple.el (undo): Temporarily set this-command to `undo-start',
5381 then set it to `undo' once undo-start returns without error.
5382
5383 * simple.el (minibuffer-history-sexp-flag): Doc fix.
5384
5385 * simple.el (kill-line): Don't disregard trailing whitespace
5386 in eol condition, if show-trailing-whitespace is set.
5387
5388 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
5389 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
5390 When disabling, restore old values only if mouse-sel-has-been-enabled.
5391
5392 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
5393 (isearch-{-char): New function.
5394 (isearch-mode-map): Bind { to isearch-{-char.
5395
5396 * font-lock.el (lisp-font-lock-keywords-2):
5397 Turn off the CL with-... and do-... general patterns.
5398 Instead, recognize several specific with... and do... constructs.
5399
5400 * files.el (switch-to-buffer-other-window):
5401 Bind same-window-buffer-names and same-window-regexps to nil.
5402 (switch-to-buffer-other-frame): Likewise.
5403
5404 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
5405
5406 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
5407 recognizing leading comment on code line.
5408
5409 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5410
5411 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
5412 hidden files/directories.
5413
5414 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5415
5416 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
5417 only comment-start (in case the mode hasn't set it).
5418
5419 * Makefile.in (AUTOGENEL): New var.
5420 (bootstrap-prepare): Rename from bootstrap-clean.
5421 Don't remove elc files.
5422 (maintainer-clean): New target.
5423
5424 * xml.el (xml-get-attribute-or-nil): Simplify.
5425
5426 2004-03-02 Juri Linkov <juri@jurta.org>
5427
5428 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
5429 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
5430 URL to prevent their substitution with the environment variable
5431 values by browsers.
5432
5433 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5434
5435 * ps-print.el: Doc fix.
5436 (ps-print-version): New version number (6.6.3).
5437 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
5438 Docstring fix.
5439 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
5440 before printing.
5441 (ps-time-stamp-yyyy-mm-dd): New fun.
5442 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
5443
5444 2004-03-02 Kim F. Storm <storm@cua.dk>
5445
5446 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
5447
5448 2004-03-01 Juanma Barranquero <lektu@terra.es>
5449
5450 * allout.el (allout-rebullet-heading): Fix typo in docstring.
5451
5452 * desktop.el (desktop-file-version)
5453 (desktop-after-read-hook): Fix typos.
5454 (desktop-clear-preserve-buffers): Remove redundant info in
5455 docstring already shown by the obsolescence message.
5456 (desktop-truncate, desktop-internal-v2s)
5457 (desktop-value-to-string): Change argument name to match docstring.
5458
5459 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
5460
5461 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
5462 docstring.
5463
5464 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5465
5466 * printing.el: Replace "As Is..." in PostScript file print/preview by
5467 "No Preprocessing...". Suggested by Colin Marquardt
5468 <_marquardt_@zmd.de>.
5469 (pr-insert-section-4): Adjust buffer interface.
5470
5471 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
5472
5473 Version 2.0.39 of Tramp released.
5474
5475 * net/tramp.el (tramp-handle-file-local-copy)
5476 (tramp-handle-write-region, tramp-open-connection-rsh):
5477 Variable name typo. Small change. From Patrick Tullmann
5478 <tullmann@flux.utah.edu>.
5479 (tramp-process-connection-type): New variable.
5480 (tramp-maybe-open-connection): Use it.
5481 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
5482 (tramp-touch): Set last-modified time of a remote file.
5483 (tramp-handle-write-region): Say which function is used when encoding.
5484
5485 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
5486
5487 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
5488 case of non-existing filename, too. Reported by Christoph Bauer
5489 <c_bauer@informatik.uni-kl.de>.
5490 (tramp-smb-get-file-entries): The directory in question should
5491 have permissions "drwxrwxrwx". Just virtual, because we don't
5492 know the real permissions. Don't we know?
5493 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
5494 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
5495 (tramp-smb-wait-for-output): Optimize algorithm getting pending
5496 output. If it was received chunkwise, there have been problems.
5497 Remove the "prompt not found" error message; it is obvious.
5498 Simplify algorithm.
5499 (tramp-smb-process-running): Remove. Since we acknowledge the
5500 virtual prompt for shares, there's no need for distinction of
5501 reading shares (process ends afterwards) and interactive mode of
5502 smblient.
5503 (tramp-smb-open-connection): Setting process sentinel removed.
5504 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
5505 "NT_STATUS_NETWORK_ACCESS_DENIED".
5506 (tramp-smb-maybe-open-connection): Set `process-connection-type'
5507 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
5508 (top-level): Setting default value in `tramp-default-method-alist'
5509 corrected. Order of USER and HOST have been wrong.
5510 Nobody complained for months ...
5511 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
5512 (tramp-smb-open-connection): Clear password cache if login has failed.
5513
5514 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
5515 `tramp-unified-filenames'.
5516 (tramp-completion-mode): Make test for XEmacs explicitely.
5517 `event-to-character' can exists in Emacs packages too.
5518 Reported by Matt Swift <swift@alum.mit.edu>.
5519 (tramp-buffer-name): Buffer name must contain the user if exists.
5520 Reported by Adrian Phillips <a.phillips@met.no>.
5521 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
5522 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
5523 (tramp-do-copy-or-rename-file-out-of-band): Rename from
5524 `tramp-do-copy-or-rename-file-one-local', because it handles also
5525 the case both files use the same out-of-band method.
5526 Implementation added.
5527 (tramp-handle-file-local-copy, tramp-handle-write-region):
5528 Out-of-band handling removed. `copy-file' called instead, which
5529 calls `tramp-do-copy-or-rename-file-out-of-band'.
5530 (tramp-action-password): Check for out-of-band method removed.
5531 This function is used for 'login-program.
5532 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
5533 appropriate.
5534 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
5535 and `tramp-parse-sknownhosts'.
5536 (tramp-completion-function-alist): It's a defvar now, because we
5537 want to apply the optimized `tramp-set-completion-function'
5538 instead of a static list.
5539 (tramp-set-completion-function): Implementation tuned.
5540 Avoid double entries, and entries where the function or the
5541 file/directory doesn't exist.
5542 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
5543 for SSH2.
5544 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
5545 (tramp-handle-dired-compress-file): New function.
5546 (tramp-async-proc): New variable.
5547 (tramp-handle-shell-command): Adding asynchronous processes.
5548 They are far from being perfect, but it works at least for
5549 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
5550 (top-level): Require password.el if visible. Should be mandatory
5551 once No Gnus has found its way into (X)Emacs.
5552 (tramp-read-passwd): Invoke `password-read' if available,
5553 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
5554 fallback any longer.
5555 (tramp-clear-passwd): New function.
5556 (tramp-process-actions, tramp-process-multi-actions):
5557 Clear password cache if login has failed.
5558
5559 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
5560 its own module.
5561 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
5562 `ange-ftp-ftp-name-res'. There could be incorrect values from
5563 previous calls in case the "ftp" method is used in the Tramp file
5564 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5565
5566 2004-02-28 Richard M. Stallman <rms@gnu.org>
5567
5568 * term.el (term-mouse-paste): Call mouse-set-point.
5569
5570 * thumbs.el: New file.
5571
5572 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5573
5574 * progmodes/ebnf-abn.el: Doc fix.
5575
5576 * progmodes/ebnf-bnf.el: Doc fix.
5577 (ebnf-repeat): Code fix.
5578
5579 * progmodes/ebnf2ps.el: Doc fix.
5580 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
5581
5582 2004-02-28 Juri Linkov <juri@jurta.org>
5583
5584 * ffap.el (dired-at-point): Additional writability test for
5585 relative directory names.
5586 (dired-at-point-prompter): Treat directories as a directory, get
5587 the directory component from files.
5588 (ffap-string-at-point): Return string from region if region is active.
5589 (ffap-file-at-point): Remove redundant code.
5590
5591 2004-02-28 Kim F. Storm <storm@cua.dk>
5592
5593 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
5594 Initialize margin area images to nil.
5595 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
5596 (breakpoint-enabled-bitmap-face)
5597 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
5598 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
5599 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
5600 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
5601 (gdb-reset): Use gdb-remove-breakpoint-icons.
5602 (gdb-put-string): Add dprop arg to specify alternative display
5603 property (for setting fringe bitmap).
5604 (gdb-remove-strings): Doc fix.
5605 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
5606 icon in fringe (if available), or else as icon or text in display
5607 margin. Creates necessary icons in breakpoint-bitmap,
5608 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
5609 Also make left window margin if required.
5610 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
5611 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
5612 no longer needed.
5613 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
5614 gdb-put-breakpoint-icon.
5615 (gdb-assembler-mode): Don't set left-margin-width here.
5616
5617 2004-02-27 Kevin Ryde <user42@zip.com.au>
5618
5619 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
5620 comma, so that it DTRT in macros.
5621
5622 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
5623
5624 * progmodes/sh-script.el (sh-shell-arg)
5625 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
5626 (sh-leading-keywords, sh-other-keywords): Fix custom type.
5627
5628 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
5629
5630 * faces.el (face-spec-set-match-display): Add a new attribute,
5631 `min-colors'.
5632 (region, highlight, secondary-selection): Use `min-colors'.
5633
5634 * custom.el (defface): Add documentation for `min-colors'.
5635
5636 * font-lock.el (font-lock-comment-face, font-lock-string-face)
5637 (font-lock-keyword-face, font-lock-function-name-face)
5638 (font-lock-variable-name-face, font-lock-constant-face):
5639 Use `min-colors'.
5640
5641 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
5642
5643 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5644
5645 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
5646 define assq-delete-all if it's not defined.
5647 (ebnf-generate-region): Code fix.
5648
5649 * printing.el: Doc fix.
5650 (pr-version): New version number (6.7.2).
5651 (pr-command): Return empty string if command is an empty string.
5652
5653 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5654
5655 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
5656
5657 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
5658 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
5659 semi-down-full. Fix a bug on productions like test = {"test"}* | (
5660 "tt" ["test"] ). Reported by Markus Dreyer
5661 <mdreyer@ix.urz.uni-heidelberg.de>.
5662 (ebnf-version): New version number (4.0).
5663 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
5664 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
5665 (ebnf-delete-style): New commands.
5666 (ebnf-directory, ebnf-file): New funs.
5667 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
5668 (ebnf-production-name-p, ebnf-stop-on-error): New options.
5669 (ebnf-syntax-alist): New var.
5670 (ebnf-element-width): New fun replacing ebnf-list-width.
5671 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
5672 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
5673 (ebnf-prologue): Adjust vars.
5674 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
5675 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
5676 (ebnf-check-style-values, ebnf-generate-production)
5677 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
5678 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
5679 (ebnf-token-repeat): Code fix.
5680
5681 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
5682 %right, %left and %prec. Suggested by Matthew K. Junker
5683 <junker@alum.mit.edu>.
5684 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
5685
5686 * progmodes/ebnf-iso.el: Doc fix.
5687 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
5688 (ebnf-iso-lex): Code fix.
5689
5690 * progmodes/ebnf-bnf.el: Doc fix.
5691 (ebnf-bnf-lex): Code fix.
5692
5693 * progmodes/ebnf-otz.el: Doc fix.
5694
5695 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5696
5697 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
5698 (abbrev-prefix-mark): Doc fix.
5699
5700 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
5701
5702 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
5703 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
5704 (gdb-var-delete): Make interactive (really).
5705 (gdb-edit-value): Make non-interactive.
5706
5707 * progmodes/gud.el (gud-speedbar-menu-items):
5708 Add gdb-var-delete and, indirectly, gdb-edit-value.
5709 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
5710 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
5711 (gud-gdb-marker-filter): Add comment for annotations.
5712
5713 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5714
5715 * calendar/calendar.el (generate-calendar)
5716 (calendar-read-date): Prevent display of BC calendars once more -
5717 reverts 2003-10-01 change.
5718 (generate-calendar-month): Doc fix.
5719
5720 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
5721
5722 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
5723 return value of increment-calendar-month.
5724
5725 2004-02-21 Stephen Compall <s11@member.fsf.org>
5726
5727 * saveplace.el (save-place-forget-unreadable-files)
5728 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
5729 (save-place-forget-unreadable-files): New function.
5730 (save-place-alist-to-file): Use it to filter out files that are
5731 no longer readable.
5732
5733 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
5734 current Texinfo environment, using the same method as in
5735 `texinfo-insert-@end', and insert a space rather than a newline if
5736 point in a @table environment.
5737
5738 2004-02-21 Juri Linkov <juri@jurta.org>
5739
5740 * ffap.el (ffap-file-at-point): Try parent directories.
5741
5742 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
5743
5744 * vcursor.el (vcursor-modifiers): New defcustom.
5745 (vcursor-cs-binding): Use vcursor-modifiers instead of a
5746 hard-coded list.
5747
5748 2004-02-21 Masatake YAMATO <jet@gyve.org>
5749
5750 * play/animate.el (animate-birthday-present): Accept names other
5751 than `Sarah', too.
5752
5753 2004-02-21 Juri Linkov <juri@jurta.org>
5754
5755 * startup.el: Remove table of command line arguments from the
5756 Commentary section.
5757
5758 2004-02-20 John Wiegley <johnw@newartisans.com>
5759
5760 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
5761 again" modifier from 'e' to 'E', since 'e' is also used by the
5762 "file extension" modifier.
5763
5764 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5765
5766 * help-fns.el (describe-categories): Doc fix.
5767
5768 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
5769
5770 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
5771 temporary file for buffer already visiting one. This change makes
5772 output likely to be directly usable by patch program.
5773 Suggested by Adrian Aichner <adrian@xemacs.org>
5774
5775 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
5776
5777 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
5778 case of variables defined in compound statements.
5779 (gdb-setup-windows, gdb-source-info, gdb-source-info):
5780 Simplify constructions using switch-to-buffer.
5781
5782 2004-02-19 Simon Josefsson <jas@extundo.com>
5783
5784 * play/morse.el: Fix typo.
5785 (morse-code): Add @.
5786
5787 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
5788
5789 * calendar/appt.el (appt-display-format): Change default to
5790 'ignore, for backwards compatibility.
5791 (appt-display-message): If appt-display-format is 'ignore,
5792 respect old vars appt-msg-window and appt-visible.
5793 (appt-activate): Don't depend on return value of cancel-timer.
5794
5795 * calendar/calendar.el (calendar-holidays): Doc fix.
5796
5797 * calendar/cal-coptic.el (coptic-prompt-for-date):
5798 Use assoc-string instead of assoc-ignore-case.
5799 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
5800 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
5801 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
5802 * calendar/cal-islam.el (calendar-goto-islamic-date)
5803 (mark-islamic-diary-entries): Ditto.
5804 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
5805 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
5806 (calendar-read-mayan-tzolkin-date): Ditto.
5807 * calendar/calendar.el (calendar-read-date): Ditto.
5808 * calendar/diary-lib.el (mark-diary-entries): Ditto.
5809
5810 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
5811
5812 * progmodes/executable.el (executable-command-find-posix-p):
5813 Fix choice of the directory.
5814
5815 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
5816
5817 * simple.el (interprogram-cut-function)
5818 (interprogram-paste-function, kill-new, kill-append):
5819 Doc fixes.
5820 (kill-region): Make it return nil. Doc fix.
5821 (yank-pop): Make its argument optional.
5822 (yank): Make ARG `-' equivalent to `-1'.
5823
5824 2004-02-17 Eli Zaretskii <eliz@gnu.org>
5825
5826 * mail/rmail.el (rmail-get-new-mail): Don't reference
5827 rmail-use-spam-filter if rmail-spam-filter is not loaded.
5828
5829 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
5830
5831 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
5832 if one of global-auto-revert-non-file-buffers or autorevert-mode
5833 is non-nil.
5834
5835 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5836
5837 * subr.el (delete-dups): A better implementation from Karl Heuer
5838 <kwzh@gnu.org>.
5839
5840 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5841
5842 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
5843 correct place.
5844 * progmodes/icon.el (icon-indent-command): Ditto.
5845 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
5846
5847 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5848
5849 * progmodes/grep.el (grep-compute-defaults): Undo change from
5850 2004-01-29: don't use executable-command-find-posix-p.
5851
5852 2004-02-16 Richard Sharman <rsharman@pobox.com>
5853
5854 * hilit-chg.el: Use require instead of eval-and-compile.
5855 (highlight-compare-buffers): New function.
5856
5857 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
5858
5859 * man.el (Man-fontify-manpage): Render section headings in
5860 `Man-overstrike-face' even when overstrike was not used by man
5861 formatter for section headings.
5862
5863 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
5864
5865 * rmail-spam-filter.el: (vm-use-spam-filter)
5866 (rsf-min-region-length-added-to-spam-list): New variables.
5867 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
5868 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
5869 spam testing. Don't delete spam message if automatic deletion
5870 after output via variable rmail-delete-after-output is turned on.
5871 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
5872 rsf-bbdb-dont-create-entries-for-spam.
5873 (check-field): New function, extracted from code in
5874 rmail-spam-filter to ease addition of header fields like content-type.
5875 (message-content-type): New variable to check the content-type:
5876 field added, also in defcustom of rsf-definitions-alist.
5877 (rmail-spam-filter): Replace repeated test code for header fields
5878 by calls to check-field; change the call to
5879 rmail-output-to-rmail-file such that rmail-current-message stays
5880 the same to avoid wrong deletion of unseen flags.
5881 (rsf-add-contents-type): New function to convert old format
5882 of rmail-spam-definitions-alist into new one.
5883 Change prefixes of all variables and functions from
5884 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
5885
5886 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5887
5888 * loadhist.el (unload-hook-features-list): New defvar.
5889
5890 2004-02-16 Dave Love <fx@gnu.org>
5891
5892 * loadhist.el (unload-feature): Doc fix. Rename flist to
5893 unload-hook-features-list.
5894
5895 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
5896
5897 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
5898 cookie. Don't check if we are looking-at open-formula.
5899
5900 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
5901
5902 * subr.el (match-string-no-properties): Use substring-no-properties.
5903
5904 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5905
5906 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
5907 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
5908 Use lower-case "rx" in all error message.
5909
5910 2004-02-16 Dave Love <fx@gnu.org>
5911
5912 * emacs-lisp/rx.el (rx-or): Put group around result.
5913 (rx-constituents): Add backref.
5914 (rx-syntax): Add string-delimiter, comment-delimiter.
5915 (rx-categories): Add combining-diacritic.
5916 (rx-check-not, rx-greedy, rx): Doc fix.
5917 (rx-backref, rx-check-backref): New.
5918
5919 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5920
5921 * newcomment.el (uncomment-region): Allow eob as comment end.
5922
5923 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5924
5925 * filecache.el: All message and error commands now use prefix
5926 "Filecache:" to make it easy to read *Messages* buffer.
5927
5928 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5929
5930 * autorevert.el: Add support to detect changed dired and VC buffers.
5931 (auto-revert-active-p, auto-revert-list-diff)
5932 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
5933 (auto-revert-handler, auto-revert-active-p): New functions.
5934 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
5935 and `auto-revert-active-p'.
5936 (eval-when-compile): Defvar dired-directory and vc-mode.
5937 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
5938 (auto-revert-handler-vc): New functions.
5939
5940 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
5941
5942 * progmodes/compile.el (compilation-directory): New defvar.
5943 (compile): Save current directory in compilation-directory.
5944 (recompile): Bind default-directory to compilation-directory if
5945 that is non-nil.
5946
5947 2004-02-16 Dave Love <fx@gnu.org>
5948
5949 * newcomment.el (comment-insert-comment-function)
5950 (comment-region-function, uncomment-region-function): New.
5951 (comment-indent): Use comment-insert-comment-function.
5952 (uncomment-region): Use uncomment-region-function.
5953 (comment-region): Use comment-region-function.
5954
5955 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
5956
5957 2004-02-16 Richard Stallman <rms@gnu.org>
5958
5959 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
5960 loaddefs* and ldefs-boot*.
5961
5962 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5963
5964 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
5965 and email address at the beginning and end of the address.
5966
5967 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
5968 anchored at the beginning of the email address.
5969
5970 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
5971
5972 * international/ccl.el (ccl-compile-write): Pass `left' to
5973 ccl-embed-code to generate correct code of write-expr-register.
5974
5975 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
5976
5977 * progmodes/grep.el (grep-compute-defaults): Fix typos.
5978
5979 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5980
5981 * x-dnd.el: Mention support for Motif in commentary.
5982 (x-dnd-handle-drag-n-drop-event): Ditto.
5983
5984 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5985
5986 * ses.el: Use "ses--" prefixes for buffer-local variables.
5987 Use (point-min) instead of 1, even when we know the buffer
5988 is unnarrowed.
5989 (ses-build-load-map): Delete. Distribute its content to defconst's for
5990 the three maps.
5991 (ses-menu, ses-header-line-menu): New menus.
5992 (ses-mode-map): Use them.
5993 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
5994
5995 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
5996
5997 * Makefile.in: Fix the CC Mode recompile kludge so it works
5998 when building in a different directory.
5999
6000 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
6001
6002 * simple.el (kill-new): Put yank-handler property on the entire string.
6003
6004 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6005
6006 * diff.el: Don't use compile any more, use diff-mode instead.
6007 (diff-regexp-alist, diff-old-file, diff-new-file)
6008 (diff-parse-differences, diff-process-setup): Remove.
6009 (diff-sentinel): New fun.
6010 (diff): Use it. Run the process ourselves.
6011 Use diff-mode for the rest of the processing.
6012
6013 * diff.el (diff): Simplify code handling `switch'.
6014
6015 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6016
6017 * pcvs-defs.el (cvs-menu): Add `tag'.
6018
6019 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
6020
6021 * simple.el (kill-append): Doc fix.
6022
6023 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6024 Adapt outline-regexp to the new conventions for commenting out code.
6025
6026 2004-02-11 John Paul Wallington <jpw@gnu.org>
6027
6028 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
6029
6030 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
6031
6032 * diff.el (diff-switches): New fun.
6033 (diff, diff-backup): Use it.
6034 (diff): Clean up the args construction. Use backquote.
6035 Use listp instead of consp to avoid putting a nil arg.
6036 (diff): Add a revert-buffer function.
6037
6038 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6039
6040 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
6041 handled by x-dnd-handle-file-name.
6042 (x-dnd-known-types): Add COMPOUND_TEXT.
6043 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
6044 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
6045 x-dnd-empty-state.
6046 (x-dnd-forget-drop): Ditto.
6047 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
6048 (x-dnd-handle-one-url): Return private when inserting text.
6049 (x-dnd-insert-ctext): New function.
6050 (x-dnd-handle-file-name): New function for FILE_NAME.
6051 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
6052 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
6053 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
6054
6055 2004-02-10 Kenichi Handa <handa@m17n.org>
6056
6057 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
6058 instead of while loop.
6059
6060 2004-02-10 Miles Bader <miles@gnu.org>
6061
6062 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
6063
6064 2004-02-09 Kenichi Handa <handa@m17n.org>
6065
6066 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
6067 have end-of-line.
6068
6069 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
6070
6071 * Makefile.in: Added extra dependencies in the recompile target
6072 needed to cope with the compile time macro expansions in CC Mode.
6073
6074 2004-02-09 Kim F. Storm <storm@cua.dk>
6075
6076 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
6077 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
6078 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
6079 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
6080 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
6081 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
6082 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
6083 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
6084 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
6085 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
6086 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
6087
6088 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
6089
6090 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
6091 Don't allow shrink if there's a window on our right.
6092
6093 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
6094 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
6095 Bring together declaration and initialization.
6096 (prolog-mode-variables): Don't set the syntax table.
6097 Don't set paragraph-start and comment-indent-function.
6098 Add /*..*/ to the comment regexps.
6099 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
6100 (prolog-mode-map): Don't bind TAB.
6101 (prolog-mode): Set the syntax table.
6102 (prolog-comment-indent): Remove.
6103 (inferior-prolog-mode-map): Initialize in the declaration.
6104 (inferior-prolog-mode-syntax-table)
6105 (inferior-prolog-mode-abbrev-table): New vars.
6106 (inferior-prolog-mode): Derive from comint-mode.
6107 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
6108 minibuffer windows.
6109
6110 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
6111 in file names, as long as it is unabmiguous.
6112
6113 2004-02-08 Andreas Schwab <schwab@suse.de>
6114
6115 * textmodes/reftex-toc.el
6116 (reftex-toc-load-all-files-for-promotion): Remove useless use of
6117 format. Doc fix.
6118
6119 * textmodes/refer.el (refer-find-entry-internal): Remove extra
6120 format string arguments.
6121
6122 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
6123 string argument.
6124
6125 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
6126
6127 * play/zone.el (zone-call): Fix format string.
6128
6129 * net/webjump.el (webjump-builtin): Add missing format string argument.
6130
6131 * midnight.el (midnight-delay-set): Remove extra format string argument.
6132
6133 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
6134
6135 * hexl.el (hexl-insert-char): Add missing format string argument.
6136
6137 * format.el (format-decode): Fix format string.
6138
6139 * emulation/vi.el (vi-mode): Remove extra format string argument.
6140 (vi-repeat-last-search): Likewise.
6141 (vi-reverse-last-search): Likewise.
6142 (vi-goto-mark): Likewise.
6143 (vi-reverse-last-find-char): Likewise.
6144 (vi-repeat-last-find-char): Likewise.
6145 (vi-locate-def): Likewise.
6146
6147 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
6148
6149 * ediff-util.el (ediff-toggle-read-only): Remove extra format
6150 string argument.
6151 (ediff-toggle-regexp-match): Likewise.
6152
6153 * dired-aux.el (dired-do-query-replace-regexp): Add missing
6154 format string argument.
6155
6156 * calc/calc-map.el (calc-get-operator): Remove extra format
6157 string argument.
6158
6159 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
6160
6161 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
6162 string argument.
6163
6164 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
6165
6166 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
6167
6168 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
6169
6170 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
6171 (cl-struct-setf-expander): Likewise.
6172
6173 * vc.el (with-vc-file): Fix unsafe uses of error.
6174 (vc-cancel-version): Likewise.
6175
6176 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
6177
6178 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
6179 thousands separator; fixes <class>:<line-number> regexp for
6180 non-english locales.
6181
6182 2004-02-08 Andreas Schwab <schwab@suse.de>
6183
6184 * view.el (view-mode-enable): Revert previous change.
6185
6186 2004-02-07 Kim F. Storm <storm@cua.dk>
6187
6188 * simple.el (line-number-at-pos): Rename from line-at-pos.
6189 Uses changed (what-line and vc-annotate-warp-version).
6190
6191 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6192
6193 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
6194 (diff-mode): Remove aborted attempt at support for compile.el.
6195 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
6196
6197 2004-02-06 Andreas Schwab <schwab@suse.de>
6198
6199 * view.el (view-mode-enable): Add view-mode-map to
6200 minor-mode-overriding-map-alist.
6201
6202 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6203
6204 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
6205
6206 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
6209 with point inside rather than after the paragraph.
6210
6211 2004-02-04 Sam Steingold <sds@gnu.org>
6212
6213 * mail/smtpmail.el (smtpmail-try-auth-methods):
6214 Do not try authentication when no mechanism is available.
6215 Pass port-name as defaultport to `netrc-machine'.
6216
6217 2004-02-04 Stephen Eglen <stephen@gnu.org>
6218
6219 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
6220 to show how minibuffer height can be constrained.
6221
6222 2004-02-04 John Paul Wallington <jpw@gnu.org>
6223
6224 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
6225
6226 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6227
6228 * x-dnd.el: New file for drag and drop.
6229
6230 * term/x-win.el: require x-dnd, set after-make-frame-functions
6231 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
6232 drag-n-drop event.
6233
6234 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
6235 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
6236 (dired-dnd-handle-file): New functions for drag and drop support.
6237 (dired-mode): Initialize drag and drop if x-dnd present.
6238
6239 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
6240
6241 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
6242 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
6243 (cperl-mode): Set fill-paragraph-function.
6244 (cperl-fill-paragraph): Make it non-interactive.
6245
6246 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
6247
6248 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
6249
6250 2004-02-02 David Kastrup <dak@gnu.org>
6251
6252 * replace.el (perform-replace): Allow 'literal argument in
6253 regexp-flag to indicate literal replacement.
6254 (query-replace-regexp-eval): Use it.
6255
6256 2004-02-01 Andreas Schwab <schwab@suse.de>
6257
6258 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
6259
6260 2004-02-01 Stephen Eglen <stephen@gnu.org>
6261
6262 * info-look.el: Add support for maxima-mode. Update commentary
6263 because info-lookup-symbol is now bound to C-h S.
6264
6265 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
6266
6267 * simple.el (edit-and-eval-command): Bind print-level and
6268 minibuffer-history-sexp-flag around call to read-from-minibuffer.
6269 Correct initial position in command-history.
6270
6271 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
6272
6273 * files.el (read-directory-name): Adapt the docstring to recent
6274 change in Fread_file_name.
6275
6276 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
6277
6278 * ses.el (ses-print-cell): If print format too wide for column
6279 width, truncate decimal places if that helps to avoid "#####" fill.
6280 * ses.el (ses-initial-column-width): Revert previous change.
6281
6282 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
6283
6284 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
6285 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
6286 Add edebug info.
6287 (jit-lock-mode): Setup/cancel the new timer.
6288 (jit-lock-context-fontify): New fun. Extracted from
6289 context fontification code of jit-lock-stealth-fontify.
6290 (jit-lock-stealth-fontify): Don't do context fontification any more.
6291
6292 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
6293 (jit-lock-fontify-now): Handle the `quit' case.
6294 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
6295
6296 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
6297
6298 * progmodes/executable.el (executable-command-find-posix-p):
6299 New. Check if find handles arguments Posix-style.
6300
6301 * progmodes/grep.el (grep-compute-defaults):
6302 Use executable-command-find-posix-p.
6303 (grep-find): Check `grep-find-command'.
6304
6305 * filecache.el (file-cache-find-posix-p): Delete.
6306 (file-cache-add-directory-using-find):
6307 Use `executable-command-find-posix-p'.
6308
6309 2004-01-29 Dave Love <fx@gnu.org>
6310
6311 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
6312 Iterate the hook function if arg is given.
6313 (mark-defun, narrow-to-defun): Change order of finding the limits.
6314
6315 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
6316 (byte-compile-format-warn): New.
6317 (byte-compile-callargs-warn): Use it.
6318 (Format, message, error): Add byte-compile-format-like property.
6319 (byte-compile-maybe-guarded): New.
6320 (byte-compile-if, byte-compile-cond): Use it.
6321 (byte-compile-lambda): Compile interactive forms,
6322 just to make warnings about them.
6323
6324 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
6325
6326 * ses.el (ses-initial-column-width): Increase to 14, so it will
6327 work well with the default printer of "%.7g" for extreme values
6328 like "-1.234567e+07".
6329
6330 2004-01-29 Kenichi Handa <handa@m17n.org>
6331
6332 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
6333
6334 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
6335
6336 * dos-w32.el: Added support for the `default-printer-name' function.
6337
6338 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
6339
6340 * server.el (server-socket-name): Don't use the hostname in the
6341 socket name since /tmp is local to the host anyway.
6342
6343 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
6344 robust check of widening and fix var-naming.
6345
6346 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
6347
6348 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
6349 or rmail-spam- to rsf- in all function and variable names.
6350 (rsf-min-region-to-spam-list): New variable.
6351 (rsf-bbdb-auto-delete-spam-entries): Rename from
6352 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
6353 scanned together with the recipients field for spam testing; Don't
6354 delete spam message if rmail-delete-after-output is non-nil;
6355 (rsf-check-field): New function, extracted from code in
6356 rmail-spam-filter to ease addition of header fields like
6357 content-type:;
6358 (message-content-type): New variable. The content-type: field was
6359 added also in defcustom of rsf-definitions-alist;
6360 (rmail-spam-filter): Replace repeated test code for header fields
6361 by calls to check-field; change the call to
6362 rmail-output-to-rmail-file such that rmail-current-message stays
6363 the same to avoid wrong deletion of unseen flags.
6364 (rmail-use-spam-filter): Add autoload cookie.
6365
6366 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
6367
6368 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
6369 (file-cache-add-directory-using-find): Add Cygwin support.
6370 (file-cache-find-command-posix-flag): New user variable.
6371
6372 * filecache.el (file-cache-add-directory): Check for
6373 directories an remove them from dir-files.
6374
6375 2004-01-27 Richard M. Stallman <rms@gnu.org>
6376
6377 * man.el (Man-fontify-manpage): Clean up message.
6378
6379 2004-01-27 Kenichi Handa <handa@m17n.org>
6380
6381 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
6382 (sentence-end): Define using sentence-end-without-space.
6383
6384 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
6385 a sentence ends with one of a character in sentence-end-without-space.
6386
6387 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
6388
6389 * font-lock.el (font-lock): Add jit-lock as explicit group member.
6390 (jit-lock): Group declaration moved to jit-lock.el.
6391 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
6392 when necessary.
6393
6394 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
6395 (jit-lock-context-unfontify-pos): Rename from
6396 jit-lock-first-unfontify-pos.
6397 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
6398
6399 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
6400
6401 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
6402 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
6403 (fortran-fill): When filling a string, adjust re-search-backward
6404 argument for special case of string just on fill-column.
6405 When filling non-string, allow one extra char if
6406 fortran-break-before-delimiters is non-nil.
6407 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
6408 Use fortran-break-delimiters-re and fortran-no-break-re to
6409 correctly handle cases such as "**".
6410
6411 * progmodes/f90.el (f90-break-delimiters): Doc fix.
6412 (f90-no-break-re): Add some extra tokens. Doc fix.
6413
6414 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
6415
6416 * mail/rmail-spam-filter.el:
6417 Use two semicolons as Commentary line prefix.
6418 Add ";;; Code:" stylized comment.
6419 Delete end-of-line whitespace.
6420 Wrap (require 'cl) with `eval-when-compile'.
6421
6422 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
6423
6424 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
6425 at the top level of vc.el.
6426
6427 2004-01-23 Andre Spiegel <spiegel@gnu.org>
6428
6429 * vc.el (vc-current-line): Function removed. This is now done by
6430 the new function line-at-pos in simple.el.
6431 (vc-annotate-warp-version): Use line-at-pos instead of
6432 vc-current-line.
6433
6434 2004-01-22 Kim F. Storm <storm@cua.dk>
6435
6436 * simple.el (line-at-pos): New defun.
6437 (what-line): Use it. Optimize by only counting lines in narrowed
6438 region once.
6439
6440 2004-01-22 Kenichi Handa <handa@m17n.org>
6441
6442 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
6443 point (register r1) only for charset mule-unicode-0100-24ff.
6444
6445 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
6446
6447 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
6448 trailing white space and ensure a final newline.
6449
6450 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
6451 Add autoload cookie.
6452
6453 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
6454
6455 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
6456 activate view-mode explicitly.
6457
6458 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6459
6460 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
6461 use clipboard first.
6462
6463 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
6464
6465 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
6466 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
6467 (vc-mcvs-cvs): Remove.
6468 (vc-mcvs-command): Remove use of assert.
6469
6470 * outline.el (outline-insert-heading): Tighten up match.
6471 (outline-demote, outline-move-subtree-down): Don't assume anything
6472 about outline-regexp.
6473
6474 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
6475 (texinfo-show-structure): Explicitly add ^, and simplify.
6476
6477 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
6478
6479 * calendar/appt.el (appt-check): Restore usage of
6480 appt-issue-message deleted in previous change.
6481 (top-level): Activate package when loaded (needed for backwards
6482 compatibility).
6483
6484 2004-01-20 Jesper Harder <harder@ifa.au.dk>
6485
6486 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
6487 following previous change to smtpmail-send-data.
6488
6489 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
6490
6491 * vc.el (vc-default-previous-version): Doc enhancement.
6492 (vc-default-next-version): New function.
6493 (vc-print-log): New arg FOCUS-REV.
6494 (vc-annotate-mode): Derive from view-mode.
6495 (vc-annotate): New args REVISION, DISPLAY-MODE.
6496 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
6497 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
6498 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
6499 (vc-annotate-show-diff-revision-at-line, vc-current-line)
6500 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
6501
6502 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
6503
6504 2004-01-19 Karl Berry <karl@gnu.org>
6505
6506 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
6507 or "TexInfo".
6508
6509 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
6510
6511 * subr.el (delete-dups): New function.
6512
6513 2004-01-19 Karl Berry <karl@gnu.org>
6514
6515 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
6516 with ^, since that's what texinfo-show-structure
6517 documentation says (plus it works much better in texinfo.txi).
6518
6519 2004-01-18 Jesper Harder <harder@ifa.au.dk>
6520
6521 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
6522
6523 2004-01-18 David Ponce <david@dponce.com> (tiny change)
6524
6525 * progmodes/which-func.el (which-function-mode): Don't cancel
6526 which-func-update-timer if not set.
6527
6528 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
6529
6530 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
6531 Remove spurious left square bracket in XX:XXam regexp.
6532
6533 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
6534
6535 * progmodes/cc-defs.el: Do not require cl at run time.
6536
6537 2004-01-16 Richard M. Stallman <rms@gnu.org>
6538
6539 * emacs-lisp/cl.el (cl-cannot-unload): New function.
6540 (cl-unload-hook): Defvar this to run cl-cannot-unload.
6541
6542 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
6543 Call rmail-spam-filter. Delete and expunge spam.
6544 Print number of spam messages deleted.
6545 Save and restore the deletion status of old messages when reading
6546 new mail with spam filter, so that expunging spam does not expunge
6547 msgs deleted by the user.
6548 (rmail-only-expunge): Add an optional argument dont-show to
6549 prevent showing message after expunge.
6550
6551 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
6552
6553 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
6554 * subr.el (declare): New macro.
6555
6556 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
6557
6558 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
6559
6560 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6561
6562 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6563 Test window-system rather than system-type (for X11/Mac).
6564
6565 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
6566
6567 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
6568
6569 2004-01-12 Richard M. Stallman <rms@gnu.org>
6570
6571 * mail/rmail.el (rmail-convert-to-babyl-format):
6572 Use mail-unquote-printable-region.
6573 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
6574 (rmail-hex-char-to-integer): Functions deleted.
6575
6576 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
6577 (mail-unquote-printable-region): New arg NOERROR.
6578 For invalid encoding, either signal an error to just return nil.
6579
6580 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
6581
6582 * calendar/appt.el: Update copyright and commentary.
6583 (appt-issue-message): Make obsolete.
6584 (appt-visible, appt-msg-window): Make obsolete, in favour of
6585 appt-display-format.
6586 (appt-display-mode-line, appt-display-duration)
6587 (appt-display-diary, appt-time-msg-list, appt-mode-string)
6588 (appt-prev-comp-time, appt-display-count, appt-timer)
6589 (appt-convert-time): Doc change.
6590 (appt-disp-window-function, appt-delete-window-function):
6591 Use defcustom rather than defvar.
6592 (appt-display-format): New variable.
6593 (appt-display-message): New function with display code from appt-check.
6594 (appt-check): Add optional FORCE argument. Doc change.
6595 Add appt-make-list to diary-hook if displaying diary.
6596 Remove checking of view-diary-entries-initially.
6597 Message display section removed to new function appt-display-message.
6598 (appt-display-window): Doc change. Remove unused internal var
6599 this-buffer. Do not beep, since appt-display-message does that.
6600 (appt-make-list): Doc change. Use caar.
6601 (appt-sort-list): Simplify by using builtin sort function.
6602 (appt-update-list): New function for updating appts when diary is
6603 saved.
6604 (appt-activate): New autoloaded function to toggle package
6605 functionality.
6606
6607 * calendar/cal-x.el: (calendar-one-frame-setup)
6608 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
6609
6610 * calendar/calendar.el: Update copyright.
6611 (view-diary-entries-initially, european-calendar-style): Doc change.
6612 (calendar-setup): Make defcustom rather than defvar.
6613 (mark-visible-calendar-date): Initialize temp-face and faceinfo
6614 in let binding so local to function.
6615
6616 * calendar/diary-lib.el: Update copyright.
6617 (diary, diary-entry-time): Doc change.
6618 (list-diary-entries): Doc change. Trivial logic change.
6619 (fancy-diary-display): Restore make-face command mistakenly
6620 deleted 2003-05-08.
6621 (show-all-diary-entries): Allow to pop-up frame if needed.
6622
6623 2004-01-09 John Paul Wallington <jpw@gnu.org>
6624
6625 * bindings.el (mode-line-change-eol): Add EVENT parameter.
6626 Temporarily select EVENT's window for changing eol type.
6627
6628 2004-01-09 Deepak Goel <deego@gnufans.org>
6629
6630 * calendar/diary-lib.el (diary-entry-time):
6631 Also accept time in the form XX[.XX][am/pm/AM/PM].
6632 (fancy-diary-font-lock-keywords): Likewise.
6633 (diary-font-lock-keywords): Likewise.
6634 * calendar/appt.el (appt-add): Likewise.
6635 (appt-make-list): Likewise.
6636 (appt-convert-time): Likewise.
6637
6638 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
6639
6640 * gdb-ui.el (gdb-ann3): Revert previous change.
6641 (gdb-source-info): Allow for case of where compilation directory
6642 is not recorded.
6643
6644 2004-01-08 John Paul Wallington <jpw@gnu.org>
6645
6646 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
6647
6648 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
6649
6650 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
6651
6652 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
6653 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
6654 problems.
6655 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
6656
6657 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
6658
6659 * files.el (write-file-functions, write-contents-functions):
6660 Clarify docstrings.
6661
6662 2004-01-07 Kenichi Handa <handa@m17n.org>
6663
6664 * international/mule.el (set-auto-coding): Fix for the case that
6665 end-of-line is only CR.
6666
6667 2004-01-07 Kim F. Storm <storm@cua.dk>
6668
6669 * subr.el (event-start, event-end): Doc fix.
6670 (posn-string, posn-image): New defuns.
6671 (posn-object): Return either image or string object.
6672 (posn-object-x-y): Return 8th element of position.
6673 (posn-object-width-height): New defun.
6674
6675 2004-01-06 Andreas Schwab <schwab@suse.de>
6676
6677 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
6678 output.
6679
6680 2004-01-05 Karl Berry <karl@gnu.org>
6681
6682 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
6683 / and *, too.
6684
6685 2003-12-31 Simon Josefsson <jas@extundo.com>
6686
6687 * files.el (before-save-hook): Add.
6688 (basic-save-buffer): Use before-save-hook.
6689
6690 * emacs-lisp/copyright.el: Fix comment to recommend
6691 before-save-hook instead of write-file-functions.
6692
6693 2004-01-05 Richard M. Stallman <rms@gnu.org>
6694
6695 * finder.el (finder-commentary): Call delete-other-windows.
6696
6697 * net/ange-ftp.el (ange-ftp-file-attributes):
6698 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
6699
6700 2004-01-04 Karl Berry <karl@gnu.org>
6701
6702 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
6703 comment characters % and # in the copyright year notice,
6704 as well as ;.
6705
6706 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
6707
6708 * wid-edit.el (default): Define dummy :value-delete.
6709 Reported by Jesper Harder <harder@ifa.au.dk>.
6710
6711 2004-01-03 Richard M. Stallman <rms@gnu.org>
6712
6713 * progmodes/compile.el (compile-internal): Use point, not point-min,
6714 for set-window-point.
6715
6716 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
6717
6718 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
6719
6720 * progmodes/grep.el (grep-mode-map):
6721 Don't remap next-line, previous-line.
6722
6723 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
6724
6725 * speedbar.el (speedbar-edit-line): Change regexp to position
6726 the cursor on the first character of this line's button.
6727
6728 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6729
6730 * subr.el (functionp): Doc fix.
6731
6732 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
6733
6734 * progmodes/idlwave.el (idlwave-make-tags):
6735 * textmodes/flyspell.el (flyspell-large-region):.
6736 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
6737 * emulation/viper-util.el (viper-glob-unix-files):
6738 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
6739 * man.el (Man-init-defvars):
6740 * jka-compr.el (jka-compr-call-process):
6741 * files.el (get-free-disk-space,insert-directory):
6742 * ediff-ptch.el (ediff-test-patch-utility):
6743 * ediff-diff.el (ediff-test-utility):
6744 * dired-aux.el (dired-check-process):
6745 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
6746 test the return value of call-process, because it can be a string.
6747
6748 2003-12-31 John Paul Wallington <jpw@gnu.org>
6749
6750 * bindings.el (completion-ignored-extensions): Add .pfsl.
6751
6752 2003-12-31 Kim F. Storm <storm@cua.dk>
6753
6754 * ido.el (ido-nonreadable-directory-p): New defun to check for
6755 nonreadable directory without activating tramp (to avoid problems
6756 with checking incomplete tramp paths).
6757 (ido-set-current-directory, ido-file-internal)
6758 (ido-file-name-all-completions1): Use it.
6759
6760 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6761
6762 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
6763 documentation if the anchor (or node) name is preceded by `info
6764 anchor' or `Info anchor' in addition to earlier `info node' and
6765 `Info node'.
6766 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
6767
6768 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6769
6770 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
6771 error in arguments to base64-decode-region. Remove ^M characters
6772 after decoding base64.
6773
6774 2003-12-30 Simon Josefsson <jas@extundo.com>
6775
6776 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
6777 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
6778 have only been distributed with Emacs for some years.
6779 (texinfo-mode-hook): Customize.
6780
6781 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6782
6783 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
6784 cleaner (suggested by Richard Stallman).
6785
6786 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
6787 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
6788 file-name clashes on 8+3 DOS filesystems.
6789
6790 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
6791 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
6792 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
6793 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
6794 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
6795 file-name clashes on 8+3 filesystems.
6796
6797 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
6798 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
6799 file-name clashes on 8+3 DOS filesystems.
6800
6801 2003-12-29 Richard M. Stallman <rms@gnu.org>
6802
6803 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
6804 Upcase the character.
6805
6806 * textmodes/flyspell.el (mail-mode-flyspell-verify):
6807 Search for header separator alone on a line, literally,
6808 and search for it backward, not forward.
6809 (flyspell-abbrev-table): Always use global-abbrev-table
6810 if there is no local one.
6811
6812 * progmodes/sh-script.el (sh-get-indent-info):
6813 Don't move point back if at bob.
6814
6815 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
6816
6817 * play/handwrite.el (handwrite): Make the handwrite credit message
6818 a comment rather than an output command.
6819
6820 * obsolete/sc.el: Display message that this file is obsolete.
6821
6822 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
6823
6824 * mail/rfc822.el (rfc822-address-start): Declare variable.
6825 Renamed from address-start. All uses changed.
6826
6827 * term.el (term-exec): Set up sentinel.
6828 (term-sentinel): New function.
6829 (term-handle-exit): New function.
6830
6831 * subr.el (assoc-ignore-case, assoc-ignore-representation):
6832 Use assoc-string, and mark them obsolete.
6833 (delay-mode-hooks): Mark as permanent local.
6834
6835 * simple.el (sendmail-user-agent-compose): Use assoc-string.
6836
6837 * register.el (copy-rectangle-to-register): Doc fix.
6838
6839 * info.el (Info-insert-dir): Use assoc-string.
6840
6841 * info-look.el (info-lookup): Use assoc-string.
6842
6843 * frame.el (pop-up-frame-function): Use quote, not `function'.
6844 (frame-notice-user-settings): Calculate ADJUSTED-TOP
6845 copying with lists as coordinate values.
6846
6847 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
6848
6849 * find-dired.el (kill-find): New command.
6850 (find-dired): Make buffer read-only.
6851 Set up a keymap with C-c C-k running kill-find.
6852 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
6853
6854 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
6855
6856 * filecache.el (file-cache-ignore-case): New variable.
6857 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
6858
6859 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
6860 (comint-dynamic-complete-as-filename): Rename local vars.
6861 (comint-dynamic-list-filename-completions): Likewise.
6862
6863 * comint.el (comint-dynamic-list-completions-config): New var.
6864 (comint-dynamic-list-completions): Handle both SPC and TAB right.
6865
6866 * comint.el (comint-file-name-chars): Add [].
6867 (comint-word): Use skip-chars-backward, not search.
6868
6869 * shell.el (shell-file-name-chars): Add [].
6870
6871 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
6872
6873 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
6874
6875 * generic.el (define-generic-mode): Doc fix.
6876
6877 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6878
6879 * files.el (kill-some-buffers): Doc fix.
6880
6881 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
6882
6883 * comint.el (comint-watch-for-password-prompt): Pass `string' as
6884 arg to send-invisible
6885 (send-invisible): Doc fix. The argument is now a prompt, not the
6886 string to send.
6887 (comint-read-noecho): Doc fix.
6888
6889 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
6890
6891 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
6892 "@", as required by some ISP hosting service. Fix defcustom
6893 argument syntax errors that prevented use of customization.
6894
6895 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6896
6897 * xml.el (xml-get-attribute-or-nil): Doc fix.
6898
6899 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
6900
6901 * net/zone-mode.el (zone-mode): Use write-file-functions, not
6902 write-file-hooks.
6903
6904 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
6905
6906 * autorevert.el (auto-revert-interval): Doc fix.
6907
6908 2003-12-29 Mark A. Hershberger <mah@everybody.org>
6909
6910 * xml.el (xml-get-attribute-or-nil): New function, like
6911 xml-get-attribute, but returns nil if the attribute was not found.
6912 (xml-get-attribute): Convert to defsubst, uses
6913 xml-get-attribute-or-nil.
6914
6915 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6916
6917 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
6918
6919 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
6920
6921 * custom.el (custom-declare-theme): Use `value' when putting
6922 properties on `theme'.
6923
6924 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
6925
6926 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
6927 for each yank-handler segment.
6928 (insert-for-yank-1): New function, with the body of the previous
6929 insert-for-yank.
6930
6931 * textmodes/table.el (table-yank-handler): New defcustom.
6932 (table--put-cell-indicator-property): Put yank-handler property
6933 that indicates the yank handler for the table cell.
6934
6935 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
6936
6937 * generic-x.el (etc-modules-conf-generic-mode): A more complete
6938 set of keywords.
6939
6940 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6941
6942 * international/mule-cmds.el (reset-language-environment)
6943 (set-language-environment): Don't invoke fontset-related functions
6944 if fontset-list is not fboundp.
6945
6946 2003-12-29 Kenichi Handa <handa@m17n.org>
6947
6948 * international/mule-cmds.el (reset-language-environment):
6949 Call set-overriding-fontspec-internal with nil.
6950 (set-language-environment): Call set-overriding-fontspec-internal
6951 if the language environment specify `overriding-fontspec'.
6952 (language-info-alist): Doc added.
6953
6954 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
6955 characters of mule-unicode-0100-24ff.
6956 (ccl-encode-windows-1251-font): New CCL program.
6957 ("Bulgarian"): Specify overriding-fontspec.
6958 ("Belarusian"): Likewise.
6959
6960 2003-12-28 Sam Steingold <sds@gnu.org>
6961
6962 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
6963 parameter ID-FORMAT to conform with the 2003-11-30 patch.
6964
6965 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
6966
6967 * progmodes/gud.el (gud-gdb-command-name): Set default to
6968 "gdb --annotate=3".
6969 (gud-gdb-marker-filter): Look out for annotations.
6970 (gdb-first-pre-prompt): New variable.
6971 Remove trailing white space.
6972
6973 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
6974 if necessary.
6975 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
6976 annotations are detected.
6977 (gud-gdba-marker-filter): Use global variable gud-marker-acc
6978 instead of a local one to allow transition from
6979 gud-gdb-marker-filter.
6980 Remove trailing white space.
6981
6982 2003-12-27 Kim F. Storm <storm@cua.dk>
6983
6984 * ido.el: Handle non-readable directories.
6985 (ido-decorations): Add 9th element for non-readable directory.
6986 (ido-directory-nonreadable): New dynamic var.
6987 (ido-set-current-directory): Set it.
6988 (ido-read-buffer, ido-file-internal):
6989 (ido-read-file-name, ido-read-directory-name): Let-bind it.
6990 (ido-file-name-all-completions1): Return empty list for
6991 non-readable directory.
6992 (ido-exhibit): Print [Not readable] if directory is not readable.
6993 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
6994 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
6995 Use it.
6996
6997 2003-12-27 Lars Hansen <larsh@math.ku.dk>
6998
6999 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
7000 calls to directory-files-and-attributes and file-attributes.
7001 (ls-lisp-format): Remove system dependent handling of user and
7002 group id's.
7003
7004 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
7005
7006 * ffap.el (ffap-read-file-or-url): Revert previous change.
7007
7008 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
7009
7010 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
7011 new list of included files called `files-with-node-lines', that
7012 only have node lines. This way @include commands can include any
7013 file, such as version and update files without node lines, not
7014 just files that are chapters.
7015
7016 2003-12-25 Andreas Schwab <schwab@suse.de>
7017
7018 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
7019 file not found.
7020
7021 2003-12-08 Miles Bader <miles@gnu.org>
7022
7023 * dired.el (dired-between-files): Always use dired-move-to-filename,
7024 which is more robust in non-english locales.
7025
7026 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
7027
7028 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
7029
7030 2003-12-24 Andreas Schwab <schwab@suse.de>
7031
7032 * shell.el (shell-file-name-quote-list): Add backslash.
7033
7034 * comint.el (comint-quote-filename): Correctly handle backslash
7035 in comint-file-name-quote-list.
7036
7037 2003-12-24 Kenichi Handa <handa@m17n.org>
7038
7039 * international/mule-cmds.el (set-default-coding-systems):
7040 Call ucs-set-table-for-input for all buffers that don't have local
7041 value of buffer-file-coding-system.
7042
7043 * international/ucs-tables.el (ucs-set-table-for-input):
7044 If translation-table-for-encode is a symbol, get its
7045 translation-table property.
7046
7047 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
7048
7049 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
7050 to `completing-read' on a recently fixed bug.
7051
7052 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
7053 instead of SPACE, to get the list of possible fringe modes.
7054 SPACE only works if both `partial-completion-mode' and
7055 `completion-auto-help' are nil.
7056
7057 * complete.el (PC-is-complete-p): Delete.
7058 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
7059 calls to `test-completion'.
7060
7061 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
7062
7063 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
7064 to edit values when there are no children.
7065
7066 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
7067 a mode called "Assembler" already exists.
7068 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
7069 (gud-watch): Use format option. Remove font properties from string.
7070 (gdb-var-create-handler, gdb-var-list-children-handler):
7071 Don't bother about properties as there are none.
7072 (gdb-var-create-handler, gdb-var-list-children-handler)
7073 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
7074 with two arguments.
7075 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
7076 Let speedbar show value changes with a different font.
7077 (gdb-edit-value): New defun.
7078 (gdb-clear-partial-output, gdb-clear-inferior-io)
7079 (def-gdb-auto-update-handler): Use erase-buffer.
7080 (gdb-frame-handler): Display watch expressions in
7081 FUNCTION::VARIABLE format if required.
7082
7083 2003-12-23 John Paul Wallington <jpw@gnu.org>
7084
7085 * info.el (Info-unescape-quotes, Info-split-parameter-string)
7086 (Info-goto-emacs-command-node): Doc fixes.
7087
7088 2003-12-12 Jesper Harder <harder@ifa.au.dk>
7089
7090 * cus-edit.el (custom-add-parent-links): Define "many".
7091
7092 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
7093
7094 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
7095 (widget-child-validate, widget-type-value-create)
7096 (widget-type-default-get, widget-type-match): New functions.
7097 (lazy): New widget.
7098 (menu-choice, checklist, radio-button-choice, editable-list)
7099 (group, documentation-string): Remove redundant (per 2003-10-25
7100 change) calls to `widget-children-value-delete'.
7101 (widget-choice-value-get, widget-choice-value-inline): Remove.
7102 (menu-choice): Update widget.
7103
7104 2003-12-03 Kenichi Handa <handa@m17n.org>
7105
7106 * language/cyrillic.el: Register "microsoft-cp1251" in
7107 ctext-non-standard-encodings-alist.
7108 ("Bulgarian"): Add ctext-non-standard-encodings.
7109 ("Belarusian"): Likewise.
7110
7111 * international/mule-conf.el (compound-text-with-extensions):
7112 Change the type to 2 (iso-2022 base).
7113
7114 * international/mule.el (ctext-non-standard-encodings-alist):
7115 Change the format.
7116 (ctext-non-standard-encodings): New variable.
7117 (ctext-post-read-conversion): Fully re-written.
7118 (ctext-non-standard-designations-alist): Delete it.
7119 (ctext-non-standard-encodings-table): New function.
7120 (ctext-pre-write-conversion): Fully re-written.
7121
7122 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
7123
7124 * cus-edit.el (custom-add-parent-links): Add documentation links
7125 for parent, if the item has none of its own.
7126
7127 2003-11-30 Richard M. Stallman <rms@gnu.org>
7128
7129 * dired-aux.el (dired-do-query-replace-regexp):
7130 Report files visited read-only.
7131
7132 2003-11-30 Juri Linkov <juri@jurta.org>
7133
7134 * dired-aux.el (dired-compare-directories): New command.
7135 (dired-file-set-difference, dired-files-attributes): New functions.
7136
7137 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
7138 Version 2.0.38 of Tramp released.
7139
7140 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
7141 Charles Curley <charlescurley@charlescurley.com>.
7142 (tramp-multi-connection-function-alist): Add ssht entry which adds
7143 "-e none -t -t" to the list of ssh args. Suggested by Adrian
7144 Aichner.
7145 (tramp-get-method-parameter): New function to retrieve a method
7146 parameter. This allows for omission of method parameters.
7147 Callers adjusted.
7148
7149 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
7150
7151 * net/tramp.el: Add new optional parameter ID-FORMAT to
7152 `file-attributes'. Calls of `file-attributes' won't use this
7153 parameter for backward compatibility reasons.
7154 (tramp-perl-file-attributes): Add a new parameter to Perl script
7155 in order to handle uid/gid as strings, if desired.
7156 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
7157 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
7158 order to make the function more general.
7159 (tramp-handle-file-attributes): Replace proprietary optional
7160 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
7161 (tramp-handle-file-attributes-with-perl): Handle parameter
7162 NONNUMERIC if set. This wasn't done in the past.
7163 (tramp-post-connection): Apply second parameter "$2" if
7164 `tramp-remote-perl' is called.
7165
7166 * net/tramp-smb.el (tramp-smb-handle-delete-file):
7167 Correct cut'n'waste error (`filename' instead of `directory').
7168 (tramp-smb-handle-directory-files-and-attributes)
7169 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
7170 introduced parameter ID-FORMAT.
7171 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
7172 error (`directory' instead of `ldir').
7173
7174 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
7175 `file-attributes' has a second parameter. If yes, apply it with
7176 value "'integer". Otherwise, don't use that parameter (default is
7177 integer format).
7178
7179 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
7180
7181 * help.el (help-map): Bind `display-local-help' to `C-h .'.
7182 (help-for-help): Add `C-h .' to the listed Help options.
7183 Remove trailing whitespace.
7184
7185 * help-at-pt.el: New file.
7186
7187 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
7188
7189 * subr.el (noreturn, 1value): New macros for test coverage.
7190 See `testcover.el'.
7191
7192 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
7193
7194 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
7195 for macro `1value'.
7196 (testcover-1value): New function. Checks that a 1value form
7197 actually returns only one value. Requested by RMS.
7198
7199 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
7200
7201 * gdb-ui.el (gud-watch, gdb-var-create-handler)
7202 (gdb-var-list-children, gdb-var-list-children-handler)
7203 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
7204 gdb commands that use mi to keep them out of the command history.
7205
7206 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7207
7208 * cus-start.el (all): Add use-file-dialog.
7209
7210 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
7211
7212 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
7213
7214 2003-11-27 Kim F. Storm <storm@cua.dk>
7215
7216 * subr.el (posn-object-x-y): New defun.
7217
7218 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7219
7220 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
7221 Don't use `space' for \\\n.
7222 Be more selective as to which # are comment-starters.
7223
7224 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
7225
7226 * subr.el (number-sequence): Improve handling of floating point
7227 arguments (suggested by Kim Storm). Allow negative arguments.
7228
7229 2003-11-26 Kenichi Handa <handa@m17n.org>
7230
7231 * international/mule-cmds.el (standard-display-european-internal):
7232 Cancel the standard-display-table setting for ` and '.
7233
7234 2003-11-26 Kim F. Storm <storm@cua.dk>
7235
7236 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
7237 New defcustoms to add ffap-like functionality to ido.
7238 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
7239 (ido-no-final-slash): New defun.
7240 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
7241 (ido-read-file-name): ): Toggle VC checking via
7242 vc-handled-backends instead of vc-master-templates.
7243 (ido-file-internal): Handle ido-use-url-at-point and
7244 ido-use-filename-at-point via code borrowed from ffap-guesser.
7245 Handle new ido-exit code ffap.
7246 (ido-sort-list): Ignore final slash when sorting file names.
7247
7248 2003-11-25 Kim F. Storm <storm@cua.dk>
7249
7250 * emulation/cua-base.el (cua--standard-movement-commands):
7251 Add forward-sentence and backward-sentence.
7252
7253 2003-11-25 Stephen Eglen <stephen@gnu.org>
7254
7255 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
7256 iswitchb-exit is set to 'usefirst when user selects buffer at head
7257 of list using RET. (Selecting buffers at the head of the list was
7258 broken if the substring was also a complete buffername.)
7259
7260 2003-11-23 Kim F. Storm <storm@cua.dk>
7261
7262 * progmodes/compile.el (grep-command, grep-use-null-device)
7263 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
7264 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
7265 (grep-regexp-alist, grep-program, find-program)
7266 (grep-find-use-xargs, grep-history, grep-find-history)
7267 (grep-process-setup, grep-compute-defaults)
7268 (grep-default-command, grep, grep-tag-default, grep-find)
7269 (grep-expand-command-macros, grep-tree-last-regexp)
7270 (grep-tree-last-files, grep-tree): Move grep variables, functions
7271 and commands to new file grep.el.
7272 (compilation-mode-map): Remove grep commands from Compile sub-menu.
7273 (compilation-process-setup-function): Doc fix.
7274 (compilation-highlight-regexp, compilation-highlight-overlay): New
7275 defvars used for highlighting current compile error in source buffer.
7276 (compile-internal): New optional args HIGHLIGHT-REGEXP and
7277 LOCAL-MAP which overrides compilation-highlight-regexp and
7278 compilation-mode-map for this compilation.
7279 Delay calling compilation-set-window-height until after running
7280 compilation-process-setup-function so it can buffer-local override
7281 compilation-window-height.
7282 Check buffer-local value of compilation-scroll-output.
7283 (compilation-set-window-height): Use buffer-local value of
7284 compilation-window-height.
7285 (compilation-revert-buffer): Don't pass (undefined)
7286 preserve-modes arg to revert-buffer.
7287 (next-error-no-select, previous-error-no-select): New commands.
7288 (compilation-goto-locus): Temporarily highlight current match in
7289 source buffer using compilation-highlight-regexp.
7290
7291 * progmodes/grep.el: New file with grep code from compile.el.
7292 (grep): New defcustom group.
7293 (grep-window-height): New defcustom, like compilation-window-height.
7294 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
7295 (grep-scroll-output): New defcustom, like compilation-scroll-output.
7296 (grep-command, grep-use-null-device, grep-find-command)
7297 (grep-tree-files-aliases, grep-tree-ignore-case)
7298 (grep-tree-ignore-CVS-directories): Move to grep custom group.
7299 (grep-setup-hook): New hook variable.
7300 (grep-mode-map): New keymap for grep commands. Add Grep menu.
7301 (grep-last-buffer): New defvar, override compilation-last-buffer.
7302 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
7303 Call compile-internal with args highlight-regexp and grep-mode-map.
7304
7305 2003-11-23 Kim F. Storm <storm@cua.dk>
7306
7307 * subr.el (event-start, event-end): Doc fix.
7308 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
7309 (posn-area, posn-actual-col-row, posn-object): New defuns.
7310 (posn-col-row): Simplify doc. Rewrite to use cond.
7311 (posn-point): Also return buffer position for events outside text
7312 area (that info is now present in the event position).
7313
7314 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
7315 mouse-set-point so that hscroll still works now that clicks on
7316 fringes generate specific mouse events.
7317 (mouse-set-point): Note that it now works in fringes and margins
7318 too due to new semantics of posn-point in fringes and margins.
7319
7320 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
7321 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
7322
7323 2003-11-20 Kim F. Storm <storm@cua.dk>
7324
7325 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
7326 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
7327 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
7328 to 100 for icons to avoid increasing line height when shown.
7329
7330 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7331
7332 * newcomment.el (comment-normalize-vars): Initialize properly if
7333 comment-start was nil.
7334
7335 2003-11-19 Andreas Schwab <schwab@suse.de>
7336
7337 * simple.el (set-variable): Fix indentation.
7338
7339 2003-11-17 Kenichi Handa <handa@m17n.org>
7340
7341 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
7342 Fix docstring.
7343
7344 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
7345
7346 * international/latin1-disp.el (latin1-display): Fix docstring.
7347
7348 2003-11-16 John Wiegley <johnw@newartisans.com>
7349
7350 * eshell/em-ls.el (eshell-ls-file): There are times with
7351 size-width is nil and uncomputed (when directories are created in
7352 dired, for example); in this case, 4 is reasonable default value,
7353 although it may caused skewed new entries (which could be avoided
7354 by returning the original value of 8 in all cases, but 99% of the
7355 time this is a waste of whitespace).
7356
7357 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
7358
7359 * cc-engine.el (c-guess-continued-construct)
7360 (c-guess-basic-syntax): Check a little more carefully if it's a
7361 function declaration when an unknown construct followed by a block
7362 is found inside a statement context. This avoids macros followed
7363 by blocks to be taken as function declarations.
7364
7365 (c-guess-continued-construct): Change the analysis of a statement
7366 continuation with a brace open to `substatement-block', for
7367 consistency with recognized statements.
7368
7369 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
7370 start is in a position so that `c-beginning-of-statement-1' jumped
7371 to the beginning of the same statement.
7372
7373 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
7374 Don't accept binary operators in the arglist if we're in a function
7375 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
7376 template recognition in cases like "if (a < b || c > d)".
7377
7378 (c-restricted-<>-arglists): New more appropriate name for
7379 `c-disallow-comma-in-<>-arglists'.
7380
7381 Accessing functions updated for the variable name change.
7382
7383 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
7384 match data could get clobbered if NOT-INSIDE-TOKEN is used.
7385
7386 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
7387 labels.
7388
7389 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
7390 instead of duplicating parts of it. This fixes bogus label
7391 recognition.
7392
7393 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
7394 of checking the context in which to apply the minimum indentation,
7395 so that it isn't enforced in e.g. namespace blocks.
7396
7397 * cc-vars.el (c-inside-block-syms): New constant used by
7398 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
7399 to somewhat reduce the risk of becoming stale.
7400
7401 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
7402 cc-cmds to cc-engine to allow use from cc-align.
7403
7404 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
7405 qualified identifiers containing "::".
7406
7407 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
7408 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
7409
7410 * cc-vars.el (c-emacs-features): Use a space in front of the name
7411 of the temporary buffer. That also avoids dumping problems in
7412 XEmacs due to undo info being left around after the buffer is killed.
7413
7414 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
7415 arglist to see if it's a K&R style declaration.
7416
7417 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
7418 before returning `knr-argdecl-intro'.
7419
7420 2003-11-16 John Wiegley <johnw@newartisans.com>
7421
7422 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
7423 field in a long-listing always 8 characters, use `size-width',
7424 which has already been computed.
7425
7426 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
7427
7428 * subr.el (minor-mode-list): Add `hs-minor-mode'.
7429
7430 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7431
7432 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
7433 Support operation while narrowed, with `diff-restrict-view'.
7434
7435 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
7436
7437 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7438 Take additional optional arg NARROWFUN. For the generated functions:
7439 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
7440 include frags that arrange to check for and save narrowing state before
7441 the move and then conditionally call NARROWFUN after the move.
7442
7443 2003-11-14 John Wiegley <johnw@newartisans.com>
7444
7445 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
7446 that was optional, but obviously missing based on surrounding code.
7447
7448 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
7449 string arguments to numbers unless the whole argument was seen as
7450 a number.
7451
7452 2003-11-14 Kenichi Handa <handa@m17n.org>
7453
7454 * international/mule.el (ctext-non-standard-encodings-alist):
7455 Fix coding systems.
7456
7457 2003-11-10 Kenichi Handa <handa@m17n.org>
7458
7459 * language/kannada.el ("Kannada"): Add sample-text.
7460
7461 * language/knd-util.el (kannada-compose-region)
7462 (kannada-compose-string, kannada-post-read-conversion):
7463 Add autoload cookie.
7464
7465 * international/quail.el (quail-completion): Change the message
7466 "corresponding translations" to "corresponding characters".
7467
7468 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
7469
7470 * descr-text.el (describe-char): Fix typo.
7471
7472 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
7473
7474 These changes are to support Kannada language/script.
7475
7476 * Makefile.in (DONTCOMPILE): Add kannada.el.
7477
7478 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
7479
7480 * loadup.el: Preload kannada.el.
7481
7482 * language/ind-util.el (ucs-kannada-to-is13194-alist)
7483 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
7484 New variables.
7485
7486 * language/kannada.el: New file.
7487
7488 * language/knd-util.el: New file.
7489
7490 2003-11-07 Andreas Schwab <schwab@suse.de>
7491
7492 * progmodes/autoconf.el (autoconf-font-lock-keywords):
7493 Also highlight AH_*.
7494
7495 * xml.el (xml-parse-dtd): Fix misplaced paren.
7496
7497 2003-11-07 Kenichi Handa <handa@m17n.org>
7498
7499 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
7500
7501 2003-11-05 Juri Linkov <juri@jurta.org>
7502
7503 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
7504 (desktop-buffer-file): Use saved buffer-file-coding-system
7505 for file reading. Set auto-insert to nil to prevent automatic
7506 insertion into restored empty files.
7507
7508 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7509
7510 * files.el (risky-local-variable-p): Make second argument optional.
7511
7512 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7513
7514 * subr.el (add-hook): Fix last change.
7515
7516 2003-11-03 Eli Zaretskii <eliz@gnu.org>
7517
7518 * mail/rmail.el (rmail-convert-to-babyl-format):
7519 If base64-decode-region signals an error, catch it and silently
7520 ignore it.
7521
7522 2003-11-01 Mark A. Hershberger <mah@everybody.org>
7523
7524 * xml.el (xml-parse-region): Allow comments to appear after the
7525 topmost element has closed.
7526 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
7527 (xml-ns-expand-attr): New functions to do namespace handling.
7528 (xml-intern-attrlist): Back-compatible handling of attribute names.
7529 (xml-parse-tag): Move namespace handling to separate functions.
7530 Now produces elements in the form ((:ns . "element") (attr-list)
7531 children) instead of ('ns:element (attr-list) children).
7532 (xml-parse-attlist): Fix attribute parsing.
7533 (xml-parse-dtd): Change parsing so that it produces strings
7534 instead of interned symbols.
7535
7536 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
7537
7538 * dired.el (dired-ls-sorting-switches): Doc fix.
7539
7540 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
7541
7542 * emacs-lisp/rx.el (rx-or): Fix the case of
7543 "(rx (and ?a (or ?b ?c) ?d))".
7544
7545 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
7546
7547 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
7548 (texinfo-format-region): Use it.
7549 (texinfo-format-buffer-1): Ditto.
7550
7551 2003-11-01 Alan Mackenzie <acm@muc.de>
7552
7553 Changes to allow scrolling whilst in isearch mode:
7554 * isearch.el (isearch-unread-key-sequence): New function,
7555 extracted from isearch-other-meta-char.
7556 (top level): (put 'foo 'isearch-scroll) on all Emacs's
7557 "scrollable" standard functions.
7558 (isearch-allow-scroll): New customizable variable.
7559 (isearch-string-out-of-window, isearch-back-into-window)
7560 (isearch-reread-key-sequence-naturally)
7561 (isearch-lookup-scroll-key): New functions.
7562 (isearch-other-meta-char): Doc string and functionality enhanced.
7563 Now accepts a prefix argument.
7564 (isearch-lazy-highlight-window-end): New variable.
7565 (isearch-lazy-highlight-new-loop): Pay attention to the window's
7566 end (thru isearch-lazy-highlight-window-end), not only its start.
7567
7568 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
7569 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
7570 (universal-argument, universal-argument-more, negative-argument)
7571 (digit-argument, universal-argument-other-key): Minor changes.
7572
7573 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7574
7575 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
7576 recursively if the last message is deleted, thus avoiding an
7577 infinite loop.
7578
7579 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7580
7581 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
7582 (tex-main-file): Don't add .tex if the extension is already present.
7583 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
7584
7585 2003-10-29 Lute Kamstra <lute@gnu.org>
7586
7587 * progmodes/octave-inf.el (inferior-octave-prompt):
7588 Recognize version number in prompt.
7589
7590 2003-10-28 Dave Love <fx@gnu.org>
7591
7592 * international/characters.el: Fix some Unicode ranges.
7593
7594 2003-10-28 Kenichi Handa <handa@m17n.org>
7595
7596 * disp-table.el (standard-display-8bit)
7597 (standard-display-default, standard-display-ascii)
7598 (standard-display-g1, standard-display-graphic)
7599 (standard-display-underline): Assure that standard-display-table
7600 is a display table.
7601
7602 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
7603
7604 * simple.el (reindent-then-newline-and-indent): Delete space *after*
7605 reindenting the first line.
7606
7607 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
7608
7609 * wid-edit.el (widget-default-delete): Always delete child widgets.
7610
7611 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7612
7613 * newcomment.el (comment-indent): Don't call indent-according-to-mode
7614 if the line has code.
7615 Don't try to line up with something that's too far left.
7616
7617 * progmodes/octave-mod.el (octave-comment-start): Simplify.
7618 (octave-mode-syntax-table): Add % as a comment starter.
7619 (octave-point): Remove.
7620 (octave-in-comment-p, octave-in-string-p)
7621 (octave-not-in-string-or-comment-p, calculate-octave-indent)
7622 (octave-blink-matching-block-open, octave-auto-fill):
7623 Use line-(beginning|end)-position instead.
7624
7625 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
7626
7627 * emacs-lisp/authors.el (authors-aliases): Add correct realname
7628 for Francesco Potort\e,Al\e(B.
7629
7630 2003-10-23 Dave Love <fx@gnu.org>
7631
7632 * international/mule-cmds.el (locale-charset-to-coding-system):
7633 Don't rely on nil being a coding system.
7634
7635 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
7636 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
7637 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
7638
7639 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
7640
7641 * gdb-ui.el (gdb-current-language): New variable.
7642 (gdb-update-flag): Remove variable.
7643 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
7644 (gdb-take-last-elt): Remove function.
7645 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
7646 (gdb-post-prompt): Check for variable object changes here.
7647
7648 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
7649 object changes in gdb-ui.el.
7650
7651 2003-10-21 Richard M. Stallman <rms@gnu.org>
7652
7653 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
7654
7655 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
7656 Don't check for foo*/ wildcard form here.
7657 (insert-directory): Recognize foo*/ as a wildcard.
7658 Separate wildcard-regexp variable from the arg, wildcard.
7659
7660 * subr.el (add-hook): Correctly detect when make-local-hook was used.
7661 (remove-hook): Correctly handle strange cases about local hooks.
7662
7663 2003-10-21 David Ponce <david@dponce.com>
7664
7665 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
7666 argument REAL, to return a real number instead of a rounded
7667 integer value. Define as inline function.
7668 (ruler-mode-right-fringe-cols): Likewise.
7669 (ruler-mode-scroll-bar-cols): New function.
7670 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
7671 (ruler-mode-right-scroll-bar-cols): Likewise.
7672 (ruler-mode-space): New function.
7673 (ruler-mode-ruler): Use it. Handle variations of fringe style,
7674 scroll bar mode and margins in a more robust way.
7675
7676 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
7677
7678 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
7679 (antlr-c-init-language-vars): New function.
7680 (antlr-mode): Use it with cc-mode before v5.29.
7681 (antlr-c-common-init): Don't set some local vars here.
7682 (antlr-mode): Set them here.
7683 (antlr-c-forward-sws): New function alias.
7684 (antlr-mode): Redefine with cc-mode before v5.30.
7685 (antlr-skip-sexps): Use it.
7686 (antlr-skip-exception-part): Ditto.
7687 (antlr-skip-file-prelude): Ditto.
7688 (antlr-outside-rule-p): Ditto.
7689 (antlr-end-of-body): Ditto.
7690 (antlr-option-kind): Ditto.
7691 (antlr-insert-option-area): Ditto.
7692 (antlr-file-dependencies): Ditto.
7693
7694 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7695
7696 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
7697 Move backward only if point was not inside an entry.
7698
7699 2003-10-21 Richard M. Stallman <rms@gnu.org>
7700
7701 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
7702
7703 2003-10-21 Juri Linkov <juri@jurta.org>
7704
7705 * compare-w.el: Automatically skip non-matching text to resync.
7706 (compare-windows-whitespace): Doc fix.
7707 (compare-windows-sync, compare-windows-sync-string-size)
7708 (compare-windows-recenter, compare-ignore-whitespace)
7709 (compare-windows-highlight, compare-windows-face): New variables.
7710 (compare-windows): Use compare-windows-sync.
7711 (compare-windows-highlight, compare-windows-dehighlight)
7712 (compare-windows-sync-regexp)
7713 (compare-windows-sync-default-function): New functions.
7714
7715 2003-10-21 Juri Linkov <juri@jurta.org>
7716
7717 * diff.el (diff-parse-differences): Don't visit the files now;
7718 instead, just record the error locus.
7719
7720 2003-10-21 Dave Love <fx@gnu.org>
7721
7722 * progmodes/cfengine.el: New file.
7723
7724 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7725
7726 * complete.el (PC-do-completion): Do not forget to use `pred' as the
7727 default-directory when completing file names.
7728
7729 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
7730
7731 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
7732 followed by the word `face', it gets treated as a face, even if
7733 it is also defined as a variable or a function.
7734
7735 2003-10-20 Dave Love <fx@gnu.org>
7736
7737 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7738 Avoid incf in macro expansion.
7739
7740 2003-10-20 John Paul Wallington <jpw@gnu.org>
7741
7742 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
7743 `evenp' so we don't implicitly require cl library at runtime.
7744
7745 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
7746
7747 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
7748 (help-make-xrefs): Only make cross-references for faces if
7749 preceded or followed by the word `face'. Do not make a
7750 cross-reference for variables without variable documentation,
7751 unless preceded by the word `variable' or `option'. Update doc
7752 string accordingly.
7753
7754 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
7755
7756 * progmodes/hideshow.el: Rewrite one-armed `if'
7757 constructs using either `when' or `unless'.
7758 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
7759
7760 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
7761
7762 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
7763 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
7764 instead of 12x12.
7765
7766 2003-10-16 Eli Zaretskii <eliz@gnu.org>
7767
7768 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
7769 message while converting to Babyl.
7770
7771 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
7772
7773 * allout.el (allout-mode): Doc fix.
7774
7775 2003-10-16 Lute Kamstra <lute@gnu.org>
7776
7777 * subr.el (force-mode-line-update): Fix docstring.
7778
7779 2003-10-14 Dave Love <fx@gnu.org>
7780
7781 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
7782 (default-input-method): Add :link, improve :type.
7783 (locale-charset-language-names): Fix utf-8 pattern.
7784 (locale-charset-match-p, locale-charset-alist)
7785 (locale-charset-to-coding-system): New.
7786 (set-locale-environment): Deal with codeset part of locale specs.
7787
7788 2003-10-14 Lute Kamstra <lute@gnu.org>
7789
7790 * fringe.el (fringe-mode): Use active voice in docstring.
7791 (set-fringe-style): Ditto.
7792
7793 2003-10-13 Lute Kamstra <lute@gnu.org>
7794
7795 * fringe.el (fringe-mode): Fix docstring.
7796 (set-fringe-style): Ditto.
7797
7798 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
7799
7800 * ediff-mult.el (ediff-filegroup-action):
7801 Use ediff-default-filtering-regexp.
7802
7803 * ediff-util.el (ediff-recenter): Don't call
7804 ediff-restore-highlighting twice.
7805 (ediff-select-difference): Set current difference.
7806 (ediff-unselect-and-select-difference): Add comment.
7807
7808 * ediff.el (ediff-directories,ediff-directory-revisions)
7809 (ediff-directories3,ediff-merge-directories)
7810 (ediff-merge-directories-with-ancestor)
7811 (ediff-merge-directory-revisions)
7812 (ediff-merge-directory-revisions-with-ancestor):
7813 Use ediff-default-filtering-regexp.
7814
7815 2003-10-12 Andreas Schwab <schwab@suse.de>
7816
7817 * international/mule-cmds.el (locale-charset-language-names):
7818 Simplify regex by removing unused grouping.
7819
7820 2003-10-10 Dave Love <fx@gnu.org>
7821
7822 * bindings.el: Don't bind stop.
7823
7824 2003-10-08 Miles Bader <miles@gnu.org>
7825
7826 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
7827 face instead of attempting to emulate it.
7828
7829 2003-10-07 Kenichi Handa <handa@m17n.org>
7830
7831 * international/mule-diag.el (list-coding-systems-1): List coding
7832 systems that are loaded automatically.
7833
7834 * international/code-pages.el (iso-8859-11): Add autoload cookie.
7835
7836 * international/mule.el (autoload-coding-system): New function.
7837
7838 2003-10-07 Andreas Schwab <schwab@suse.de>
7839
7840 * log-edit.el (log-edit-changelog-entries): Prefer local value of
7841 change-log-default-name in the buffer visiting the file.
7842
7843 2003-10-06 Dave Love <fx@gnu.org>
7844
7845 * files.el (find-file-hook): Customize.
7846 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
7847
7848 * bindings.el (completion-ignored-extensions): Remove .log.
7849 (global-map): Add again, open, stop keys.
7850
7851 2003-10-05 Richard M. Stallman <rms@gnu.org>
7852
7853 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
7854 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
7855 Use sh-modify directly.
7856 (sh-select): Use sh-append, not eval.
7857
7858 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
7859
7860 * info.el (Info-following-node-name): New function.
7861
7862 * loadhist.el (unload-feature-special-hooks):
7863 Rename from loadhist-hook-functions.
7864 (loadhist-hook-functions): Now an alias.
7865
7866 2003-10-04 Eli Zaretskii <eliz@gnu.org>
7867
7868 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
7869 file-name clashes on 8+3 filesystems.
7870
7871 * Makefile.in (DONTCOMPILE, bootstrap-clean):
7872 Rename loaddefs-boot.el to ldefs-boot.el
7873
7874 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
7875 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
7876
7877 2003-10-03 Lute Kamstra <lute@gnu.org>
7878
7879 * info.el (Info-mode): Revert previous change.
7880 (Info-escape-percent): New function.
7881 (Info-fontify-node): Use it.
7882
7883 2003-10-02 Andreas Schwab <schwab@suse.de>
7884
7885 * loaddefs-boot.el: Regenerated.
7886
7887 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
7888
7889 * ffap.el: Remove defadvice related code from CVS since `complete'
7890 provides a `PC-completion-as-file-name-predicate' variable that
7891 ffap can override.
7892
7893 2003-10-02 Kenichi Handa <handa@m17n.org>
7894
7895 * international/utf-8.el (ccl-decode-mule-utf-8):
7896 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
7897
7898 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
7899 * international/subst-big5.el: Likewise.
7900 * international/subst-gb2312.el: Likewise.
7901 * international/subst-ksc.el: Likewise.
7902
7903 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
7904
7905 * calendar/calendar.el (increment-calendar-month)
7906 (calendar-leap-year-p, calendar-absolute-from-gregorian)
7907 (generate-calendar, calendar-read-date, calendar-interval)
7908 (calendar-day-of-week): Handle years BC.
7909 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
7910
7911 2003-10-01 Dave Love <fx@gnu.org>
7912
7913 * language/cyrillic.el (cp1251): Alias for windows-1251.
7914
7915 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
7916 bootstrap.
7917
7918 2003-10-01 Lute Kamstra <lute@gnu.org>
7919
7920 * files.el: Fix typo.
7921 * imenu.el (imenu--generic-function): Docstring fix.
7922
7923 2003-09-30 Richard M. Stallman <rms@gnu.org>
7924
7925 * dired.el (dired-mode): Handle dired-directory as a list.
7926
7927 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
7928
7929 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
7930
7931 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
7932
7933 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
7934 Replace gud-display with gud-watch.
7935 (gud-speedbar-buttons): Add stuff for watching expressions
7936 in the speedbar when using M-x gdba. Use dolist on old part
7937 of this function.
7938
7939 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
7940 (gdb-update-flag): New variables.
7941 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
7942 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
7943 (gud-watch, gdb-var-create-handler) : New functions.
7944 (gdb-var-list-children, gdb-var-list-children-handler)
7945 (gdb-var-create-regexp, gdb-var-update-regexp)
7946 (gdb-var-list-children-regexp): New constants.
7947 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
7948 (gdb-annotation-rules): Reduce annotation set (level 3).
7949 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
7950 (gdb-post-prompt): Don't update GDB buffers every time speedbar
7951 updates.
7952 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
7953 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
7954 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
7955 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
7956 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
7957 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
7958 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
7959 (gud-display, gud-display1)
7960 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
7961 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
7962 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
7963 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
7964 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
7965 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
7966 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
7967 (gdb-display-display-buffer, gdb-toggle-display)
7968 (gdb-delete-display, gdb-expressions-popup-menu)
7969 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
7970 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
7971 to display buffer.
7972
7973 2003-09-30 Richard M. Stallman <rms@gnu.org>
7974
7975 * progmodes/ada-mode.el (ada-mode): Don't use advice.
7976 Instead, set which-func-functions.
7977
7978 * progmodes/which-func.el (which-func-modes): Add ada-mode.
7979 (which-func-functions): New variable.
7980 (which-function): Use that.
7981
7982 * info.el (Info-mode): Double each `%' in header line.
7983
7984 * emacs-lisp/lisp-mnt.el (lm-with-file):
7985 When FILE is nil, run BODY in current buffer.
7986
7987 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
7988
7989 * help.el (describe-mode): Start with a brief list of minor modes.
7990 Find them thru minor-mode-list so as to find them all.
7991 Show them in alphabetical order.
7992
7993 * mail/sendmail.el (mail-aliases): Doc fix.
7994
7995 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
7996
7997 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7998
7999 * mail/rmailsum.el (rmail-make-summary-line-1):
8000 Change comma after last label to a space.
8001 (rmail-summary-font-lock-keywords): Adapt to that change.
8002
8003 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
8004
8005 * progmodes/scheme.el (scheme-mode-variables): When setting
8006 `font-lock-defaults', also specify that "#" should
8007 be interpreted with `word' syntax.
8008 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
8009
8010 2003-09-30 Lars Hansen <larsh@math.ku.dk>
8011
8012 * desktop.el: A lot of comments updated.
8013 (desktop-save-mode): Minor mode introduced.
8014 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
8015 (desktop-load-default): Function made obsolete.
8016 (desktop-locals-to-save): Variable made customizable.
8017 (desktop-read): Optional parameter `dirname' added.
8018 (desktop-change-dir, desktop-revert): Parameter `dirname' in
8019 `desktop-read' used.
8020 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
8021
8022 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
8023
8024 * whitespace.el (whitespace-clean-msg): Add user customizable message
8025 for displaying ``clean'' output.
8026 (whitespace-buffer): Use `whitespace-clean-msg'.
8027 (whitespace-global-mode): Fix typo.
8028
8029 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
8030
8031 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
8032
8033 2003-09-29 Lute Kamstra <lute@gnu.org>
8034
8035 * bindings.el (mode-line-modes): Remove superfluous :propertize
8036 construct in initialization.
8037 (mode-line-position): Change cons cell into proper list in
8038 initialization.
8039
8040 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
8041
8042 * international/mule.el (decode-coding-inserted-region): Use car
8043 of the return value of find-operation-coding-system.
8044
8045 2003-09-29 Kenichi Handa <handa@m17n.org>
8046
8047 * descr-text.el (describe-char): Fix previous change.
8048
8049 2003-09-28 Kenichi Handa <handa@m17n.org>
8050
8051 * descr-text.el (describe-char-display): New function.
8052 (describe-char): Pay attention to display table on describing how
8053 a character is displayed.
8054
8055 * international/mule-cmds.el (encoded-string-description):
8056 Prepend "0x" to each encoded byte.
8057
8058 2003-09-28 Andreas Schwab <schwab@suse.de>
8059
8060 * find-file.el (ff-special-constructs): Add autoload cookie.
8061
8062 2003-09-28 Kevin Ryde <user42@zip.com.au>
8063
8064 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
8065 makeinfo appends to duplicate index entries.
8066
8067 2003-09-28 Eli Zaretskii <eliz@gnu.org>
8068
8069 * dired-x.el (dired-clean-tex): Doc fix.
8070
8071 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
8072 using a Chinese tutorial.
8073
8074 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
8075
8076 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
8077 between "MAIL FROM:" and "RCPT TO:" and the following address.
8078
8079 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
8080
8081 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
8082
8083 2003-09-28 David Ponce <david@dponce.com>
8084
8085 * recentf.el (recentf-initialize-file-name-history): New defcustom.
8086 (recentf-load-list): When `recentf-initialize-file-name-history'
8087 is non-nil, initialize an empty `file-name-history' with the
8088 recent list.
8089
8090 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
8091
8092 * man.el (Man-default-man-entry): Remove the leading `*' from the
8093 word at point.
8094
8095 2003-09-26 Lute Kamstra <lute@gnu.org>
8096
8097 * bindings.el (mode-line-position): Mention size indication in
8098 docstring.
8099
8100 2003-09-26 Andre Spiegel <spiegel@gnu.org>
8101
8102 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
8103
8104 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
8105 because it's autoloaded now.
8106
8107 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
8108
8109 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
8110 (sh-font-lock-keywords, sh-feature): Fix previous change of
8111 sh-feature to avoid infloop with sh-font-lock-keywords.
8112
8113 2003-09-25 Kim F. Storm <storm@cua.dk>
8114
8115 * frame.el (frame-current-scroll-bars): New defun.
8116
8117 * window.el (window-current-scroll-bars): New defun.
8118
8119 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8120
8121 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
8122 cause errors when the state cache contains info on parts that have
8123 been narrowed out.
8124
8125 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8126
8127 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
8128 `c-setup-paragraph-variables' has to be used when this variable is
8129 changed; it doesn't work to reinitialize the mode since that
8130 typically clobbers the variable.
8131
8132 * progmodes/cc-styles.el (c-setup-paragraph-variables):
8133 Make it interactive.
8134
8135 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8136
8137 * progmodes/cc-fonts.el (c-font-lock-declarations):
8138 Fix recognition of constructors and destructors for classes whose
8139 names are matched by `*-font-lock-extra-types'.
8140
8141 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
8142 followed by an identifier in C++ then it's a type.
8143
8144 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8145
8146 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
8147 problem that primarily affected XEmacs. Don't use faces to find
8148 unterminated strings since Emacs and XEmacs fontify strings
8149 differently - this function should now work better in XEmacs.
8150
8151 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8152
8153 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
8154 `expand-abbrev' workaround which caused braces to misbehave inside
8155 macros.
8156
8157 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
8158 handling. This bug could cause interactive font locking to bail out.
8159
8160 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8161
8162 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8163 Handle paren-style types in Pike. Also fixed some cases of
8164 insufficient handling of unbalanced parens.
8165
8166 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
8167
8168 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
8169 common shell prompts that are not common filename or URL characters.
8170 (ffap-file-at-point): Use the new regexp to strip the prompts from
8171 the file names. This is an issue mostly for user prompts that
8172 don't have a trailing space and find-file-at-point is invoked from
8173 within a shell inside Emacs.
8174
8175 2003-09-24 Andre Spiegel <spiegel@gnu.org>
8176
8177 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
8178 stamps numerically, rather than textually.
8179
8180 2003-09-24 Kenichi Handa <handa@m17n.org>
8181
8182 * language/devan-util.el (devanagari-post-read-conversion):
8183 * language/mlm-util.el (malayalam-post-read-conversion):
8184 * language/tml-util.el (tamil-post-read-conversion):
8185 Add autoload cookie.
8186
8187 * international/utf-8.el (utf-8-post-read-conversion):
8188 Call post-read-conversion functions for Devanagari, Malayalam,
8189 and Tamil.
8190
8191 2003-09-23 Dave Love <fx@gnu.org>
8192
8193 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
8194
8195 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
8196
8197 * progmodes/gud.el (perldb): Add gud-until to list of commands.
8198 Update gud-remove.
8199
8200 2003-09-22 Richard M. Stallman <rms@gnu.org>
8201
8202 * progmodes/sh-script.el (sh-mode-default-syntax-table):
8203 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
8204 (sh-mode-syntax-table-input): New variable.
8205 (sh-require-final-newline): Don't use eval.
8206 (sh-builtins, sh-leading-keywords, sh-other-keywords)
8207 (sh-variables, sh-font-lock-keywords): Don't use eval.
8208 (sh-set-shell): When setting require-final-newline,
8209 treat value = `require-final-newline' as don't change it.
8210 Set sh-mode-syntax-table locally based on
8211 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
8212
8213 * progmodes/compile.el (compile-internal):
8214 Call compilation-set-window-height before setting window start.
8215
8216 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
8217
8218 * emacs-lisp/bytecomp.el (byte-compile-log-file):
8219 Clear out byte-compile-last-warned-form.
8220
8221 2003-09-22 Richard M. Stallman <rms@gnu.org>
8222
8223 * woman.el (woman-file-name, woman-follow-word):
8224 If current-word returns nil, use "".
8225
8226 * simple.el (eval-expression): Bind standard-output in to-buffer case.
8227
8228 2003-09-22 Richard M. Stallman <rms@gnu.org>
8229
8230 * emacs-lisp/lisp-mnt.el (lm-with-file):
8231 Don't visit the file, just use insert-file-contents in temp buffer.
8232
8233 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
8234
8235 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
8236 Add surrounding \\( and \\) around the header, as in
8237 for lm-history-header 'Change Log\\|History'.
8238
8239 2003-09-22 John Paul Wallington <jpw@gnu.org>
8240
8241 * progmodes/ld-script.el: Add Commentary section,
8242 minor cleanup of file header.
8243 (ld-script-font-lock-keywords): Doc fix.
8244 (toplevel): Provide `ld-script' feature.
8245
8246 2003-09-21 Kim F. Storm <storm@cua.dk>
8247
8248 * scroll-bar.el (set-scroll-bar-mode): Initialize to
8249 new built-in variable default-frame-scroll-bars.
8250 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
8251 scroll-bar-mode; notably, use it instead of t when we toggle
8252 scroll-bars on.
8253 (toggle-scroll-bar): Use default-frame-scroll-bars.
8254
8255 2003-09-19 Masatake YAMATO <jet@gyve.org>
8256
8257 * pcvs.el (cvs-do-removal): Change the prompt depending on
8258 `filter' value.
8259
8260 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8261
8262 * startup.el (command-line-1): Stop startup-echo-area-message
8263 being hidden by "Loading image..." message.
8264 (use-fancy-splash-screens-p, display-splash-screen):
8265 Move display-graphic-p test from latter to former.
8266
8267 * progmodes/sh-script.el (sh-font-lock-keywords):
8268 Highlight escaped EOLs differently from other backslash constructs.
8269
8270 2003-09-19 Richard M. Stallman <rms@gnu.org>
8271
8272 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
8273 New functions.
8274 (edebug-enter, edebug-outside-excursion): Use them.
8275
8276 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
8277 Fix the condition for whether to print "In WHERE".
8278
8279 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
8280
8281 * finder.el (finder-mode-hook): New variable.
8282 (finder-mode): Run hook finder-mode-hook
8283
8284 2003-09-18 Masatake YAMATO <jet@gyve.org>
8285
8286 * progmodes/ebrowse.el: Fix broken magic autoload comments.
8287
8288 2003-09-17 Mario Lang <mlang@delysid.org>
8289
8290 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
8291 "p %e" to actually print the value in the GUD buffer.
8292
8293 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
8294
8295 From David Ponce <david.ponce@wanadoo.fr>:
8296 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
8297 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
8298 from loaddefs-boot.el if necessary.
8299
8300 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
8301
8302 * progmodes/gud.el (gud-find-class): Make jdb work again since
8303 cc-mode changed the syntactic information.
8304
8305 2003-09-15 David Ponce <david@dponce.com>
8306
8307 * recentf.el: (recentf-exclude): Accept predicates too.
8308 (recentf-file-readable-p): New function.
8309 (recentf-include-p): Handle predicates in recentf-exclude.
8310 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
8311 (recentf-cleanup): Likewise.
8312 (recentf-save-list): Use write-file to handle backup of
8313 recentf-save-file.
8314
8315 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
8316
8317 * loaddefs-boot.el: Renamed from `loaddefs.el'
8318 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
8319 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
8320 necessary.
8321
8322 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
8323
8324 * electric.el (Electric-pop-up-window): For the `one-window' case,
8325 no longer disconcertingly move point in the original buffer.
8326
8327 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8328
8329 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
8330
8331 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
8332
8333 * dired.el (dired-mode-map): Fix typo.
8334
8335 2003-09-11 Richard M. Stallman <rms@gnu.org>
8336
8337 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
8338
8339 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8340
8341 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
8342 the function is less noisy. Now only `kill-buffer' can ask questions.
8343
8344 2003-09-10 Mario Lang <mlang@delysid.org>
8345
8346 * battery.el: Update Commentary and Copyright.
8347 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
8348 appear due to wrong ordering of the expressions in `or'.
8349
8350 2003-09-09 Lute Kamstra <lute@gnu.org>
8351
8352 * misc.el (upcase-char): Fix docstring.
8353 (zap-up-to-char): New command.
8354
8355 2003-09-08 David Ponce <david@dponce.com>
8356
8357 Ensure that recentf correctly updates the menu bar.
8358 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
8359 (recentf-menu-bar): New function.
8360 (recentf-clear-data): Use it
8361 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
8362 of easy-menu-change.
8363
8364 2003-09-08 Lute Kamstra <lute@gnu.org>
8365
8366 * simple.el (size-indication-mode): New.
8367 * bindings.el (mode-line-position): Add buffer size indicator.
8368
8369 2003-09-04 Mario Lang <mlang@delysid.org>
8370
8371 * battery.el (battery-linux-proc-acpi): New function.
8372 (battery-status-function): Modify default value calculation to also
8373 check for availability of ACPI.
8374 (battery-echo-area-format): Ditto.
8375 (battery-mode-line-format): Ditto.
8376
8377 2003-09-06 Dave Love <fx@gnu.org>
8378
8379 * ielm.el (ielm-mode-hook): Add :options.
8380
8381 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
8382 (eldoc-print-current-symbol-info): Use it.
8383
8384 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
8385
8386 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
8387 being displayed in GUD buffer.
8388 (gdb-idle-input-queue): Remove var. Use just one queue.
8389 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
8390 Remove functions. Use just one queue.
8391 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
8392 (gdb-invalidate-assembler, gdb-get-current-frame):
8393 Modify functions. Use just one queue.
8394
8395 2003-09-04 Dave Love <fx@gnu.org>
8396
8397 * cus-start.el: Add blink-cursor-alist.
8398
8399 * ruler-mode.el (ruler-mode-fill-column-char)
8400 (ruler-mode-current-column-char): Use char-displayable-p,
8401 not window-system.
8402
8403 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
8404
8405 * language/european.el (windows-1252): Move from code-pages.
8406
8407 * language/cyrillic.el ("Windows-1251"): Delete.
8408 ("Bulgarian", "Belarusian"): Remove `features'.
8409 (windows-1251): Move from code-pages.
8410
8411 * international/mule-diag.el (non-iso-charset-alist):
8412 Remove `codepage' stuff.
8413 (print-designation, list-coding-systems-1): Output fixes.
8414
8415 * international/code-pages.el (cp-make-translation-table)
8416 (cp-valid-codes): Made defsubsts.
8417 (cp-fix-safe-chars): Delete.
8418 (mule-diag): Don't require.
8419 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
8420 (top-level): Check for defined coding system when defining
8421 cp... aliases. Change w32-add-charset-info test to avoid warning.
8422 (non-iso-charset-alist): Defvar when compiling.
8423 (cp-make-coding-system): Doc fix.
8424
8425 2003-09-02 Jason Rumney <jasonr@gnu.org>
8426
8427 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
8428 line-ends from CVS before doing conversion.
8429
8430 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
8431
8432 * calendar/diary-lib.el (diary-header-line-flag)
8433 (diary-header-line-format): New variables.
8434 (list-diary-entries): Use them to set header line in simple diary.
8435
8436 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
8437 other than font-lock-string-face to highlight backslashes.
8438
8439 2003-09-01 Jason Rumney <jasonr@gnu.org>
8440
8441 * international/titdic-cnv.el (tit-read-key-value): Include \r in
8442 regexp.
8443
8444 2003-09-01 Dave Love <fx@gnu.org>
8445
8446 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
8447
8448 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
8449 and :help; also line and column numbers labels.
8450
8451 * international/mule-util.el (char-displayable-p): Move from
8452 latin1-disp, rename and autoload.
8453
8454 * international/latin1-disp.el (latin1-char-displayable-p):
8455 Now obsolete alias. Replace uses with char-displayable-p.
8456 (latin1-display-ucs-per-lynx): Fix last change.
8457
8458 * international/mule-cmds.el (standard-display-european-internal):
8459 Don't use char code for Latin-1 NBSP.
8460 <XFree86 4>: Unfrob NBSP display table. Set display table to use
8461 U+2018, U+2019 for `'.
8462 (select-safe-coding-system): Message fix.
8463
8464 2003-09-01 Kenichi Handa <handa@m17n.org>
8465
8466 * international/fontset.el (setup-default-fontset): For Thai
8467 font, specify "*" family.
8468
8469 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8470
8471 * progmodes/compile.el (previous-error): Accept a prefix
8472 argument, similarly to next-error.
8473
8474 2003-08-31 Masatake YAMATO <jet@gyve.org>
8475
8476 * pcvs.el (cvs-do-removal): Use = instead of eq to check
8477 the number of files. Bind the number of files to a local
8478 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
8479
8480 2003-08-30 Eli Zaretskii <eliz@gnu.org>
8481
8482 * vc-hooks.el (vc-make-version-backup): Fix the change made on
8483 2003-07-26: msdos-long-file-names is a function, not a variable.
8484
8485 2003-08-29 Richard M. Stallman <rms@gnu.org>
8486
8487 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
8488 Do nothing with mail-personal-alias-file if it is nil.
8489
8490 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
8491 Do nothing if mail-personal-alias-file is nil.
8492
8493 * term.el (term-exec-1): Bind coding-system-for-read.
8494
8495 * dired.el (dired-mouse-find-file-other-window):
8496 Use dired-view-command-alist here, as in dired-view-file.
8497 (dired-view-command-alist): Use %s to substitute file name.
8498 Handle .ps_pages, .eps, .jpg, .gif, .png.
8499
8500 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
8501
8502 * info.el (Info-mode-map): Bind S-tab and <backtab> to
8503 `Info-prev-reference', instead of M-tab.
8504
8505 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
8506
8507 * simple.el (blink-matching-open): Work correctly on chars that
8508 are designated as parens through the syntax-table text property.
8509
8510 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
8511
8512 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
8513 line break position in the middle of a non-kinsoku (e.g. latin)
8514 word, making it skip until either a space or a character with
8515 category "|".
8516 (kinsoku-longer): Test for end of buffer.
8517
8518 2003-08-28 Eli Zaretskii <eliz@gnu.org>
8519
8520 * mail/rmail.el (rmail-convert-to-babyl-format):
8521 Detect quoted-printable- and base64-encoded messages and decode them
8522 automatically. Set the message's encoding from the charset=
8523 header, if any. Decode base64-encoded messages in Mail format as well.
8524
8525 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8526
8527 * mail/smtpmail.el: Fix previous change.
8528 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
8529 calling smtpmail-via-smtp.
8530 (smtpmail-via-smtp): Add fall-back values for envelope-from.
8531
8532 2003-08-26 John Paul Wallington <jpw@gnu.org>
8533
8534 * image.el (image-jpeg-p): Don't search beyond length of data.
8535
8536 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8537
8538 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
8539 misfeature in `expand-abbrev' which caused electric keywords like
8540 "else" to disappear if an open brace was typed directly afterwards.
8541
8542 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8543
8544 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
8545 mandatory in `define-widget'.
8546
8547 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
8548 Don't align the operators "!=", "<=" and ">=" as assignment operators.
8549
8550 (c-assignment-operators): New language constant that only contains
8551 the assignment operators.
8552
8553 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
8554
8555 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8556
8557 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8558 Safeguard against unbalanced sexps.
8559
8560 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
8561
8562 * version.el (emacs-version): Check for gtk. Include gtk version info.
8563
8564 2003-08-25 John Paul Wallington <jpw@gnu.org>
8565
8566 * man.el (Man-default-man-entry): Don't whizz past the section
8567 number before looking for it.
8568
8569 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
8570
8571 * progmodes/gud.el (gud-display-line): Don't set window-point if
8572 source buffer is not visible. (Only happens with M-x gdba.)
8573
8574 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
8575 documentation.
8576 (gdb-source, gdb-source-info): Update to assembler unnecessary
8577 as its done after each GDB command anyway.
8578 (gdb-pre-prompt): Use with-current-buffer.
8579 (gdb-insert-field): Add help-echo text.
8580 (gdb-invalidate-assembler): Re-display of assembler now done in
8581 gdb-info-breakpoints-custom.
8582 (gdb-info-breakpoints-custom): Force re-display of assembler to
8583 happen *after* update of breakpoints buffer.
8584 (gdb-display-source-buffer): Don't choke if gdb-source-window
8585 isn't visible.
8586 (gdb-put-string, gdb-put-arrow): Remove free variables.
8587
8588 2003-08-24 John Paul Wallington <jpw@gnu.org>
8589
8590 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
8591
8592 * man.el (Man-default-man-entry): Strip text properties when
8593 snarfing parts of entry because `format' preserves properties.
8594
8595 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8596
8597 * files.el (file-newest-backup): Use `expand-file-name'.
8598
8599 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
8600 Allow the diary to pop up a new frame, if needed.
8601
8602 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
8603 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
8604 (smtpmail-send-it): Make treatment of envelope-from consistent with
8605 sendmail.el.
8606
8607 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
8608 (sh-leading-keywords): Add the bash `time' reserved word.
8609 (sh-variables): Add some bash variables.
8610 (sh-add-completer): Fix nil branch of case statement.
8611
8612 2003-08-24 Masatake YAMATO <jet@gyve.org>
8613
8614 * progmodes/ld-script.el: New file.
8615
8616 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
8617
8618 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
8619
8620 2003-08-23 Andre Spiegel <spiegel@gnu.org>
8621
8622 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
8623 Better explain obsolescence, and what to use instead.
8624
8625 2003-08-23 Masatake YAMATO <jet@gyve.org>
8626
8627 * pcvs.el (cvs-do-removal): Show the deleted file name
8628 on the prompt.
8629
8630 2003-08-20 Dave Love <fx@gnu.org>
8631
8632 * international/mule.el (make-coding-system)
8633 (set-buffer-file-coding-system): Doc fix.
8634
8635 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
8636
8637 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
8638
8639 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
8640
8641 * international/utf-16.el: Add mime-text-unsuitable coding system
8642 properties.
8643
8644 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
8645
8646 * cus-edit.el: Add some :links.
8647 (bib): Remove.
8648
8649 * textmodes/bib-mode.el (bib): Add :group external.
8650
8651 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
8652
8653 * wid-edit.el (widget-echo-help): Make it handle expressions that
8654 evaluate to strings.
8655
8656 2003-08-18 Michael Mauger <mmaug@yahoo.com>
8657
8658 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
8659
8660 Simplify selection of SQL products to define highlighting and
8661 interactive mode. Includes detailed instructions on adding
8662 support for new products.
8663
8664 * progmodes/sql.el (sql-product): New variable. Identifies SQL
8665 product for use in highlighting and interactive mode.
8666 (sql-interactive-product): New variable. SQL product for
8667 sql-interactive-mode.
8668 (sql-product-support): New variable. Specifies product-specific
8669 parameters to drive highlighting and interactive mode.
8670 (sql-imenu-generic-expression): Add more object types.
8671 (sql-sqlite-options): Correct comment.
8672 (sql-ms-program): Use "osql" rather than "isql".
8673 (sql-prompt-regexp, sql-prompt-length): Update comment.
8674 (sql-mode-menu): Add "Start SQLi session" entry.
8675 Replace Highlighting submenu with Product menu. Fix Send Region entry.
8676 (sql-mode-abbrev-table): Add abbreviations. Support of
8677 SYSTEM-FLAG on define-abbrev. Support was removed with last
8678 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
8679 (sql-mode-font-lock-object-name): Add font-lock pattern for object
8680 names.
8681 (sql-mode-ansi-font-lock-keywords): Set as default value.
8682 (sql-mode-oracle-font-lock-keywords): Set as default value.
8683 Support Oracle 9i keywords.
8684 (sql-mode-postgres-font-lock-keywords): Set as default value.
8685 (sql-mode-linter-font-lock-keywords): Set as default value.
8686 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
8687 SQLServer 2000.
8688 (sql-mode-sybase-font-lock-keywords)
8689 (sql-mode-interbase-font-lock-keywords)
8690 (sql-mode-sqlite-font-lock-keywords)
8691 (sql-mode-strong-font-lock-keywords)
8692 (sql-mode-mysql-font-lock-keywords)
8693 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
8694 keywords.
8695 (sql-mode-font-lock-defaults): Update comment.
8696 (sql-product-feature): New function. Returns feature associated
8697 with a product from `sql-product-support' alist.
8698 (sql-product-font-lock): New function. Set font-lock support
8699 based on `sql-product'.
8700 (sql-add-product-keywords): New function. Add font-lock rules to
8701 product-specific keyword variables.
8702 (sql-set-product): New function. Set `sql-product' and apply
8703 appropriate font-lock highlighting.
8704 (sql-highlight-product): New function. Set font-lock support
8705 based on a product. Also set mode name to include product name.
8706 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
8707 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
8708 Use `sql-set-product'.
8709 (sql-highlight-ms-keywords)
8710 (sql-highlight-sybase-keywords)
8711 (sql-highlight-interbase-keywords)
8712 (sql-highlight-strong-keywords)
8713 (sql-highlight-mysql-keywords)
8714 (sql-highlight-sqlite-keywords)
8715 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
8716 (sql-get-login): Prompt in the same order as the tokens.
8717 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
8718 (sql-product-interactive): New function. Common portions of
8719 product-specific interactive mode wrappers.
8720 (sql-interactive-mode): Rewritten to use product features.
8721 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
8722 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
8723 (sql-db2, sql-linter): Use `sql-product-interactive'.
8724 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
8725 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
8726 (sql-connect-ingres, sql-connect-postgres)
8727 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
8728 New functions. Format command line parameters and invoke comint on
8729 the appropriate interpreter. Code was in the corresponding
8730 `sql-xyz' function before.
8731 (sql-connect-ms): New function. Support -E argument to use
8732 operating system credentials for authentication.
8733
8734 2003-08-18 Kenichi Handa <handa@m17n.org>
8735
8736 * international/mule.el (encode-char): Fix for the ASCII case.
8737
8738 2003-08-15 Kenichi Handa <handa@m17n.org>
8739
8740 * international/fontset.el (setup-default-fontset): Change "*" to
8741 nil in the specifications of font family.
8742
8743 2003-08-18 Kim F. Storm <storm@cua.dk>
8744
8745 * kmacro.el (kmacro-keymap): Group related bindings in
8746 initialization for clarity. Bind C-s to start macro.
8747 Remove C-r binding.
8748 (kmacro-initial-counter-value): New defvar to hold initial counter
8749 value in case we set the value before defining a macro.
8750 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
8751 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
8752 not defining or executing macro. Doc fix.
8753 (kmacro-add-counter): Clear kmacro-initial-counter-value.
8754 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
8755 temporarily view older elements on the macro ring without cycling
8756 the ring.
8757 (kmacro-display): Doc fix.
8758 (kmacro-exec-ring-item): New helper function.
8759 (kmacro-call-ring-2nd): Use it.
8760 (kmacro-call-ring-2nd-repeat): Doc fix.
8761 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
8762 (kmacro-end-or-call-macro): Execute last viewed macro (using
8763 kmacro-exec-ring-item) from ring if this follows
8764 kmacro-view-macro. This allows us to find a macro on the ring
8765 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
8766 the ring to bring it to the head of the ring.
8767 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
8768 Allow binding to reserved keys without specifying C-x C-k prefix.
8769 Ask for confirmation if entered key sequence is already bound to
8770 a non-macro command.
8771 (kmacro-view-macro): Repeating command will show older elements
8772 on the macro ring; C-k will execute the last viewed macro.
8773 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
8774 property from 'ring to 'head.
8775
8776 2003-08-17 Alan Shutko <ats@acm.org>
8777
8778 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
8779 keeping December out of the alist.
8780
8781 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
8782
8783 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
8784 * calendar/calendar.el (calendar-mode-map): Bind it to key.
8785 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
8786 (calendar-flatten): New function.
8787 (calendar-mouse-view-other-diary-entries)
8788 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
8789 in the menu title and to show multi-line diary entries correctly
8790 in the menu.
8791
8792 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
8793
8794 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
8795 defcustom, because the default was recently changed.
8796
8797 2003-08-16 Richard M. Stallman <rms@gnu.org>
8798
8799 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
8800
8801 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8802 New subroutine, broken out of eval-last-sexp-1.
8803 (eval-last-sexp-1): Use eval-last-sexp-print-value.
8804
8805 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
8806
8807 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
8808
8809 * simple.el (eval-expression): Use eval-last-sexp-print-value.
8810
8811 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
8812
8813 * progmodes/compile.el (compilation-error-regexp-alist):
8814 Add Java ANt error detection as described in document
8815 http://ant.apache.org/faq.html
8816
8817 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
8818
8819 * simple.el (backward-word, forward-to-indentation)
8820 (backward-to-indentation): Argument changed to optional.
8821 (next-line, previous-line): Use `or' instead of `unless'.
8822
8823 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8824
8825 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
8826 instead of a constant.
8827
8828 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
8829
8830 * shell.el (shell): With prefix-arg, suggest a new buffer name.
8831
8832 2003-08-12 Andre Spiegel <spiegel@gnu.org>
8833
8834 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
8835 (vc-sccs-workfile-version): Search the entire delta table, rather
8836 than just the first entry, because that might be a deleted version.
8837
8838 2003-08-11 Karl Fogel <kfogel@red-bean.com>
8839
8840 * menu-bar.el (menu-bar-options-menu): Supply a body for the
8841 [save-place] binding in the Options menu. Have it require
8842 'saveplace' and then toggle the variable manually, to avoid an an
8843 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
8844 for the bug report.
8845
8846 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
8847
8848 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
8849 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
8850 (gdb-info-threads-custom): Add help-echo text.
8851 (gdb-display-back): Don't use purecopy.
8852 (gdb-info-breakpoints-custom, gdb-reset)
8853 (gdb-assembler-custom): Use display-images-p to test if breakpoint
8854 icons can be displayed.
8855
8856 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
8857
8858 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
8859
8860 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
8861
8862 * bookmark.el (bookmark-completing-read):
8863 Return a string, instead of a list of one string.
8864 Use a popup menu if activated from the mouse.
8865 (bookmark-edit-annotation): Remove unused vars.
8866 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
8867 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
8868 to bookmark-completing-read.
8869 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8870 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
8871 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
8872 and erase-buffer.
8873 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
8874 (bookmark-menu-jump, bookmark-menu-insert)
8875 (bookmark-popup-menu-and-apply-function)
8876 (bookmark-menu-popup-paned-bookmark-menu): Remove.
8877 (bookmark-menu-build-paned-menu): Remove by folding it into
8878 bookmark-menu-popup-paned-menu.
8879 (menu-bar-bookmark-map): Move the define-key statements here.
8880 Use the "non-menu" commands since they now pop up a menu if needed.
8881 (bookmark-exit-hook-internal): Simplify.
8882
8883 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
8884
8885 * reftex-toc.el (reftex-toc-rename-label): New function.
8886 (reftex-toc-check-docstruct): New function.
8887
8888 * reftex.el (reftex-region-active-p): New function.
8889
8890 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
8891 regexp to find the \bibliography macro.
8892
8893 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
8894 which does not exist in LaTeX.
8895 (reftex-cite-format-builtin): Added amsrefs support.
8896 (reftex-toc-confirm-promotion): New option
8897
8898 * reftex-toc.el
8899 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
8900 (reftex-toc-demote, reftex-toc-promote)
8901 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8902 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8903 (reftex-toc-newhead-from-alist)
8904 (reftex-toc-load-all-files-for-promotion): New functions.
8905 (reftex-toc-help): Added description of new keys.
8906 (reftex-toc-split-windows-fraction): New option.
8907 (reftex-recenter-toc-when-idle): Search *toc* window on all
8908 visible frames.
8909 (reftex-toc): Additional parameter REUSE
8910 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
8911 with REUSE argument.
8912 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
8913 the call of `reftex-toc'.
8914 (reftex-make-separate-toc-frame): New function .
8915 (reftex-toc-recenter): When called with triple prefix arg, call
8916 `reftex-make-separate-toc-frame' first.
8917 (reftex-toc-toggle-dedicated-frame): New command.
8918 (reftex-toc-quit): Adapted to delete frame when called in
8919 dedicated frame.
8920
8921 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
8922 all enclosing macros.
8923
8924
8925 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8926
8927 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
8928 first use.
8929
8930 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8931
8932 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
8933
8934 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8935
8936 * calendar/calendar.el (list-diary-entries-hook)
8937 (diary-display-hook, nongregorian-diary-listing-hook)
8938 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
8939 Add some customize options for these hooks.
8940 (calendar-abbrev-construct): Don't try to take a substring longer
8941 than the original string.
8942
8943 2003-08-05 Richard M. Stallman <rms@gnu.org>
8944
8945 * emacs-lisp/testcover.el (noreturn): Report error if does return.
8946 (testcover-reinstrument-clauses): Doc fix.
8947
8948 * emacs-lisp/warnings.el: Doc fixes, args renamed.
8949 (warning-type-format): Rename from warning-group-format.
8950
8951 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
8952 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
8953 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
8954 to prevent warnings about defvar for an obsolete variable.
8955
8956 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
8957 warning-group-format renamed to warning-type-format.
8958
8959 * subr.el (read-passwd): Use clear-string instead of fillarray.
8960
8961 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
8962 Use vconcat instead of concat.
8963 (edmacro-sanitize-for-string): New function.
8964
8965 2003-08-05 Dave Love <fx@gnu.org>
8966
8967 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
8968 line-number-display-limit-width.
8969
8970 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
8971
8972 2003-08-05 Kenichi Handa <handa@m17n.org>
8973
8974 * international/code-pages.el: Don't require mule-diag.
8975
8976 * international/mule-diag.el (non-iso-charset-alist):
8977 Add autoload cookie.
8978
8979 * language/devan-util.el (dev-glyph-order): Add an entry for the
8980 glyph code #xC4.
8981
8982 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
8983
8984 * calendar/calendar.el (diary-file, diary-file-name-prefix)
8985 (european-calendar-style, diary-date-forms)
8986 (calendar-day-name-array, calendar-month-name-array): Doc change.
8987 (generate-calendar-month): Adapt for new behaviour of
8988 `calendar-day-name' function.
8989 (calendar-abbrev-length, calendar-day-abbrev-array)
8990 (calendar-month-abbrev-array): New variables.
8991 (calendar-abbrev-construct): New function.
8992 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
8993 rather than fixing abbrevs at some width. Calling syntax change.
8994 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
8995 (calendar-date-string): Adapt for new behaviours of
8996 `calendar-day-name' and `calendar-month-name' functions.
8997
8998 * calendar/diary-lib.el (list-diary-entries): Adapt for new
8999 behaviour of `calendar-day-name' and `calendar-month-name' functions.
9000 (diary-name-pattern): Use abbrev arrays, rather than fixing
9001 abbrevs at three chars. Calling syntax change.
9002 (mark-diary-entries): Adapt for new behaviours of
9003 `diary-name-pattern' and `calendar-make-alist' functions.
9004 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
9005 `diary-name-pattern' function.
9006 (font-lock-diary-date-forms): Use abbrev arrays, rather than
9007 fixing abbrevs at three chars. Calling syntax change.
9008 (cal-hebrew, cal-islam): Require when compiling.
9009 (diary-font-lock-keywords): Adapt for new behaviour of
9010 `font-lock-diary-date-forms' function.
9011
9012 * calendar/cal-hebrew.el: Reposition some code so defined before used.
9013 (calendar-hebrew-month-name-array-common-year)
9014 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
9015 (list-hebrew-diary-entries): Adapt for new behaviours of
9016 `calendar-day-name' and `add-to-diary-list' functions.
9017 (mark-hebrew-diary-entries): Adapt for new behaviours of
9018 `diary-name-pattern' and `calendar-make-alist' functions.
9019
9020 * calendar/cal-islam.el (calendar-islamic-month-name-array):
9021 Add doc string.
9022 (list-islamic-diary-entries): Adapt for new behaviours of
9023 `calendar-day-name' and `add-to-diary-list' functions.
9024 (mark-islamic-diary-entries): Adapt for new behaviours of
9025 `diary-name-pattern' and `calendar-make-alist' functions.
9026
9027 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
9028 `calendar-month-name' function.
9029
9030 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
9031
9032 * calendar/solar.el (solar-seasons-data): Move definition before use.
9033
9034 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
9035 (cal-tex-LaTeX-hourbox): Move definition before use.
9036
9037 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
9038 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
9039 lunar.el, solar.el
9040 (displayed-month, displayed-year): Define for compiler.
9041
9042 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
9043
9044 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
9045 MODE. Renamed from c-init-c-language-vars'.
9046 (c-initialize-cc-mode): Change accordingly.
9047 (c-common-init): Ditto.
9048 (c-mode): Ditto.
9049 (c++-mode): Use `c-init-language-vars-for'.
9050 (objc-mode): Ditto.
9051 (java-mode): Ditto.
9052 (idl-mode): Ditto.
9053 (pike-mode): Ditto.
9054 (awk-mode): Ditto.
9055
9056 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
9057
9058 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
9059 or not the point moved.
9060
9061 (c-search-decl-header-end): Don't trip up on operator identifiers
9062 in C++ and operators like == in all languages.
9063
9064 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
9065 Detect leading labels correctly.
9066
9067 2003-08-02 Andreas Schwab <schwab@suse.de>
9068
9069 * textmodes/ispell.el: Don't redo key bindings on loading, put
9070 them only in loaddefs.el.
9071 * bookmark.el: Likewise.
9072 * dabbrev.el: Likewise.
9073 * emerge.el: Likewise.
9074
9075 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
9076 has more than one member.
9077
9078 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
9079
9080 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9081
9082 * lpr.el (printify-region): It was ending conversion before the
9083 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
9084
9085 2003-07-31 John Paul Wallington <jpw@gnu.org>
9086
9087 * net/browse-url.el (browse-url-epiphany): Doc fix.
9088
9089 2003-07-30 Kenichi Handa <handa@m17n.org>
9090
9091 * international/fontset.el (setup-default-fontset):
9092 Change registry names of Akurti fonts.
9093
9094 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
9095
9096 * comint.el (comint-read-noecho): Use `clear-string' instead of
9097 `fillarray'.
9098
9099 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
9100
9101 * outline.el (outline-mode-hook): Add defvar.
9102
9103 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
9104
9105 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
9106 Restore assembler in source window if that is what has been selected.
9107 (menu): Add gdb-restore-windows to menu. Make gdba
9108 specific menus only visible from gdba.
9109
9110 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
9111
9112 * progmodes/compile.el (compilation-environment): New user variable.
9113 (compile-internal): Respect it.
9114
9115 2003-07-23 Masatake YAMATO <jet@gyve.org>
9116
9117 * progmodes/gud.el (gdb-script-font-lock-keywords):
9118 Put `font-lock-function-name-face' on a symbol which includes
9119 `-' like `hook-run'. Put font-lock-variable-name-face
9120 on a symbol starting with $.
9121
9122 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
9123
9124 * files.el (set-visited-file-name): Use truename for buffer-file-name.
9125
9126 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
9127
9128 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
9129
9130 2003-07-26 Andre Spiegel <spiegel@gnu.org>
9131
9132 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
9133 Use with-no-warnings.
9134 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
9135 rather than to find-file-not-found-hook, which doesn't exist.
9136
9137 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
9138
9139 * international/quail.el (quail-translate-key): Fix previous change.
9140
9141 2003-07-25 John Paul Wallington <jpw@gnu.org>
9142
9143 * server.el (server-start): Check `server-process' is non-nil
9144 before killing it to avoid killing current buffer's process.
9145
9146 * simple.el (choose-completion-string): Use `minibufferp';
9147 test `completion-reference-buffer' if `buffer' arg is nil.
9148 (push-mark): Use `when' and `unless'.
9149 (pop-mark): Use `when'.
9150
9151 * mouse-sel.el (mouse-sel-get-selection-function):
9152 Check `x-last-selected-text-primary'. Don't barf if it or
9153 `x-last-selected-text' aren't bound.
9154
9155 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
9156
9157 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
9158
9159 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
9160
9161 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
9162
9163 2003-07-23 John Paul Wallington <jpw@gnu.org>
9164
9165 * tooltip.el (defface tooltip): Inherit from variable-pitch.
9166
9167 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
9168
9169 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
9170 string. Defvar the derived hook.
9171
9172 * macros.el (insert-kbd-macro): Escape double quote character.
9173 From Thomas W Murphy <twm@andrew.cmu.edu>.
9174
9175 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
9176
9177 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
9178 to match the specific mark rather than reusing comment-start-skip.
9179
9180 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
9181
9182 * progmodes/hideshow.el (hs-special-modes-alist):
9183 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
9184
9185 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
9186
9187 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
9188 value using ?\s.
9189
9190 2003-07-21 John Paul Wallington <jpw@gnu.org>
9191
9192 * subr.el (with-selected-window): Add closing paren.
9193
9194 2003-07-21 Richard M. Stallman <rms@gnu.org>
9195
9196 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
9197 (lisp-mode): Likewise.
9198
9199 * subr.el (with-selected-window): Copy code form save-selected-window
9200 so as to call select-window with norecord arg.
9201 (dynamic-completion-table): Doc fix.
9202 (lazy-completion-table): Doc fix.
9203
9204 * international/mule-cmds.el (set-locale-environment):
9205 langinfo renamed to locale-info.
9206
9207 * international/mule.el (auto-coding-functions): Doc fix.
9208
9209 2003-07-21 Kenichi Handa <handa@m17n.org>
9210
9211 * international/quail.el (quail-translate-key):
9212 Update quail-current-str correctly.
9213
9214 2003-07-21 Andreas Schwab <schwab@suse.de>
9215
9216 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
9217 ?, to "_".
9218
9219 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
9220 Version 2.0.36 of Tramp released.
9221
9222 * net/tramp.el (tramp-default-password-end-of-line): Rename from
9223 tramp-password-end-of-line.
9224 (tramp-password-end-of-line): New method parameter.
9225 (tramp-get-password-end-of-line): Function to access method
9226 parameter `tramp-password-end-of-line', or variable
9227 `tramp-default-password-end-of-line' (default value).
9228 (tramp-methods): Add entries for new parameter
9229 tramp-password-end-of-line.
9230 (tramp-enter-password): Use new function
9231 `tramp-get-password-end-of-line'.
9232 (tramp-handle-insert-file-contents): Do not
9233 unconditionally inhibit the file operation file-local-copy, only
9234 do that when the inhibit-file-name-operation is currently
9235 insert-file-contents. This fixes finding remote CVS-controlled
9236 files. (It would barf on inserting the CVS/Entries file
9237 literally, because the file-local-copy handler wasn't called.)
9238 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
9239 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
9240 (tramp-initial-commands): New variable.
9241 (tramp-process-initial-commands): New function, using the variable.
9242 (tramp-open-connection-setup-interactive-shell): Call the new function.
9243 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
9244 method into the buffer name, never use nil. Reported by Hanak
9245 David <dhanak@inf.bme.hu>.
9246 (tramp-open-connection-setup-interactive-shell): Erase buffer
9247 before sending "stty -onlcr".
9248
9249 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
9250
9251 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
9252
9253 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
9254
9255 2003-07-19 John Paul Wallington <jpw@gnu.org>
9256
9257 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
9258 (artist-draw-rect, artist-draw-square): Doc fixes.
9259
9260 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
9261
9262 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
9263
9264 2003-07-19 Kenichi Handa <handa@m17n.org>
9265
9266 * international/kkc.el (kkc-show-conversion-list-update):
9267 Highlight the correct candidate in the message.
9268
9269 2003-07-18 John Paul Wallington <jpw@gnu.org>
9270
9271 * simple.el (current-word): Don't include punctuation char when
9272 `really-word' arg is non-nil.
9273
9274 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
9275
9276 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
9277 moved to the directory obsolete.
9278
9279 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
9280
9281 * info.el (Info-menu-entry-name-re): Allow newlines in
9282 menu entry names.
9283
9284 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
9285 syntax-ppss-after-change-function.
9286 (syntax-ppss-after-change-function): New alias. Update uses.
9287 (syntax-ppss): Catch the case where the buffer is narrowed.
9288
9289 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9290
9291 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
9292 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
9293
9294 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
9295
9296 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
9297 since it might be modified.
9298
9299 * progmodes/cc-langs.el (c++-make-template-syntax-table)
9300 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
9301 names to these language constants.
9302
9303 2003-07-15 Kim F. Storm <storm@cua.dk>
9304
9305 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
9306 All uses changed.
9307
9308 2003-07-14 Mark A. Hershberger <mah@everybody.org>
9309
9310 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
9311 Namespace support.
9312
9313 2003-07-13 Juanma Barranquero <lektu@terra.es>
9314
9315 * frame.el (modify-all-frames-parameters): Reinstall (copyright
9316 papers received).
9317
9318 2003-07-13 Karl Eichwalder <ke@suse.de>
9319
9320 * textmodes/po.el (po-find-charset): White space at the start of the
9321 Content-Type field body is non-mandatory.
9322
9323 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
9324
9325 * textmodes/texinfo.el (texinfo-section-list):
9326 Append appendixsection; a synonym for appendixsec.
9327
9328 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
9329
9330 * man.el (Man-translate-cleanup): New.
9331 (Man-translate-references): Call `Man-translate-cleanup' to clean
9332 leading, trailing and middle spaces.
9333
9334 2003-07-13 Lars Hansen <larsh@math.ku.dk>
9335
9336 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
9337 Handle `dired-directory' being a list.
9338
9339 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
9340
9341 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
9342 it doesn't exist.
9343
9344 2003-07-12 Richard M. Stallman <rms@gnu.org>
9345
9346 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
9347
9348 * progmodes/cc-defs.el (c-make-keywords-re):
9349 Don't use delete-duplicates.
9350 (c-lang-const): Don't use mapcan.
9351
9352 * apropos.el (apropos-show-scores): Make it customizable.
9353 Document new meaning.
9354 (apropos): Compute scores from symbols.
9355 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
9356
9357 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9358
9359 * ps-bdf.el: Fix copyright line.
9360 (bdf-directory-list): Fix initialization code.
9361
9362 2003-07-11 John Paul Wallington <jpw@gnu.org>
9363
9364 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
9365 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
9366 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
9367
9368 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
9369
9370 * emacs-lisp/ring.el (ring-elements): Doc fix.
9371
9372 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9373
9374 * calendar/timeclock.el (timeclock-relative)
9375 (timeclock-ask-before-exiting, timeclock-use-display-time):
9376 Doc changes.
9377 (timeclock-modeline-display): Give a message if
9378 `timeclock-use-display-time' is non-nil but `display-time-mode'
9379 is not active.
9380
9381 2003-07-11 Kenichi Handa <handa@m17n.org>
9382
9383 * international/mule-cmds.el (set-language-environment):
9384 Set current-language-environment to the correct string.
9385
9386 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9387
9388 * ps-print.el: Print line number correctly in a region. Reported by
9389 Tim Allen <timallen@ls83.fsnet.co.uk>.
9390 (ps-print-version): New version number (6.6.2).
9391 (ps-printing-region): Code fix.
9392
9393 2003-07-10 John Paul Wallington <jpw@gnu.org>
9394
9395 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
9396 this function can be called from `add-completions-from-tags-table'.
9397
9398 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
9399
9400 * calendar/timeclock.el (timeclock-use-display-time)
9401 (timeclock-day-over-hook, timeclock-workday-remaining)
9402 (timeclock-status-string, timeclock-when-to-leave)
9403 (timeclock-when-to-leave-string, timeclock-log-data)
9404 (timeclock-find-discrep, timeclock-day-base)
9405 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
9406 (timeclock-modeline-display): Set the variable
9407 `timeclock-modeline-display'.
9408 (timeclock-update-modeline): Doc fix. Respect value of
9409 `timeclock-relative'.
9410
9411 2003-07-09 Richard M. Stallman <rms@gnu.org>
9412
9413 * textmodes/reftex-parse.el (reftex-all-document-files):
9414 Add autoload cookie.
9415
9416 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
9417 (reftex-scanning-info-available-p): Add autoload cookie.
9418
9419 * international/mule-cmds.el
9420 (set-display-table-and-terminal-coding-system): Delete duplicate
9421 aset on standard-display-table.
9422
9423 * view.el (view-file): If existing buffer's major mode is special,
9424 don't go into view mode.
9425
9426 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
9427
9428 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9429
9430 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
9431 buffer changes; there's third party code that calls this function
9432 directly.
9433
9434 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9435
9436 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
9437 (autodoc-font-lock-keywords): Don't byte compile on font lock
9438 initialization when running from byte compiled files.
9439
9440 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
9441
9442 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
9443 statement ends with auto-increment "++".
9444
9445 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
9446
9447 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9448 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9449 these are changed, so declare them as variables and not constants.
9450
9451 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
9452
9453 * subr.el (dolist, dotimes): Doc fix.
9454
9455 2003-07-08 Kim F. Storm <storm@cua.dk>
9456
9457 * international/mule-cmds.el
9458 (set-display-table-and-terminal-coding-system): Don't break
9459 bootstrap if standard-display-table isn't setup yet.
9460
9461 2003-07-07 Richard M. Stallman <rms@gnu.org>
9462
9463 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
9464 Give it a doc string, and autoload it.
9465
9466 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
9467 Use with-no-warnings.
9468
9469 * info.el (Info-search): If find invisible text, search again.
9470
9471 * isearch.el (search-whitespace-regexp): Add a shy group around it.
9472
9473 * man.el (Man-name-regexp): Match + as part of name.
9474
9475 * simple.el (visible-mode): Rename from vis-mode.
9476 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
9477
9478 * simple.el (current-word): New arg REALLY-WORD specifies
9479 don't include punctuation chars.
9480
9481 * emacs-lisp/debug.el (debug, debugger-env-macro):
9482 Use with-no-warnings while accessing and binding unread-command-char.
9483
9484 * international/mule-cmds.el
9485 (set-display-table-and-terminal-coding-system): Use explicit loop
9486 instead of calling standard-display-default.
9487
9488 * net/ange-ftp.el (ange-ftp-file-symlink-p):
9489 Use condition-case to catch error in ange-ftp-get-files.
9490
9491 * net/browse-url.el (browse-url-browser-function):
9492 Add alternative for Epiphany.
9493 (browse-url-epiphany-program, browse-url-epiphany-arguments)
9494 (browse-url-epiphany-startup-arguments)
9495 (browse-url-epiphany-new-window-is-tab): New variables.
9496 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
9497
9498 * progmodes/compile.el (compile-auto-highlight): Default now t.
9499 (compile): Doc fix.
9500 (compilation-next-error): Fix previous change.
9501
9502 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
9503
9504 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
9505
9506 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
9507
9508 * gdb-ui.el (gdb-source-info): Display current frame when
9509 attaching to an existing process.
9510 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
9511 while laying out windows when attaching to an existing process.
9512
9513 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
9514
9515 * info.el (Info-menu): Use Info-menu-entry-name-re.
9516
9517 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
9518
9519 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
9520 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
9521
9522 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
9523 to match the same text.
9524
9525 2003-07-06 John Paul Wallington <jpw@gnu.org>
9526
9527 * vc.el (vc-annotate-offset): Move defvar up.
9528
9529 2003-07-06 Kim F. Storm <storm@cua.dk>
9530
9531 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
9532 This should fix the infinite loop when extracting menu names.
9533
9534 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9535
9536 * files.el (auto-mode-alist, interpreter-mode-alist):
9537 Remove entries to CC Mode modes to avoid duplicates; they are now added
9538 with autoload directives in cc-mode.el.
9539
9540 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
9541
9542 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
9543 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
9544 these are changed, so declare them as variables and not constants.
9545
9546 * progmodes/cc-mode.el: Fix some autoload problems: Try to
9547 ensure that the entry for ".c" extension comes before the one for
9548 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
9549 Fix incorrect entries that were added to `interpreter-mode-alist'.
9550 Move the autoload directives for AWK to the top level since they
9551 aren't recognized anywhere else. Do not use the new AWK mode doc
9552 in the autoload form for the old AWK mode.
9553
9554 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9555
9556 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
9557 (bibtex-sort-ignore-string-entries): Default value t.
9558 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
9559 erroneously in previous version.
9560 (bibtex-string-files): Docstring reflects new parsing scheme.
9561 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
9562 docstring, add # as one of the chars to crush
9563 (bibtex-autokey-prefix-string, bibtex-autokey-names)
9564 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
9565 (bibtex-autokey-name-change-strings)
9566 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
9567 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
9568 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
9569 (bibtex-autokey-title-terminators)
9570 (bibtex-autokey-titlewords-stretch)
9571 (bibtex-autokey-titleword-ignore)
9572 (bibtex-autokey-titleword-case-convert)
9573 (bibtex-autokey-titleword-abbrevs)
9574 (bibtex-autokey-titleword-abbrevs)
9575 (bibtex-autokey-titleword-change-strings)
9576 (bibtex-autokey-titleword-length)
9577 (bibtex-autokey-titleword-separator)
9578 (bibtex-autokey-name-year-separator)
9579 (bibtex-autokey-year-title-separator)
9580 (bibtex-autokey-before-presentation-function)
9581 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
9582 Fix docstring.
9583 (bibtex-strings, bibtex-reference-keys):
9584 Use lazy-completion-table and make-variable-buffer-local.
9585 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
9586 (bibtex-braced-string-syntax-table)
9587 (bibtex-quoted-string-syntax-table): New variables.
9588 (bibtex-parse-nested-braces): Remove.
9589 (bibtex-parse-field-string): Use syntax table and forward-sexp.
9590 (bibtex-parse-association): Simplify.
9591 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
9592 (bibtex-parse-field-text): Simplify.
9593 (bibtex-search-forward-field, bibtex-search-backward-field):
9594 argument BOUND can take value t.
9595 (bibtex-start-of-field, bibtex-start-of-name-in-field)
9596 (bibtex-end-of-name-in-field, bibtex-end-of-field)
9597 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
9598 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
9599 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
9600 (bibtex-skip-to-valid-entry): Return buffer position of beginning
9601 and ending of entry. Update for changes of bibtex-search-entry.
9602 Simplify.
9603 (bibtex-map-entries): FUN is called with three arguments.
9604 (bibtex-search-entry): Return a cons pair with buffer positions of
9605 beginning and end of entry.
9606 (bibtex-enclosing-field): Simplify.
9607 (bibtex-format-entry): Use booktitle to set a missing title.
9608 (bibtex-autokey-get-names): Fiddle with regexps.
9609 (bibtex-generate-autokey): Use identity.
9610 (bibtex-parse-keys): Use simplified parsing algorithm if
9611 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
9612 arguments. Return alist of keys.
9613 (bibtex-parse-strings): Simplify. Return alist of strings.
9614 (bibtex-complete-string-cleanup): Fix docstring.
9615 (bibtex-read-key): New function.
9616 (bibtex-mode): Fix docstring. Do not parse for keys and
9617 strings when the mode is entered. Set fill-paragraph-function to
9618 bibtex-fill-field. Setup font-lock-mark-block-function the way
9619 font-lock intended.
9620 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
9621 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
9622 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
9623 (bibtex-Preamble): Avoid hard coded constants.
9624 (bibtex-make-field): Fix docstring. Simplify.
9625 (bibtex-beginning-of-entry): Always return new position of point.
9626 (bibtex-end-of-entry): Rearrange cond clauses.
9627 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
9628 Update for changes of bibtex-map-entries.
9629 (bibtex-ispell-abstract): Do not move point.
9630 (bibtex-entry-index): Use downcase. Simplify.
9631 (bibtex-lessp): Handle catch-all.
9632 (bibtex-find-crossref): Turn into a command.
9633 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
9634 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
9635 preamble entries.
9636 (bibtex-fill-field-bounds): New function.
9637 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
9638 (bibtex-fill-entry): Use bibtex-fill-field-bounds
9639 (bibtex-String): Use bibtex-strings. Always obey
9640 bibtex-sort-ignore-string-entries.
9641
9642 2003-07-05 John Paul Wallington <jpw@gnu.org>
9643
9644 * cus-theme.el (customize-create-theme):
9645 Call `customize-create-theme' in Reset widget's notify function.
9646
9647 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
9648 (ibuffer-mark-interactive): Use `or' instead of `unless'.
9649 (define-ibuffer-column name): Add summarizer.
9650 (define-ibuffer-column size): Likewise.
9651 (define-ibuffer-column filename): Likewise.
9652 (define-ibuffer-column process): Likewise. Change BODY's output too.
9653 (define-ibuffer-column filename-and-process): Likewise, likewise.
9654 (ibuffer): Remove local vars `already-in' and `need-update'.
9655
9656 * ibuf-ext.el: Don't require `derived' at compile-time.
9657
9658 2003-07-05 Kim F. Storm <storm@cua.dk>
9659
9660 * info.el: Disable paragraph refilling.
9661 (Info-refill-paragraphs): New defcustom.
9662 (Info-fontify-node): Use it.
9663
9664 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
9665
9666 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
9667 thingies from constructors created by defstruct.
9668
9669 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
9670 the default value of the variable.
9671 (byte-code-meter): Move declaration to top level.
9672
9673 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
9674
9675 * info.el (Info-following-node-name-re): New fun.
9676 (Info-following-node-name): Remove.
9677 (Info-insert-dir): Use the new fun.
9678 (Info-extract-pointer): Don't save restriction; use new fun.
9679 (Info-menu-entry-name-re): New const.
9680 (Info-menu-entry-name-re): Use it along with new fun.
9681 (Info-node-spec-re): Use new fun.
9682 (Info-complete-menu-item, Info-fontify-node): Use new const.
9683 (Info-goto-node, Info-follow-reference, Info-menu-update):
9684 Use match-string.
9685 (Info-follow-reference): Use assoc-string.
9686 Use a list of strings for the completion table.
9687 (Info-fontify-node): Use match-string, line-end-position.
9688 Limit the search for `node:' to the first line.
9689
9690 * newcomment.el (uncomment-region): Remove padding coming from
9691 comment-start rather than just from comment-padding.
9692
9693 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
9694 (vc-cvs-stay-local-p): Use vc-stay-local-p.
9695 (vc-cvs-rename-file): Remove (use the default).
9696 (vc-cvs-register): Register parent dir if needed.
9697 (vc-cvs-could-register): Return non-nil if parent can be registered.
9698 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
9699 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
9700
9701 * vc-svn.el (vc-svn-use-edit): Make it into a const.
9702 (vc-svn-update): Fix the arguments to `svn'.
9703 (vc-svn-diff-tree): Just use `vc-svn-diff'.
9704 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
9705 Simple implementations, assuming `name' is a URL.
9706
9707 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
9708 set of chars allowed unquoted in a case pattern.
9709
9710 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
9711
9712 * font-lock.el (font-lock-extra-types-widget)
9713 (c-font-lock-extra-types, c++-font-lock-extra-types)
9714 (objc-font-lock-extra-types, java-font-lock-extra-types)
9715 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
9716 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
9717 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
9718 (font-lock-match-c++-structor-declaration)
9719 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
9720 (c++-font-lock-keywords-3, c++-font-lock-keywords)
9721 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
9722 (objc-font-lock-keywords-3, objc-font-lock-keywords)
9723 (java-font-lock-keywords-1, java-font-lock-keywords-2)
9724 (java-font-lock-keywords-3, java-font-lock-keywords)
9725 (java-font-lock-syntactic-face-function): Remove obsolete code
9726 and constants. It's all in cc-fonts.el now.
9727
9728 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
9729
9730 * mail/sendmail.el (mail-specify-envelope-from)
9731 (mail-envelope-from): Doc fix.
9732
9733 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
9734
9735 * generic-x.el: Do away with the dependency on `c-emacs-features'
9736 when populating `rul-generic-mode-syntax-table'; we already know
9737 this isn't XEmacs.
9738
9739 See ChangeLog.10 for earlier changes.
9740
9741 ;; Local Variables:
9742 ;; coding: iso-2022-7bit
9743 ;; End:
9744
9745 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
9746 Copying and distribution of this file, with or without modification,
9747 are permitted provided the copyright notice and this notice are preserved.
9748
9749 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1