]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Updated CC Mode to 5.30.9.
[gnu-emacs] / lisp / ChangeLog
1 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
2
3 CC Mode update to 5.30.9:
4
5 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
6 Moved from cc-vars to cc-defs for dependency reasons. Fixed the
7 POSIX char class test to check that it works in
8 `skip-chars-(forward|backward)' too.
9
10 * progmodes/cc-align.el (c-lineup-arglist): Fixed bug when the
11 first argument starts with a special brace list.
12
13 * progmodes/cc-engine.el (c-forward-type): Fixed promotion bug
14 when `c-opt-type-concat-key' is used (i.e. in Pike).
15
16 * progmodes/cc-engine.el (c-looking-at-special-brace-list): Fixed
17 bug when the inner char pair doesn't have paren syntax, i.e. "(<
18 >)".
19
20 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
21 whitespace safe.
22
23 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed anchor
24 position for `arglist-intro', `arglist-cont-nonempty' and
25 `arglist-close' when there are two arglist open parens on the same
26 line and there's nothing in front of the first.
27
28 * progmodes/cc-fonts.el (c-basic-matchers-before): Fixed font
29 locking of qualified names in Java, which previously could fontify
30 common indexing expressions in many cases. The standard Java
31 naming conventions are used to tell them apart.
32
33 * progmodes/cc-align.el (c-lineup-whitesmith-in-block): Fixed
34 inconsistency wrt opening parens on the first line inside a paren
35 block.
36
37 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
38 compile time for the sake of `c-major-mode-is'.
39
40 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
41 `c-major-mode-is' in the event that this is used inside a
42 `c-lang-defconst'.
43
44 * progmodes/cc-defs.el (c-major-mode-is): Fixed expansion inside
45 `c-lang-defconst' so that it works better with fallback languages.
46
47 * progmodes/cc-defs.el (c-add-language): Fixed a typo that caused
48 it to fail to record the base mode.
49
50 * progmodes/cc-engine.el (c-syntactic-re-search-forward): Fixed
51 bug so that it doesn't go past the closing paren when PAREN-LEVEL
52 is used. Reordered the syntax checks to get more efficient
53 skipping in some situations.
54
55 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
56 continuation which might precede the newly inserted '{'.
57
58 * progmodes/cc-engine.el (c-syntactic-re-search-forward): Fixed
59 cases where it could loop indefinitely.
60
61 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
62 size specs correctly. Only fontify identifiers in front of '('
63 with as functions - don't accept any paren char. Tightened up
64 initializer skipping to stop before function and class blocks.
65
66 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fixed bug where
67 the point could be left directly after an open paren when finding
68 the beginning of the first decl in the block.
69
70 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
71 table when filtering out legitimate open parens to be recorded.
72 This could cause cache inconsistencies when e.g.
73 `c++-template-syntax-table' was temporarily in use.
74
75 * progmodes/cc-engine.el (c-on-identifier,
76 c-simple-skip-symbol-backward): Small fix for handling "-"
77 correctly in `skip-chars-backward'. Affected the operator lfun
78 syntax in Pike.
79
80 * progmodes/cc-engine.el (c-invalidate-sws-region-after): Fixed
81 bug that could cause an error from `after-change-functions' when
82 the changed region is at bob.
83
84 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
85
86 CC Mode update to 5.30.9:
87
88 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
89 to say that <TAB> doesn't insert WS into a CPP line.
90 (c-indent-command, c-tab-always-indent): Amend doc strings.
91
92 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
93 checks for user errors, thus eliminating cryptic and unhelpful
94 Emacs error messages. (1) Check the arg to `c-set-style' is a
95 string. (2) Check that settings to `c-offsets-alist' are not
96 spuriously quoted.
97
98 * progmodes/cc-cmds.el: (c-electric-brace): don't delete a comment
99 which precedes the newly inserted `{'.
100
101 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
102
103 Sync with Tramp 2.0.44.
104
105 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
106 function "tramp_file_attributes". Otherwise, file names
107 containing spaces are misinterpreted. Reported by Magnus Henoch
108 <mange@freemail.hu>.
109 (tramp-handle-file-truename): FILENAME must be expanded first.
110 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
111 obscure results. Reported by D. Goel <deego@gnufans.org>.
112 (tramp-handle-verify-visited-file-modtime): If file does not
113 exist, say it is not modified if and only if that agrees with the
114 buffer's record. Check whether a file is visiting the buffer, or
115 the buffer has no recorded last modification time. Return t in
116 case the visiting file doesn't exist. Suggested by Luc Teirlinck
117 <teirllm@auburn.edu>.
118 (tramp-handle-write-region): Pass modtime explicitely to
119 `set-visited-file-modtime', because filename can be different
120 from (buffer-file-name) if `file-precious-flag' is set.
121 `set-visited-file-modtime' must be called always when `visit' is t
122 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
123 (tramp-handle-set-visited-file-modtime): If `time-list' is not
124 nil, don't apply the whole body. If the file doesn't exists, set
125 modtime to '(-1 65535). Suggested by Luc Teirlinck
126 <teirllm@auburn.edu>.
127
128 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
129
130 * help.el (describe-bindings): Doc fix.
131
132 * subr.el (kbd): Doc fix.
133
134 2004-08-08 John Paul Wallington <jpw@gnu.org>
135
136 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
137 instead of `string-to-int'.
138 (define-ibuffer-column mode): Fix indentation.
139
140 2004-08-08 Lars Hansen <larsh@math.ku.dk>
141
142 * wid-edit.el (widget-sexp-validate): Allow whitespace after
143 expression.
144
145 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
146
147 * subr.el (global-unset-key, local-unset-key): Doc fixes.
148
149 * novice.el (disabled-command-function): New variable renamed from
150 `disabled-command-hook'.
151 (disabled-command-hook): Keep the _variable_ as alias for
152 `disabled-command-function' and make obsolete.
153 (disabled-command-function): Function renamed from
154 `disabled-command-hook'. Adapt code to name change of the variable.
155
156 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
157
158 * simple.el (completion-root-regexp): New defvar.
159 (completion-setup-function): Use it instead of a literal string.
160
161 2004-08-07 John Paul Wallington <jpw@gnu.org>
162
163 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
164 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
165 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
166 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
167
168 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
169
170 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
171 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
172
173 2004-08-04 Kenichi Handa <handa@m17n.org>
174
175 * international/encoded-kb.el (encoded-kbd-setup-keymap): Fix
176 previous change.
177
178 2004-08-03 Kenichi Handa <handa@m17n.org>
179
180 * international/encoded-kb.el: The following changes are to
181 utilize key-translation-map instead of minor mode map.
182 (encoded-kbd-iso2022-non-ascii-map): Delete it.
183 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
184 (encoded-kbd-last-key): New function.
185 (encoded-kbd-iso2022-single-shift): New function.
186 (encoded-kbd-iso2022-designation)
187 (encoded-kbd-self-insert-iso2022-7bit)
188 (encoded-kbd-self-insert-iso2022-8bit)
189 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
190 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
191 key-translation-map.
192 (encoded-kbd-setup-keymap): Setup key-translation-map.
193 (saved-key-translation-map): New variable.
194 (encoded-kbd-mode): Save/restore key-translation-map. Adjusted
195 for the change of encoded-kbd-setup-keymap.
196
197 2004-08-02 Kim F. Storm <storm@cua.dk>
198
199 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
200 and call compute-motion with nil for topos and width to get proper
201 usable width and height for both window and non-window systems.
202
203 * windmove.el (windmove-coordinates-of-position): Let compute-motion
204 calculate usable window width and height.
205
206 * window.el (window-buffer-height): Call compute-motion with nil width.
207
208 2004-08-01 David Kastrup <dak@gnu.org>
209
210 * replace.el (query-replace-read-from): Use
211 `query-replace-compile-replacement'.
212 (query-replace-compile-replacement): New function.
213 (query-replace-read-to): Use `query-replace-compile-replacement'
214 for repeating the last command.
215
216 2004-08-01 John Paul Wallington <jpw@gnu.org>
217
218 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
219 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
220 (pr-switches): Remove period from end of error messages.
221
222 * help-mode.el (help-go-back): Likewise.
223
224 * abbrev.el (only-global-abbrevs): Doc fix.
225 (edit-abbrevs-map): Define within defvar.
226 (quietly-read-abbrev-file): Doc fix.
227
228 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
229
230 * novice.el (enable-command, disable-command): Doc fixes.
231
232 * subr.el (event-modifiers, event-basic-type): Doc fixes.
233
234 2004-07-30 Richard M. Stallman <rms@gnu.org>
235
236 * subr.el (with-local-quit): Doc fix.
237
238 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
239
240 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
241
242 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
243
244 * custom.el (defcustom): Doc fix.
245
246 2004-07-28 Masatake YAMATO <jet@gyve.org>
247
248 * progmodes/etags.el (etags-tags-apropos): Show building progress.
249
250 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
251
252 * imenu.el (imenu-prev-index-position-function)
253 (imenu-extract-index-name-function, imenu-name-lookup-function)
254 (imenu--index-alist): Docstring redundancy fix.
255
256 2004-07-25 Lars Hansen <larsh@math.ku.dk>
257
258 * wdired.el (wdired-finish-edit): Require dired-aux before locally
259 binding dired-backup-overwrite.
260
261 2004-07-25 John Paul Wallington <jpw@gnu.org>
262
263 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
264
265 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
266
267 * term/tty-colors.el (tty-color-approximate): Doc fix.
268
269 * select.el (x-get-selection, x-set-selection): Doc fixes.
270
271 * frame.el (make-frame): Doc fix.
272
273 2004-07-24 Richard M. Stallman <rms@gnu.org>
274
275 * mail/rmail.el (rmail-mime-charset-pattern):
276 Don't include semicolon in the charset value.
277
278 * replace.el (occur-next-error): Call set-window-point.
279 (occur-engine): Handle negative NLINES.
280
281 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
282
283 * frame.el (modify-all-frames-parameters): Minor doc fix.
284 (set-frame-configuration): Doc fix.
285
286 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
287
288 * simple.el (completion-setup-function): Compute the common parts
289 and the first difference place correctly when
290 partial-completion-mode is on.
291
292 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
293
294 * ps-print.el: Doc fix.
295 (ps-print-version): New version 6.6.5.
296 (ps-printing-region): Doc fix.
297 (ps-generate-string-list): Comment fix.
298 (ps-message-log-max): Code fix.
299
300
301 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
302
303 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
304 generated PostScript.
305
306 2004-07-22 Kim F. Storm <storm@cua.dk>
307
308 * progmodes/make-mode.el: Fix comments.
309
310 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
311
312 * printing.el: Doc fix.
313
314 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
315
316 * frame.el (modify-all-frames-parameters): Minor doc fix.
317
318 2004-07-20 Richard M. Stallman <rms@gnu.org>
319
320 * textmodes/fill.el (fill-comment-paragraph): Handle indent-tabs-mode.
321 (fill-delete-newlines): Call sentence-end as function.
322 (fill-nobreak-p, canonically-space-region): Likewise.
323 (fill-nobreak-p): If this break point is at the end of the line,
324 don't consider the newline which follows as a reason to return t.
325
326 2004-07-19 John Paul Wallington <jpw@gnu.org>
327
328 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
329
330 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
331
332 * dired-aux.el (dired-do-kill-lines): Expand docstring.
333 Delete irrelevant code.
334
335 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
336
337 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
338 New docstring. From Luc Teirlinck.
339
340 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
341
342 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
343 section.
344 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
345 non-file buffers. We know it is nil.
346
347 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
348
349 Sync with Tramp 2.0.43.
350
351 * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove
352 outdated comment.
353 (tramp-locked, tramp-locker): New variables for implementing a
354 global lock.
355 (tramp-sh-file-name-handler): Use them to implement the global
356 lock.
357
358 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
359
360 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
361 calls to respective `xxx` calls.
362 (tramp-process-alive-regexp): Precise doc string.
363 (tramp-multi-action-process-alive): New defun.
364 (tramp-multi-actions): Use it.
365 (tramp-handle-find-backup-file-name): `copy-tree' is available
366 since Emacs 21.4 only (XEmacs has it). Implementation rewritten
367 in order to avoid this function.
368 (tramp-handle-write-region): Set current buffer. If connection
369 wasn't open, `file-modes' has changed it accidently. Reported by
370 David Kastrup <dak@gnu.org>.
371 (tramp-enter-password, tramp-read-passwd): New arguments USER and
372 HOST.
373 (tramp-action-password, tramp-multi-action-password): Apply it.
374 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
375 name must still contain the port number. Otherwise, we have two
376 Tramp buffers, with all the confusion. Reported by Myron Selby
377 <myron@xytech.com> and Rolf Dubitzky
378 <Dubitzky@physi.uni-heidelberg.de>.
379
380 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
381 HOST to `tramp-enter-passwd'.
382
383 * net/tramp-vc.el (all): Code cleanup. Change all
384 `tramp-handle-xxx' calls to respective `xxx` calls.
385
386 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
387
388 * emacs-lisp/testcover.el: New category "potentially-1valued" for
389 functions that are not erroneous if either 1-valued or
390 multi-valued. Detect functions in this class.
391 (testcover-1value-functions, testcover-compose-functions,
392 testcover-progn-functions) Added some additional functions to lists.
393 (testcover-mark): Bugfix when marking up the definition for an
394 empty function.
395
396 2004-07-17 Richard M. Stallman <rms@gnu.org>
397
398 * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer.
399
400 * mail/footnote.el (footnote-section-tag): Use defcustom.
401
402 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
403 Compile font-lock-keywords, not KEYWORDS.
404 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
405 Add warn, check-type. Handle cerror like error.
406
407 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
408
409 * progmodes/which-func.el (which-func-keymap): New var.
410 (which-func-face): New face.
411 (which-func-format): Use them.
412
413 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
414
415 * buff-menu.el (list-buffers-noselect): Append the buffer's
416 process status to its mode name.
417
418 2004-07-16 Kim F. Storm <storm@cua.dk>
419
420 * simple.el (inhibit-mark-movement): New defvar.
421 (beginning-of-buffer, end-of-buffer): Do not push mark if
422 inhibit-mark-movement is non-nil or C-u prefix is given.
423
424 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
425 Init to beginning-of-buffer and end-of-buffer.
426 (cua--undo-push-mark): New defvar.
427 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
428 already active and command is in cua--preserve-mark-commands.
429 Also fix check for shift modifier on non-window systems.
430 (cua--post-command-handler): Clear inhibit-mark-movement if set.
431
432 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
433
434 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
435 of two integers, instead of a cons.
436
437 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
438 `visited-file-modtime' now returns a list of two integers, instead
439 of a cons.
440
441 * dired.el (dired-directory-changed-p): Ditto.
442
443 * progmodes/grep.el (grep): Doc fix.
444
445 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
446
447 * autorevert.el (auto-revert-tail-mode)
448 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
449 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
450 in both at the same time.
451 (auto-revert-tail-mode): New command.
452 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
453 (auto-revert-handler): Revert only either tail or whole file.
454
455 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
456 add auto-revert-tail-mode.
457
458 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
459
460 * printing.el: Doc fix. Change name of some funs.
461 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
462 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
463 (pr-standard-file-name): New fun. Replace pr-standard-path.
464 (pr-call-process): Code fix.
465
466 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
467
468 * subr.el (with-selected-window): Doc fix.
469
470 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
471
472 * subr.el (get-buffer-window-list): Doc fix.
473
474 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
475
476 * files.el (switch-to-buffer-other-window): Doc fix.
477
478 * window.el (save-selected-window, one-window-p)
479 (split-window-keep-point, split-window-vertically)
480 (split-window-horizontally): Doc fixes.
481
482 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
483
484 * printing.el: Doc fix. Now it uses call-process instead of
485 shell-command for low command execution.
486 (pr-version): New version number (6.8).
487 (pr-shell-file-name): Option removed.
488 (pr-shell-command): Fun removed.
489 (pr-call-process): New fun. Replace pr-shell-command.
490 (pr-standard-path, pr-remove-nil-from-list): New funs.
491 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
492 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
493 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
494 (pr-ps-utility-process, pr-txt-print): Code fix.
495
496 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
497
498 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
499 boolean.
500
501 2004-07-09 Lars Hansen <larsh@math.ku.dk>
502
503 * wid-edit.el (widget-field-buffer): Doc fix.
504
505 2004-07-09 John Paul Wallington <jpw@gnu.org>
506
507 * emacs-lisp/re-builder.el (reb-update-overlays): Distinguish
508 between one and several matches in message.
509
510 2004-07-09 Richard M. Stallman <rms@gnu.org>
511
512 * mouse.el (mouse-set-region-1): If transient-mark-mode
513 is `identity', change it to `only'.
514
515 * simple.el (current-word): Doc fix.
516
517 2004-07-09 Mark A. Hershberger <mah@everybody.org>
518
519 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
520 so that it is more understanding of whitespace.
521
522 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the
523 form
524 (("ns" . "element") (attr-list) children) instead of
525 ((:ns . "element") (attr-list) children) in order to reduce the
526 number of symbols used.
527 (xml-skip-dtd): Change to use xml-parse-dtd but set
528 xml-validating-parsing to nil.
529 (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
530 (xml-substitute-entity): Remove in favor of new entity substitution.
531 (xml-substitute-special): Rewrite in to substitute complex
532 entities from DOCTYPE declarations.
533 (xml-parse-fragment): Parse fragments from entity deleclarations.
534 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
535 (xml-parse-dtd, xml-substitute-special): Make validity checks
536 conditioned on xml-validating-parser. Add "Not Well Formed" to
537 error messages about well-formedness.
538
539 2004-07-08 Steven Tamm <steventamm@mac.com>
540
541 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
542 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
543 Do not treat double clicks and triple clicks specially in the
544 scroll bar (preventing strange repositioning problems)
545
546 2004-07-06 Stefan <monnier@iro.umontreal.ca>
547
548 * replace.el (query-replace-regexp-eval): Fix last change.
549
550 2004-07-05 Stefan <monnier@iro.umontreal.ca>
551
552 * replace.el (query-replace-descr): New fun.
553 (query-replace-read-from, query-replace-read-args): Default to the
554 previous from&to.
555 (query-replace-read-to): Quote the `from' string when displaying it.
556 (query-replace-regexp-eval): Immediately check read-only status.
557 Use query-replace-read-from to get the \n checking.
558 Quote the `from' string when displaying it.
559 (map-query-replace-regexp, occur-read-primary-args):
560 Quote the `from' string when displaying it.
561
562 * isearch.el (isearch-query-replace): Pass the regexp-ness and
563 delimited-ness of the search to query-replace.
564
565 * replace.el (query-replace-read-from, query-replace-read-to):
566 New funs extracted from query-replace-read-args.
567 (query-replace-read-args): Use them.
568
569 * replace.el (query-replace-interactive, query-replace-read-args):
570 Remove the `initial' special value.
571 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
572 (occur-engine): Remove unused var `matchend'.
573
574 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
575 Use the search string without prompting.
576
577 2004-07-05 Kenichi Handa <handa@m17n.org>
578
579 * international/mule.el (decode-coding-inserted-region):
580 Set last-coding-system-used only when coding is nil.
581
582 2004-07-03 Eli Zaretskii <eliz@gnu.org>
583
584 * progmodes/grep.el (grep-compute-defaults, grep-command)
585 (grep-program, find-program, grep-find-use-xargs, grep-history)
586 (grep-find-history, grep-tag-default, grep-find-command)
587 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
588 Add autoload cookies, for unbundled packages that load `compile'
589 and expect all grep-related symbols to become defined.
590
591 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
592
593 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
594 (iimage-mode-image-search-path): New user option to search the
595 image file.
596 (iimage-locate-file): New funcion. Emacs21.3 or earlier does not
597 have locate-file.
598 (iimage-mode-buffer): Use it.
599
600 2004-07-03 Nick Roberts <nickrob@gnu.org>
601
602 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
603 carefully.
604 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
605
606 2004-07-03 Juri Linkov <juri@jurta.org>
607
608 * replace.el (query-replace-read-args): Swallow space after 'foo,
609 not after (quote foo). Match space only immediately after symbol,
610 not anywhere in the whole string.
611
612 2004-07-02 Richard M. Stallman <rms@gnu.org>
613
614 * replace.el (query-replace-read-args): Swallow space after
615 symbols, not after closeparens. But avoid error if string ends there.
616
617 * progmodes/python.el (python-beginning-of-statement):
618 Exit the loop if backward-up-list gets error.
619
620 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
621
622 2004-07-02 Andre Spiegel <spiegel@gnu.org>
623
624 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
625 only if vc-consult-headers is non-nil.
626
627 2004-07-02 Juri Linkov <juri@jurta.org>
628
629 * pcvs.el (cvs-mode-diff-repository): New command.
630
631 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
632
633 2004-07-01 Juri Linkov <juri@jurta.org>
634
635 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
636 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
637 C-M-% to isearch-query-replace-regexp.
638 (minibuffer-local-isearch-map): Add arrow key bindings.
639 Bind C-f to isearch-yank-char-in-minibuffer.
640 (isearch-forward): Doc fix.
641 (isearch-edit-string): Doc fix.
642 (isearch-query-replace, isearch-query-replace-regexp): New funs.
643 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
644 (isearch-yank-char): Add optional arg.
645 (isearch-yank-char-in-minibuffer): New fun.
646
647 * replace.el (query-replace-interactive): Change type from boolean
648 to choice. Add value `initial'.
649 (query-replace-read-args): Handle value `initial' of
650 query-replace-interactive.
651
652 2004-06-29 Kim F. Storm <storm@cua.dk>
653
654 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
655 (breakpoint-disabled-bitmap-face): Add :group 'gud.
656
657 * progmodes/ada-xref.el (ada-tight-gvd-integration):
658 Add :group 'ada.
659
660 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
661
662 2004-06-29 Juri Linkov <juri@jurta.org>
663
664 * replace.el (query-replace-read-args): Swallow a space after
665 everything except )]" which in most cases means after a symbol.
666
667 * emacs-lisp/pp.el (pp-buffer): Add autoload.
668
669 2004-06-28 Richard M. Stallman <rms@gnu.org>
670
671 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
672 More changes to go with previous change in font-lock.el.
673
674 2004-06-26 David Kastrup <dak@gnu.org>
675
676 * replace.el (perform-replace): Highlight the match even in
677 non-query mode if there is potential replace string editing.
678
679 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
680
681 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
682 agree with new return value of `file-remote-p'.
683 This syncs with Tramp 2.0.42.
684
685 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
686 according to new documentation of `file-remote-p'.
687
688 * files.el (file-remote-p): Fix doc to say that return value is
689 identification of remote system, if not nil.
690 (file-relative-name): Use new return value of `file-remote-p'.
691
692 2004-06-26 Nick Roberts <nickrob@gnu.org>
693
694 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
695 (gdb-goto-breakpoint): Fix breakage.
696
697 2004-06-26 Eli Zaretskii <eliz@gnu.org>
698
699 * man.el (Man-getpage-in-background): Add windows-nt to the list
700 of systems where shell-file-name should be used instead of
701 literal "sh".
702
703 2004-06-25 Sam Steingold <sds@gnu.org>
704
705 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
706 function names `(setf symbol)'.
707
708 2004-06-24 Richard M. Stallman <rms@gnu.org>
709
710 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
711
712 * font-lock.el (font-lock-keywords): Change format of compiled values.
713 Document it.
714 (font-lock-add-keywords): If font-lock-keywords is compiled,
715 extract the uncompiled version, modify, then recompile.
716 (font-lock-remove-keywords): Likewise.
717 (font-lock-fontify-keywords-region): Handle changed format.
718 (font-lock-compile-keywords): Handle changed format.
719 (font-lock-set-defaults): Compile the keywords explicitly here.
720
721 2004-06-24 David Kastrup <dak@gnu.org>
722
723 * replace.el (query-replace-read-args): Implement `\,' and `\#'
724 replacements here.
725 (query-replace-regexp): Doc string explaining this and the new
726 `\?' replacement. Remove `\,' and `\#' implementation here, as it
727 is better placed in `query-replace-read-args'.
728 (replace-regexp): Explain `\,', `\#' and `\?'.
729 (replace-match-data): New function for thorough reuse/destruction
730 of old match-data.
731 (replace-match-maybe-edit): Function for implementing `\?' editing.
732 (perform-replace): Fix maintaining of the match stack including
733 already matched regions, implement `\?', fix various problems
734 with regions while editing and other stuff.
735 (replace-highlight): Simplify.
736
737 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
738
739 * progmodes/grep.el (grep-error-screen-columns): New variable.
740 (grep-regexp-alist): Give it the full functionality of gnu style
741 compilation messages with line and column ranges. Ask me for the
742 perl script I'm working on, that uses these.
743
744 2004-06-23 Nick Roberts <nickrob@gnu.org>
745
746 * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
747 Remove.
748 (comint-insert-input, comint-mouse-insert-input): New functions
749 based on comint-insert-clicked-input for two bindings but just
750 one functionality.
751
752 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
753
754 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
755
756 2004-06-23 Lars Hansen <larsh@math.ku.dk>
757
758 * files.el (write-contents-functions): Doc fix.
759
760 2004-06-21 Juanma Barranquero <lektu@terra.es>
761
762 * image.el (image-library-alist): Rewrite docstring in active voice.
763
764 2004-06-20 Richard M. Stallman <rms@gnu.org>
765
766 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
767
768 * isearch.el (isearch-repeat): Avoid testing old match data.
769 (isearch-message): Display trailing space in special font
770 when search is failing.
771 (isearch-search-fun-function): Doc fix.
772
773 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
774
775 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
776
777 * frame.el (show-trailing-whitespace): Doc fix.
778
779 * cus-edit.el (custom-variable-documentation): New function.
780 (custom-variable): Use it.
781
782 2004-06-19 Nick Roberts <nickrob@gnu.org>
783
784 * man.el (Man-getpage-in-background): Revert previous change but
785 make cygwin a special case.
786
787 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
788
789 * autorevert.el (global-auto-revert-non-file-buffers):
790 Update docstring.
791
792 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
793
794 * progmodes/compile.el (compilation-error-properties): Store one
795 more than end-col, if present, so that transient-mark-mode will
796 highlight last char too.
797 * progmodes/grep.el (grep-regexp-alist): Match columns and column
798 ranges, if present.
799
800 2004-06-18 Jason Rumney <jasonr@gnu.org>
801
802 * makefile.w32-in: Double percent signs in for loops.
803
804 2004-06-17 David Kastrup <dak@gnu.org>
805
806 * replace.el (query-replace-read-args): Only warn about use of \n
807 and \t when we are doing a regexp replacement and the actual
808 escaped character is n or t.
809 (query-replace-regexp): Add \, and \# interpretation to
810 interactive call and document it.
811 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
812 as shortkey for replace-count.
813 (replace-quote): New function for doubling backslashes.
814
815 2004-06-17 Juanma Barranquero <lektu@terra.es>
816
817 * files.el (parse-colon-path, cd): Mention in docstring that the
818 path separator is colon in GNU-like systems.
819
820 * newcomment.el (comment-region-internal): Fix docstring.
821
822 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
823 (ewoc-invalidate, ewoc-collect): Doc fixes.
824 (ewoc--create-node, ewoc--delete-node-internal):
825 Fix typos in docstring.
826
827 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
828
829 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
830 manual to docstring.
831
832 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
833
834 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
835
836 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
837
838 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
839 Add hyperlink to emacs-xtra manual to docstring.
840
841 * autorevert.el (global-auto-revert-non-file-buffers):
842 Add hyperlink to emacs-xtra manual to docstring, as well as an
843 info-link.
844
845 2004-06-14 Juanma Barranquero <lektu@terra.es>
846
847 * image.el (image-library-alist): New variable to map image types
848 to external libraries. Initialized to nil, unless system-specific
849 configs change it.
850 (image-type-available-p): Determine whether an image type is
851 available by calling `init-image-library'.
852
853 * term/w32-win.el (image-library-alist): Initialize to a known set
854 of probable library names.
855
856 2004-06-14 Kenichi Handa <handa@m17n.org>
857
858 * international/code-pages.el (windows-1256, cp1125): Fix tables
859 for several characters.
860
861 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
862
863 2004-06-13 Richard M. Stallman <rms@gnu.org>
864
865 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
866
867 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
868 not "`pc-selection-mode'".
869
870 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
871
872 * simple.el (previous-matching-history-element): Specify a default.
873
874 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
875
876 * cus-face.el (custom-declare-face): Simplify code.
877
878 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
879
880 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
881
882 * files.el (before-save-hook): Add `time-stamp' to the options.
883
884 * time-stamp.el (time-stamp): Recommend adding it to
885 `before-save-hook', rather than `write-file-functions'.
886 Make a similar change in `Commentary' section.
887
888 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
889
890 * diff-mode.el (diff-current-defun): If at start of hunk, use
891 position of first change.
892
893 2004-06-13 Lars Hansen <larsh@math.ku.dk>
894
895 * dired-x.el (dired-mark-omitted): Bind to "*O".
896
897 2004-06-12 Karl Fogel <kfogel@red-bean.com>
898
899 * bookmark.el (bookmark-bmenu-relocate): New function, as
900 suggested by David J. Biesack <David.Biesack@sas.com>.
901 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
902 (bookmark-bmenu-mode): Describe binding in doc string.
903 (bookmark-set-filename): Save the bookmark list if it's time.
904
905 2004-06-13 Kenichi Handa <handa@m17n.org>
906
907 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
908 (ccl-untranslated-to-ucs): Fix typo.
909
910 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
911
912 * progmodes/python.el (python-open-block-statement-p):
913 Fix indentation after a block opening that contains a comment.
914
915 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
916
917 * bindings.el (completion-ignored-extensions): Add file extensions
918 of Python byte-compiled files.
919
920 2004-06-12 Juri Linkov <juri@jurta.org>
921
922 * info.el (Info-goto-node): Add autoload.
923 (Info-toc): Add substring-no-properties on Info file name.
924 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
925 (Info-mode-map): Bind L to Info-history, T to Info-toc.
926
927 2004-06-12 Kenichi Handa <handa@m17n.org>
928
929 * international/mule-cmds.el (set-language-environment):
930 Load subst tables if necessary.
931
932 * international/mule.el (decode-char): Load subst tables if necessary.
933 (encode-char): Likewise.
934
935 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
936 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
937 (utf-16le-decode-loop): Set r5 to -1 before loop.
938 (utf-16be-decode-loop): Likewise.
939 (ccl-decode-mule-utf-16le): Add EOF processing block.
940 (ccl-decode-mule-utf-16be): Likewise.
941 (ccl-decode-mule-utf-16le-with-signature): Likewise.
942 (ccl-decode-mule-utf-16be-with-signature): Likewise.
943 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
944 (ccl-mule-utf-16-encode-untrans): New CCL.
945 (utf-16-decode-to-ucs): Handle pre-read character.
946 (utf-16le-encode-loop): Handle surrogate pair.
947 (utf-16be-encode-loop): Likewise.
948 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
949 of utf-16le-encode-loop.
950 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
951 of utf-16be-encode-loop.
952 (mule-utf-16-post-read-conversion):
953 Call utf-8-post-read-conversion at first.
954 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
955 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
956 Add post-read-conversion and pre-write-conversion.
957
958 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
959 (utf-translate-cjk-unicode-range): New variable.
960 (utf-translate-cjk-load-tables): New function.
961 (utf-lookup-subst-table-for-decode): New function.
962 (utf-lookup-subst-table-for-encode): New function.
963 (utf-translate-cjk-mode): Init-value changed to t. Don't load
964 tables here. Update safe-charsets of utf-* coding systems.
965 (ccl-mule-utf-untrans): New CCL.
966 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
967 at end of each branch.
968 (ccl-mule-utf-8-encode-untrans): New CCL.
969 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
970 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
971 length of encoding. Don't return r0.
972 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
973 (utf-8-post-read-conversion): Narrow to region properly.
974 If utf-translate-cjk-mode is on, load tables if necessary.
975 Call utf-8-compose with hash-table arg if necessary.
976 Call XXX-compose-region instead of XXX-post-read-convesion.
977 (utf-8-pre-write-conversion): New function.
978 (mule-utf-8): Include CJK charsets in safe-charsets if
979 utf-translate-cjk-mode is on. Add pre-write-conversion.
980
981 * international/characters.el: Temporarily set
982 utf-translate-cjk-mode to nil.
983
984 * language/devan-util.el (devanagari-compose-region):
985 Add autoload cookie.
986
987 * international/ccl.el (ccl-dump-call): Fix printing the
988 subroutine name.
989
990 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
991
992 * dired.el (dired-revert): If buffer is marked unmodified before
993 reverting, keep it marked unmodified.
994 Adapt to new conventions for commenting out code.
995 (dired-make-relative): Adapt to new conventions for commenting out code.
996
997 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
998
999 * eshell/esh-module.el (eshell-load-defgroups):
1000 Bind `vc-handled-backends' to nil when opening files.
1001
1002 2004-06-11 Juanma Barranquero <lektu@terra.es>
1003
1004 * files.el (parse-colon-path, cd): Doc fixes (refer to
1005 `path-separator', not colon).
1006
1007 2004-06-10 Juanma Barranquero <lektu@terra.es>
1008
1009 * newcomment.el (comment-search-forward)
1010 (comment-search-backward): Fix typos in docstring.
1011 (comment-region): Doc fix.
1012
1013 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
1014
1015 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
1016 switch is no longer stored in `dired-switches-alist'.
1017
1018 * dired-aux.el (dired-insert-subdir): Do not store R switch in
1019 `dired-switches-alist'.
1020
1021 2004-06-10 Kim F. Storm <storm@cua.dk>
1022
1023 * pcvs.el (cvs-mode-diff-yesterday): New command.
1024
1025 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
1026
1027 2004-06-10 Juri Linkov <juri@jurta.org>
1028
1029 * emacs-lisp/edebug.el (edebug-eval-defun):
1030 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
1031 Fix docstring.
1032
1033 * simple.el (eval-expression-print-format): Don't print additional
1034 information on the first call to `eval-print-last-sexp'.
1035 (next-error-find-buffer): Fix punctuation.
1036 (killing) <defgroup>: Fix punctuation.
1037 (yank-excluded-properties): Change group from editing to killing.
1038
1039 * replace.el (perform-replace): Use `limit' to terminate the
1040 while-loop explicitly.
1041
1042 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1043
1044 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
1045 Use lc-*.xpm as prefix instead of *-locol.xpm.
1046
1047 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
1048 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
1049 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
1050 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
1051 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
1052 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
1053 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
1054 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
1055 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
1056 * toolbar/lc-up_arrow.xpm:
1057 Renamed from *-locol.xpm.
1058
1059 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
1060
1061 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
1062 include forms like &<str>; as valid url patterns.
1063
1064 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
1065
1066 * dired.el (dired-diff, dired-backup-diff)
1067 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
1068 (dired-do-chown, dired-do-touch, dired-do-print)
1069 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
1070 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
1071 (dired-create-directory, dired-do-copy, dired-do-symlink)
1072 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
1073 (dired-do-copy-regexp, dired-do-hardlink-regexp)
1074 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
1075 (dired-maybe-insert-subdir, dired-next-subdir)
1076 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
1077 (dired-kill-subdir, dired-tree-up, dired-tree-down)
1078 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
1079 (dired-run-shell-command, dired-query): Remove redundant,
1080 or incorrect, autoloads.
1081
1082 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
1083 does not end in a slash. Add optional argument KILL-ROOT.
1084 Update docstring.
1085 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
1086 (dired-query): Add autoloads.
1087
1088 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
1089
1090 * progmodes/compile.el (compilation-set-window-height):
1091 Rearrange the save-* functions because a buffer can have several current
1092 point in different windows.
1093 (compilation-error-regexp-alist-alist): Recognize {standard input}
1094 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
1095
1096 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1097
1098 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
1099 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
1100 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
1101 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
1102 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
1103 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
1104 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
1105 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
1106 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
1107 * toolbar/up_arrow-locol.xpm:
1108 New versions of icons that uses fewer colors.
1109
1110 * toolbar/tool-bar.el (tool-bar-local-item)
1111 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
1112 if display-color-cells is 256 or less.
1113
1114 2004-06-08 Kim F. Storm <storm@cua.dk>
1115
1116 * wid-edit.el (widget-specify-button): Use hand pointer rather
1117 than mouse-face as visible mouse-over effect.
1118
1119 2004-06-07 Karl Fogel <kfogel@red-bean.com>
1120
1121 * saveplace.el (save-place-alist-to-file): Bind `print-length'
1122 and `print-level' to nil when writing out `save-place-alist'.
1123 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
1124
1125 2004-06-07 Juanma Barranquero <lektu@terra.es>
1126
1127 * completion.el (completion-kill-region): Doc fix.
1128
1129 * format.el (format-insert-annotations)
1130 (format-annotate-location): Doc fixes.
1131 (format-subtract-regions): Make arguments match their use in docstring.
1132
1133 * simple.el (kill-region): Doc fix.
1134
1135 * subr.el (insert-buffer-substring-no-properties)
1136 (insert-buffer-substring-as-yank): Doc fixes.
1137
1138 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
1139
1140 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1141 Update docstring.
1142 (dired-reset-subdir-switches): New function.
1143
1144 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
1145 Limit scope of `buffer-read-only' binding.
1146
1147 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
1148
1149 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
1150 eshell-explicit-command-char.
1151
1152 2004-06-06 Juanma Barranquero <lektu@terra.es>
1153
1154 * help-fns.el (help-argument-name): Inherit from italic face only
1155 if the frame supports it.
1156
1157 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1158
1159 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
1160 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
1161 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
1162 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
1163 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
1164 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
1165 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
1166 New conversions from xpm files.
1167
1168 * toolbar/README: New file.
1169
1170 2004-06-06 Richard M. Stallman <rms@gnu.org>
1171
1172 * isearch.el (isearch-mode-map): Undo previous change.
1173
1174 2004-06-05 Juri Linkov <juri@jurta.org>
1175
1176 * bindings.el (debug-ignored-errors): Add regexps for history
1177 related messages. Remove $ from "No further undo information".
1178 Move Ediff's messages to ediff.el.
1179
1180 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
1181
1182 * cus-edit.el (custom-display): Add `min-colors'.
1183
1184 * custom.el (defface): Add `supports' to docstring.
1185
1186 * help-fns.el (help-argument-name): Add :group 'help.
1187
1188 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
1189
1190 * find-dired.el (find-ls-subdir-switches): New user option.
1191 (find-dired): No longer call `abbreviate-file-name' on DIR.
1192 Set `dired-subdir-switches' buffer-locally.
1193
1194 * locate.el: Merge the two `Commentary' sections.
1195 (locate-ls-subdir-switches): New user option.
1196 (locate): Update for other changes.
1197 (locate-mode-map): Restore Dired binding for mouse-2.
1198 Bind `locate-mouse-view-file' to M-mouse-2.
1199 Bind `l' to `locate-do-redisplay'.
1200 (locate-main-listing-line-p, locate-do-redisplay): New functions.
1201 (locate-mouse-view-file, locate-tags, locate-find-directory):
1202 Print message if used outside main listing.
1203 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
1204 Various changes to support inserted subdirectories.
1205 (locate-insert-header): Change header of *Locate* buffer.
1206
1207 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
1208 Change interactive default switches.
1209 (dired-rename-subdir-2): Update `dired-switches-alist'.
1210 (dired-insert-subdir, dired-kill-subdir):
1211 Handle `dired-switches-alist'. Do not mark buffer modified.
1212 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
1213 (dired-insert-subdir-doinsert): Omit messages.
1214 Handle `dired-subdir-switches'.
1215 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
1216
1217 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
1218 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
1219 subdirs if -R switch is used for a subdir.
1220 (dired-mode): Set `dired-switches-alist'.
1221 (dired-build-subdir-alist): Only print number of directories in
1222 echo area when invoked interactively.
1223
1224 2004-06-05 Lars Hansen <larsh@math.ku.dk>
1225
1226 * dired-x.el (dired-omit-mode): Rename from
1227 dired-omit-files-p. Use define-minor-mode to define it.
1228 (dired-omit-files-p): Add as alias for dired-omit-mode.
1229 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
1230 dired-mark-omitted.
1231 (dired-mark-omitted): Add. Bind to M-O.
1232
1233 2004-06-05 Kenichi Handa <handa@m17n.org>
1234
1235 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
1236
1237 2004-06-05 Juanma Barranquero <lektu@terra.es>
1238
1239 * help-fns.el (help-argument-name): Reintroduce face.
1240 (help-default-arg-highlight): Use it, now that
1241 `face-differs-from-default-p' can be trusted.
1242
1243 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
1244
1245 * textmodes/table.el: Sentence commands added to Point Motion
1246 group; kill and backward-kill commands added to Extraction group.
1247
1248 2004-06-04 Mario Lang <mlang@delysid.org>
1249
1250 * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
1251 systems appear to use mW, make the code handle this. Fix a
1252 division-by-zero bug while at it, and handle kernels with
1253 a slightly different layout in /proc/acpi.
1254
1255 2004-06-04 Karl Fogel <kfogel@red-bean.com>
1256
1257 * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
1258 because the latter is a CL-ism. This fixes the bug reported by
1259 Shawn Boyette <mdxi@collapsar.net> in
1260 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
1261
1262 2004-06-04 Miles Bader <miles@gnu.org>
1263
1264 * faces.el (display-supports-face-attributes-p): Function moved to
1265 C code. Previously only the tty-related portion of this function
1266 was done in C; however the previous attempt to do a halfway-proper
1267 job for non-tty displays in lisp didn't work properly because of
1268 funny conditions during Emacs startup.
1269 (face-differs-from-default-p): Simplify, now that
1270 display-supports-face-attributes-p works properly on all display
1271 types. Remove :stipple from comparison; it doesn't really work
1272 in emacs anyway.
1273
1274 2004-06-04 Miles Bader <miles@gnu.org>
1275
1276 * faces.el (face-differs-from-default-p): Use a different
1277 implementation, so we can really check whether FACE displays
1278 differently or not.
1279
1280 2004-06-04 Miles Bader <miles@gnu.org>
1281
1282 * faces.el (display-supports-face-attributes-p): Implement a
1283 `different from default' check for non-tty displays.
1284
1285 2004-06-03 David Kastrup <dak@gnu.org>
1286
1287 * woman.el (woman-mapcan): More concise code.
1288 (woman-topic-all-completions, woman-topic-all-completions-1)
1289 (woman-topic-all-completions-merge): Replace by a simpler and
1290 much faster implementation based on O(n log n) sort/merge instead
1291 of the old O(n^2) behavior.
1292
1293 2004-06-03 Miles Bader <miles@gnu.org>
1294
1295 * subr.el (read-number): Use canonical format for default in prompt.
1296
1297 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
1298 Add regexp for " [...]" style defaults.
1299
1300 2004-06-02 Romain Francoise <romain@orebokech.com>
1301
1302 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
1303 groups: if the user asks for a hidden buffer, open the
1304 corresponding filter group to expose it.
1305
1306 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
1307 `ibuffer-jump-to-buffer'.
1308 (ibuffer-jump-offer-only-visible-buffers): New user option.
1309
1310 2004-06-02 Juanma Barranquero <lektu@terra.es>
1311
1312 * faces.el (frame-update-faces): Add empty docstring so the one
1313 for `ignore' doesn't show through.
1314
1315 * subr.el (process-kill-without-query): Remove spurious "\n" on
1316 obsolescence string.
1317 (focus-frame, unfocus-frame): Add obsolescence declaration and
1318 empty docstring.
1319
1320 * international/mule.el (register-char-codings): Make alias for
1321 `ignore'. Move docstring to obsolescence info and remove redundancy.
1322
1323 2004-06-02 Kim F. Storm <storm@cua.dk>
1324
1325 * frame.el (blink-cursor-start): Turn cursor off initially so blink
1326 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
1327
1328 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1329
1330 * comint.el (comint-replace-by-expanded-history-before-point):
1331 Obey `start' as the docstring says.
1332 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
1333 (comint-update-fence): Prevent font-lock from running unnecessarily.
1334 (comint-dynamic-list-completions): Use with-current-buffer.
1335
1336 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1337
1338 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
1339 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
1340 (bibtex-entry-update): Handle alternatives and optional fields.
1341 (bibtex-parse-entry): Bugfix, handle empty key.
1342
1343 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1344
1345 * vc-arch.el (vc-arch-state): Don't assume the file exists.
1346
1347 2004-05-31 Lars Hansen <larsh@math.ku.dk>
1348
1349 * desktop.el (desktop-save): Don't save minor modes without a
1350 known mode initialization function.
1351
1352 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
1353
1354 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
1355
1356 * autorevert.el: Update `Commentary' section.
1357
1358 2004-05-30 Juanma Barranquero <lektu@terra.es>
1359
1360 * dos-fns.el (convert-standard-filename):
1361 * files.el (convert-standard-filename):
1362 * w32-fns.el (convert-standard-filename):
1363 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
1364
1365 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
1366
1367 Sync with Tramp.
1368
1369 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
1370 (tramp-let-maybe): Move to an earlier spot in the file.
1371 Patch by Andreas Schwab.
1372
1373 2004-05-30 Andreas Schwab <schwab@suse.de>
1374
1375 * dired.el (dired-get-filename): Don't use dired-re-dot.
1376
1377 2004-05-30 Richard M. Stallman <rms@gnu.org>
1378
1379 * files.el (find-file): Doc fix.
1380
1381 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
1382
1383 2004-05-30 Nick Roberts <nickrob@gnu.org>
1384
1385 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
1386 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
1387 modeline of the locals buffer.
1388 (gdb-goto-breakpoint): Handle gdbmi.
1389 (gdb-get-frame-number): Change for gdbmi.
1390
1391 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
1392
1393 * files.el (file-remote-p): Apply file name handler for operation
1394 `file-remote-p'. It isn' a property any longer.
1395 (file-relative-name): `fh' and `fd' get the required value via
1396 `find-file-name-handler' already.
1397
1398 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
1399 (top): Remove setting of `file-remote-p' property for
1400 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
1401
1402 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
1403
1404 Version 2.0.41 of Tramp released.
1405
1406 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
1407 Throw away if process has died.
1408 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
1409 (tramp-out-of-band-prompt-regexp): Rename to
1410 `tramp-process-alive-regexp', because its usage is widen.
1411 (tramp-actions-copy-out-of-band): Apply it.
1412 (tramp-actions-before-shell, tramp-multi-actions):
1413 Add `tramp-action-process-alive' action.
1414 (tramp-action-process-alive): New defun.
1415 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
1416 Add entry for `file-remote-p'.
1417 (tramp-handle-file-remote-p): New defun.
1418 (top): Remove setting of `file-remote-p'. Don't set
1419 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
1420
1421 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1422 `file-remote-p'.
1423
1424 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
1425 counted for (last) line. [They should or they shouldn't? --Stef]
1426 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
1427
1428 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
1429
1430 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
1431 not really necessary but seems to keep the shell history smaller
1432 in some cases. It is no substitute for setting HISTFILE and
1433 HISTSIZE from tramp-open-connection-setup-interactive-shell,
1434 though. Suggested by Luc Teirlinck.
1435 (tramp-open-connection-setup-interactive-shell): Export variables
1436 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
1437 (tramp-set-process-query-on-exit-flag): New compat function.
1438 (tramp-open-connection-multi, tramp-open-connection-su)
1439 (tramp-open-connection-rsh, tramp-open-connection-telnet)
1440 (tramp-do-copy-or-rename-file-out-of-band): Use it.
1441 (tramp-let-maybe): New macro, let-binds a variable only if it
1442 isn't obsolete.
1443 (tramp-check-ls-commands, tramp-handle-expand-file-name)
1444 (tramp-handle-file-truename): Use it.
1445 (tramp-completion-file-name-regexp-unified): Avoid matching
1446 filenames starting with "/:" -- those are reserved for
1447 file-name-non-special.
1448
1449 * tramp-smb.el (tramp-smb-open-connection):
1450 Use tramp-set-process-query-on-exit-flag compat function.
1451
1452 2004-05-29 Richard M. Stallman <rms@gnu.org>
1453
1454 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
1455
1456 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
1457 (eval-last-sexp-print-value): Print char equivalent regardless
1458 of standard-output value.
1459
1460 * thumbs.el (thumbs-subst-char-in-string): Delete.
1461 (thumbs-thumbname): Use subst-char-in-string.
1462 (thumbs-resize-image): Use condition-case, not ignore-errors.
1463 (thumbs-kill-buffer): Likewise.
1464
1465 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
1466 (thumbs-mode): Make buffer read-only.
1467 (thumbs-make-thumb): Unconditionally accept an existing file.
1468 (thumbs-insert-thumb): Add thumb-image-file property to the image.
1469 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
1470 (thumbs-show-thumbs-list): Error if images not supported.
1471 (thumbs-save-current-image): Improve prompt string.
1472 (thumbs-mode-map): Define u, R, x.
1473 (thumbs-unmark): New command.
1474 (thumbs-emboss-image): Minor cleanup.
1475 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
1476 (thumbs-rename-images): New command.
1477 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
1478
1479 * thumbs.el (thumbs-current-image): New function.
1480 (thumbs-file-list, thumbs-file-alist): New functions.
1481 (thumbs-find-image): Delete arg L.
1482 Don't set up thumbs-fileL as buffer-local global var.
1483 (thumbs-find-image-at-point): Use thumbs-current-image.
1484 (thumbs-set-image-at-point-to-root-window): Likewise.
1485 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
1486 Record and warn about errors. Update thumbs-markedL for deletions.
1487 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
1488 (thumbs-redraw-buffer): Use thumbs-file-list.
1489 (thumbs-mark): Use thumbs-current-image.
1490 (thumbs-show-name): Use thumbs-current-image.
1491
1492 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
1493 and imenu--last-menubar-index-alist.
1494
1495 * subr.el (with-selected-window): Undo previous change.
1496
1497 2004-05-29 John Paul Wallington <jpw@gnu.org>
1498
1499 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
1500 (thumbs-mouse-find-image): New command.
1501 (thumbs-mode-map): Bind it to mouse-2.
1502 (thumbs-mode): Make mode-class special.
1503 (thumbs-view-image-mode): Likewise.
1504
1505 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
1506
1507 * flymake.el: New file.
1508
1509 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
1510
1511 * files.el (find-file-noselect-1): Do not bind
1512 `inhibit-read-only' to t during execution of
1513 `find-file-not-found-functions'.
1514
1515 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1516
1517 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
1518 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
1519
1520 2004-05-28 Juri Linkov <juri@jurta.org>
1521
1522 * simple.el (eval-expression-print-format): New fun.
1523
1524 * simple.el (eval-expression):
1525 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
1526 * emacs-lisp/edebug.el (edebug-compute-previous-result)
1527 (edebug-eval-expression): Print additionally the value returned by
1528 `eval-expression-print-format'.
1529
1530 * emacs-lisp/lisp.el (insert-pair-alist): New var.
1531 (insert-pair): Make arguments optional. Find character pair
1532 from `insert-pair-alist' according to the last input event.
1533 (insert-parentheses): Make arguments optional.
1534 (raise-sexp, delete-pair): New funs.
1535
1536 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
1537 (emacs-lisp-mode-map, lisp-interaction-mode-map):
1538 Bind C-M-q to `indent-pp-sexp'.
1539
1540 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
1541 `pp-to-string' modified to be able to format text with newlines.
1542 (pp-to-string): Move the buffer-formatting part of the code to
1543 `pp-buffer'. Call `pp-buffer'.
1544
1545 * info.el (Info-desktop-buffer-misc-data): Don't save information
1546 about virtual files.
1547 (Info-restore-desktop-buffer): Restore Info buffers in prepared
1548 buffers with names obtained from the desktop file instead of the
1549 default *info* buffer.
1550
1551 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1552
1553 * subr.el (with-selected-window): Only save/restore the selected window.
1554
1555 * progmodes/compile.el (compilation-error-regexp-alist):
1556 Use expand-file-name and data-directory.
1557
1558 * progmodes/grep.el (grep-tree): Rework previous fix.
1559
1560 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
1561 after the user marked text with the mouse.
1562
1563 * startup.el (command-line): Keep the first regexp of
1564 auto-save-file-name-transforms intact.
1565
1566 2004-05-28 Juanma Barranquero <lektu@terra.es>
1567
1568 * cus-edit.el (customize-face, customize-face-other-window)
1569 (custom-face-edit-delete): Make arguments match their use in
1570 docstring.
1571 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
1572 docstring.
1573
1574 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
1575 not `cvs-butlast'.
1576
1577 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
1578 `nbutlast' are in subr.el).
1579
1580 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
1581 (set-w32-system-coding-system): Doc fixes.
1582
1583 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
1584 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
1585 Make arguments match their use in docstring.
1586 (artist-draw-region-trim-line-endings)
1587 (artist-mouse-choose-operation): Fix typo in docstring.
1588 (artist-key-set-point-common): Doc fix.
1589
1590 2004-05-28 Simon Josefsson <jas@extundo.com>
1591
1592 * mail/smtpmail.el (smtpmail-open-stream):
1593 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
1594
1595 2004-05-26 Simon Josefsson <jas@extundo.com>
1596
1597 * starttls.el: Merge with my GNUTLS based starttls.el.
1598 (starttls-gnutls-program, starttls-use-gnutls)
1599 (starttls-extra-arguments, starttls-process-connection-type)
1600 (starttls-connect, starttls-failure, starttls-success): New variables.
1601 (starttls-program, starttls-extra-args): Doc fix.
1602 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
1603 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
1604 and pass on to corresponding *-gnutls function if it is set.
1605
1606 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
1607
1608 * autorevert.el (auto-revert-handler): Disable auto-reverting of
1609 remote files.
1610
1611 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
1612
1613 * files.el (file-name-non-special): There are more operations
1614 which need handling: `find-backup-file-name',
1615 `insert-file-contents', `verify-visited-file-modtime',
1616 `write-region'. Rename t value of method to `add'. Add new
1617 methods `quote' and `unquote-then-quote' to file-arg-indices.
1618
1619 2004-05-25 Juri Linkov <juri@jurta.org>
1620
1621 * info.el (Info-toc): Call Info-mode on intermediate buffer.
1622 (Info-index-nodes): Enclose code in condition-case to catch errors.
1623 (Info-index-node): Don't search all index nodes if request is only
1624 for the current node and file is not in the cache of index nodes.
1625 (Info-mode-map): Bind Info-copy-current-node-name to `w'
1626 for consistency with dired-copy-filename-as-kill.
1627 Bind `S' to Info-search-case-sensitively.
1628 (Info-copy-current-node-name): New arg. With zero prefix arg put
1629 the name inside a function call to `info'. Display copied text in
1630 the echo area.
1631
1632 2004-05-25 Sam Steingold <sds@gnu.org>
1633
1634 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
1635 strip the package prefix from the symbol name, if any.
1636 Make it the `find-tag-default-function' for `lisp-mode'.
1637
1638 2004-05-25 John Paul Wallington <jpw@gnu.org>
1639
1640 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
1641 instead of obsolete `process-kill-without-query'.
1642
1643 * textmodes/texinfmt.el (texinfo-indexvar-alist):
1644 Declare as variable, not constant.
1645
1646 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
1647
1648 * files.el (find-file-noselect-1): Fix bug introduced by
1649 Revision 1.694. As a side effect, `inhibit-read-only'
1650 is again, by default, t during execution of
1651 `find-file-not-found-functions'.
1652 (insert-directory): Check that lines were really inserted by
1653 the --dired switch, before erasing them.
1654
1655 2004-05-24 Nick Roberts <nickrob@gnu.org>
1656
1657 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
1658 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
1659 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
1660 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
1661 gud-minor-mode (gdbmi).
1662
1663 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
1664
1665 * net/browse-url.el (browse-url-interactive-arg): Enable user to
1666 explicitly select the text to be taken as URL.
1667
1668 2004-05-23 Juri Linkov <juri@jurta.org>
1669
1670 * info.el (Info-index-nodes): New var and fun.
1671 (Info-goto-index, Info-index, info-apropos)
1672 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
1673 (Info-index): Fix docstring. Store and restore Info-history-list.
1674 (Info-complete-nodes): New var.
1675 (Info-complete-menu-item): Use it.
1676 (Info-index-node): New fun.
1677 (Info-final-node, Info-forward-node, Info-backward-node)
1678 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
1679 Use Info-index-node.
1680 (Info-extract-menu-item, Info-extract-menu-counting): Set second
1681 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
1682 (Info-find-node-2): If a node with period in its name not found,
1683 try to find a node without the name part after period.
1684 (Info-select-node): Call Info-fontify-node only if
1685 Info-fontify-maximum-menu-size is not nil.
1686 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
1687 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
1688 Preserve Info-history-list.
1689 (Info-toc): Set Info-current-file.
1690 (Info-build-toc): Move point to the beginning of the buffer.
1691 Add main-file variable.
1692 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
1693 Use backslashed representation of the control character ^_.
1694
1695 * textmodes/texinfmt.el (texinfo-print-index): Print index line
1696 numbers in the new Texinfo 4.7 format.
1697
1698 * add-log.el (change-log-font-lock-keywords): Remove `:' from
1699 regexps for function and variable names.
1700
1701 * descr-text.el (describe-property-list): Add [show] button for
1702 `syntax-table' property with action to pp to a separate buffer.
1703 (describe-char): Replace search-forward by re-search-forward with
1704 whitespace regexp after "character:" to not fail in too narrow windows.
1705
1706 * simple.el (next-error-find-buffer): Add a rule to return
1707 next-error capable buffer if one window on the selected frame
1708 displays such buffer.
1709
1710 2004-05-23 Nick Roberts <nickrob@gnu.org>
1711
1712 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
1713 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
1714 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
1715 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
1716 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
1717 Handle new value for gud-minor-mode (gdbmi).
1718 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
1719 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
1720 Change from local to global gdb variable set.
1721 (gdb-ann3): Initialise above gdb variable set.
1722 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
1723 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
1724 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
1725 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
1726 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
1727 (gdb-info-locals-handler, gdb-invalidate-assembler)
1728 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
1729 set as global variables.
1730 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
1731 Handle gdbmi.
1732 (gdb-info-breakpoints-custom): Fix regexp.
1733 (def-gdb-var): Delete.
1734
1735 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
1736 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
1737 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
1738 a new mode. The file (gdb-mi.el) for this mode will be included
1739 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
1740 primary interface.
1741
1742 2004-05-23 Jesper Harder <harder@ifa.au.dk>
1743
1744 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
1745 interpreted as a directory.
1746
1747 2004-05-22 Richard M. Stallman <rms@gnu.org>
1748
1749 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
1750 as a close quote.
1751
1752 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
1753
1754 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
1755 Use assoc-string, not assoc-ignore-case.
1756
1757 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
1758
1759 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
1760 If moving back then fwd gets a defun that ends before point,
1761 try again moving fwd then back.
1762
1763 * files.el (file-name-non-special): Allow t in file-arg-indices
1764 to mean requote the return value. Use `identity' as an element
1765 rather than as the whole value.
1766
1767 * gs.el (gs-options): Add -dSAFER. Mark it risky.
1768
1769 2004-05-22 Juanma Barranquero <lektu@terra.es>
1770
1771 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
1772 `help-make-usage'.
1773 (help-highlight-arguments): Skip function name before searching
1774 for arguments.
1775
1776 2004-05-21 Juanma Barranquero <lektu@terra.es>
1777
1778 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
1779 Don't mention in the docstring these arguments meant for
1780 internal (recursive) use only.
1781 (allout-char-spec): Comment out (it's not implemented).
1782 (allout-old-expose-topic, allout-exposure): Fix docstring and add
1783 obsolescence declaration.
1784 (allout-flatten-exposed-to-buffer)
1785 (allout-indented-exposed-to-buffer): Fix typos in docstring.
1786 (my-mark-marker): Doc fix.
1787 (produce-allout-mode-map, allout-sibling-index)
1788 (allout-isearch-expose, allout-distinctive-bullet)
1789 (allout-open-topic, allout-reindent-body)
1790 (allout-rebullet-heading, allout-process-exposed)
1791 (allout-insert-listified, allout-latex-verb-quote)
1792 (allout-insert-latex-header, allout-insert-latex-trailer):
1793 Make arguments match their use in docstring.
1794 (allout-primary-bullet, allout-old-style-prefixes)
1795 (allout-inhibit-protection, allout-init, allout-mode)
1796 (allout-before-change-protect, allout-flag-region):
1797 Use "Emacs" instead of "emacs" in docstrings.
1798
1799 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
1800
1801 * international/characters.el: Modify syntax of more characters.
1802
1803 2004-05-21 Masatake YAMATO <jet@gyve.org>
1804
1805 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
1806 (etags-tags-completion-table): Show parsing progress.
1807
1808 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
1809
1810 * locate.el (locate-prompt-for-command): Shorten first line of
1811 docstring.
1812 (locate-mode): Expand docstring and include keymap summary.
1813
1814 * files.el (find-file-noselect-1): Limit the scope of the
1815 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
1816 is, by default, nil during the execution of
1817 `find-file-not-found-functions' and `find-file-hook'.
1818
1819 2004-05-20 Michael Mauger <mmaug@yahoo.com>
1820
1821 * facemenu.el (facemenu-color-name-equal): New function.
1822 (list-colors-display): Use it to compare colors instead of
1823 facemenu-color-equal.
1824
1825 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
1826
1827 * compare-w.el (compare-windows-face): Use min-colors instead of
1828 checking for tty or pc types.
1829
1830 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1831
1832 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
1833 (completion-setup-function): Use with-current-buffer.
1834 Properly save excursion. Simplify.
1835 Don't assume there is necessarily a `mouse-face' property somewhere.
1836
1837 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
1838
1839 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
1840
1841 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
1842 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
1843 Use with-current-buffer.
1844 (byte-goto-log-buffer): Delete.
1845 (byte-compile-log-file): Call compilation-forget-errors.
1846
1847 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
1848
1849 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
1850 output messages into the search result.
1851
1852 2004-05-19 Masatake YAMATO <jet@gyve.org>
1853
1854 * wid-edit.el (widget-radio-button-notify): Revert my last
1855 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
1856
1857 2004-05-19 Kenichi Handa <handa@m17n.org>
1858
1859 * international/characters.el: Fix syntax (open/close) of CJK chars.
1860
1861 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
1862
1863 * help-mode.el (help-go-back): Don't depend on position of back button.
1864
1865 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1866
1867 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
1868 files files don't contain an accidental additional /.
1869
1870 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
1871 in source buffer.
1872
1873 2004-05-18 Masatake YAMATO <jet@gyve.org>
1874
1875 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
1876 to widget-apply. :action method assumes 2 arguments, not 3.
1877
1878 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
1879
1880 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
1881 New constants.
1882 (hs-special-modes-alist): Add an f90-mode entry.
1883
1884 2004-05-17 Sam Steingold <sds@gnu.org>
1885
1886 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
1887 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
1888
1889 2004-05-16 Kim F. Storm <storm@cua.dk>
1890
1891 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
1892
1893 2004-05-15 John Wiegley <johnw@newartisans.com>
1894
1895 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
1896 (eshell-output-object-to-target): Improve output speed 20% by not
1897 calling `eshell-stringify' if something is already known to be a string.
1898
1899 2004-05-15 Alex Ott <ott@jet.msk.su>
1900
1901 * textmodes/ispell.el (ispell-local-dictionary-alist):
1902 Add windows-1251 to the choice of coding systems.
1903 (ispell-dictionary-alist-6): Add support for "russianw.aff",
1904 encoded in cp1251.
1905
1906 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
1907
1908 * progmodes/compile.el (compilation-warning-face)
1909 (compilation-info-face): Use min-colors.
1910
1911 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1912
1913 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
1914 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
1915 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
1916 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
1917 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
1918 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
1919 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
1920 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
1921 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
1922 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
1923 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
1924 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
1925 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
1926 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
1927
1928 2004-05-15 Kim F. Storm <storm@cua.dk>
1929
1930 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
1931 Use it to set triggered-p element of timer.
1932 (timer-event-handler): Set triggered-p element non-nil while running
1933 the timer function.
1934
1935 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
1936
1937 * descr-text.el (describe-char-unicode-data)
1938 (describe-char-unicodedata-file): Re-enable the unicode code now that
1939 the licensing issues have been cleared in the unicode-4 license.
1940 (describe-text-properties-1): Remove unused `overlay' var.
1941 (describe-char): Remove unused var `buffer'.
1942
1943 2004-05-14 David Ponce <david@dponce.com>
1944
1945 * tree-widget.el: New file.
1946
1947 2004-05-13 Marcelo Toledo <marcelo@marcelotoledo.org>
1948
1949 * language/european.el ("Brazilian Portuguese"): Add support for
1950 Brazilian Portuguese.
1951
1952 2004-05-13 John Wiegley <johnw@newartisans.com>
1953
1954 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
1955 `recentf-mode' if this variable has been customized to t.
1956
1957 * eshell/esh-test.el (eshell-test): Call the function
1958 `emacs-version' rather than trying to build a custom version string.
1959
1960 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1961
1962 * net/telnet.el (telnet-mode): Use define-derived-mode.
1963 Don't modify the global value of comint-prompt-regexp.
1964
1965 2004-05-13 John Paul Wallington <jpw@gnu.org>
1966
1967 * version.el (emacs-version): Check for `gtk' feature before
1968 `x-toolkit' feature.
1969
1970 2004-05-13 Juanma Barranquero <lektu@terra.es>
1971
1972 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
1973 arguments in the docstring, they're used only in recursive calls.
1974
1975 * help-fns.el (help-arg-highlighting-function)
1976 (help-argument-name): Delete.
1977 (help-default-arg-highlight): New function.
1978 (help-do-arg-highlighting): Use it.
1979
1980 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
1981
1982 * calendar/appt.el (appt-disp-window):
1983 Use `calendar-set-mode-line' for a centered mode-line.
1984
1985 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
1986
1987 * calendar/appt.el (appt-disp-window): Do not split window
1988 excessively when `split-height-threshold' is low.
1989
1990 2004-05-12 Nick Roberts <nickrob@gnu.org>
1991
1992 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
1993 kill-buffer-hook here and make it local.
1994 (gud-kill-buffer-hook): Use kill-process for a sure kill.
1995
1996 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
1997
1998 * progmodes/compile.el (compilation-set-window-height):
1999 Use save-excursion to protect against misplaced marker.
2000
2001 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2002
2003 * custom.el (defface): Document that type can have value gtk.
2004
2005 * faces.el (face-spec-set-match-display): Handle type gtk in display.
2006
2007 2004-05-12 Kenichi Handa <handa@m17n.org>
2008
2009 * descr-text.el: Require quail at comile time.
2010 (describe-char): If an input method is on and it supports the
2011 character, show how to input it.
2012
2013 * international/quail.el (quail-install-decode-map): Accept a
2014 char-table whose subtype is `quail-decode-map'.
2015 (quail-store-decode-map-key, quail-gen-decode-map1)
2016 (quail-gen-decode-map, quail-find-key1, quail-find-key)
2017 (quail-show-key): New functions.
2018
2019 2004-05-12 Juanma Barranquero <lektu@terra.es>
2020
2021 * generic.el (define-generic-mode): Remove redundant arglist info.
2022
2023 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
2024 Make arguments match their use in docstring.
2025 (help-arg-highlighting-function): New variable.
2026 (help-argument-name): Mention it in the docstring.
2027 (help-do-arg-highlight): Use it. Expand regexp to accept also
2028 ARG-xxx and xxx-ARG references.
2029
2030 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
2031
2032 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
2033 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
2034 and "mailto:addr1?to=addr2" equal.
2035
2036 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
2037
2038 * man.el (Man-getpage-in-background): Use shell-file-name
2039 and shell-command-switch variables instead of hard-coded values.
2040
2041 2004-05-11 Eli Zaretskii <eliz@gnu.org>
2042
2043 * iimage.el: New file.
2044
2045 2004-05-11 Juanma Barranquero <lektu@terra.es>
2046
2047 * custom.el (custom-initialize-default, defcustom):
2048 Fix typo in docstring.
2049
2050 * files.el (set-visited-file-name, file-expand-wildcards):
2051 Fix docstring.
2052
2053 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2054
2055 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
2056
2057 * subr.el (eventp): Be more discriminating with integers.
2058
2059 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2060
2061 * progmodes/compile.el (compile): Add universal prefix arg.
2062 (compilation-error-regexp-alist-alist): Add edg patterns.
2063
2064 2004-05-10 Sam Steingold <sds@gnu.org>
2065
2066 * textmodes/ispell.el (ispell-message):
2067 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
2068
2069 2004-05-10 Dave Love <fx@gnu.org>
2070
2071 * progmodes/python.el (help-buffer): Autoload when compiling.
2072 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
2073 (run-python): Prepend to any existing PYTHONPATH.
2074
2075 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
2076
2077 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
2078 for pending breakpoints.
2079
2080 2004-05-10 Richard M. Stallman <rms@gnu.org>
2081
2082 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
2083 directly without calling any functions in Rmail.
2084 (unrmail-unprune): Function deleted.
2085
2086 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
2087
2088 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
2089 C-c C-z binding.
2090
2091 2004-05-10 Kenichi Handa <handa@m17n.org>
2092
2093 * descr-text.el (describe-char): Fix previous change. Don't make
2094 a unibyte character to multibyte in the *Help* buffer.
2095
2096 2004-05-10 Miles Bader <miles@gnu.org>
2097
2098 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
2099 buffer an error if the debugger process is actually running.
2100
2101 2004-05-10 Juanma Barranquero <lektu@terra.es>
2102
2103 * help-fns.el (help-argument-name): Default to italic.
2104 (help-highlight-arguments): Return always (usage . doc), even when
2105 usage is nil.
2106
2107 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
2108 (define-ibuffer-filter): Add usage info.
2109 (define-ibuffer-op): Add usage info (but CL-style defaults for
2110 keyword args are not shown).
2111
2112 * subr.el (remove-overlays, read-passwd): Fix docstring.
2113 (start-process-shell-command): Fix docstring. Put usage info in a
2114 format usable by `describe-function'.
2115 (open-network-stream, open-network-stream-nowait)
2116 (open-network-stream-server): Fix docstring.
2117
2118 2004-05-09 Jason Rumney <jasonr@gnu.org>
2119
2120 * international/code-pages (cp932, cp936, cp949, c950): Remove.
2121 Only define cp125* if windows-125* is already defined.
2122
2123 * language/korean.el (cp949): Add alias.
2124
2125 * language/chinese.el (cp936, cp950): Add aliases.
2126
2127 * language/japanese.el (cp932): Add alias.
2128
2129 * term/w32-win.el: Require code-pages.
2130
2131 * international/mule-cmds.el (set-locale-environment):
2132 On MS-Windows use ansi code-page for default coding-systems.
2133 Set up paper sizes for Windows 3 letter languages.
2134
2135 * international/code-pages.el (cp932, cp936, cp949, cp950):
2136 Add aliases. Also add cp125* if not already defined.
2137
2138 2004-05-09 Juanma Barranquero <lektu@terra.es>
2139
2140 * help-fns.el (help-highlight-arguments): Don't try to highlight
2141 missing or autoloaded arglists. Accept structured arguments, like
2142 the first ones of `do' and `flet'.
2143
2144 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
2145 (cvs-get-marked): Remove redundant arglist info.
2146
2147 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
2148 Don't use CL-style default args.
2149
2150 2004-05-08 Andreas Schwab <schwab@suse.de>
2151
2152 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
2153
2154 * international/subst-ksc.el: Fix references to utf-translate-cjk
2155 into utf-translate-cjk-mode.
2156 * international/subst-big5.el: Likewise.
2157 * international/subst-gb2312.el: Likewise.
2158 * international/subst-jis.el: Likewise.
2159 * international/utf-16.el: Likewise.
2160 * international/utf-8.el: Likewise.
2161
2162 2004-05-08 John Wiegley <johnw@newartisans.com>
2163
2164 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
2165 "virtual buffers" (off by default), which makes it possible to
2166 switch to the "virtual" buffers of recently visited files. When a
2167 buffer name search fails, and this option is on, iswitchb will
2168 look at the list of recently visited files, and permit matching
2169 against those names. When the user hits RET on a match, it will
2170 revisit that file.
2171 (iswitchb-read-buffer): Add two optional arguments, which makes
2172 isearchb.el possible.
2173 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
2174 (iswitchb-next-match): Add support for virtual buffers.
2175
2176 * isearchb.el: This module extends iswitchb to provide "as you
2177 type" buffer selection.
2178
2179 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
2180 Ignore the read-only property when flyspell highlighting is on.
2181 Not ignoring it leads to a series of confusing errors.
2182 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
2183 but also make sure to call flyspell-incorrect-hook.
2184 (flyspell-maybe-correct-transposition): Perform transposition test
2185 by bit twiddling a string, rather than using a temp buffer.
2186 (flyspell-maybe-correct-doubling): Use a string rather than a temp
2187 buffer. This is also the original version of the code, which
2188 could not be checked in before due to a previous lack of
2189 assignment papers. This version has seen heavy usage on my system
2190 for several years now.
2191
2192 * calendar/cal-bahai.el: New file, which adds support for the
2193 Baha'i calendar to Emacs. This calendar is based on a solar year
2194 of 19 months of 19 days, with 4 intercalary days. Each year
2195 begins on March 21, with the calendar starting in 1844.
2196
2197 * calendar/cal-menu.el, calendar/calendar.el,
2198 calendar/diary-lib.el, calendar/holidays.el: Added support for
2199 using cal-bahai.el.
2200
2201 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
2202 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
2203 function can be used outside of eshell buffers.
2204 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
2205
2206 2004-05-08 Juanma Barranquero <lektu@terra.es>
2207
2208 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
2209 word constituent so FOO-ARG is not recognized as an arg.
2210 (help-highlight-arguments): Don't skip lists in mandatory arguments.
2211
2212 * simple.el (next-error): Fix typo in docstring.
2213 (open-line): Make argument names match their use in docstring.
2214 (split-line): Fix docstring.
2215
2216 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
2217 usable by `describe-function'.
2218 (gensym, gentemp, typep, ignore-errors): Make argument names match
2219 their use in docstring.
2220
2221 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
2222 argument to `help-setup-xref'.
2223
2224 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
2225
2226 Version 2.0.40 of Tramp released.
2227
2228 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
2229 Use symbol-function to invoke functions only known on some Emacs
2230 flavors. This avoids byte-compiler warnings. Reported by Kevin
2231 Scaldeferri <kevin@scaldeferri.com>.
2232 (tramp-do-copy-or-rename-file-via-buffer): Rename from
2233 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
2234 consistent with the other tramp-do-* functions.
2235 (tramp-do-copy-or-rename-file): Calls adjusted.
2236 (tramp-process-initial-commands): Avoid liveness check on shell --
2237 we know that it must be alive since we're opening a connection at
2238 this moment.
2239 (tramp-last-cmd): New internal variable.
2240 (tramp-process-echoes): New tunable.
2241 (tramp-send-command): Set tramp-last-cmd.
2242 (tramp-wait-for-output): Delete echo, if applicable.
2243 (tramp-read-passwd): Construct the key for the password cache in a
2244 way that works for multi methods, too.
2245 (tramp-bug): Add backup-directory-alist and
2246 bkup-backup-directory-info to bug reports, with Tramp counterparts.
2247
2248 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
2249
2250 * net/tramp*.el: Suppress byte-compiler warnings where possible.
2251
2252 * net/tramp.el (tramp-out-of-band-prompt-regexp)
2253 (tramp-actions-copy-out-of-band): New defcustoms.
2254 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
2255 used instead of a synchronous one. Allows password entering.
2256 (tramp-action-out-of-band): New defun.
2257 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
2258 Remove restriction with password from doc string.
2259 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
2260 `tramp-out-of-band-prompt-regexp',
2261 `tramp-actions-copy-out-of-band', `password-cache' and
2262 `password-cache-expiry'.
2263 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
2264 password caching.
2265 (tramp-touch): FILE can be a local file, too.
2266 (TODO): Remove items done.
2267 (tramp-handle-insert-directory): Properly quote file name also if
2268 not full-directory-p. Handle wildcard case. Reported by Andreas
2269 Schwab <schwab@suse.de>.
2270 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
2271 new file.
2272 (tramp-handle-file-local-copy, tramp-handle-write-region):
2273 The permissions of the temporary file are set if filename exists.
2274 Reported by Ted Stern <stern@cray.com>.
2275 (tramp-backup-directory-alist)
2276 (tramp-bkup-backup-directory-info): New defcustoms.
2277 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
2278 (tramp-handle-find-backup-file-name): New function.
2279 Implements Tramp's find-backup-file-name.
2280
2281 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
2282 for `find-backup-file-name'.
2283
2284 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
2285 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2286
2287 2004-05-07 Lars Hansen <larsh@math.ku.dk>
2288
2289 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
2290
2291 2004-05-07 Juanma Barranquero <lektu@terra.es>
2292
2293 * subr.el (lambda): Add arglist description to docstring.
2294 (declare): Fix typo in docstring.
2295 (open-network-stream): Fix docstring.
2296 (process-kill-without-query): Fix docstring and add obsolescence info.
2297 (last, butlast, nbutlast): Make arguments match their use in docstring.
2298 (insert-buffer-substring-no-properties): Likewise.
2299 (insert-buffer-substring-as-yank): Likewise.
2300 (split-string): Fix docstring.
2301
2302 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2303 Make argument names match their use in docstring.
2304
2305 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
2306
2307 2004-05-06 Nick Roberts <nickrob@gnu.org>
2308
2309 * progmodes/gdb-ui.el: Improve/extend documentation strings.
2310 Fit first sentence on one line for apropos-command.
2311
2312 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2313
2314 Changes largely merged in from Dave Love's code.
2315 * progmodes/python.el: Doc fixes.
2316 (python-mode-map): Add python-complete-symbol.
2317 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
2318 (python-comment-indent, python-complete-symbol)
2319 (python-symbol-completions, python-partial-symbol)
2320 (python-try-complete): New.
2321 (python-indent-line): Remove optional arg. Use python-block-end-p.
2322 (python-check): Bind compilation-error-regexp-alist.
2323 (inferior-python-mode): Use rx. Move keybindings to top level.
2324 Set comint-input-filter.
2325 (python-preoutput-filter): Use rx.
2326 (python-input-filter): Re-introduce.
2327 (python-proc): Start new process if necessary.
2328 Check python-buffer non-nil.
2329 (view-return-to-alist): Defvar.
2330 (python-send-receive): New.
2331 (python-eldoc-function): Use it.
2332 (python-mode-running): Don't defvar.
2333 (python-mode): Set comment-indent-function.
2334 Maybe update hippie-expand-try-functions-list.
2335 (python-indentation-levels): Initialize differently.
2336 (python-block-end-p): New.
2337 (python-indent-line): Use it.
2338 (python-compilation-regexp-alist): Augment.
2339 (run-python): Import `emacs' module to Python rather than loading
2340 code directly. Set python-buffer differently.
2341 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
2342 Use python-proc.
2343 (python-send-command): Go to end of comint buffer.
2344 (python-load-file): Use python-proc, emacs.eimport.
2345 (python-describe-symbol): Simplify interactive form.
2346 Use emacs.help. Do use temp-buffer-show-hook.
2347 Call print-help-return-message.
2348 (hippie-exp): Require when compiling.
2349 (python-preoutput-continuation): Use rx.
2350
2351 * diff-mode.el (diff-make-unified): Fix regexp.
2352
2353 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
2354
2355 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
2356 filter groups from the buffer when rebuilding the Ibuffer buffer
2357 and `ibuffer-show-empty-filter-groups' is nil.
2358
2359 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2360
2361 * ps-print.el (ps-print-quote): Call ps-value-string.
2362 (ps-setup): Call ps-comment-string.
2363 (ps-value-string, ps-comment-string): New funs.
2364
2365 2004-05-06 Juanma Barranquero <lektu@terra.es>
2366
2367 * ehelp.el (electric-help-command-loop): Check whether the last
2368 character is visible, not (point-max).
2369
2370 * help-fns.el (help-argument-name): Default to bold; don't inherit
2371 from font-lock-variable-name-face.
2372 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
2373
2374 2004-05-05 Kenichi Handa <handa@m17n.org>
2375
2376 * descr-text.el (describe-char): Copy the character with text
2377 properties and overlays into the first line, and call
2378 describe-text-properties on it.
2379
2380 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
2381
2382 * iswitchb.el (iswitchb-global-map): Fix typo.
2383 Remove unwanted ###autoloads from source file.
2384
2385 2004-05-05 Lars Hansen <larsh@math.ku.dk>
2386
2387 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
2388 in run-hooks. Use substitute-command-keys in message.
2389 (wdired-abort-changes): Add message.
2390
2391 2004-05-03 Michael Mauger <mmaug@yahoo.com>
2392
2393 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
2394 (sql-emacs20-p): Remove.
2395 (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
2396 (sql-builtin-face, sql-doc-face): Remove.
2397 (sql-mode-ansi-font-lock-keywords)
2398 (sql-mode-oracle-font-lock-keywords)
2399 (sql-mode-postgres-font-lock-keywords)
2400 (sql-mode-linter-font-lock-keywords)
2401 (sql-mode-ms-font-lock-keywords)
2402 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
2403 (sql-product-font-lock): Fix font-lock reset when font rules change.
2404 (sql-highlight-product): Remove incorrect font-lock reset logic.
2405
2406 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
2407
2408 * ses.el (ses-set-parameter): Fix typo.
2409
2410 2004-05-04 Kim F. Storm <storm@cua.dk>
2411
2412 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
2413 Must expand directory for completion to work; and don't mess with
2414 process-environment.
2415 (ido-read-file-name): If command has ido property, don't use ido
2416 if value is ignore, or read as directory if value is dir.
2417 Set ido ignore property for dired-do-rename command.
2418
2419 2004-05-04 Juanma Barranquero <lektu@terra.es>
2420
2421 * ehelp.el (electric-help-command-loop, electric-help-undefined)
2422 (electric-help-help): Check against unmapped commands.
2423
2424 * help-fns.el (help-argument-name): New face, inheriting from
2425 font-lock-variable-name-face, to highlight function arguments in
2426 `describe-function' and `describe-key'.
2427 (help-do-arg-highlight): Auxiliary function to highlight a given
2428 list of arguments in a string.
2429 (help-highlight-arguments): Highlight the function arguments and
2430 all uses of them in the docstring.
2431 (describe-function-1): Use it. Do docstring output via `insert',
2432 not 'princ', so text attributes are preserved.
2433
2434 * winner.el (winner-mode-map): Move `winner-undo' and
2435 `winner-redo' to C-c <left> and C-c <right>, respectively (the
2436 previous bindings conflict with `prev-buffer', `next-buffer').
2437
2438 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2439
2440 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
2441 (bibtex-entry-update): New command bound to C-c C-u.
2442 (bibtex-text-in-string): Fix regexp.
2443 (bibtex-assoc-of-regexp): Remove.
2444 (bibtex-progress-message): Fix docstring.
2445 (bibtex-inside-field): Use if.
2446 (bibtex-assoc-regexp): New function.
2447 (bibtex-format-entry): Make code more robust so that it formats
2448 also old entries.
2449 (bibtex-autokey-demangle-title): Merge with obsolete function
2450 bibtex-assoc-of-regexp.
2451 (bibtex-field-list): New function.
2452 (bibtex-entry): Use bibtex-field-list.
2453 (bibtex-parse-entry): Fix docstring.
2454 (bibtex-print-help-message): Use bibtex-field-list.
2455 (bibtex-make-field): Use bibtex-field-list.
2456 (bibtex-entry-index): Bugfix. Return crossref key if required.
2457 (bibtex-lessp): Fix docstring.
2458
2459 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
2460
2461 * select.el (xselect-convert-to-string): Move comment to intended line.
2462
2463 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2464
2465 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
2466 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
2467
2468 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2469
2470 * term/x-win.el (x-clipboard-yank): Don't exit on error from
2471 x-get-selection.
2472
2473 2004-05-03 Jason Rumney <jasonr@gnu.org>
2474
2475 * makefile.nt: Remove.
2476
2477 2004-05-03 Kim F. Storm <storm@cua.dk>
2478
2479 * emulation/cua-base.el (cua--update-indications): Fix last change.
2480 (cua-mode): Deactivate mark when cua-mode is enabled.
2481
2482 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
2483
2484 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
2485
2486 2004-05-03 Nick Roberts <nickrob@gnu.org>
2487
2488 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
2489 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
2490 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
2491 window over visible frames.
2492 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
2493
2494 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2495
2496 * progmodes/compile.el (compilation-gcpro): New var.
2497 (compilation-fake-loc): Use it.
2498 (compilation-forget-errors): Reset it.
2499
2500 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2501
2502 * diff-mode.el (diff-header-face, diff-file-header-face):
2503 Use min-colors.
2504
2505 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2506
2507 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
2508 (bibtex-clean-entry): Disentangle code.
2509 (bibtex-realign): New function.
2510 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
2511 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
2512 Remove undocumented optional arg called-by-convert-alien.
2513 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
2514 for sorting instead of bibtex-sort-buffer.
2515
2516 2004-05-02 Eli Zaretskii <eliz@gnu.org>
2517
2518 * progmodes/compile.el (compilation-start): In the
2519 no-async-subprocesses branch, call sit-for to give redisplay a
2520 chance to show the updated process status in the mode line, and
2521 fontify the buffer explicitly after the process exits.
2522
2523 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2524
2525 * progmodes/python.el (python-compilation-line-number): Remove.
2526 (python-compilation-regexp-alist): Don't use it any more.
2527 (python-orig-start, python-input-filter): Remove.
2528 (inferior-python-mode): Don't set up comint-input-filter-functions.
2529 (python-send-region): Use compilation-fake-loc.
2530
2531 * progmodes/compile.el (compilation-messages-start): New var.
2532 (compilation-mode): Don't setup next-error-function here.
2533 (compilation-setup): Set it up here instead (for minor modes as well).
2534 Make compilation-messages-start buffer local.
2535 (compilation-next-error-function): Use it.
2536 (compilation-forget-errors): Set compilation-messages-start.
2537
2538 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
2539
2540 * ielm.el (ielm-prompt-read-only): Update docstring.
2541
2542 * comint.el (comint-prompt-read-only): Update docstring.
2543 (comint-update-fence, comint-kill-whole-line)
2544 (comint-kill-region): New functions.
2545
2546 * simple.el (kill-whole-line): Use "p" instead of "P" in
2547 interactive form.
2548
2549 2004-05-01 Juanma Barranquero <lektu@terra.es>
2550
2551 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
2552 format arglist so default values in CL-style argument lists are
2553 correctly shown.
2554
2555 2004-05-01 Jason Rumney <jasonr@gnu.org>
2556
2557 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
2558
2559 2004-05-01 Kenichi Handa <handa@m17n.org>
2560
2561 * international/titdic-cnv.el (miscdic-convert): Don't generate a
2562 quail file if it is up to date.
2563
2564 2004-04-30 Juri Linkov <juri@jurta.org>
2565
2566 * cus-edit.el (custom-mode-map):
2567 Add key binding `C-x C-s' to `Custom-save'.
2568
2569 * outline.el (outline-blank-line): New var.
2570 (outline-next-preface, outline-show-heading)
2571 (outline-end-of-subtree): Use it.
2572
2573 * dired-aux.el (dired-touch-initial): New fun.
2574 (dired-do-chxxx): Call it for op-symbol `touch'.
2575 (dired-diff): Use `dired-dwim-target-directory'
2576 if current dired buffer has no buffer mark.
2577
2578 * bindings.el (propertized-buffer-identification):
2579 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
2580 Add C-M-arrow keys for consistency.
2581
2582 * files.el (confirm-kill-emacs):
2583 Change group from top-level `emacs' to `convenience'.
2584
2585 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2586 Push mark on the first call of successive command calls.
2587 (insert-pair): New fun created from `insert-parentheses' with
2588 `open' and `close' arguments added. Enclose active regions
2589 in paired characters. Compare adjacent characters syntax with
2590 inserted characters syntax before inserting a space.
2591 (insert-parentheses): Call `insert-pair' with ?\( ?\).
2592
2593 * delsel.el: Don't put `delete-selection' property
2594 on `insert-parentheses' symbol to take advantage of
2595 region handling in `insert-pair' function.
2596 Suggested by Stephan Stahl <stahl@eos.franken.de>.
2597
2598 2004-04-30 Kim F. Storm <storm@cua.dk>
2599
2600 * emulation/cua-base.el: Add support for changing cursor types;
2601 based on patch from Michael Mauger.
2602 (cua-normal-cursor-color, cua-read-only-cursor-color)
2603 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
2604 Customization cursor type and/or cursor color.
2605 (cua--update-indications): Handle cursor type changes.
2606 (cua-mode): Update cursor indications if enabled.
2607
2608 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
2609
2610 * mouse.el (mouse-drag-copy-region): New defcustom.
2611 (mouse-set-region, mouse-drag-region-1): Use it.
2612
2613 * simple.el (kill-ring-save): If region face background color is
2614 unspecified (if no highlighting), show extent of fully visible
2615 region even if transient-mark-mode is enabled.
2616
2617 * emulation/cua-base.el (cua--standard-movement-commands):
2618 Add cua-scroll-up and cua-scroll-down.
2619 (cua-scroll-up, cua-scroll-down): New commands.
2620 (cua--init-keymaps): Remap scroll-up and scroll-down.
2621
2622 * emulation/cua-rect.el (cua--convert-rectangle-as):
2623 New defmacro.
2624 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
2625 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
2626 New commands (suggested by Jordan Breeding).
2627
2628 2004-04-30 Juanma Barranquero <lektu@terra.es>
2629
2630 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
2631
2632 2004-04-30 Mario Lang <mlang@delysid.org>
2633
2634 * diff.el (diff-switches): Fix typo in docstring.
2635
2636 2004-04-30 Alex Schroeder <alex@gnu.org>
2637
2638 * xml.el (xml-debug-print-internal): Don't add newline and
2639 indentation to text nodes and write empty elements as empty tags
2640 instead of opening and closing tags.
2641 (xml-debug-print): Take optional indent-string argument.
2642 (xml-print): Alias for xml-debug-print.
2643
2644 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
2645
2646 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
2647 than duplicate call to `line-beginning-position'.
2648
2649 * progmodes/f90.el (f90-get-present-comment-type):
2650 Return whitespace, as well as comment chars, for consistent filling
2651 of comment blocks. Use `match-string-no-properties'.
2652 (f90-break-line): Trim trailing whitespace when filling comments.
2653
2654 2004-04-30 Dave Love <fx@gnu.org>
2655
2656 * calendar/diary-lib.el (diary-outlook-formats): New variable.
2657 (diary-from-outlook-internal, diary-from-outlook)
2658 (diary-from-outlook-gnus, diary-from-outlook-rmail):
2659 New functions to import diary entries from Outlook-format
2660 appointments in mail messages.
2661
2662 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2663
2664 * progmodes/python.el (python-send-command): New fun.
2665 (python-send-region, python-load-file): Use it.
2666
2667 * progmodes/compile.el (compilation-last-buffer): Add var alias.
2668
2669 * help-fns.el (help-C-file-name): Use new subr-name.
2670 Prepend `src/' to the file name.
2671 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
2672 (describe-function-1, describe-variable): Only find a C source file
2673 name if DOC is already loaded.
2674
2675 * help-mode.el (help-function-def, help-variable-def):
2676 Use the new find-function-search-for-symbol functionality.
2677 Allow FILE to be `C-source'.
2678
2679 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
2680 (find-function-C-source): New fun.
2681 (find-function-search-for-symbol): Use it.
2682
2683 2004-03-29 Michael Mauger <mmaug@yahoo.com>
2684
2685 * progmodes/sql.el (sql-product-alist): Rename variable
2686 `sql-product-support'. Add Postgres login parameters.
2687 (sql-set-product, sql-product-feature): Update with renamed variable.
2688 (sql-connect-postgres): Add username prompt.
2689 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
2690 Make patterns less product specific.
2691 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
2692 (sql-mode-abbrev-table): Modify initialization.
2693 (sql-builtin-face): Add variable.
2694 (sql-keywords-re): Add macro.
2695 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
2696 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
2697 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
2698 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
2699 (sql-mode-linter-font-lock-keywords)
2700 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
2701 (sql-mode-sybase-font-lock-keywords)
2702 (sql-mode-informix-font-lock-keywords)
2703 (sql-mode-interbase-font-lock-keywords)
2704 (sql-mode-ingres-font-lock-keywords)
2705 (sql-mode-solid-font-lock-keywords)
2706 (sql-mode-sqlite-font-lock-keywords)
2707 (sql-mode-db2-font-lock-keywords): Default to nil.
2708 (sql-product-font-lock): Always highlight ANSI keywords.
2709 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
2710 (sql-send-string): Add function.
2711
2712 2004-04-29 Dave Love <fx@gnu.org>
2713
2714 * progmodes/cfengine.el (cfengine-beginning-of-defun)
2715 (cfengine-end-of-defun): Ensure progress through buffer.
2716
2717 * info-look.el (cfengine-mode): Accept a terminal ().
2718
2719 2004-04-29 Juri Linkov <juri@jurta.org>
2720
2721 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
2722 instead of isearch-yank-word-or-char. Add new key bindings for
2723 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
2724 (isearch-del-char): New fun.
2725 (isearch-forward, isearch-edit-string): Update docstring.
2726 (isearch-yank-char): Doc fix.
2727 (isearch-other-meta-char): Restore point after scrolling.
2728
2729 * progmodes/compile.el (compilation-context-lines): Add nil option
2730 to disable compilation output window scrolling.
2731 (compilation-set-window): Use it.
2732
2733 * outline.el (outline-next-preface, outline-show-heading):
2734 Don't leave unhidden blank line before heading.
2735 (outline-end-of-subtree): Include last newline into subtree.
2736 (hide-entry): Leave point at beginning of heading instead of end.
2737 (outline-up-heading): Push mark for the first call of successive
2738 command calls.
2739
2740 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
2741
2742 * comint.el (comint-prompt-read-only): New variable.
2743 (comint-output-filter): Implement it.
2744
2745 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
2746 (ielm-prompt-internal): New variable.
2747 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
2748 (ielm-send-input): Delete unused variable `buf'.
2749 (ielm-eval-input): Use `ielm-prompt-internal'.
2750 (inferior-emacs-lisp-mode): Use new variables
2751 `comint-prompt-read-only' and `ielm-prompt-internal'.
2752 Get rid of obsolete variable `directory-sep-char'.
2753 (ielm): Use `zerop'.
2754
2755 2004-04-29 John Paul Wallington <jpw@gnu.org>
2756
2757 * thumbs.el (toplevel): Require cl at compile time.
2758 Remove conditional definitions of `ignore-errors' and `caddar'
2759 because they occur at run time.
2760
2761 2004-04-28 Nick Roberts <nickrob@gnu.org>
2762
2763 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
2764 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
2765 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
2766 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
2767
2768 * progmodes/gud.el (gud-common-init): Throw an error if program is
2769 already running under gdb.
2770
2771 2004-04-28 John Paul Wallington <jpw@gnu.org>
2772
2773 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
2774 (thumbs-show-image-num): Move assignment of
2775 `thumbs-current-image-filename' within scope of `i'.
2776 (thumbs-emboss-image): Don't use `evenp'.
2777
2778 2004-04-28 Richard M. Stallman <rms@gnu.org>
2779
2780 * progmodes/compile.el (compilation-context-lines): Default now 0.
2781
2782 2004-04-28 Juanma Barranquero <lektu@terra.es>
2783
2784 Use `time-less-p' from calendar/time-date.el instead of defining
2785 custom versions of it.
2786
2787 * pcomplete.el (pcomplete-time-less-p): Remove.
2788
2789 * thumbs.el (time-less-p): Remove.
2790
2791 * calendar/timeclock.el (timeclock-time-less-p): Remove.
2792 (timeclock-generate-report): Use `time-less-p'.
2793
2794 * emacs-lisp/autoload.el (autoload-before-p): Remove.
2795 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
2796
2797 2004-04-28 Masatake YAMATO <jet@gyve.org>
2798
2799 * subr.el (remove-overlays): Make arguments optional.
2800
2801 * wid-edit.el (widget-specify-button): Put evaporate to the
2802 overlay for sample.
2803 (widget-specify-sample): Put evaporate to the overlay for sample.
2804 (widget-specify-doc): Put evaporate to the overlay for documentation.
2805
2806 2004-04-27 Jesper Harder <harder@ifa.au.dk>
2807
2808 * info.el (info-apropos): Make it an index node. Align node names
2809 like makeinfo.
2810
2811 2004-04-27 Eli Zaretskii <eliz@gnu.org>
2812
2813 * net/browse-url.el (browse-url-netscape-sentinel)
2814 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
2815 (browse-url-epiphany-sentinel, browse-url-mosaic):
2816 Use browse-url-*-program instead of a literal program name.
2817
2818 2004-04-27 Kevin Ryde <user42@zip.com.au>
2819
2820 * eshell/em-alias.el:
2821 * eshell/em-dirs.el:
2822 * eshell/em-hist.el:
2823 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
2824 features when M-x customize-group loads modules before the main
2825 eshell.el.
2826
2827 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
2828
2829 * subr.el (momentary-string-display): Support EXIT-CHAR that is
2830 either a character representation of an event or an event
2831 description list.
2832
2833 * type-break.el: Capitalise Emacs and Lisp.
2834 (type-break-good-break-interval, type-break-demo-boring-stats)
2835 (type-break-terse-messages, type-break-file-name): New defcustoms.
2836 (type-break-post-command-hook)
2837 (type-break-warning-countdown-string): Quote variable names in doc.
2838 (type-break-interval-start, type-break-auto-save-file-name): New vars.
2839 (type-break-mode): Document type-break-good-break-interval and the
2840 "session" file. Schedule break according to the session file.
2841 Kill session file buffer on exit. Organise for save-some-buffers
2842 to always save the session file.
2843 (type-break-mode-line-message-mode, type-break-query-mode):
2844 Uppercase arguments.
2845 (type-break-file-time, type-break-file-keystroke-count, timep)
2846 (type-break-choose-file, type-break-get-previous-time)
2847 (type-break-get-previous-count): New defuns.
2848 (type-break): Avoid break querying after a completed break in the
2849 case where the query was initiated during user invocation of the
2850 break. Optional terse messages.
2851 Use type-break-good-break-interval if type-break-good-rest-interval is
2852 nil. File the break time.
2853 (type-break-schedule): New optional args for overriding the use of
2854 the current time.
2855 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
2856 after a break.
2857 (type-break-check): File the keystroke count.
2858 (type-break-do-query): Prevent a second query when the break is
2859 interrupted. Optional terse message.
2860 (type-break-keystroke-reset): Record the start of a typing interval.
2861 (type-break-demo-boring): Optional terse messages. Display word
2862 per minute and keystroke counts according to
2863 type-break-demo-boring-stats.
2864
2865 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
2866
2867 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
2868 directories, make sure they exist under archive-tmpdir.
2869
2870 2004-04-27 Juri Linkov <juri@jurta.org>
2871
2872 * help.el (view-emacs-news): With argument, display info for the
2873 selected version by finding it among different NEWS files, and
2874 narrowing the buffer to the selected version.
2875
2876 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
2877 same-window-buffer-names.
2878 (info): New arg `buffer'. Use it. Doc fix. Read file name for
2879 non-numeric prefix argument, append the number to the buffer name
2880 for numeric prefix argument.
2881 (info-other-window): Bind same-window-regexps to nil.
2882 (Info-reference-name): Rename to Info-point-loc.
2883 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
2884 and Info-find-index-name for stringy Info-point-loc.
2885 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
2886 without middle `.', but with final `.' and optional line number
2887 for it. Set Info-point-loc for index nodes.
2888 (Info-index): Remove middle `.' from index entry regexp.
2889 Modify line number regexp.
2890 (Info-index-next): Decrement line number.
2891 (info-apropos): Remove middle `.' from index entry regexp.
2892 Add optional line number regexp at the end. Add matched value
2893 for line number to the result list and insert it to the buffer.
2894 Replace match-string by match-string-no-properties.
2895 Reorder result list.
2896 (Info-fontify-node): Hide index line numbers.
2897 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
2898 empty matches.
2899 (Info-follow-reference): Use `str' instead of
2900 Info-following-node-name-re.
2901 (Info-toc): Use full file names. Set Info-current-node to "Top".
2902 (Info-fontify-node): Compare file names without directory name.
2903 (Info-try-follow-nearest-node): Don't set Info-reference-name.
2904 Set second arg of Info-extract-menu-node-name for index nodes.
2905 (info-xref-visited): Use magenta3 instead of magenta4.
2906 (Info-mode): Add info-apropos to docstring.
2907
2908 * log-view.el (log-view-diff): Replace interactive code "r"
2909 by a list to allow to call it even if region is not active.
2910
2911 * paren.el (show-paren-highlight-openparen): New var.
2912 (show-paren-function): Turn on openparen highlighting when
2913 matching forward if show-paren-highlight-openparen is non-nil.
2914
2915 * simple.el (kill-ring-save): Use blink-matching-delay instead of
2916 the constant value 1.
2917 (completions-common-part): Expand docstring.
2918
2919 * textmodes/picture.el (picture-mode-map): Add arrow keys.
2920
2921 2004-04-27 Kim F. Storm <storm@cua.dk>
2922
2923 * image.el (insert-sliced-image): Use line-height instead of
2924 line-spacing property on newline.
2925
2926 2004-04-26 Lars Hansen <larsh@math.ku.dk>
2927
2928 * desktop.el (desktop-buffer-misc-data-function): Rename to
2929 desktop-save-buffer and change docstring.
2930 (desktop-buffer-modes-to-save): Delete.
2931 (desktop-save-buffer-p): Use desktop-save-buffer instead of
2932 desktop-buffer-modes-to-save.
2933 (desktop-save): Rename desktop-buffer-misc-data-function to
2934 desktop-save-buffer and allow non-function value.
2935 (desktop-missing-file-warning): Correct docstring.
2936
2937 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
2938 to desktop-save-buffer.
2939
2940 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
2941 desktop-save-buffer.
2942
2943 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
2944
2945 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
2946
2947 2004-04-26 Eli Zaretskii <eliz@gnu.org>
2948
2949 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
2950
2951 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
2952
2953 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
2954 (ielm): Only go to the end of the buffer when starting a new process.
2955
2956 2004-04-25 Juanma Barranquero <lektu@terra.es>
2957
2958 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
2959 mode line. Bind `inhibit-read-only' to t before modifying
2960 properties of text in the buffer.
2961 (ielm): Force point to the end of buffer, even when running ielm
2962 from inside itself.
2963
2964 2004-04-25 Jesper Harder <harder@ifa.au.dk>
2965
2966 * info.el (info-apropos): Reset Info-complete-cache.
2967
2968 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
2969
2970 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2971 Also recognize severe Irix et al. messages.
2972 (compilation-normalize-filename, compile-abbreviate-directory):
2973 Delete functions.
2974 (compilation-get-file-structure): New function inherits
2975 functionality of the two preceding ones.
2976 (compilation-internal-error-properties, compilation-fake-loc):
2977 Use it so that different paths to the same file share the same
2978 markers. Also optimize finding adjacent marker slightly.
2979
2980 2004-04-25 Kim F. Storm <storm@cua.dk>
2981
2982 * image.el (insert-sliced-image): Add line-spacing t property
2983 to newlines separating image lines.
2984
2985 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
2986
2987 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
2988
2989 * ielm.el (ielm-prompt-read-only): New user option.
2990 (ielm-prompt): Expand docstring to describe new behavior.
2991 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
2992 mention it in the docstring.
2993
2994 2004-04-24 Andreas Schwab <schwab@suse.de>
2995
2996 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
2997
2998 * diff.el (diff): Set default-directory in diff buffer.
2999
3000 2004-04-24 Eli Zaretskii <eliz@gnu.org>
3001
3002 * mail/sendmail.el (mail-bury): Don't delete the frame where the
3003 mail was being composed if the terminal cannot display more than
3004 one frame; instead, switch to previous frame.
3005
3006 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
3007 (rmail-start-mail): Support rmail-mail-new-frame even on
3008 terminals that can display only one frame at a time.
3009
3010 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3011
3012 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
3013 (checkdoc-output-font-lock-keywords): Remove error regexp.
3014 (checkdoc-output-mode-map): Remove.
3015 (checkdoc-output-mode): Derive from compilation-mode.
3016 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
3017
3018 * dired.el (dired-mode-map): Add a menu entry for wdired.
3019
3020 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
3021 (rx-bracket, rx-check-any, rx-any): Clean up name space.
3022
3023 * wdired.el: (wdired-mode-map): Move init into declaration.
3024 Fix `return' binding.
3025 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
3026 Use force-mode-line-update.
3027 (wdired-get-filename): Use `unless'.
3028 (wdired-preprocess-files): Don't assume names have no \n and use / for
3029 dir separator.
3030 (wdired-normalize-filename): Use replace-regexp-in-string.
3031 (wdired-load-hooks): Remove.
3032 (wdired-mode-hooks): Rename to wdired-mode-hook.
3033
3034 * info-look.el: Add support for cfengine-mode.
3035 (info-lookup-setup-mode): Use dolist.
3036
3037 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
3038
3039 * wdired.el: New file.
3040
3041 2004-04-23 Juanma Barranquero <lektu@terra.es>
3042
3043 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
3044
3045 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
3046 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
3047 (pcomplete--help, pcomplete--here): Doc fixes.
3048
3049 2004-04-23 Andre Spiegel <spiegel@gnu.org>
3050
3051 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
3052 handles wrong-number-of-arguments in backend call.
3053
3054 * vc.el (vc-print-log): Likewise.
3055
3056 2004-04-20 Dave Love <fx@gnu.org>
3057
3058 * emacs-lisp/rx.el: Doc fixes.
3059 (rx-constituents): Add/extend many forms.
3060 (rx-check): Check form is a list.
3061 (bracket): Defvar.
3062 (rx-check-any, rx-any, rx-check-not): Modify.
3063 (rx-not): Simplify.
3064 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
3065 (rx-kleene): Use rx-trans-forms.
3066 (rx-quote-for-set): Delete.
3067 (rx): Allow multiple args.
3068
3069 2004-04-23 Kenichi Handa <handa@m17n.org>
3070
3071 * international/mule-util.el (char-displayable-p): Simplify by
3072 using internal-char-font.
3073
3074 2004-04-23 Juanma Barranquero <lektu@terra.es>
3075
3076 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3077
3078 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * diff-mode.el (diff-next-error): New fun.
3081 (diff-mode): Use it.
3082
3083 * simple.el (next-error): Change arg name.
3084 Add support for the documented C-u C-x ` usage.
3085
3086 * frame.el (special-display-popup-frame, next-multiframe-window)
3087 (previous-multiframe-window): Only consider frames on same display.
3088
3089 2004-04-22 Lars Hansen <larsh@math.ku.dk>
3090
3091 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
3092 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
3093
3094 2004-04-22 Kim F. Storm <storm@cua.dk>
3095
3096 * net/telnet.el (telnet): Add optional port arg.
3097
3098 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3099
3100 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3101 Minor sanity check on the `hyperlink' slot.
3102
3103 * Makefile.in (recompile): Compile new files.
3104
3105 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
3106 Add byte-recompile-directory's optional `arg'.
3107
3108 * cvs-status.el (cvs-tree-use-charset): New var.
3109 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
3110 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
3111 (cvs-status-cvstrees): Use it.
3112
3113 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
3114 Make it a normal major mode.
3115 (checkdoc-buffer-label): Make sure the file name is meaningful.
3116 (checkdoc-output-to-error-buffer): Remove.
3117 (checkdoc-error, checkdoc-start-section): Rewrite.
3118
3119 * info.el (info-node, info-menu-5, info-xref, info-header-node)
3120 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3121 (Info-title-4-face): Use new syntax.
3122 (info-xref-visited): Inherit from info-xref.
3123
3124 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
3125
3126 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
3127
3128 * simple.el (next-error-last-buffer, next-error-function):
3129 New variables for the next-error framework.
3130 (next-error-buffer-p): New function.
3131 (next-error-find-buffer): Generalize compilation-find-buffer.
3132 (next-error, previous-error, first-error, next-error-no-select)
3133 (previous-error-no-select): Move from compile.el.
3134
3135 * replace.el (occur-next-error, occur-1): Hook into the next-error
3136 framework.
3137
3138 * progmodes/compile.el (compilation-start):
3139 Set next-error-last-buffer so next-error knows where to jump.
3140 (compilation-setup): Set the buffer-local variable
3141 next-error-function to 'compilation-next-error-function.
3142 (compilation-buffer-p, compilation-buffer-internal-p): Use an
3143 alternate way to find if a buffer is a compilation buffer, for
3144 next-error convenience.
3145 (next-error-no-select, previous-error-no-select, next-error)
3146 (previous-error, first-error): Move to simple.el.
3147 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
3148 (compilation-last-buffer): Remove.
3149 (compilation-start, compilation-next-error, compilation-setup)
3150 (compilation-next-error-function, compilation-find-buffer):
3151 Remove compilation-last-buffer use.
3152
3153 2004-04-21 Juanma Barranquero <lektu@terra.es>
3154
3155 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
3156 (font-lock-warning-face): Fix spacing.
3157
3158 * makefile.w32-in (WINS): Add url/ directory.
3159
3160 2004-04-21 Lars Hansen <larsh@math.ku.dk>
3161
3162 * desktop.el (desktop-buffer-mode-handlers): New variable.
3163 Alist of major mode specific functions to restore a desktop buffer.
3164 (desktop-buffer-handlers): Make variable obsolete.
3165 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
3166 Catch errors signaled in handlers. Update buffer count.
3167 Evaluate desktop-buffer-point.
3168 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
3169 move to dired.el.
3170 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
3171 move to info.el.
3172 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
3173 move to mail/rmail.el.
3174 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
3175 to mh-e/mh-e.el.
3176 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
3177 On fail, print message (to message buffer) even if
3178 desktop-missing-file-warning is nil.
3179 (desktop-buffer-misc-data-function): New buffer local variable.
3180 Function returning major mode specific data.
3181 (desktop-buffer-misc-functions): Make variable obsolete.
3182 (desktop-save): Use desktop-buffer-misc-data-function.
3183 (desktop-buffer-dired-misc-data): Rename to
3184 dired-desktop-buffer-misc-data and move to dired.el.
3185 (desktop-buffer-info-misc-data): Rename to
3186 Info-desktop-buffer-misc-data and move to info.el.
3187 (desktop-read): Add message about number of buffers restored/failed.
3188
3189 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
3190 Add parameters. Pause to display error only when
3191 desktop-missing-file-warning is non-nil.
3192 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3193 (dired-mode): Bind desktop-buffer-misc-data-function.
3194
3195 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
3196 Add Parameters.
3197 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
3198 (Info-mode): Bind desktop-buffer-misc-data-function.
3199
3200 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
3201 Add Parameters.
3202
3203 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
3204 Add Parameters.
3205
3206 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
3207
3208 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
3209 the case of letters in case-insensitive expansions when the
3210 abbrev is preceded by characters with letter syntax.
3211
3212 2004-04-21 Richard M. Stallman <rms@gnu.org>
3213
3214 * progmodes/cperl-mode.el (cperl-putback-char):
3215 Delete Emacs 18 definition.
3216
3217 * international/mule.el (ctext-post-read-conversion):
3218 Use assoc-string, not assoc-ignore-case.
3219
3220 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
3221
3222 * emacs-lisp/easymenu.el (easy-menu-add):
3223 Do call x-popup-menu, but only if it's defined.
3224
3225 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
3226
3227 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
3228 Handle multiple args: compile like progn.
3229
3230 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
3231 take all args as &rest arg.
3232
3233 * autoinsert.el (auto-insert-alist): Insert the user's name in
3234 copyright notice, rather than Free Software Foundation.
3235
3236 2004-04-21 Kenichi Handa <handa@m17n.org>
3237
3238 * descr-text.el (describe-char): Make it work on *Help* buffer.
3239
3240 2004-04-21 Kim F. Storm <storm@cua.dk>
3241
3242 * image.el (insert-image): Add optional SLICE arg.
3243 (insert-sliced-image): New defun.
3244
3245 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
3246
3247 * subr.el (read-number): Check whether `default' is nil.
3248
3249 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3250
3251 * progmodes/compile.el (compilation-error-properties):
3252 Split into two.
3253 (compilation-internal-error-properties): New one.
3254 (compilation-compat-error-properties): Use it. Fix the non-marker case.
3255
3256 2004-04-20 Richard M. Stallman <rms@gnu.org>
3257
3258 * window.el (split-window-save-restore-data):
3259 Don't update the data if OLD-INFO is nil.
3260
3261 * view.el (view-return-to-alist): Mark it permanent local.
3262
3263 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
3264
3265 * recentf.el (recentf-save-list): Catch and warn about errors.
3266
3267 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
3268 so "Buffers" won't be pure.
3269
3270 * help-mode.el (help-mode-finish): Set help-return-alist first
3271 thing, setting only the entry for the selected window.
3272
3273 * help-fns.el (describe-function-1): If many non-control non-meta
3274 keys run the command, don't list all of them.
3275
3276 2004-04-20 Juanma Barranquero <lektu@terra.es>
3277
3278 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
3279 arg. Copied from Andre Spiegel's patch of 2004-03-21.
3280
3281 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
3282
3283 2004-04-20 Kenichi Handa <handa@m17n.org>
3284
3285 * international/quail.el (quail-lookup-key): New optional arg
3286 NOT-RESET-INDICES.
3287 (quail-get-translations): Call quail-lookup-key with
3288 NOT-RESET-INDICES t.
3289 (quail-completion): Likewise.
3290 (quail-lookup-map-and-concat): Likewise.
3291
3292 2004-04-20 Kenichi Handa <handa@m17n.org>
3293
3294 * international/quail.el (quail-update-translation): Don't insert
3295 such an unsupported multibyte char in a unibyte buffer.
3296
3297 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
3298
3299 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
3300 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
3301 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
3302 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
3303 (gdb-frame-assembler-buffer): Improve behaviour with
3304 multiple frames.
3305 (gdb-display-buffer): Extend search to all visible frames.
3306
3307 2004-04-19 Eli Zaretskii <eliz@gnu.org>
3308
3309 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
3310 characters left after base64 decoding.
3311 (rmail-decode-region): Use -dos variety of `coding', to remove any
3312 ^M characters left after qp or base64 decoding.
3313
3314 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3315
3316 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
3317 messages.
3318
3319 2004-04-19 Stephen Eglen <stephen@gnu.org>
3320
3321 * add-log.el (add-change-log-entry): Update doc string to mention
3322 add-log-full-name and add-log-mailing-address.
3323
3324 2004-04-18 Juri Linkov <juri@jurta.org>
3325
3326 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
3327 (Info-find-node-2): Simplify error message.
3328 (Info-insert-dir): Use Info-following-node-name.
3329 (Info-goto-node): Remove *info-history* and *info-toc*.
3330 (Info-history): Create a node of the virtual history file.
3331 (Info-toc): Create a node of the virtual toc file.
3332 (Info-insert-toc): New arg `curr-file' for reference file names.
3333 (info-apropos): Remove redundant var binding for temp-file.
3334 (Info-index, Info-index-next, Info-mode): Doc fix.
3335 (Info-goto-emacs-command-node): Don't jump to *info* from
3336 non-*info* Info buffers.
3337 (Info-fontify-node): Don't show the file name of external
3338 references if `Info-hide-note-references' is `hide'. Don't hide
3339 newlines at the end of paragraphs.
3340
3341 * international/mule-diag.el (list-input-methods):
3342 Fix args to help-xref-button.
3343
3344 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
3345 to put into effect local variables from TUTORIAL files.
3346
3347 * textmodes/paragraphs.el (sentence-end) <function>: New fun
3348 with default value taken from the variable `sentence-end'.
3349 (sentence-end) <defcustom>: Set default to nil. Doc fix.
3350 Add nil const to :type.
3351 (sentence-end-without-period, sentence-end-double-space)
3352 (sentence-end-without-space): Doc fix.
3353
3354 * textmodes/paragraphs.el (forward-sentence):
3355 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
3356 (fill-delete-newlines):
3357 * progmodes/cc-cmds.el (c-beginning-of-statement):
3358 Use function `sentence-end' instead of variable `sentence-end'.
3359
3360 2004-04-18 Andreas Schwab <schwab@suse.de>
3361
3362 * progmodes/compile.el (compilation-start): Set window start to
3363 point-min if compilation-scroll-output is nil.
3364
3365 2004-04-18 John Wiegley <johnw@newartisans.com>
3366
3367 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
3368
3369 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
3370
3371 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
3372 (gdb-info-breakpoints-custom): Revert previous change.
3373 (gdb-view-assembler): Update assembler if necessary.
3374 (gdb-frame-handler): Parse correctly for gdb-current-frame.
3375 (gdb-display-source-buffer): Update properly when both source and
3376 assembler are visible.
3377
3378 2004-04-17 John Wiegley <johnw@newartisans.com>
3379
3380 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
3381 which limits the number of names shown in the minibuffer. Off by
3382 default.
3383 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
3384 up iswitchb for users with a multitude of open buffers by showing
3385 only the first and last N/2 buffers in the completion list (which
3386 is enough to aid C-s/C-r, and to know that more characters are
3387 needed to refine the completion list).
3388
3389 2004-04-17 Richard M. Stallman <rms@gnu.org>
3390
3391 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
3392 (file-truename): Expand all ~ constructs directly.
3393 (insert-directory): Delete any error msg output by the
3394 `insert-directory-program'.
3395
3396 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
3397 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
3398 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
3399 (allout-init): Use find-file-hook, not find-file-hooks.
3400 (allout-mode): Eliminate Emacs 18 support.
3401 Use write-contents-functions, not local-write-file-hooks.
3402
3403 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
3404
3405 * progmodes/compile.el (compilation-error-properties): Fix for
3406 adding messages when there are already markers for their file.
3407 (compilation-fake-loc): New function.
3408
3409 2004-04-16 Dave Love <fx@gnu.org>
3410
3411 * progmodes/python.el (python-compilation-line-number): Fix braindamage.
3412 (python-load-file): Fix python-orig-start setting.
3413
3414 * progmodes/compile.el: Doc fixes.
3415 (compilation-error-regexp-alist-alist)
3416 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
3417 (compilation-assq): Wrap in eval-when-compile.
3418 (compilation-mode-font-lock-keywords): Don't use list*.
3419 (compilation-start): Avoid warning.
3420 (compilation-compat-error-properties)
3421 (compilation-directory-properties): Add keymap property.
3422 (compilation-parsing-end): Make it a marker for better compatibility.
3423
3424 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
3425
3426 2004-04-16 Mark A. Hershberger <mah@everybody.org>
3427
3428 * xml.el: Doc fixes.
3429 (xml-get-children): Only looks at sub-tags and ignore strings.
3430
3431 * xml.el (xml-parse-tag): Avoid overwriting node-name.
3432
3433 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3434
3435 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
3436
3437 2004-04-16 Andre Spiegel <spiegel@gnu.org>
3438
3439 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
3440
3441 * vc.el (vc-print-log): Likewise.
3442
3443 2004-04-16 Masatake YAMATO <jet@gyve.org>
3444
3445 * simple.el (completion-setup-function): Set an initial value
3446 to `element-common-end' before entering loop. Set a value
3447 to `element-common-end' at the end of loop.
3448 The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
3449 (completions-common-part): Rename from completion-de-emphasis.
3450 (completions-first-difference): Rename from completion-emphasis.
3451 Suggested by RMS.
3452
3453 2004-04-16 Juanma Barranquero <lektu@terra.es>
3454
3455 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
3456 (bookmark-edit-annotation-mode): Add mode name.
3457
3458 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3459
3460 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
3461 for nested conflict markers.
3462 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
3463
3464 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
3465
3466 * progmodes/gdb-ui.el (gdb-goto-info): New function.
3467
3468 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
3469
3470 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3471
3472 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
3473 Give a backtrace if requested.
3474
3475 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
3476
3477 * progmodes/python.el (python-mouse-2-command, python-RET-command):
3478 Remove unused functions.
3479 (python-orig-start-line, python-orig-file): Remove.
3480 (python-orig-start): New var.
3481 (python-input-filter, python-compilation-line-number)
3482 (python-send-region, python-load-file): Use it.
3483
3484 * info.el (info): Always jump to *info*.
3485
3486 * subr.el (posn-set-point): New function.
3487
3488 * mouse.el (mouse-set-point): Use it.
3489
3490 * progmodes/compile.el (compile-goto-error): Use it.
3491 (compilation-button-map): New keymap.
3492 (compilation-error-properties): Use it.
3493 (compilation-shell-minor-mode-map): Don't bind mouse-2.
3494
3495 * smerge-mode.el (smerge-popup-context-menu): Use it.
3496
3497 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
3498 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
3499 mouse and non-mouse case.
3500
3501 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
3502 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
3503
3504 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
3505 Make it work for non-mouse events.
3506
3507 * pcvs-info.el (cvs-status-map): Update binding name.
3508
3509 2004-04-14 Mark A. Hershberger <mah@everybody.org>
3510
3511 * xml.el (xml-maybe-do-ns): New function to handle namespace
3512 parsing of both attribute and element names.
3513 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
3514 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
3515 (xml-parse-tag): Update assumed namespaces. Clean up namespace parsing.
3516 (xml-parse-attlist): Make it do its own namespace parsing.
3517
3518 2004-04-14 Dave Love <fx@gnu.org>
3519
3520 * progmodes/python.el (run-python): Fix use of \n.
3521 (python-load-file): Remove `try' from Python fragment.
3522 (python-describe-symbol): Fix message.
3523
3524 * comint.el: Doc fixes.
3525 (comint-last-input-start, comint-last-input-end)
3526 (comint-last-output-start): Give them values.
3527 (comint-arguments): Avoid warning.
3528 (comint-skip-prompt): Use line-end-position.
3529 (comint-backward-matching-input): Rename arg to agree with doc.
3530 (comint-extract-string): Use syntax-ppss.
3531 (comint-dynamic-simple-complete): Delete useless list construction.
3532 (comint-redirect-subvert-readonly): New.
3533 (comint-redirect-preoutput-filter): Use it.
3534
3535 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
3536 Correctly handle negative arguments when calling hook functions.
3537
3538 2004-04-14 Jesper Harder <harder@ifa.au.dk>
3539
3540 * info.el (info-apropos): Don't clobber Info-history-list.
3541
3542 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
3543
3544 * progmodes/compile.el (compilation-setup):
3545 Localize overlay-arrow-position.
3546 (compilation-sentinel): Restructure code equivalently.
3547 (compilation-next-error): Find message on same line after point if
3548 not found before point.
3549 (compile-mouse-goto-error): Restore function so that compilation
3550 buffer need not be current and use compile-goto-error.
3551 (compile-goto-error): Restore function.
3552 (next-error): Set overlay-arrow-position.
3553 (compilation-forget-errors): Don't localize already local
3554 compilation-locs and remove FIXME about refontifying.
3555
3556 2004-04-14 Kim F. Storm <storm@cua.dk>
3557
3558 * startup.el (emacs-quick-startup): New defvar (set by -Q).
3559 (command-line): New option -Q. Like -q --no-site-file, but
3560 in addition it also disables menu-bar, tool-bar, scroll-bars,
3561 tool-tips, and the blinking cursor.
3562 (command-line-1): Skip startup screen if -Q.
3563 (fancy-splash-head): Use ":align-to center" prop to center splash image.
3564
3565 * emulation/cua-base.el (cua-read-only-cursor-color)
3566 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
3567
3568 2004-04-13 Dave Love <fx@gnu.org>
3569
3570 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
3571 (syntax): Don't require.
3572 (python) <defgroup>: Add :version.
3573 (python-quote-syntax): Re-written.
3574 (inferior-python-mode): Move stuff here from run-python and add
3575 some more.
3576 (python-preoutput-continuation, python-preoutput-result)
3577 (python-dotty-syntax-table): New.
3578 (python-describe-symbol): Use them.
3579 (run-python): Move stuff to inferior-python-mode. Modify code
3580 loaded into Python.
3581 (python-send-region): Use python-proc, python-send-string.
3582 (python-send-string): Send newlines too. Callers changed.
3583 (python-load-file): Re-written.
3584 (python-eldoc-function): New.
3585 (info-look): Don't require.
3586 (python-after-info-look): New. A modified version of former
3587 top-level code for use with eval-after-load.
3588 (python-maybe-jython, python-guess-indent): Use widened buffer.
3589 (python-fill-paragraph): Re-written.
3590 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
3591 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
3592
3593 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3594
3595 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
3596 Set compilation-error-regexp-alist earlier.
3597
3598 * progmodes/compile.el (compilation-minor-mode-map)
3599 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
3600 (compile-goto-error): Re-merge the mouse and non-mouse commands.
3601
3602 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3603
3604 * progmodes/compile.el (compile-goto-error): Select the buffer/window
3605 corresponding to the event.
3606
3607 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
3608
3609 * loadup.el: Add cygwin to system-type list, for unexec() support.
3610
3611 2004-04-12 John Paul Wallington <jpw@gnu.org>
3612
3613 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
3614 (ibuffer-restore-window-config-on-quit): New variable to replace
3615 `ibuffer-delete-window-on-quit'. Update all references.
3616 (ibuffer-prev-window-config): New variable.
3617 (ibuffer-quit): Restore previous window configuration instead of
3618 deleting window.
3619 (ibuffer): Save window configuration before showing Ibuffer buffer.
3620
3621 * help.el (describe-mode): Doc fix.
3622
3623 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3624
3625 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
3626 not to treat nil as a function.
3627
3628 * vc-arch.el (vc-arch-root): Be a bit more careful.
3629 (vc-arch-register): Save the buffer if we modified it.
3630 (vc-arch-delete-rej-if-obsolete): Save excursion.
3631 (vc-arch-find-file-hook): Use the simpler after-save-hook.
3632 (vc-arch-responsible-p, vc-arch-init-version): New functions.
3633
3634 * net/ldap.el (ldap-search): Use list*.
3635
3636 2004-04-12 Juri Linkov <juri@jurta.org>
3637
3638 * info.el (Info-follow-reference): Allow multiline reference name.
3639
3640 2004-04-11 Dave Love <fx@gnu.org>
3641
3642 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
3643
3644 * progmodes/python.el: New file.
3645
3646 2004-04-11 Andre Spiegel <spiegel@gnu.org>
3647
3648 * vc-hooks.el (vc-arg-list): Function removed.
3649 (vc-default-workfile-unchanged-p): Use condition-case to check for
3650 backward compatibility.
3651
3652 * vc.el (vc-print-log): Use condition-case to check for backward
3653 compatibility.
3654
3655 2004-04-11 Juri Linkov <juri@jurta.org>
3656
3657 * dired.el (dired-faces): New defgroup.
3658 (dired-header, dired-mark, dired-marked, dired-flagged)
3659 (dired-warning, dired-directory, dired-symlink, dired-ignored):
3660 New faces.
3661 (dired-header-face, dired-mark-face, dired-marked-face)
3662 (dired-flagged-face, dired-warning-face, dired-directory-face)
3663 (dired-symlink-face, dired-ignored-face): New face variables.
3664 (dired-font-lock-keywords): Use them instead of font-lock faces.
3665 Split the rule for dired marks into 3 separate rules: for marks,
3666 marked file names and flagged file names.
3667
3668 * help-mode.el (help-make-xrefs): Add a final newline to the
3669 *Help* buffer.
3670
3671 2004-04-11 John Paul Wallington <jpw@gnu.org>
3672
3673 * replace.el (occur-engine): Distinguish between one and several
3674 matches in the matches per buffer heading.
3675
3676 2004-04-11 Kim F. Storm <storm@cua.dk>
3677
3678 * ido.el (ido-confirm-unique-completion): New defcustom.
3679 (ido-complete): Use it.
3680 (ido-write-file): Set it to t unconditionally.
3681
3682 2004-04-10 Miles Bader <miles@gnu.org>
3683
3684 RCS keyword removal (only non-comment changes are enumerated here):
3685
3686 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
3687 (byte-compile-insert-header): Don't use `byte-compile-version'.
3688 * forms.el (forms-version): Variable removed.
3689 (forms-mode): Don't use `forms-version'.
3690 * recentf.el (recentf-version): Variable removed.
3691 * progmodes/delphi.el (delphi-version): Variable removed.
3692 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
3693
3694 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
3695
3696 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
3697
3698 2004-04-09 Jesper Harder <harder@ifa.au.dk>
3699
3700 * info.el (info-apropos): Improve menu item regexp.
3701
3702 2004-04-09 Simon Josefsson <jas@extundo.com>
3703
3704 * mail/smtpmail.el: Add comment, based on report by
3705 kdc@rcn.com (Kevin D. Clark).
3706
3707 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
3708
3709 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3710 Redo one more thing that I didn't notice Daniel had undone.
3711
3712 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
3713
3714 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
3715 (gdb-goto-breakpoint, gdb-display-buffer)
3716 (gdb-display-source-buffer, gdb-view-source-function)
3717 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
3718 (gdb-source-info, gdb-frame-handler): Don't specify a window
3719 for display.
3720 (gdb-info-breakpoints-custom): Remove superfluous update of
3721 assembler buffer.
3722 (gdb-many-windows): Make settable outside gdb.
3723
3724 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
3725
3726 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
3727 Derive from fundamental-mode rather than text-mode.
3728
3729 2004-04-08 Juri Linkov <juri@jurta.org>
3730
3731 * info.el (Info-history): Doc fix.
3732 (Info-history-list): New var.
3733 (info-xref): Change magenta4 to blue, remove bold for dark and
3734 light backgrounds, change bold to underline for non-color classes.
3735 (info-xref-visited): New face.
3736 (Info-fontify-visited-nodes): New custom.
3737 (Info-hide-note-references): Add new value `hide'. Doc fix.
3738 (Info-reference-name): New var.
3739 (Info-selection-hook): New custom.
3740 (Info-edit-mode-hook): New var.
3741 (Info-find-file): New fun.
3742 (Info-find-node): Move part of code to Info-find-file.
3743 (Info-find-node-2): Add anchors to Info-history-list. Move point
3744 to the place with the reference name if name is defined.
3745 (Info-select-node): Add current node to Info-history-list.
3746 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
3747 (Info-search-whitespace-regexp): New custom.
3748 (Info-search-case-fold): New var.
3749 (Info-search): Add "case-sensitively" to the prompt.
3750 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
3751 (Info-search-case-sensitively, Info-search-next): New fun.
3752 (Info-up): Move point to the menu item of the current node.
3753 (Info-history): New fun. Add *info-history* to
3754 same-window-buffer-names.
3755 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
3756 (Info-insert-toc): New fun.
3757 (Info-build-toc): New fun.
3758 (Info-follow-reference): Add new arg `fork'. Doc fix.
3759 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
3760 with the same name prefer the reference closest to point.
3761 (Info-next-reference): Replace * by + in the *Note regexp.
3762 Add regexp for http:// and ftp://. Skip the *Note prefix.
3763 (Info-prev-reference): Replace * by + in the *Note regexp.
3764 Add regexp for http:// and ftp://. Skip the *Note prefix.
3765 (Info-follow-nearest-node): Add new arg `fork'.
3766 (Info-try-follow-nearest-node): Add new arg `fork'.
3767 Call browse-url for http:// and ftp:// references.
3768 Set Info-reference-name for index entries.
3769 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
3770 Info-search-next, Info-history, Info-toc, clone-buffer.
3771 (Info-menu-update): Replace * by + in the *Note regexp.
3772 (Info-mode): Add documentation for Info-history, Info-toc,
3773 Info-search-case-sensitively, Info-search-next, clone-buffer.
3774 (Info-fontify-menu-headers): Remove fun. Move code to
3775 Info-fontify-node.
3776 (Info-fontify-node): Add docstring. Add local vars
3777 fontify-visited-p and not-fontified-p. If not-fontified-p is t
3778 then fontify header line, titles, menu headers, http and ftp
3779 references, refill paragraphs. If not-fontified-p is t or
3780 fontify-visited-p is t then fontify cross references, menu items.
3781 Fontify menu headers. Fontify http and ftp references.
3782 Change regexp for cross references to require whitespace after *Note,
3783 add matching groups for file and node names. Remove hack for quote.
3784 Use display property for Info-hide-note-references=t. Use fifth
3785 or fourth match for help-echo. Display visited nodes in a
3786 different face. Unhide file names of external references.
3787 Unhide newlines. Display visited menu items in a different face.
3788
3789 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
3790
3791 * progmodes/compile.el: Require CL.
3792 (compilation-mode-font-lock-keywords): Re-install the "line as
3793 function" patch.
3794
3795 * help-fns.el (help-C-source-directory): New var.
3796 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
3797 (describe-function-1, describe-variable): Use them.
3798
3799 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
3800 to C source files specially.
3801
3802 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
3803
3804 * info.el (Info-hide-cookies-node): New function.
3805 (Info-select-node): Use it.
3806 (Info-display-images-node): Remove message with image file name.
3807
3808 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
3809
3810 * progmodes/compile.el (compilation-warning-face)
3811 (compilation-info-face, compilation-skip-threshold)
3812 (compilation-skip-visited, compilation-context-lines):
3813 Declare :version when added to Emacs.
3814 (compilation-error-regexp-alist-alist): Extend caml and irix.
3815 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
3816 (compilation-mode-font-lock-keywords): Temporarily undo line as
3817 function patch, which wasn't ready.
3818
3819 2004-04-07 Kenichi Handa <handa@m17n.org>
3820
3821 * international/latin1-disp.el (latin1-display-setup): Check each
3822 character is displayable or not instead of calling
3823 latin1-display-check-font.
3824
3825 2004-04-06 Kenichi Handa <handa@m17n.org>
3826
3827 * language/ethio-util.el (ethio-sera-being-called-by-w3):
3828 New variable.
3829 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
3830 instead of sera-being-called-by-w3.
3831 (ethio-fidel-to-sera-buffer): Likewise.
3832 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
3833 instead of sera-being-called-by-w3.
3834 (ethio-write-file): Likewise.
3835
3836 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3837
3838 * printing.el: Doc fix.
3839
3840 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
3841
3842 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
3843 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
3844 (gdb-setup-windows): Only use separate IO buffer if required.
3845
3846 2004-04-06 Kim F. Storm <storm@cua.dk>
3847
3848 * term.el (term-is-xemacs): Remove.
3849 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
3850 (term-window-width): New function.
3851 (term-mode, term-check-size): Use it.
3852 (term-mode): Disable overflow-newline-into-fringe in term buffer.
3853
3854 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
3855
3856 * cus-edit.el (custom-add-parent-links): Change unbound variable
3857 `symbol' to `name'.
3858
3859 2004-04-05 Jesper Harder <harder@ifa.au.dk>
3860 * info.el (info-apropos): New function.
3861 (Info-mode-menu): Add it.
3862 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
3863
3864 * help-mode.el (help-make-xrefs): Recognize aliased variable with
3865 inherited docstring.
3866
3867 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
3868
3869 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3870
3871 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
3872
3873 * progmodes/compile.el (font-lock): Don't require any more.
3874 (compilation-error-properties, compilation-start, compilation-sentinel)
3875 (compilation-filter, next-error): Use with-current-buffer.
3876 (compilation-skip-to-next-location, compilation-skip-threshold)
3877 (compilation-skip-visited): Move to silence the byte-compiler.
3878 (compilation-setup): Simplify.
3879 (compilation-next-error): Use line-(beginning|end)-position.
3880 Make sure `pt' is non-nil before using compilation-loop.
3881 (compile-goto-error): Add optional event arg. Use it.
3882 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
3883 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
3884 Update the binding for mouse-2.
3885 (first-error): Set compilation-current-error to nil rather than bob.
3886 (compilation-parsing-end, compilation-parse-errors-function)
3887 (compilation-error-list, compilation-old-error-list):
3888 "New" compatibility variables.
3889 (compile-buffer-substring, compilation-compat-error-properties)
3890 (compilation-compat-parse-errors, compilation-forget-errors):
3891 New compatibility functions.
3892 (compilation-mode-font-lock-keywords): Use them.
3893
3894 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
3895
3896 * autorevert.el (auto-revert-handler): If point (or a window
3897 point) is at the end of the buffer, keep it there after
3898 reverting. This allows to tail a file.
3899 Mention this in the `Commentary'.
3900
3901 * format.el (format-write-file): Add optional argument CONFIRM
3902 and make it behave like the analogous argument to `write-file'.
3903
3904 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3905
3906 * progmodes/ebnf2ps.el: Doc fix.
3907 (ebnf-version): New version number (4.2).
3908 (ebnf-syntax): Customization and docstring fix.
3909 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
3910 Put autoloaded funs before first use.
3911 (ebnf-style-database): Add dtd entry.
3912 (ebnf-syntax-alist): Add dtd initialization.
3913 (ebnf-token-sequence): New fun.
3914 (ebnf-comment-table): Add new comment action character.
3915 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
3916
3917 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
3918 Type Definition for XML).
3919
3920 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
3921 * progmodes/ebnf-bnf.el (ebnf-sequence):
3922 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
3923 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
3924 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
3925 Code simplification: call ebnf-token-sequence.
3926
3927 2004-04-04 Eli Zaretskii <eliz@gnu.org>
3928
3929 * calendar/timeclock.el (timeclock-relative)
3930 (timeclock-get-project-function, timeclock-get-workday-function)
3931 (timeclock-query-out, timeclock-when-to-leave)
3932 (timeclock-when-to-leave-string, timeclock-log-data)
3933 (timeclock-generate-report, timeclock-in): Doc fixes.
3934
3935 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3936
3937 * url/: New dir. Import the URL package from its repository.
3938
3939 2004-04-03 Andreas Schwab <schwab@suse.de>
3940
3941 * diff-mode.el (diff-mode): Fix missing quote.
3942
3943 2004-04-03 Juri Linkov <juri@jurta.org>
3944
3945 * descr-text.el (describe-property-list): Add `font-lock-face'.
3946
3947 * dired.el (dired-font-lock-keywords): Fix permission regexps.
3948
3949 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3950
3951 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
3952 Use utf-16le on little endian machines and utf-16be otherwise.
3953
3954 2004-04-02 David Kastrup <dak@gnu.org>
3955
3956 * net/browse-url.el (browse-url-generic): Use call-process
3957 instead of start-process to allow browsers that fork and detach.
3958
3959 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
3960
3961 * compile.el (compilation-current-error): New var.
3962 (compilation-setup, compile-mouse-goto-error)
3963 (compile-goto-error, next-error): Use it.
3964 (compilation-skip-to-next-location): Default to t, which gives
3965 contiguous skipping like old compile (where this was redundant).
3966 (compilation-next-error): Prevent previous-* commands from moving
3967 back to message at or just before point.
3968
3969 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
3970
3971 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
3972 (gdb-source-info): Don't display source at startup, if required.
3973 (gdb-show-main): New option.
3974 (gdba): Update documentation.
3975 (gdb-source): Cover case of auto-display output.
3976
3977 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
3978
3979 * autorevert.el: Delete obsolete autoload's and defvar's.
3980 (auto-revert-check-vc-info): New user option.
3981 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
3982 (auto-revert-handler-vc): Delete.
3983 (auto-revert-handler): Treat return value `fast' of
3984 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
3985
3986 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
3987 return `fast'.
3988
3989 * files.el (buffer-stale-function): Doc change.
3990
3991 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3992
3993 * printing.el: New tip on Tips section.
3994 (pr-version): New version number (6.7.4).
3995 (pr-shell-file-name): Initialization fix.
3996
3997 2004-03-31 Juri Linkov <juri@jurta.org>
3998
3999 * dired.el: Add autoload for `dired-do-touch'.
4000 (dired-touch-program): New var.
4001 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
4002 (dired-no-confirm): Add `touch' to docstring.
4003
4004 * dired-aux.el (dired-do-touch): New fun.
4005 (dired-do-chxxx): Add argument -t for touch operation.
4006
4007 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
4008 `dired-move-to-filename-regexp'.
4009
4010 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
4011
4012 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
4013
4014 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4015
4016 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
4017 and only if the buffer was modified.
4018
4019 2004-03-30 Kenichi Handa <handa@m17n.org>
4020
4021 * international/characters.el: Delete pairs for U+2308..U+230B.
4022
4023 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
4024
4025 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
4026 to detect the beginning of a level 2 or 3 annotation.
4027
4028 2004-03-29 Kenichi Handa <handa@m17n.org>
4029
4030 * international/ucs-tables.el (ucs-insert): Fix the error message.
4031
4032 2004-03-29 Kenichi Handa <handa@m17n.org>
4033
4034 * international/mule-util.el (char-displayable-p): Fix generation
4035 of XLFD file name.
4036
4037 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4038 before finding directories by `find'.
4039
4040 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4041
4042 * subr.el (interactive-form): Delete. Now implemented in C.
4043
4044 * pcvs.el (cvs-parse-process): Workaround for Darwin.
4045
4046 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
4047 (vc-diff-label): New fun.
4048 (vc-diff-internal): Use it.
4049
4050 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
4051
4052 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4053
4054 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
4055
4056 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
4057 specify XML (EBNFX).
4058
4059 * progmodes/ebnf2ps.el: Doc fix.
4060 (ebnf-version): New version number (4.1).
4061 (ebnf-syntax): Adjust customization.
4062 (ebnf-style-database): Add ebnfx entry.
4063 (ebnf-syntax-alist): Add ebnfx initialization.
4064 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
4065
4066 * printing.el: Doc fix.
4067 (pr-version): New version number (6.7.3).
4068 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
4069 returns nil for mouse position. Reported by Drew Adams
4070 <drew.adams@oracle.com>.
4071 (pr-update-menus): Modify interactive declaration. Reported by Drew
4072 Adams <drew.adams@oracle.com>.
4073
4074 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
4075
4076 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
4077 (gud-gdba-marker-filter): Log the process input and output, if
4078 required. From Stefan Monnier.
4079 (gdb-debug-log, gdb-enable-debug-log): New variables.
4080 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
4081
4082 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4083
4084 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
4085 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
4086
4087 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
4088
4089 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
4090 Call vc-find-file-hook here instead of in auto-revert-buffers.
4091 (auto-revert-buffers): Delete call to vc-find-file-hook.
4092 (auto-revert-verbose, global-auto-revert-non-file-buffers)
4093 (global-auto-revert-mode, auto-revert-set-timer)
4094 (auto-revert-handler, auto-revert-buffers): Doc fixes.
4095
4096 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4097
4098 * woman.el (woman-change-fonts): Rename local variable
4099 woman-font-alist to font-alist to avoid a compiler warning.
4100
4101 2004-03-27 Dave Love <fx@gnu.org>
4102
4103 * emacs-lisp/rx.el (rx): Doc fix.
4104 Fix copyright years.
4105
4106 * strokes.el (strokes-global-set-stroke-string): New function.
4107 (strokes-list-strokes): Cope with strings, not just commands.
4108 Set foreground colour of image.
4109 (strokes-global-set-stroke): Doc fix.
4110
4111 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
4112
4113 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
4114 Auto Revert mode.
4115 (Buffer-menu-files-only): New variable.
4116 (Buffer-menu-toggle-files-only): New function.
4117 (Buffer-menu-mode-map): Bind it to `T'.
4118 (Buffer-menu-mode): Mention `T' in docstring.
4119 Set buffer-stale-function.
4120 (list-buffers-noselect): Mark buffer non-modified and set
4121 Buffer-menu-files-only.
4122
4123 * dired.el (buffer-stale-function): Remove no longer needed defvar.
4124
4125 * autorevert.el (auto-revert-handler): Print revert message
4126 before, rather than after, reverting.
4127 (buffer-stale-function): Move to files.el.
4128
4129 * files.el (buffer-stale-function): Move here from autorevert.el.
4130
4131 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4132
4133 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
4134
4135 * calc/calc.el (calc-mode-map): Use mapc.
4136
4137 * apropos.el (apropos-mode): Don't autoload.
4138 (apropos-symbols-internal): New fun. Extracted from `apropos'.
4139 (apropos): Use it.
4140 (apropos-print): Add optional `text' argument.
4141 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
4142 Don't assume point-min == 1.
4143
4144 * bs.el (bs-buffer-list): Use buffer-local-value.
4145 (bs--set-toggle-to-show): Use with-current-buffer.
4146
4147 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
4148 New funs.
4149 (list-buffers-noselect): Use them. Adjust :align-to to new style.
4150
4151 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
4152
4153 * dabbrev.el (dabbrev-expand): Fix regexp construction.
4154 (dabbrev--find-expansion): Use pop.
4155 (dabbrev--search): Use match-string-no-properties.
4156
4157 * dired.el (dired-mode): Use run-mode-hooks.
4158 (dired-move-to-end-of-filename): Use match-string.
4159
4160 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
4161 is bound before using it.
4162 (ediff-verbose-p): Make it into a var since it's not constant.
4163
4164 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
4165
4166 * faces.el (read-face-font): Don't cons up unnecessarily.
4167 (header-line, tool-bar): Share common parts.
4168
4169 * files.el (file-relative-name): Use compare-strings.
4170
4171 * finder.el (finder-mode): Follow coding convention.
4172
4173 * subr.el (read-number): New function.
4174
4175 * ses.el (ses-read-number): Move to subr.el.
4176 (ses-set-header-row): Use read-number.
4177
4178 2004-03-26 Andre Spiegel <spiegel@gnu.org>
4179
4180 * vc-hooks.el (vc-arg-list): New function, which handles both
4181 compiled and uncompiled code.
4182 (vc-default-workfile-unchanged-p): Use it.
4183
4184 * vc.el (vc-print-log): Undo prev change, use new function
4185 vc-arg-list from vc-hooks.el.
4186
4187 2004-03-26 Masatake YAMATO <jet@gyve.org>
4188
4189 * simple.el (completion-setup-function): Emphasize the
4190 first uncommon characters in the completions; and de-emphasize
4191 the common prefix substrings.
4192 (completion-emphasis): New face.
4193 (completion-de-emphasis): New face.
4194
4195 2004-03-25 Juanma Barranquero <lektu@terra.es>
4196
4197 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
4198 Comment out (it's unused and unfinished code).
4199
4200 2004-03-25 Sam Steingold <sds@gnu.org>
4201
4202 * vc.el (vc-print-log): Fix a bug in the last patch:
4203 backend-function may be a byte-compiled object, not a lambda.
4204
4205 2004-03-25 Juri Linkov <juri@jurta.org>
4206
4207 * descr-text.el (describe-property-list): Add a button
4208 for `face' property that calls `describe-face'.
4209 Suggested by luis fernandes <elf@ee.ryerson.ca>
4210
4211 * international/mule.el (keyboard-coding-system):
4212 * kmacro.el (kmacro-call-macro): Fix docstring.
4213
4214 * dired.el: Fix comments.
4215
4216 * textmodes/fill.el (fill): Fix Info link.
4217
4218 * font-lock.el (fast-lock, lazy-lock):
4219 * jit-lock.el (jit-lock): Remove links to removed Support Modes
4220 Info node.
4221
4222 * eshell/eshell.el (eshell): Fix broken info-link.
4223
4224 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
4225 * eshell/em-banner.el (eshell-banner):
4226 * eshell/em-smart.el (eshell-smart):
4227 * eshell/esh-cmd.el (eshell-cmd):
4228 Comment out broken info-links to incomplete Info manual.
4229
4230 * info-xref.el: Fix commentary.
4231
4232 2004-03-25 Kevin Ryde <user42@zip.com.au>
4233
4234 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
4235 Remove spurious node duplicate suppression, doesn't work, not wanted.
4236 (info-xref-output): Take format style args, add "sit-for 0" to let
4237 user see the results as they progress.
4238 (info-xref-check-all-custom): New function.
4239
4240 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
4241
4242 * gdb-ui.el: Moved to progmodes.
4243
4244 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
4245
4246 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
4247
4248 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
4249
4250 * calendar/appt.el (appt-check): Remove superfluous progn.
4251 When finished with diary buffer: if it was not being displayed
4252 before, kill it; otherwise restore its original state.
4253 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
4254
4255 * calendar/calendar.el (calendar-set-mode-line): Use total
4256 available mode-line width, rather than frame-width.
4257
4258 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
4259 after mode change so effect not lost.
4260
4261 2004-03-23 Dave Love <fx@gnu.org>
4262
4263 * dired.el (dired) <defgroup>: Add link to manual.
4264 (dired-font-lock-keywords): Add highlighting on unusual permissions.
4265 (dired-revert): Use dolist.
4266 (dired-mode-map): Add U binding.
4267 (dired-mode): Add font-lock-beginning-of-syntax-function.
4268 (dired-garbage-files-regexp): Make it a defcustom.
4269
4270 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4271
4272 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
4273 is equivalent to nil.
4274 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
4275 (vc-arch-mode-line-string): Accept `added' state.
4276 (vc-arch-state): Use inode-sigs if available.
4277 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
4278 Copy&delete existing id file if any. Fallback if uuidgen is absent.
4279 (vc-arch-tagline-re): New var.
4280 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
4281 New functions.
4282 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
4283 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
4284
4285 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
4286 (vc-file-not-found-hook): Use it.
4287
4288 * diff-mode.el (diff-default-read-only): Change default.
4289 (diff-mode-hook): Make it a defcustom. Add some options.
4290 (diff-mode-map): Bind diff-refine-hook.
4291 (diff-yank-handler): New var.
4292 (diff-yank-function): New fun.
4293 (diff-font-lock-keywords): Use them.
4294 (diff-end-of-file): Handle case where file-header looks like diff text.
4295 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
4296 (diff-file-kill): Delete a subsequent empty line, if applicable.
4297 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
4298 (diff-find-file-name): Use it.
4299 (diff-tell-file-name): New command.
4300 (diff-mode): Be careful with view-mode.
4301 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
4302 New functions, for use in diff-mode-hook.
4303 (diff-find-source-location): Catch "regex too large" errors.
4304 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
4305 (diff-refine-hunk): New command.
4306
4307 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
4308 (smerge-context-menu-map): Remove unused var.
4309 (smerge-keep-all): Preserve markers.
4310 (smerge-keep-n): New fun.
4311 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4312 (smerge-keep-current, smerge-ediff): Use it.
4313 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
4314 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
4315 (smerge-resolve): Resolve trivial 3-part conflicts.
4316
4317 2004-03-23 Juri Linkov <juri@jurta.org>
4318
4319 * man.el (Man-width): New var.
4320 (Man-getpage-in-background): Use it.
4321 (Man-support-local-filenames): New var and fun.
4322 (Man-build-man-command): Don't add a second %s.
4323 (Man-fontify-manpage): Clean up message.
4324 (Man-mode): Set outline-regexp, outline-level,
4325 imenu-generic-expression.
4326
4327 * woman.el (woman-fill-frame): Doc fix.
4328 (woman-decode-region): Use window-width instead of frame-width.
4329
4330 * abbrevlist.el (list-one-abbrev-table):
4331 * descr-text.el (describe-char):
4332 * international/mule-diag.el (describe-current-coding-system):
4333 * international/quail.el (quail-insert-decode-map):
4334 Use window-width instead of frame-width.
4335
4336 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
4337 (jka-compr-mode-alist-additions): Add tbz.
4338 (jka-compr-write-region, jka-compr-insert-file-contents):
4339 Add message for undefined compress-program.
4340 (jka-compr-write-region): Remove redundant var bindings.
4341
4342 * dired-x.el (dired-guess-shell-alist-default): Add choices for
4343 extracting files into subdirectory. Add tbz and dz. Fix regexps.
4344 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
4345 (dired-man): Use dired-guess-shell-command.
4346 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
4347 Change default nil to t.
4348
4349 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
4350 (dired-compare-directories): Add default value for empty input.
4351
4352 * help-at-pt.el: Move suggestions for key bindings to Commentary.
4353
4354 * time.el (display-time-string-forms): Fix help-echo date format.
4355
4356 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
4357
4358 * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
4359 (buffer-stale-function): New variable.
4360 (auto-revert-list-diff, auto-revert-dired-file-list)
4361 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
4362 (auto-revert-handler): Take over some functionality of deleted
4363 functions.
4364 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
4365
4366 * dired.el (dired-directory-changed-p): New fun, extracted from
4367 dired-internal-noselect.
4368 (dired-buffer-stale-p): New fun.
4369 (dired-internal-noselect): Use dired-directory-changed-p.
4370 Eliminate revert messages.
4371 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
4372
4373 2004-03-23 Kenichi Handa <handa@m17n.org>
4374
4375 * international/characters.el: Setup syntaxes for more parentheses
4376 Unicode characters.
4377
4378 * international/mule-cmds.el (select-safe-coding-system):
4379 Merge coding-system and auto-cs before comparing them.
4380
4381 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
4382
4383 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
4384
4385 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4386 normal-auto-fill-function and comment-indent-function.
4387 The default values now work just as well.
4388 Don't set font-lock-beginning-of-syntax-function since we already set
4389 syntax-begin-function.
4390 (lisp-outline-level): Put ;;;###autoload at same level as (.
4391 (prin1-char): Quote special chars.
4392
4393 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
4394 than with-no-warnings.
4395
4396 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
4397 if the source location can't be found.
4398 (edebug-compute-previous-result): Use prin1-char.
4399
4400 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
4401 (debug-ignored-errors): Add an entry.
4402
4403 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
4404 (byte-compile-file): Output warning when deleting a file.
4405
4406 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
4407 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
4408
4409 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
4410 (byte-compile-inline-expand): Use backquote.
4411 (byte-optimize-pure-func): Rename from byte-optimize-concat.
4412 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
4413
4414 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
4415
4416 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
4417
4418 2004-03-22 Juri Linkov <juri@jurta.org>
4419
4420 * finder.el (finder-known-keywords): Fix data, tex, unix.
4421
4422 * play/landmark.el: Fix keywords.
4423
4424 * language/ethio-util.el (ethio-find-file): Doc fix.
4425
4426 * emacs-lisp/warnings.el: Doc fix.
4427
4428 * textmodes/ispell.el (ispell-help): Doc fix.
4429
4430 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
4431
4432 * format.el (format-insert-file): Always return a list of two
4433 elements, like insert-file-contents does.
4434
4435 2004-03-21 Andre Spiegel <spiegel@gnu.org>
4436
4437 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
4438 and vc-BACKEND-diff.
4439 (vc-print-log): If the print-log implementation supports it, use
4440 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
4441 (vc-version-diff, vc-diff-internal): Doc fixes.
4442
4443 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
4444 implementation supports it, let diff output go to *vc*,
4445 not *vc-diff*, since this is an internal call.
4446
4447 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
4448
4449 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
4450
4451 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
4452
4453 2004-03-21 Dave Love <fx@gnu.org>
4454
4455 * progmodes/cfengine.el (cfengine-mode):
4456 Set parse-sexp-ignore-comments.
4457
4458 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
4459
4460 2004-03-21 Juanma Barranquero <lektu@terra.es>
4461
4462 * allout.el (allout-mode): Fix docstring.
4463
4464 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
4465
4466 * files.el (insert-directory): Fix bug if SWITCHES is a list.
4467
4468 * autorevert.el (auto-revert-interval): Make new value take
4469 effect immediately when set through Custom.
4470 (auto-revert-set-timer): Add interactive declaration.
4471
4472 2004-03-19 David Ponce <david@dponce.com>
4473
4474 * ruler-mode.el (ruler-mode-header-line-format-old):
4475 Don't `make-variable-buffer-local'.
4476 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
4477 (ruler-mode-header-line-format): Simply funcall the above.
4478 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
4479 to save/restore a previous header line format.
4480 (ruler-mode-space): Don't depend on a numeric WIDTH value.
4481 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
4482 fringes and margins width.
4483 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
4484
4485 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
4486
4487 * log-edit.el (log-edit-font-lock-keywords): Typo.
4488
4489 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
4490 (tex-send-tex-command): Rather than here.
4491 (tex-compilation-parse-errors): Simplify.
4492
4493 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
4494
4495 * time.el (display-time-string-forms): Add help-echo with date on time.
4496
4497 * composite.el (compose-region): Use restore-buffer-modified-p.
4498
4499 * disp-table.el (standard-display-8bit): Simplify.
4500
4501 * server.el (server-process-filter): Delete temp frame.
4502
4503 * add-log.el (add-change-log-entry): Simplify.
4504
4505 2004-03-19 Kim F. Storm <storm@cua.dk>
4506
4507 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
4508 (hexl-follow-line): Don't require 'fringe.
4509
4510 * progmodes/compile.el (compilation-start): Always set
4511 compilation-last-buffer and return it.
4512
4513 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
4514
4515 * simple.el (clone-buffer): Doc fix.
4516
4517 2004-03-18 Juanma Barranquero <lektu@terra.es>
4518
4519 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
4520
4521 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4522
4523 * log-edit.el (log-edit-font-lock-keywords): New var.
4524 (log-edit-mode): Use it.
4525
4526 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
4527
4528 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
4529 properly for watching in speedbar.
4530
4531 2004-03-17 Masatake YAMATO <jet@gyve.org>
4532
4533 * smerge-mode.el (smerge-popup-context-menu):
4534 Put `unwind-protect' around `overlay-put' and `popup-menu'.
4535
4536 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
4539 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
4540 Take sealed revisions into account.
4541 (vc-arch-checkin): Extract a summary line from the message.
4542
4543 2004-03-16 Masatake YAMATO <jet@gyve.org>
4544
4545 * register.el (register): Provide `register' feature.
4546
4547 2004-03-15 Masatake YAMATO <jet@gyve.org>
4548
4549 Added context menu support in smerge mode.
4550 Most of the part is written by Stefan Monnier.
4551
4552 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
4553 New keymap and menu.
4554 (smerge-text-properties): New function.
4555 (smerge-remove-props): New function.
4556 (smerge-popup-context-menu): New function.
4557 (smerge-resolve): Call `smerge-remove-props'.
4558 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
4559 (smerge-keep-current): Ditto.
4560 (smerge-kill-current): New function.
4561 (smerge-match-conflict): Put text properties.
4562 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
4563
4564 2004-03-15 David Ponce <david@dponce.com>
4565
4566 * ruler-mode.el: (ruler-mode-left-fringe-cols)
4567 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
4568 (ruler-mode-right-scroll-bar-cols): Remove.
4569 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
4570 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
4571 Use fringe-columns and scroll-bar-columns.
4572
4573 2004-03-15 Masatake YAMATO <jet@gyve.org>
4574
4575 * hl-line.el (hl-line-range-function): New variable.
4576 (hl-line-move): New function.
4577 (global-hl-line-highlight): Use `hl-line-move'.
4578 (hl-line-highlight): Ditto.
4579
4580 * scroll-bar.el (scroll-bar-columns):
4581 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
4582
4583 * ruler-mode.el (top-level): Require scroll-bar and fringe.
4584 (ruler-mode-left-fringe-cols)
4585 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
4586 (ruler-mode-right-scroll-bar-cols)
4587 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
4588 (ruler-mode-ruler-function): New variable.
4589 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
4590 if the value for `ruler-mode-ruler-function'is given.
4591
4592 * hexl.el (hexl-mode-hook): Make the hook customizable.
4593 (hexl-address-area, hexl-ascii-area): New customize variables.
4594 (hexlify-buffer): Put font-lock-faces on the address area and
4595 the ascii area.
4596 (hexl-activate-ruler): New function.
4597 (hexl-follow-line): New function.
4598 (hexl-highlight-line-range): New function.
4599 (hexl-mode-ruler): New function.
4600
4601 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
4602
4603 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
4604 (vc-default-find-file-hook): New fun.
4605 (vc-find-file-hook): Call new find-file-hook operation.
4606
4607 * vc-arch.el: New file.
4608
4609 2004-03-12 Jesper Harder <harder@ifa.au.dk>
4610
4611 * info-look.el (info-lookup): Reuse an existing Info window.
4612
4613 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4614
4615 * woman.el (woman-preserve-ascii): Default value changed to t and
4616 doc string revised.
4617
4618 2004-03-12 Richard M. Stallman <rms@gnu.org>
4619
4620 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
4621 Fix minor bug.
4622
4623 * replace.el (occur-engine): Change message for count of matches.
4624
4625 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
4626 For strings, do compare text properties.
4627
4628 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
4629
4630 * progmodes/compile.el (compile-auto-highlight)
4631 (compilation-error-list, compilation-old-error-list)
4632 (compilation-parse-errors-function, compilation-parsing-end)
4633 (compilation-error-message, compilation-directory-stack)
4634 (compilation-enter-directory-regexp-alist)
4635 (compilation-leave-directory-regexp-alist)
4636 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
4637 (compilation-current-file, compilation-regexps): Remove vars.
4638
4639 (compile-error-at-point, compilation-error-filedata)
4640 (compilation-error-filedata-file-name, compile-reinitialize-errors)
4641 (compilation-next-error-locus, compilation-forget-errors)
4642 (count-regexp-groupings, compilation-parse-errors)
4643 (compile-collect-regexps, compile-buffer-substring): Remove funs.
4644
4645 (compile-internal): Make obsolete.
4646
4647 (compilation-first-column, compilation-error)
4648 (compilation-directory-matcher, compilation-page-delimiter)
4649 (compilation-mode-font-lock-keywords, compilation-debug)
4650 (compilation-error-face, compilation-warning-face)
4651 (compilation-info-face, compilation-line-face)
4652 (compilation-column-face, compilation-enter-directory-face)
4653 (compilation-leave-directory-face, compilation-skip-threshold)
4654 (compilation-skip-visited, compilation-context-lines): New vars.
4655
4656 (compilation-warning-face, compilation-info-face)
4657 (compilation-message-face): New faces.
4658
4659 (compilation-error-regexp-alist-alist): New constant.
4660
4661 (compilation-face, compilation-directory-properties)
4662 (compilation-assq, compilation-error-properties, compilation-start)
4663 (define-compilation-mode, compilation-loop)
4664 (compilation-set-window): New functions.
4665
4666 (compile): Additional argument for interactive compiles like TeX.
4667
4668 * progmodes/grep.el (kill-grep): Move here from compile.el
4669 (grep-error, grep-hit-face, grep-error-face)
4670 (grep-mode-font-lock-keywords): New variables.
4671 (grep-regexp-alist): Simplify regexp and add `binary' case.
4672 (grep-mode): New mode.
4673 (grep-process-setup): Simplify.
4674
4675 2004-03-11 Jason Rumney <jasonr@gnu.org>
4676
4677 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
4678 letters on DOS/Windows.
4679
4680 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
4681
4682 * server.el (server-name): New var.
4683 (server-socket-dir): New var to replace server-socket-name.
4684 (server-start): Use them.
4685
4686 2004-03-11 Simon Josefsson <jas@extundo.com>
4687
4688 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
4689 died to avoid infloop. Reported by Jonathan Glauner
4690 <jglauner@sbum.org>.
4691
4692 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
4693
4694 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
4695 (smerge-mode-menu): Use it to deactivate menu entries.
4696 (smerge-keep-current): New fun.
4697 (smerge-keep-current): Use it.
4698
4699 2004-03-10 John Paul Wallington <jpw@gnu.org>
4700
4701 * foldout.el (foldout-fold-list, foldout-modeline-string):
4702 Declare them as variables, not constants.
4703
4704 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4705
4706 * ps-print.el: Modification to print *Messages* buffer.
4707 (ps-print-version): New version 6.6.4.
4708 (ps-message-log-max): New fun.
4709 (ps-spool-without-faces, ps-spool-with-faces)
4710 (ps-count-lines-preprint): Code fix.
4711
4712 * printing.el: New tips in Tips section.
4713
4714 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4715
4716 * delim-col.el: Doc fix.
4717
4718 * printing.el: Doc fix. New doc section (Tips).
4719
4720 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
4721
4722 * type-break.el (type-break-emacs-variant): Remove.
4723 (type-break-run-at-time, type-break-cancel-function-timers):
4724 Use fboundp rather than version name and number.
4725
4726 2004-03-09 Masatake YAMATO <jet@gyve.org>
4727
4728 * hexl.el (hexl-mode): Use `make-local-variable' instead of
4729 `make-variable-buffer-local'.
4730
4731 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
4732
4733 * find-dired.el (find-dired): Call `shell-command' instead of
4734 `start-process-shell-command'. By this, Tramp takes over
4735 handling of remote directories.
4736
4737 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
4738
4739 * newcomment.el (comment-use-global-state): New var.
4740 (comment-search-forward): Use it.
4741
4742 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
4743
4744 * cus-edit.el (fill) <defgroup>: Move to fill.el.
4745
4746 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
4747 (enable-kinsoku): Make it a defcustom.
4748 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
4749 paragraph to same-comment-start-marker.
4750
4751 2004-03-07 Dave Love <fx@gnu.org>
4752
4753 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
4754 (browse-url-mail): Use it.
4755
4756 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
4757 (rfc2368-unhexify-string): Use replace-regexp-in-string.
4758
4759 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
4760
4761 * woman.el (woman-man.conf-path): Doc fix.
4762 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
4763
4764 2004-03-07 Eli Zaretskii <eliz@gnu.org>
4765
4766 * sort.el (sort-columns): Remove ms-dos from the list of systems
4767 where the external `sort' command is not used.
4768
4769 2004-03-07 Kim F. Storm <storm@cua.dk>
4770
4771 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
4772 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
4773 from overlay-arrow-variable-list.
4774 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
4775
4776 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
4777
4778 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
4779 overlay arrow string properly for the assembler buffer.
4780
4781 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
4782
4783 * mail/sendmail.el (mail-mode): Fix last change.
4784
4785 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
4786
4787 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
4788 for the assembler buffer.
4789 (gdb-assembler-custom): Position the overlay arrow.
4790 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
4791
4792 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
4793
4794 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
4795
4796 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
4797 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
4798
4799 * mail/sendmail.el (mail-mode): Set comment-start-skip.
4800
4801 * newcomment.el (uncomment-region): Allow non-terminated comment.
4802 (comment-normalize-vars): Check the user-specified comstart marker.
4803
4804 2004-03-04 Jesper Harder <harder@ifa.au.dk>
4805
4806 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
4807 Otherwise, do use it if the region only contains font-lock text
4808 properties.
4809
4810 2004-03-04 Masatake YAMATO <jet@gyve.org>
4811
4812 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
4813 as the callback function for eldoc.
4814 (hexl-print-current-point-info): New function.
4815 (hexl-current-address): Print the address in both decimal
4816 and hexadecimal format.
4817
4818 2004-03-04 Richard M. Stallman <rms@gnu.org>
4819
4820 * mail/rmail.el (rmail-convert-to-babyl-format):
4821 Specify t for UNIBYTE when calling mail-unquote-printable-region.
4822
4823 * mail/mail-utils.el (mail-unquote-printable-region):
4824 New arg UNIBYTE.
4825
4826 * startup.el (command-switch-alist): Doc fix.
4827
4828 * simple.el (undo): Temporarily set this-command to `undo-start',
4829 then set it to `undo' once undo-start returns without error.
4830
4831 * simple.el (minibuffer-history-sexp-flag): Doc fix.
4832
4833 * simple.el (kill-line): Don't disregard trailing whitespace
4834 in eol condition, if show-trailing-whitespace is set.
4835
4836 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
4837 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
4838 When disabling, restore old values only if mouse-sel-has-been-enabled.
4839
4840 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
4841 (isearch-{-char): New function.
4842 (isearch-mode-map): Bind { to isearch-{-char.
4843
4844 * font-lock.el (lisp-font-lock-keywords-2):
4845 Turn off the CL with-... and do-... general patterns.
4846 Instead, recognize several specific with... and do... constructs.
4847
4848 * files.el (switch-to-buffer-other-window):
4849 Bind same-window-buffer-names and same-window-regexps to nil.
4850 (switch-to-buffer-other-frame): Likewise.
4851
4852 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
4853
4854 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
4855 recognizing leading comment on code line.
4856
4857 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
4858
4859 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
4860 hidden files/directories.
4861
4862 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
4863
4864 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
4865 only comment-start (in case the mode hasn't set it).
4866
4867 * Makefile.in (AUTOGENEL): New var.
4868 (bootstrap-prepare): Rename from bootstrap-clean.
4869 Don't remove elc files.
4870 (maintainer-clean): New target.
4871
4872 * xml.el (xml-get-attribute-or-nil): Simplify.
4873
4874 2004-03-02 Juri Linkov <juri@jurta.org>
4875
4876 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
4877 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
4878 URL to prevent their substitution with the environment variable
4879 values by browsers.
4880
4881 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4882
4883 * ps-print.el: Doc fix.
4884 (ps-print-version): New version number (6.6.3).
4885 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
4886 Docstring fix.
4887 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
4888 before printing.
4889 (ps-time-stamp-yyyy-mm-dd): New fun.
4890 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
4891
4892 2004-03-02 Kim F. Storm <storm@cua.dk>
4893
4894 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
4895
4896 2004-03-01 Juanma Barranquero <lektu@terra.es>
4897
4898 * allout.el (allout-rebullet-heading): Fix typo in docstring.
4899
4900 * desktop.el (desktop-file-version)
4901 (desktop-after-read-hook): Fix typos.
4902 (desktop-clear-preserve-buffers): Remove redundant info in
4903 docstring already shown by the obsolescence message.
4904 (desktop-truncate, desktop-internal-v2s)
4905 (desktop-value-to-string): Change argument name to match docstring.
4906
4907 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
4908
4909 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
4910 docstring.
4911
4912 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4913
4914 * printing.el: Replace "As Is..." in PostScript file print/preview by
4915 "No Preprocessing...". Suggested by Colin Marquardt
4916 <_marquardt_@zmd.de>.
4917 (pr-insert-section-4): Adjust buffer interface.
4918
4919 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
4920
4921 Version 2.0.39 of Tramp released.
4922
4923 * net/tramp.el (tramp-handle-file-local-copy)
4924 (tramp-handle-write-region, tramp-open-connection-rsh):
4925 Variable name typo. Small change. From Patrick Tullmann
4926 <tullmann@flux.utah.edu>.
4927 (tramp-process-connection-type): New variable.
4928 (tramp-maybe-open-connection): Use it.
4929 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
4930 (tramp-touch): Set last-modified time of a remote file.
4931 (tramp-handle-write-region): Say which function is used when encoding.
4932
4933 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
4934
4935 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
4936 case of non-existing filename, too. Reported by Christoph Bauer
4937 <c_bauer@informatik.uni-kl.de>.
4938 (tramp-smb-get-file-entries): The directory in question should
4939 have permissions "drwxrwxrwx". Just virtual, because we don't
4940 know the real permissions. Don't we know?
4941 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
4942 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
4943 (tramp-smb-wait-for-output): Optimize algorithm getting pending
4944 output. If it was received chunkwise, there have been problems.
4945 Remove the "prompt not found" error message; it is obvious.
4946 Simplify algorithm.
4947 (tramp-smb-process-running): Remove. Since we acknowledge the
4948 virtual prompt for shares, there's no need for distinction of
4949 reading shares (process ends afterwards) and interactive mode of
4950 smblient.
4951 (tramp-smb-open-connection): Setting process sentinel removed.
4952 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
4953 "NT_STATUS_NETWORK_ACCESS_DENIED".
4954 (tramp-smb-maybe-open-connection): Set `process-connection-type'
4955 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
4956 (top-level): Setting default value in `tramp-default-method-alist'
4957 corrected. Order of USER and HOST have been wrong.
4958 Nobody complained for months ...
4959 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
4960 (tramp-smb-open-connection): Clear password cache if login has failed.
4961
4962 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
4963 `tramp-unified-filenames'.
4964 (tramp-completion-mode): Make test for XEmacs explicitely.
4965 `event-to-character' can exists in Emacs packages too.
4966 Reported by Matt Swift <swift@alum.mit.edu>.
4967 (tramp-buffer-name): Buffer name must contain the user if exists.
4968 Reported by Adrian Phillips <a.phillips@met.no>.
4969 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
4970 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
4971 (tramp-do-copy-or-rename-file-out-of-band): Rename from
4972 `tramp-do-copy-or-rename-file-one-local', because it handles also
4973 the case both files use the same out-of-band method.
4974 Implementation added.
4975 (tramp-handle-file-local-copy, tramp-handle-write-region):
4976 Out-of-band handling removed. `copy-file' called instead, which
4977 calls `tramp-do-copy-or-rename-file-out-of-band'.
4978 (tramp-action-password): Check for out-of-band method removed.
4979 This function is used for 'login-program.
4980 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
4981 appropriate.
4982 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
4983 and `tramp-parse-sknownhosts'.
4984 (tramp-completion-function-alist): It's a defvar now, because we
4985 want to apply the optimized `tramp-set-completion-function'
4986 instead of a static list.
4987 (tramp-set-completion-function): Implementation tuned.
4988 Avoid double entries, and entries where the function or the
4989 file/directory doesn't exist.
4990 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
4991 for SSH2.
4992 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
4993 (tramp-handle-dired-compress-file): New function.
4994 (tramp-async-proc): New variable.
4995 (tramp-handle-shell-command): Adding asynchronous processes.
4996 They are far from being perfect, but it works at least for
4997 `find-grep-dired' and `find-name-dired' in Emacs 21.4.
4998 (top-level): Require password.el if visible. Should be mandatory
4999 once No Gnus has found its way into (X)Emacs.
5000 (tramp-read-passwd): Invoke `password-read' if available,
5001 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
5002 fallback any longer.
5003 (tramp-clear-passwd): New function.
5004 (tramp-process-actions, tramp-process-multi-actions):
5005 Clear password cache if login has failed.
5006
5007 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
5008 its own module.
5009 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
5010 `ange-ftp-ftp-name-res'. There could be incorrect values from
5011 previous calls in case the "ftp" method is used in the Tramp file
5012 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5013
5014 2004-02-28 Richard M. Stallman <rms@gnu.org>
5015
5016 * term.el (term-mouse-paste): Call mouse-set-point.
5017
5018 * thumbs.el: New file.
5019
5020 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5021
5022 * progmodes/ebnf-abn.el: Doc fix.
5023
5024 * progmodes/ebnf-bnf.el: Doc fix.
5025 (ebnf-repeat): Code fix.
5026
5027 * progmodes/ebnf2ps.el: Doc fix.
5028 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
5029
5030 2004-02-28 Juri Linkov <juri@jurta.org>
5031
5032 * ffap.el (dired-at-point): Additional writability test for
5033 relative directory names.
5034 (dired-at-point-prompter): Treat directories as a directory, get
5035 the directory component from files.
5036 (ffap-string-at-point): Return string from region if region is active.
5037 (ffap-file-at-point): Remove redundant code.
5038
5039 2004-02-28 Kim F. Storm <storm@cua.dk>
5040
5041 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
5042 Initialize margin area images to nil.
5043 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
5044 (breakpoint-enabled-bitmap-face)
5045 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
5046 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
5047 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
5048 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
5049 (gdb-reset): Use gdb-remove-breakpoint-icons.
5050 (gdb-put-string): Add dprop arg to specify alternative display
5051 property (for setting fringe bitmap).
5052 (gdb-remove-strings): Doc fix.
5053 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
5054 icon in fringe (if available), or else as icon or text in display
5055 margin. Creates necessary icons in breakpoint-bitmap,
5056 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
5057 Also make left window margin if required.
5058 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
5059 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
5060 no longer needed.
5061 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
5062 gdb-put-breakpoint-icon.
5063 (gdb-assembler-mode): Don't set left-margin-width here.
5064
5065 2004-02-27 Kevin Ryde <user42@zip.com.au>
5066
5067 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
5068 comma, so that it DTRT in macros.
5069
5070 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
5071
5072 * progmodes/sh-script.el (sh-shell-arg)
5073 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
5074 (sh-leading-keywords, sh-other-keywords): Fix custom type.
5075
5076 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
5077
5078 * faces.el (face-spec-set-match-display): Add a new attribute,
5079 `min-colors'.
5080 (region, highlight, secondary-selection): Use `min-colors'.
5081
5082 * custom.el (defface): Add documentation for `min-colors'.
5083
5084 * font-lock.el (font-lock-comment-face, font-lock-string-face)
5085 (font-lock-keyword-face, font-lock-function-name-face)
5086 (font-lock-variable-name-face, font-lock-constant-face):
5087 Use `min-colors'.
5088
5089 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
5090
5091 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5092
5093 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
5094 define assq-delete-all if it's not defined.
5095 (ebnf-generate-region): Code fix.
5096
5097 * printing.el: Doc fix.
5098 (pr-version): New version number (6.7.2).
5099 (pr-command): Return empty string if command is an empty string.
5100
5101 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5102
5103 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
5104
5105 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
5106 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
5107 semi-down-full. Fix a bug on productions like test = {"test"}* | (
5108 "tt" ["test"] ). Reported by Markus Dreyer
5109 <mdreyer@ix.urz.uni-heidelberg.de>.
5110 (ebnf-version): New version number (4.0).
5111 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
5112 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
5113 (ebnf-delete-style): New commands.
5114 (ebnf-directory, ebnf-file): New funs.
5115 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
5116 (ebnf-production-name-p, ebnf-stop-on-error): New options.
5117 (ebnf-syntax-alist): New var.
5118 (ebnf-element-width): New fun replacing ebnf-list-width.
5119 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
5120 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
5121 (ebnf-prologue): Adjust vars.
5122 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
5123 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
5124 (ebnf-check-style-values, ebnf-generate-production)
5125 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
5126 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
5127 (ebnf-token-repeat): Code fix.
5128
5129 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
5130 %right, %left and %prec. Suggested by Matthew K. Junker
5131 <junker@alum.mit.edu>.
5132 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
5133
5134 * progmodes/ebnf-iso.el: Doc fix.
5135 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
5136 (ebnf-iso-lex): Code fix.
5137
5138 * progmodes/ebnf-bnf.el: Doc fix.
5139 (ebnf-bnf-lex): Code fix.
5140
5141 * progmodes/ebnf-otz.el: Doc fix.
5142
5143 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5144
5145 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
5146 (abbrev-prefix-mark): Doc fix.
5147
5148 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
5149
5150 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
5151 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
5152 (gdb-var-delete): Make interactive (really).
5153 (gdb-edit-value): Make non-interactive.
5154
5155 * progmodes/gud.el (gud-speedbar-menu-items):
5156 Add gdb-var-delete and, indirectly, gdb-edit-value.
5157 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
5158 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
5159 (gud-gdb-marker-filter): Add comment for annotations.
5160
5161 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
5162
5163 * calendar/calendar.el (generate-calendar)
5164 (calendar-read-date): Prevent display of BC calendars once more -
5165 reverts 2003-10-01 change.
5166 (generate-calendar-month): Doc fix.
5167
5168 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
5169
5170 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
5171 return value of increment-calendar-month.
5172
5173 2004-02-21 Stephen Compall <s11@member.fsf.org>
5174
5175 * saveplace.el (save-place-forget-unreadable-files)
5176 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
5177 (save-place-forget-unreadable-files): New function.
5178 (save-place-alist-to-file): Use it to filter out files that are
5179 no longer readable.
5180
5181 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
5182 current Texinfo environment, using the same method as in
5183 `texinfo-insert-@end', and insert a space rather than a newline if
5184 point in a @table environment.
5185
5186 2004-02-21 Juri Linkov <juri@jurta.org>
5187
5188 * ffap.el (ffap-file-at-point): Try parent directories.
5189
5190 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
5191
5192 * vcursor.el (vcursor-modifiers): New defcustom.
5193 (vcursor-cs-binding): Use vcursor-modifiers instead of a
5194 hard-coded list.
5195
5196 2004-02-21 Masatake YAMATO <jet@gyve.org>
5197
5198 * play/animate.el (animate-birthday-present): Accept names other
5199 than `Sarah', too.
5200
5201 2004-02-21 Juri Linkov <juri@jurta.org>
5202
5203 * startup.el: Remove table of command line arguments from the
5204 Commentary section.
5205
5206 2004-02-20 John Wiegley <johnw@newartisans.com>
5207
5208 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
5209 again" modifier from 'e' to 'E', since 'e' is also used by the
5210 "file extension" modifier.
5211
5212 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5213
5214 * help-fns.el (describe-categories): Doc fix.
5215
5216 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
5217
5218 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
5219 temporary file for buffer already visiting one. This change makes
5220 output likely to be directly usable by patch program.
5221 Suggested by Adrian Aichner <adrian@xemacs.org>
5222
5223 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
5224
5225 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
5226 case of variables defined in compound statements.
5227 (gdb-setup-windows, gdb-source-info, gdb-source-info):
5228 Simplify constructions using switch-to-buffer.
5229
5230 2004-02-19 Simon Josefsson <jas@extundo.com>
5231
5232 * play/morse.el: Fix typo.
5233 (morse-code): Add @.
5234
5235 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
5236
5237 * calendar/appt.el (appt-display-format): Change default to
5238 'ignore, for backwards compatibility.
5239 (appt-display-message): If appt-display-format is 'ignore,
5240 respect old vars appt-msg-window and appt-visible.
5241 (appt-activate): Don't depend on return value of cancel-timer.
5242
5243 * calendar/calendar.el (calendar-holidays): Doc fix.
5244
5245 * calendar/cal-coptic.el (coptic-prompt-for-date):
5246 Use assoc-string instead of assoc-ignore-case.
5247 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
5248 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
5249 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
5250 * calendar/cal-islam.el (calendar-goto-islamic-date)
5251 (mark-islamic-diary-entries): Ditto.
5252 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
5253 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
5254 (calendar-read-mayan-tzolkin-date): Ditto.
5255 * calendar/calendar.el (calendar-read-date): Ditto.
5256 * calendar/diary-lib.el (mark-diary-entries): Ditto.
5257
5258 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
5259
5260 * progmodes/executable.el (executable-command-find-posix-p):
5261 Fix choice of the directory.
5262
5263 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
5264
5265 * simple.el (interprogram-cut-function)
5266 (interprogram-paste-function, kill-new, kill-append):
5267 Doc fixes.
5268 (kill-region): Make it return nil. Doc fix.
5269 (yank-pop): Make its argument optional.
5270 (yank): Make ARG `-' equivalent to `-1'.
5271
5272 2004-02-17 Eli Zaretskii <eliz@gnu.org>
5273
5274 * mail/rmail.el (rmail-get-new-mail): Don't reference
5275 rmail-use-spam-filter if rmail-spam-filter is not loaded.
5276
5277 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
5278
5279 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
5280 if one of global-auto-revert-non-file-buffers or autorevert-mode
5281 is non-nil.
5282
5283 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5284
5285 * subr.el (delete-dups): A better implementation from Karl Heuer
5286 <kwzh@gnu.org>.
5287
5288 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
5289
5290 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
5291 correct place.
5292 * progmodes/icon.el (icon-indent-command): Ditto.
5293 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
5294
5295 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5296
5297 * progmodes/grep.el (grep-compute-defaults): Undo change from
5298 2004-01-29: don't use executable-command-find-posix-p.
5299
5300 2004-02-16 Richard Sharman <rsharman@pobox.com>
5301
5302 * hilit-chg.el: Use require instead of eval-and-compile.
5303 (highlight-compare-buffers): New function.
5304
5305 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
5306
5307 * man.el (Man-fontify-manpage): Render section headings in
5308 `Man-overstrike-face' even when overstrike was not used by man
5309 formatter for section headings.
5310
5311 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
5312
5313 * rmail-spam-filter.el: (vm-use-spam-filter)
5314 (rsf-min-region-length-added-to-spam-list): New variables.
5315 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
5316 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
5317 spam testing. Don't delete spam message if automatic deletion
5318 after output via variable rmail-delete-after-output is turned on.
5319 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
5320 rsf-bbdb-dont-create-entries-for-spam.
5321 (check-field): New function, extracted from code in
5322 rmail-spam-filter to ease addition of header fields like content-type.
5323 (message-content-type): New variable to check the content-type:
5324 field added, also in defcustom of rsf-definitions-alist.
5325 (rmail-spam-filter): Replace repeated test code for header fields
5326 by calls to check-field; change the call to
5327 rmail-output-to-rmail-file such that rmail-current-message stays
5328 the same to avoid wrong deletion of unseen flags.
5329 (rsf-add-contents-type): New function to convert old format
5330 of rmail-spam-definitions-alist into new one.
5331 Change prefixes of all variables and functions from
5332 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
5333
5334 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5335
5336 * loadhist.el (unload-hook-features-list): New defvar.
5337
5338 2004-02-16 Dave Love <fx@gnu.org>
5339
5340 * loadhist.el (unload-feature): Doc fix. Rename flist to
5341 unload-hook-features-list.
5342
5343 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
5344
5345 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
5346 cookie. Don't check if we are looking-at open-formula.
5347
5348 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
5349
5350 * subr.el (match-string-no-properties): Use substring-no-properties.
5351
5352 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5353
5354 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
5355 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
5356 Use lower-case "rx" in all error message.
5357
5358 2004-02-16 Dave Love <fx@gnu.org>
5359
5360 * emacs-lisp/rx.el (rx-or): Put group around result.
5361 (rx-constituents): Add backref.
5362 (rx-syntax): Add string-delimiter, comment-delimiter.
5363 (rx-categories): Add combining-diacritic.
5364 (rx-check-not, rx-greedy, rx): Doc fix.
5365 (rx-backref, rx-check-backref): New.
5366
5367 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5368
5369 * newcomment.el (uncomment-region): Allow eob as comment end.
5370
5371 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5372
5373 * filecache.el: All message and error commands now use prefix
5374 "Filecache:" to make it easy to read *Messages* buffer.
5375
5376 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
5377
5378 * autorevert.el: Add support to detect changed dired and VC buffers.
5379 (auto-revert-active-p, auto-revert-list-diff)
5380 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
5381 (auto-revert-handler, auto-revert-active-p): New functions.
5382 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
5383 and `auto-revert-active-p'.
5384 (eval-when-compile): Defvar dired-directory and vc-mode.
5385 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
5386 (auto-revert-handler-vc): New functions.
5387
5388 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
5389
5390 * progmodes/compile.el (compilation-directory): New defvar.
5391 (compile): Save current directory in compilation-directory.
5392 (recompile): Bind default-directory to compilation-directory if
5393 that is non-nil.
5394
5395 2004-02-16 Dave Love <fx@gnu.org>
5396
5397 * newcomment.el (comment-insert-comment-function)
5398 (comment-region-function, uncomment-region-function): New.
5399 (comment-indent): Use comment-insert-comment-function.
5400 (uncomment-region): Use uncomment-region-function.
5401 (comment-region): Use comment-region-function.
5402
5403 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
5404
5405 2004-02-16 Richard Stallman <rms@gnu.org>
5406
5407 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
5408 loaddefs* and ldefs-boot*.
5409
5410 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5411
5412 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
5413 and email address at the beginning and end of the address.
5414
5415 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
5416 anchored at the beginning of the email address.
5417
5418 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
5419
5420 * international/ccl.el (ccl-compile-write): Pass `left' to
5421 ccl-embed-code to generate correct code of write-expr-register.
5422
5423 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
5424
5425 * progmodes/grep.el (grep-compute-defaults): Fix typos.
5426
5427 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5428
5429 * x-dnd.el: Mention support for Motif in commentary.
5430 (x-dnd-handle-drag-n-drop-event): Ditto.
5431
5432 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5433
5434 * ses.el: Use "ses--" prefixes for buffer-local variables.
5435 Use (point-min) instead of 1, even when we know the buffer
5436 is unnarrowed.
5437 (ses-build-load-map): Delete. Distribute its content to defconst's for
5438 the three maps.
5439 (ses-menu, ses-header-line-menu): New menus.
5440 (ses-mode-map): Use them.
5441 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
5442
5443 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
5444
5445 * Makefile.in: Fix the CC Mode recompile kludge so it works
5446 when building in a different directory.
5447
5448 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
5449
5450 * simple.el (kill-new): Put yank-handler property on the entire string.
5451
5452 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5453
5454 * diff.el: Don't use compile any more, use diff-mode instead.
5455 (diff-regexp-alist, diff-old-file, diff-new-file)
5456 (diff-parse-differences, diff-process-setup): Remove.
5457 (diff-sentinel): New fun.
5458 (diff): Use it. Run the process ourselves.
5459 Use diff-mode for the rest of the processing.
5460
5461 * diff.el (diff): Simplify code handling `switch'.
5462
5463 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
5464
5465 * pcvs-defs.el (cvs-menu): Add `tag'.
5466
5467 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
5468
5469 * simple.el (kill-append): Doc fix.
5470
5471 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5472 Adapt outline-regexp to the new conventions for commenting out code.
5473
5474 2004-02-11 John Paul Wallington <jpw@gnu.org>
5475
5476 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
5477
5478 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
5479
5480 * diff.el (diff-switches): New fun.
5481 (diff, diff-backup): Use it.
5482 (diff): Clean up the args construction. Use backquote.
5483 Use listp instead of consp to avoid putting a nil arg.
5484 (diff): Add a revert-buffer function.
5485
5486 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5487
5488 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
5489 handled by x-dnd-handle-file-name.
5490 (x-dnd-known-types): Add COMPOUND_TEXT.
5491 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
5492 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
5493 x-dnd-empty-state.
5494 (x-dnd-forget-drop): Ditto.
5495 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
5496 (x-dnd-handle-one-url): Return private when inserting text.
5497 (x-dnd-insert-ctext): New function.
5498 (x-dnd-handle-file-name): New function for FILE_NAME.
5499 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
5500 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
5501 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
5502
5503 2004-02-10 Kenichi Handa <handa@m17n.org>
5504
5505 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
5506 instead of while loop.
5507
5508 2004-02-10 Miles Bader <miles@gnu.org>
5509
5510 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
5511
5512 2004-02-09 Kenichi Handa <handa@m17n.org>
5513
5514 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
5515 have end-of-line.
5516
5517 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
5518
5519 * Makefile.in: Added extra dependencies in the recompile target
5520 needed to cope with the compile time macro expansions in CC Mode.
5521
5522 2004-02-09 Kim F. Storm <storm@cua.dk>
5523
5524 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
5525 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
5526 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
5527 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
5528 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
5529 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
5530 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
5531 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
5532 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
5533 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
5534 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
5535
5536 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
5537
5538 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
5539 Don't allow shrink if there's a window on our right.
5540
5541 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
5542 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
5543 Bring together declaration and initialization.
5544 (prolog-mode-variables): Don't set the syntax table.
5545 Don't set paragraph-start and comment-indent-function.
5546 Add /*..*/ to the comment regexps.
5547 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
5548 (prolog-mode-map): Don't bind TAB.
5549 (prolog-mode): Set the syntax table.
5550 (prolog-comment-indent): Remove.
5551 (inferior-prolog-mode-map): Initialize in the declaration.
5552 (inferior-prolog-mode-syntax-table)
5553 (inferior-prolog-mode-abbrev-table): New vars.
5554 (inferior-prolog-mode): Derive from comint-mode.
5555 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
5556 minibuffer windows.
5557
5558 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
5559 in file names, as long as it is unabmiguous.
5560
5561 2004-02-08 Andreas Schwab <schwab@suse.de>
5562
5563 * textmodes/reftex-toc.el
5564 (reftex-toc-load-all-files-for-promotion): Remove useless use of
5565 format. Doc fix.
5566
5567 * textmodes/refer.el (refer-find-entry-internal): Remove extra
5568 format string arguments.
5569
5570 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
5571 string argument.
5572
5573 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
5574
5575 * play/zone.el (zone-call): Fix format string.
5576
5577 * net/webjump.el (webjump-builtin): Add missing format string argument.
5578
5579 * midnight.el (midnight-delay-set): Remove extra format string argument.
5580
5581 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
5582
5583 * hexl.el (hexl-insert-char): Add missing format string argument.
5584
5585 * format.el (format-decode): Fix format string.
5586
5587 * emulation/vi.el (vi-mode): Remove extra format string argument.
5588 (vi-repeat-last-search): Likewise.
5589 (vi-reverse-last-search): Likewise.
5590 (vi-goto-mark): Likewise.
5591 (vi-reverse-last-find-char): Likewise.
5592 (vi-repeat-last-find-char): Likewise.
5593 (vi-locate-def): Likewise.
5594
5595 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
5596
5597 * ediff-util.el (ediff-toggle-read-only): Remove extra format
5598 string argument.
5599 (ediff-toggle-regexp-match): Likewise.
5600
5601 * dired-aux.el (dired-do-query-replace-regexp): Add missing
5602 format string argument.
5603
5604 * calc/calc-map.el (calc-get-operator): Remove extra format
5605 string argument.
5606
5607 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
5608
5609 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
5610 string argument.
5611
5612 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
5613
5614 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
5615
5616 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
5617
5618 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
5619 (cl-struct-setf-expander): Likewise.
5620
5621 * vc.el (with-vc-file): Fix unsafe uses of error.
5622 (vc-cancel-version): Likewise.
5623
5624 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
5625
5626 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
5627 thousands separator; fixes <class>:<line-number> regexp for
5628 non-english locales.
5629
5630 2004-02-08 Andreas Schwab <schwab@suse.de>
5631
5632 * view.el (view-mode-enable): Revert previous change.
5633
5634 2004-02-07 Kim F. Storm <storm@cua.dk>
5635
5636 * simple.el (line-number-at-pos): Rename from line-at-pos.
5637 Uses changed (what-line and vc-annotate-warp-version).
5638
5639 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
5640
5641 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
5642 (diff-mode): Remove aborted attempt at support for compile.el.
5643 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
5644
5645 2004-02-06 Andreas Schwab <schwab@suse.de>
5646
5647 * view.el (view-mode-enable): Add view-mode-map to
5648 minor-mode-overriding-map-alist.
5649
5650 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5651
5652 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
5653
5654 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
5655
5656 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
5657 with point inside rather than after the paragraph.
5658
5659 2004-02-04 Sam Steingold <sds@gnu.org>
5660
5661 * mail/smtpmail.el (smtpmail-try-auth-methods):
5662 Do not try authentication when no mechanism is available.
5663 Pass port-name as defaultport to `netrc-machine'.
5664
5665 2004-02-04 Stephen Eglen <stephen@gnu.org>
5666
5667 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
5668 to show how minibuffer height can be constrained.
5669
5670 2004-02-04 John Paul Wallington <jpw@gnu.org>
5671
5672 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
5673
5674 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5675
5676 * x-dnd.el: New file for drag and drop.
5677
5678 * term/x-win.el: require x-dnd, set after-make-frame-functions
5679 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
5680 drag-n-drop event.
5681
5682 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
5683 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
5684 (dired-dnd-handle-file): New functions for drag and drop support.
5685 (dired-mode): Initialize drag and drop if x-dnd present.
5686
5687 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
5688
5689 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
5690 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
5691 (cperl-mode): Set fill-paragraph-function.
5692 (cperl-fill-paragraph): Make it non-interactive.
5693
5694 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
5695
5696 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
5697
5698 2004-02-02 David Kastrup <dak@gnu.org>
5699
5700 * replace.el (perform-replace): Allow 'literal argument in
5701 regexp-flag to indicate literal replacement.
5702 (query-replace-regexp-eval): Use it.
5703
5704 2004-02-01 Andreas Schwab <schwab@suse.de>
5705
5706 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
5707
5708 2004-02-01 Stephen Eglen <stephen@gnu.org>
5709
5710 * info-look.el: Add support for maxima-mode. Update commentary
5711 because info-lookup-symbol is now bound to C-h S.
5712
5713 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
5714
5715 * simple.el (edit-and-eval-command): Bind print-level and
5716 minibuffer-history-sexp-flag around call to read-from-minibuffer.
5717 Correct initial position in command-history.
5718
5719 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
5720
5721 * files.el (read-directory-name): Adapt the docstring to recent
5722 change in Fread_file_name.
5723
5724 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
5725
5726 * ses.el (ses-print-cell): If print format too wide for column
5727 width, truncate decimal places if that helps to avoid "#####" fill.
5728 * ses.el (ses-initial-column-width): Revert previous change.
5729
5730 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
5731
5732 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
5733 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
5734 Add edebug info.
5735 (jit-lock-mode): Setup/cancel the new timer.
5736 (jit-lock-context-fontify): New fun. Extracted from
5737 context fontification code of jit-lock-stealth-fontify.
5738 (jit-lock-stealth-fontify): Don't do context fontification any more.
5739
5740 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
5741 (jit-lock-fontify-now): Handle the `quit' case.
5742 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
5743
5744 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
5745
5746 * progmodes/executable.el (executable-command-find-posix-p):
5747 New. Check if find handles arguments Posix-style.
5748
5749 * progmodes/grep.el (grep-compute-defaults):
5750 Use executable-command-find-posix-p.
5751 (grep-find): Check `grep-find-command'.
5752
5753 * filecache.el (file-cache-find-posix-p): Delete.
5754 (file-cache-add-directory-using-find):
5755 Use `executable-command-find-posix-p'.
5756
5757 2004-01-29 Dave Love <fx@gnu.org>
5758
5759 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
5760 Iterate the hook function if arg is given.
5761 (mark-defun, narrow-to-defun): Change order of finding the limits.
5762
5763 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
5764 (byte-compile-format-warn): New.
5765 (byte-compile-callargs-warn): Use it.
5766 (Format, message, error): Add byte-compile-format-like property.
5767 (byte-compile-maybe-guarded): New.
5768 (byte-compile-if, byte-compile-cond): Use it.
5769 (byte-compile-lambda): Compile interactive forms,
5770 just to make warnings about them.
5771
5772 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
5773
5774 * ses.el (ses-initial-column-width): Increase to 14, so it will
5775 work well with the default printer of "%.7g" for extreme values
5776 like "-1.234567e+07".
5777
5778 2004-01-29 Kenichi Handa <handa@m17n.org>
5779
5780 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
5781
5782 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
5783
5784 * dos-w32.el: Added support for the `default-printer-name' function.
5785
5786 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
5787
5788 * server.el (server-socket-name): Don't use the hostname in the
5789 socket name since /tmp is local to the host anyway.
5790
5791 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
5792 robust check of widening and fix var-naming.
5793
5794 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
5795
5796 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
5797 or rmail-spam- to rsf- in all function and variable names.
5798 (rsf-min-region-to-spam-list): New variable.
5799 (rsf-bbdb-auto-delete-spam-entries): Rename from
5800 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
5801 scanned together with the recipients field for spam testing; Don't
5802 delete spam message if rmail-delete-after-output is non-nil;
5803 (rsf-check-field): New function, extracted from code in
5804 rmail-spam-filter to ease addition of header fields like
5805 content-type:;
5806 (message-content-type): New variable. The content-type: field was
5807 added also in defcustom of rsf-definitions-alist;
5808 (rmail-spam-filter): Replace repeated test code for header fields
5809 by calls to check-field; change the call to
5810 rmail-output-to-rmail-file such that rmail-current-message stays
5811 the same to avoid wrong deletion of unseen flags.
5812 (rmail-use-spam-filter): Add autoload cookie.
5813
5814 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
5815
5816 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
5817 (file-cache-add-directory-using-find): Add Cygwin support.
5818 (file-cache-find-command-posix-flag): New user variable.
5819
5820 * filecache.el (file-cache-add-directory): Check for
5821 directories an remove them from dir-files.
5822
5823 2004-01-27 Richard M. Stallman <rms@gnu.org>
5824
5825 * man.el (Man-fontify-manpage): Clean up message.
5826
5827 2004-01-27 Kenichi Handa <handa@m17n.org>
5828
5829 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
5830 (sentence-end): Define using sentence-end-without-space.
5831
5832 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
5833 a sentence ends with one of a character in sentence-end-without-space.
5834
5835 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
5836
5837 * font-lock.el (font-lock): Add jit-lock as explicit group member.
5838 (jit-lock): Group declaration moved to jit-lock.el.
5839 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
5840 when necessary.
5841
5842 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
5843 (jit-lock-context-unfontify-pos): Rename from
5844 jit-lock-first-unfontify-pos.
5845 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
5846
5847 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
5848
5849 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
5850 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
5851 (fortran-fill): When filling a string, adjust re-search-backward
5852 argument for special case of string just on fill-column.
5853 When filling non-string, allow one extra char if
5854 fortran-break-before-delimiters is non-nil.
5855 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
5856 Use fortran-break-delimiters-re and fortran-no-break-re to
5857 correctly handle cases such as "**".
5858
5859 * progmodes/f90.el (f90-break-delimiters): Doc fix.
5860 (f90-no-break-re): Add some extra tokens. Doc fix.
5861
5862 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
5863
5864 * mail/rmail-spam-filter.el:
5865 Use two semicolons as Commentary line prefix.
5866 Add ";;; Code:" stylized comment.
5867 Delete end-of-line whitespace.
5868 Wrap (require 'cl) with `eval-when-compile'.
5869
5870 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
5871
5872 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
5873 at the top level of vc.el.
5874
5875 2004-01-23 Andre Spiegel <spiegel@gnu.org>
5876
5877 * vc.el (vc-current-line): Function removed. This is now done by
5878 the new function line-at-pos in simple.el.
5879 (vc-annotate-warp-version): Use line-at-pos instead of
5880 vc-current-line.
5881
5882 2004-01-22 Kim F. Storm <storm@cua.dk>
5883
5884 * simple.el (line-at-pos): New defun.
5885 (what-line): Use it. Optimize by only counting lines in narrowed
5886 region once.
5887
5888 2004-01-22 Kenichi Handa <handa@m17n.org>
5889
5890 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
5891 point (register r1) only for charset mule-unicode-0100-24ff.
5892
5893 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
5894
5895 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
5896 trailing white space and ensure a final newline.
5897
5898 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
5899 Add autoload cookie.
5900
5901 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
5902
5903 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
5904 activate view-mode explicitly.
5905
5906 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5907
5908 * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
5909 use clipboard first.
5910
5911 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
5912
5913 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
5914 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
5915 (vc-mcvs-cvs): Remove.
5916 (vc-mcvs-command): Remove use of assert.
5917
5918 * outline.el (outline-insert-heading): Tighten up match.
5919 (outline-demote, outline-move-subtree-down): Don't assume anything
5920 about outline-regexp.
5921
5922 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
5923 (texinfo-show-structure): Explicitly add ^, and simplify.
5924
5925 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
5926
5927 * calendar/appt.el (appt-check): Restore usage of
5928 appt-issue-message deleted in previous change.
5929 (top-level): Activate package when loaded (needed for backwards
5930 compatibility).
5931
5932 2004-01-20 Jesper Harder <harder@ifa.au.dk>
5933
5934 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
5935 following previous change to smtpmail-send-data.
5936
5937 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
5938
5939 * vc.el (vc-default-previous-version): Doc enhancement.
5940 (vc-default-next-version): New function.
5941 (vc-print-log): New arg FOCUS-REV.
5942 (vc-annotate-mode): Derive from view-mode.
5943 (vc-annotate): New args REVISION, DISPLAY-MODE.
5944 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
5945 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
5946 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
5947 (vc-annotate-show-diff-revision-at-line, vc-current-line)
5948 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
5949
5950 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
5951
5952 2004-01-19 Karl Berry <karl@gnu.org>
5953
5954 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
5955 or "TexInfo".
5956
5957 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
5958
5959 * subr.el (delete-dups): New function.
5960
5961 2004-01-19 Karl Berry <karl@gnu.org>
5962
5963 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
5964 with ^, since that's what texinfo-show-structure
5965 documentation says (plus it works much better in texinfo.txi).
5966
5967 2004-01-18 Jesper Harder <harder@ifa.au.dk>
5968
5969 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
5970
5971 2004-01-18 David Ponce <david@dponce.com> (tiny change)
5972
5973 * progmodes/which-func.el (which-function-mode): Don't cancel
5974 which-func-update-timer if not set.
5975
5976 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
5977
5978 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
5979 Remove spurious left square bracket in XX:XXam regexp.
5980
5981 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
5982
5983 * progmodes/cc-defs.el: Do not require cl at run time.
5984
5985 2004-01-16 Richard M. Stallman <rms@gnu.org>
5986
5987 * emacs-lisp/cl.el (cl-cannot-unload): New function.
5988 (cl-unload-hook): Defvar this to run cl-cannot-unload.
5989
5990 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
5991 Call rmail-spam-filter. Delete and expunge spam.
5992 Print number of spam messages deleted.
5993 Save and restore the deletion status of old messages when reading
5994 new mail with spam filter, so that expunging spam does not expunge
5995 msgs deleted by the user.
5996 (rmail-only-expunge): Add an optional argument dont-show to
5997 prevent showing message after expunge.
5998
5999 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
6000
6001 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
6002 * subr.el (declare): New macro.
6003
6004 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
6005
6006 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
6007
6008 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6009
6010 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6011 Test window-system rather than system-type (for X11/Mac).
6012
6013 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
6014
6015 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
6016
6017 2004-01-12 Richard M. Stallman <rms@gnu.org>
6018
6019 * mail/rmail.el (rmail-convert-to-babyl-format):
6020 Use mail-unquote-printable-region.
6021 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
6022 (rmail-hex-char-to-integer): Functions deleted.
6023
6024 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
6025 (mail-unquote-printable-region): New arg NOERROR.
6026 For invalid encoding, either signal an error to just return nil.
6027
6028 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
6029
6030 * calendar/appt.el: Update copyright and commentary.
6031 (appt-issue-message): Make obsolete.
6032 (appt-visible, appt-msg-window): Make obsolete, in favour of
6033 appt-display-format.
6034 (appt-display-mode-line, appt-display-duration)
6035 (appt-display-diary, appt-time-msg-list, appt-mode-string)
6036 (appt-prev-comp-time, appt-display-count, appt-timer)
6037 (appt-convert-time): Doc change.
6038 (appt-disp-window-function, appt-delete-window-function):
6039 Use defcustom rather than defvar.
6040 (appt-display-format): New variable.
6041 (appt-display-message): New function with display code from appt-check.
6042 (appt-check): Add optional FORCE argument. Doc change.
6043 Add appt-make-list to diary-hook if displaying diary.
6044 Remove checking of view-diary-entries-initially.
6045 Message display section removed to new function appt-display-message.
6046 (appt-display-window): Doc change. Remove unused internal var
6047 this-buffer. Do not beep, since appt-display-message does that.
6048 (appt-make-list): Doc change. Use caar.
6049 (appt-sort-list): Simplify by using builtin sort function.
6050 (appt-update-list): New function for updating appts when diary is
6051 saved.
6052 (appt-activate): New autoloaded function to toggle package
6053 functionality.
6054
6055 * calendar/cal-x.el: (calendar-one-frame-setup)
6056 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
6057
6058 * calendar/calendar.el: Update copyright.
6059 (view-diary-entries-initially, european-calendar-style): Doc change.
6060 (calendar-setup): Make defcustom rather than defvar.
6061 (mark-visible-calendar-date): Initialize temp-face and faceinfo
6062 in let binding so local to function.
6063
6064 * calendar/diary-lib.el: Update copyright.
6065 (diary, diary-entry-time): Doc change.
6066 (list-diary-entries): Doc change. Trivial logic change.
6067 (fancy-diary-display): Restore make-face command mistakenly
6068 deleted 2003-05-08.
6069 (show-all-diary-entries): Allow to pop-up frame if needed.
6070
6071 2004-01-09 John Paul Wallington <jpw@gnu.org>
6072
6073 * bindings.el (mode-line-change-eol): Add EVENT parameter.
6074 Temporarily select EVENT's window for changing eol type.
6075
6076 2004-01-09 Deepak Goel <deego@gnufans.org>
6077
6078 * calendar/diary-lib.el (diary-entry-time):
6079 Also accept time in the form XX[.XX][am/pm/AM/PM].
6080 (fancy-diary-font-lock-keywords): Likewise.
6081 (diary-font-lock-keywords): Likewise.
6082 * calendar/appt.el (appt-add): Likewise.
6083 (appt-make-list): Likewise.
6084 (appt-convert-time): Likewise.
6085
6086 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
6087
6088 * gdb-ui.el (gdb-ann3): Revert previous change.
6089 (gdb-source-info): Allow for case of where compilation directory
6090 is not recorded.
6091
6092 2004-01-08 John Paul Wallington <jpw@gnu.org>
6093
6094 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
6095
6096 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
6097
6098 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
6099
6100 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
6101 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
6102 problems.
6103 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
6104
6105 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
6106
6107 * files.el (write-file-functions, write-contents-functions):
6108 Clarify docstrings.
6109
6110 2004-01-07 Kenichi Handa <handa@m17n.org>
6111
6112 * international/mule.el (set-auto-coding): Fix for the case that
6113 end-of-line is only CR.
6114
6115 2004-01-07 Kim F. Storm <storm@cua.dk>
6116
6117 * subr.el (event-start, event-end): Doc fix.
6118 (posn-string, posn-image): New defuns.
6119 (posn-object): Return either image or string object.
6120 (posn-object-x-y): Return 8th element of position.
6121 (posn-object-width-height): New defun.
6122
6123 2004-01-06 Andreas Schwab <schwab@suse.de>
6124
6125 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
6126 output.
6127
6128 2004-01-05 Karl Berry <karl@gnu.org>
6129
6130 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
6131 / and *, too.
6132
6133 2003-12-31 Simon Josefsson <jas@extundo.com>
6134
6135 * files.el (before-save-hook): Add.
6136 (basic-save-buffer): Use before-save-hook.
6137
6138 * emacs-lisp/copyright.el: Fix comment to recommend
6139 before-save-hook instead of write-file-functions.
6140
6141 2004-01-05 Richard M. Stallman <rms@gnu.org>
6142
6143 * finder.el (finder-commentary): Call delete-other-windows.
6144
6145 * net/ange-ftp.el (ange-ftp-file-attributes):
6146 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
6147
6148 2004-01-04 Karl Berry <karl@gnu.org>
6149
6150 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
6151 comment characters % and # in the copyright year notice,
6152 as well as ;.
6153
6154 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
6155
6156 * wid-edit.el (default): Define dummy :value-delete.
6157 Reported by Jesper Harder <harder@ifa.au.dk>.
6158
6159 2004-01-03 Richard M. Stallman <rms@gnu.org>
6160
6161 * progmodes/compile.el (compile-internal): Use point, not point-min,
6162 for set-window-point.
6163
6164 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
6165
6166 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
6167
6168 * progmodes/grep.el (grep-mode-map):
6169 Don't remap next-line, previous-line.
6170
6171 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
6172
6173 * speedbar.el (speedbar-edit-line): Change regexp to position
6174 the cursor on the first character of this line's button.
6175
6176 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6177
6178 * subr.el (functionp): Doc fix.
6179
6180 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
6181
6182 * progmodes/idlwave.el (idlwave-make-tags):
6183 * textmodes/flyspell.el (flyspell-large-region):.
6184 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
6185 * emulation/viper-util.el (viper-glob-unix-files):
6186 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
6187 * man.el (Man-init-defvars):
6188 * jka-compr.el (jka-compr-call-process):
6189 * files.el (get-free-disk-space,insert-directory):
6190 * ediff-ptch.el (ediff-test-patch-utility):
6191 * ediff-diff.el (ediff-test-utility):
6192 * dired-aux.el (dired-check-process):
6193 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
6194 test the return value of call-process, because it can be a string.
6195
6196 2003-12-31 John Paul Wallington <jpw@gnu.org>
6197
6198 * bindings.el (completion-ignored-extensions): Add .pfsl.
6199
6200 2003-12-31 Kim F. Storm <storm@cua.dk>
6201
6202 * ido.el (ido-nonreadable-directory-p): New defun to check for
6203 nonreadable directory without activating tramp (to avoid problems
6204 with checking incomplete tramp paths).
6205 (ido-set-current-directory, ido-file-internal)
6206 (ido-file-name-all-completions1): Use it.
6207
6208 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6209
6210 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
6211 documentation if the anchor (or node) name is preceded by `info
6212 anchor' or `Info anchor' in addition to earlier `info node' and
6213 `Info node'.
6214 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
6215
6216 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6217
6218 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
6219 error in arguments to base64-decode-region. Remove ^M characters
6220 after decoding base64.
6221
6222 2003-12-30 Simon Josefsson <jas@extundo.com>
6223
6224 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
6225 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
6226 have only been distributed with Emacs for some years.
6227 (texinfo-mode-hook): Customize.
6228
6229 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6230
6231 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
6232 cleaner (suggested by Richard Stallman).
6233
6234 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
6235 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
6236 file-name clashes on 8+3 DOS filesystems.
6237
6238 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
6239 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
6240 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
6241 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
6242 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
6243 file-name clashes on 8+3 filesystems.
6244
6245 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
6246 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
6247 file-name clashes on 8+3 DOS filesystems.
6248
6249 2003-12-29 Richard M. Stallman <rms@gnu.org>
6250
6251 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
6252 Upcase the character.
6253
6254 * textmodes/flyspell.el (mail-mode-flyspell-verify):
6255 Search for header separator alone on a line, literally,
6256 and search for it backward, not forward.
6257 (flyspell-abbrev-table): Always use global-abbrev-table
6258 if there is no local one.
6259
6260 * progmodes/sh-script.el (sh-get-indent-info):
6261 Don't move point back if at bob.
6262
6263 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
6264
6265 * play/handwrite.el (handwrite): Make the handwrite credit message
6266 a comment rather than an output command.
6267
6268 * obsolete/sc.el: Display message that this file is obsolete.
6269
6270 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
6271
6272 * mail/rfc822.el (rfc822-address-start): Declare variable.
6273 Renamed from address-start. All uses changed.
6274
6275 * term.el (term-exec): Set up sentinel.
6276 (term-sentinel): New function.
6277 (term-handle-exit): New function.
6278
6279 * subr.el (assoc-ignore-case, assoc-ignore-representation):
6280 Use assoc-string, and mark them obsolete.
6281 (delay-mode-hooks): Mark as permanent local.
6282
6283 * simple.el (sendmail-user-agent-compose): Use assoc-string.
6284
6285 * register.el (copy-rectangle-to-register): Doc fix.
6286
6287 * info.el (Info-insert-dir): Use assoc-string.
6288
6289 * info-look.el (info-lookup): Use assoc-string.
6290
6291 * frame.el (pop-up-frame-function): Use quote, not `function'.
6292 (frame-notice-user-settings): Calculate ADJUSTED-TOP
6293 copying with lists as coordinate values.
6294
6295 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
6296
6297 * find-dired.el (kill-find): New command.
6298 (find-dired): Make buffer read-only.
6299 Set up a keymap with C-c C-k running kill-find.
6300 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
6301
6302 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
6303
6304 * filecache.el (file-cache-ignore-case): New variable.
6305 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
6306
6307 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
6308 (comint-dynamic-complete-as-filename): Rename local vars.
6309 (comint-dynamic-list-filename-completions): Likewise.
6310
6311 * comint.el (comint-dynamic-list-completions-config): New var.
6312 (comint-dynamic-list-completions): Handle both SPC and TAB right.
6313
6314 * comint.el (comint-file-name-chars): Add [].
6315 (comint-word): Use skip-chars-backward, not search.
6316
6317 * shell.el (shell-file-name-chars): Add [].
6318
6319 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
6320
6321 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
6322
6323 * generic.el (define-generic-mode): Doc fix.
6324
6325 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6326
6327 * files.el (kill-some-buffers): Doc fix.
6328
6329 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
6330
6331 * comint.el (comint-watch-for-password-prompt): Pass `string' as
6332 arg to send-invisible
6333 (send-invisible): Doc fix. The argument is now a prompt, not the
6334 string to send.
6335 (comint-read-noecho): Doc fix.
6336
6337 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
6338
6339 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
6340 "@", as required by some ISP hosting service. Fix defcustom
6341 argument syntax errors that prevented use of customization.
6342
6343 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6344
6345 * xml.el (xml-get-attribute-or-nil): Doc fix.
6346
6347 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
6348
6349 * net/zone-mode.el (zone-mode): Use write-file-functions, not
6350 write-file-hooks.
6351
6352 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
6353
6354 * autorevert.el (auto-revert-interval): Doc fix.
6355
6356 2003-12-29 Mark A. Hershberger <mah@everybody.org>
6357
6358 * xml.el (xml-get-attribute-or-nil): New function, like
6359 xml-get-attribute, but returns nil if the attribute was not found.
6360 (xml-get-attribute): Convert to defsubst, uses
6361 xml-get-attribute-or-nil.
6362
6363 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6364
6365 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
6366
6367 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
6368
6369 * custom.el (custom-declare-theme): Use `value' when putting
6370 properties on `theme'.
6371
6372 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
6373
6374 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
6375 for each yank-handler segment.
6376 (insert-for-yank-1): New function, with the body of the previous
6377 insert-for-yank.
6378
6379 * textmodes/table.el (table-yank-handler): New defcustom.
6380 (table--put-cell-indicator-property): Put yank-handler property
6381 that indicates the yank handler for the table cell.
6382
6383 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
6384
6385 * generic-x.el (etc-modules-conf-generic-mode): A more complete
6386 set of keywords.
6387
6388 2003-12-29 Eli Zaretskii <eliz@gnu.org>
6389
6390 * international/mule-cmds.el (reset-language-environment)
6391 (set-language-environment): Don't invoke fontset-related functions
6392 if fontset-list is not fboundp.
6393
6394 2003-12-29 Kenichi Handa <handa@m17n.org>
6395
6396 * international/mule-cmds.el (reset-language-environment):
6397 Call set-overriding-fontspec-internal with nil.
6398 (set-language-environment): Call set-overriding-fontspec-internal
6399 if the language environment specify `overriding-fontspec'.
6400 (language-info-alist): Doc added.
6401
6402 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
6403 characters of mule-unicode-0100-24ff.
6404 (ccl-encode-windows-1251-font): New CCL program.
6405 ("Bulgarian"): Specify overriding-fontspec.
6406 ("Belarusian"): Likewise.
6407
6408 2003-12-28 Sam Steingold <sds@gnu.org>
6409
6410 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
6411 parameter ID-FORMAT to conform with the 2003-11-30 patch.
6412
6413 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
6414
6415 * progmodes/gud.el (gud-gdb-command-name): Set default to
6416 "gdb --annotate=3".
6417 (gud-gdb-marker-filter): Look out for annotations.
6418 (gdb-first-pre-prompt): New variable.
6419 Remove trailing white space.
6420
6421 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
6422 if necessary.
6423 (gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
6424 annotations are detected.
6425 (gud-gdba-marker-filter): Use global variable gud-marker-acc
6426 instead of a local one to allow transition from
6427 gud-gdb-marker-filter.
6428 Remove trailing white space.
6429
6430 2003-12-27 Kim F. Storm <storm@cua.dk>
6431
6432 * ido.el: Handle non-readable directories.
6433 (ido-decorations): Add 9th element for non-readable directory.
6434 (ido-directory-nonreadable): New dynamic var.
6435 (ido-set-current-directory): Set it.
6436 (ido-read-buffer, ido-file-internal):
6437 (ido-read-file-name, ido-read-directory-name): Let-bind it.
6438 (ido-file-name-all-completions1): Return empty list for
6439 non-readable directory.
6440 (ido-exhibit): Print [Not readable] if directory is not readable.
6441 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
6442 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
6443 Use it.
6444
6445 2003-12-27 Lars Hansen <larsh@math.ku.dk>
6446
6447 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
6448 calls to directory-files-and-attributes and file-attributes.
6449 (ls-lisp-format): Remove system dependent handling of user and
6450 group id's.
6451
6452 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
6453
6454 * ffap.el (ffap-read-file-or-url): Revert previous change.
6455
6456 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
6457
6458 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
6459 new list of included files called `files-with-node-lines', that
6460 only have node lines. This way @include commands can include any
6461 file, such as version and update files without node lines, not
6462 just files that are chapters.
6463
6464 2003-12-25 Andreas Schwab <schwab@suse.de>
6465
6466 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
6467 file not found.
6468
6469 2003-12-08 Miles Bader <miles@gnu.org>
6470
6471 * dired.el (dired-between-files): Always use dired-move-to-filename,
6472 which is more robust in non-english locales.
6473
6474 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
6475
6476 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
6477
6478 2003-12-24 Andreas Schwab <schwab@suse.de>
6479
6480 * shell.el (shell-file-name-quote-list): Add backslash.
6481
6482 * comint.el (comint-quote-filename): Correctly handle backslash
6483 in comint-file-name-quote-list.
6484
6485 2003-12-24 Kenichi Handa <handa@m17n.org>
6486
6487 * international/mule-cmds.el (set-default-coding-systems):
6488 Call ucs-set-table-for-input for all buffers that don't have local
6489 value of buffer-file-coding-system.
6490
6491 * international/ucs-tables.el (ucs-set-table-for-input):
6492 If translation-table-for-encode is a symbol, get its
6493 translation-table property.
6494
6495 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
6496
6497 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
6498 to `completing-read' on a recently fixed bug.
6499
6500 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
6501 instead of SPACE, to get the list of possible fringe modes.
6502 SPACE only works if both `partial-completion-mode' and
6503 `completion-auto-help' are nil.
6504
6505 * complete.el (PC-is-complete-p): Delete.
6506 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
6507 calls to `test-completion'.
6508
6509 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
6510
6511 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
6512 to edit values when there are no children.
6513
6514 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
6515 a mode called "Assembler" already exists.
6516 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
6517 (gud-watch): Use format option. Remove font properties from string.
6518 (gdb-var-create-handler, gdb-var-list-children-handler):
6519 Don't bother about properties as there are none.
6520 (gdb-var-create-handler, gdb-var-list-children-handler)
6521 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
6522 with two arguments.
6523 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
6524 Let speedbar show value changes with a different font.
6525 (gdb-edit-value): New defun.
6526 (gdb-clear-partial-output, gdb-clear-inferior-io)
6527 (def-gdb-auto-update-handler): Use erase-buffer.
6528 (gdb-frame-handler): Display watch expressions in
6529 FUNCTION::VARIABLE format if required.
6530
6531 2003-12-23 John Paul Wallington <jpw@gnu.org>
6532
6533 * info.el (Info-unescape-quotes, Info-split-parameter-string)
6534 (Info-goto-emacs-command-node): Doc fixes.
6535
6536 2003-12-12 Jesper Harder <harder@ifa.au.dk>
6537
6538 * cus-edit.el (custom-add-parent-links): Define "many".
6539
6540 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
6541
6542 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
6543 (widget-child-validate, widget-type-value-create)
6544 (widget-type-default-get, widget-type-match): New functions.
6545 (lazy): New widget.
6546 (menu-choice, checklist, radio-button-choice, editable-list)
6547 (group, documentation-string): Remove redundant (per 2003-10-25
6548 change) calls to `widget-children-value-delete'.
6549 (widget-choice-value-get, widget-choice-value-inline): Remove.
6550 (menu-choice): Update widget.
6551
6552 2003-12-03 Kenichi Handa <handa@m17n.org>
6553
6554 * language/cyrillic.el: Register "microsoft-cp1251" in
6555 ctext-non-standard-encodings-alist.
6556 ("Bulgarian"): Add ctext-non-standard-encodings.
6557 ("Belarusian"): Likewise.
6558
6559 * international/mule-conf.el (compound-text-with-extensions):
6560 Change the type to 2 (iso-2022 base).
6561
6562 * international/mule.el (ctext-non-standard-encodings-alist):
6563 Change the format.
6564 (ctext-non-standard-encodings): New variable.
6565 (ctext-post-read-conversion): Fully re-written.
6566 (ctext-non-standard-designations-alist): Delete it.
6567 (ctext-non-standard-encodings-table): New function.
6568 (ctext-pre-write-conversion): Fully re-written.
6569
6570 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
6571
6572 * cus-edit.el (custom-add-parent-links): Add documentation links
6573 for parent, if the item has none of its own.
6574
6575 2003-11-30 Richard M. Stallman <rms@gnu.org>
6576
6577 * dired-aux.el (dired-do-query-replace-regexp):
6578 Report files visited read-only.
6579
6580 2003-11-30 Juri Linkov <juri@jurta.org>
6581
6582 * dired-aux.el (dired-compare-directories): New command.
6583 (dired-file-set-difference, dired-files-attributes): New functions.
6584
6585 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
6586 Version 2.0.38 of Tramp released.
6587
6588 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
6589 Charles Curley <charlescurley@charlescurley.com>.
6590 (tramp-multi-connection-function-alist): Add ssht entry which adds
6591 "-e none -t -t" to the list of ssh args. Suggested by Adrian
6592 Aichner.
6593 (tramp-get-method-parameter): New function to retrieve a method
6594 parameter. This allows for omission of method parameters.
6595 Callers adjusted.
6596
6597 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
6598
6599 * net/tramp.el: Add new optional parameter ID-FORMAT to
6600 `file-attributes'. Calls of `file-attributes' won't use this
6601 parameter for backward compatibility reasons.
6602 (tramp-perl-file-attributes): Add a new parameter to Perl script
6603 in order to handle uid/gid as strings, if desired.
6604 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
6605 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
6606 order to make the function more general.
6607 (tramp-handle-file-attributes): Replace proprietary optional
6608 parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
6609 (tramp-handle-file-attributes-with-perl): Handle parameter
6610 NONNUMERIC if set. This wasn't done in the past.
6611 (tramp-post-connection): Apply second parameter "$2" if
6612 `tramp-remote-perl' is called.
6613
6614 * net/tramp-smb.el (tramp-smb-handle-delete-file):
6615 Correct cut'n'waste error (`filename' instead of `directory').
6616 (tramp-smb-handle-directory-files-and-attributes)
6617 (tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
6618 introduced parameter ID-FORMAT.
6619 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
6620 error (`directory' instead of `ldir').
6621
6622 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
6623 `file-attributes' has a second parameter. If yes, apply it with
6624 value "'integer". Otherwise, don't use that parameter (default is
6625 integer format).
6626
6627 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
6628
6629 * help.el (help-map): Bind `display-local-help' to `C-h .'.
6630 (help-for-help): Add `C-h .' to the listed Help options.
6631 Remove trailing whitespace.
6632
6633 * help-at-pt.el: New file.
6634
6635 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
6636
6637 * subr.el (noreturn, 1value): New macros for test coverage.
6638 See `testcover.el'.
6639
6640 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
6641
6642 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
6643 for macro `1value'.
6644 (testcover-1value): New function. Checks that a 1value form
6645 actually returns only one value. Requested by RMS.
6646
6647 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
6648
6649 * gdb-ui.el (gud-watch, gdb-var-create-handler)
6650 (gdb-var-list-children, gdb-var-list-children-handler)
6651 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
6652 gdb commands that use mi to keep them out of the command history.
6653
6654 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6655
6656 * cus-start.el (all): Add use-file-dialog.
6657
6658 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6659
6660 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
6661
6662 2003-11-27 Kim F. Storm <storm@cua.dk>
6663
6664 * subr.el (posn-object-x-y): New defun.
6665
6666 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
6667
6668 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
6669 Don't use `space' for \\\n.
6670 Be more selective as to which # are comment-starters.
6671
6672 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
6673
6674 * subr.el (number-sequence): Improve handling of floating point
6675 arguments (suggested by Kim Storm). Allow negative arguments.
6676
6677 2003-11-26 Kenichi Handa <handa@m17n.org>
6678
6679 * international/mule-cmds.el (standard-display-european-internal):
6680 Cancel the standard-display-table setting for ` and '.
6681
6682 2003-11-26 Kim F. Storm <storm@cua.dk>
6683
6684 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
6685 New defcustoms to add ffap-like functionality to ido.
6686 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
6687 (ido-no-final-slash): New defun.
6688 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
6689 (ido-read-file-name): ): Toggle VC checking via
6690 vc-handled-backends instead of vc-master-templates.
6691 (ido-file-internal): Handle ido-use-url-at-point and
6692 ido-use-filename-at-point via code borrowed from ffap-guesser.
6693 Handle new ido-exit code ffap.
6694 (ido-sort-list): Ignore final slash when sorting file names.
6695
6696 2003-11-25 Kim F. Storm <storm@cua.dk>
6697
6698 * emulation/cua-base.el (cua--standard-movement-commands):
6699 Add forward-sentence and backward-sentence.
6700
6701 2003-11-25 Stephen Eglen <stephen@gnu.org>
6702
6703 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
6704 iswitchb-exit is set to 'usefirst when user selects buffer at head
6705 of list using RET. (Selecting buffers at the head of the list was
6706 broken if the substring was also a complete buffername.)
6707
6708 2003-11-23 Kim F. Storm <storm@cua.dk>
6709
6710 * progmodes/compile.el (grep-command, grep-use-null-device)
6711 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
6712 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
6713 (grep-regexp-alist, grep-program, find-program)
6714 (grep-find-use-xargs, grep-history, grep-find-history)
6715 (grep-process-setup, grep-compute-defaults)
6716 (grep-default-command, grep, grep-tag-default, grep-find)
6717 (grep-expand-command-macros, grep-tree-last-regexp)
6718 (grep-tree-last-files, grep-tree): Move grep variables, functions
6719 and commands to new file grep.el.
6720 (compilation-mode-map): Remove grep commands from Compile sub-menu.
6721 (compilation-process-setup-function): Doc fix.
6722 (compilation-highlight-regexp, compilation-highlight-overlay): New
6723 defvars used for highlighting current compile error in source buffer.
6724 (compile-internal): New optional args HIGHLIGHT-REGEXP and
6725 LOCAL-MAP which overrides compilation-highlight-regexp and
6726 compilation-mode-map for this compilation.
6727 Delay calling compilation-set-window-height until after running
6728 compilation-process-setup-function so it can buffer-local override
6729 compilation-window-height.
6730 Check buffer-local value of compilation-scroll-output.
6731 (compilation-set-window-height): Use buffer-local value of
6732 compilation-window-height.
6733 (compilation-revert-buffer): Don't pass (undefined)
6734 preserve-modes arg to revert-buffer.
6735 (next-error-no-select, previous-error-no-select): New commands.
6736 (compilation-goto-locus): Temporarily highlight current match in
6737 source buffer using compilation-highlight-regexp.
6738
6739 * progmodes/grep.el: New file with grep code from compile.el.
6740 (grep): New defcustom group.
6741 (grep-window-height): New defcustom, like compilation-window-height.
6742 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
6743 (grep-scroll-output): New defcustom, like compilation-scroll-output.
6744 (grep-command, grep-use-null-device, grep-find-command)
6745 (grep-tree-files-aliases, grep-tree-ignore-case)
6746 (grep-tree-ignore-CVS-directories): Move to grep custom group.
6747 (grep-setup-hook): New hook variable.
6748 (grep-mode-map): New keymap for grep commands. Add Grep menu.
6749 (grep-last-buffer): New defvar, override compilation-last-buffer.
6750 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
6751 Call compile-internal with args highlight-regexp and grep-mode-map.
6752
6753 2003-11-23 Kim F. Storm <storm@cua.dk>
6754
6755 * subr.el (event-start, event-end): Doc fix.
6756 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
6757 (posn-area, posn-actual-col-row, posn-object): New defuns.
6758 (posn-col-row): Simplify doc. Rewrite to use cond.
6759 (posn-point): Also return buffer position for events outside text
6760 area (that info is now present in the event position).
6761
6762 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
6763 mouse-set-point so that hscroll still works now that clicks on
6764 fringes generate specific mouse events.
6765 (mouse-set-point): Note that it now works in fringes and margins
6766 too due to new semantics of posn-point in fringes and margins.
6767
6768 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
6769 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
6770
6771 2003-11-20 Kim F. Storm <storm@cua.dk>
6772
6773 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
6774 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
6775 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
6776 to 100 for icons to avoid increasing line height when shown.
6777
6778 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
6779
6780 * newcomment.el (comment-normalize-vars): Initialize properly if
6781 comment-start was nil.
6782
6783 2003-11-19 Andreas Schwab <schwab@suse.de>
6784
6785 * simple.el (set-variable): Fix indentation.
6786
6787 2003-11-17 Kenichi Handa <handa@m17n.org>
6788
6789 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
6790 Fix docstring.
6791
6792 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
6793
6794 * international/latin1-disp.el (latin1-display): Fix docstring.
6795
6796 2003-11-16 John Wiegley <johnw@newartisans.com>
6797
6798 * eshell/em-ls.el (eshell-ls-file): There are times with
6799 size-width is nil and uncomputed (when directories are created in
6800 dired, for example); in this case, 4 is reasonable default value,
6801 although it may caused skewed new entries (which could be avoided
6802 by returning the original value of 8 in all cases, but 99% of the
6803 time this is a waste of whitespace).
6804
6805 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
6806
6807 * cc-engine.el (c-guess-continued-construct)
6808 (c-guess-basic-syntax): Check a little more carefully if it's a
6809 function declaration when an unknown construct followed by a block
6810 is found inside a statement context. This avoids macros followed
6811 by blocks to be taken as function declarations.
6812
6813 (c-guess-continued-construct): Change the analysis of a statement
6814 continuation with a brace open to `substatement-block', for
6815 consistency with recognized statements.
6816
6817 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
6818 start is in a position so that `c-beginning-of-statement-1' jumped
6819 to the beginning of the same statement.
6820
6821 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
6822 Don't accept binary operators in the arglist if we're in a function
6823 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
6824 template recognition in cases like "if (a < b || c > d)".
6825
6826 (c-restricted-<>-arglists): New more appropriate name for
6827 `c-disallow-comma-in-<>-arglists'.
6828
6829 Accessing functions updated for the variable name change.
6830
6831 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
6832 match data could get clobbered if NOT-INSIDE-TOKEN is used.
6833
6834 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
6835 labels.
6836
6837 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
6838 instead of duplicating parts of it. This fixes bogus label
6839 recognition.
6840
6841 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
6842 of checking the context in which to apply the minimum indentation,
6843 so that it isn't enforced in e.g. namespace blocks.
6844
6845 * cc-vars.el (c-inside-block-syms): New constant used by
6846 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
6847 to somewhat reduce the risk of becoming stale.
6848
6849 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
6850 cc-cmds to cc-engine to allow use from cc-align.
6851
6852 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
6853 qualified identifiers containing "::".
6854
6855 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
6856 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
6857
6858 * cc-vars.el (c-emacs-features): Use a space in front of the name
6859 of the temporary buffer. That also avoids dumping problems in
6860 XEmacs due to undo info being left around after the buffer is killed.
6861
6862 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
6863 arglist to see if it's a K&R style declaration.
6864
6865 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
6866 before returning `knr-argdecl-intro'.
6867
6868 2003-11-16 John Wiegley <johnw@newartisans.com>
6869
6870 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
6871 field in a long-listing always 8 characters, use `size-width',
6872 which has already been computed.
6873
6874 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
6875
6876 * subr.el (minor-mode-list): Add `hs-minor-mode'.
6877
6878 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
6879
6880 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
6881 Support operation while narrowed, with `diff-restrict-view'.
6882
6883 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
6884
6885 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6886 Take additional optional arg NARROWFUN. For the generated functions:
6887 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
6888 include frags that arrange to check for and save narrowing state before
6889 the move and then conditionally call NARROWFUN after the move.
6890
6891 2003-11-14 John Wiegley <johnw@newartisans.com>
6892
6893 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
6894 that was optional, but obviously missing based on surrounding code.
6895
6896 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
6897 string arguments to numbers unless the whole argument was seen as
6898 a number.
6899
6900 2003-11-14 Kenichi Handa <handa@m17n.org>
6901
6902 * international/mule.el (ctext-non-standard-encodings-alist):
6903 Fix coding systems.
6904
6905 2003-11-10 Kenichi Handa <handa@m17n.org>
6906
6907 * language/kannada.el ("Kannada"): Add sample-text.
6908
6909 * language/knd-util.el (kannada-compose-region)
6910 (kannada-compose-string, kannada-post-read-conversion):
6911 Add autoload cookie.
6912
6913 * international/quail.el (quail-completion): Change the message
6914 "corresponding translations" to "corresponding characters".
6915
6916 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
6917
6918 * descr-text.el (describe-char): Fix typo.
6919
6920 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
6921
6922 These changes are to support Kannada language/script.
6923
6924 * Makefile.in (DONTCOMPILE): Add kannada.el.
6925
6926 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
6927
6928 * loadup.el: Preload kannada.el.
6929
6930 * language/ind-util.el (ucs-kannada-to-is13194-alist)
6931 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
6932 New variables.
6933
6934 * language/kannada.el: New file.
6935
6936 * language/knd-util.el: New file.
6937
6938 2003-11-07 Andreas Schwab <schwab@suse.de>
6939
6940 * progmodes/autoconf.el (autoconf-font-lock-keywords):
6941 Also highlight AH_*.
6942
6943 * xml.el (xml-parse-dtd): Fix misplaced paren.
6944
6945 2003-11-07 Kenichi Handa <handa@m17n.org>
6946
6947 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
6948
6949 2003-11-05 Juri Linkov <juri@jurta.org>
6950
6951 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
6952 (desktop-buffer-file): Use saved buffer-file-coding-system
6953 for file reading. Set auto-insert to nil to prevent automatic
6954 insertion into restored empty files.
6955
6956 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
6957
6958 * files.el (risky-local-variable-p): Make second argument optional.
6959
6960 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6961
6962 * subr.el (add-hook): Fix last change.
6963
6964 2003-11-03 Eli Zaretskii <eliz@gnu.org>
6965
6966 * mail/rmail.el (rmail-convert-to-babyl-format):
6967 If base64-decode-region signals an error, catch it and silently
6968 ignore it.
6969
6970 2003-11-01 Mark A. Hershberger <mah@everybody.org>
6971
6972 * xml.el (xml-parse-region): Allow comments to appear after the
6973 topmost element has closed.
6974 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
6975 (xml-ns-expand-attr): New functions to do namespace handling.
6976 (xml-intern-attrlist): Back-compatible handling of attribute names.
6977 (xml-parse-tag): Move namespace handling to separate functions.
6978 Now produces elements in the form ((:ns . "element") (attr-list)
6979 children) instead of ('ns:element (attr-list) children).
6980 (xml-parse-attlist): Fix attribute parsing.
6981 (xml-parse-dtd): Change parsing so that it produces strings
6982 instead of interned symbols.
6983
6984 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
6985
6986 * dired.el (dired-ls-sorting-switches): Doc fix.
6987
6988 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
6989
6990 * emacs-lisp/rx.el (rx-or): Fix the case of
6991 "(rx (and ?a (or ?b ?c) ?d))".
6992
6993 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
6994
6995 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
6996 (texinfo-format-region): Use it.
6997 (texinfo-format-buffer-1): Ditto.
6998
6999 2003-11-01 Alan Mackenzie <acm@muc.de>
7000
7001 Changes to allow scrolling whilst in isearch mode:
7002 * isearch.el (isearch-unread-key-sequence): New function,
7003 extracted from isearch-other-meta-char.
7004 (top level): (put 'foo 'isearch-scroll) on all Emacs's
7005 "scrollable" standard functions.
7006 (isearch-allow-scroll): New customizable variable.
7007 (isearch-string-out-of-window, isearch-back-into-window)
7008 (isearch-reread-key-sequence-naturally)
7009 (isearch-lookup-scroll-key): New functions.
7010 (isearch-other-meta-char): Doc string and functionality enhanced.
7011 Now accepts a prefix argument.
7012 (isearch-lazy-highlight-window-end): New variable.
7013 (isearch-lazy-highlight-new-loop): Pay attention to the window's
7014 end (thru isearch-lazy-highlight-window-end), not only its start.
7015
7016 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
7017 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
7018 (universal-argument, universal-argument-more, negative-argument)
7019 (digit-argument, universal-argument-other-key): Minor changes.
7020
7021 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7022
7023 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
7024 recursively if the last message is deleted, thus avoiding an
7025 infinite loop.
7026
7027 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7028
7029 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
7030 (tex-main-file): Don't add .tex if the extension is already present.
7031 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
7032
7033 2003-10-29 Lute Kamstra <lute@gnu.org>
7034
7035 * progmodes/octave-inf.el (inferior-octave-prompt):
7036 Recognize version number in prompt.
7037
7038 2003-10-28 Dave Love <fx@gnu.org>
7039
7040 * international/characters.el: Fix some Unicode ranges.
7041
7042 2003-10-28 Kenichi Handa <handa@m17n.org>
7043
7044 * disp-table.el (standard-display-8bit)
7045 (standard-display-default, standard-display-ascii)
7046 (standard-display-g1, standard-display-graphic)
7047 (standard-display-underline): Assure that standard-display-table
7048 is a display table.
7049
7050 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
7051
7052 * simple.el (reindent-then-newline-and-indent): Delete space *after*
7053 reindenting the first line.
7054
7055 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
7056
7057 * wid-edit.el (widget-default-delete): Always delete child widgets.
7058
7059 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7060
7061 * newcomment.el (comment-indent): Don't call indent-according-to-mode
7062 if the line has code.
7063 Don't try to line up with something that's too far left.
7064
7065 * progmodes/octave-mod.el (octave-comment-start): Simplify.
7066 (octave-mode-syntax-table): Add % as a comment starter.
7067 (octave-point): Remove.
7068 (octave-in-comment-p, octave-in-string-p)
7069 (octave-not-in-string-or-comment-p, calculate-octave-indent)
7070 (octave-blink-matching-block-open, octave-auto-fill):
7071 Use line-(beginning|end)-position instead.
7072
7073 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
7074
7075 * emacs-lisp/authors.el (authors-aliases): Add correct realname
7076 for Francesco Potort\e,Al\e(B.
7077
7078 2003-10-23 Dave Love <fx@gnu.org>
7079
7080 * international/mule-cmds.el (locale-charset-to-coding-system):
7081 Don't rely on nil being a coding system.
7082
7083 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
7084 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
7085 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
7086
7087 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
7088
7089 * gdb-ui.el (gdb-current-language): New variable.
7090 (gdb-update-flag): Remove variable.
7091 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
7092 (gdb-take-last-elt): Remove function.
7093 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
7094 (gdb-post-prompt): Check for variable object changes here.
7095
7096 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
7097 object changes in gdb-ui.el.
7098
7099 2003-10-21 Richard M. Stallman <rms@gnu.org>
7100
7101 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
7102
7103 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
7104 Don't check for foo*/ wildcard form here.
7105 (insert-directory): Recognize foo*/ as a wildcard.
7106 Separate wildcard-regexp variable from the arg, wildcard.
7107
7108 * subr.el (add-hook): Correctly detect when make-local-hook was used.
7109 (remove-hook): Correctly handle strange cases about local hooks.
7110
7111 2003-10-21 David Ponce <david@dponce.com>
7112
7113 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
7114 argument REAL, to return a real number instead of a rounded
7115 integer value. Define as inline function.
7116 (ruler-mode-right-fringe-cols): Likewise.
7117 (ruler-mode-scroll-bar-cols): New function.
7118 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
7119 (ruler-mode-right-scroll-bar-cols): Likewise.
7120 (ruler-mode-space): New function.
7121 (ruler-mode-ruler): Use it. Handle variations of fringe style,
7122 scroll bar mode and margins in a more robust way.
7123
7124 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
7125
7126 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
7127 (antlr-c-init-language-vars): New function.
7128 (antlr-mode): Use it with cc-mode before v5.29.
7129 (antlr-c-common-init): Don't set some local vars here.
7130 (antlr-mode): Set them here.
7131 (antlr-c-forward-sws): New function alias.
7132 (antlr-mode): Redefine with cc-mode before v5.30.
7133 (antlr-skip-sexps): Use it.
7134 (antlr-skip-exception-part): Ditto.
7135 (antlr-skip-file-prelude): Ditto.
7136 (antlr-outside-rule-p): Ditto.
7137 (antlr-end-of-body): Ditto.
7138 (antlr-option-kind): Ditto.
7139 (antlr-insert-option-area): Ditto.
7140 (antlr-file-dependencies): Ditto.
7141
7142 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7143
7144 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
7145 Move backward only if point was not inside an entry.
7146
7147 2003-10-21 Richard M. Stallman <rms@gnu.org>
7148
7149 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
7150
7151 2003-10-21 Juri Linkov <juri@jurta.org>
7152
7153 * compare-w.el: Automatically skip non-matching text to resync.
7154 (compare-windows-whitespace): Doc fix.
7155 (compare-windows-sync, compare-windows-sync-string-size)
7156 (compare-windows-recenter, compare-ignore-whitespace)
7157 (compare-windows-highlight, compare-windows-face): New variables.
7158 (compare-windows): Use compare-windows-sync.
7159 (compare-windows-highlight, compare-windows-dehighlight)
7160 (compare-windows-sync-regexp)
7161 (compare-windows-sync-default-function): New functions.
7162
7163 2003-10-21 Juri Linkov <juri@jurta.org>
7164
7165 * diff.el (diff-parse-differences): Don't visit the files now;
7166 instead, just record the error locus.
7167
7168 2003-10-21 Dave Love <fx@gnu.org>
7169
7170 * progmodes/cfengine.el: New file.
7171
7172 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7173
7174 * complete.el (PC-do-completion): Do not forget to use `pred' as the
7175 default-directory when completing file names.
7176
7177 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
7178
7179 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
7180 followed by the word `face', it gets treated as a face, even if
7181 it is also defined as a variable or a function.
7182
7183 2003-10-20 Dave Love <fx@gnu.org>
7184
7185 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7186 Avoid incf in macro expansion.
7187
7188 2003-10-20 John Paul Wallington <jpw@gnu.org>
7189
7190 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
7191 `evenp' so we don't implicitly require cl library at runtime.
7192
7193 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
7194
7195 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
7196 (help-make-xrefs): Only make cross-references for faces if
7197 preceded or followed by the word `face'. Do not make a
7198 cross-reference for variables without variable documentation,
7199 unless preceded by the word `variable' or `option'. Update doc
7200 string accordingly.
7201
7202 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
7203
7204 * progmodes/hideshow.el: Rewrite one-armed `if'
7205 constructs using either `when' or `unless'.
7206 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
7207
7208 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
7209
7210 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
7211 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
7212 instead of 12x12.
7213
7214 2003-10-16 Eli Zaretskii <eliz@gnu.org>
7215
7216 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
7217 message while converting to Babyl.
7218
7219 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
7220
7221 * allout.el (allout-mode): Doc fix.
7222
7223 2003-10-16 Lute Kamstra <lute@gnu.org>
7224
7225 * subr.el (force-mode-line-update): Fix docstring.
7226
7227 2003-10-14 Dave Love <fx@gnu.org>
7228
7229 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
7230 (default-input-method): Add :link, improve :type.
7231 (locale-charset-language-names): Fix utf-8 pattern.
7232 (locale-charset-match-p, locale-charset-alist)
7233 (locale-charset-to-coding-system): New.
7234 (set-locale-environment): Deal with codeset part of locale specs.
7235
7236 2003-10-14 Lute Kamstra <lute@gnu.org>
7237
7238 * fringe.el (fringe-mode): Use active voice in docstring.
7239 (set-fringe-style): Ditto.
7240
7241 2003-10-13 Lute Kamstra <lute@gnu.org>
7242
7243 * fringe.el (fringe-mode): Fix docstring.
7244 (set-fringe-style): Ditto.
7245
7246 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
7247
7248 * ediff-mult.el (ediff-filegroup-action):
7249 Use ediff-default-filtering-regexp.
7250
7251 * ediff-util.el (ediff-recenter): Don't call
7252 ediff-restore-highlighting twice.
7253 (ediff-select-difference): Set current difference.
7254 (ediff-unselect-and-select-difference): Add comment.
7255
7256 * ediff.el (ediff-directories,ediff-directory-revisions)
7257 (ediff-directories3,ediff-merge-directories)
7258 (ediff-merge-directories-with-ancestor)
7259 (ediff-merge-directory-revisions)
7260 (ediff-merge-directory-revisions-with-ancestor):
7261 Use ediff-default-filtering-regexp.
7262
7263 2003-10-12 Andreas Schwab <schwab@suse.de>
7264
7265 * international/mule-cmds.el (locale-charset-language-names):
7266 Simplify regex by removing unused grouping.
7267
7268 2003-10-10 Dave Love <fx@gnu.org>
7269
7270 * bindings.el: Don't bind stop.
7271
7272 2003-10-08 Miles Bader <miles@gnu.org>
7273
7274 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
7275 face instead of attempting to emulate it.
7276
7277 2003-10-07 Kenichi Handa <handa@m17n.org>
7278
7279 * international/mule-diag.el (list-coding-systems-1): List coding
7280 systems that are loaded automatically.
7281
7282 * international/code-pages.el (iso-8859-11): Add autoload cookie.
7283
7284 * international/mule.el (autoload-coding-system): New function.
7285
7286 2003-10-07 Andreas Schwab <schwab@suse.de>
7287
7288 * log-edit.el (log-edit-changelog-entries): Prefer local value of
7289 change-log-default-name in the buffer visiting the file.
7290
7291 2003-10-06 Dave Love <fx@gnu.org>
7292
7293 * files.el (find-file-hook): Customize.
7294 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
7295
7296 * bindings.el (completion-ignored-extensions): Remove .log.
7297 (global-map): Add again, open, stop keys.
7298
7299 2003-10-05 Richard M. Stallman <rms@gnu.org>
7300
7301 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
7302 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
7303 Use sh-modify directly.
7304 (sh-select): Use sh-append, not eval.
7305
7306 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
7307
7308 * info.el (Info-following-node-name): New function.
7309
7310 * loadhist.el (unload-feature-special-hooks):
7311 Rename from loadhist-hook-functions.
7312 (loadhist-hook-functions): Now an alias.
7313
7314 2003-10-04 Eli Zaretskii <eliz@gnu.org>
7315
7316 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
7317 file-name clashes on 8+3 filesystems.
7318
7319 * Makefile.in (DONTCOMPILE, bootstrap-clean):
7320 Rename loaddefs-boot.el to ldefs-boot.el
7321
7322 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
7323 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
7324
7325 2003-10-03 Lute Kamstra <lute@gnu.org>
7326
7327 * info.el (Info-mode): Revert previous change.
7328 (Info-escape-percent): New function.
7329 (Info-fontify-node): Use it.
7330
7331 2003-10-02 Andreas Schwab <schwab@suse.de>
7332
7333 * loaddefs-boot.el: Regenerated.
7334
7335 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
7336
7337 * ffap.el: Remove defadvice related code from CVS since `complete'
7338 provides a `PC-completion-as-file-name-predicate' variable that
7339 ffap can override.
7340
7341 2003-10-02 Kenichi Handa <handa@m17n.org>
7342
7343 * international/utf-8.el (ccl-decode-mule-utf-8):
7344 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
7345
7346 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
7347 * international/subst-big5.el: Likewise.
7348 * international/subst-gb2312.el: Likewise.
7349 * international/subst-ksc.el: Likewise.
7350
7351 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
7352
7353 * calendar/calendar.el (increment-calendar-month)
7354 (calendar-leap-year-p, calendar-absolute-from-gregorian)
7355 (generate-calendar, calendar-read-date, calendar-interval)
7356 (calendar-day-of-week): Handle years BC.
7357 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
7358
7359 2003-10-01 Dave Love <fx@gnu.org>
7360
7361 * language/cyrillic.el (cp1251): Alias for windows-1251.
7362
7363 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
7364 bootstrap.
7365
7366 2003-10-01 Lute Kamstra <lute@gnu.org>
7367
7368 * files.el: Fix typo.
7369 * imenu.el (imenu--generic-function): Docstring fix.
7370
7371 2003-09-30 Richard M. Stallman <rms@gnu.org>
7372
7373 * dired.el (dired-mode): Handle dired-directory as a list.
7374
7375 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
7376
7377 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
7378
7379 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
7380
7381 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
7382 Replace gud-display with gud-watch.
7383 (gud-speedbar-buttons): Add stuff for watching expressions
7384 in the speedbar when using M-x gdba. Use dolist on old part
7385 of this function.
7386
7387 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
7388 (gdb-update-flag): New variables.
7389 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
7390 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
7391 (gud-watch, gdb-var-create-handler) : New functions.
7392 (gdb-var-list-children, gdb-var-list-children-handler)
7393 (gdb-var-create-regexp, gdb-var-update-regexp)
7394 (gdb-var-list-children-regexp): New constants.
7395 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
7396 (gdb-annotation-rules): Reduce annotation set (level 3).
7397 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
7398 (gdb-post-prompt): Don't update GDB buffers every time speedbar
7399 updates.
7400 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
7401 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
7402 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
7403 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
7404 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
7405 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
7406 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
7407 (gud-display, gud-display1)
7408 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
7409 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
7410 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
7411 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
7412 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
7413 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
7414 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
7415 (gdb-display-display-buffer, gdb-toggle-display)
7416 (gdb-delete-display, gdb-expressions-popup-menu)
7417 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
7418 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
7419 to display buffer.
7420
7421 2003-09-30 Richard M. Stallman <rms@gnu.org>
7422
7423 * progmodes/ada-mode.el (ada-mode): Don't use advice.
7424 Instead, set which-func-functions.
7425
7426 * progmodes/which-func.el (which-func-modes): Add ada-mode.
7427 (which-func-functions): New variable.
7428 (which-function): Use that.
7429
7430 * info.el (Info-mode): Double each `%' in header line.
7431
7432 * emacs-lisp/lisp-mnt.el (lm-with-file):
7433 When FILE is nil, run BODY in current buffer.
7434
7435 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
7436
7437 * help.el (describe-mode): Start with a brief list of minor modes.
7438 Find them thru minor-mode-list so as to find them all.
7439 Show them in alphabetical order.
7440
7441 * mail/sendmail.el (mail-aliases): Doc fix.
7442
7443 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
7444
7445 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
7446
7447 * mail/rmailsum.el (rmail-make-summary-line-1):
7448 Change comma after last label to a space.
7449 (rmail-summary-font-lock-keywords): Adapt to that change.
7450
7451 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
7452
7453 * progmodes/scheme.el (scheme-mode-variables): When setting
7454 `font-lock-defaults', also specify that "#" should
7455 be interpreted with `word' syntax.
7456 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
7457
7458 2003-09-30 Lars Hansen <larsh@math.ku.dk>
7459
7460 * desktop.el: A lot of comments updated.
7461 (desktop-save-mode): Minor mode introduced.
7462 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
7463 (desktop-load-default): Function made obsolete.
7464 (desktop-locals-to-save): Variable made customizable.
7465 (desktop-read): Optional parameter `dirname' added.
7466 (desktop-change-dir, desktop-revert): Parameter `dirname' in
7467 `desktop-read' used.
7468 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
7469
7470 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
7471
7472 * whitespace.el (whitespace-clean-msg): Add user customizable message
7473 for displaying ``clean'' output.
7474 (whitespace-buffer): Use `whitespace-clean-msg'.
7475 (whitespace-global-mode): Fix typo.
7476
7477 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
7478
7479 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
7480
7481 2003-09-29 Lute Kamstra <lute@gnu.org>
7482
7483 * bindings.el (mode-line-modes): Remove superfluous :propertize
7484 construct in initialization.
7485 (mode-line-position): Change cons cell into proper list in
7486 initialization.
7487
7488 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
7489
7490 * international/mule.el (decode-coding-inserted-region): Use car
7491 of the return value of find-operation-coding-system.
7492
7493 2003-09-29 Kenichi Handa <handa@m17n.org>
7494
7495 * descr-text.el (describe-char): Fix previous change.
7496
7497 2003-09-28 Kenichi Handa <handa@m17n.org>
7498
7499 * descr-text.el (describe-char-display): New function.
7500 (describe-char): Pay attention to display table on describing how
7501 a character is displayed.
7502
7503 * international/mule-cmds.el (encoded-string-description):
7504 Prepend "0x" to each encoded byte.
7505
7506 2003-09-28 Andreas Schwab <schwab@suse.de>
7507
7508 * find-file.el (ff-special-constructs): Add autoload cookie.
7509
7510 2003-09-28 Kevin Ryde <user42@zip.com.au>
7511
7512 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
7513 makeinfo appends to duplicate index entries.
7514
7515 2003-09-28 Eli Zaretskii <eliz@gnu.org>
7516
7517 * dired-x.el (dired-clean-tex): Doc fix.
7518
7519 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
7520 using a Chinese tutorial.
7521
7522 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7523
7524 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
7525 between "MAIL FROM:" and "RCPT TO:" and the following address.
7526
7527 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
7528
7529 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
7530
7531 2003-09-28 David Ponce <david@dponce.com>
7532
7533 * recentf.el (recentf-initialize-file-name-history): New defcustom.
7534 (recentf-load-list): When `recentf-initialize-file-name-history'
7535 is non-nil, initialize an empty `file-name-history' with the
7536 recent list.
7537
7538 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
7539
7540 * man.el (Man-default-man-entry): Remove the leading `*' from the
7541 word at point.
7542
7543 2003-09-26 Lute Kamstra <lute@gnu.org>
7544
7545 * bindings.el (mode-line-position): Mention size indication in
7546 docstring.
7547
7548 2003-09-26 Andre Spiegel <spiegel@gnu.org>
7549
7550 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
7551
7552 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
7553 because it's autoloaded now.
7554
7555 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
7556
7557 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
7558 (sh-font-lock-keywords, sh-feature): Fix previous change of
7559 sh-feature to avoid infloop with sh-font-lock-keywords.
7560
7561 2003-09-25 Kim F. Storm <storm@cua.dk>
7562
7563 * frame.el (frame-current-scroll-bars): New defun.
7564
7565 * window.el (window-current-scroll-bars): New defun.
7566
7567 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7568
7569 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
7570 cause errors when the state cache contains info on parts that have
7571 been narrowed out.
7572
7573 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7574
7575 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
7576 `c-setup-paragraph-variables' has to be used when this variable is
7577 changed; it doesn't work to reinitialize the mode since that
7578 typically clobbers the variable.
7579
7580 * progmodes/cc-styles.el (c-setup-paragraph-variables):
7581 Make it interactive.
7582
7583 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7584
7585 * progmodes/cc-fonts.el (c-font-lock-declarations):
7586 Fix recognition of constructors and destructors for classes whose
7587 names are matched by `*-font-lock-extra-types'.
7588
7589 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
7590 followed by an identifier in C++ then it's a type.
7591
7592 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7593
7594 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
7595 problem that primarily affected XEmacs. Don't use faces to find
7596 unterminated strings since Emacs and XEmacs fontify strings
7597 differently - this function should now work better in XEmacs.
7598
7599 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7600
7601 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
7602 `expand-abbrev' workaround which caused braces to misbehave inside
7603 macros.
7604
7605 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
7606 handling. This bug could cause interactive font locking to bail out.
7607
7608 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7609
7610 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
7611 Handle paren-style types in Pike. Also fixed some cases of
7612 insufficient handling of unbalanced parens.
7613
7614 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
7615
7616 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
7617 common shell prompts that are not common filename or URL characters.
7618 (ffap-file-at-point): Use the new regexp to strip the prompts from
7619 the file names. This is an issue mostly for user prompts that
7620 don't have a trailing space and find-file-at-point is invoked from
7621 within a shell inside Emacs.
7622
7623 2003-09-24 Andre Spiegel <spiegel@gnu.org>
7624
7625 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
7626 stamps numerically, rather than textually.
7627
7628 2003-09-24 Kenichi Handa <handa@m17n.org>
7629
7630 * language/devan-util.el (devanagari-post-read-conversion):
7631 * language/mlm-util.el (malayalam-post-read-conversion):
7632 * language/tml-util.el (tamil-post-read-conversion):
7633 Add autoload cookie.
7634
7635 * international/utf-8.el (utf-8-post-read-conversion):
7636 Call post-read-conversion functions for Devanagari, Malayalam,
7637 and Tamil.
7638
7639 2003-09-23 Dave Love <fx@gnu.org>
7640
7641 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
7642
7643 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
7644
7645 * progmodes/gud.el (perldb): Add gud-until to list of commands.
7646 Update gud-remove.
7647
7648 2003-09-22 Richard M. Stallman <rms@gnu.org>
7649
7650 * progmodes/sh-script.el (sh-mode-default-syntax-table):
7651 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
7652 (sh-mode-syntax-table-input): New variable.
7653 (sh-require-final-newline): Don't use eval.
7654 (sh-builtins, sh-leading-keywords, sh-other-keywords)
7655 (sh-variables, sh-font-lock-keywords): Don't use eval.
7656 (sh-set-shell): When setting require-final-newline,
7657 treat value = `require-final-newline' as don't change it.
7658 Set sh-mode-syntax-table locally based on
7659 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
7660
7661 * progmodes/compile.el (compile-internal):
7662 Call compilation-set-window-height before setting window start.
7663
7664 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
7665
7666 * emacs-lisp/bytecomp.el (byte-compile-log-file):
7667 Clear out byte-compile-last-warned-form.
7668
7669 2003-09-22 Richard M. Stallman <rms@gnu.org>
7670
7671 * woman.el (woman-file-name, woman-follow-word):
7672 If current-word returns nil, use "".
7673
7674 * simple.el (eval-expression): Bind standard-output in to-buffer case.
7675
7676 2003-09-22 Richard M. Stallman <rms@gnu.org>
7677
7678 * emacs-lisp/lisp-mnt.el (lm-with-file):
7679 Don't visit the file, just use insert-file-contents in temp buffer.
7680
7681 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
7682
7683 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
7684 Add surrounding \\( and \\) around the header, as in
7685 for lm-history-header 'Change Log\\|History'.
7686
7687 2003-09-22 John Paul Wallington <jpw@gnu.org>
7688
7689 * progmodes/ld-script.el: Add Commentary section,
7690 minor cleanup of file header.
7691 (ld-script-font-lock-keywords): Doc fix.
7692 (toplevel): Provide `ld-script' feature.
7693
7694 2003-09-21 Kim F. Storm <storm@cua.dk>
7695
7696 * scroll-bar.el (set-scroll-bar-mode): Initialize to
7697 new built-in variable default-frame-scroll-bars.
7698 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
7699 scroll-bar-mode; notably, use it instead of t when we toggle
7700 scroll-bars on.
7701 (toggle-scroll-bar): Use default-frame-scroll-bars.
7702
7703 2003-09-19 Masatake YAMATO <jet@gyve.org>
7704
7705 * pcvs.el (cvs-do-removal): Change the prompt depending on
7706 `filter' value.
7707
7708 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
7709
7710 * startup.el (command-line-1): Stop startup-echo-area-message
7711 being hidden by "Loading image..." message.
7712 (use-fancy-splash-screens-p, display-splash-screen):
7713 Move display-graphic-p test from latter to former.
7714
7715 * progmodes/sh-script.el (sh-font-lock-keywords):
7716 Highlight escaped EOLs differently from other backslash constructs.
7717
7718 2003-09-19 Richard M. Stallman <rms@gnu.org>
7719
7720 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
7721 New functions.
7722 (edebug-enter, edebug-outside-excursion): Use them.
7723
7724 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7725 Fix the condition for whether to print "In WHERE".
7726
7727 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
7728
7729 * finder.el (finder-mode-hook): New variable.
7730 (finder-mode): Run hook finder-mode-hook
7731
7732 2003-09-18 Masatake YAMATO <jet@gyve.org>
7733
7734 * progmodes/ebrowse.el: Fix broken magic autoload comments.
7735
7736 2003-09-17 Mario Lang <mlang@delysid.org>
7737
7738 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
7739 "p %e" to actually print the value in the GUD buffer.
7740
7741 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
7742
7743 From David Ponce <david.ponce@wanadoo.fr>:
7744 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
7745 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
7746 from loaddefs-boot.el if necessary.
7747
7748 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
7749
7750 * progmodes/gud.el (gud-find-class): Make jdb work again since
7751 cc-mode changed the syntactic information.
7752
7753 2003-09-15 David Ponce <david@dponce.com>
7754
7755 * recentf.el: (recentf-exclude): Accept predicates too.
7756 (recentf-file-readable-p): New function.
7757 (recentf-include-p): Handle predicates in recentf-exclude.
7758 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
7759 (recentf-cleanup): Likewise.
7760 (recentf-save-list): Use write-file to handle backup of
7761 recentf-save-file.
7762
7763 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
7764
7765 * loaddefs-boot.el: Renamed from `loaddefs.el'
7766 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
7767 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
7768 necessary.
7769
7770 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
7771
7772 * electric.el (Electric-pop-up-window): For the `one-window' case,
7773 no longer disconcertingly move point in the original buffer.
7774
7775 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7776
7777 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
7778
7779 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
7780
7781 * dired.el (dired-mode-map): Fix typo.
7782
7783 2003-09-11 Richard M. Stallman <rms@gnu.org>
7784
7785 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
7786
7787 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
7788
7789 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
7790 the function is less noisy. Now only `kill-buffer' can ask questions.
7791
7792 2003-09-10 Mario Lang <mlang@delysid.org>
7793
7794 * battery.el: Update Commentary and Copyright.
7795 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
7796 appear due to wrong ordering of the expressions in `or'.
7797
7798 2003-09-09 Lute Kamstra <lute@gnu.org>
7799
7800 * misc.el (upcase-char): Fix docstring.
7801 (zap-up-to-char): New command.
7802
7803 2003-09-08 David Ponce <david@dponce.com>
7804
7805 Ensure that recentf correctly updates the menu bar.
7806 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
7807 (recentf-menu-bar): New function.
7808 (recentf-clear-data): Use it
7809 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
7810 of easy-menu-change.
7811
7812 2003-09-08 Lute Kamstra <lute@gnu.org>
7813
7814 * simple.el (size-indication-mode): New.
7815 * bindings.el (mode-line-position): Add buffer size indicator.
7816
7817 2003-09-04 Mario Lang <mlang@delysid.org>
7818
7819 * battery.el (battery-linux-proc-acpi): New function.
7820 (battery-status-function): Modify default value calculation to also
7821 check for availability of ACPI.
7822 (battery-echo-area-format): Ditto.
7823 (battery-mode-line-format): Ditto.
7824
7825 2003-09-06 Dave Love <fx@gnu.org>
7826
7827 * ielm.el (ielm-mode-hook): Add :options.
7828
7829 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
7830 (eldoc-print-current-symbol-info): Use it.
7831
7832 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
7833
7834 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
7835 being displayed in GUD buffer.
7836 (gdb-idle-input-queue): Remove var. Use just one queue.
7837 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
7838 Remove functions. Use just one queue.
7839 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
7840 (gdb-invalidate-assembler, gdb-get-current-frame):
7841 Modify functions. Use just one queue.
7842
7843 2003-09-04 Dave Love <fx@gnu.org>
7844
7845 * cus-start.el: Add blink-cursor-alist.
7846
7847 * ruler-mode.el (ruler-mode-fill-column-char)
7848 (ruler-mode-current-column-char): Use char-displayable-p,
7849 not window-system.
7850
7851 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
7852
7853 * language/european.el (windows-1252): Move from code-pages.
7854
7855 * language/cyrillic.el ("Windows-1251"): Delete.
7856 ("Bulgarian", "Belarusian"): Remove `features'.
7857 (windows-1251): Move from code-pages.
7858
7859 * international/mule-diag.el (non-iso-charset-alist):
7860 Remove `codepage' stuff.
7861 (print-designation, list-coding-systems-1): Output fixes.
7862
7863 * international/code-pages.el (cp-make-translation-table)
7864 (cp-valid-codes): Made defsubsts.
7865 (cp-fix-safe-chars): Delete.
7866 (mule-diag): Don't require.
7867 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
7868 (top-level): Check for defined coding system when defining
7869 cp... aliases. Change w32-add-charset-info test to avoid warning.
7870 (non-iso-charset-alist): Defvar when compiling.
7871 (cp-make-coding-system): Doc fix.
7872
7873 2003-09-02 Jason Rumney <jasonr@gnu.org>
7874
7875 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
7876 line-ends from CVS before doing conversion.
7877
7878 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
7879
7880 * calendar/diary-lib.el (diary-header-line-flag)
7881 (diary-header-line-format): New variables.
7882 (list-diary-entries): Use them to set header line in simple diary.
7883
7884 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
7885 other than font-lock-string-face to highlight backslashes.
7886
7887 2003-09-01 Jason Rumney <jasonr@gnu.org>
7888
7889 * international/titdic-cnv.el (tit-read-key-value): Include \r in
7890 regexp.
7891
7892 2003-09-01 Dave Love <fx@gnu.org>
7893
7894 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
7895
7896 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
7897 and :help; also line and column numbers labels.
7898
7899 * international/mule-util.el (char-displayable-p): Move from
7900 latin1-disp, rename and autoload.
7901
7902 * international/latin1-disp.el (latin1-char-displayable-p):
7903 Now obsolete alias. Replace uses with char-displayable-p.
7904 (latin1-display-ucs-per-lynx): Fix last change.
7905
7906 * international/mule-cmds.el (standard-display-european-internal):
7907 Don't use char code for Latin-1 NBSP.
7908 <XFree86 4>: Unfrob NBSP display table. Set display table to use
7909 U+2018, U+2019 for `'.
7910 (select-safe-coding-system): Message fix.
7911
7912 2003-09-01 Kenichi Handa <handa@m17n.org>
7913
7914 * international/fontset.el (setup-default-fontset): For Thai
7915 font, specify "*" family.
7916
7917 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
7918
7919 * progmodes/compile.el (previous-error): Accept a prefix
7920 argument, similarly to next-error.
7921
7922 2003-08-31 Masatake YAMATO <jet@gyve.org>
7923
7924 * pcvs.el (cvs-do-removal): Use = instead of eq to check
7925 the number of files. Bind the number of files to a local
7926 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
7927
7928 2003-08-30 Eli Zaretskii <eliz@gnu.org>
7929
7930 * vc-hooks.el (vc-make-version-backup): Fix the change made on
7931 2003-07-26: msdos-long-file-names is a function, not a variable.
7932
7933 2003-08-29 Richard M. Stallman <rms@gnu.org>
7934
7935 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
7936 Do nothing with mail-personal-alias-file if it is nil.
7937
7938 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
7939 Do nothing if mail-personal-alias-file is nil.
7940
7941 * term.el (term-exec-1): Bind coding-system-for-read.
7942
7943 * dired.el (dired-mouse-find-file-other-window):
7944 Use dired-view-command-alist here, as in dired-view-file.
7945 (dired-view-command-alist): Use %s to substitute file name.
7946 Handle .ps_pages, .eps, .jpg, .gif, .png.
7947
7948 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
7949
7950 * info.el (Info-mode-map): Bind S-tab and <backtab> to
7951 `Info-prev-reference', instead of M-tab.
7952
7953 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
7954
7955 * simple.el (blink-matching-open): Work correctly on chars that
7956 are designated as parens through the syntax-table text property.
7957
7958 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
7959
7960 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
7961 line break position in the middle of a non-kinsoku (e.g. latin)
7962 word, making it skip until either a space or a character with
7963 category "|".
7964 (kinsoku-longer): Test for end of buffer.
7965
7966 2003-08-28 Eli Zaretskii <eliz@gnu.org>
7967
7968 * mail/rmail.el (rmail-convert-to-babyl-format):
7969 Detect quoted-printable- and base64-encoded messages and decode them
7970 automatically. Set the message's encoding from the charset=
7971 header, if any. Decode base64-encoded messages in Mail format as well.
7972
7973 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
7974
7975 * mail/smtpmail.el: Fix previous change.
7976 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
7977 calling smtpmail-via-smtp.
7978 (smtpmail-via-smtp): Add fall-back values for envelope-from.
7979
7980 2003-08-26 John Paul Wallington <jpw@gnu.org>
7981
7982 * image.el (image-jpeg-p): Don't search beyond length of data.
7983
7984 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
7985
7986 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
7987 misfeature in `expand-abbrev' which caused electric keywords like
7988 "else" to disappear if an open brace was typed directly afterwards.
7989
7990 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
7991
7992 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
7993 mandatory in `define-widget'.
7994
7995 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
7996 Don't align the operators "!=", "<=" and ">=" as assignment operators.
7997
7998 (c-assignment-operators): New language constant that only contains
7999 the assignment operators.
8000
8001 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
8002
8003 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
8004
8005 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
8006 Safeguard against unbalanced sexps.
8007
8008 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
8009
8010 * version.el (emacs-version): Check for gtk. Include gtk version info.
8011
8012 2003-08-25 John Paul Wallington <jpw@gnu.org>
8013
8014 * man.el (Man-default-man-entry): Don't whizz past the section
8015 number before looking for it.
8016
8017 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
8018
8019 * progmodes/gud.el (gud-display-line): Don't set window-point if
8020 source buffer is not visible. (Only happens with M-x gdba.)
8021
8022 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
8023 documentation.
8024 (gdb-source, gdb-source-info): Update to assembler unnecessary
8025 as its done after each GDB command anyway.
8026 (gdb-pre-prompt): Use with-current-buffer.
8027 (gdb-insert-field): Add help-echo text.
8028 (gdb-invalidate-assembler): Re-display of assembler now done in
8029 gdb-info-breakpoints-custom.
8030 (gdb-info-breakpoints-custom): Force re-display of assembler to
8031 happen *after* update of breakpoints buffer.
8032 (gdb-display-source-buffer): Don't choke if gdb-source-window
8033 isn't visible.
8034 (gdb-put-string, gdb-put-arrow): Remove free variables.
8035
8036 2003-08-24 John Paul Wallington <jpw@gnu.org>
8037
8038 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
8039
8040 * man.el (Man-default-man-entry): Strip text properties when
8041 snarfing parts of entry because `format' preserves properties.
8042
8043 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8044
8045 * files.el (file-newest-backup): Use `expand-file-name'.
8046
8047 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
8048 Allow the diary to pop up a new frame, if needed.
8049
8050 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
8051 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
8052 (smtpmail-send-it): Make treatment of envelope-from consistent with
8053 sendmail.el.
8054
8055 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
8056 (sh-leading-keywords): Add the bash `time' reserved word.
8057 (sh-variables): Add some bash variables.
8058 (sh-add-completer): Fix nil branch of case statement.
8059
8060 2003-08-24 Masatake YAMATO <jet@gyve.org>
8061
8062 * progmodes/ld-script.el: New file.
8063
8064 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
8065
8066 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
8067
8068 2003-08-23 Andre Spiegel <spiegel@gnu.org>
8069
8070 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
8071 Better explain obsolescence, and what to use instead.
8072
8073 2003-08-23 Masatake YAMATO <jet@gyve.org>
8074
8075 * pcvs.el (cvs-do-removal): Show the deleted file name
8076 on the prompt.
8077
8078 2003-08-20 Dave Love <fx@gnu.org>
8079
8080 * international/mule.el (make-coding-system)
8081 (set-buffer-file-coding-system): Doc fix.
8082
8083 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
8084
8085 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
8086
8087 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
8088
8089 * international/utf-16.el: Add mime-text-unsuitable coding system
8090 properties.
8091
8092 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
8093
8094 * cus-edit.el: Add some :links.
8095 (bib): Remove.
8096
8097 * textmodes/bib-mode.el (bib): Add :group external.
8098
8099 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
8100
8101 * wid-edit.el (widget-echo-help): Make it handle expressions that
8102 evaluate to strings.
8103
8104 2003-08-18 Michael Mauger <mmaug@yahoo.com>
8105
8106 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
8107
8108 Simplify selection of SQL products to define highlighting and
8109 interactive mode. Includes detailed instructions on adding
8110 support for new products.
8111
8112 * progmodes/sql.el (sql-product): New variable. Identifies SQL
8113 product for use in highlighting and interactive mode.
8114 (sql-interactive-product): New variable. SQL product for
8115 sql-interactive-mode.
8116 (sql-product-support): New variable. Specifies product-specific
8117 parameters to drive highlighting and interactive mode.
8118 (sql-imenu-generic-expression): Add more object types.
8119 (sql-sqlite-options): Correct comment.
8120 (sql-ms-program): Use "osql" rather than "isql".
8121 (sql-prompt-regexp, sql-prompt-length): Update comment.
8122 (sql-mode-menu): Add "Start SQLi session" entry.
8123 Replace Highlighting submenu with Product menu. Fix Send Region entry.
8124 (sql-mode-abbrev-table): Add abbreviations. Support of
8125 SYSTEM-FLAG on define-abbrev. Support was removed with last
8126 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
8127 (sql-mode-font-lock-object-name): Add font-lock pattern for object
8128 names.
8129 (sql-mode-ansi-font-lock-keywords): Set as default value.
8130 (sql-mode-oracle-font-lock-keywords): Set as default value.
8131 Support Oracle 9i keywords.
8132 (sql-mode-postgres-font-lock-keywords): Set as default value.
8133 (sql-mode-linter-font-lock-keywords): Set as default value.
8134 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
8135 SQLServer 2000.
8136 (sql-mode-sybase-font-lock-keywords)
8137 (sql-mode-interbase-font-lock-keywords)
8138 (sql-mode-sqlite-font-lock-keywords)
8139 (sql-mode-strong-font-lock-keywords)
8140 (sql-mode-mysql-font-lock-keywords)
8141 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
8142 keywords.
8143 (sql-mode-font-lock-defaults): Update comment.
8144 (sql-product-feature): New function. Returns feature associated
8145 with a product from `sql-product-support' alist.
8146 (sql-product-font-lock): New function. Set font-lock support
8147 based on `sql-product'.
8148 (sql-add-product-keywords): New function. Add font-lock rules to
8149 product-specific keyword variables.
8150 (sql-set-product): New function. Set `sql-product' and apply
8151 appropriate font-lock highlighting.
8152 (sql-highlight-product): New function. Set font-lock support
8153 based on a product. Also set mode name to include product name.
8154 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
8155 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
8156 Use `sql-set-product'.
8157 (sql-highlight-ms-keywords)
8158 (sql-highlight-sybase-keywords)
8159 (sql-highlight-interbase-keywords)
8160 (sql-highlight-strong-keywords)
8161 (sql-highlight-mysql-keywords)
8162 (sql-highlight-sqlite-keywords)
8163 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
8164 (sql-get-login): Prompt in the same order as the tokens.
8165 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
8166 (sql-product-interactive): New function. Common portions of
8167 product-specific interactive mode wrappers.
8168 (sql-interactive-mode): Rewritten to use product features.
8169 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
8170 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
8171 (sql-db2, sql-linter): Use `sql-product-interactive'.
8172 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
8173 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
8174 (sql-connect-ingres, sql-connect-postgres)
8175 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
8176 New functions. Format command line parameters and invoke comint on
8177 the appropriate interpreter. Code was in the corresponding
8178 `sql-xyz' function before.
8179 (sql-connect-ms): New function. Support -E argument to use
8180 operating system credentials for authentication.
8181
8182 2003-08-18 Kenichi Handa <handa@m17n.org>
8183
8184 * international/mule.el (encode-char): Fix for the ASCII case.
8185
8186 2003-08-15 Kenichi Handa <handa@m17n.org>
8187
8188 * international/fontset.el (setup-default-fontset): Change "*" to
8189 nil in the specifications of font family.
8190
8191 2003-08-18 Kim F. Storm <storm@cua.dk>
8192
8193 * kmacro.el (kmacro-keymap): Group related bindings in
8194 initialization for clarity. Bind C-s to start macro.
8195 Remove C-r binding.
8196 (kmacro-initial-counter-value): New defvar to hold initial counter
8197 value in case we set the value before defining a macro.
8198 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
8199 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
8200 not defining or executing macro. Doc fix.
8201 (kmacro-add-counter): Clear kmacro-initial-counter-value.
8202 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
8203 temporarily view older elements on the macro ring without cycling
8204 the ring.
8205 (kmacro-display): Doc fix.
8206 (kmacro-exec-ring-item): New helper function.
8207 (kmacro-call-ring-2nd): Use it.
8208 (kmacro-call-ring-2nd-repeat): Doc fix.
8209 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
8210 (kmacro-end-or-call-macro): Execute last viewed macro (using
8211 kmacro-exec-ring-item) from ring if this follows
8212 kmacro-view-macro. This allows us to find a macro on the ring
8213 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
8214 the ring to bring it to the head of the ring.
8215 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
8216 Allow binding to reserved keys without specifying C-x C-k prefix.
8217 Ask for confirmation if entered key sequence is already bound to
8218 a non-macro command.
8219 (kmacro-view-macro): Repeating command will show older elements
8220 on the macro ring; C-k will execute the last viewed macro.
8221 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
8222 property from 'ring to 'head.
8223
8224 2003-08-17 Alan Shutko <ats@acm.org>
8225
8226 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
8227 keeping December out of the alist.
8228
8229 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
8230
8231 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
8232 * calendar/calendar.el (calendar-mode-map): Bind it to key.
8233 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
8234 (calendar-flatten): New function.
8235 (calendar-mouse-view-other-diary-entries)
8236 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
8237 in the menu title and to show multi-line diary entries correctly
8238 in the menu.
8239
8240 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
8241
8242 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
8243 defcustom, because the default was recently changed.
8244
8245 2003-08-16 Richard M. Stallman <rms@gnu.org>
8246
8247 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
8248
8249 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8250 New subroutine, broken out of eval-last-sexp-1.
8251 (eval-last-sexp-1): Use eval-last-sexp-print-value.
8252
8253 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
8254
8255 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
8256
8257 * simple.el (eval-expression): Use eval-last-sexp-print-value.
8258
8259 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
8260
8261 * progmodes/compile.el (compilation-error-regexp-alist):
8262 Add Java ANt error detection as described in document
8263 http://ant.apache.org/faq.html
8264
8265 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
8266
8267 * simple.el (backward-word, forward-to-indentation)
8268 (backward-to-indentation): Argument changed to optional.
8269 (next-line, previous-line): Use `or' instead of `unless'.
8270
8271 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8272
8273 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
8274 instead of a constant.
8275
8276 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
8277
8278 * shell.el (shell): With prefix-arg, suggest a new buffer name.
8279
8280 2003-08-12 Andre Spiegel <spiegel@gnu.org>
8281
8282 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
8283 (vc-sccs-workfile-version): Search the entire delta table, rather
8284 than just the first entry, because that might be a deleted version.
8285
8286 2003-08-11 Karl Fogel <kfogel@red-bean.com>
8287
8288 * menu-bar.el (menu-bar-options-menu): Supply a body for the
8289 [save-place] binding in the Options menu. Have it require
8290 'saveplace' and then toggle the variable manually, to avoid an an
8291 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
8292 for the bug report.
8293
8294 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
8295
8296 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
8297 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
8298 (gdb-info-threads-custom): Add help-echo text.
8299 (gdb-display-back): Don't use purecopy.
8300 (gdb-info-breakpoints-custom, gdb-reset)
8301 (gdb-assembler-custom): Use display-images-p to test if breakpoint
8302 icons can be displayed.
8303
8304 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
8305
8306 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
8307
8308 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
8309
8310 * bookmark.el (bookmark-completing-read):
8311 Return a string, instead of a list of one string.
8312 Use a popup menu if activated from the mouse.
8313 (bookmark-edit-annotation): Remove unused vars.
8314 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
8315 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
8316 to bookmark-completing-read.
8317 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8318 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
8319 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
8320 and erase-buffer.
8321 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
8322 (bookmark-menu-jump, bookmark-menu-insert)
8323 (bookmark-popup-menu-and-apply-function)
8324 (bookmark-menu-popup-paned-bookmark-menu): Remove.
8325 (bookmark-menu-build-paned-menu): Remove by folding it into
8326 bookmark-menu-popup-paned-menu.
8327 (menu-bar-bookmark-map): Move the define-key statements here.
8328 Use the "non-menu" commands since they now pop up a menu if needed.
8329 (bookmark-exit-hook-internal): Simplify.
8330
8331 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
8332
8333 * reftex-toc.el (reftex-toc-rename-label): New function.
8334 (reftex-toc-check-docstruct): New function.
8335
8336 * reftex.el (reftex-region-active-p): New function.
8337
8338 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
8339 regexp to find the \bibliography macro.
8340
8341 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
8342 which does not exist in LaTeX.
8343 (reftex-cite-format-builtin): Added amsrefs support.
8344 (reftex-toc-confirm-promotion): New option
8345
8346 * reftex-toc.el
8347 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
8348 (reftex-toc-demote, reftex-toc-promote)
8349 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8350 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8351 (reftex-toc-newhead-from-alist)
8352 (reftex-toc-load-all-files-for-promotion): New functions.
8353 (reftex-toc-help): Added description of new keys.
8354 (reftex-toc-split-windows-fraction): New option.
8355 (reftex-recenter-toc-when-idle): Search *toc* window on all
8356 visible frames.
8357 (reftex-toc): Additional parameter REUSE
8358 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
8359 with REUSE argument.
8360 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
8361 the call of `reftex-toc'.
8362 (reftex-make-separate-toc-frame): New function .
8363 (reftex-toc-recenter): When called with triple prefix arg, call
8364 `reftex-make-separate-toc-frame' first.
8365 (reftex-toc-toggle-dedicated-frame): New command.
8366 (reftex-toc-quit): Adapted to delete frame when called in
8367 dedicated frame.
8368
8369 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
8370 all enclosing macros.
8371
8372
8373 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8374
8375 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
8376 first use.
8377
8378 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8379
8380 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
8381
8382 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
8383
8384 * calendar/calendar.el (list-diary-entries-hook)
8385 (diary-display-hook, nongregorian-diary-listing-hook)
8386 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
8387 Add some customize options for these hooks.
8388 (calendar-abbrev-construct): Don't try to take a substring longer
8389 than the original string.
8390
8391 2003-08-05 Richard M. Stallman <rms@gnu.org>
8392
8393 * emacs-lisp/testcover.el (noreturn): Report error if does return.
8394 (testcover-reinstrument-clauses): Doc fix.
8395
8396 * emacs-lisp/warnings.el: Doc fixes, args renamed.
8397 (warning-type-format): Rename from warning-group-format.
8398
8399 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
8400 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
8401 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
8402 to prevent warnings about defvar for an obsolete variable.
8403
8404 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
8405 warning-group-format renamed to warning-type-format.
8406
8407 * subr.el (read-passwd): Use clear-string instead of fillarray.
8408
8409 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
8410 Use vconcat instead of concat.
8411 (edmacro-sanitize-for-string): New function.
8412
8413 2003-08-05 Dave Love <fx@gnu.org>
8414
8415 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
8416 line-number-display-limit-width.
8417
8418 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
8419
8420 2003-08-05 Kenichi Handa <handa@m17n.org>
8421
8422 * international/code-pages.el: Don't require mule-diag.
8423
8424 * international/mule-diag.el (non-iso-charset-alist):
8425 Add autoload cookie.
8426
8427 * language/devan-util.el (dev-glyph-order): Add an entry for the
8428 glyph code #xC4.
8429
8430 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
8431
8432 * calendar/calendar.el (diary-file, diary-file-name-prefix)
8433 (european-calendar-style, diary-date-forms)
8434 (calendar-day-name-array, calendar-month-name-array): Doc change.
8435 (generate-calendar-month): Adapt for new behaviour of
8436 `calendar-day-name' function.
8437 (calendar-abbrev-length, calendar-day-abbrev-array)
8438 (calendar-month-abbrev-array): New variables.
8439 (calendar-abbrev-construct): New function.
8440 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
8441 rather than fixing abbrevs at some width. Calling syntax change.
8442 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
8443 (calendar-date-string): Adapt for new behaviours of
8444 `calendar-day-name' and `calendar-month-name' functions.
8445
8446 * calendar/diary-lib.el (list-diary-entries): Adapt for new
8447 behaviour of `calendar-day-name' and `calendar-month-name' functions.
8448 (diary-name-pattern): Use abbrev arrays, rather than fixing
8449 abbrevs at three chars. Calling syntax change.
8450 (mark-diary-entries): Adapt for new behaviours of
8451 `diary-name-pattern' and `calendar-make-alist' functions.
8452 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
8453 `diary-name-pattern' function.
8454 (font-lock-diary-date-forms): Use abbrev arrays, rather than
8455 fixing abbrevs at three chars. Calling syntax change.
8456 (cal-hebrew, cal-islam): Require when compiling.
8457 (diary-font-lock-keywords): Adapt for new behaviour of
8458 `font-lock-diary-date-forms' function.
8459
8460 * calendar/cal-hebrew.el: Reposition some code so defined before used.
8461 (calendar-hebrew-month-name-array-common-year)
8462 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
8463 (list-hebrew-diary-entries): Adapt for new behaviours of
8464 `calendar-day-name' and `add-to-diary-list' functions.
8465 (mark-hebrew-diary-entries): Adapt for new behaviours of
8466 `diary-name-pattern' and `calendar-make-alist' functions.
8467
8468 * calendar/cal-islam.el (calendar-islamic-month-name-array):
8469 Add doc string.
8470 (list-islamic-diary-entries): Adapt for new behaviours of
8471 `calendar-day-name' and `add-to-diary-list' functions.
8472 (mark-islamic-diary-entries): Adapt for new behaviours of
8473 `diary-name-pattern' and `calendar-make-alist' functions.
8474
8475 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
8476 `calendar-month-name' function.
8477
8478 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
8479
8480 * calendar/solar.el (solar-seasons-data): Move definition before use.
8481
8482 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
8483 (cal-tex-LaTeX-hourbox): Move definition before use.
8484
8485 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
8486 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
8487 lunar.el, solar.el
8488 (displayed-month, displayed-year): Define for compiler.
8489
8490 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8491
8492 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
8493 MODE. Renamed from c-init-c-language-vars'.
8494 (c-initialize-cc-mode): Change accordingly.
8495 (c-common-init): Ditto.
8496 (c-mode): Ditto.
8497 (c++-mode): Use `c-init-language-vars-for'.
8498 (objc-mode): Ditto.
8499 (java-mode): Ditto.
8500 (idl-mode): Ditto.
8501 (pike-mode): Ditto.
8502 (awk-mode): Ditto.
8503
8504 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
8505
8506 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
8507 or not the point moved.
8508
8509 (c-search-decl-header-end): Don't trip up on operator identifiers
8510 in C++ and operators like == in all languages.
8511
8512 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
8513 Detect leading labels correctly.
8514
8515 2003-08-02 Andreas Schwab <schwab@suse.de>
8516
8517 * textmodes/ispell.el: Don't redo key bindings on loading, put
8518 them only in loaddefs.el.
8519 * bookmark.el: Likewise.
8520 * dabbrev.el: Likewise.
8521 * emerge.el: Likewise.
8522
8523 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
8524 has more than one member.
8525
8526 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
8527
8528 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8529
8530 * lpr.el (printify-region): It was ending conversion before the
8531 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
8532
8533 2003-07-31 John Paul Wallington <jpw@gnu.org>
8534
8535 * net/browse-url.el (browse-url-epiphany): Doc fix.
8536
8537 2003-07-30 Kenichi Handa <handa@m17n.org>
8538
8539 * international/fontset.el (setup-default-fontset):
8540 Change registry names of Akurti fonts.
8541
8542 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
8543
8544 * comint.el (comint-read-noecho): Use `clear-string' instead of
8545 `fillarray'.
8546
8547 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
8548
8549 * outline.el (outline-mode-hook): Add defvar.
8550
8551 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
8552
8553 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
8554 Restore assembler in source window if that is what has been selected.
8555 (menu): Add gdb-restore-windows to menu. Make gdba
8556 specific menus only visible from gdba.
8557
8558 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
8559
8560 * progmodes/compile.el (compilation-environment): New user variable.
8561 (compile-internal): Respect it.
8562
8563 2003-07-23 Masatake YAMATO <jet@gyve.org>
8564
8565 * progmodes/gud.el (gdb-script-font-lock-keywords):
8566 Put `font-lock-function-name-face' on a symbol which includes
8567 `-' like `hook-run'. Put font-lock-variable-name-face
8568 on a symbol starting with $.
8569
8570 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
8571
8572 * files.el (set-visited-file-name): Use truename for buffer-file-name.
8573
8574 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8575
8576 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
8577
8578 2003-07-26 Andre Spiegel <spiegel@gnu.org>
8579
8580 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
8581 Use with-no-warnings.
8582 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
8583 rather than to find-file-not-found-hook, which doesn't exist.
8584
8585 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
8586
8587 * international/quail.el (quail-translate-key): Fix previous change.
8588
8589 2003-07-25 John Paul Wallington <jpw@gnu.org>
8590
8591 * server.el (server-start): Check `server-process' is non-nil
8592 before killing it to avoid killing current buffer's process.
8593
8594 * simple.el (choose-completion-string): Use `minibufferp';
8595 test `completion-reference-buffer' if `buffer' arg is nil.
8596 (push-mark): Use `when' and `unless'.
8597 (pop-mark): Use `when'.
8598
8599 * mouse-sel.el (mouse-sel-get-selection-function):
8600 Check `x-last-selected-text-primary'. Don't barf if it or
8601 `x-last-selected-text' aren't bound.
8602
8603 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8604
8605 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
8606
8607 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
8608
8609 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
8610
8611 2003-07-23 John Paul Wallington <jpw@gnu.org>
8612
8613 * tooltip.el (defface tooltip): Inherit from variable-pitch.
8614
8615 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
8616
8617 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
8618 string. Defvar the derived hook.
8619
8620 * macros.el (insert-kbd-macro): Escape double quote character.
8621 From Thomas W Murphy <twm@andrew.cmu.edu>.
8622
8623 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
8624
8625 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
8626 to match the specific mark rather than reusing comment-start-skip.
8627
8628 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
8629
8630 * progmodes/hideshow.el (hs-special-modes-alist):
8631 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
8632
8633 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
8634
8635 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
8636 value using ?\s.
8637
8638 2003-07-21 John Paul Wallington <jpw@gnu.org>
8639
8640 * subr.el (with-selected-window): Add closing paren.
8641
8642 2003-07-21 Richard M. Stallman <rms@gnu.org>
8643
8644 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
8645 (lisp-mode): Likewise.
8646
8647 * subr.el (with-selected-window): Copy code form save-selected-window
8648 so as to call select-window with norecord arg.
8649 (dynamic-completion-table): Doc fix.
8650 (lazy-completion-table): Doc fix.
8651
8652 * international/mule-cmds.el (set-locale-environment):
8653 langinfo renamed to locale-info.
8654
8655 * international/mule.el (auto-coding-functions): Doc fix.
8656
8657 2003-07-21 Kenichi Handa <handa@m17n.org>
8658
8659 * international/quail.el (quail-translate-key):
8660 Update quail-current-str correctly.
8661
8662 2003-07-21 Andreas Schwab <schwab@suse.de>
8663
8664 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
8665 ?, to "_".
8666
8667 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
8668 Version 2.0.36 of Tramp released.
8669
8670 * net/tramp.el (tramp-default-password-end-of-line): Rename from
8671 tramp-password-end-of-line.
8672 (tramp-password-end-of-line): New method parameter.
8673 (tramp-get-password-end-of-line): Function to access method
8674 parameter `tramp-password-end-of-line', or variable
8675 `tramp-default-password-end-of-line' (default value).
8676 (tramp-methods): Add entries for new parameter
8677 tramp-password-end-of-line.
8678 (tramp-enter-password): Use new function
8679 `tramp-get-password-end-of-line'.
8680 (tramp-handle-insert-file-contents): Do not
8681 unconditionally inhibit the file operation file-local-copy, only
8682 do that when the inhibit-file-name-operation is currently
8683 insert-file-contents. This fixes finding remote CVS-controlled
8684 files. (It would barf on inserting the CVS/Entries file
8685 literally, because the file-local-copy handler wasn't called.)
8686 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
8687 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
8688 (tramp-initial-commands): New variable.
8689 (tramp-process-initial-commands): New function, using the variable.
8690 (tramp-open-connection-setup-interactive-shell): Call the new function.
8691 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
8692 method into the buffer name, never use nil. Reported by Hanak
8693 David <dhanak@inf.bme.hu>.
8694 (tramp-open-connection-setup-interactive-shell): Erase buffer
8695 before sending "stty -onlcr".
8696
8697 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
8698
8699 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
8700
8701 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
8702
8703 2003-07-19 John Paul Wallington <jpw@gnu.org>
8704
8705 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
8706 (artist-draw-rect, artist-draw-square): Doc fixes.
8707
8708 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
8709
8710 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
8711
8712 2003-07-19 Kenichi Handa <handa@m17n.org>
8713
8714 * international/kkc.el (kkc-show-conversion-list-update):
8715 Highlight the correct candidate in the message.
8716
8717 2003-07-18 John Paul Wallington <jpw@gnu.org>
8718
8719 * simple.el (current-word): Don't include punctuation char when
8720 `really-word' arg is non-nil.
8721
8722 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
8723
8724 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
8725 moved to the directory obsolete.
8726
8727 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
8728
8729 * info.el (Info-menu-entry-name-re): Allow newlines in
8730 menu entry names.
8731
8732 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
8733 syntax-ppss-after-change-function.
8734 (syntax-ppss-after-change-function): New alias. Update uses.
8735 (syntax-ppss): Catch the case where the buffer is narrowed.
8736
8737 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
8738
8739 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
8740 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
8741
8742 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
8743
8744 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
8745 since it might be modified.
8746
8747 * progmodes/cc-langs.el (c++-make-template-syntax-table)
8748 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
8749 names to these language constants.
8750
8751 2003-07-15 Kim F. Storm <storm@cua.dk>
8752
8753 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
8754 All uses changed.
8755
8756 2003-07-14 Mark A. Hershberger <mah@everybody.org>
8757
8758 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
8759 Namespace support.
8760
8761 2003-07-13 Juanma Barranquero <lektu@terra.es>
8762
8763 * frame.el (modify-all-frames-parameters): Reinstall (copyright
8764 papers received).
8765
8766 2003-07-13 Karl Eichwalder <ke@suse.de>
8767
8768 * textmodes/po.el (po-find-charset): White space at the start of the
8769 Content-Type field body is non-mandatory.
8770
8771 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
8772
8773 * textmodes/texinfo.el (texinfo-section-list):
8774 Append appendixsection; a synonym for appendixsec.
8775
8776 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
8777
8778 * man.el (Man-translate-cleanup): New.
8779 (Man-translate-references): Call `Man-translate-cleanup' to clean
8780 leading, trailing and middle spaces.
8781
8782 2003-07-13 Lars Hansen <larsh@math.ku.dk>
8783
8784 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
8785 Handle `dired-directory' being a list.
8786
8787 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
8788
8789 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
8790 it doesn't exist.
8791
8792 2003-07-12 Richard M. Stallman <rms@gnu.org>
8793
8794 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
8795
8796 * progmodes/cc-defs.el (c-make-keywords-re):
8797 Don't use delete-duplicates.
8798 (c-lang-const): Don't use mapcan.
8799
8800 * apropos.el (apropos-show-scores): Make it customizable.
8801 Document new meaning.
8802 (apropos): Compute scores from symbols.
8803 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
8804
8805 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8806
8807 * ps-bdf.el: Fix copyright line.
8808 (bdf-directory-list): Fix initialization code.
8809
8810 2003-07-11 John Paul Wallington <jpw@gnu.org>
8811
8812 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
8813 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
8814 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
8815
8816 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
8817
8818 * emacs-lisp/ring.el (ring-elements): Doc fix.
8819
8820 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
8821
8822 * calendar/timeclock.el (timeclock-relative)
8823 (timeclock-ask-before-exiting, timeclock-use-display-time):
8824 Doc changes.
8825 (timeclock-modeline-display): Give a message if
8826 `timeclock-use-display-time' is non-nil but `display-time-mode'
8827 is not active.
8828
8829 2003-07-11 Kenichi Handa <handa@m17n.org>
8830
8831 * international/mule-cmds.el (set-language-environment):
8832 Set current-language-environment to the correct string.
8833
8834 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8835
8836 * ps-print.el: Print line number correctly in a region. Reported by
8837 Tim Allen <timallen@ls83.fsnet.co.uk>.
8838 (ps-print-version): New version number (6.6.2).
8839 (ps-printing-region): Code fix.
8840
8841 2003-07-10 John Paul Wallington <jpw@gnu.org>
8842
8843 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
8844 this function can be called from `add-completions-from-tags-table'.
8845
8846 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
8847
8848 * calendar/timeclock.el (timeclock-use-display-time)
8849 (timeclock-day-over-hook, timeclock-workday-remaining)
8850 (timeclock-status-string, timeclock-when-to-leave)
8851 (timeclock-when-to-leave-string, timeclock-log-data)
8852 (timeclock-find-discrep, timeclock-day-base)
8853 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
8854 (timeclock-modeline-display): Set the variable
8855 `timeclock-modeline-display'.
8856 (timeclock-update-modeline): Doc fix. Respect value of
8857 `timeclock-relative'.
8858
8859 2003-07-09 Richard M. Stallman <rms@gnu.org>
8860
8861 * textmodes/reftex-parse.el (reftex-all-document-files):
8862 Add autoload cookie.
8863
8864 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
8865 (reftex-scanning-info-available-p): Add autoload cookie.
8866
8867 * international/mule-cmds.el
8868 (set-display-table-and-terminal-coding-system): Delete duplicate
8869 aset on standard-display-table.
8870
8871 * view.el (view-file): If existing buffer's major mode is special,
8872 don't go into view mode.
8873
8874 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
8875
8876 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8877
8878 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
8879 buffer changes; there's third party code that calls this function
8880 directly.
8881
8882 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8883
8884 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
8885 (autodoc-font-lock-keywords): Don't byte compile on font lock
8886 initialization when running from byte compiled files.
8887
8888 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8889
8890 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
8891 statement ends with auto-increment "++".
8892
8893 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8894
8895 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
8896 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
8897 these are changed, so declare them as variables and not constants.
8898
8899 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
8900
8901 * subr.el (dolist, dotimes): Doc fix.
8902
8903 2003-07-08 Kim F. Storm <storm@cua.dk>
8904
8905 * international/mule-cmds.el
8906 (set-display-table-and-terminal-coding-system): Don't break
8907 bootstrap if standard-display-table isn't setup yet.
8908
8909 2003-07-07 Richard M. Stallman <rms@gnu.org>
8910
8911 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
8912 Give it a doc string, and autoload it.
8913
8914 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
8915 Use with-no-warnings.
8916
8917 * info.el (Info-search): If find invisible text, search again.
8918
8919 * isearch.el (search-whitespace-regexp): Add a shy group around it.
8920
8921 * man.el (Man-name-regexp): Match + as part of name.
8922
8923 * simple.el (visible-mode): Rename from vis-mode.
8924 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
8925
8926 * simple.el (current-word): New arg REALLY-WORD specifies
8927 don't include punctuation chars.
8928
8929 * emacs-lisp/debug.el (debug, debugger-env-macro):
8930 Use with-no-warnings while accessing and binding unread-command-char.
8931
8932 * international/mule-cmds.el
8933 (set-display-table-and-terminal-coding-system): Use explicit loop
8934 instead of calling standard-display-default.
8935
8936 * net/ange-ftp.el (ange-ftp-file-symlink-p):
8937 Use condition-case to catch error in ange-ftp-get-files.
8938
8939 * net/browse-url.el (browse-url-browser-function):
8940 Add alternative for Epiphany.
8941 (browse-url-epiphany-program, browse-url-epiphany-arguments)
8942 (browse-url-epiphany-startup-arguments)
8943 (browse-url-epiphany-new-window-is-tab): New variables.
8944 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
8945
8946 * progmodes/compile.el (compile-auto-highlight): Default now t.
8947 (compile): Doc fix.
8948 (compilation-next-error): Fix previous change.
8949
8950 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
8951
8952 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
8953
8954 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
8955
8956 * gdb-ui.el (gdb-source-info): Display current frame when
8957 attaching to an existing process.
8958 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
8959 while laying out windows when attaching to an existing process.
8960
8961 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
8962
8963 * info.el (Info-menu): Use Info-menu-entry-name-re.
8964
8965 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
8966
8967 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
8968 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
8969
8970 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
8971 to match the same text.
8972
8973 2003-07-06 John Paul Wallington <jpw@gnu.org>
8974
8975 * vc.el (vc-annotate-offset): Move defvar up.
8976
8977 2003-07-06 Kim F. Storm <storm@cua.dk>
8978
8979 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
8980 This should fix the infinite loop when extracting menu names.
8981
8982 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
8983
8984 * files.el (auto-mode-alist, interpreter-mode-alist):
8985 Remove entries to CC Mode modes to avoid duplicates; they are now added
8986 with autoload directives in cc-mode.el.
8987
8988 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
8989
8990 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
8991 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
8992 these are changed, so declare them as variables and not constants.
8993
8994 * progmodes/cc-mode.el: Fix some autoload problems: Try to
8995 ensure that the entry for ".c" extension comes before the one for
8996 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
8997 Fix incorrect entries that were added to `interpreter-mode-alist'.
8998 Move the autoload directives for AWK to the top level since they
8999 aren't recognized anywhere else. Do not use the new AWK mode doc
9000 in the autoload form for the old AWK mode.
9001
9002 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9003
9004 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
9005 (bibtex-sort-ignore-string-entries): Default value t.
9006 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
9007 erroneously in previous version.
9008 (bibtex-string-files): Docstring reflects new parsing scheme.
9009 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
9010 docstring, add # as one of the chars to crush
9011 (bibtex-autokey-prefix-string, bibtex-autokey-names)
9012 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
9013 (bibtex-autokey-name-change-strings)
9014 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
9015 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
9016 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
9017 (bibtex-autokey-title-terminators)
9018 (bibtex-autokey-titlewords-stretch)
9019 (bibtex-autokey-titleword-ignore)
9020 (bibtex-autokey-titleword-case-convert)
9021 (bibtex-autokey-titleword-abbrevs)
9022 (bibtex-autokey-titleword-abbrevs)
9023 (bibtex-autokey-titleword-change-strings)
9024 (bibtex-autokey-titleword-length)
9025 (bibtex-autokey-titleword-separator)
9026 (bibtex-autokey-name-year-separator)
9027 (bibtex-autokey-year-title-separator)
9028 (bibtex-autokey-before-presentation-function)
9029 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
9030 Fix docstring.
9031 (bibtex-strings, bibtex-reference-keys):
9032 Use lazy-completion-table and make-variable-buffer-local.
9033 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
9034 (bibtex-braced-string-syntax-table)
9035 (bibtex-quoted-string-syntax-table): New variables.
9036 (bibtex-parse-nested-braces): Remove.
9037 (bibtex-parse-field-string): Use syntax table and forward-sexp.
9038 (bibtex-parse-association): Simplify.
9039 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
9040 (bibtex-parse-field-text): Simplify.
9041 (bibtex-search-forward-field, bibtex-search-backward-field):
9042 argument BOUND can take value t.
9043 (bibtex-start-of-field, bibtex-start-of-name-in-field)
9044 (bibtex-end-of-name-in-field, bibtex-end-of-field)
9045 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
9046 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
9047 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
9048 (bibtex-skip-to-valid-entry): Return buffer position of beginning
9049 and ending of entry. Update for changes of bibtex-search-entry.
9050 Simplify.
9051 (bibtex-map-entries): FUN is called with three arguments.
9052 (bibtex-search-entry): Return a cons pair with buffer positions of
9053 beginning and end of entry.
9054 (bibtex-enclosing-field): Simplify.
9055 (bibtex-format-entry): Use booktitle to set a missing title.
9056 (bibtex-autokey-get-names): Fiddle with regexps.
9057 (bibtex-generate-autokey): Use identity.
9058 (bibtex-parse-keys): Use simplified parsing algorithm if
9059 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
9060 arguments. Return alist of keys.
9061 (bibtex-parse-strings): Simplify. Return alist of strings.
9062 (bibtex-complete-string-cleanup): Fix docstring.
9063 (bibtex-read-key): New function.
9064 (bibtex-mode): Fix docstring. Do not parse for keys and
9065 strings when the mode is entered. Set fill-paragraph-function to
9066 bibtex-fill-field. Setup font-lock-mark-block-function the way
9067 font-lock intended.
9068 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
9069 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
9070 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
9071 (bibtex-Preamble): Avoid hard coded constants.
9072 (bibtex-make-field): Fix docstring. Simplify.
9073 (bibtex-beginning-of-entry): Always return new position of point.
9074 (bibtex-end-of-entry): Rearrange cond clauses.
9075 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
9076 Update for changes of bibtex-map-entries.
9077 (bibtex-ispell-abstract): Do not move point.
9078 (bibtex-entry-index): Use downcase. Simplify.
9079 (bibtex-lessp): Handle catch-all.
9080 (bibtex-find-crossref): Turn into a command.
9081 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
9082 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
9083 preamble entries.
9084 (bibtex-fill-field-bounds): New function.
9085 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
9086 (bibtex-fill-entry): Use bibtex-fill-field-bounds
9087 (bibtex-String): Use bibtex-strings. Always obey
9088 bibtex-sort-ignore-string-entries.
9089
9090 2003-07-05 John Paul Wallington <jpw@gnu.org>
9091
9092 * cus-theme.el (customize-create-theme):
9093 Call `customize-create-theme' in Reset widget's notify function.
9094
9095 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
9096 (ibuffer-mark-interactive): Use `or' instead of `unless'.
9097 (define-ibuffer-column name): Add summarizer.
9098 (define-ibuffer-column size): Likewise.
9099 (define-ibuffer-column filename): Likewise.
9100 (define-ibuffer-column process): Likewise. Change BODY's output too.
9101 (define-ibuffer-column filename-and-process): Likewise, likewise.
9102 (ibuffer): Remove local vars `already-in' and `need-update'.
9103
9104 * ibuf-ext.el: Don't require `derived' at compile-time.
9105
9106 2003-07-05 Kim F. Storm <storm@cua.dk>
9107
9108 * info.el: Disable paragraph refilling.
9109 (Info-refill-paragraphs): New defcustom.
9110 (Info-fontify-node): Use it.
9111
9112 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
9113
9114 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
9115 thingies from constructors created by defstruct.
9116
9117 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
9118 the default value of the variable.
9119 (byte-code-meter): Move declaration to top level.
9120
9121 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
9122
9123 * info.el (Info-following-node-name-re): New fun.
9124 (Info-following-node-name): Remove.
9125 (Info-insert-dir): Use the new fun.
9126 (Info-extract-pointer): Don't save restriction; use new fun.
9127 (Info-menu-entry-name-re): New const.
9128 (Info-menu-entry-name-re): Use it along with new fun.
9129 (Info-node-spec-re): Use new fun.
9130 (Info-complete-menu-item, Info-fontify-node): Use new const.
9131 (Info-goto-node, Info-follow-reference, Info-menu-update):
9132 Use match-string.
9133 (Info-follow-reference): Use assoc-string.
9134 Use a list of strings for the completion table.
9135 (Info-fontify-node): Use match-string, line-end-position.
9136 Limit the search for `node:' to the first line.
9137
9138 * newcomment.el (uncomment-region): Remove padding coming from
9139 comment-start rather than just from comment-padding.
9140
9141 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
9142 (vc-cvs-stay-local-p): Use vc-stay-local-p.
9143 (vc-cvs-rename-file): Remove (use the default).
9144 (vc-cvs-register): Register parent dir if needed.
9145 (vc-cvs-could-register): Return non-nil if parent can be registered.
9146 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
9147 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
9148
9149 * vc-svn.el (vc-svn-use-edit): Make it into a const.
9150 (vc-svn-update): Fix the arguments to `svn'.
9151 (vc-svn-diff-tree): Just use `vc-svn-diff'.
9152 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
9153 Simple implementations, assuming `name' is a URL.
9154
9155 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
9156 set of chars allowed unquoted in a case pattern.
9157
9158 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
9159
9160 * font-lock.el (font-lock-extra-types-widget)
9161 (c-font-lock-extra-types, c++-font-lock-extra-types)
9162 (objc-font-lock-extra-types, java-font-lock-extra-types)
9163 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
9164 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
9165 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
9166 (font-lock-match-c++-structor-declaration)
9167 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
9168 (c++-font-lock-keywords-3, c++-font-lock-keywords)
9169 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
9170 (objc-font-lock-keywords-3, objc-font-lock-keywords)
9171 (java-font-lock-keywords-1, java-font-lock-keywords-2)
9172 (java-font-lock-keywords-3, java-font-lock-keywords)
9173 (java-font-lock-syntactic-face-function): Remove obsolete code
9174 and constants. It's all in cc-fonts.el now.
9175
9176 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
9177
9178 * mail/sendmail.el (mail-specify-envelope-from)
9179 (mail-envelope-from): Doc fix.
9180
9181 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
9182
9183 * generic-x.el: Do away with the dependency on `c-emacs-features'
9184 when populating `rul-generic-mode-syntax-table'; we already know
9185 this isn't XEmacs.
9186
9187 See ChangeLog.10 for earlier changes.
9188
9189 ;; Local Variables:
9190 ;; coding: iso-2022-7bit
9191 ;; End:
9192
9193 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
9194 Copying and distribution of this file, with or without modification,
9195 are permitted provided the copyright notice and this notice are preserved.
9196
9197 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1