Remove grep-use-compilation-buffer defcustom.
[bpt/emacs.git] / lisp / ChangeLog
1 2003-11-23 Kim F. Storm <storm@cua.dk>
2
3 * progmodes/compile.el (grep-command, grep-use-null-device)
4 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
5 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
6 (grep-regexp-alist, grep-program, find-program)
7 (grep-find-use-xargs, grep-history, grep-find-history)
8 (grep-process-setup, grep-compute-defaults)
9 (grep-default-command, grep, grep-tag-default, grep-find)
10 (grep-expand-command-macros, grep-tree-last-regexp)
11 (grep-tree-last-files, grep-tree): Move grep variables, functions
12 and commands to new file grep.el.
13 (compilation-mode-map): Remove grep commands from Compile sub-menu.
14 (compilation-process-setup-function): Doc fix.
15 (compilation-highlight-regexp, compilation-highlight-overlay): New
16 defvars used for highlighting current compile error in source buffer.
17 (compile-internal): New optional args HIGHLIGHT-REGEXP and
18 LOCAL-MAP which overrides compilation-highlight-regexp and
19 compilation-mode-map for this compilation.
20 Delay calling compilation-set-window-height until after running
21 compilation-process-setup-function so it can buffer-local override
22 compilation-window-height.
23 Check buffer-local value of compilation-scroll-output.
24 (compilation-set-window-height): Use buffer-local value of
25 compilation-window-height.
26 (compilation-revert-buffer): Don't pass (undefined)
27 preserve-modes arg to revert-buffer.
28 (next-error-no-select, previous-error-no-select): New commands.
29 (compilation-goto-locus): Temporarily highlight current match in
30 source buffer using compilation-highlight-regexp.
31
32 * progmodes/grep.el: New file with grep code from compile.el.
33 (grep): New defcustom group.
34 (grep-window-height): New defcustom, like compilation-window-height.
35 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
36 (grep-scroll-output): New defcustom, like compilation-scroll-output.
37 (grep-command, grep-use-null-device, grep-find-command)
38 (grep-tree-files-aliases, grep-tree-ignore-case)
39 (grep-tree-ignore-CVS-directories): Move to grep custom group.
40 (grep-setup-hook): New hook variable.
41 (grep-mode-map): New keymap for grep commands. Add Grep menu.
42 (grep-last-buffer): New defvar, override compilation-last-buffer.
43 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
44 Call compile-internal with args highlight-regexp and grep-mode-map.
45
46 2003-11-23 Kim F. Storm <storm@cua.dk>
47
48 * subr.el (event-start, event-end): Doc fix.
49 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
50 (posn-area, posn-actual-col-row, posn-object): New defuns.
51 (posn-col-row): Simplify doc. Rewrite to use cond.
52 (posn-point): Also return buffer position for events outside text
53 area (that info is now present in the event position).
54
55 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
56 mouse-set-point so that hscroll still works now that clicks on
57 fringes generate specific mouse events.
58 (mouse-set-point): Note that it now works in fringes and margins
59 too due to new semantics of posn-point in fringes and margins.
60
61 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
62 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
63
64 2003-11-20 Kim F. Storm <storm@cua.dk>
65
66 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
67 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
68 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
69 to 100 for icons to avoid increasing line height when shown.
70
71 2003-11-19 Andreas Schwab <schwab@suse.de>
72
73 * simple.el (set-variable): Fix indentation.
74
75 2003-11-17 Kenichi Handa <handa@m17n.org>
76
77 * international/latin1-disp.el (latin1-display-ucs-per-lynx): Fix
78 docstring.
79
80 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
81
82 * international/latin1-disp.el (latin1-display): Fix docstring.
83
84 2003-11-16 John Wiegley <johnw@newartisans.com>
85
86 * eshell/em-ls.el (eshell-ls-file): There are times with
87 size-width is nil and uncomputed (when directories are created in
88 dired, for example); in this case, 4 is reasonable default value,
89 although it may caused skewed new entries (which could be avoided
90 by returning the original value of 8 in all cases, but 99% of the
91 time this is a waste of whitespace).
92
93 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
94
95 * cc-engine.el (c-guess-continued-construct,
96 c-guess-basic-syntax): Check a little more carefully if it's a
97 function declaration when an unknown construct followed by a block
98 is found inside a statement context. This avoids macros followed
99 by blocks to be taken as function declarations.
100
101 (c-guess-continued-construct): Changed the analysis of a statement
102 continuation with a brace open to `substatement-block', for
103 consistency with recognized statements.
104
105 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
106 start is in a position so that `c-beginning-of-statement-1' jumped
107 to the beginning of the same statement.
108
109 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur): Don't
110 accept binary operators in the arglist if we're in a function call
111 context, i.e. if `c-restricted-<>-arglists' is set. That avoids
112 template recognition in cases like "if (a < b || c > d)".
113
114 (c-restricted-<>-arglists): New more appropriate name for
115 `c-disallow-comma-in-<>-arglists'.
116
117 Accessing functions updated for the variable name change.
118
119 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
120 match data could get clobbered if NOT-INSIDE-TOKEN is used.
121
122 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
123 labels.
124
125 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
126 instead of duplicating parts of it. This fixes bogus label
127 recognition.
128
129 * cc-align.el (c-gnu-impose-minimum): Reverted to the old method
130 of checking the context in which to apply the minimum indentation,
131 so that it isn't enforced in e.g. namespace blocks.
132
133 * cc-vars.el (c-inside-block-syms): New constant used by
134 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
135 to somewhat reduce the risk of becoming stale.
136
137 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Moved from
138 cc-cmds to cc-engine to allow use from cc-align.
139
140 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
141 qualified identifiers containing "::".
142
143 * cc-defs.el (c-make-keywords-re): Added kludge for bug in
144 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
145
146 * cc-vars.el (c-emacs-features): Use a space in front of the name
147 of the temporary buffer. That also avoids dumping problems in
148 XEmacs due to undo info being left around after the buffer is
149 killed.
150
151 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
152 arglist to see if it's a K&R style declaration.
153
154 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
155 before returning `knr-argdecl-intro'.
156
157 2003-11-16 John Wiegley <johnw@newartisans.com>
158
159 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
160 field in a long-listing always 8 characters, use `size-width',
161 which has already been computed.
162
163 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
164
165 * subr.el (minor-mode-list): Add `hs-minor-mode'.
166
167 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
168
169 * diff-mode.el (diff-hunk-prev, diff-hunk-next): Support
170 operation while narrowed, with `diff-restrict-view'.
171
172 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
173
174 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Take
175 additional optional arg NARROWFUN. For the generated functions: Add
176 local var `was-narrowed-p'. Also, if NARROWFUN is specified, include
177 frags that arrange to check for and save narrowing state before the
178 move and then conditionally call NARROWFUN after the move.
179
180 2003-11-14 John Wiegley <johnw@newartisans.com>
181
182 * eshell/esh-var.el (eshell-parse-variable-ref): Added a backslash
183 that was optional, but obviously missing based on surrounding
184 code.
185
186 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
187 string arguments to numbers unless the whole argument was seen as
188 a number.
189
190 2003-11-14 Kenichi Handa <handa@m17n.org>
191
192 * international/mule.el (ctext-non-standard-encodings-alist): Fix
193 coding systems.
194
195 2003-11-10 Kenichi Handa <handa@m17n.org>
196
197 * language/kannada.el ("Kannada"): Add sample-text.
198
199 * language/knd-util.el (kannada-compose-region)
200 (kannada-compose-string, kannada-post-read-conversion): Add
201 autoload cookie.
202
203 * international/quail.el (quail-completion): Change the message
204 "corresponding translations" to "corresponding characters".
205
206 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
207
208 * descr-text.el (describe-char): Fix typo.
209
210 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
211
212 These changes are to support Kannada language/script.
213
214 * Makefile.in (DONTCOMPILE): Add kannada.el.
215
216 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
217
218 * loadup.el: Preload kannada.el.
219
220 * language/ind-util.el (ucs-kannada-to-is13194-alist)
221 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
222 New variables.
223
224 * language/kannada.el: New file.
225
226 * language/knd-util.el: New file.
227
228 2003-11-07 Andreas Schwab <schwab@suse.de>
229
230 * progmodes/autoconf.el (autoconf-font-lock-keywords): Also
231 highlight AH_*.
232
233 * xml.el (xml-parse-dtd): Fix misplaced paren.
234
235 2003-11-07 Kenichi Handa <handa@m17n.org>
236
237 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
238
239 2003-11-05 Juri Linkov <juri@jurta.org>
240
241 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
242 (desktop-buffer-file): Use saved buffer-file-coding-system
243 for file reading. Set auto-insert to nil to prevent automatic
244 insertion into restored empty files.
245
246 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
247
248 * files.el (risky-local-variable-p): Make second argument optional.
249
250 2003-11-03 Eli Zaretskii <eliz@elta.co.il>
251
252 * mail/rmail.el (rmail-convert-to-babyl-format): If
253 base64-decode-region signals an error, catch it and silently
254 ignore it.
255
256 2003-11-01 Mark A. Hershberger <mah@everybody.org>
257
258 * xml.el: Allow comments following the top-level element.
259 Separate out namespace parsing into special functions.
260 Change namespace parsing to return ('ns-uri . "local-name")
261 instead of '{ns-uri}local-name.
262
263 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
264
265 * dired.el (dired-ls-sorting-switches): Doc fix.
266
267 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
268
269 * emacs-lisp/rx.el (rx-or): Fix the case of
270 "(rx (and ?a (or ?b ?c) ?d))".
271
272 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
273
274 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
275 (texinfo-format-region): Use it.
276 (texinfo-format-buffer-1): Ditto.
277
278 2003-11-01 Alan Mackenzie <acm@muc.de>
279
280 Changes to allow scrolling whilst in isearch mode:
281 * isearch.el (isearch-unread-key-sequence): New function,
282 extracted from isearch-other-meta-char.
283 (top level): (put 'foo 'isearch-scroll) on all Emacs's
284 "scrollable" standard functions.
285 (isearch-allow-scroll): New customizable variable.
286 (isearch-string-out-of-window, isearch-back-into-window)
287 (isearch-reread-key-sequence-naturally)
288 (isearch-lookup-scroll-key): New functions.
289 (isearch-other-meta-char): Doc string and functionality enhanced.
290 Now accepts a prefix argument.
291 (isearch-lazy-highlight-window-end): New variable.
292 (isearch-lazy-highlight-new-loop): Pay attention to the window's
293 end (thru isearch-lazy-highlight-window-end), not only its start.
294
295 * simple.el (overriding-map-is-bound, saved-overriding-map): New
296 variables.
297 (ensure-overriding-map-is-bound, restore-overriding-map): New
298 functions.
299 (universal-argument, universal-argument-more, negative-argument)
300 (digit-argument, universal-argument-other-key): Minor changes.
301
302 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
303
304 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
305 recursively if the last message is deleted, thus avoiding an
306 infinite loop.
307
308 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
309
310 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
311 (tex-main-file): Don't add .tex if the extension is already present.
312 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
313
314 2003-10-29 Lute Kamstra <lute@gnu.org>
315
316 * progmodes/octave-inf.el (inferior-octave-prompt):
317 Recognize version number in prompt.
318
319 2003-10-28 Dave Love <fx@gnu.org>
320
321 * international/characters.el: Fix some Unicode ranges.
322
323 2003-10-28 Kenichi Handa <handa@m17n.org>
324
325 * disp-table.el (standard-display-8bit)
326 (standard-display-default, standard-display-ascii)
327 (standard-display-g1, standard-display-graphic)
328 (standard-display-underline): Assure that standard-display-table
329 is a display table.
330
331 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
332
333 * simple.el (reindent-then-newline-and-indent): Delete space *after*
334 reindenting the first line.
335
336 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
337
338 * wid-edit.el (widget-default-delete): Always delete child widgets.
339
340 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
341
342 * newcomment.el (comment-indent): Don't call indent-according-to-mode
343 if the line has code.
344 Don't try to line up with something that's too far left.
345
346 * progmodes/octave-mod.el (octave-comment-start): Simplify.
347 (octave-mode-syntax-table): Add % as a comment starter.
348 (octave-point): Remove.
349 (octave-in-comment-p, octave-in-string-p)
350 (octave-not-in-string-or-comment-p, calculate-octave-indent)
351 (octave-blink-matching-block-open, octave-auto-fill):
352 Use line-(beginning|end)-position instead.
353
354 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
355
356 * emacs-lisp/authors.el (authors-aliases): Add correct realname
357 for Francesco Potort\e,Al\e(B.
358
359 2003-10-23 Dave Love <fx@gnu.org>
360
361 * international/mule-cmds.el (locale-charset-to-coding-system):
362 Don't rely on nil being a coding system.
363
364 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
365 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
366 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
367
368 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
369
370 * gdb-ui.el (gdb-current-language): New variable.
371 (gdb-update-flag): Remove variable.
372 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
373 (gdb-take-last-elt): Remove function.
374 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
375 (gdb-post-prompt): Check for variable object changes here.
376
377 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
378 object changes in gdb-ui.el.
379
380 2003-10-21 Richard M. Stallman <rms@gnu.org>
381
382 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
383
384 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
385 Don't check for foo*/ wildcard form here.
386 (insert-directory): Recognize foo*/ as a wildcard.
387 Separate wildcard-regexp variable from the arg, wildcard.
388
389 * subr.el (add-hook): Correctly detect when make-local-hook was used.
390 (remove-hook): Correctly handle strange cases about local hooks.
391
392 2003-10-21 David Ponce <david@dponce.com>
393
394 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
395 argument REAL, to return a real number instead of a rounded
396 integer value. Define as inline function.
397 (ruler-mode-right-fringe-cols): Likewise.
398 (ruler-mode-scroll-bar-cols): New function.
399 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
400 (ruler-mode-right-scroll-bar-cols): Likewise.
401 (ruler-mode-space): New function.
402 (ruler-mode-ruler): Use it. Handle variations of fringe style,
403 scroll bar mode and margins in a more robust way.
404
405 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
406
407 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
408 (antlr-c-init-language-vars): New function.
409 (antlr-mode): Use it with cc-mode before v5.29.
410 (antlr-c-common-init): Don't set some local vars here.
411 (antlr-mode): Set them here.
412 (antlr-c-forward-sws): New function alias.
413 (antlr-mode): Redefine with cc-mode before v5.30.
414 (antlr-skip-sexps): Use it.
415 (antlr-skip-exception-part): Ditto.
416 (antlr-skip-file-prelude): Ditto.
417 (antlr-outside-rule-p): Ditto.
418 (antlr-end-of-body): Ditto.
419 (antlr-option-kind): Ditto.
420 (antlr-insert-option-area): Ditto.
421 (antlr-file-dependencies): Ditto.
422
423 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
424
425 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
426 Move backward only if point was not inside an entry.
427
428 2003-10-21 Richard M. Stallman <rms@gnu.org>
429
430 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
431
432 2003-10-21 Juri Linkov <juri@jurta.org>
433
434 * compare-w.el: Automatically skip non-matching text to resync.
435 (compare-windows-whitespace): Doc fix.
436 (compare-windows-sync, compare-windows-sync-string-size)
437 (compare-windows-recenter, compare-ignore-whitespace)
438 (compare-windows-highlight, compare-windows-face): New variables.
439 (compare-windows): Use compare-windows-sync.
440 (compare-windows-highlight, compare-windows-dehighlight)
441 (compare-windows-sync-regexp)
442 (compare-windows-sync-default-function): New functions.
443
444 2003-10-21 Juri Linkov <juri@jurta.org>
445
446 * diff.el (diff-parse-differences): Don't visit the files now;
447 instead, just record the error locus.
448
449 2003-10-21 Dave Love <fx@gnu.org>
450
451 * progmodes/cfengine.el: New file.
452
453 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
454
455 * complete.el (PC-do-completion): Do not forget to use `pred' as the
456 default-directory when completing file names.
457
458 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
459
460 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
461 followed by the word `face', it gets treated as a face, even if
462 it is also defined as a variable or a function.
463
464 2003-10-20 Dave Love <fx@gnu.org>
465
466 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
467 Avoid incf in macro expansion.
468
469 2003-10-20 John Paul Wallington <jpw@gnu.org>
470
471 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
472 `evenp' so we don't implicitly require cl library at runtime.
473
474 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
475
476 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
477 (help-make-xrefs): Only make cross-references for faces if
478 preceded or followed by the word `face'. Do not make a
479 cross-reference for variables without variable documentation,
480 unless preceded by the word `variable' or `option'. Update doc
481 string accordingly.
482
483 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
484
485 * progmodes/hideshow.el: Rewrite one-armed `if'
486 constructs using either `when' or `unless'.
487 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
488
489 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
490
491 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
492 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
493 instead of 12x12.
494
495 2003-10-16 Eli Zaretskii <eliz@elta.co.il>
496
497 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
498 message while converting to Babyl.
499
500 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
501
502 * allout.el (allout-mode): Doc fix.
503
504 2003-10-16 Lute Kamstra <lute@gnu.org>
505
506 * subr.el (force-mode-line-update): Fix docstring.
507
508 2003-10-14 Dave Love <fx@gnu.org>
509
510 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
511 (default-input-method): Add :link, improve :type.
512 (locale-charset-language-names): Fix utf-8 pattern.
513 (locale-charset-match-p, locale-charset-alist)
514 (locale-charset-to-coding-system): New.
515 (set-locale-environment): Deal with codeset part of locale specs.
516
517 2003-10-14 Lute Kamstra <lute@gnu.org>
518
519 * fringe.el (fringe-mode): Use active voice in docstring.
520 (set-fringe-style): Ditto.
521
522 2003-10-13 Lute Kamstra <lute@gnu.org>
523
524 * fringe.el (fringe-mode): Fix docstring.
525 (set-fringe-style): Ditto.
526
527 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
528
529 * ediff-mult.el (ediff-filegroup-action):
530 Use ediff-default-filtering-regexp.
531
532 * ediff-util.el (ediff-recenter): Don't call
533 ediff-restore-highlighting twice.
534 (ediff-select-difference): Set current difference.
535 (ediff-unselect-and-select-difference): Add comment.
536
537 * ediff.el (ediff-directories,ediff-directory-revisions)
538 (ediff-directories3,ediff-merge-directories)
539 (ediff-merge-directories-with-ancestor)
540 (ediff-merge-directory-revisions)
541 (ediff-merge-directory-revisions-with-ancestor):
542 Use ediff-default-filtering-regexp.
543
544 2003-10-12 Andreas Schwab <schwab@suse.de>
545
546 * international/mule-cmds.el (locale-charset-language-names):
547 Simplify regex by removing unused grouping.
548
549 2003-10-10 Dave Love <fx@gnu.org>
550
551 * bindings.el: Don't bind stop.
552
553 2003-10-08 Miles Bader <miles@gnu.org>
554
555 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
556 face instead of attempting to emulate it.
557
558 2003-10-07 Kenichi Handa <handa@m17n.org>
559
560 * international/mule-diag.el (list-coding-systems-1): List coding
561 systems that are loaded automatically.
562
563 * international/code-pages.el (iso-8859-11): Add autoload cookie.
564
565 * international/mule.el (autoload-coding-system): New function.
566
567 2003-10-07 Andreas Schwab <schwab@suse.de>
568
569 * log-edit.el (log-edit-changelog-entries): Prefer local value of
570 change-log-default-name in the buffer visiting the file.
571
572 2003-10-06 Dave Love <fx@gnu.org>
573
574 * files.el (find-file-hook): Customize.
575 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
576
577 * bindings.el (completion-ignored-extensions): Remove .log.
578 (global-map): Add again, open, stop keys.
579
580 2003-10-05 Richard M. Stallman <rms@gnu.org>
581
582 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
583 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
584 Use sh-modify directly.
585 (sh-select): Use sh-append, not eval.
586
587 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
588
589 * info.el (Info-following-node-name): New function.
590
591 * loadhist.el (unload-feature-special-hooks):
592 Rename from loadhist-hook-functions.
593 (loadhist-hook-functions): Now an alias.
594
595 2003-10-04 Eli Zaretskii <eliz@elta.co.il>
596
597 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
598 file-name clashes on 8+3 filesystems.
599
600 * Makefile.in (DONTCOMPILE, bootstrap-clean):
601 Rename loaddefs-boot.el to ldefs-boot.el
602
603 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
604 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
605
606 2003-10-03 Lute Kamstra <lute@gnu.org>
607
608 * info.el (Info-mode): Revert previous change.
609 (Info-escape-percent): New function.
610 (Info-fontify-node): Use it.
611
612 2003-10-02 Andreas Schwab <schwab@suse.de>
613
614 * loaddefs-boot.el: Regenerated.
615
616 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
617
618 * ffap.el: Remove defadvice related code from CVS since `complete'
619 provides a `PC-completion-as-file-name-predicate' variable that
620 ffap can override.
621
622 2003-10-02 Kenichi Handa <handa@m17n.org>
623
624 * international/utf-8.el (ccl-decode-mule-utf-8):
625 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
626
627 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
628 * international/subst-big5.el: Likewise.
629 * international/subst-gb2312.el: Likewise.
630 * international/subst-ksc.el: Likewise.
631
632 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
633
634 * calendar/calendar.el (increment-calendar-month)
635 (calendar-leap-year-p, calendar-absolute-from-gregorian)
636 (generate-calendar, calendar-read-date, calendar-interval)
637 (calendar-day-of-week): Handle years BC.
638 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
639
640 2003-10-01 Dave Love <fx@gnu.org>
641
642 * language/cyrillic.el (cp1251): Alias for windows-1251.
643
644 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
645 bootstrap.
646
647 2003-10-01 Lute Kamstra <lute@gnu.org>
648
649 * files.el: Fix typo.
650 * imenu.el (imenu--generic-function): Docstring fix.
651
652 2003-09-30 Richard M. Stallman <rms@gnu.org>
653
654 * dired.el (dired-mode): Handle dired-directory as a list.
655
656 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
657
658 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
659
660 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
661
662 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
663 Replace gud-display with gud-watch.
664 (gud-speedbar-buttons): Add stuff for watching expressions
665 in the speedbar when using M-x gdba. Use dolist on old part
666 of this function.
667
668 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
669 (gdb-update-flag): New variables.
670 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
671 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
672 (gud-watch, gdb-var-create-handler) : New functions.
673 (gdb-var-list-children, gdb-var-list-children-handler)
674 (gdb-var-create-regexp, gdb-var-update-regexp)
675 (gdb-var-list-children-regexp): New constants.
676 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
677 (gdb-annotation-rules): Reduce annotation set (level 3).
678 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
679 (gdb-post-prompt): Don't update GDB buffers every time speedbar
680 updates.
681 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
682 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
683 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
684 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
685 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
686 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
687 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
688 (gud-display, gud-display1)
689 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
690 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
691 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
692 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
693 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
694 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
695 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
696 (gdb-display-display-buffer, gdb-toggle-display)
697 (gdb-delete-display, gdb-expressions-popup-menu)
698 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
699 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
700 to display buffer.
701
702 2003-09-30 Richard M. Stallman <rms@gnu.org>
703
704 * progmodes/ada-mode.el (ada-mode): Don't use advice.
705 Instead, set which-func-functions.
706
707 * progmodes/which-func.el (which-func-modes): Add ada-mode.
708 (which-func-functions): New variable.
709 (which-function): Use that.
710
711 * info.el (Info-mode): Double each `%' in header line.
712
713 * emacs-lisp/lisp-mnt.el (lm-with-file):
714 When FILE is nil, run BODY in current buffer.
715
716 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
717
718 * help.el (describe-mode): Start with a brief list of minor modes.
719 Find them thru minor-mode-list so as to find them all.
720 Show them in alphabetical order.
721
722 * mail/sendmail.el (mail-aliases): Doc fix.
723
724 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
725
726 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
727
728 * mail/rmailsum.el (rmail-make-summary-line-1):
729 Change comma after last label to a space.
730 (rmail-summary-font-lock-keywords): Adapt to that change.
731
732 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
733
734 * progmodes/scheme.el (scheme-mode-variables): When setting
735 `font-lock-defaults', also specify that "#" should
736 be interpreted with `word' syntax.
737 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
738
739 2003-09-30 Lars Hansen <larsh@math.ku.dk>
740
741 * desktop.el: A lot of comments updated.
742 (desktop-save-mode): Minor mode introduced.
743 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
744 (desktop-load-default): Function made obsolete.
745 (desktop-locals-to-save): Variable made customizable.
746 (desktop-read): Optional parameter `dirname' added.
747 (desktop-change-dir, desktop-revert): Parameter `dirname' in
748 `desktop-read' used.
749 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
750
751 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
752
753 * whitespace.el (whitespace-clean-msg): Add user customizable message
754 for displaying ``clean'' output.
755 (whitespace-buffer): Use `whitespace-clean-msg'.
756 (whitespace-global-mode): Fix typo.
757
758 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
759
760 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
761
762 2003-09-29 Lute Kamstra <lute@gnu.org>
763
764 * bindings.el (mode-line-modes): Remove superfluous :propertize
765 construct in initialization.
766 (mode-line-position): Change cons cell into proper list in
767 initialization.
768
769 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
770
771 * international/mule.el (decode-coding-inserted-region): Use car
772 of the return value of find-operation-coding-system.
773
774 2003-09-29 Kenichi Handa <handa@m17n.org>
775
776 * descr-text.el (describe-char): Fix previous change.
777
778 2003-09-28 Kenichi Handa <handa@m17n.org>
779
780 * descr-text.el (describe-char-display): New function.
781 (describe-char): Pay attention to display table on describing how
782 a character is displayed.
783
784 * international/mule-cmds.el (encoded-string-description):
785 Prepend "0x" to each encoded byte.
786
787 2003-09-28 Andreas Schwab <schwab@suse.de>
788
789 * find-file.el (ff-special-constructs): Add autoload cookie.
790
791 2003-09-28 Kevin Ryde <user42@zip.com.au>
792
793 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
794 makeinfo appends to duplicate index entries.
795
796 2003-09-28 Eli Zaretskii <eliz@elta.co.il>
797
798 * dired-x.el (dired-clean-tex): Doc fix.
799
800 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
801 using a Chinese tutorial.
802
803 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
804
805 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
806 between "MAIL FROM:" and "RCPT TO:" and the following address.
807
808 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
809
810 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
811
812 2003-09-28 David Ponce <david@dponce.com>
813
814 * recentf.el (recentf-initialize-file-name-history): New defcustom.
815 (recentf-load-list): When `recentf-initialize-file-name-history'
816 is non-nil, initialize an empty `file-name-history' with the
817 recent list.
818
819 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny patch)
820
821 * man.el (Man-default-man-entry): Remove the leading `*' from the
822 word at point.
823
824 2003-09-26 Lute Kamstra <lute@gnu.org>
825
826 * bindings.el (mode-line-position): Mention size indication in
827 docstring.
828
829 2003-09-26 Andre Spiegel <spiegel@gnu.org>
830
831 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
832
833 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
834 because it's autoloaded now.
835
836 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
837
838 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
839 (sh-font-lock-keywords, sh-feature): Fix previous change of
840 sh-feature to avoid infloop with sh-font-lock-keywords.
841
842 2003-09-25 Kim F. Storm <storm@cua.dk>
843
844 * frame.el (frame-current-scroll-bars): New defun.
845
846 * window.el (window-current-scroll-bars): New defun.
847
848 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
849
850 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
851 cause errors when the state cache contains info on parts that have
852 been narrowed out.
853
854 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
855
856 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
857 `c-setup-paragraph-variables' has to be used when this variable is
858 changed; it doesn't work to reinitialize the mode since that
859 typically clobbers the variable.
860
861 * progmodes/cc-styles.el (c-setup-paragraph-variables):
862 Make it interactive.
863
864 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
865
866 * progmodes/cc-fonts.el (c-font-lock-declarations):
867 Fix recognition of constructors and destructors for classes whose
868 names are matched by `*-font-lock-extra-types'.
869
870 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
871 followed by an identifier in C++ then it's a type.
872
873 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
874
875 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
876 problem that primarily affected XEmacs. Don't use faces to find
877 unterminated strings since Emacs and XEmacs fontify strings
878 differently - this function should now work better in XEmacs.
879
880 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
881
882 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
883 `expand-abbrev' workaround which caused braces to misbehave inside
884 macros.
885
886 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
887 handling. This bug could cause interactive font locking to bail out.
888
889 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
890
891 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
892 Handle paren-style types in Pike. Also fixed some cases of
893 insufficient handling of unbalanced parens.
894
895 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
896
897 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
898 common shell prompts that are not common filename or URL characters.
899 (ffap-file-at-point): Use the new regexp to strip the prompts from
900 the file names. This is an issue mostly for user prompts that
901 don't have a trailing space and find-file-at-point is invoked from
902 within a shell inside emacs.
903
904 2003-09-24 Andre Spiegel <spiegel@gnu.org>
905
906 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
907 stamps numerically, rather than textually.
908
909 2003-09-24 Kenichi Handa <handa@m17n.org>
910
911 * language/devan-util.el (devanagari-post-read-conversion):
912 * language/mlm-util.el (malayalam-post-read-conversion):
913 * language/tml-util.el (tamil-post-read-conversion):
914 Add autoload cookie.
915
916 * international/utf-8.el (utf-8-post-read-conversion):
917 Call post-read-conversion functions for Devanagari, Malayalam,
918 and Tamil.
919
920 2003-09-23 Dave Love <fx@gnu.org>
921
922 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
923
924 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
925
926 * progmodes/gud.el (perldb): Add gud-until to list of commands.
927 Update gud-remove.
928
929 2003-09-22 Richard M. Stallman <rms@gnu.org>
930
931 * progmodes/sh-script.el (sh-mode-default-syntax-table):
932 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
933 (sh-mode-syntax-table-input): New variable.
934 (sh-require-final-newline): Don't use eval.
935 (sh-builtins, sh-leading-keywords, sh-other-keywords)
936 (sh-variables, sh-font-lock-keywords): Don't use eval.
937 (sh-set-shell): When setting require-final-newline,
938 treat value = `require-final-newline' as don't change it.
939 Set sh-mode-syntax-table locally based on
940 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
941
942 * progmodes/compile.el (compile-internal):
943 Call compilation-set-window-height before setting window start.
944
945 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
946
947 * emacs-lisp/bytecomp.el (byte-compile-log-file):
948 Clear out byte-compile-last-warned-form.
949
950 2003-09-22 Richard M. Stallman <rms@gnu.org>
951
952 * woman.el (woman-file-name, woman-follow-word):
953 If current-word returns nil, use "".
954
955 * simple.el (eval-expression): Bind standard-output in to-buffer case.
956
957 2003-09-22 Richard M. Stallman <rms@gnu.org>
958
959 * emacs-lisp/lisp-mnt.el (lm-with-file):
960 Don't visit the file, just use insert-file-contents in temp buffer.
961
962 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
963
964 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
965 Add surrounding \\( and \\) around the header, as in
966 for lm-history-header 'Change Log\\|History'.
967
968 2003-09-22 John Paul Wallington <jpw@gnu.org>
969
970 * progmodes/ld-script.el: Add Commentary section,
971 minor cleanup of file header.
972 (ld-script-font-lock-keywords): Doc fix.
973 (toplevel): Provide `ld-script' feature.
974
975 2003-09-21 Kim F. Storm <storm@cua.dk>
976
977 * scroll-bar.el (set-scroll-bar-mode): Initialize to
978 new built-in variable default-frame-scroll-bars.
979 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
980 scroll-bar-mode; notably, use it instead of t when we toggle
981 scroll-bars on.
982 (toggle-scroll-bar): Use default-frame-scroll-bars.
983
984 2003-09-19 Masatake YAMATO <jet@gyve.org>
985
986 * pcvs.el (cvs-do-removal): Change the prompt depending on
987 `filter' value.
988
989 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
990
991 * startup.el (command-line-1): Stop startup-echo-area-message
992 being hidden by "Loading image..." message.
993 (use-fancy-splash-screens-p, display-splash-screen):
994 Move display-graphic-p test from latter to former.
995
996 * progmodes/sh-script.el (sh-font-lock-keywords):
997 Highlight escaped EOLs differently from other backslash constructs.
998
999 2003-09-19 Richard M. Stallman <rms@gnu.org>
1000
1001 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
1002 New functions.
1003 (edebug-enter, edebug-outside-excursion): Use them.
1004
1005 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
1006 Fix the condition for whether to print "In WHERE".
1007
1008 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
1009
1010 * finder.el (finder-mode-hook): New variable.
1011 (finder-mode): Run hook finder-mode-hook
1012
1013 2003-09-18 Masatake YAMATO <jet@gyve.org>
1014
1015 * progmodes/ebrowse.el: Fix broken magic autoload comments.
1016
1017 2003-09-17 Mario Lang <mlang@delysid.org>
1018
1019 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
1020 "p %e" to actually print the value in the GUD buffer.
1021
1022 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
1023
1024 From David Ponce <david.ponce@wanadoo.fr>:
1025 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
1026 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
1027 from loaddefs-boot.el if necessary.
1028
1029 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
1030
1031 * progmodes/gud.el (gud-find-class): Make jdb work again since
1032 cc-mode changed the syntactic information.
1033
1034 2003-09-15 David Ponce <david@dponce.com>
1035
1036 * recentf.el: (recentf-exclude): Accept predicates too.
1037 (recentf-file-readable-p): New function.
1038 (recentf-include-p): Handle predicates in recentf-exclude.
1039 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
1040 (recentf-cleanup): Likewise.
1041 (recentf-save-list): Use write-file to handle backup of
1042 recentf-save-file.
1043
1044 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
1045
1046 * loaddefs-boot.el: Renamed from `loaddefs.el'
1047 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
1048 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
1049 necessary.
1050
1051 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
1052
1053 * electric.el (Electric-pop-up-window): For the `one-window' case,
1054 no longer disconcertingly move point in the original buffer.
1055
1056 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1057
1058 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
1059
1060 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
1061
1062 * dired.el (dired-mode-map): Fix typo.
1063
1064 2003-09-11 Richard M. Stallman <rms@gnu.org>
1065
1066 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
1067
1068 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
1069
1070 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
1071 the function is less noisy. Now only `kill-buffer' can ask questions.
1072
1073 2003-09-10 Mario Lang <mlang@delysid.org>
1074
1075 * battery.el: Update Commentary and Copyright.
1076 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
1077 appear due to wrong ordering of the expressions in `or'.
1078
1079 2003-09-09 Lute Kamstra <lute@gnu.org>
1080
1081 * misc.el (upcase-char): Fix docstring.
1082 (zap-up-to-char): New command.
1083
1084 2003-09-08 David Ponce <david@dponce.com>
1085
1086 Ensure that recentf correctly updates the menu bar.
1087 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
1088 (recentf-menu-bar): New function.
1089 (recentf-clear-data): Use it
1090 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
1091 of easy-menu-change.
1092
1093 2003-09-08 Lute Kamstra <lute@gnu.org>
1094
1095 * simple.el (size-indication-mode): New.
1096 * bindings.el (mode-line-position): Add buffer size indicator.
1097
1098 2003-09-04 Mario Lang <mlang@delysid.org>
1099
1100 * battery.el (battery-linux-proc-acpi): New function.
1101 (battery-status-function): Modify default value calculation to also
1102 check for availability of ACPI.
1103 (battery-echo-area-format): Ditto.
1104 (battery-mode-line-format): Ditto.
1105
1106 2003-09-06 Dave Love <fx@gnu.org>
1107
1108 * ielm.el (ielm-mode-hook): Add :options.
1109
1110 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
1111 (eldoc-print-current-symbol-info): Use it.
1112
1113 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
1114
1115 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
1116 being displayed in GUD buffer.
1117 (gdb-idle-input-queue): Remove var. Use just one queue.
1118 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
1119 Remove functions. Use just one queue.
1120 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
1121 (gdb-invalidate-assembler, gdb-get-current-frame):
1122 Modify functions. Use just one queue.
1123
1124 2003-09-04 Dave Love <fx@gnu.org>
1125
1126 * cus-start.el: Add blink-cursor-alist.
1127
1128 * ruler-mode.el (ruler-mode-fill-column-char)
1129 (ruler-mode-current-column-char): Use char-displayable-p,
1130 not window-system.
1131
1132 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
1133
1134 * language/european.el (windows-1252): Move from code-pages.
1135
1136 * language/cyrillic.el ("Windows-1251"): Delete.
1137 ("Bulgarian", "Belarusian"): Remove `features'.
1138 (windows-1251): Move from code-pages.
1139
1140 * international/mule-diag.el (non-iso-charset-alist):
1141 Remove `codepage' stuff.
1142 (print-designation, list-coding-systems-1): Output fixes.
1143
1144 * international/code-pages.el (cp-make-translation-table)
1145 (cp-valid-codes): Made defsubsts.
1146 (cp-fix-safe-chars): Delete.
1147 (mule-diag): Don't require.
1148 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
1149 (top-level): Check for defined coding system when defining
1150 cp... aliases. Change w32-add-charset-info test to avoid warning.
1151 (non-iso-charset-alist): Defvar when compiling.
1152 (cp-make-coding-system): Doc fix.
1153
1154 2003-09-02 Jason Rumney <jasonr@gnu.org>
1155
1156 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
1157 line-ends from CVS before doing conversion.
1158
1159 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
1160
1161 * calendar/diary-lib.el (diary-header-line-flag)
1162 (diary-header-line-format): New variables.
1163 (list-diary-entries): Use them to set header line in simple diary.
1164
1165 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
1166 other than font-lock-string-face to highlight backslashes.
1167
1168 2003-09-01 Jason Rumney <jasonr@gnu.org>
1169
1170 * international/titdic-cnv.el (tit-read-key-value): Include \r in
1171 regexp.
1172
1173 2003-09-01 Dave Love <fx@gnu.org>
1174
1175 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
1176
1177 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
1178 and :help; also line and column numbers labels.
1179
1180 * international/mule-util.el (char-displayable-p): Move from
1181 latin1-disp, rename and autoload.
1182
1183 * international/latin1-disp.el (latin1-char-displayable-p):
1184 Now obsolete alias. Replace uses with char-displayable-p.
1185 (latin1-display-ucs-per-lynx): Fix last change.
1186
1187 * international/mule-cmds.el (standard-display-european-internal):
1188 Don't use char code for Latin-1 NBSP.
1189 <XFree86 4>: Unfrob NBSP display table. Set display table to use
1190 U+2018, U+2019 for `'.
1191 (select-safe-coding-system): Message fix.
1192
1193 2003-09-01 Kenichi Handa <handa@m17n.org>
1194
1195 * international/fontset.el (setup-default-fontset): For Thai
1196 font, specify "*" family.
1197
1198 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
1199
1200 * progmodes/compile.el (previous-error): Accept a prefix
1201 argument, similarly to next-error.
1202
1203 2003-08-31 Masatake YAMATO <jet@gyve.org>
1204
1205 * pcvs.el (cvs-do-removal): Use = instead of eq to check
1206 the number of files. Bind the number of files to a local
1207 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
1208
1209 2003-08-30 Eli Zaretskii <eliz@elta.co.il>
1210
1211 * vc-hooks.el (vc-make-version-backup): Fix the change made on
1212 2003-07-26: msdos-long-file-names is a function, not a variable.
1213
1214 2003-08-29 Richard M. Stallman <rms@gnu.org>
1215
1216 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
1217 Do nothing with mail-personal-alias-file if it is nil.
1218
1219 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
1220 Do nothing if mail-personal-alias-file is nil.
1221
1222 * term.el (term-exec-1): Bind coding-system-for-read.
1223
1224 * dired.el (dired-mouse-find-file-other-window):
1225 Use dired-view-command-alist here, as in dired-view-file.
1226 (dired-view-command-alist): Use %s to substitute file name.
1227 Handle .ps_pages, .eps, .jpg, .gif, .png.
1228
1229 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
1230
1231 * info.el (Info-mode-map): Bind S-tab and <backtab> to
1232 `Info-prev-reference', instead of M-tab.
1233
1234 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
1235
1236 * simple.el (blink-matching-open): Work correctly on chars that
1237 are designated as parens through the syntax-table text property.
1238
1239 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
1240
1241 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
1242 line break position in the middle of a non-kinsoku (e.g. latin)
1243 word, making it skip until either a space or a character with
1244 category "|".
1245 (kinsoku-longer): Test for end of buffer.
1246
1247 2003-08-28 Eli Zaretskii <eliz@elta.co.il>
1248
1249 * mail/rmail.el (rmail-convert-to-babyl-format):
1250 Detect quoted-printable- and base64-encoded messages and decode them
1251 automatically. Set the message's encoding from the charset=
1252 header, if any. Decode base64-encoded messages in Mail format as well.
1253
1254 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
1255
1256 * mail/smtpmail.el Fix previous change:
1257 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
1258 calling smtpmail-via-smtp.
1259 (smtpmail-via-smtp): Add fall-back values for envelope-from.
1260
1261 2003-08-26 John Paul Wallington <jpw@gnu.org>
1262
1263 * image.el (image-jpeg-p): Don't search beyond length of data.
1264
1265 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
1266
1267 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
1268 misfeature in `expand-abbrev' which caused electric keywords like
1269 "else" to disappear if an open brace was typed directly afterwards.
1270
1271 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
1272
1273 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
1274 mandatory in `define-widget'.
1275
1276 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
1277 Don't align the operators "!=", "<=" and ">=" as assignment operators.
1278
1279 (c-assignment-operators): New language constant that only contains
1280 the assignment operators.
1281
1282 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
1283
1284 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
1285
1286 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
1287 Safeguard against unbalanced sexps.
1288
1289 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
1290
1291 * version.el (emacs-version): Check for gtk. Include gtk version info.
1292
1293 2003-08-25 John Paul Wallington <jpw@gnu.org>
1294
1295 * man.el (Man-default-man-entry): Don't whizz past the section
1296 number before looking for it.
1297
1298 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
1299
1300 * progmodes/gud.el (gud-display-line): Don't set window-point if
1301 source buffer is not visible. (Only happens with M-x gdba).
1302
1303 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
1304 documentation.
1305 (gdb-source, gdb-source-info): Update to assembler unnecessary
1306 as its done after each GDB command anyway.
1307 (gdb-pre-prompt): Use with-current-buffer.
1308 (gdb-insert-field): Add help-echo text.
1309 (gdb-invalidate-assembler): Re-display of assembler now done in
1310 gdb-info-breakpoints-custom.
1311 (gdb-info-breakpoints-custom): Force re-display of assembler to
1312 happen *after* update of breakpoints buffer.
1313 (gdb-display-source-buffer): Don't choke if gdb-source-window
1314 isn't visible.
1315 (gdb-put-string, gdb-put-arrow): Remove free variables.
1316
1317 2003-08-24 John Paul Wallington <jpw@gnu.org>
1318
1319 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
1320
1321 * man.el (Man-default-man-entry): Strip text properties when
1322 snarfing parts of entry because `format' preserves properties.
1323
1324 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
1325
1326 * files.el (file-newest-backup): Use `expand-file-name'.
1327
1328 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
1329 Allow the diary to pop up a new frame, if needed.
1330
1331 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
1332 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
1333 (smtpmail-send-it): Make treatment of envelope-from consistent with
1334 sendmail.el.
1335
1336 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
1337 (sh-leading-keywords): Add the bash `time' reserved word.
1338 (sh-variables): Add some bash variables.
1339 (sh-add-completer): Fix nil branch of case statement.
1340
1341 2003-08-24 Masatake YAMATO <jet@gyve.org>
1342
1343 * progmodes/ld-script.el: New file.
1344
1345 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
1346
1347 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
1348
1349 2003-08-23 Andre Spiegel <spiegel@gnu.org>
1350
1351 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
1352 Better explain obsolescence, and what to use instead.
1353
1354 2003-08-23 Masatake YAMATO <jet@gyve.org>
1355
1356 * pcvs.el (cvs-do-removal): Show the deleted file name
1357 on the prompt.
1358
1359 2003-08-20 Dave Love <fx@gnu.org>
1360
1361 * international/mule.el (make-coding-system)
1362 (set-buffer-file-coding-system): Doc fix.
1363
1364 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
1365
1366 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
1367
1368 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
1369
1370 * international/utf-16.el: Add mime-text-unsuitable coding system
1371 properties.
1372
1373 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
1374
1375 * cus-edit.el: Add some :links.
1376 (bib): Remove.
1377
1378 * textmodes/bib-mode.el (bib): Add :group external.
1379
1380 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
1381
1382 * wid-edit.el (widget-echo-help): Make it handle expressions that
1383 evaluate to strings.
1384
1385 2003-08-18 Michael Mauger <mmaug@yahoo.com>
1386
1387 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
1388
1389 Simplify selection of SQL products to define highlighting and
1390 interactive mode. Includes detailed instructions on adding
1391 support for new products.
1392
1393 * progmodes/sql.el (sql-product): New variable. Identifies SQL
1394 product for use in highlighting and interactive mode.
1395 (sql-interactive-product): New variable. SQL product for
1396 sql-interactive-mode.
1397 (sql-product-support): New variable. Specifies product-specific
1398 parameters to drive highlighting and interactive mode.
1399 (sql-imenu-generic-expression): Add more object types.
1400 (sql-sqlite-options): Correct comment.
1401 (sql-ms-program): Use "osql" rather than "isql".
1402 (sql-prompt-regexp, sql-prompt-length): Update comment.
1403 (sql-mode-menu): Add "Start SQLi session" entry.
1404 Replace Highlighting submenu with Product menu. Fix Send Region entry.
1405 (sql-mode-abbrev-table): Add abbreviations. Support of
1406 SYSTEM-FLAG on define-abbrev. Support was removed with last
1407 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
1408 (sql-mode-font-lock-object-name): Add font-lock pattern for object
1409 names.
1410 (sql-mode-ansi-font-lock-keywords): Set as default value.
1411 (sql-mode-oracle-font-lock-keywords): Set as default value.
1412 Support Oracle 9i keywords.
1413 (sql-mode-postgres-font-lock-keywords): Set as default value.
1414 (sql-mode-linter-font-lock-keywords): Set as default value.
1415 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
1416 SQLServer 2000.
1417 (sql-mode-sybase-font-lock-keywords)
1418 (sql-mode-interbase-font-lock-keywords)
1419 (sql-mode-sqlite-font-lock-keywords)
1420 (sql-mode-strong-font-lock-keywords)
1421 (sql-mode-mysql-font-lock-keywords)
1422 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
1423 keywords.
1424 (sql-mode-font-lock-defaults): Update comment.
1425 (sql-product-feature): New function. Returns feature associated
1426 with a product from `sql-product-support' alist.
1427 (sql-product-font-lock): New function. Set font-lock support
1428 based on `sql-product'.
1429 (sql-add-product-keywords): New function. Add font-lock rules to
1430 product-specific keyword variables.
1431 (sql-set-product): New function. Set `sql-product' and apply
1432 appropriate font-lock highlighting.
1433 (sql-highlight-product): New function. Set font-lock support
1434 based on a product. Also set mode name to include product name.
1435 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
1436 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
1437 Use `sql-set-product'.
1438 (sql-highlight-ms-keywords)
1439 (sql-highlight-sybase-keywords)
1440 (sql-highlight-interbase-keywords)
1441 (sql-highlight-strong-keywords)
1442 (sql-highlight-mysql-keywords)
1443 (sql-highlight-sqlite-keywords)
1444 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
1445 (sql-get-login): Prompt in the same order as the tokens.
1446 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
1447 (sql-product-interactive): New function. Common portions of
1448 product-specific interactive mode wrappers.
1449 (sql-interactive-mode): Rewritten to use product features.
1450 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
1451 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
1452 (sql-db2, sql-linter): Use `sql-product-interactive'.
1453 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
1454 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
1455 (sql-connect-ingres, sql-connect-postgres)
1456 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
1457 New functions. Format command line parameters and invoke comint on
1458 the appropriate interpreter. Code was in the corresponding
1459 `sql-xyz' function before.
1460 (sql-connect-ms): New function. Support -E argument to use
1461 operating system credentials for authentication.
1462
1463 2003-08-18 Kenichi Handa <handa@m17n.org>
1464
1465 * international/mule.el (encode-char): Fix for the ASCII case.
1466
1467 2003-08-15 Kenichi Handa <handa@m17n.org>
1468
1469 * international/fontset.el (setup-default-fontset): Change "*" to
1470 nil in the specifications of font family.
1471
1472 2003-08-18 Kim F. Storm <storm@cua.dk>
1473
1474 * kmacro.el (kmacro-keymap): Group related bindings in
1475 initialization for clarity. Bind C-s to start macro.
1476 Remove C-r binding.
1477 (kmacro-initial-counter-value): New defvar to hold initial counter
1478 value in case we set the value before defining a macro.
1479 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
1480 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
1481 not defining or executing macro. Doc fix.
1482 (kmacro-add-counter): Clear kmacro-initial-counter-value.
1483 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
1484 temporarily view older elements on the macro ring without cycling
1485 the ring.
1486 (kmacro-display): Doc fix.
1487 (kmacro-exec-ring-item): New helper function.
1488 (kmacro-call-ring-2nd): Use it.
1489 (kmacro-call-ring-2nd-repeat): Doc fix.
1490 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
1491 (kmacro-end-or-call-macro): Execute last viewed macro (using
1492 kmacro-exec-ring-item) from ring if this follows
1493 kmacro-view-macro. This allows us to find a macro on the ring
1494 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
1495 the ring to bring it to the head of the ring.
1496 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
1497 Allow binding to reserved keys without specifying C-x C-k prefix.
1498 Ask for confirmation if entered key sequence is already bound to
1499 a non-macro command.
1500 (kmacro-view-macro): Repeating command will show older elements
1501 on the macro ring; C-k will execute the last viewed macro.
1502 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
1503 property from 'ring to 'head.
1504
1505 2003-08-17 Alan Shutko <ats@acm.org>
1506
1507 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
1508 keeping December out of the alist.
1509
1510 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
1511
1512 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
1513 * calendar/calendar.el (calendar-mode-map): Bind it to key.
1514 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
1515 (calendar-flatten): New function.
1516 (calendar-mouse-view-other-diary-entries)
1517 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
1518 in the menu title and to show multi-line diary entries correctly
1519 in the menu.
1520
1521 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
1522
1523 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
1524 defcustom, because the default was recently changed.
1525
1526 2003-08-16 Richard M. Stallman <rms@gnu.org>
1527
1528 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
1529
1530 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
1531 New subroutine, broken out of eval-last-sexp-1.
1532 (eval-last-sexp-1): Use eval-last-sexp-print-value.
1533
1534 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
1535
1536 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
1537
1538 * simple.el (eval-expression): Use eval-last-sexp-print-value.
1539
1540 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
1541
1542 * progmodes/compile.el (compilation-error-regexp-alist):
1543 Add Java ANt error detection as described in document
1544 http://ant.apache.org/faq.html
1545
1546 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
1547
1548 * simple.el (backward-word, forward-to-indentation)
1549 (backward-to-indentation): Argument changed to optional.
1550 (next-line, previous-line): Use `or' instead of `unless'.
1551
1552 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1553
1554 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
1555 instead of a constant.
1556
1557 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
1558
1559 * shell.el (shell): With prefix-arg, suggest a new buffer name.
1560
1561 2003-08-12 Andre Spiegel <spiegel@gnu.org>
1562
1563 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
1564 (vc-sccs-workfile-version): Search the entire delta table, rather
1565 than just the first entry, because that might be a deleted version.
1566
1567 2003-08-11 Karl Fogel <kfogel@red-bean.com>
1568
1569 * menu-bar.el (menu-bar-options-menu): Supply a body for the
1570 [save-place] binding in the Options menu. Have it require
1571 'saveplace' and then toggle the variable manually, to avoid an an
1572 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
1573 for the bug report.
1574
1575 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
1576
1577 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
1578 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
1579 (gdb-info-threads-custom): Add help-echo text.
1580 (gdb-display-back): Don't use purecopy.
1581 (gdb-info-breakpoints-custom, gdb-reset)
1582 (gdb-assembler-custom): Use display-images-p to test if breakpoint
1583 icons can be displayed.
1584
1585 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
1586
1587 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
1588
1589 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
1590
1591 * bookmark.el (bookmark-completing-read):
1592 Return a string, instead of a list of one string.
1593 Use a popup menu if activated from the mouse.
1594 (bookmark-edit-annotation): Remove unused vars.
1595 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
1596 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
1597 to bookmark-completing-read.
1598 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
1599 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
1600 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
1601 and erase-buffer.
1602 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
1603 (bookmark-menu-jump, bookmark-menu-insert)
1604 (bookmark-popup-menu-and-apply-function)
1605 (bookmark-menu-popup-paned-bookmark-menu): Remove.
1606 (bookmark-menu-build-paned-menu): Remove by folding it into
1607 bookmark-menu-popup-paned-menu.
1608 (menu-bar-bookmark-map): Move the define-key statements here.
1609 Use the "non-menu" commands since they now pop up a menu if needed.
1610 (bookmark-exit-hook-internal): Simplify.
1611
1612 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
1613
1614 * reftex-toc.el (reftex-toc-rename-label): New function.
1615 (reftex-toc-check-docstruct): New function.
1616
1617 * reftex.el (reftex-region-active-p): New function.
1618
1619 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
1620 regexp to find the \bibliography macro.
1621
1622 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
1623 which does not exist in LaTeX.
1624 (reftex-cite-format-builtin): Added amsrefs support.
1625 (reftex-toc-confirm-promotion): New option
1626
1627 * reftex-toc.el
1628 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
1629 (reftex-toc-demote, reftex-toc-promote)
1630 (reftex-toc-do-promote, reftex-toc-promote-prepare)
1631 (reftex-toc-promote-action, reftex-toc-extract-section-number)
1632 (reftex-toc-newhead-from-alist)
1633 (reftex-toc-load-all-files-for-promotion): New functions.
1634 (reftex-toc-help): Added description of new keys.
1635 (reftex-toc-split-windows-fraction): New option.
1636 (reftex-recenter-toc-when-idle): Search *toc* window on all
1637 visible frames.
1638 (reftex-toc): Additional parameter REUSE
1639 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
1640 with REUSE argument.
1641 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
1642 the call of `reftex-toc'.
1643 (reftex-make-separate-toc-frame): New function .
1644 (reftex-toc-recenter): When called with triple prefix arg, call
1645 `reftex-make-separate-toc-frame' first.
1646 (reftex-toc-toggle-dedicated-frame): New command.
1647 (reftex-toc-quit): Adapted to delete frame when called in
1648 dedicated frame.
1649
1650 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
1651 all enclosing macros.
1652
1653
1654 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1655
1656 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
1657 first use.
1658
1659 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1660
1661 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
1662
1663 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
1664
1665 * calendar/calendar.el (list-diary-entries-hook)
1666 (diary-display-hook, nongregorian-diary-listing-hook)
1667 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
1668 Add some customize options for these hooks.
1669 (calendar-abbrev-construct): Don't try to take a substring longer
1670 than the original string.
1671
1672 2003-08-05 Richard M. Stallman <rms@gnu.org>
1673
1674 * emacs-lisp/testcover.el (noreturn): Report error if does return.
1675 (testcover-reinstrument-clauses): Doc fix.
1676
1677 * emacs-lisp/warnings.el: Doc fixes, args renamed.
1678 (warning-type-format): Rename from warning-group-format.
1679
1680 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
1681 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
1682 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
1683 to prevent warnings about defvar for an obsolete variable.
1684
1685 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
1686 warning-group-format renamed to warning-type-format.
1687
1688 * subr.el (read-passwd): Use clear-string instead of fillarray.
1689
1690 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
1691 Use vconcat instead of concat.
1692 (edmacro-sanitize-for-string): New function.
1693
1694 2003-08-05 Dave Love <fx@gnu.org>
1695
1696 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
1697 line-number-display-limit-width.
1698
1699 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
1700
1701 2003-08-05 Kenichi Handa <handa@m17n.org>
1702
1703 * international/code-pages.el: Don't require mule-diag.
1704
1705 * international/mule-diag.el (non-iso-charset-alist):
1706 Add autoload cookie.
1707
1708 * language/devan-util.el (dev-glyph-order): Add an entry for the
1709 glyph code #xC4.
1710
1711 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
1712
1713 * calendar/calendar.el (diary-file, diary-file-name-prefix)
1714 (european-calendar-style, diary-date-forms)
1715 (calendar-day-name-array, calendar-month-name-array): Doc change.
1716 (generate-calendar-month): Adapt for new behaviour of
1717 `calendar-day-name' function.
1718 (calendar-abbrev-length, calendar-day-abbrev-array)
1719 (calendar-month-abbrev-array): New variables.
1720 (calendar-abbrev-construct): New function.
1721 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
1722 rather than fixing abbrevs at some width. Calling syntax change.
1723 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
1724 (calendar-date-string): Adapt for new behaviours of
1725 `calendar-day-name' and `calendar-month-name' functions.
1726
1727 * calendar/diary-lib.el (list-diary-entries): Adapt for new
1728 behaviour of `calendar-day-name' and `calendar-month-name' functions.
1729 (diary-name-pattern): Use abbrev arrays, rather than fixing
1730 abbrevs at three chars. Calling syntax change.
1731 (mark-diary-entries): Adapt for new behaviours of
1732 `diary-name-pattern' and `calendar-make-alist' functions.
1733 (fancy-diary-font-lock-keywords): Adapt for new behaviour of
1734 `diary-name-pattern' function.
1735 (font-lock-diary-date-forms): Use abbrev arrays, rather than
1736 fixing abbrevs at three chars. Calling syntax change.
1737 (cal-hebrew, cal-islam): Require when compiling.
1738 (diary-font-lock-keywords): Adapt for new behaviour of
1739 `font-lock-diary-date-forms' function.
1740
1741 * calendar/cal-hebrew.el: Reposition some code so defined before used.
1742 (calendar-hebrew-month-name-array-common-year)
1743 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
1744 (list-hebrew-diary-entries): Adapt for new behaviours of
1745 `calendar-day-name' and `add-to-diary-list' functions.
1746 (mark-hebrew-diary-entries): Adapt for new behaviours of
1747 `diary-name-pattern' and `calendar-make-alist' functions.
1748
1749 * calendar/cal-islam.el (calendar-islamic-month-name-array):
1750 Add doc string.
1751 (list-islamic-diary-entries): Adapt for new behaviours of
1752 `calendar-day-name' and `add-to-diary-list' functions.
1753 (mark-islamic-diary-entries): Adapt for new behaviours of
1754 `diary-name-pattern' and `calendar-make-alist' functions.
1755
1756 * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
1757 `calendar-month-name' function.
1758
1759 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
1760
1761 * calendar/solar.el (solar-seasons-data): Move definition before use.
1762
1763 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
1764 (cal-tex-LaTeX-hourbox): Move definition before use.
1765
1766 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
1767 cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
1768 lunar.el, solar.el
1769 (displayed-month, displayed-year): Define for compiler.
1770
1771 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
1772
1773 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
1774 MODE. Renamed from c-init-c-language-vars'.
1775 (c-initialize-cc-mode): Change accordingly.
1776 (c-common-init): Ditto.
1777 (c-mode): Ditto.
1778 (c++-mode): Use `c-init-language-vars-for'.
1779 (objc-mode): Ditto.
1780 (java-mode): Ditto.
1781 (idl-mode): Ditto.
1782 (pike-mode): Ditto.
1783 (awk-mode): Ditto.
1784
1785 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
1786
1787 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
1788 or not the point moved.
1789
1790 (c-search-decl-header-end): Don't trip up on operator identifiers
1791 in C++ and operators like == in all languages.
1792
1793 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
1794 Detect leading labels correctly.
1795
1796 2003-08-02 Andreas Schwab <schwab@suse.de>
1797
1798 * textmodes/ispell.el: Don't redo key bindings on loading, put
1799 them only in loaddefs.el.
1800 * bookmark.el: Likewise.
1801 * dabbrev.el: Likewise.
1802 * emerge.el: Likewise.
1803
1804 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
1805 has more than one member.
1806
1807 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
1808
1809 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1810
1811 * lpr.el (printify-region): It was ending conversion before the
1812 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
1813
1814 2003-07-31 John Paul Wallington <jpw@gnu.org>
1815
1816 * net/browse-url.el (browse-url-epiphany): Doc fix.
1817
1818 2003-07-30 Kenichi Handa <handa@m17n.org>
1819
1820 * international/fontset.el (setup-default-fontset):
1821 Change registry names of Akurti fonts.
1822
1823 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
1824
1825 * comint.el (comint-read-noecho): Use `clear-string' instead of
1826 `fillarray'.
1827
1828 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
1829
1830 * outline.el (outline-mode-hook): Add defvar.
1831
1832 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
1833
1834 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
1835 Restore assembler in source window if that is what has been selected.
1836 (menu): Add gdb-restore-windows to menu. Make gdba
1837 specific menus only visible from gdba.
1838
1839 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
1840
1841 * progmodes/compile.el (compilation-environment): New user variable.
1842 (compile-internal): Respect it.
1843
1844 2003-07-23 Masatake YAMATO <jet@gyve.org>
1845
1846 * progmodes/gud.el (gdb-script-font-lock-keywords):
1847 Put `font-lock-function-name-face' on a symbol which includes
1848 `-' like `hook-run'. Put font-lock-variable-name-face
1849 on a symbol starting with $.
1850
1851 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
1852
1853 * files.el (set-visited-file-name): Use truename for buffer-file-name.
1854
1855 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
1856
1857 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
1858
1859 2003-07-26 Andre Spiegel <spiegel@gnu.org>
1860
1861 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
1862 Use with-no-warnings.
1863 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
1864 rather than to find-file-not-found-hook, which doesn't exist.
1865
1866 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
1867
1868 * international/quail.el (quail-translate-key): Fix previous change.
1869
1870 2003-07-25 John Paul Wallington <jpw@gnu.org>
1871
1872 * server.el (server-start): Check `server-process' is non-nil
1873 before killing it to avoid killing current buffer's process.
1874
1875 * simple.el (choose-completion-string): Use `minibufferp';
1876 test `completion-reference-buffer' if `buffer' arg is nil.
1877 (push-mark): Use `when' and `unless'.
1878 (pop-mark): Use `when'.
1879
1880 * mouse-sel.el (mouse-sel-get-selection-function):
1881 Check `x-last-selected-text-primary'. Don't barf if it or
1882 `x-last-selected-text' aren't bound.
1883
1884 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
1885
1886 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
1887
1888 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
1889
1890 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
1891
1892 2003-07-23 John Paul Wallington <jpw@gnu.org>
1893
1894 * tooltip.el (defface tooltip): Inherit from variable-pitch.
1895
1896 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
1897
1898 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
1899 string. Defvar the derived hook.
1900
1901 * macros.el (insert-kbd-macro): Escape double quote character.
1902 From Thomas W Murphy <twm@andrew.cmu.edu>.
1903
1904 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
1905
1906 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
1907 to match the specific mark rather than reusing comment-start-skip.
1908
1909 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
1910
1911 * progmodes/hideshow.el (hs-special-modes-alist):
1912 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
1913
1914 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
1915
1916 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
1917 value using ?\s.
1918
1919 2003-07-21 John Paul Wallington <jpw@gnu.org>
1920
1921 * subr.el (with-selected-window): Add closing paren.
1922
1923 2003-07-21 Richard M. Stallman <rms@gnu.org>
1924
1925 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
1926 (lisp-mode): Likewise.
1927
1928 * subr.el (with-selected-window): Copy code form save-selected-window
1929 so as to call select-window with norecord arg.
1930 (dynamic-completion-table): Doc fix.
1931 (lazy-completion-table): Doc fix.
1932
1933 * international/mule-cmds.el (set-locale-environment):
1934 langinfo renamed to locale-info.
1935
1936 * international/mule.el (auto-coding-functions): Doc fix.
1937
1938 2003-07-21 Kenichi Handa <handa@m17n.org>
1939
1940 * international/quail.el (quail-translate-key):
1941 Update quail-current-str correctly.
1942
1943 2003-07-21 Andreas Schwab <schwab@suse.de>
1944
1945 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
1946 ?, to "_".
1947
1948 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
1949 Version 2.0.36 of Tramp released.
1950
1951 * net/tramp.el (tramp-default-password-end-of-line): Rename from
1952 tramp-password-end-of-line.
1953 (tramp-password-end-of-line): New method parameter.
1954 (tramp-get-password-end-of-line): Function to access method
1955 parameter `tramp-password-end-of-line', or variable
1956 `tramp-default-password-end-of-line' (default value).
1957 (tramp-methods): Add entries for new parameter
1958 tramp-password-end-of-line.
1959 (tramp-enter-password): Use new function
1960 `tramp-get-password-end-of-line'.
1961 (tramp-handle-insert-file-contents): Do not
1962 unconditionally inhibit the file operation file-local-copy, only
1963 do that when the inhibit-file-name-operation is currently
1964 insert-file-contents. This fixes finding remote CVS-controlled
1965 files. (It would barf on inserting the CVS/Entries file
1966 literally, because the file-local-copy handler wasn't called.)
1967 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
1968 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
1969 (tramp-initial-commands): New variable.
1970 (tramp-process-initial-commands): New function, using the variable.
1971 (tramp-open-connection-setup-interactive-shell): Call the new function.
1972 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
1973 method into the buffer name, never use nil. Reported by Hanak
1974 David <dhanak@inf.bme.hu>.
1975 (tramp-open-connection-setup-interactive-shell): Erase buffer
1976 before sending "stty -onlcr".
1977
1978 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
1979
1980 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
1981
1982 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
1983
1984 2003-07-19 John Paul Wallington <jpw@gnu.org>
1985
1986 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
1987 (artist-draw-rect, artist-draw-square): Doc fixes.
1988
1989 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
1990
1991 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
1992
1993 2003-07-19 Kenichi Handa <handa@m17n.org>
1994
1995 * international/kkc.el (kkc-show-conversion-list-update):
1996 Highlight the correct candidate in the message.
1997
1998 2003-07-18 John Paul Wallington <jpw@gnu.org>
1999
2000 * simple.el (current-word): Don't include punctuation char when
2001 `really-word' arg is non-nil.
2002
2003 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
2004
2005 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
2006 moved to the directory obsolete.
2007
2008 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
2009
2010 * info.el (Info-menu-entry-name-re): Allow newlines in
2011 menu entry names.
2012
2013 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
2014 syntax-ppss-after-change-function.
2015 (syntax-ppss-after-change-function): New alias. Update uses.
2016 (syntax-ppss): Catch the case where the buffer is narrowed.
2017
2018 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
2019
2020 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
2021 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
2022
2023 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
2024
2025 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
2026 since it might be modified.
2027
2028 * progmodes/cc-langs.el (c++-make-template-syntax-table)
2029 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
2030 names to these language constants.
2031
2032 2003-07-15 Kim F. Storm <storm@cua.dk>
2033
2034 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
2035 All uses changed.
2036
2037 2003-07-14 Mark A. Hershberger <mah@everybody.org>
2038
2039 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
2040 Namespace support.
2041
2042 2003-07-13 Juanma Barranquero <lektu@terra.es>
2043
2044 * frame.el (modify-all-frames-parameters): Reinstall (copyright
2045 papers received).
2046
2047 2003-07-13 Karl Eichwalder <ke@suse.de>
2048
2049 * textmodes/po.el (po-find-charset): White space at the start of the
2050 Content-Type field body is non-mandatory.
2051
2052 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
2053
2054 * textmodes/texinfo.el (texinfo-section-list):
2055 Append appendixsection; a synonym for appendixsec.
2056
2057 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
2058
2059 * man.el (Man-translate-cleanup): New.
2060 (Man-translate-references): Call `Man-translate-cleanup' to clean
2061 leading, trailing and middle spaces.
2062
2063 2003-07-13 Lars Hansen <larsh@math.ku.dk>
2064
2065 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
2066 Handle `dired-directory' being a list.
2067
2068 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
2069
2070 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
2071 it doesn't exist.
2072
2073 2003-07-12 Richard M. Stallman <rms@gnu.org>
2074
2075 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
2076
2077 * progmodes/cc-defs.el (c-make-keywords-re):
2078 Don't use delete-duplicates.
2079 (c-lang-const): Don't use mapcan.
2080
2081 * apropos.el (apropos-show-scores): Make it customizable.
2082 Document new meaning.
2083 (apropos): Compute scores from symbols.
2084 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
2085
2086 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2087
2088 * ps-bdf.el: Fix copyright line.
2089 (bdf-directory-list): Fix initialization code.
2090
2091 2003-07-11 John Paul Wallington <jpw@gnu.org>
2092
2093 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
2094 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
2095 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
2096
2097 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
2098
2099 * emacs-lisp/ring.el (ring-elements): Doc fix.
2100
2101 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
2102
2103 * calendar/timeclock.el (timeclock-relative)
2104 (timeclock-ask-before-exiting, timeclock-use-display-time):
2105 Doc changes.
2106 (timeclock-modeline-display): Give a message if
2107 `timeclock-use-display-time' is non-nil but `display-time-mode'
2108 is not active.
2109
2110 2003-07-11 Kenichi Handa <handa@m17n.org>
2111
2112 * international/mule-cmds.el (set-language-environment):
2113 Set current-language-environment to the correct string.
2114
2115 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2116
2117 * ps-print.el: Print line number correctly in a region. Reported by
2118 Tim Allen <timallen@ls83.fsnet.co.uk>
2119 (ps-print-version): New version number (6.6.2).
2120 (ps-printing-region): Code fix.
2121
2122 2003-07-10 John Paul Wallington <jpw@gnu.org>
2123
2124 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
2125 this function can be called from `add-completions-from-tags-table'.
2126
2127 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
2128
2129 * calendar/timeclock.el (timeclock-use-display-time)
2130 (timeclock-day-over-hook, timeclock-workday-remaining)
2131 (timeclock-status-string, timeclock-when-to-leave)
2132 (timeclock-when-to-leave-string, timeclock-log-data)
2133 (timeclock-find-discrep, timeclock-day-base)
2134 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
2135 (timeclock-modeline-display): Set the variable
2136 `timeclock-modeline-display'.
2137 (timeclock-update-modeline): Doc fix. Respect value of
2138 `timeclock-relative'.
2139
2140 2003-07-09 Richard M. Stallman <rms@gnu.org>
2141
2142 * textmodes/reftex-parse.el (reftex-all-document-files):
2143 Add autoload cookie.
2144
2145 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
2146 (reftex-scanning-info-available-p): Add autoload cookie.
2147
2148 * international/mule-cmds.el
2149 (set-display-table-and-terminal-coding-system): Delete duplicate
2150 aset on standard-display-table.
2151
2152 * view.el (view-file): If existing buffer's major mode is special,
2153 don't go into view mode.
2154
2155 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
2156
2157 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2158
2159 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
2160 buffer changes; there's third party code that calls this function
2161 directly.
2162
2163 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2164
2165 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
2166 (autodoc-font-lock-keywords): Don't byte compile on font lock
2167 initialization when running from byte compiled files.
2168
2169 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2170
2171 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
2172 statement ends with auto-increment "++".
2173
2174 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2175
2176 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
2177 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
2178 these are changed, so declare them as variables and not constants.
2179
2180 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
2181
2182 * subr.el (dolist, dotimes): Doc fix.
2183
2184 2003-07-08 Kim F. Storm <storm@cua.dk>
2185
2186 * international/mule-cmds.el
2187 (set-display-table-and-terminal-coding-system): Don't break
2188 bootstrap if standard-display-table isn't setup yet.
2189
2190 2003-07-07 Richard M. Stallman <rms@gnu.org>
2191
2192 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
2193 Give it a doc string, and autoload it.
2194
2195 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
2196 Use with-no-warnings.
2197
2198 * info.el (Info-search): If find invisible text, search again.
2199
2200 * isearch.el (search-whitespace-regexp): Add a shy group around it.
2201
2202 * man.el (Man-name-regexp): Match + as part of name.
2203
2204 * simple.el (visible-mode): Rename from vis-mode.
2205 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
2206
2207 * simple.el (current-word): New arg REALLY-WORD specifies
2208 don't include punctuation chars.
2209
2210 * emacs-lisp/debug.el (debug, debugger-env-macro):
2211 Use with-no-warnings while accessing and binding unread-command-char.
2212
2213 * international/mule-cmds.el
2214 (set-display-table-and-terminal-coding-system): Use explicit loop
2215 instead of calling standard-display-default.
2216
2217 * net/ange-ftp.el (ange-ftp-file-symlink-p):
2218 Use condition-case to catch error in ange-ftp-get-files.
2219
2220 * net/browse-url.el (browse-url-browser-function):
2221 Add alternative for Epiphany.
2222 (browse-url-epiphany-program, browse-url-epiphany-arguments)
2223 (browse-url-epiphany-startup-arguments)
2224 (browse-url-epiphany-new-window-is-tab): New variables.
2225 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
2226
2227 * progmodes/compile.el (compile-auto-highlight): Default now t.
2228 (compile): Doc fix.
2229 (compilation-next-error): Fix previous change.
2230
2231 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
2232
2233 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
2234
2235 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
2236
2237 * gdb-ui.el (gdb-source-info): Display current frame when
2238 attaching to an existing process.
2239 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
2240 while laying out windows when attaching to an existing process.
2241
2242 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
2243
2244 * info.el (Info-menu): Use Info-menu-entry-name-re.
2245
2246 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
2247
2248 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
2249 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
2250
2251 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
2252 to match the same text.
2253
2254 2003-07-06 John Paul Wallington <jpw@gnu.org>
2255
2256 * vc.el (vc-annotate-offset): Move defvar up.
2257
2258 2003-07-06 Kim F. Storm <storm@cua.dk>
2259
2260 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
2261 This should fix the infinite loop when extracting menu names.
2262
2263 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
2264
2265 * files.el (auto-mode-alist, interpreter-mode-alist):
2266 Remove entries to CC Mode modes to avoid duplicates; they are now added
2267 with autoload directives in cc-mode.el.
2268
2269 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
2270
2271 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
2272 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
2273 these are changed, so declare them as variables and not constants.
2274
2275 * progmodes/cc-mode.el: Fix some autoload problems: Try to
2276 ensure that the entry for ".c" extension comes before the one for
2277 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
2278 Fix incorrect entries that were added to `interpreter-mode-alist'.
2279 Move the autoload directives for AWK to the top level since they
2280 aren't recognized anywhere else. Do not use the new AWK mode doc
2281 in the autoload form for the old AWK mode.
2282
2283 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2284
2285 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
2286 (bibtex-sort-ignore-string-entries): Default value t.
2287 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
2288 erroneously in previous version.
2289 (bibtex-string-files): Docstring reflects new parsing scheme.
2290 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
2291 docstring, add # as one of the chars to crush
2292 (bibtex-autokey-prefix-string, bibtex-autokey-names)
2293 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
2294 (bibtex-autokey-name-change-strings)
2295 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
2296 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
2297 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
2298 (bibtex-autokey-title-terminators)
2299 (bibtex-autokey-titlewords-stretch)
2300 (bibtex-autokey-titleword-ignore)
2301 (bibtex-autokey-titleword-case-convert)
2302 (bibtex-autokey-titleword-abbrevs)
2303 (bibtex-autokey-titleword-abbrevs)
2304 (bibtex-autokey-titleword-change-strings)
2305 (bibtex-autokey-titleword-length)
2306 (bibtex-autokey-titleword-separator)
2307 (bibtex-autokey-name-year-separator)
2308 (bibtex-autokey-year-title-separator)
2309 (bibtex-autokey-before-presentation-function)
2310 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
2311 Fix docstring.
2312 (bibtex-strings, bibtex-reference-keys):
2313 Use lazy-completion-table and make-variable-buffer-local.
2314 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
2315 (bibtex-braced-string-syntax-table)
2316 (bibtex-quoted-string-syntax-table): New variables.
2317 (bibtex-parse-nested-braces): Remove.
2318 (bibtex-parse-field-string): Use syntax table and forward-sexp.
2319 (bibtex-parse-association): Simplify.
2320 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
2321 (bibtex-parse-field-text): Simplify.
2322 (bibtex-search-forward-field, bibtex-search-backward-field):
2323 argument BOUND can take value t.
2324 (bibtex-start-of-field, bibtex-start-of-name-in-field)
2325 (bibtex-end-of-name-in-field, bibtex-end-of-field)
2326 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
2327 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
2328 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
2329 (bibtex-skip-to-valid-entry): Return buffer position of beginning
2330 and ending of entry. Update for changes of bibtex-search-entry.
2331 Simplify.
2332 (bibtex-map-entries): FUN is called with three arguments.
2333 (bibtex-search-entry): Return a cons pair with buffer positions of
2334 beginning and end of entry.
2335 (bibtex-enclosing-field): Simplify.
2336 (bibtex-format-entry): Use booktitle to set a missing title.
2337 (bibtex-autokey-get-names): Fiddle with regexps.
2338 (bibtex-generate-autokey): Use identity.
2339 (bibtex-parse-keys): Use simplified parsing algorithm if
2340 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
2341 arguments. Return alist of keys.
2342 (bibtex-parse-strings): Simplify. Return alist of strings.
2343 (bibtex-complete-string-cleanup): Fix docstring.
2344 (bibtex-read-key): New function.
2345 (bibtex-mode): Fix docstring. Do not parse for keys and
2346 strings when the mode is entered. Set fill-paragraph-function to
2347 bibtex-fill-field. Setup font-lock-mark-block-function the way
2348 font-lock intended.
2349 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
2350 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
2351 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
2352 (bibtex-Preamble): Avoid hard coded constants.
2353 (bibtex-make-field): Fix docstring. Simplify.
2354 (bibtex-beginning-of-entry): Always return new position of point.
2355 (bibtex-end-of-entry): Rearrange cond clauses.
2356 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
2357 Update for changes of bibtex-map-entries.
2358 (bibtex-ispell-abstract): Do not move point.
2359 (bibtex-entry-index): Use downcase. Simplify.
2360 (bibtex-lessp): Handle catch-all.
2361 (bibtex-find-crossref): Turn into a command.
2362 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
2363 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
2364 preamble entries.
2365 (bibtex-fill-field-bounds): New function.
2366 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
2367 (bibtex-fill-entry): Use bibtex-fill-field-bounds
2368 (bibtex-String): Use bibtex-strings. Always obey
2369 bibtex-sort-ignore-string-entries.
2370
2371 2003-07-05 John Paul Wallington <jpw@gnu.org>
2372
2373 * cus-theme.el (customize-create-theme):
2374 Call `customize-create-theme' in Reset widget's notify function.
2375
2376 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
2377 (ibuffer-mark-interactive): Use `or' instead of `unless'.
2378 (define-ibuffer-column name): Add summarizer.
2379 (define-ibuffer-column size): Likewise.
2380 (define-ibuffer-column filename): Likewise.
2381 (define-ibuffer-column process): Likewise. Change BODY's output too.
2382 (define-ibuffer-column filename-and-process): Likewise, likewise.
2383 (ibuffer): Remove local vars `already-in' and `need-update'.
2384
2385 * ibuf-ext.el: Don't require `derived' at compile-time.
2386
2387 2003-07-05 Kim F. Storm <storm@cua.dk>
2388
2389 * info.el: Disable paragraph refilling.
2390 (Info-refill-paragraphs): New defcustom.
2391 (Info-fontify-node): Use it.
2392
2393 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
2394
2395 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
2396 thingies from constructors created by defstruct.
2397
2398 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
2399 the default value of the variable.
2400 (byte-code-meter): Move declaration to top level.
2401
2402 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
2403
2404 * info.el (Info-following-node-name-re): New fun.
2405 (Info-following-node-name): Remove.
2406 (Info-insert-dir): Use the new fun.
2407 (Info-extract-pointer): Don't save restriction; use new fun.
2408 (Info-menu-entry-name-re): New const.
2409 (Info-menu-entry-name-re): Use it along with new fun.
2410 (Info-node-spec-re): Use new fun.
2411 (Info-complete-menu-item, Info-fontify-node): Use new const.
2412 (Info-goto-node, Info-follow-reference, Info-menu-update):
2413 Use match-string.
2414 (Info-follow-reference): Use assoc-string.
2415 Use a list of strings for the completion table.
2416 (Info-fontify-node): Use match-string, line-end-position.
2417 Limit the search for `node:' to the first line.
2418
2419 * newcomment.el (uncomment-region): Remove padding coming from
2420 comment-start rather than just from comment-padding.
2421
2422 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
2423 (vc-cvs-stay-local-p): Use vc-stay-local-p.
2424 (vc-cvs-rename-file): Remove (use the default).
2425 (vc-cvs-register): Register parent dir if needed.
2426 (vc-cvs-could-register): Return non-nil if parent can be registered.
2427 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
2428 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
2429
2430 * vc-svn.el (vc-svn-use-edit): Make it into a const.
2431 (vc-svn-update): Fix the arguments to `svn'.
2432 (vc-svn-diff-tree): Just use `vc-svn-diff'.
2433 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
2434 Simple implementations, assuming `name' is a URL.
2435
2436 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
2437 set of chars allowed unquoted in a case pattern.
2438
2439 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
2440
2441 * font-lock.el (font-lock-extra-types-widget)
2442 (c-font-lock-extra-types, c++-font-lock-extra-types)
2443 (objc-font-lock-extra-types, java-font-lock-extra-types)
2444 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
2445 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
2446 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
2447 (font-lock-match-c++-structor-declaration)
2448 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
2449 (c++-font-lock-keywords-3, c++-font-lock-keywords)
2450 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
2451 (objc-font-lock-keywords-3, objc-font-lock-keywords)
2452 (java-font-lock-keywords-1, java-font-lock-keywords-2)
2453 (java-font-lock-keywords-3, java-font-lock-keywords)
2454 (java-font-lock-syntactic-face-function): Remove obsolete code
2455 and constants. It's all in cc-fonts.el now.
2456
2457 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
2458
2459 * mail/sendmail.el (mail-specify-envelope-from)
2460 (mail-envelope-from): Doc fix.
2461
2462 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
2463
2464 * generic-x.el: Do away with the dependency on `c-emacs-features'
2465 when populating `rul-generic-mode-syntax-table'; we already know
2466 this isn't XEmacs.
2467
2468 See ChangeLog.10 for earlier changes.
2469
2470 ;; Local Variables:
2471 ;; coding: iso-2022-7bit
2472 ;; End:
2473
2474 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
2475 Copying and distribution of this file, with or without modification,
2476 are permitted provided the copyright notice and this notice are preserved.
2477
2478 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1